diff --git a/.gitignore b/.gitignore index 5d609e5..80e0d09 100644 --- a/.gitignore +++ b/.gitignore @@ -66,3 +66,9 @@ __pycache__/ *.7z *.dbf ground_truth/structured/parsebench/*.jsonl + +# The regression corpus's PubMed Central slice: 712 full-text JATS files, 314 MB. Text is normally +# committed, and this is the one exception: at that size it would quadruple every clone. The +# binaries in the regression corpus need no entry here, since the extension patterns above already +# cover them. Path-scoped, so an ordinary .nxml elsewhere in the tree is unaffected. +jats/regression/ diff --git a/ATTRIBUTIONS.md b/ATTRIBUTIONS.md index 003f8ab..3dd6ec1 100644 --- a/ATTRIBUTIONS.md +++ b/ATTRIBUTIONS.md @@ -142,3 +142,43 @@ Vendored WordPerfect-family test files. Per-file provenance (upstream path, revi - **Rendering tools:** the source graphs are ours; the SVGs and PDFs are what each renderer emitted from them. Graphviz 15.1.1 (`dot`/`neato`) is EPL-1.0, Mermaid CLI 11.16.0 is MIT, PlantUML 1.2026.0 is GPL, LibreOffice 26.2.5.2 is MPL-2.0, librsvg 2.62.3 (`rsvg-convert`) is LGPL-2.1-or-later, qpdf 12.3.2 is Apache-2.0, and Google Chrome 151 is proprietary. None of these licenses reaches the output: rendering a document is not a derivative work of the renderer, and PlantUML says so explicitly in its FAQ. No tool binary, jar or stylesheet is redistributed here. - **Embedded fonts:** a PDF carries subsetted glyph outlines of whatever fonts the renderer reached for, so the fixtures under `diagrams/pdf/` do redistribute font data. Each family was checked against the OS/2 `fsType` bit of the system font it came from, which is where a font states its own embedding terms: Helvetica and Liberation Sans report 0 (installable, no restriction), Times New Roman and Trebuchet MS report 8 (editable embedding). All four permit it. `scripts/build_diagram_pdfs.py` holds that allowlist and fails a build that reaches for anything outside it. That check is why `graphviz_cjk` ships as SVG only: macOS's Songti reports `fsType` 2, restricted, which forbids embedding without the owner's permission, so no CJK PDF is published until an open-licensed CJK face is available to render one. - **Modifications:** every fixture whose producer states its own graph also ships as a `*_geometry.svg` variant with that metadata removed by `scripts/strip_svg_graph_metadata.py` — Graphviz writes the node ids and the full edge list into `` elements and again into XML comments; Mermaid into `id="L_start_auth_0"`, again into `data-id`, and the edge's waypoints into `data-points`; PlantUML into `id="Read config-to-Open input"`, again into a comment, again into a `data-entity-1`/`data-entity-2` pair, and once more into a `<?plantuml-src?>` processing instruction carrying its whole deflated source; and LibreOffice by tagging each group with its shape kind, which across a whole file is the node/edge partition. A fixture that names its own answer cannot measure geometry recovery. Stripping removes no geometry: each variant renders to a byte-identical PNG. `nested_transforms.svg`, `icon_nodes.svg`, `mixed_page.svg`, `two_diagrams.svg` and the three `negative_*.svg` files are hand-written. Ground truth is the source graph restated by node label, so it is independent of any recogniser's numbering. + +## PubMed Central open access + +- **Citation:** Europe PMC RESTful Web Service, Europe PMC Consortium. +- **Source:** <https://europepmc.org> +- **License:** per article, read from each file's JATS `ali:license_ref`. 498 are CC-BY-4.0 or CC0 and vendored; 214 are CC-BY-NC or CC-BY-NC-ND and reference only. +- **Used here:** 712 full-text JATS articles vendored, 214 reference. +- **Modifications:** none. Each file is byte-identical to what the service returns. + +## arXiv + +- **Citation:** arXiv.org e-Print archive, Cornell University. +- **Source:** <https://arxiv.org> +- **License:** per paper, read from its OAI record. 204 are CC-BY-4.0 and vendored. 993 carry the arXiv perpetual non-exclusive licence, which grants distribution to arXiv rather than to third parties, so they are reference only. +- **Used here:** 204 PDFs vendored, 993 reference. +- **Modifications:** none. + +## Project Gutenberg + +- **Citation:** Project Gutenberg Literary Archive Foundation. +- **Source:** <https://www.gutenberg.org> +- **License:** US public domain. The Project Gutenberg trademark and licence terms attach to the header, not to the underlying public-domain work. +- **Used here:** 500 EPUBs vendored, as prose ballast that carries no mathematics. +- **Modifications:** none. + +## govdocs1 + +- **Citation:** Garfinkel, Farrell, Roussev and Dinolt, "Bringing science to digital forensics with standardized forensic corpora" (DFRWS 2009). +- **Source:** <https://digitalcorpora.org/corpora/file-corpora/files/> +- **License:** US government works, public domain under 17 U.S.C. 105. +- **Used here:** 400 mixed office documents vendored, from shards 000 and 001. +- **Modifications:** none. Files are taken from the published shards under their original names, prefixed with the shard. + +## Wikipedia + +- **Citation:** Wikipedia contributors, English Wikipedia. +- **Source:** <https://en.wikipedia.org> +- **License:** CC-BY-SA-4.0. ShareAlike is copyleft, so these are reference only. +- **Used here:** 178 mathematics articles, reference. +- **Modifications:** none. diff --git a/LICENSES.md b/LICENSES.md index ad35a22..7103004 100644 --- a/LICENSES.md +++ b/LICENSES.md @@ -44,4 +44,7 @@ non-commercial benchmark use non-commercial data. | [ds4sd/DocLayNet](https://huggingface.co/datasets/ds4sd/DocLayNet-v1.1) | CDLA-Permissive-1.0 | vendor | | [google-research-datasets/hiertext](https://github.com/google-research-datasets/hiertext) | CC-BY-SA-4.0 | reference (ShareAlike — not committed) | -Vendored sources: 6. Reference-only sources: 1. WordPerfect corpus provenance: `wordperfect/PROVENANCE.md`. +| regression corpus: [PubMed Central OA](https://europepmc.org), [Project Gutenberg](https://www.gutenberg.org), [govdocs1](https://digitalcorpora.org), [arXiv](https://arxiv.org) | CC-BY-4.0 / CC0 / US-PD, per document | vendor (1,816) | +| regression corpus, restricted subset | CC-BY-SA, CC-BY-NC*, arXiv nonexclusive-distrib | reference (1,459, not committed) | + +Vendored sources: 7. Reference-only sources: 2. WordPerfect corpus provenance: `wordperfect/PROVENANCE.md`. diff --git a/REGRESSION_PROVENANCE.md b/REGRESSION_PROVENANCE.md new file mode 100644 index 0000000..7d662a9 --- /dev/null +++ b/REGRESSION_PROVENANCE.md @@ -0,0 +1,3307 @@ +# Regression corpus provenance + +A broad corpus of ordinary documents, used to answer one question: does a change alter output anywhere it should not. Mathematics is incidental here. Breadth and volume are the point, which is what makes it a regression net rather than a set of hand-picked fixtures. + +3275 documents from five sources. Each licence below was read from the document's own metadata or from the publisher's stated terms, never assumed from the source. + +## Lanes + +Following the redistribution policy in `LICENSES.md`: + +- **vendor**, 1816 documents. Permissively licensed. The 133 text documents among them are committed here, as the corpus does for text. The rest are published to the bucket and pinned by `corpus.lock.json`: every binary, plus the PubMed Central slice, whose 712 files come to 314 MB and would quadruple a clone. +- **reference**, 1459 documents. ShareAlike, NonCommercial, or terms that grant redistribution to the publisher alone. The corpus records where they came from and under what licence, and never redistributes them. + +The arXiv split is the clearest case. A paper released under CC-BY is vendored. A paper under the arXiv perpetual non-exclusive licence grants distribution rights to arXiv and not to us, so it is reference only. + +## No ground truth, by design + +These documents carry no `ground_truth/` files, and that is deliberate rather than unfinished. + +The corpus derives ground truth from upstream and gates it against an independent oracle. These documents have no upstream ground truth: they are raw published files. Generating it by running the extractor over them would record today's output as the definition of correct, so any later regression would match the golden file and pass. That would make this corpus worse than having none. + +Its value is differential. Two builds run over the same documents and their outputs are compared, which catches a change that alters output anywhere it should not, without anyone having to say in advance what the right answer is. + +## Vendored + +| path | source | licence | evidence | +|---|---|---|---| +| `pdf/regression/1501.05129v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/3.0/ | arXiv OAI | +| `pdf/regression/1601.00914v4.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/1707.05686v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/1903.09624v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/1906.11682v4.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/1907.12836v5.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2004.12796v4.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2009.03251v4.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2012.00565v4.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2012.01261v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2012.06424v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2012.07391v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2012.10175v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2012.15315v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2102.02280v5.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2103.10228v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2104.04354v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2104.10574v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2104.10759v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2105.01228v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2105.11922v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2106.01117v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2106.05171v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2107.11718v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2108.06777v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2108.11258v5.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2108.11312v2.pdf` | arXiv preprints | http://creativecommons.org/publicdomain/zero/1.0/ | arXiv OAI | +| `pdf/regression/2109.00790v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2109.05617v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2109.09221v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2109.12116v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2110.09475v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2111.02858v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2111.02868v2.pdf` | arXiv preprints | http://creativecommons.org/publicdomain/zero/1.0/ | arXiv OAI | +| `pdf/regression/2111.11266v5.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2111.14048v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2112.00074v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2112.04248v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2112.06304v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2112.10023v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2112.14120v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2112.15580v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2201.03487v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2201.09582v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2202.12461v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2202.13359v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2203.03500v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2203.13748v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2203.15622v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2203.17091v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2206.07478v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2206.10020v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2207.04061v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2207.04077v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2208.07288v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2208.10640v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2208.11795v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2209.10546v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2209.14646v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2210.04129v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2210.13607v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2210.17370v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2211.03243v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2211.03735v4.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2211.04466v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2211.04891v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2211.08917v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2211.15369v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2211.16111v5.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2212.00276v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2212.14866v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2301.00300v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2301.00780v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2302.03092v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2302.05042v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2302.12160v3.pdf` | arXiv preprints | http://creativecommons.org/publicdomain/zero/1.0/ | arXiv OAI | +| `pdf/regression/2302.13842v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2303.14580v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2303.16063v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2303.18112v4.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2304.00307v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2304.03032v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2304.13392v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2305.15049v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2305.18266v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2305.18836v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2306.07616v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2306.07757v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2308.10232v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2308.11559v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2308.14210v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2309.00660v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2309.00945v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2310.07601v2.pdf` | arXiv preprints | http://creativecommons.org/publicdomain/zero/1.0/ | arXiv OAI | +| `pdf/regression/2310.08783v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2311.05193v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2311.05711v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2311.13330v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2311.14660v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2312.02129v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2312.06541v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2312.07995v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2312.12348v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2401.01797v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2401.15701v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2403.00928v2.pdf` | arXiv preprints | http://creativecommons.org/publicdomain/zero/1.0/ | arXiv OAI | +| `pdf/regression/2403.02032v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2403.03464v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2403.13977v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2403.14920v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2404.13644v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2405.11673v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2405.19306v4.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2406.00206v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2406.01828v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2406.06047v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2406.07206v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2406.09909v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2406.17344v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2406.17411v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2407.10594v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2407.19233v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2407.21555v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2408.05643v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2409.06905v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2409.14054v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2409.17218v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2410.03495v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2410.09261v10.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2411.03261v1.pdf` | arXiv preprints | http://creativecommons.org/publicdomain/zero/1.0/ | arXiv OAI | +| `pdf/regression/2411.14334v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2411.15406v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2411.16013v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2411.17036v6.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2412.09790v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2412.16404v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2412.16714v1.pdf` | arXiv preprints | http://creativecommons.org/publicdomain/zero/1.0/ | arXiv OAI | +| `pdf/regression/2412.19383v4.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2501.00344v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2501.04027v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2501.07506v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2502.12881v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2502.14946v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2503.03060v2.pdf` | arXiv preprints | http://creativecommons.org/publicdomain/zero/1.0/ | arXiv OAI | +| `pdf/regression/2503.18222v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2504.04885v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2504.07944v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2504.09917v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2504.10718v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2504.14304v1.pdf` | arXiv preprints | http://creativecommons.org/publicdomain/zero/1.0/ | arXiv OAI | +| `pdf/regression/2505.11337v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2506.06468v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2507.07170v4.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2507.10193v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2507.23123v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2508.07776v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2508.10087v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2509.02490v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2509.24785v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2509.24787v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2510.01507v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2510.15159v4.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2510.22120v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2510.25326v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2511.04380v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2511.07120v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2511.18275v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2511.21950v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2512.21906v2.pdf` | arXiv preprints | http://creativecommons.org/publicdomain/zero/1.0/ | arXiv OAI | +| `pdf/regression/2512.22719v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2601.02755v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2602.04407v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2602.04422v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2602.15805v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2602.19593v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2603.04202v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2603.10761v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2603.12241v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2603.23905v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2603.24499v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2603.26507v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2604.05910v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2604.07444v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2604.18989v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2605.00484v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2605.05442v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2605.07580v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2605.14616v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2605.15742v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2605.29036v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2606.09972v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2606.16948v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2606.26550v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2606.29512v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2607.01995v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2607.02233v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2607.10105v1.pdf` | arXiv preprints | http://creativecommons.org/publicdomain/zero/1.0/ | arXiv OAI | +| `pdf/regression/2607.11608v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2607.13953v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2607.18375v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2607.22236v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2607.24705v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2608.02543v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `pdf/regression/2608.02861v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by/4.0/ | arXiv OAI | +| `office/regression/000_000001.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000002.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000003.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000004.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000005.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000006.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000007.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000008.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000009.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000010.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000011.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000012.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000013.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000014.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000015.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000016.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000018.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000019.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000020.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000021.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000022.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000024.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000025.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000026.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000028.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000029.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000030.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000031.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000032.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000033.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000034.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000035.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000036.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000037.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000038.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000040.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000041.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000042.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000043.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000044.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000045.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000046.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000047.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000048.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000049.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000050.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000051.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000052.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000053.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000054.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000055.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000056.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000057.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000058.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000059.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000060.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000061.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000062.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000063.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000064.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000065.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000066.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000068.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000069.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000070.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000071.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000072.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000073.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000074.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000075.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000076.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000077.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000078.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000079.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000080.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000081.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000082.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000084.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000085.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000086.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000087.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000088.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000089.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000090.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000092.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000093.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000094.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000095.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000096.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000098.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000100.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000101.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000102.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000103.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000104.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000105.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000106.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000111.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000113.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000114.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000116.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000118.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000119.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000120.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000121.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000122.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000123.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000124.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000125.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000126.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000127.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000128.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000129.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000130.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000131.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000132.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000133.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000134.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000135.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000136.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000137.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000138.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000139.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000140.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000141.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000142.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000143.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000144.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000145.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000146.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000147.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000148.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000149.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000150.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000151.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000152.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000153.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000154.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000155.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000156.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000157.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000158.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000159.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000160.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000161.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000162.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000163.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000164.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000165.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000166.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000167.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000168.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000169.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000170.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000171.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000173.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000174.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000175.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000176.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000177.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000178.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000179.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000180.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000181.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000182.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000183.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000184.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000185.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000186.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000187.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000188.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000189.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000190.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000191.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000192.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000193.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000194.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000195.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000196.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000197.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000198.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000199.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000200.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000201.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000202.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000203.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000204.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000205.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000206.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000207.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000208.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000209.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000210.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000211.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000212.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000213.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000214.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000215.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000216.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000217.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000218.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000219.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000220.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000221.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000222.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000224.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000226.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000227.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000228.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000229.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000230.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000236.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000248.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000249.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000250.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000251.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000252.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000253.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000254.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000255.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000256.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000259.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000260.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000261.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000262.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000263.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000264.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000265.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000266.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000267.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000268.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000269.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000270.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000271.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000272.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000273.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000274.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000275.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000276.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000277.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000278.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000279.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000280.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000281.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000282.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000283.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000284.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000285.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000286.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000287.doc` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000288.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000289.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000290.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000291.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000292.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000293.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000294.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000295.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000296.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000297.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000298.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000299.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000300.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000301.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000302.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000303.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000304.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000305.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000306.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000307.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000308.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000309.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000310.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000311.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000312.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000313.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000314.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000315.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000316.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000317.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000318.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000319.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000320.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000321.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000322.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000323.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000324.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000325.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000326.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000327.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000328.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000329.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000330.ppt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000331.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000332.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000333.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000334.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000336.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000337.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000338.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000339.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000340.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000341.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000342.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000343.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000344.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000345.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000346.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000347.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000348.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000349.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000350.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000351.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000352.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000353.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000354.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000355.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000356.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000357.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000358.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000359.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000360.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000361.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000362.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000363.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000364.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000365.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000366.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000367.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000368.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000369.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000370.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000371.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000372.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000373.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000375.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000377.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000378.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000379.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000380.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000381.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000382.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000383.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000384.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000385.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000386.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000387.txt` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000388.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000390.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000391.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000392.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000393.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000394.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000395.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000396.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000398.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000399.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000401.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000402.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000403.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000405.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000406.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000407.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000408.xls` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000409.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000410.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000411.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000412.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000413.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000414.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000415.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000416.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000418.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000420.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000421.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000422.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000423.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000424.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000425.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000426.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000427.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000428.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000429.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000430.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000431.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000433.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000434.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000435.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000436.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000438.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000439.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000440.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000442.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000444.pdf` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000445.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000446.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000447.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000448.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000449.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `office/regression/000_000450.html` | govdocs1 | Public domain (US government works, 17 U.S.C. 105) | https://digitalcorpora.org/corpora/file-corpora/files/ | +| `epub/regression/pg1000.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1001.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1002.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1003.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1004.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1005.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1006.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1007.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1008.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1009.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1010.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1011.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1012.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1013.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1014.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1015.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1016.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1017.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1018.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1019.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1020.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1021.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1022.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1023.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1024.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1025.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1026.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1027.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1028.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1029.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1030.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1031.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1032.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1033.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1034.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1035.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1036.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1037.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1038.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1039.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1040.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1041.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1042.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1043.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1044.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1045.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1046.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1047.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1048.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1049.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1050.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1051.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1052.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1053.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1054.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1055.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1056.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1057.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1058.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1059.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1060.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1061.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1062.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1063.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1064.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1065.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1066.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1067.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1068.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1069.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1074.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1075.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1076.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1077.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1078.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1079.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1080.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1081.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1082.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1083.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1084.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1085.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1086.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1087.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1088.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1089.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1090.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1091.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1092.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1093.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1094.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1095.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1096.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1097.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1098.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1099.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1100.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1101.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1102.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1103.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1104.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1105.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1106.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1107.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1108.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1109.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1110.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1111.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1112.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1113.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1114.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1115.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1116.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1117.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1118.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1119.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1120.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1121.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1122.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1123.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1124.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1125.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1126.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1127.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1128.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1129.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1130.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1131.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1132.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1133.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1134.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1135.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1136.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1137.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1138.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1139.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1140.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1141.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1142.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1143.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1144.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1145.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1146.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1147.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1148.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1149.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1150.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1151.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1152.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1153.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1154.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1155.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1156.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1157.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1158.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1159.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1160.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1161.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1162.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1163.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1164.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1165.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1166.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1167.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1168.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1169.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1170.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1171.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1172.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1173.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1174.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1175.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1176.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1177.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1178.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1179.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1180.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1181.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1182.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1183.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1184.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1185.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1186.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1187.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1188.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1189.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1190.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1191.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1192.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1193.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1194.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1195.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1196.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1197.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1198.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1199.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1200.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1201.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1202.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1203.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1300.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1301.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1302.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1303.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1304.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1305.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1306.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1307.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1308.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1309.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1310.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1311.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1312.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1313.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1314.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1315.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1316.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1317.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1318.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1319.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1320.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1321.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1322.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1323.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1324.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1325.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1326.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1327.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1328.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1329.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1330.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1331.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1332.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1333.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1334.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1335.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1336.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1337.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1338.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1339.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1340.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1341.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1342.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1343.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1344.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1345.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1346.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1347.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1348.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1349.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1350.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1351.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1352.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1353.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1354.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1355.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1356.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1357.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1358.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1359.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1360.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1361.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1362.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1363.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1364.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1365.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1366.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1367.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1368.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1369.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1370.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1371.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1372.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1373.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1374.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1375.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1376.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1377.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1378.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1379.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1380.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1381.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1382.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1383.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1384.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1385.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1386.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1387.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1388.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1389.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1390.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1391.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1392.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1393.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1394.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1395.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1396.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1397.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1398.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1399.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1400.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1401.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1402.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1403.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1404.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1405.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1406.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1407.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1408.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1409.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1410.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1411.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1412.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1413.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1414.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1415.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1416.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1417.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1418.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1419.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1420.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1421.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1422.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1423.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1424.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1425.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1426.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1427.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1428.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1429.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1430.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1431.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1432.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1433.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1434.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1435.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1436.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1437.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1438.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1439.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1440.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1441.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1442.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1443.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1444.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1445.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1446.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1447.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1448.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1449.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1450.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1451.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1452.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1453.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1454.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1455.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1456.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1457.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1458.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1459.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1460.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1461.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1462.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1463.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1464.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1465.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1466.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1467.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1468.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1469.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1470.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1471.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1472.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1473.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1474.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1475.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1476.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1477.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1478.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1479.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1480.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1481.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1482.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1483.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1484.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1485.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1486.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1487.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1488.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1489.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1490.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1491.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1492.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1493.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1494.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1495.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1496.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1497.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1498.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1499.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1500.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1501.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1502.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1503.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1504.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1505.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1506.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1507.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1508.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1509.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1510.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1511.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1512.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1513.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1514.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1515.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1516.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1517.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1518.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1519.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1520.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1521.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1522.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1523.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1524.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1525.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1526.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1527.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1528.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1529.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1530.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1531.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1532.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1533.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1534.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1535.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1536.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1537.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1538.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1539.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1540.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1541.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1542.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1543.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1544.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1545.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1546.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1547.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1548.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1549.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1550.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1551.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1552.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1553.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1554.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1555.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1556.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1557.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1558.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1559.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1560.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1561.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1562.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1563.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1564.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1565.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1566.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1567.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1568.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1569.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1570.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1571.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1572.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1573.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1574.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1575.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1576.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1577.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1578.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1579.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1580.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1581.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1582.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1583.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1584.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1585.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1586.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1587.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1588.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1589.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1590.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1591.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1592.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1593.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1594.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1595.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1596.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1597.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1598.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `epub/regression/pg1599.epub` | Project Gutenberg | Public domain (US) | https://www.gutenberg.org/policy/permission.html | +| `jats/regression/PMC10113975.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC10147726.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC10297705.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC10375883.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC10528951.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC10535277.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC10539332.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC10656336.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC10683500.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC10744505.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC10760868.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC10784565.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC10814825.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC10814825.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC10897326.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC10912716.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC10919840.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC10931467.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC10931467.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC10944220.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC10995042.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC10995042.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11003928.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11003928.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11003954.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11003954.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11031498.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11098755.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11104612.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11125053.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11132467.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11142586.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11148057.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11148057.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11150379.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11150379.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11192889.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11192889.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11202430.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11202430.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11202964.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11202964.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11203073.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11203073.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11216626.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11232358.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11232358.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11251599.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11251599.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11265003.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11320164.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11344159.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11349114.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11350040.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11354171.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11354171.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11355752.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11374887.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11393299.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11426518.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11426518.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11430978.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11431272.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11431509.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11432912.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11432912.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11449981.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11449981.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11455726.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11455726.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11470903.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11470903.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11480043.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11480043.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11486830.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11507041.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11507332.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11507332.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11525335.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11547666.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11547666.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11561019.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11563764.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11582699.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11592528.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11592724.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11592724.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11592777.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11594430.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11607445.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11616886.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11625132.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11639377.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11645317.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11645317.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11647784.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11655608.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11655608.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11655620.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11655620.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11658961.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11660235.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11671748.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11671748.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11686192.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11687670.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11698396.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11698396.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11699369.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11699369.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11706479.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11706479.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11719647.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11719647.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11724801.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11724801.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11724804.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11724804.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11731760.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11748019.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11752501.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11753321.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11753321.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11753677.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11754794.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11760947.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11765324.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11768288.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11768327.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11768327.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11799131.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11804144.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11804144.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11808771.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11808771.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11818071.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11830316.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11834426.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11834426.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11835342.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11841862.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11842819.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11853851.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11853851.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11853975.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11854182.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11854182.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11860955.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11868296.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11868296.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11872991.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11872991.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11880090.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11880090.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11880499.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11880499.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11887115.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11890391.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11890391.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11902327.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11902780.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11902805.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11908559.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11908559.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11909071.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11913945.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11913945.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11923067.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11926038.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11926038.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11936241.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11936241.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11940191.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11941368.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11941368.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11941605.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11943586.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11943586.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11946050.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11951849.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11951849.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11954749.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11954749.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11970696.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11971180.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11971180.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11971200.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11971200.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11971235.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11977074.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11977112.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11978452.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11982130.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11982171.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC11991036.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12006183.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12006387.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12011976.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12011976.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12015914.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12025549.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12025549.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12025928.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12025928.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12026301.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12026301.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12029216.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12029558.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12029558.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12030878.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12030878.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12031010.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12031010.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12031338.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12031338.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12031957.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12040285.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12042887.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12046378.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12053226.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12053226.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12060242.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12060242.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12068645.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12068645.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12076499.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12077784.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12078368.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12078368.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12085359.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12089248.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12092501.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12095524.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12097631.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12101670.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12102228.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12103496.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12108858.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12108858.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12110697.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12110746.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12110753.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12110753.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12111591.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12111591.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12113591.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12115973.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12116775.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12119028.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12124356.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12124356.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12127794.nxml` | PubMed Central open access | CC-BY-3.0 | JATS ali:license_ref | +| `jats/regression/PMC12127794.xml` | PubMed Central open access | CC-BY-3.0 | JATS ali:license_ref | +| `jats/regression/PMC12140661.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12140661.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12146229.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12152925.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12156320.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12156320.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12157212.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12175079.nxml` | PubMed Central open access | CC-BY-3.0 | JATS ali:license_ref | +| `jats/regression/PMC12177006.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12177006.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12177012.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12177012.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12180666.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12187838.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12187838.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12191572.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12191572.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12191672.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12191820.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12191820.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12192408.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12192408.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12192506.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12193880.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12194039.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12197266.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12197266.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12200861.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12201588.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12204626.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12212563.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12213896.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12214561.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12214598.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12219029.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12221080.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12225753.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12225753.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12227729.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12238751.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12240399.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12255578.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12255623.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12259811.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12259811.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12260097.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12261459.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12265988.nxml` | PubMed Central open access | CC-BY-3.0 | JATS ali:license_ref | +| `jats/regression/PMC12265988.xml` | PubMed Central open access | CC-BY-3.0 | JATS ali:license_ref | +| `jats/regression/PMC12274245.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12274245.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12277398.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12283871.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12283871.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12293069.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12294102.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12294171.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12294351.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12294463.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12294463.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12295830.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12295948.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12295948.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12298435.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12298435.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12301016.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12301016.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12308350.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12310883.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12310883.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12316784.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12316784.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12316818.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12316818.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12316858.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12317882.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12317882.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12317992.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12325449.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12325449.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12335408.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12335408.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12341082.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12344285.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12344285.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12346955.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12346955.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12349628.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12349628.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12351300.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12351300.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12352743.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12362351.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12370208.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12371343.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12371409.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12372946.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12380267.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12380953.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12381056.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12381213.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12381213.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12385433.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12385433.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12385675.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12387125.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12387125.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12390310.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12396723.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12398451.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12419668.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12422462.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12423140.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12430273.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12430273.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12430873.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12430873.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12430979.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12430979.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12431235.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12431235.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12431318.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12431318.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12431404.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12431404.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12440210.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12440210.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12440624.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12453756.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12453756.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12457545.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12457545.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12468287.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12468715.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12468715.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12472120.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12473849.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12476420.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12476420.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12480521.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12483640.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12491654.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12500168.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12500168.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12500371.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12500772.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12500772.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12503940.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12511409.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12511409.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12513633.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12513925.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12513925.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12518449.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12521310.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12521310.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12526801.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12528203.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12528203.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12528827.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12528827.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12529146.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12529146.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12533972.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12537993.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12537993.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12540708.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12543168.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12549433.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12559148.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12562088.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12564046.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12564046.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12564203.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12578354.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12580444.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12580444.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12582295.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12582433.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12583131.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12583131.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12589237.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12592358.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12592358.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12593390.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12593390.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12598859.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12598859.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12615684.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12626311.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12627718.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12628016.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12628016.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12647297.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12647297.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12649373.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12649903.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12651094.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12651176.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12651698.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12651698.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12654209.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12654209.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12665521.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12665521.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12671912.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12671912.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12675571.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12680364.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12680882.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12684706.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12691448.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12696151.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12696151.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12701863.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12701863.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12704870.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12704870.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12704905.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12704905.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12705306.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12705306.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12705632.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12705632.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12708753.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12708753.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12714238.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12717847.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12717847.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12727910.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12727910.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12729394.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12729597.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12732027.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12732027.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12732191.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12732191.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12735259.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12735259.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12736911.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12736911.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12738658.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12748620.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12749467.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12750319.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12750319.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12757381.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12768382.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12768382.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12780044.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12780044.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12789174.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12789174.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12804273.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12808344.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12808344.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12808832.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12816658.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12828109.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12828109.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12837216.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12839921.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12839921.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12840204.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12840278.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12840278.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12844531.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12844840.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12848303.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12854464.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12858077.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12862039.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12863671.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12863695.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12864367.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12865184.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12866642.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12868281.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12874148.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12882039.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12883986.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12888820.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12888820.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12900436.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12909361.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12909417.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12909417.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12916507.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12916507.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12921667.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12929435.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12929613.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12929625.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12929625.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12929627.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12929683.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12931778.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12931778.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12931796.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12931796.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12935801.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12935802.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12939330.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12939330.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12939611.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12939611.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12939637.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12939637.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12941493.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12941493.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12942115.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12942115.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12946219.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12946304.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12946304.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12953301.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12953301.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12960909.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12961220.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12963489.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12970979.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12970979.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12971751.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12971751.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12971858.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12986601.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12987928.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12995946.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC12995946.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13009153.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13009153.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13012514.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13025370.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13025424.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13025984.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13025984.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13027923.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13027923.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13028750.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13028750.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13029209.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13030197.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13030197.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13031190.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13031190.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13031274.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13031274.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13035863.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13046245.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13046245.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13046469.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13046469.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13049861.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13049861.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13050337.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13050337.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13050847.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13050847.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13056210.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13056210.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13056660.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13061980.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13065599.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13068761.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13074848.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13077070.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13079891.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13079891.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13080004.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13082719.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13082719.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13089341.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13090215.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13090279.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13099575.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13109951.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13111495.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13111495.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13111691.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13111691.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13113320.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13113320.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13114329.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13114329.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13114335.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13114335.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13114686.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13114861.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13114861.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13126757.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13128137.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13128137.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13136274.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13136614.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13141151.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13148690.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13148690.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13151308.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13151308.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13165860.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13165860.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13167807.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13167807.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13168053.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13172525.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13178780.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13178872.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13178872.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13187351.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13187351.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13187592.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13188243.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13190485.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13190485.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13205184.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13205184.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13205337.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13205337.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13206136.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13206136.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13206335.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13210692.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13210692.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13210852.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13212496.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13216187.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13221354.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13221354.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13222247.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13222247.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13224846.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13224846.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13225436.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13225436.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13228047.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13230314.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13230314.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13236791.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13236791.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13241319.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13241319.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13241421.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13241421.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13243332.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13246587.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13246742.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13257476.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13263304.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13264549.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13267337.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13267337.xml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13273588.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13273790.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13283489.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13284481.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13286279.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC13287130.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC9747052.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | +| `jats/regression/PMC9849319.nxml` | PubMed Central open access | CC-BY-4.0 | JATS ali:license_ref | + +## Reference only + +| document | source | licence | evidence | +|---|---|---|---| +| `0704.0595v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `0704.1157v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `0704.3577v3.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `0705.1933v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `0705.2139v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `0705.2460v3.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `0707.2784v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `0708.0234v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `0710.5860v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `0711.3994v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `0712.0705v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `0712.3892v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `0712.4025v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0801.2478v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `0805.4079v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0806.0616v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0806.1706v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0807.1995v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0808.1361v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0808.1417v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0810.0537v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0811.0600v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0811.2064v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0811.2093v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0901.0323v5.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0901.4716v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0902.1352v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0902.3190v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0903.1493v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0903.2592v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0903.3097v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0903.4321v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0904.0744v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0906.3666v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0907.2557v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0908.3643v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0908.4052v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0912.0718v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0912.4337v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `0912.5492v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1001.0091v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1002.3347v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1003.1743v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1003.4222v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1004.0163v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1004.1172v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1004.1577v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1004.2225v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1004.3986v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1004.4076v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1005.0533v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1005.3766v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1005.3800v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1005.3801v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1005.3802v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1005.3804v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1005.4470v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1006.5779v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1007.1373v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1007.2373v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1007.5302v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1008.1086v5.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1008.2821v5.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1008.4981v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1009.3103v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1009.3105v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1009.3347v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1009.5737v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1010.2874v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1010.4769v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1012.0582v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1012.2351v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1012.2754v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1012.3843v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1101.0596v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1101.3874v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1101.4174v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1101.4216v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1102.0776v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1102.1201v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1102.1202v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1102.5276v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1102.5356v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1103.4826v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1104.0189v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1104.2937v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1104.5490v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1105.0018v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1105.0453v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1105.0652v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1105.0748v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1105.0881v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1105.1239v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1106.3974v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1106.4360v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1106.5750v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1107.4101v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1107.4426v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1108.1760v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1108.2241v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1108.3191v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1109.0274v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1109.2881v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1109.4538v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1109.4582v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1109.6811v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1110.1655v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1110.1845v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1110.4158v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1111.2800v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1111.3472v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1112.4009v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1201.3089v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1201.4601v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1201.6541v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1202.1158v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1202.1642v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1202.3230v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1202.4713v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1203.1140v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1203.4027v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1204.2818v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1204.5629v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1205.3548v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1205.6104v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1206.2185v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1206.2212v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1206.5182v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1206.5213v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1207.4057v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1207.4351v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1207.4367v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1207.4696v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1207.5447v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1208.3366v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1208.4977v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1208.6568v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1209.1560v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1209.2148v7.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1210.0856v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1210.2684v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1210.3662v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1210.5448v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1210.7717v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1211.2415v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1211.6063v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1212.0527v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1212.0839v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1212.2301v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1301.0147v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1301.4935v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1302.4045v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1302.5930v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1302.5971v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1303.1130v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1303.3186v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1303.5113v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1303.7028v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1304.0562v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1305.2613v5.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1305.3342v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1305.3397v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1305.5952v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1305.7405v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1306.2117v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1307.1780v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1307.3123v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1307.4180v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1307.8395v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1308.2555v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1308.4247v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1308.4938v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1308.6559v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1309.0109v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1309.3267v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1309.6536v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1310.5571v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1310.6332v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1310.6971v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1311.1396v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1311.2297v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1311.2883v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1311.3217v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1311.4897v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1311.6681v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1312.2964v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1312.5848v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1312.6992v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1312.7591v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1401.0326v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1401.0829v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1401.2122v5.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1401.2520v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1401.3014v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1401.5938v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1401.8190v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1402.0712v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1402.3381v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1402.3621v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1402.5529v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1403.0022v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1403.0170v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1403.4994v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1403.6860v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1404.1098v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1404.1401v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1404.1442v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1404.2192v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1405.1182v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1405.3256v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1405.3327v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1405.3910v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1407.4358v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1408.1384v5.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1408.3779v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1408.6766v12.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1409.1700v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1409.3202v6.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1409.5277v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1409.6878v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1409.7366v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1409.7468v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1410.0992v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1410.1440v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1410.4132v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1410.6188v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1410.6771v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1410.8817v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1411.2964v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1412.0549v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1412.4437v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1412.5025v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1501.01975v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1501.03137v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1501.06503v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1501.07410v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1502.00557v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1502.04398v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1502.06003v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1502.07719v7.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1503.02395v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1503.08330v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1505.01212v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1505.03369v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1505.06870v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1505.06995v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1506.00663v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1506.02476v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1506.02728v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1506.04386v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1506.06645v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1506.07243v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1506.07488v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1507.02235v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1507.03627v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1507.08213v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1508.00353v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1508.01550v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1508.02978v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1508.03616v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1508.05261v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1508.05613v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1509.07956v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1511.03180v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1512.04080v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1512.05512v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1512.06779v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1512.07823v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1512.07845v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1512.08052v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1512.08767v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1512.09298v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1601.05138v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1601.08181v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1602.01222v6.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1602.07262v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1603.00239v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1603.01172v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1603.03871v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1603.04490v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1603.07969v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1604.02064v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1604.02413v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1604.02842v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1604.04777v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1604.06813v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1604.07382v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1605.01323v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1605.02239v5.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1605.02643v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1605.02931v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1605.03519v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1605.05945v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1605.07095v6.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1605.07615v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1605.07639v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1605.08794v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1606.02102v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1606.02331v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1606.03591v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1606.06371v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1606.07053v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1606.07451v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1607.01859v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1607.04859v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1607.04864v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1607.06196v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-sa/4.0/ | arXiv OAI | +| `1607.07463v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1607.08124v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1607.08563v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1608.06556v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1608.07227v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1609.00190v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1609.00989v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1609.07689v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1610.01103v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1610.03415v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1610.03821v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1610.09438v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1611.01876v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1611.03581v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1611.03760v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1611.04960v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1611.09294v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1612.01203v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1612.03722v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1612.08138v5.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1612.09044v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1701.01157v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1701.03066v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1701.04482v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1701.08459v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1702.03024v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1702.03376v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1702.04631v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1702.05179v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1702.07216v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1702.07987v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1703.04465v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1703.04817v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1703.05064v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1703.07622v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1703.09422v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1703.09905v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1706.01351v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1706.06008v5.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1706.07714v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1706.07726v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1706.08942v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1706.09950v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1707.02917v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1707.07664v5.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1707.08501v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-nc-sa/4.0/ | arXiv OAI | +| `1708.00840v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1708.02134v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1708.09432v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1709.00331v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1709.01279v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1709.02045v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1709.04089v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1709.05053v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1710.00344v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1710.01610v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1710.06153v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1710.06705v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1710.11596v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1711.00782v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1711.01473v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1711.05118v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1711.06390v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1711.07108v7.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1711.10081v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1711.11261v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1712.00333v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1712.04095v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1712.07602v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1712.09830v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1801.00878v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1801.01335v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1801.04596v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1801.06002v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1801.07858v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1801.08794v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1801.09410v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1801.10073v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1802.01213v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1802.01716v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1802.03250v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1802.06410v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1802.08192v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1803.00792v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1803.03044v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1803.05890v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1803.10223v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1803.10224v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1804.03434v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1804.05908v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1804.07989v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1804.10260v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1804.11253v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1805.01303v6.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1805.03506v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1805.03634v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-nc-sa/4.0/ | arXiv OAI | +| `1805.04959v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1805.06365v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-nc-sa/4.0/ | arXiv OAI | +| `1805.11269v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1806.00583v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1806.01719v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1806.04701v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1806.05152v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1806.05714v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1806.09874v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1806.09875v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1807.00712v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1807.04506v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1807.04642v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1807.08737v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1807.09850v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1807.09857v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1807.11466v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1808.02464v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1808.02594v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1808.04034v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1808.06078v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1808.07557v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1808.07756v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1808.08479v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1808.09173v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-nc-sa/4.0/ | arXiv OAI | +| `1809.00534v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-sa/4.0/ | arXiv OAI | +| `1809.00803v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1809.03718v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1809.05401v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1809.06696v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1809.07881v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1810.00153v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1810.01145v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1810.01324v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1810.01848v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1810.03026v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1810.04850v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1810.06957v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1810.07919v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-sa/4.0/ | arXiv OAI | +| `1810.09472v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1810.12706v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1811.02584v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1811.02925v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1811.04267v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1811.07797v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1812.03018v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1812.05109v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1812.11649v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1901.01335v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1901.02013v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1901.02973v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1901.06596v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1902.00494v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1902.03118v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1902.03278v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1902.04104v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1902.05271v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1902.06304v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1902.08539v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1902.09019v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1902.10637v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1903.00052v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1903.04974v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-nc-sa/4.0/ | arXiv OAI | +| `1903.06558v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1903.07176v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1903.07311v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1903.08768v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1903.10078v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1903.11015v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1904.01048v5.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1904.02191v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1904.02389v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1904.03770v5.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1904.06169v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1904.08137v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1904.08789v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1904.09575v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-nc-sa/4.0/ | arXiv OAI | +| `1905.02274v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1905.02413v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1905.03200v5.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1905.07309v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1905.10586v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1905.13729v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1906.04093v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1906.04350v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1906.04715v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1906.09830v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1906.11517v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1906.11523v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1906.11656v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1906.12339v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1907.01438v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1907.05311v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1907.07921v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1907.08146v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1907.08182v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1907.11694v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1907.12308v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1907.13028v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1908.00571v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1908.01829v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1908.02259v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1908.02615v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1908.03834v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1908.03944v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1908.04661v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1909.02054v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1909.02699v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1909.03536v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1909.09312v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1909.11394v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1909.11718v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1909.12241v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1909.13325v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1910.01437v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1910.03098v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1910.04026v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1910.04262v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1910.05500v7.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1910.08358v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1910.10632v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1910.12305v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1910.12983v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1910.13163v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1912.00973v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1912.01366v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1912.07952v4.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-sa/4.0/ | arXiv OAI | +| `1912.07973v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1912.07997v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1912.08316v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1912.08876v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1912.10443v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-nc-sa/4.0/ | arXiv OAI | +| `1912.11669v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1912.13018v5.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `1912.13288v5.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2001.00320v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2001.01546v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2001.01721v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2001.01725v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2001.03892v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2001.04972v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-nc-nd/4.0/ | arXiv OAI | +| `2002.01949v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2002.02799v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2002.02946v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2002.03441v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2002.06606v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2002.06949v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2002.07121v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2002.07785v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2002.09813v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2002.11580v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2003.00901v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2003.04405v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2003.07239v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2003.11220v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2003.11868v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2004.03014v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2004.03240v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2004.04194v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2004.12383v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2005.01758v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2005.04102v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2005.09279v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2005.09287v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2005.12523v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2005.12689v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2006.00583v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2006.07168v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2006.10074v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2006.16229v5.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2007.00988v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2007.01869v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2007.06783v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2007.08171v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2007.08941v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2007.12203v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2007.12614v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2007.14315v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2008.03837v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2008.04361v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2008.07400v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2008.07503v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2008.10403v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2008.10995v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2009.03549v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2009.04128v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2009.04616v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2009.07154v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2009.07640v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2009.08258v7.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2009.08774v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2009.14196v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2010.03669v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2010.05281v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2010.06756v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2010.13123v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2010.14320v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2010.14646v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2011.00941v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2011.03662v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2011.04644v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2011.11361v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2011.12180v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2011.12213v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2012.02564v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2012.03813v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2012.06729v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2012.08311v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2012.14492v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-nc-sa/4.0/ | arXiv OAI | +| `2101.05653v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2102.02628v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2102.06206v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2102.08040v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2102.08311v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2102.09040v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2102.09316v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2102.11477v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2102.12202v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2102.13131v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2103.04187v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2103.10412v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2103.12942v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2103.14384v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2103.17019v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2104.04344v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-sa/4.0/ | arXiv OAI | +| `2104.07492v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2104.07859v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2104.07940v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2104.09797v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-nc-sa/4.0/ | arXiv OAI | +| `2104.13038v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2105.01025v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2105.05933v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2105.07907v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2105.08079v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2105.08084v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2105.13329v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2106.00035v5.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2106.11147v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2106.12006v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2106.15141v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2107.01720v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2107.07292v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2107.08269v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2107.11583v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2107.12561v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2108.00538v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2108.04280v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2108.06431v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2108.09878v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2108.12664v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2108.13335v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2108.13903v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2109.01389v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2109.05562v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2109.07730v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2109.09561v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2109.10932v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2110.07556v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2110.10958v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-sa/4.0/ | arXiv OAI | +| `2111.00286v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2111.03655v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2111.10652v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2111.12813v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2111.14569v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2112.04606v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2112.06210v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2112.11356v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-nc-nd/4.0/ | arXiv OAI | +| `2201.04514v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2201.04705v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2201.06643v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2201.07632v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2201.10149v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2201.10540v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2201.12641v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2202.00880v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2202.01655v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2202.02295v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2202.05966v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2202.09660v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2202.11036v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2202.11737v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2203.00446v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-nc-sa/4.0/ | arXiv OAI | +| `2203.01890v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2203.06003v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2203.06952v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2203.15113v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2204.00765v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2205.01282v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2205.03893v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2205.04110v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2205.08197v5.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-sa/4.0/ | arXiv OAI | +| `2205.14562v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2206.02162v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2206.03392v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2206.10819v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2206.14139v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2207.07603v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2207.09723v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2207.14076v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2209.02246v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2209.05004v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2209.11967v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2209.13481v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2209.15357v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2210.00537v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2210.01847v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2210.02151v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-nc-nd/4.0/ | arXiv OAI | +| `2210.05973v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2210.11812v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2210.13627v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2210.14923v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2211.01702v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2211.02758v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2211.06779v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2211.16680v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-nc-nd/4.0/ | arXiv OAI | +| `2212.02279v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2212.06499v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2212.09972v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2212.10606v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2301.01438v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2301.11021v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-nc-sa/4.0/ | arXiv OAI | +| `2302.01461v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2302.02709v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2302.07841v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2302.08423v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2302.13097v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2302.13526v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2302.14271v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2303.05604v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2304.00118v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2304.03934v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-sa/4.0/ | arXiv OAI | +| `2304.05315v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2305.00745v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2305.01297v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2305.07197v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2305.10393v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2305.14664v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2305.17789v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2306.02484v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2306.02969v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2306.05166v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2306.09230v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-nc-nd/4.0/ | arXiv OAI | +| `2306.10227v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2306.11617v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2306.14625v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2306.17013v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2307.07106v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2307.07587v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2307.11580v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2307.16677v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2308.00163v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2308.04010v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2308.06569v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2308.11174v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2309.01187v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2309.06261v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2309.15744v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2309.15829v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2309.16376v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2310.01193v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2310.04203v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2310.12275v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2310.18663v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2311.01558v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2311.03603v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2311.12147v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2311.14560v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2312.03234v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2312.04297v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2312.11702v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2312.12428v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2401.06696v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2402.00280v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2402.00975v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2402.05866v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2402.11482v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-nc-sa/4.0/ | arXiv OAI | +| `2402.13977v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2402.16525v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2402.17107v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2403.07168v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2403.11133v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-nc-sa/4.0/ | arXiv OAI | +| `2403.16878v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2404.03373v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2404.09488v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2404.10695v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2404.11550v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2404.14539v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2404.18364v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2405.03525v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2405.10732v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2405.19798v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2406.02848v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2406.02988v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2406.05895v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2407.16609v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2407.21194v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2409.02853v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2409.03687v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2409.03705v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2409.04031v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2409.09514v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2409.18450v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2410.06006v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2410.06801v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2410.15249v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2410.15493v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2410.15855v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2411.05997v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2411.06450v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2411.07840v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2411.17699v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2412.05354v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2412.14397v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2412.14813v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2412.16532v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2412.17579v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2412.17625v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2501.02877v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2501.16042v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2501.16499v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2502.02566v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2502.04752v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2502.11699v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2503.00633v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2503.14658v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2503.21572v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2504.02348v5.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2504.07016v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2504.08606v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2504.16687v2.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-nc-nd/4.0/ | arXiv OAI | +| `2505.01157v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2505.02572v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2506.08265v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2506.09244v5.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2506.12930v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2506.15362v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2507.06903v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2507.07617v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2507.10545v4.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2507.16599v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2507.16908v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2508.00115v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2508.00487v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2508.02457v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2508.02579v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2508.08427v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2508.10112v3.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-nc-nd/4.0/ | arXiv OAI | +| `2508.21483v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2509.02239v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2509.06869v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2509.07423v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2509.08453v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2509.14022v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2509.16848v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2509.24887v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2510.13206v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2511.03373v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2511.08356v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2511.18118v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2511.18623v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2512.02853v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2512.11704v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2512.24935v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2601.19097v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2601.22142v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2602.14996v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2602.17178v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2602.21981v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2603.02169v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2603.07653v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-nc-nd/4.0/ | arXiv OAI | +| `2604.00847v1.pdf` | arXiv preprints | http://creativecommons.org/licenses/by-nc-nd/4.0/ | arXiv OAI | +| `2604.12118v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2604.16288v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2604.20034v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2604.21583v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2605.06569v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2605.25755v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2605.28979v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2605.29203v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2606.00325v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2606.03182v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2606.05140v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2606.07735v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2606.15432v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2606.17911v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2607.03472v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2607.15140v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2607.18998v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2607.20400v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2607.28518v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2608.03771v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `2608.11106v1.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `cond-mat_0408407v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `cond-mat_0605120v3.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `gr-qc_0001067v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `gr-qc_0403083v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `gr-qc_0502116v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `gr-qc_9910047v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `hep-th_0105144v3.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `hep-th_0111067v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `hep-th_0210015v3.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `hep-th_0406026v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `hep-th_0411114v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `hep-th_0502134v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `hep-th_0509042v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `hep-th_0608140v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `hep-th_9909201v3.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0009008v4.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0107018v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0109006v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0109010v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0110020v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0206011v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0206028v3.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0209016v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0209023v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0209028v4.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0301009v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0303034v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0305061v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0309027v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0310032v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0312010v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0312021v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0401019v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0402057v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0402059v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0403007v3.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0406005v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0408060v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0509023v3.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0512056v3.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0607020v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0607047v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0611043v3.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0611078v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0702034v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_0703019v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_9805008v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_9809021v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_9812010v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_9905001v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math-ph_9911012v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0012232v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0104142v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0104143v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0105199v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0105207v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0105223v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0108085v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0108086v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0201062v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0206206v3.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0302286v4.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0303269v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0304245v5.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `math_0306242v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0309201v3.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0310451v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0311151v4.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0401229v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0402386v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0406087v3.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0407215v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0409057v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0409194v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0409306v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0409442v4.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0501257v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0506187v3.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0510096v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0602479v2.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `math_0602612v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0610006v3.pdf` | arXiv preprints | http://arxiv.org/licenses/nonexclusive-distrib/1.0/ | arXiv OAI | +| `math_0611152v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_0703272v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_9802058v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_9803115v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_9808130v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_9811020v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_9902115v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `math_9904149v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `nlin_0105053v3.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `nlin_0307026v2.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `nlin_0406038v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `quant-ph_0108073v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `quant-ph_0202067v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `quant-ph_0604075v3.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `solv-int_9902012v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `solv-int_9902013v1.pdf` | arXiv preprints | arXiv nonexclusive-distrib (implied, no license element) | arXiv OAI | +| `PMC10869190.nxml` | PubMed Central open access | UNKNOWN | JATS license-p | +| `PMC11053209.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11053209.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11063400.nxml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC11066946.nxml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC11066946.xml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC11161740.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11223724.nxml` | PubMed Central open access | UNKNOWN | JATS license-p | +| `PMC11287276.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11292007.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11377589.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11400968.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11400968.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11452640.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11462466.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11471844.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11496709.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11564815.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11568212.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11589647.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11589647.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11615299.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11618390.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11618390.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11637135.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11662465.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11662465.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11681002.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11682098.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11682098.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11704256.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11744457.nxml` | PubMed Central open access | UNKNOWN: This work is licensed under the Creative Commons Attribution 4.0 International License. | JATS license-p | +| `PMC11744457.xml` | PubMed Central open access | UNKNOWN: This work is licensed under the Creative Commons Attribution 4.0 International License. | JATS license-p | +| `PMC11799202.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11799292.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11799292.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11808600.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11837485.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11839909.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11842622.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11871137.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11885676.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11906804.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11912368.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11912453.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11914601.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11914601.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11928691.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11953297.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11955123.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC11975887.nxml` | PubMed Central open access | UNKNOWN | JATS license-p | +| `PMC12000611.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12002243.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12002243.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12006423.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12012222.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12012539.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12015267.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12015464.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12050338.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12086237.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12092724.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12092724.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12095535.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12101714.nxml` | PubMed Central open access | UNKNOWN | JATS license-p | +| `PMC12102193.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12102193.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12104362.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12107117.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12107117.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12124720.nxml` | PubMed Central open access | UNKNOWN: This article is licensed under CC-BY 4.0 | JATS license-p | +| `PMC12124720.xml` | PubMed Central open access | UNKNOWN: This article is licensed under CC-BY 4.0 | JATS license-p | +| `PMC12130473.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12130473.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12134258.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12149188.nxml` | PubMed Central open access | UNKNOWN | JATS license-p | +| `PMC12149188.xml` | PubMed Central open access | UNKNOWN | JATS license-p | +| `PMC12214555.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12214821.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12216705.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12216705.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12217519.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12217774.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12218038.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12219014.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12219014.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12219584.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12219584.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12219818.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12222646.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12222646.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12223193.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12223193.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12240917.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12241654.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12241654.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12254256.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12255705.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12260065.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12271340.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12271553.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12274623.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12274623.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12274801.nxml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC12274815.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12297273.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12297680.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12304163.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12306515.nxml` | PubMed Central open access | UNKNOWN | JATS license-p | +| `PMC12307575.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12307575.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12307931.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12311117.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12314015.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12314891.nxml` | PubMed Central open access | UNKNOWN: This article is licensed under CC-BY 4.0 | JATS license-p | +| `PMC12314891.xml` | PubMed Central open access | UNKNOWN: This article is licensed under CC-BY 4.0 | JATS license-p | +| `PMC12318084.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12318479.nxml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC12318479.xml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC12325940.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12337339.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12345337.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12363044.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12363044.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12373946.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12381285.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12397439.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12398499.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12398499.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12409569.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12409569.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12415529.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12426883.nxml` | PubMed Central open access | UNKNOWN: This article is licensed under CC-BY 4.0 | JATS license-p | +| `PMC12435308.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12445945.nxml` | PubMed Central open access | UNKNOWN | JATS license-p | +| `PMC12452938.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12464277.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12475229.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12475502.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12475502.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12479434.nxml` | PubMed Central open access | UNKNOWN | JATS license-p | +| `PMC12482316.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12484998.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12484998.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12485171.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12485171.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12488900.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12491486.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12491486.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12501312.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12528422.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12528422.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12528703.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12528703.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12531322.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12531322.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12534516.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12534516.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12541452.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12541452.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12546577.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12546577.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12558856.nxml` | PubMed Central open access | UNKNOWN | JATS license-p | +| `PMC12572654.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12572654.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12575307.nxml` | PubMed Central open access | UNKNOWN | JATS license-p | +| `PMC12575307.xml` | PubMed Central open access | UNKNOWN | JATS license-p | +| `PMC12583691.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12589455.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12604970.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12606365.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12606365.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12612204.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12615236.nxml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC12615236.xml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC12639076.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12639116.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12644992.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12644992.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12653354.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12658029.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12658029.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12658179.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12658211.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12660975.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12660975.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12663398.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12673672.nxml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC12696082.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12700892.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12704762.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12704762.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12714766.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12714766.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12718083.nxml` | PubMed Central open access | UNKNOWN: This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License. | JATS license-p | +| `PMC12722260.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12744632.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12745735.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12745735.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12753860.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12753860.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12771098.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12797065.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12804852.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12804852.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12808665.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12808665.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12815912.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12823316.nxml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC12830741.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12830741.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12830765.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12831530.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12847963.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12847963.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12876914.nxml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC12886757.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12886757.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12886916.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12896380.nxml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC12906951.nxml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC12906951.xml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC12910070.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12913912.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12920916.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12923592.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12931630.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12932716.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12947820.nxml` | PubMed Central open access | CC-BY-NC-3.0 | JATS ali:license_ref | +| `PMC12949060.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12963435.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12963435.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC12966797.nxml` | PubMed Central open access | UNKNOWN | JATS license-p | +| `PMC13022045.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13022045.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13034465.nxml` | PubMed Central open access | UNKNOWN: This article is licensed under CC-BY 4.0 | JATS license-p | +| `PMC13034465.xml` | PubMed Central open access | UNKNOWN: This article is licensed under CC-BY 4.0 | JATS license-p | +| `PMC13039369.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13039605.nxml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC13039708.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13039708.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13039893.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13039893.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13046778.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13046778.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13048998.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13061136.nxml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC13066009.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13067990.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13079775.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13079775.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13108736.nxml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC13108736.xml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC13129138.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13129138.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13139466.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13139466.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13144516.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13144516.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13153270.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13153270.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13155357.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13155478.nxml` | PubMed Central open access | UNKNOWN | JATS license-p | +| `PMC13155478.xml` | PubMed Central open access | UNKNOWN | JATS license-p | +| `PMC13187491.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13212731.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13212731.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13213060.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13213060.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13216344.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13216344.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13220861.nxml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC13220861.xml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC13226656.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13226656.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13237148.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13237851.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13242633.nxml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC13261620.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13261620.xml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13272956.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13273433.nxml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC13282921.nxml` | PubMed Central open access | CC-BY-NC-4.0 | JATS ali:license_ref | +| `PMC13287800.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13287802.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `PMC13298823.nxml` | PubMed Central open access | UNKNOWN: This article is licensed under CC-BY 4.0 | JATS license-p | +| `PMC13298823.xml` | PubMed Central open access | UNKNOWN: This article is licensed under CC-BY 4.0 | JATS license-p | +| `PMC9583325.nxml` | PubMed Central open access | CC-BY-NC-ND-4.0 | JATS ali:license_ref | +| `Abels_binomial_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Abels_irreducibility_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Addition_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Additive_combinatorics.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `AlexanderHirschowitz_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Alexandrovs_theorem_on_polyhedra.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `AmitsurLevitzki_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Antidynamo_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Approximate_maxflow_mincut_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `AxGrothendieck_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Bauer_maximum_principle.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `BernsteinKushnirenko_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Bertrands_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Bettis_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Birkhoffs_theorem_electromagnetism.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Blackwells_informativeness_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Blondels_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `BohrVan_Leeuwen_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `BordeGuthVilenkin_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `BraggGray_cavity_theory.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Buchdahls_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Buckingham_pi_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Budans_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Carnots_theorem_thermodynamics.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryCircuit_theorems.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryConjectures_that_have_been_proved.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryConservation_laws.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryInequalities_mathematics.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryLemmas.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryLemmas_in_algebra.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryMathematical_identities.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryMathematical_theorems_in_theoretical_computer_science.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryNogo_theorems.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryTheorems_about_polynomials.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryTheorems_in_abstract_algebra.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryTheorems_in_algebra.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryTheorems_in_discrete_mathematics.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryTheorems_in_dynamical_systems.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryTheorems_in_general_relativity.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryTheorems_in_geometry.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryTheorems_in_linear_algebra.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryTheorems_in_mathematical_analysis.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryTheorems_in_mathematical_physics.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryTheorems_in_number_theory.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryTheorems_in_probability_theory.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryTheorems_in_quantum_mechanics.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryTheorems_in_statistics.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryTheorems_in_the_foundations_of_mathematics.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryTheorems_in_topology.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `CategoryUniqueness_theorems.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Chasles_theorem_kinematics.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `ChevalleyWarning_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `ChungFuchs_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Clairauts_theorem_gravity.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Clapeyrons_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Classification_of_finite_simple_groups.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Classification_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Clausius_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Cohns_irreducibility_criterion.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Comparison_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Crosss_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Crystallographic_restriction_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Earnshaws_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `EilenbergWatts_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Electromagnetism_uniqueness_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Equipartition_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `EwaldOseen_extinction_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Existence_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `False_confidence_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Faltings_annihilator_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `First_and_second_fundamental_theorems_of_invariant_theory.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Fluctuationdissipation_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `ForsterSwan_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Free_will_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Frobenius_determinant_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Frobenius_reciprocity_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `FueterPlya_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Fullemployment_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Fundamental_theorem_of_calculus.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Fundamental_theorem_of_finitely_generated_abelian_groups.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Fundamental_theorem_of_topos_theory.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Gauss_congruence.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Gershgorin_circle_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Girsanov_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Goldstone_boson.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Greibachs_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Grey_box_model.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Gurzadyan_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Harans_diamond_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `HarishChandra_isomorphism.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Haynsworth_inertia_additivity_formula.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Heine_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Herglotzs_variational_principle.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `HilbertBurch_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `HochsterRoberts_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `HohenbergKohn_theorems.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Homoeoid_and_focaloid.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Htheorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Huas_identity.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Huddes_rules.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `JacobsonBourbaki_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `JacobsonMorozov_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Jouanolous_trick.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Kawasakis_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Knigs_theorem_kinetics.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `KoecherVinberg_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Kostants_convexity_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Kotzigs_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `KrullAkizuki_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Krulls_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `KuttaJoukowski_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Lamis_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `LawsonWoodward_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Lawveres_fixedpoint_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `LeggettGarg_inequality.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Leggett_inequality.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Liouvilles_theorem_differential_algebra.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `MalusDupin_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Mathematics_of_apportionment.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Matlis_duality.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Maximum_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `MerminWagner_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Minimax_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Mitchells_embedding_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `MotzkinTaussky_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Multiplication_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Nagatas_conjecture.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Namiokas_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `NielsenSchreier_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Nivens_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `No_free_lunch_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Noethers_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Norm_residue_isomorphism_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Odd_number_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Omegacategorical_theory.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Optical_sine_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Optical_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Pandya_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Parallel_axis_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Pasting_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Pataraias_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Pauthenier_equation.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Perpendicular_axis_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Perrons_irreducibility_criterion.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `PetersenMorley_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Plastic_limit_theorems.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Pokhozhaevs_identity.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Pomeranchuks_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Poppyseed_bagel_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Poyntings_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Pythagorean_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Rankindex_method.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Representation_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `SaintVenants_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Scallop_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Shell_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `ShockleyRamo_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Siaccis_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `SolovayKitaev_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Spinstatistics_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Steinitzs_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Stochastic_portfolio_theory.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Stokes_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `TaylorProudman_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Tennis_racket_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Theorem_of_three_moments.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Toy_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Transfinite_recursion_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Transport_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `TrombiVaradarajan_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Tutte_homotopy_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Varignons_theorem_mechanics.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Vincents_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Virial_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Weak_stability_boundary.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Wicks_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Zariskis_finiteness_theorem.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | +| `Zermelos_theorem_game_theory.html` | Wikipedia mathematics articles | CC-BY-SA-4.0 | https://en.wikipedia.org/wiki/Wikipedia:Copyrights | diff --git a/office/regression/000_000014.html b/office/regression/000_000014.html new file mode 100644 index 0000000..493037e --- /dev/null +++ b/office/regression/000_000014.html @@ -0,0 +1,46 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html> +<head> +<meta name="Generator" content="Expressroom® 2.7.1_GA_1015 (build 1015.2005.09.28 12:27:46 EDT)"/> +<style><!--.default-style { } .sample { color: #000000; font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 15px; } --></style> +<title>Strategic Effort Defeats $3.2 Million Smuggling Attempt - CBP.gov + + + + +
Skip To Main Content
DHS Seal Navigates to CBP homepage
CBP.gov Logo Navigates to CBP homepage

GO
  About CBP    Newsroom    Border Security    Trade    Travel    Careers  
Newsroom
Report Suspicious Activity to 1-800-BE-ALERT
Whats New In Newsroom
in Newsroom

Printer Friendly Page Link Icon
see also:
right arrow
 Border Patrol Agent Apprehends Armed Robbery Suspects
 Drug Smuggler Bagged in El Paso, CBP Officers Find Marijuana in Purses
 CBP Announces Relocation of FAST Enrollment Center to SENTRI Office at Veteran’s Bridge
 Suspected Smuggling Tunnel Discovered Near Border in Otay Mesa
 CBP Officers at Pharr/Hidalgo International Bridge Seize Close to $1.3 Million in Cocaine – 3 Arrested
 CBP Officers at Brownsville Port of Entry Arrest Man Wanted on Money Laundering Charges
 Cargo Drug Bust Yields CBP Officers Working at El Paso Port of Entry 3,736 Pounds of Marijuana
...more
right arrowon cbp.gov:
 CBP News Releases
 Press Officers
 Video: Border Patrol Chases Down Trucks; Seizes 2 Tons of Marijuana
Strategic Effort Defeats $3.2 Million Smuggling Attempt

+ (Thursday, February 19, 2009) +

contacts for this news release

Yuma, Ariz. – Utilizing a strategic combination of infrastructure, technology, and personnel, United States Border Patrol agents from the Yuma Station apprehend two vehicles and seize more than two tons of marijuana.

At about 9:36 a.m., this morning a Yuma Sector Remote Video Surveillance System (RVSS) camera operator observed three vehicles driving east from the International boundary near County 14th Street. The Colorado River serves as the International Boundary between the United States and Mexico in that area. The three vehicles then drove to the Salinity Canal bridge at County 14 ½ street, where several subjects got out of the vehicles and began cutting the lock on the Border Patrol’s vehicular access gate.
Rear of a pickup truck filled with bundles of marijuana.

The Salinity Canal, a large concrete structure constructed by the Bureau of Reclamation, parallels the International Boundary in this area. When the gate had been breached, the third vehicle returned to Mexico utilizing the same route by which it had entered. The two remaining vehicles then drove east across the bridge, and were immediately followed by a CBP Air and Marine helicopter, which was able to guide responding Border Patrol agents to the exact location of the vehicles.

Agents find 327 bundles of marijuana inside a pickup truck.

As Border Patrol agents responded, the two pickups attempted to return to Mexico at County 11 ½ Street, but found their progress blocked by yet another of the Border Patrol’s vehicular access gates. (RVSS) camera operators observed four individuals jump out of the two vehicles and run approximately 30 feet to the nearby Colorado River with Border Patrol agents hot on their heels. Responding police officers from Los Algodones, Baja California, Mexico managed to apprehend two of the subjects several minutes later.

After a comprehensive search of the area, Border Patrol agents retrieved a total of 327 bundles of marijuana from the two vehicles, with a combined weight of 4,010 pounds.
+ ( Video: Border Patrol Chases Down Trucks; Seizes 2 Tons of Marijuana ) +

The marijuana, which has an estimated street value of $3,208,000.00, and both of the vehicles were turned over to the Drug Enforcement Administration.

U.S. Customs and Border Protection is the unified border agency within the Department of Homeland Security charged with the management, control and protection of our nation's borders at and between the official ports of entry. CBP is charged with keeping terrorists and terrorist weapons out of the country while enforcing hundreds of U.S. laws.

Contacts For This News Release +


no address available at this time

Yuma Sector
Public Affairs Office
Phone: + (928) 341-6520
CBP Headquarters
+ Office of Public Affairs
+ 1300 Pennsylvania Ave., N.W.
+ Room 3.4A
+ Washington, DC 20229 +
Phone:(202) 344-1770 or
(800) 826-1471
Fax:(202) 344-1393

go to previousprev | nextgo to next    (23 of 138) +

back to CBP News Releases

How to
Use the Website

Featured RSS Links
+ What's New + + Contacts + + Ports + + Questions + + Forms + + Sitemap + EEO | FOIA | Privacy Statement | Get Plugins | En Español
Department of  
Homeland Security  

USA.gov
+   Inquiries (877) CBP-5511   |   International Callers (703) 526-4200   |   TTD (866) 880-6582   |   Media Only (202) 344-1780
+
+ \ No newline at end of file diff --git a/office/regression/000_000056.html b/office/regression/000_000056.html new file mode 100644 index 0000000..e24ab90 --- /dev/null +++ b/office/regression/000_000056.html @@ -0,0 +1,51 @@ + + +Official Series Description - TENINO Series + +
LOCATION TENINO             WA
+
+Established Series
+Rev. RFP/RJE
+01/2000
+

TENINO SERIES

+
+The Tenino series consists of moderately deep to cemented pan, well drained soils formed in glacial till. Tenino soils are on terminal moraines and have slopes of 3 to 65 percent. The average annual precipitation is about 50 inches and the mean annual temperature is about 50 degrees F.

+TAXONOMIC CLASS: Coarse-loamy, isotic, mesic Vitrandic Dystroxerepts

+TYPICAL PEDON: Tenino gravelly ashy loam - under a coniferous forest on a 5 percent slope at an elevation of 350 feet. When described the soil was dry to 21 inches and moist below. (Colors are for moist soil unless otherwise stated.)

+A1--0 to 5 inches; dark reddish brown (5YR 2/2) gravelly ashy loam, dark grayish brown (10YR 4/2) dry; moderate fine granular structure; soft, very friable, nonsticky and nonplastic; 30 percent pebbles; many very fine, fine, medium and coarse roots; many very fine tubular pores; strongly acid (pH 5.4); clear smooth boundary. (3 to 6 inches thick)

+A2--5 to 11 inches; dark yellowish brown (10YR 3/4) gravelly ashy loam, dark brown (10YR 4/3) dry; moderate fine granular structure; soft, very friable, nonsticky and nonplastic; 30 percent pebbles; many fine, medium and coarse roots; many very fine tubular pores; moderately acid (pH 5.8); clear smooth boundary. (3 to 7 inches thick)

+Bw1--11 to 21 inches; dark brown (7.5YR 4/4) gravelly ashy loam, light yellowish brown (10YR 6/4) dry; weak fine subangular blocky structure; soft, very friable, nonsticky and nonplastic; 30 percent pebbles; common fine, medium and coarse roots; many very fine pores; moderately acid (pH 5.6); clear smooth boundary. (8 to 13 inches thick)

+Bw2--21 to 36 inches; dark yellowish brown (10YR 4/4) gravelly ashy sandy loam, pale brown (10YR 6/3) dry; weak fine subangular blocky structure; soft, very friable, nonsticky and nonplastic; 30 percent pebbles; common fine and medium roots; many very fine pores; moderately acid (pH 5.6); abrupt wavy boundary. (12 to 17 inches thick)

+2Bsm--36 to 40 inches; yellowish brown (10YR 5/4) very gravelly loam, very pale brown (10YR 7/3) dry; massive; very hard, very firm, 50 percent pebbles; fine roots in cracks; moderately acid (pH 5.8); clear smooth boundary. (4 to 10 inches thick)

+2C--40 to 60 inches; dark yellowish brown (10YR 4/4) extremely gravelly sandy loam; light gray (10YR 7/1) dry; single grain; loose, 70 percent pebbles; few very fine roots; moderately acid (pH 5.6).

+TYPE LOCATION: Thurston County, Washington; about 2 miles northwest of Littlerock; 800 feet east, 400 feet north of southwest corner of sec. 27, T. 17 N., R. 3 W.

+RANGE IN CHARACTERISTICS: Depth to 2Bsm horizon ranges from 25 to 40 inches. The mean annual soil temperature ranges from 48 to 51 degrees F. These soils are usually moist, but are dry in the moisture control section for 60 to 75 consecutive days following summer solstice. Coarse fragments in the control section average from 20 to 35 percent including up to 10 percent cobbles.

+The A horizon has hues of 10YR, 7.5YR or 5YR moist and 10YR or 7.5YR dry, value of 2 or 3 moist and 4 through 6 dry and chroma of 2 to 4 moist or dry.

+The Bw horizon has hue of 7.5YR, 10YR, 2.5Y or 5Y value of 3 through 5 and 6 or 7 dry, chroma of 2 through 4 moist or dry. It is gravelly sandy loam or gravelly loam.

+The 2Bsm horizon averages from 50 to 80 percent pebbles.

+The 2C horizon is extremely gravelly loamy sand or extremely gravelly sandy loam. It has 60 to 90 percent pebbles and 0 to 10 percent cobbles.

+COMPETING SERIES: These are the +Harstine and +Poulsbo soils. Harstine soils have 50 to 75 percent sand in the control section and a cemented pan extending to greater than 60 inches. Poulsbo soils have a Cd horizon with less than 35 percent coarse fragments.

+GEOGRAPHIC SETTING: Tenino soils are on terminal and recessional glacial moraines at elevations of 50 to 400 feet. Slopes are 3 to 65 percent. These soils formed in glacial till over glacial outwash. Average January temperature is about 38 degrees F; average July temperature is about 64 degrees F. The frost-free season (32 degrees F) is 150 to 200 days. Mean annual precipitation is 45 to 60 inches.

+GEOGRAPHICALLY ASSOCIATED SOILS: These are the +Alderwood, +Cathcart and +Everett soils. Alderwood soils are loamy-skeletal and are dense and compact for many feet below the duripan. Cathcart soils are medial, deep and formed in glacial drift, volcanic ash, sandstone and siltstone. Everett soils are sandy-skeletal.

+DRAINAGE AND PERMEABILITY: Well drained, slow to medium runoff, moderate permeability above the cemented pan, very slow in the pan and very rapid below.

+USE AND VEGETATION: Woodland,hay, pasture and homesites. Native vegetation is Douglas-fir, red alder and western redcedar with an understory of salal, vine maple, western swordfern and western brackenfern.

+DISTRIBUTION AND EXTENT: Central western Washington. Series is of moderate extent.

+MLRA OFFICE RESPONSIBLE: Portland, Oregon

+SERIES ESTABLISHED: Thurston County, Washington, 1949.

+REMARKS: Classification only changed 4/94 because of recent amendments to Soil Taxonomy. Classification revised 1/2000 from mixed, mesic Vitrandic Durochrepts to isotic, mesic Vitrandic Dystroxerepts based on changes to Soil Taxonomy.

+Diagnostic horizons and features include:

+Ochric epipedon
+Cambic horizon - from 11 to 36 inches
+Cemented pan - from 36 to 40 inches and cemented with aluminum, iron, and organic matter.
+Vitrandic subgroup feature - from 0 to 36 inches with estimated properties of > 5 percent volcanic glass and 0.4 to 1.0 percent acid-oxalate Al plus 1/2 Fe.
+Particle-size control section - from 10 to 36 inches.

+Depths to diagnostic horizons and features noted in range of characteristics are measured from the to of the first mineral horizon.

+


+National Cooperative Soil Survey
+U.S.A.
+ diff --git a/office/regression/000_000057.html b/office/regression/000_000057.html new file mode 100644 index 0000000..978007b --- /dev/null +++ b/office/regression/000_000057.html @@ -0,0 +1,276 @@ + + + + John Day Fossil Beds NM: Native Americans + + +


+ +

+ +

AMERICAN + INDIANS + + + + + +
+

CONTENTS

+ +


+ Chinookan

+

Sahaptian

+

Shoshonean

+

Salishan

+

Bibliography

+

Indians of Eastern + Oregon
+
by Kathyrn Lee

+ +


SAHAPTIAN

+ +

Of the Sahaptian there are agreed, by most linguists, to be + two divisions of concern here. The Northern Sahaptians of the + northern part of the state, and the Lutuamian of southern Oregon + which contains the Modoc and Klamath. First to be dealt with + will be the Northern Sahaptian.

+ +

Northern + Sahaptian: Tenino


+ +

Along the south bank of the Columbia from the Wasco on the + west to the Umatilla on the east, and on the lower reaches of + the Deschutes and John Day Rivers, were the Tenino. There were + four subdivisions each with a pair of villages - one for summer + and one for winter. The summertime village was a rather flimsy + one along a river. The wintertime villages were more permanent + and several miles away from the rivers.

+ +

The four subdivisions of the Tenino were the Tenino Proper + who spent their summers four miles east of The Dalles and their + winters six miles inland, the Wyam or Deschutes who summered- + at Celilo and wintered on the best bank of the Deschutes near + its confluence with the Columbia, the John Day who had both their + summer and winter villages on the John Day River not far from + the Columbia, and the Tyghwho were an offshoot from the Tenino + Proper and whose winter village was at Tygh Valley and summer + village was at Sherar's Bridge on the Deschutes (Murdock 1938:395-396).

+ +

The Tenino had no social stratification, and chieftainship + was not inherited. It helped to be wealthy to attain chieftainship, + but it was not a prerequisite. The power of a chief depended + on the respect and influence he could muster. The Tenino villages + were autonomous politically, but not culturally. The Tenino traveled + throughout the year in order to exploit various resources, such + as fish, roots, berries, and game (Suphan 1974b:27).

+ +

Northern + Sahaptian: Molala


+ +

The Molala were at one time immediately west of the Tenino. + They were linguistically different, but cultural similar, to + the Tenino. They did not have slaves, however. Before an offshoot + of the Tenino Proper, the Tygh, ran them out they inhabited only + one summer village at Tygh Valley and a winter village at Sherar's + Bridge on the Deschutes (Murdock 1938:397). Joel Berreman (1937:44-45) + believes it was the Northern Paiute who pushed them west. They + apparently were moved, by whatever group (probably the Tenino), + west of the Cascade Mountains.

+ +

Northern + Sahaptian: Umatilla


+ +

East of the Tenino, along the lower Umatilla River and adjacent + to the south bank of the Columbia River, lived the Umatilla (Berreman + 1927:61). They also lived on the north bank of the Columbia (Ray + 1938: 385). According to Verne Ray (1939:11) they tended to lean + comparatively close to a tribal structure, but many argue that + this was only true in the historic times (Suphan 1974a:107). + One criteria Ray uses for his statement is that virtually all + the Umatilla met in one village at the mouth of the Umatilla + at a time in the winter (1939:12). Most authors say they had + no tribal chiefs and villages were autonomous politically. Their + chiefs were picked on the basis of achievement (Ray 1939:18). + There was no class stratification based on wealth, but they did + rank according to war honors with the counting of coup being + important (Ray 1939:43). The Plains influence was quite strong + among the Umatilla. Like most Plateau groups they had permanent + villages for winter and traveled the rest of the year to obtain + various resources. Most Plateau groups lived in mat covered lodges + or semisubterranean houses and, in later times, the tipi in the + winter, and in temporary mat or brush shelters in the summer.

+ +

Northern + Sahaptian: Cayuse


+ +

Around the headwaters of streams that flowed into the Columbia, + the Walla Walla, Umatilla and Grande Ronde Rivers, roughly east + of the Umatilla are the Cayuse. With this tribe, as well as with + the Umatilla and Wallawalla, Verne Ray says that they had a tribal + structure (1939: 11). Robert J. Suphan disagrees (1974a 107). + Ray says the name "Cayuse" applies to an ethnic group + rather than a tribe, however (Ray 1939:12). The Cayuse are quite + close to the Nez Perce structure of social organization which + will be discussed below. According to many historians the Cayuse + were somewhat more violent and warlike than the Nez Perce, and + they cite the Whitman Massacre as an example. Much of this can + be attributed to the fact that in the historical period they + were right on the Oregon Trail. The Cayuse place emphasis on + ranking war honors and resemble the Plains complex. There were + no castes or classes. They were typical Plateau in that most + of the time they had autonomous villages with their own chiefs, + and traveled out of permanent winter villages in the warmer months + to exploit upland resources. They lived in typical Plateau dwellings.

+ +

Northern + Sahaptian: Nez Perce


+ +

The Nez Perce to the North and east of the Cayuse, were a + large and important group. Though they lived mainly in Idaho, + a large portion of northeastern Oregon was occupied by them. + In fact, a band living-in Oregon's Wallowa Valley were the most + famous of the Nez Perce. At least five bands had winter villages + in Oregon: 1) the Imnama on the Imnaha River, 2) the Walwama + on the Wallowa River, 3) the Inantoinu that lived on Joseph Creek, + 4) the Koiknimapu who resided above Joseph Creek on the Grande + Ronde River, and 5) the Isawisnemepu who were near present Zindels + on the Grande Ronde River (Spinden 1908:174-175). The Nez Perce + as a whole called themselves the Numipu, but that name was never + used by outsiders. The name "Nez Perce" is of French + origin translated from a Siouan term meaning "pierced nose" + (Spinden 1908:171-172).

+ +

The Nez Perce lived in typical Plateau semisubterranean and + mat dwellings. They traveled in the spring, summer, and fall + months for fish, game, roots' and berries in the higher elevations + where it was cool. They lived in the lower river valleys in the + winter. The camas root was a principle staple and they also relief + heavily on river resources such as fish and mussels.

+ +

As with most of the Northern Sahaptian, warfare was important. + The Nez Perce, though not excessively warlike, stood guard against + the Shoshonian speakers in the east and south. Each village had + its own chief, but villages would meet in times of war or to + collect a certain resource such as buffalo. Chieftainship was + based on achievement. There were peace chiefs in each village + and, in times of war, war chiefs would become effective. These + war chiefs could command a group of villages or, on rare occasions, + the whole Nez Perce stock. Such war command was relinquished + in times of peace. The power of a war chief was only honorary + during peace. There were both tribal and village councils. Personal + matters such as murder and adultery were left up to the families + to handle. As with most Plateau cultures the individual owned + tools and implements, while sites and territory were "owned" + by the village or stock.

+ +

Northern + Sahaptian: Klicitat and Wallawalla +


+ +

Writers such as Berreman (1937) feel that Sahaptians such + as the Klicitat to the north lived in Oregon at one time and + were pushed north into Washington by Shoshonean speakers. Ray + (1938), on the other hand, feels that this was not true. The + Wallawalla, who were closely related to the Cayuse and Umatilla, + reside mainly in Washington, but some sources feel that they + may have lived partially in Oregon, also.

+ +

For the most part the Northern Sahaptians coexisted peacefully + with each other and with the Interior Salish to the north, but + were enemies with Shoshonean speakers to the south. The groups + to the east of the state were more Plains-like. The influence + of the horse and Plains culture in the 18th century, modified + all Plateau peoples by giving greater mobility and new traits.

+ +


+ +

The Klamath and the Modoc belonged to the Lutuamian division + of the Sahaptian stock. They occupied the south-central part + of Oregon near and across the California border.

+ +

Lutuamian: + Klamath


+ +

The Klamath were the larger of the two divisions of the Lutuamian. + They occupied the territory west to the Cascade Mountains, north + to about the 44th parallel, east to the drainage of Sycan Marsh + and a portion of the drainage of Goose Lake, and south to about + the present California-Oregon border (Curtis 1907:13:161). In + the winter they lived in semisubterranean houses. They also traveled + throughout the warmer months to gather various resources. The + seed of the Yellow Water Lilly (Wokas) was a good staple. They + also exploited berries, other seeds, roots, fish, waterfowl, + and game.

+ +

There were several subdivisions, each with its own chief or + headman (Curtis, 1907:13:175; Ray 1939:6). Among these were: + 1) the Klamath-Marsh-Williamson River group on the southern margin + of the Klamath Marsh and lower Williamson and Sprague Rivers + (43 villages), 2) the Agency Lake group on Agency Lake and the + northern arm of Klamath Lake (one village), 3) the Lower Williamson + River group close to the mouth of the Williamson River (5 villages), + 4) the Pelican Bay group in the Pelican Bay district on the west + side of Klamath Lake, Four Mile Creek, and the marsh north of + the Lake (9 villages), and 5) the Klamath Falls group along Klamath + Lake south of Modoc Point (18 villages) (Berreman 1937:43). Though + not linked politically, these bands were linked culturally. Chieftainship + was achieved and most chiefs were rich though wealth was not + the basis by which they were chosen. The family was the basic + unit of society (Curtis 1907:13:175) According to Ray (1963:134) + the Modoc and Klamath were often allies in raiding people to + the south and did not fight each other. Curtis (1907:13:162) + implies they did fight each other, but this statement is probably + based on conflict caused when the government placed both on the + same reservation in an unnatural situation for the two tribes.

+ +

The Klamath traded slaves with tribes to the north such as + the Wasco. They kept slaves themselves, but these prisoners were + merely adopted into families and could marry Klamath.

+ +

Lutuamian: + Modoc


+ +

The Modoc were the other and the smaller of the Lutuamian + division. Though they had some conflict with the Klamath before + the Modoc War of the 1870s, they were generally allies and had + similar cultures. They lived chiefly in California to the south + and east of the Klamath. Two bands in Oregon were on the Upper + Lost River above Olene, and the Lower Lost River (Berreman 1937:44). + Tribal organization in the political sense was lacking in the + Modoc, with each band or village having its own chief. There + were three types of leadership in Modoc society as with many + other Plateau-type groups (e.g. Nez Perce). These were leadership + in warfare, religion, and domestic affairs (Ray 1963:3). Achievement + was the basis on which these were usually chosen. The highest + legal authority was the village assembly (Ray 1953:9). Homicide + and personal matters were a concern to the chief but were to + be handled for the most part by the families involved.

+ +

The Modoc traveled in warm months on their annual food quest. + They dismantled their winter homes in villages, only leaving + the main poles standing, and upon their return they usually rebuilt + the house over the wind cleaned pit (Ray 1963:180).

+ +


From Appendix I of a Survey + of Historic and Prehistoric Resources in the John Day Fossil + Beds National Monument
+ by Wilbur A. Davis, May 1977.

+ +

+

+ +


http://www.nps.gov/joda/lee/lee1-1.htm
+Last Updated: 11/02
+ + + diff --git a/office/regression/000_000058.html b/office/regression/000_000058.html new file mode 100644 index 0000000..f70330a --- /dev/null +++ b/office/regression/000_000058.html @@ -0,0 +1,22 @@ + + + + + + Tenino, WA Floorplan + + + + + + + + + + + +
+

+ + + \ No newline at end of file diff --git a/office/regression/000_000059.html b/office/regression/000_000059.html new file mode 100644 index 0000000..5fed852 --- /dev/null +++ b/office/regression/000_000059.html @@ -0,0 +1,253 @@ + + + + + +Search for Public Schools - Search Results + + + + + + + + + + + + + + +
Skip Navigation
small header image
+ +
+ + + +CCD Home + + + + + + +
Search for Public Schools
+ + + + + + + +
+ + + + + + +
 Search Results  (records: 4) + Modify Search   + New Schools   + Data Notes/Grant IDs   + Help  
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + +
    School NamePhoneCountyStudents Grades +
+ +
+ + + + +
1.PARKSIDE ELEMENTARY
Po Box 4024, Tenino, WA 98589
(360) 264-3800Thurston285KG-3
+
+ + + + +
2.TENINO ELEMENTARY SCHOOL
Po Box 4024, Tenino, WA 98589
(360) 264-3700Thurston2853-5
+
+ + + + +
3.TENINO HIGH SCHOOL
Po Box 4024, Tenino, WA 98589
(360) 264-3500Thurston5266-12
+
+ + + + +
4.TENINO MIDDLE SCHOOL
Po Box 4024, Tenino, WA 98589
(360) 264-3600Thurston3236-8
+
+
+
Source: CCD Public school data 2005-2006 school year
Note: "N/A" means the data are not available or not applicable.
+ + + +
+ + + + + + + + + + + + + +
Similar Search
+ + + + + + + +
Based on your geographic search for Public Schools,
you can also search for...
+ + + + + + + + + + + +
Public School Districts  |  Private Schools  |  Public Libraries
+
+
+ + + + + + + +
Download This Data
 Click Here to Download Excel FileDownload
Excel File
Your data file will be created based on the selection criteria you have entered.
Depending on the amount of data needed to create the file, this may take a few minutes. The option will also be available to download the Excel file as a compressed Zip file.
+ +

+ +
+ +
1990 K Street, NW
Washington, DC 20006, USA
Phone: (202) 502-7300 (map)
+ + + + + \ No newline at end of file diff --git a/office/regression/000_000060.html b/office/regression/000_000060.html new file mode 100644 index 0000000..703ecd1 --- /dev/null +++ b/office/regression/000_000060.html @@ -0,0 +1,481 @@ + + + + +Search for Public Schools - School Detail for Tenino Elementary School + + + + + + + + + + + + + + + + + + + + +
Skip Navigation
small header image
+ + +
+ + +CCD Home + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Search for Public Schools
+ + + + + + +
 Search Information + Search Results   + Modify Search   + Data Notes/Grant IDs   + Help  
+ +
+ + + + + + + + + + + + + + +
School Name:
+
Tenino Elementary School
District Name:
+ + Tenino School District
district information
County:
Thurston

schools in county
+ +
+ + + + + +
+ +
+ + + + + + + + + + + + +
Mailing Address:
Po Box 4024
Tenino, WA 98589-4024
Physical Address:
301 Old Highway 99 N
Tenino, WA 98589-4024
Phone:
(360) 264-3700
+ +
+ + + + + + + + + + + +
NCES District ID: +
5308820
NCES School ID: +
530882002241
State District ID: +
34402
State School ID: +
4238
+ +
 School Characteristics
+ + + + + + + + + +
+ + + + + + + + + + + + + +
Grade Span: (grades 3 - 5)
+ + + + +
+ + + + +
        345              
+
+
+ + + + + + + + + + + + + + + + +
Total Students:285
Classroom Teachers (FTE):14.6
Student/Teacher Ratio:19.5
+
+
+ + + + + + + + + + + + +
Type:Regular school
Old Locale:  Rural, inside CBSA (8)
New Locale:  Rural: Distant (42)
Status:Currently operational
+
+ +
+ + + + + +
+ + + + + + + + + + + + + + +
Charter: N/AMagnet: N/ATitle I School: yesTitle I School-Wide Program: no
+
+ +
 Enrollment Characteristics
+ + + + + + + + + + + + + + + + +
+ + + + + + + + + +
Enrollment by Grade: 
+ + + + + +
+ + + + + + + + + + + + + + + + +
 345
 Students 979197
+
+
+
+ + + + + + + +
Enrollment by Race/Ethnicity: 
+ + + + + + + + + + + + + + + + + +
 Amer Ind/
Alaskan
AsianBlackHispanicWhite
 Students 34420253
+
+
+ + + + + + + +
Enrollment by Gender: 
+ + + + + + + + + + + + + +
 MaleFemaleUnknown
 Students 1371470
+
+
+ +
+ + + + + +
+ + + + + + +
Free lunch eligible: 70Reduced-price lunch eligible: 41
+
+ +
Note: Details may not add to totals.
Source: CCD Public school data 2005-2006 school year
Note: "N/A" means the data are not available or not applicable.
+ +

+ +
+
+ + + + +
National Center for Education Statistics
Office of Educational Research & Improvement, U.S. Dept. of Education
1990 K Street, NW, Washington, DC 20006, USA, Phone: (202) 502-7300
+
+ + + +
+ +
1990 K Street, NW
Washington, DC 20006, USA
Phone: (202) 502-7300 (map)
+ + + + + diff --git a/office/regression/000_000061.html b/office/regression/000_000061.html new file mode 100644 index 0000000..de67b68 --- /dev/null +++ b/office/regression/000_000061.html @@ -0,0 +1,59 @@ + + +Weather Hazards for Tenino, WA + + + + + + + + +
www.crh.noaa.gov   
+ + + + + + + + + + + +
NOAA logo - Click to go to the NOAA homepageNWS logo
Tenino, WA
+ + + + + + +
+ Enter Your "City, ST" or zip code +   
+ + + + + +
+

No Active Hazardous Weather Conditions Found

+ + + + + + + + + + + +

National Weather Service
+ Central Region Headquarters
+ Kansas City, Missouri
+ Last Modified: March 29, 2004
+ Privacy Policy
+ Disclaimer
+ + diff --git a/office/regression/000_000062.html b/office/regression/000_000062.html new file mode 100644 index 0000000..449f2e6 --- /dev/null +++ b/office/regression/000_000062.html @@ -0,0 +1,75 @@ + + + +National Weather Service : Observations : Tenino, WA + + + + + + + + +
www.srh.noaa.gov   
+ + + + + + + + + + + +
NOAA logo - Click to go to the NOAA homepageThe latest weather observations aroundNWS logo
Tenino, WA
+ + + + + + +
+ Enter Your "City, ST" +   
+ + + + + + + + + + + + + + + + + + + +
LocationTime
(utc)
Sky/WeatherTemp.
(ºF)
Dewpt.
(ºF)
Humidity
(%)
Wind
(mph)
Pressure
(in)
Renton Municipal00:53Mostly Cloudy503761SE 329.73
Click on location name for the weather during the past two days at that site.
+ + + + + + + + + + + + +

National Weather Service
+ Central Region Headquarters
+ Kansas City, MO
+ Disclaimer
+ Last Modified: June 18, 2003
+ Privacy Policy
+ Credits
+ + diff --git a/office/regression/000_000063.html b/office/regression/000_000063.html new file mode 100644 index 0000000..7aba3e8 --- /dev/null +++ b/office/regression/000_000063.html @@ -0,0 +1,413 @@ + + + + + + Terms of Sale for Tenino, WA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  + + + + + + + + + + +
+ + + + +
US Dept of the Treasury Seized Real Property Banner
+ +
+ + + + + + + + + + + + + + + + + +
Terms of Sale
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

2314 Outback Lane SW, Tenino, WA 98589 / Sale # 07-66-143 - CWS Marketing Group

+

<< Return to Property Detail page

+


+ General Information
+

+
+

The placement of a successful bid at a Department of the Treasury auction establishes a legally binding contract between the successful bidder and the Government. The auctioneer's announcement of the high bid amount and the bidder's number establishes the contract, which is subject to final acceptance by the government. This contract is bound by these Terms and Conditions, any special terms and conditions published by the Contractor for the specific auction, 19 CFR Customs Duties Part 162, & all other Federal regulations governing contracts for the purchase of Government property, which may be found at http://www.arnet.gov/far/. The successful bidder is legally bound to pay for property awarded in accordance with his/her bid. +

+

EG&G Technical Services, the Contractor, is acting as the agent of the Government with respect to the sale of Government real property at these auctions. The contractor may videotape the auction and record phone bidding to assist in any future contract resolution actions.

+
+


+

+

+
+


+ Eligibility of Bidders
+

+

The Bidder warrants that he/she is not: +

+
+

(a) under 18 years of age; +

+

(b) an employee of any department or agency of the Federal Government prohibited by the regulations of that agency from purchasing property sold hereunder; +

+

(c) an agent or immediate member of the household of the employee in (b), above; +

+

(d) the contractor, subcontractor or vendor, or their agent who has access to information concerning the property to be sold at U.S. Department of the Treasury auctions that is not generally available to the public; +

+

(e) presently debarred or declared ineligible for the award of contracts by any Federal agency in accordance with 41 CFR 101-45.6; or +

+

(f) the party, or agent of the party(s), from whom the property was seized. +

+
+

The contractor's subcontractor may not act as agent for a third party in purchasing Department of the Treasury Real Property that is or has been in their custody or control. For breach of this warranty, the Government shall have the right to cancel the contract without liability.

+

 

+


+ Registration of Bidders
+

+

Persons wishing to participate in the bidding process of the sale are required to obtain, fill out, and deliver a bidder registration form during the registration process for each sale. Click here to view the bidder registration form pdf icon. This form can be printed out and completed prior to the auction. The form will also be available at the auction. +

+

In the event a person is bidding on behalf of another party, an original notarized Power of Attorney must be presented at the time of registration. Power of Attorney must include the buying party's social security number.
+
+ + + If you are planning to bid in the name of a corporation, business, or LLC, you must have the appropriate official documentation to show proof of eligibility to bid on behalf of that corporation, business, or LLC.

+

An individual's signature on the bidder registration form is an acknowledgment of his/her full and complete understanding of all terms and conditions and his/her agreement to be bound thereby. Therefore, bidders are cautioned to carefully read all applicable terms and conditions contained in this document and the sales flyer before signing the bidder registration card. Bidders must present a photo ID and evidence of earnest money deposit in the amount of $50,000 in the form of cashier's or certified check made payable to EG&G Tech Srvcs as a prerequisite of registration. +

+

Each registered bidder will be issued a bidder number upon completion of the registration process. Each bidder is solely responsible for the use of his/her bidder number and any use by another person is presumed to be with the consent of and contractually binding on the registered bidder. +

+

The registrant agrees that, should the registrant be the successful bidder of a property lot, the following information regarding the transaction shall be published on the U.S. Department of Treasury auction website: (1) the registered bidder's name; (2) the property's address; (3) the purchase price of the property. Electronic Freedom of Information Act Amendments of 1996 (5 U.S.C. 552 (2000)).

+


+

+


+ Earnest Money Deposit
+

+

Immediately after the bidding is completed the high bidder and second high bidder (Back-Up Bidder) will be required to make a $50,000 earnest money deposit in the form of a cashier's/certified check made payable to EG&G Tech Srvcs. A real estate contract will be executed at this time by the high bidder and back-up bidder. The terms of the real estate contract supersede the Terms of Sale. +

+

The high bidder shall deliver ten percent (10%) of the Purchase Price less the initial money deposit, whichever is greater, to EG&G Technical Services by cashier's/certified check, payable to EG&G Tech Srvcs or by bank wire transfer. Within three business days, should the high bidder fail to deliver the earnest money, Seller shall have all rights and remedies provided in the Terms of Sale, including the right to retain the initial money deposit and any other deposits or payments made by the high bidder as liquidated damages. +

+

Bank Wire Instructions: (new wiring instructions as of 5/1/2007)
+ + + + Wells Fargo Bank, N.A.
+ Routing No. (ABA) 121-000-248
+ EG&G Technical Services, Inc. - RP
+ Account No: 4121-509301, Ref: Property Address +

+

The successful bidder's deposit(s) will be retained as the initial payment for the property. Personal or business checks, bank letters, or letters of credit will not be accepted. Cashier's checks made payable to the bidder's name CANNOT be accepted.

+

 

+


+ Back-Up Bidder
+

+

The back-up bidder's earnest money deposit will be returned by certified mail or overnight delivery service within three (3) business days after receiving total earnest money deposit from the high bidder. In the event earnest money is not received from the high bidder within the time period specified, the back-up bidder will become the high bidder at the Purchase Price stated in the back-up bid contract. The back-up bidder is obligated to transmit earnest money as stated above within three (3) business days of notification. The foregoing liquidated damages provision shall apply to the back-up bidder.

+


+

+

+


+ Inspection of Property
+

+

The bidder is invited, urged, and cautioned to inspect the property prior to submitting a bid. Failure to inspect property shall not constitute cause for cancellation of sale. Property will be available for inspection at the times specified by the Contractor. Absolutely no access to property is allowed without prior Contractor authorization. At their own expense, potential bidders may have property inspectors examine the property during regularly scheduled open houses.

+


+

+

+


+ Oral Statements and Modifications
+

+

Changes may be made on the day of the sale to the property status or descriptions in the sales flyer or auction site. These changes take precedence over previous sales flyer or auction site information pertinent to that property, but do not alter in any way the basic Terms and Conditions of sale. Further, no interpretation of any provision of the sales contract, including applicable performance requirements, shall be binding on the Government unless furnished to and agreed upon, in writing, by the Contracting Officer or his/her designated representative.

+


+

+

+


+ Real Property Descriptions
+

+

The bidder understands and agrees that the property is offered, purchased, and accepted by the buyer "AS IS" and "WITH ALL FAULTS." The Government and its agent make no warranties or guarantees whatsoever whether written, oral, or implied as to quality, condition, or habitability. +

+

All information contained in the sales flyer and auction site was derived from sources believed to be correct, but there is no guarantee. Buyer acknowledges that he/she relied entirely on his/her own information, judgment, and inspection of the property. +

+

If a legal misrepresentation is determined before the final closing on the property, the Government reserves the right to cancel the sale and refund any earnest/deposit money paid.

+

+


+ Lead-Based Paint (for properties built before 1978)
+

+

Disclosure of Information on Lead-Based Paint and Lead-Based Paint Hazards and the EPA pamphlet “Protect Your Family From Lead In Your Home” will be available at scheduled viewing times, or may be obtained by calling 1-800-424-LEAD or visiting http://www.epa.gov/lead. Buyer acknowledges responsibility for all costs associated with the abatement and remediation of any disclosed or potential hazards associated with the property.
+

+


+

+

+


+ Offering of Property for Auction and Submission of Bids
+

+

Once the Government accepts a bid, a final written sales contract will be prepared to include the individual information of the high bidder along with the accepted bid amount. A contract may also be conditionally established with the recognized back-up bidder for execution if the high bidder defaults for any reason or is rejected by the Government. +

+

In the event of a dispute as to final bid amount, the Government reserves the right to review the video and audio tape of the auction for clarification or to re-offer the property in question.

+


+

+

+


+ Written Bids
+

+

If you cannot attend the auction, you may submit a written bid by sending contact information or a completed written bid form pdf icon, with your written bid clearly marked. Written bids may be submitted in person, by registered mail, or by overnight delivery service. The appropriate deposit per property by cashier's/certified check only, must accompany your written bid. The cashier's check deposit must be made payable to: EG&G Tech Srvcs

+

Written bids for the property must be received no later than 5:00 p.m. on July 25 , 2007, at the following address: EG&G Technical Services, U.S. Department of the Treasury, Seized Real Property Support, 10687 Gaskins Way, Suite 101, Manassas, VA 20109, Attn: Real Property Sales.

+

Unsuccessful written bidders' deposits will be sent to the bidders by certified mail or overnight delivery service within five (5) business days after the sale. +

+

The highest written bid received will be the opening bid. Written bids will not be disclosed prior to the auction. +

+

You may also send a representative to bid on your behalf by signing over temporary notarized Power of Attorney, which must include the buying party's social security number.

+

 

+


+ Consideration of Bids
+

+

The Government reserves the right to reject any or all bids, and to waive any technical defects in bids. Property is sold with a minimum reserve price unless the property is, in explicit terms, offered without a minimum reserve price. If the minimum reserve price is not achieved, the Government may withdraw the property at any time before the sales contract is executed.
+

+


+

+

+


+ Financing
+

+

The buyer is responsible for obtaining his or her own financing arrangements as required. The Government does not provide financing for the purchase of any property offered under these Terms and Conditions. Bidders are strongly recommended to investigate and secure financing arrangements, if required, prior to attendance at a public offering. +

+

Failure to obtain financing during the closing process does not relieve the buyer of his/her legal responsibility and obligation for completion of the contract. Failure to comply with all provisions of the sales contract regarding closing may result in termination of the contract because of buyer's default and may result in the forfeiture of any earnest/deposit funds.

+


+

+

+


+ Closing
+

+

Closing will be held within 30 calendar days of the date the Government signs the sales contract accepting the Buyer's offer. Closing may be held sooner, with mutual agreement of Buyer and Seller. Only the Seller may, at its discretion, exceed closing beyond 30 calendar days. Closing costs including, without limitation, transfer taxes, documentary stamps, recording fees, and escrow fees will be paid by the Buyer and Seller in accordance with the customs of the county in which the property is located. In the event Buyer desires title insurance, it will be at the Buyer's expense. No tenant deposits will be transferred, buyer will be responsible for any recorded tenant deposits.
+

+


+

+

+


+ Government Deed
+

+

Clear Title will be conveyed via a Government deed. Liens and other encumbrances will be paid by the Government. Title insurance is available at Buyer’s expense.

+


+

+

+


+ Defaults
+

+

Failure to make required deposit or final payments and/or comply with the time frames specified in the sales flyer shall be deemed default of the high bidder and may result in cancellation of the contract and forfeiture of any rights, title, and interest the Buyer may have acquired. In that case, title of the property will remain with the Government and will result in the forfeiture of the deposit. If the default occurs because of failure to make the required deposit, the buyer shall be liable to the Government for liquidated damages in the amount of that deposit.
+

+


+

+

+


+ Property Offered for Sale by IRS-CI, ICE, Secret Service, or ATF
+

+

In accordance with 18 USC Section 1963(f) and 21 USC Section 853(h) of the Comprehensive Crime Control Act of 1984 and Department of the Treasury Policy, forfeited (real) property will not be sold to the defendant or person(s) acting as his/her agent. A real property sales contract may be cancelled by the Government in compliance with the above statutes or policy.

+


+

+

+


+ Additional Information
+

+

If you have further questions, you may call our Public Auction Line at (703) 273-7373 or fax (703) 361-3671 or visit our Frequently Asked Questions (FAQs).

+

+ + + + + + +

+ + + + + + + + + + + +
+ + +
+ + + + \ No newline at end of file diff --git a/office/regression/000_000064.html b/office/regression/000_000064.html new file mode 100644 index 0000000..c37c559 --- /dev/null +++ b/office/regression/000_000064.html @@ -0,0 +1,113 @@ + + +FR Doc 05-10116 + + + + + + + +
+
+[Federal Register: May 25, 2005 (Volume 70, Number 100)]
+[Proposed Rules]               
+[Page 30050-30051]
+From the Federal Register Online via GPO Access [wais.access.gpo.gov]
+[DOCID:fr25my05-47]                         
+
+-----------------------------------------------------------------------
+
+FEDERAL COMMUNICATIONS COMMISSION
+
+47 CFR Part 73
+
+[DA 05-1311; MB Docket No. 05-185, RM-11236]
+
+ 
+Radio Broadcasting Services; Tenino, WA
+
+AGENCY: Federal Communications Commission.
+
+ACTION: Proposed rule.
+
+-----------------------------------------------------------------------
+
+SUMMARY: This document requests comments on a petition filed by Dr. 
+Sandra L. Woodruff proposing the allotment of Channel 229C3 at Tenino, 
+Washington, as the community's first local service. Channel 229C3 can 
+be allotted to Tenino, consistent with the minimum distance separation 
+requirements of the Commission's rules at a restricted site located 1.9 
+kilometers (1.1 miles) west of the community. The reference coordinates 
+for Channel 229C3 at Tenino are 46-51-22 North Latitude and 122-52-30 
+West Longitude.
+
+DATES: Comments must be filed on or before June 27, 2005, and reply 
+comments on or before July 12, 2005.
+
+ADDRESSES: Federal Communications Commission, 445 Twelfth Street, SW., 
+Washington, DC 20554. In addition to filing comments with the FCC, 
+interested parties should serve the Petitioner, as follows: Dr. Sandra 
+L.
+
+[[Page 30051]]
+
+Woodruff, 2708 Hampton Ct. SE, Olympia, WA 98501.
+
+FOR FURTHER INFORMATION CONTACT: Helen McLean, Media Bureau, (202) 418-
+2738.
+
+SUPPLEMENTARY INFORMATION: This is a summary of the Commission's Notice 
+of Proposed Rule Making, MB Docket No. 05-185, adopted May 4, 2005, and 
+released May 6, 2005. The full text of this Commission decision is 
+available for inspection and copying during normal business hours in 
+the Commission's Reference Center 445 Twelfth Street, SW., Washington, 
+DC 20554. This document may also be purchased from the Commission's 
+duplicating contractors, Best Copy and Printing, Inc., 445 12th Street, 
+SW., Room CY-B402, Washington, DC 20554, telephone 1-800-378-3160 or 
+http://www.BCPIWEB.com. This document does not contain proposed 
+
+information collection requirements subject to the Paperwork Reduction 
+Act of 1995, Public Law 104-13. In addition, therefore, it does not 
+contain any proposed information collection burden ``for small business 
+concerns with fewer than 25 employees,'' pursuant to the Small Business 
+Paperwork Relief Act of 2002, Public Law 107-198, see 44 U.S.C. 
+3506(c)(4).
+    Provisions of the Regulatory Flexibility Act of l980 do not apply 
+to this proceeding. Members of the public should note that from the 
+time a Notice of Proposed Rule Making is issued until the matter is no 
+longer subject to Commission consideration or court review, all ex 
+parte contacts are prohibited in Commission proceedings, such as this 
+one, which involve channel allotments. See 47 CFR 1.1204(b) for rules 
+governing permissible ex parte contact.
+    For information regarding proper filing procedures for comments, 
+see 47 CFR 1.415 and 1.420.
+
+List of Subjects in 47 CFR Part 73
+
+    Radio, Radio broadcasting.
+
+    For the reasons discussed in the preamble, the Federal 
+Communications Commission proposes to amend 47 CFR part 73 as follows:
+
+PART 73--RADIO BROADCAST SERVICES
+
+    1. The authority citation for part 73 continues to read as follows:
+
+    Authority: 47 U.S.C. 154, 303, 334 and 336.
+
+
+Sec.  73.202  [Amended]
+
+    2. Section 73.202(b), the Table of FM Allotments under Washington, 
+is amended by adding Tenino, Channel 229C3.
+
+Federal Communications Commission.
+John A. Karousos,
+Assistant Chief, Audio Division, Media Bureau.
+[FR Doc. 05-10116 Filed 5-24-05; 8:45 am]
+
+BILLING CODE 6712-01-P
+
+ + \ No newline at end of file diff --git a/office/regression/000_000065.html b/office/regression/000_000065.html new file mode 100644 index 0000000..bd8c9b2 --- /dev/null +++ b/office/regression/000_000065.html @@ -0,0 +1,275 @@ + + + + + + + + + + + + +Neighborhood Networks + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ + [Photo 3: Tenino Terrace NN Center] + +
+ +
+ + +

Tenino Terrace NN Center

+

These property owners and managers are investing in their community's future by helping residents connect with tools and training they need to succeed. Tenino Terrace, a 94-unit family property in Portland, Oregon, opened in June, 2007. Top – Kristine Petrillo presents the NN Plaque to to Galina Medvedev, the on-site manager of Tenino Terrace. Bottom - tenants at Tenino Terrace enjoying their new Center.

+ + + +
+
+ + + Previous + Next + + + +
+
+ +
+ + \ No newline at end of file diff --git a/office/regression/000_000066.html b/office/regression/000_000066.html new file mode 100644 index 0000000..1c57c1e --- /dev/null +++ b/office/regression/000_000066.html @@ -0,0 +1,344 @@ + + + +USGS: Geological Survey Bulletin 614 (Itinerary) + + + + + + +
+ + + + + +
+USGS Logo + +Geological Survey Bulletin 614 +
+Guidebook of the Western United States: Part D. The Shasta Route and Coast Line +
+ +
+
ITINERARY
+
+ + + + +
+map +
+SHEET No. 2 (click on image for an enlargement in a new window) +
+ +
+ + + +
+Kyro.
+Seattle 71 miles.
+
+ +

The material of the terminal moraine southeast of +Olympia is best exposed in the area surrounding Patterson Lake. The +railway cuts are not deep, however, and are therefore not very +satisfactory to the geologic observer. The open prairies on the glacial +outwash plain (that is, the plain formed by gravel washed from the front +of the glacier) begin at Kyro. They present a sharp contrast with the +dense forests around them and are probably due to some peculiarity of +soil or drainage that is unfavorable to forest growth. Several miles +beyond is Chambers Prairie, which is 2 miles north of the railroad +station of the same name. (See sheet 2, p. 24.) From this prairie +excellent views may be obtained of Mount Rainier, in the rear, to the +left, and of the Black Hills, ahead, to the right. Just before Plumb is +reached there is another fine view of Mount Rainier, across a +meadow.

+ + + +
+Plumb.
+Seattle 81 miles.
+
+ +

At milepost 38 the railway enters Rocky Prairie, +which is notable for its curious mounds. The origin of these mounds has +been fully discussed by Prof. J. H. Bretz, of the University of Chicago, +who concludes that they are not the result of erosion, as some have +thought, but that the gravel of which they are composed was deposited in +hummocks. Similar mounds are abundant on some other prairies.

+ + + +
+Tenino.
+Elevation 280 feet.
+Population 1,038.
+Seattle 87 miles via Plumb;
81 miles via Yelm.
+
+ +

After traversing another belt of terminal moraine and +of hills composed largely of Tertiary shales the railway enters Tenino, +which stands near the end of a projecting spur of the Cascade Range. On +the right, near the station, is a quarry of a sandstone that is widely +known to builders in the Northwest as the "Tenino sandstone." It is +generally fine grained, well cemented, and easily worked, and has the +valuable property of hardening after being quarried. The high school and +Trinity Church in Seattle are built of this sandstone. The rock is of +Eocene age. About a mile north of Tenino, near the old line of the +Northern Pacific, is a large quarry in the same sandstone, from which +the Government has obtained rock for the Grays Harbor jetty.

+ +

The Puget Sound glacier, of the Vashon substage, is +believed to have had its southern boundary, at its time of greatest +extension, near the line where the prairies end against the timbered +hills south of the town. There is, however, no terminal moraine marking +this limit for some miles east or west of Tenino.

+ +

At Tenino the railway is joined by the old line of +the Northern Pacific from Tacoma. This line passes through much +prairie country on the great outwash gravel plain formed by the melting +of the Puget Sound glacier. A few miles north of Hillhurst and at Yelm +the traveler may enjoy fine views of Mount Rainier.

+ + + +
+Bucoda.
+Elevation 256 feet.
+Population 855.*
+Seattle 84 miles.1
+
+ +

As Bucoda is approached the valley widens. The +railway crosses Skookumchuck River (Chinook jargon for "mighty water") +and runs between bluffs of coal-bearing Eocene sandstone on the left and +the river on the right. Just south of Hannaford Creek the beds in the +bright-red cliff on the left stand vertical. The brilliant colors have +the effect of a burned coal bed. Waters flowing from the Puget Sound +glacier found an outlet down this valley as far as Centralia and thence +went northwestward by way of the Chehalis River valley.

+ +
+
+ +

1Distances by the old line are given for +stations beyond Tenino, and to get the distance actually traveled from +Seattle by the new line 6 miles should be added.

+ +
+
+ + + +
+Centralia.
+Elevation 188 feet.
+Population 7,311.
+Seattle 91 miles.
+
+ +

Centralia, about a mile above the mouth of the +Skookumchuck, is an important railway junction and the center of a large +lumber industry. The town is also becoming a coal-mining center, and +much attention is given to dairying and to the growing of small fruits, +especially strawberries. The coal-bearing rocks, of Eocene age, lie east +of the town. The beds to the west (Astoria shale) are Oligocene, and are +succeeded by still younger formations toward the coast.

+ +

Below Centralia the Skookumchuck enters the broad +valley of the Chehalis, a river which drains a section of the Cascade +Range and flows across the Coast Range to the Pacific at Grays Harbor. +Two railway lines, a branch of the Northern Pacific and a line of the +Oregon-Washington Railroad & Navigation Co., connect Centralia with +the coast by way of Chehalis Valley.

+ + + +
+Chehalis.
+Elevation 188 feet.
+Population 4,507.
+Seattle 95 miles.
+
+ +

Chehalis is the center of a large dairying district +and has a condensed-milk factory. A branch line runs west from this +place to South Bend. The State Training School stands on a terrace +formed by gravel with soft decomposed pebbles, which is well exposed in +several street cuttings a few blocks west of the railway station and at +many other points farther down Chehalis River, especially at Satsop. +These gravels were deposited during the early part of the Pleistocene +epoch by the floods from the melting glaciers.

+ +

South of Chehalis the river is joined by Newaukum +River. The valley at their confluence is broad and fertile and contains +many thriving farms, chiefly on the left. A group of yellow monkey +flower (Mimulus) brightens the wayside in spring and summer. Other +plants likely to attract attention are the thimbleberry, with its white +blossoms;, the salmonberry, with its yellow fruit; the pink freweed; the +white, plumose, gracefully pendant ocean spray, or arrowwood +(Sericotheca discolor, Pl. V, p. 17); and other forms growing +among larger plants on the wooded slopes. In the more open ground the +almost omnipresent dandelion in June, with its fluffy crowns of seeds, +the purple lupine, the red and white clover, the white yarrow, and a +host of other flowers give the beauty of varied coloring to the views in +this forest land.

+ + + + +
+ +
+PLATE V.—OCEAN SPRAY (SERICOTHECA DISCOLOR), A +COMMON FLOWER IN WASHINGTON. Sometimes called arrowwood, because the +branches ore used hy the Indians in making arrows. Photograph by Barnes, +Parkland, Wash. +
+ +

From Seattle to Portland the great forests of +Washington are almost continuous. The exceptions are the so-called +prairies of the outwash gravel plains; the great stretches, bristling +with the blackened trunk of many a forest monarch, which the lumbermen +leave in their wake; and the long alluvial valleys which the farmer has +cleared and tills. Alder and maple are the usual successors to the firs +in the valleys.

+ + + +
+Napavine.
+Elevation 444 feet.
+Population l,304.*
+Seattle 103 miles.
+
+ +

Beyond Chehalis the railway gradually ascends through +shallow cuts in Eocene sandstone and early Pleistocene gravel to +Napavine, situated near the crest of a low east-west divide (450 +feet above sea level) that separates Chehalis River from the Cowlitz, a +tributary of the Columbia. The broad surface of the divide is the level +top of an exentsive deposit of gravel that is well exposed in the cuts +along the railway. In this locality the gravel consists largely of +volcanic materials, the white quartz pebbles that are so common in many +gravels being absent. About 3 miles beyond Napavine, near Evaline, may +be seen the brownish Eocene sandstone which underlies the gravel.

+ +

The railway crosses Olequa Creek, along which is a +well-developed bench or terrace eroded in the same gravel formation that +was seen near Napavine. A similar terrace, at a corresponding height +above the stream, is a prominent feature of the Cowlitz, Willapa, and +other valleys in southwestern Washington. A bluff of the same gravels, +here 150 feet in thickness and overlying Oligocene beds, appears on the +left as Winlock is entered.

+ + + +
+Winlock.
+Elevation 309 feet.
+Population 1,140.
+Seattle 109 miles.

+ +Vader.
+Elevation 143 feet.
+Seattle 116 miles.
+
+ +

Winlock is commonly known as "Bungalow Town" and the +station has been built in that style. About 3 miles beyond Winlock the +valley opens and on the right a fine view is obtained of Abernathy +Mountain, a spur of the Coast Range. On the left are some remarkably +tall alders with a background of firs.

+ +

Near Vader station are the ovens, which are supplied +by clay obtained near by. A mile beyond the town, on the right, is a +small gas plant. The gas is made from the slabs rejected by the adjacent +sawmill and is supplied to the town at the rate of $3 a month for five +lights and a kitchen stove. The salable by-products of the gas plant are +pyrogallic acid, creosote, tar, and charcoal.

+ +

Olequa Creek is again crossed and the train enters a +short gorge. On the left, by looking ahead down the gorge, the traveler +may get a fine view of the snow-covered top of Mount St. Helens, +standing above deep-green forests of fir. Nearer at hand, on the left, a +bluff exposes a sheet of lava overlying Eocene shales,1 and +on the right are Pleistocene sands.

+ +
+
+ +

1This is the region of the type section of +the Olequa formation, described by Arnold and Hannibal as extending from +the Ewing ranch, 2 miles above Little Falls [Vader], southward down +Olequa Creek to Olequa, a distance of 5-1/2 miles.

+ +
+
+ + + +
+Olequa.
+Elevation 102 feet.
+Population 485.*
+Seattle 118 miles.
+
+ +

Olequa Creek joins the Cowlitz, on the left, at +Olequa station. Some hop fields and hop dryers are visible up the +Cowlitz. On the left at the end of the bridge a bluff of columnar basalt +(lava) overlies Eocene shales, and the railway passes through a deep cut +in this basalt that resembles the Bergen Hill cut, near New York. At the +south end of the cut, on the left, the Eocene shales are well exposed. +Much of the lava of this region was probably poured out at intervals +over the sea bottom while the sediments that were later consolidated +into sandstones and shales were accumulating, the lava thus becoming +interbedded with the coal-bearing Eocene strata. Later horizontal sheets +of lava overlie the tilted coal-bearing beds near the volcano St. +Helens, from which they issued, but these later lava beds, although some +of them probably extend for a long distance west of the volcano, are not +visible from the railway.

+ +

Toutle River is crossed near its junction with the +Cowlitz, and that river, bearing numerous log rafts, may now be seen at +many places on the right-hand side of the railway.

+ + + +
+Castle Rock.
+Elevation 59 feet.
+Population 998.
+Seattle 125 miles.
+
+ +

At Castle Rock frost is rare. Here are extensive +farms among the low-rounded hills of the region and some small orchards +of prunes, cherries, and apples. The railway cuts near Castle Rock +expose 60 feet of stratified light-gray sand, forming a terrace whose +top has an elevation of 120 feet above the sea.

+ +
+ +
+ + + + +
<<< Previous<<< Contents >>>Next >>>
+ +


bul/614/sec2.htm
+Last Updated: 8-Jan-2007
+ +
+ + + \ No newline at end of file diff --git a/office/regression/000_000068.html b/office/regression/000_000068.html new file mode 100644 index 0000000..4074a02 --- /dev/null +++ b/office/regression/000_000068.html @@ -0,0 +1,35 @@ + + + +
+ + + + + + + + + +SEA79DYE18
NTSB Identification: SEA79DYE18
14 CFR Part 91 General Aviation
Event occurred Tuesday, March 13, 1979 in TENINO, WA
Aircraft: GLOBE GC-1B, registration: N3357K

----------------------------------------------------------------------------------------------------------------------------
FILEDATELOCATIONAIRCRAFTDATAINJURIESFLIGHTPILOTDATA
FSM/NPURPOSE
----------------------------------------------------------------------------------------------------------------------------
3-074779/3/13NR.TENINO,WAGLOBEGC-1BCR-001NONCOMMERCIALPRIVATE,AGE40,785
TIME-1815N3357KPX-000PLEASURE/PERSONALTRANSPTOTALHOURS,55INTYPE,
DAMAGE-SUBSTANTIALOT-000NOTINSTRUMENTRATED.
NAMEOFAIRPORT-NONAME
DEPARTUREPOINTINTENDEDDESTINATION
OLYMPIA,WATENINO,WA
TYPEOFACCIDENTPHASEOFOPERATION
EVASIVEMANEUVERLANDING:ROLL
COLLIDEDWITH:OBJECTLANDING:GO-AROUND
PROBABLECAUSE(S)
PERSONNEL-MISCELLANEOUS-PERSONNEL:DRIVEROFVEHICLE
MISCELLANEOUS-EVASIVEMANEUVERTOAVOIDCOLLISION
FACTOR(S)
TERRAIN-HIGHOBSTRUCTIONS
REMARKS-MOTORBIKERANINFRONTOFACFT.PLTVEEREDLEFT&PULLEDACFTOFFRWY.HITTVCABLE&LOSTSPEED.

Index for Mar1979 | Index of months + + + + + +

+ diff --git a/office/regression/000_000069.html b/office/regression/000_000069.html new file mode 100644 index 0000000..2637483 --- /dev/null +++ b/office/regression/000_000069.html @@ -0,0 +1,195 @@ + + + + + + + + + Published Bench Mark Sheet for 9445246 WHITNEY POINT WASHINGTON + + +
                          U.S. DEPARTMENT OF COMMERCE
+                National Oceanic and Atmospheric Administration
+                            National Ocean Service
+                                                                   Page  1 of  4
+
+                                                                                
+Station ID: 9445246                                PUBLICATION DATE:  07/12/2004
+Name:       WHITNEY POINT                                     
+            WASHINGTON
+NOAA Chart: 18445                                  Latitude:         47° 45.7' N
+USGS Quad:  TENINO SW                              Longitude:       122° 51.0' W
+
+
+To reach the tidal bench marks from the high school in Quilcene, proceed south
+on U.S. Highway 101 for 13.44 km (8.35 mi) to a paved road leading to the
+Washington Shellfish Laboratory at Whitney Point, then turn and proceed NE on
+paved road for 3.9 km (2.4 mi) to the State Shellfish Laboratory Building.  The
+bench marks are located between the Laboratory Building and the helicopter pad, 
+The tide gage and staff were located on the east side of the pier, on the sixth
+and fifth pilings, respectively, from shore.
+
+
+                         T I D A L   B E N C H   M A R K S
+
+
+                 PRIMARY BENCH MARK STAMPING:  B3 1969
+                         DESIGNATION:          944 5246 TIDAL B 3
+
+MONUMENTATION:           Tidal Station disk                        VM#:     9039
+AGENCY:                  US Coast & Geodetic Survey (USC&GS)       PID#:  SY1164
+SETTING CLASSIFICATION:  Sidewalk
+
+
+The primary bench mark is a disk set flush in the western end of a concrete
+sidewalk on the north side of the Shellfish Laboratory, along a wall just west
+of the westernmost door.
+
+
+
+                         BENCH MARK STAMPING:  NO 1 1969
+                         DESIGNATION:          944 5246 TIDAL 1
+
+MONUMENTATION:           Tidal Station disk                        VM#:     9040
+AGENCY:                  US Coast & Geodetic Survey (USC&GS)       PID#:  SY1162
+SETTING CLASSIFICATION:  Bulkhead
+
+
+The bench mark is a disk set flush in the top of a bulkhead at the NW corner of
+the Washington State Shellfish Laboratory building.
+
+

                          U.S. DEPARTMENT OF COMMERCE
+                National Oceanic and Atmospheric Administration
+                            National Ocean Service
+                                                                   Page  2 of  4
+
+                                                                                
+Station ID: 9445246                                PUBLICATION DATE:  07/12/2004
+Name:       WHITNEY POINT                                     
+            WASHINGTON
+NOAA Chart: 18445                                  Latitude:         47° 45.7' N
+USGS Quad:  TENINO SW                              Longitude:       122° 51.0' W
+
+
+                         T I D A L   B E N C H   M A R K S
+
+
+                         BENCH MARK STAMPING:  NO 2 1969
+
+MONUMENTATION:           Tidal Station disk                        VM#:     9041
+AGENCY:                  US Coast & Geodetic Survey (USC&GS)       PID#:  SY1163
+SETTING CLASSIFICATION:  In a rock
+
+
+The bench mark is a disk located in a large rock that is submerged at times and
+which forms part of a bulkhead at the north end of a pipe for salt water flowing
+between ponds, 91 m (300 ft) west of a floating pier and 91 m (300 ft) NW of the
+NW corner of the Washington State Shellfish Laboratory.  NOTE: The bench mark's
+stamping is barely discernable.
+
+

                          U.S. DEPARTMENT OF COMMERCE
+                National Oceanic and Atmospheric Administration
+                            National Ocean Service
+                                                                   Page  3 of  4
+
+                                                                                
+Station ID: 9445246                                PUBLICATION DATE:  07/12/2004
+Name:       WHITNEY POINT                                     
+            WASHINGTON
+NOAA Chart: 18445                                  Latitude:         47° 45.7' N
+USGS Quad:  TENINO SW                              Longitude:       122° 51.0' W
+
+
+                            T I D A L   D A T U M S 
+
+
+Tidal datums at WHITNEY POINT based on:
+
+     LENGTH OF SERIES:      1 MONTH
+     TIME PERIOD:           February 1978 - February 1978
+     TIDAL EPOCH:           1983-2001
+     CONTROL TIDE STATION:  9447130 SEATTLE, PUGET SOUND
+
+
+Elevations of tidal datums referred to Mean Lower Low Water (MLLW), in METERS:
+
+     MEAN HIGHER HIGH WATER (MHHW)                =  3.523
+     MEAN HIGH WATER (MHW)                        =  3.229
+     MEAN TIDE LEVEL (MTL)                        =  2.072
+     MEAN SEA LEVEL (MSL)                         =  2.067
+     MEAN LOW WATER (MLW)                         =  0.916
+     NORTH AMERICAN VERTICAL DATUM-1988 (NAVD)    =  0.814
+     MEAN LOWER LOW WATER (MLLW)                  =  0.000
+
+
+
+Bench Mark Elevation Information           In METERS above:
+
+     Stamping or Designation               MLLW        MHW
+
+     B3 1969                                5.213    1.984
+     NO 1 1969                              6.023    2.794
+     NO 2 1969                              3.157   -0.072
+
+
+

                          U.S. DEPARTMENT OF COMMERCE
+                National Oceanic and Atmospheric Administration
+                            National Ocean Service
+                                                                   Page  4 of  4
+
+                                                                                
+Station ID: 9445246                                PUBLICATION DATE:  07/12/2004
+Name:       WHITNEY POINT                                     
+            WASHINGTON
+NOAA Chart: 18445                                  Latitude:         47° 45.7' N
+USGS Quad:  TENINO SW                              Longitude:       122° 51.0' W
+
+
+                             D E F I N I T I O N S
+
+
+Mean Sea Level (MSL) is a tidal datum determined over a 19-year National Tidal
+Datum Epoch.  It pertains to local mean sea level and should not be confused
+with the fixed datums of North American Vertical Datum of 1988 (NAVD 88).
+
+NGVD 29 is a fixed datum adopted as a national standard geodetic reference for
+heights but is now considered superseded.  NGVD 29 is sometimes referred to as
+Sea Level Datum of 1929 or as Mean Sea Level on some early issues of Geological
+Survey Topographic Quads.  NGVD 29 was originally derived from a general
+adjustment of the first-order leveling networks of the U.S. and Canada after
+holding mean sea level observed at 26 long term tide stations as fixed.
+Numerous local and wide-spread adjustments have been made since establishment in
+1929.  Bench mark elevations relative to NGVD 29 are available from the National
+Geodetic Survey (NGS) data base via the World Wide Web at 
+National Geodetic Survey.
+
+NAVD 88 is a fixed datum derived from a simultaneous, least squares, minimum
+constraint adjustment of Canadian/Mexican/United States leveling observations.
+Local mean sea level observed at Father Point/Rimouski, Canada was held fixed as
+the single initial constraint.  NAVD 88 replaces NGVD 29 as the national
+standard geodetic reference for heights.  Bench mark elevations relative to
+NAVD 88 are available from NGS through the World Wide Web at 
+National Geodetic Survey.
+
+NGVD 29 and NAVD 88 are fixed geodetic datums whose elevation relationships to
+local MSL and other tidal datums may not be consistent from one location to
+another.
+
+The Vertical Mark Number (VM#) and PID# shown on the bench mark sheet are unique
+identifiers for bench marks in the tidal and geodetic databases, respectively.
+Each bench mark in either database has a single, unique VM# and/or PID# assigned.
+Where both VM# and PID# are indicated, both tidal and geodetic elevations are
+available for the bench mark listed.
+
+The NAVD 88 elevation is shown on the Elevations of Tidal Datums Table Referred
+to MLLW only when two or more of the bench marks listed have NAVD 88 elevations.
+The NAVD 88 elevation relationship shown in the table is derived from an average
+of several bench mark elevations relative to tide station datum.  As a result of
+this averaging, NAVD 88 bench mark elevations computed indirectly from the tidal
+datums elevation table may differ slightly from NAVD 88 elevations listed for
+each bench mark in the NGS database.
+
+
+ + diff --git a/office/regression/000_000070.html b/office/regression/000_000070.html new file mode 100644 index 0000000..fa7e4ca --- /dev/null +++ b/office/regression/000_000070.html @@ -0,0 +1,394 @@ + + + +USDA.gov | BSE Updates | BSE Information and Resources + + + + + +
+ + + + + + + + + + + + + + + + +
+
+

+
+

BSE Information and Resources Image

+                    + + +BSE Releases +BSE Transcripts  +Return to +BSE Information and Resources Page
+
+
+BSE Related Updates + +

+ + + + +
+

+
+ + + + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  
+ + Feb. 5, + 2004Samples taken from the three animals depopulated in the second Mabton, WA, +facility have tested negative. Samples taken from the Mabton index herd, the +herds in Mattawa, Connell, Boardman, Quincy, Tenino, Moxee, Othello, and Burley +have tested negative for BSE. To date, there have been a total of 255 samples +taken; all samples have tested negative for BSE.
+ + Feb. + 4, 2004On February 4, 2004, the International Review Subcommittee of the Secretarys +Advisory Committee on Foreign Animal and Poultry Diseases presented the results +of their review of USDAs BSE response to the full Committee.
+ + + Feb. + 3, 2004On Tuesday, Jan. 27, 2004, 15 animals of interest were euthanized and sampled from +the Moxee, WA, facility. In addition to this facility, USDA has previously conducted selective depopulation activities at these facilities
+ Feb. 2, 2004On + Saturday, Jan. 31, three animals of interest were euthanized + and sampled from the second Mabton, WA, facility. The facility + has been released from quarantine. In addition to this + facility, USDA has previously conducted selective depopulation + activities at these facilities.
Jan. + 28, 2004On Tuesday, Jan. 27, 2004, 15 animals of interest were euthanized and sampled from +the Moxee, WA, facility. In addition to this facility, USDA has previously conducted selective depopulation activities at these facilities
Jan. + 27, 2004On Monday, Jan. 26, 2004, 18 animals of interest were euthanized and sampled from the Quincy, WA, facility. Four animals of interest were euthanized and sampled at the Tenino, WA, facility. In addition to these two facilities, USDA has previously conducted selective depopulation activities at these facilities.
Jan. + 26, 2004Guidelines on bovine spongiform encephalopathy (BSE) issued by the World Organization for Animal Health (OIE), the international animal heath standard setting organization, state that animals born on a premises within one year (before or after) of a BSE-affected animal can be considered of significant interest to the country reporting the BSE detection. to the 26 cattle already located, an additional animal has been located at a facility in Moxee, Washington. The State has placed a hold on the facility. In total, 27 of the 81 cattle that came from Canada have been located.
Jan. + 23, 2004USDA's investigation into the 81 cattle that came from Canada continues. In addition to the 26 cattle already located, an additional animal has been located at a facility in Moxee, Washington. The State has placed a hold on the facility. In total, 27 of the 81 cattle that came from Canada have been located.
Jan. + 22, 2004USDA's + investigation into the 81 cattle that came + from Canada continues. In total, 23 of the + 81 cattle that came from Canada have been + located.
+ Jan. + 21, 2004 + USDA + personnel have located another animal that + is part of a group of 17 heifers originally + dispersed from the Canadian source herd in + August 2001. The animal was found at a Boardman, + Oregon, facility.
 
+ Jan. + 20, 2004 + On January + 19, USDA completed selective depopulation + operations on the facility in Mattawa, Washington. + USDA has transported and sampled a total of + 39 animals from this facility. Selective depopulation + has also been completed at the index premises; + 131 animals from the index premises have been + euthanized and sampled.
 
+ Jan. + 19, 2004 + USDA's + investigation into the 81 cows that came from + Canada continues. Three animals have been + located at a facility in Tenino, Washington + and one additional animal has been located + in Connell. The State has placed a hold on + the Tenino facility in order to facilitate + the investigation.
 
+ Jan. + 16, 2004 + USDA's + investigation on the 81 cows that came from + Canada continues. Five additional animals + have been located at a facility located in + Connell, Washington. The State has placed + a hold on the facility in order to facilitate + the investigation. In total, 19 of the 81 + cows that came from Canada have been located.
+  
+ Jan. + 15, 2004 + Selective + depopulation of the index herd, which began + on Saturday, January 10, continues. USDA plans + to transport, humanely euthanize, and test + approximately 130 animals in the index herd
+  
+ Jan. + 14, 2004 + USDA + has confirmed that one animal has gone to + a dairy in Quincy, Washington. USDA believes + that as many as seven animals may have been + sent to this facility; we are working to confirm + how many may remain at this facility. The + State has placed a hold on this facility in + order to aid the investigation.
 
+ Jan. + 12, 2004 + In + regard to the ongoing investigation, USDA + has traced a third animal to the herd in Mattawa, + Washington. Two animals were previously traced + to this herd. The three animals in the Mattawa + herd will be removed.
+ Jan. + 08, 2004 + On + January 6, USDA euthanized the entire bull + calf herd from Sunnyside, Washington. Approximately + 450 animals were euthanized according to American + Veterinary Medical Association humane guidelines +
+ Jan. + 06, 2004 + USDA + announced today that DNA evidence now helps + to verify—with a high degree of certainty—that + the BSE positive cow found in Washington State + originated from a dairy farm in Alberta, Canada. +
+ Jan. + 05, 2004 + USDA + has made the decision to depopulate the bull + calf operation in Mabton, Washington, that + includes a calf born to the heifer infected + with BSE prior to the heifers slaughter this + past December. 
+ Jan. + 02, 2004 + USDA + has confirmed that 81 of the 82 animals listed + on the Canadian health certificate that includes + the eartag number of the index cow entered + the United States through Oroville, WA, on + September 4, 2001. One of those 82 has now + been located at a Mattawa, WA, dairy operation, + which is now under a state hold order. +
+ Dec. + 31, 2003 + USDA + continues to work with the Canadian officials + to verify traceback of the index animal. Records + indicate that the animal was approximately + 6-1/2 years old at the time of slaughter. + USDA is working with Canada to conduct DNA + testing to verify that the correct animal + has been identified. DNA testing is expected + to begin this evening and results could be + available as early as next week.
+ Dec. + 30, 2003 + Agriculture Secretary Ann Veneman announced + additional safeguards to bolster the U.S. + protection systems against Bovine Spongiform + Encephalopathy, or BSE, and further protect + public health.
+ Dec. + 29, 2003 + USDA + continues to work with the Canadian officials + to verify traceback of the index animal. Records + obtained from the owner correspond with Canada’s + records indicating that this animal was approximately + 6-1/2 years old at the time of slaughter. + USDA is working with Canada to conduct DNA + testing to verify that the correct animal + has been identified.
+ Dec. + 27, 2003 + On + the morning of December 25, the BSE world + reference lab in Weybridge, England, confirmed + USDA’s December 23 preliminary diagnosis + of BSE in a single nonambulatory dairy cow + that had been slaughtered on December 9 at + Vern's Moses Lake Meats in Washington State. +

+  
+
+
+
+
+
+

+
 
+ + + + +

+

United States Department of Agriculture:
| +Home | +Welcome to USDA +| +
| +Privacy and Security Policy +| Nondiscrimination +Statement | FOIA |

+ +

Contacts, Questions to +webmaster@usda.gov

+ \ No newline at end of file diff --git a/office/regression/000_000071.html b/office/regression/000_000071.html new file mode 100644 index 0000000..00ccd5c --- /dev/null +++ b/office/regression/000_000071.html @@ -0,0 +1,1465 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
USDA Logo + + + + + + + + + + + + + + + + +
 United States Department of Agriculture
 USDA Factoids
 Random images that represent what the USDA offers
 + + + + + + + + + + + +
+ +Release No. 0025.04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 Home About USDA Newsroom Agencies and Offices Careers Help Contact Us En Español
+ +
+ + + +
+ + + +
+ + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Search
  + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
 + +
+ + + Advanced Search + +
+ + + + + Search Tips + +
+
+ + +
  + + + + + + + + + + + + + + + + + + +
My USDA
+ Login +
+ Customize New User +
+
  + + + + + + + + + +
Browse by Audience
 + +
+ + + + + + + +
+ + +
+
+
+
  + Browse by Subject +
  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + Agriculture + +
+ + + + + Education and Outreach + +
+ + + + + Food and Nutrition + +
+ + + + + Laws and Regulations + +
+ + + + + Marketing and Trade + +
+ + + + + Natural Resources and Environment + +
+ + + + + Research and Science + +
+ + + + + Rural and Community Development + +
+ + + + + Travel and Recreation + +
+ + + + + USDA Employee Services + +
+
+ + + +
+ + + +
+ + +
+ + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Newsroom
+ + +
+ + + +
+ + + +
+ + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
Release No. 0025.04
 
Printable VersionPrintable Version
 
+
+Contact: +
+Office of Communication 202-720-4623 +
+
+
+
+ +BSE Update - Monday, January 19, 2004 + +
+
+
+WASHINGTON, January 19, 2004 – USDA's investigation into the 81 cows that came from Canada continues. Three animals have been located at a facility in Tenino, Washington and one additional animal has been located in Connell. The State has placed a hold on the Tenino facility in order to facilitate the investigation. In total, 23 +of the 81 cows that came from Canada have been located: +
+
    +
  • +One of the 81 is the positive cow. +
    +
  • +
  • +Three have been located at a facility in Tenino, Washington. +
    +
  • +
  • +Six have been located at a facility in Connell, Washington. +
    +
  • +
  • +One has been located at a dairy in Quincy, Washington. +
    +
  • +
  • +Three are at a facility in Mattawa, Washington. +
    +
  • +
  • +Nine were in the index herd. +
    +
  • +
+In addition, USDA personnel have located +three animals that are part of a group of 17 heifers originally dispersed from the Canadian source herd in August 2001. These 17 animals were mentioned by Dr. Brian Evans, Chief Veterinary Officer for Canada, in the January 6, 2004, technical briefing and are not part of the 81 animals. APHIS investigators are still determining whether the remaining 14 animals entered the United States. The three animals were found at the Quincy, Washington, dairy where one of the 81 has been located. +
+
+Selective +depopulation of 129 animals from the index herd, which began on Saturday, January 10, is complete. On January 17, USDA began selective depopulation operations on the facility in Mattawa. USDA has transported and sampled a total of 20 animals from this facility. Thus far, 129 animals from the index premises have been euthanized and sampled. To date, 30 samples from the index herd have completed testing; results have been negative. +
+
+Additional information on BSE can be obtained by visiting the +USDA website at +http://www.usda.gov +. Past BSE updates can be viewed at +http://www.aphis.usda.gov +. +
+
+
+
+
+ +
+ + + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + +
+ + + +
+ + + +
+ + + + + + + +
+ + + +
+ + + +
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Newsroom
  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 News Releases
    + Latest Releases
    + Transcripts and Speeches
    + Agency News Releases
    + Radio and TV Broadcasts
    + How to Get Information
    + Subscriptions
    + RSS Feeds
 Reports & Publications
    + Agency Reports
    + USDA Publications
 Events
    + Events by Date
 Image and Video Libraries
    + Secretary's Photo Gallery
    + Broadcast Media & Technology Center
+
+ + + +
+ + + +
+ + + + + + + +
+ + + +
+ + + +
+ + + + + + + +
+ + + +
+ + + +
+ + + + + + + +
+ + + +
+ + + +
+ + + + + + + +
+ + + +
+ + + +
+ + +
+ + + +
+ + +
+ + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
 + +
+ + + + + + +
+ + + + + + + + USDA Home + + +  | + + + + + + + Site Map + + +  | + + + + + + + Policies and Links + + +
+ + FOIA + +  | + + + + + + + Accessibility Statement + + +  | + + + + + + + Privacy Policy + + +  | + + + + + + + Non-Discrimination Statement + + +  | Information Quality + +  | USA.gov + +  | White House + +
+
+ + + +
+ + + +
+ + + +
+ + +
+ + +
+ + +
+
+ +  +
+ + + + \ No newline at end of file diff --git a/office/regression/000_000072.html b/office/regression/000_000072.html new file mode 100644 index 0000000..3c88c79 --- /dev/null +++ b/office/regression/000_000072.html @@ -0,0 +1,332 @@ + + + + + + + + Data Retrieval + + + + + + + + + + + +Home +Products +Programs +Partnerships +Education +Help +NOAA Web Site Link + + + + + + + + + + + + + + + + + +
+
+ banner graphic + + + + + + + + + +
+ + +
Error: Could not include menu file, Station ID not found. + + + +
Whitney Point, WA Whitney Point, WA: Data Inventory
Station ID: 9445246Page Help
Superseded Bench Mark
Click HERE for printable version
+
+
+ + + + + + + + Published Bench Mark Sheet for 9445246 WHITNEY POINT, DABOB BAY, HOOD CANAL WASHINGTON + + +
                          U.S. DEPARTMENT OF COMMERCE
+                National Oceanic and Atmospheric Administration
+                            National Ocean Service
+Datums Page                                                        Page  1 of  4
+
+                                                   PUBLICATION DATE:  04/18/1984
+Station ID: 9445246                                SUPERCEDED DATE:   04/21/2003
+Name:       WHITNEY POINT, DABOB BAY, HOOD CANAL              
+            WASHINGTON
+NOAA Chart: 18445                                  Latitude:         47° 45.7' N
+USGS Quad:  TENINO SW                              Longitude:       122° 51.0' W
+
+
+To reach the tidal bench marks from the high school in Quilcene, proceed south
+on U.S. Highway 101 for 8.35 miles (13.44 km) to a paved road leading to the
+Washington Shellfish Laboratory at Whitney Point, then NE on paved road for 2.4
+miles (3.9 km) to the State Shellfish Laboratory Building.  The bench marks are
+located between the Laboratory Building and the helicopter pad and the tide gage
+and staff were located on the east side of the pier, on the sixth and fifth
+pilings, respectively from shore.
+
+
+                         T I D A L   B E N C H   M A R K S
+
+
+                 PRIMARY BENCH MARK STAMPING:  B3 1969
+
+MONUMENTATION:           Survey Disk                               VM#:     9039
+AGENCY:                                                            PID#:  SY1164
+SETTING CLASSIFICATION:  Concrete Sidewalk
+
+
+The bench mark is set flush in the western end of a concrete sidewalk on the
+north side of the Shellfish Laboratory, along a wall just west of the
+westernmost door.
+
+
+
+                         BENCH MARK STAMPING:  NO 1 1969
+
+MONUMENTATION:           Survey Disk                               VM#:     9040
+AGENCY:                                                            PID#:  SY1162
+SETTING CLASSIFICATION:  Concrete Bulkhead
+
+
+The bench mark is set flush in the top of a bulkhead at the NW corner of the
+Washington State Shellfish Laboratory building.
+
+
                          U.S. DEPARTMENT OF COMMERCE
+                National Oceanic and Atmospheric Administration
+                            National Ocean Service
+                                                                   Page  2 of  4
+
+                                                   PUBLICATION DATE:  04/18/1984
+Station ID: 9445246                                SUPERCEDED DATE:   04/21/2003
+Name:       WHITNEY POINT, DABOB BAY, HOOD CANAL              
+            WASHINGTON
+NOAA Chart: 18445                                  Latitude:         47° 45.7' N
+USGS Quad:  TENINO SW                              Longitude:       122° 51.0' W
+
+
+                         T I D A L   B E N C H   M A R K S
+
+
+                         BENCH MARK STAMPING:  NO 2 1969
+
+MONUMENTATION:           Survey Disk                               VM#:     9041
+AGENCY:                                                            PID#:  SY1163
+SETTING CLASSIFICATION:  Rock
+
+
+The bench mark is located in a large rock which forms part of a bulkhead at the
+north end of a pipe for salt water flowing between ponds, 300 feet (91 m) west
+of a floating pier and 300 feet (91 m) NW of the NW corner of the Washington
+State Shellfish Laboratory.  The bench mark is set in rock that is submerged at
+times and the stamping is barely discernable.
+
+
                          U.S. DEPARTMENT OF COMMERCE
+                National Oceanic and Atmospheric Administration
+                            National Ocean Service
+                                                                   Page  3 of  4
+
+                                                   PUBLICATION DATE:  04/18/1984
+Station ID: 9445246                                SUPERCEDED DATE:   04/21/2003
+Name:       WHITNEY POINT, DABOB BAY, HOOD CANAL              
+            WASHINGTON
+NOAA Chart: 18445                                  Latitude:         47° 45.7' N
+USGS Quad:  TENINO SW                              Longitude:       122° 51.0' W
+
+
+                            T I D A L   D A T U M S 
+
+
+Tidal datums at WHITNEY POINT, DABOB BAY, HOOD CANAL based on:
+
+     LENGTH OF SERIES:      1 MONTH
+     TIME PERIOD:           FEBRUARY 1978
+     TIDAL EPOCH:           1960-1978
+     CONTROL TIDE STATION:  9447130 SEATTLE
+
+
+Elevations of tidal datums referred to Mean Lower Low Water (MLLW), in FEET:
+
+     HIGHEST OBSERVED WATER LEVEL (02/09/1978)    =  14.66
+     MEAN HIGHER HIGH WATER (MHHW)                =  11.55
+     MEAN HIGH WATER (MHW)                        =  10.59
+     MEAN TIDE LEVEL (MTL)                        =   6.80
+     MEAN LOW WATER (MLW)                         =   3.00
+     MEAN LOWER LOW WATER (MLLW)                  =   0.00
+     LOWEST  OBSERVED WATER LEVEL (01/23/1978)    =  -1.01
+
+National Geodetic Vertical Datum (NGVD 29)
+
+Bench Mark Elevation Information           In FEET above:
+
+     Stamping or Designation               MLLW        MHW
+
+     B3 1969                               17.28      6.69
+     NO 1 1969                             19.94      9.35
+     NO 2 1969                             10.54     -0.05
+
+
+
                          U.S. DEPARTMENT OF COMMERCE
+                National Oceanic and Atmospheric Administration
+                            National Ocean Service
+                                                                   Page  4 of  4
+
+                                                   PUBLICATION DATE:  04/18/1984
+Station ID: 9445246                                SUPERCEDED DATE:   04/21/2003
+Name:       WHITNEY POINT, DABOB BAY, HOOD CANAL              
+            WASHINGTON
+NOAA Chart: 18445                                  Latitude:         47° 45.7' N
+USGS Quad:  TENINO SW                              Longitude:       122° 51.0' W
+
+
+                             D E F I N I T I O N S
+
+
+Mean Sea Level (MSL) is a tidal datum determined over a 19-year National Tidal
+Datum Epoch.  It pertains to local mean sea level and should not be confused
+with the fixed datums of North American Vertical Datum of 1988 (NAVD 88).
+
+NGVD 29 is a fixed datum adopted as a national standard geodetic reference for
+heights but is now considered superseded.  NGVD 29 is sometimes referred to as
+Sea Level Datum of 1929 or as Mean Sea Level on some early issues of Geological
+Survey Topographic Quads.  NGVD 29 was originally derived from a general
+adjustment of the first-order leveling networks of the U.S. and Canada after
+holding mean sea level observed at 26 long term tide stations as fixed.
+Numerous local and wide-spread adjustments have been made since establishment in
+1929.  Bench mark elevations relative to NGVD 29 are available from the National
+Geodetic Survey (NGS) data base via the World Wide Web at 
+National Geodetic Survey.
+
+NAVD 88 is a fixed datum derived from a simultaneous, least squares, minimum
+constraint adjustment of Canadian/Mexican/United States leveling observations.
+Local mean sea level observed at Father Point/Rimouski, Canada was held fixed as
+the single initial constraint.  NAVD 88 replaces NGVD 29 as the national
+standard geodetic reference for heights.  Bench mark elevations relative to
+NAVD 88 are available from NGS through the World Wide Web at 
+National Geodetic Survey.
+
+NGVD 29 and NAVD 88 are fixed geodetic datums whose elevation relationships to
+local MSL and other tidal datums may not be consistent from one location to
+another.
+
+The Vertical Mark Number (VM#) and PID# shown on the bench mark sheet are unique
+identifiers for bench marks in the tidal and geodetic databases, respectively.
+Each bench mark in either database has a single, unique VM# and/or PID# assigned.
+Where both VM# and PID# are indicated, both tidal and geodetic elevations are
+available for the bench mark listed.
+
+The NAVD 88 elevation is shown on the Elevations of Tidal Datums Table Referred
+to MLLW only when two or more of the bench marks listed have NAVD 88 elevations.
+The NAVD 88 elevation relationship shown in the table is derived from an average
+of several bench mark elevations relative to tide station datum.  As a result of
+this averaging, NAVD 88 bench mark elevations computed indirectly from the tidal
+datums elevation table may differ slightly from NAVD 88 elevations listed for
+each bench mark in the NGS database.
+
+
+ + +
+



+ +
+ home | + products | + programs | + partnerships | + education | + help +
+
 
+ + + + + + +
+ + Disclaimers         + Contact Us         + Privacy Policy         + About CO-OPS         + For CO-OPS Employees Only         + + Revised: 11/23/2005 + + + + NOAA / + National Ocean Service + +
+ + + + diff --git a/office/regression/000_000073.html b/office/regression/000_000073.html new file mode 100644 index 0000000..b5b74c5 --- /dev/null +++ b/office/regression/000_000073.html @@ -0,0 +1,91 @@ + +7-Day Forecast for Latitude 46.84°N and Longitude 122.85°W (Elev. 600 ft)
   
NOAA logo - Click to go to the NOAA homepageYour National Weather Service forecastNWS logo
Tenino WASkip to Detailed 7-Day Forecast
Enter Your "City, ST" or zip code   
+
+ +
NWS Seattle, WA
 Point Forecast: Tenino WA
 46.84°N 122.85°W (Elev. 600 ft)
Mobile Weather Information
En Español
Last Update: 3:47 pm PST Feb 5, 2009
Forecast Valid: 6pm PST Feb 5, 2009-6pm PST Feb 12, 2009
+ + + + + + +
+Forecast at a Glance +
+
+ + + +
Tonight

Rain Chance for Measurable Precipitation 80%
Rain

Lo 40°F
Friday

Showers Likely Chance for Measurable Precipitation 70%
Showers
Likely
Hi 43°F
Friday
Night

Mostly Cloudy
Mostly
Cloudy
Lo 31°F
Saturday

Mostly Cloudy
Mostly
Cloudy
Hi 49°F
Saturday
Night

Mostly Cloudy
Mostly
Cloudy
Lo 35°F
Sunday

Chance Rain Chance for Measurable Precipitation 40%
Chance
Rain
Hi 44°F
Sunday
Night

Chance Showers Chance for Measurable Precipitation 50%
Chance
Showers
Lo 31°F
Monday

Chance Showers
Chance
Showers
Hi 41°F
Monday
Night

Chance Showers
Chance
Showers
Lo 31°F
+ + + + + + +
+
+Detailed text forecast
+ +Tonight: Rain, mainly after 10pm. Low around 40. South southwest wind between 3 and 8 mph. Chance of precipitation is 80%.

Friday: Showers likely. Cloudy, with a high near 43. West wind around 7 mph. Chance of precipitation is 70%.

Friday Night: Mostly cloudy, with a low around 31. West northwest wind 6 to 8 mph becoming east northeast.

Saturday: Mostly cloudy, with a high near 49. Light and variable wind.

Saturday Night: Mostly cloudy, with a low around 35. Calm wind becoming east southeast around 6 mph.

Sunday: A 40 percent chance of rain. Mostly cloudy, with a high near 44.

Sunday Night: A 50 percent chance of showers. Mostly cloudy, with a low around 31.

Monday: A chance of showers. Mostly cloudy, with a high near 41.

Monday Night: A chance of showers. Mostly cloudy, with a low around 31.

Tuesday: Rain likely. Cloudy, with a high near 42.

Tuesday Night: Showers likely. Cloudy, with a low around 34.

Wednesday: A chance of showers. Mostly cloudy, with a high near 41.

Wednesday Night: A chance of showers. Mostly cloudy, with a low around 34.

Thursday: A chance of showers. Mostly cloudy, with a high near 46.

+
+Detailed Point ForecastsMove point forecast map down, and current conditions, radar, and satellite up.
Click Map for Forecast                        Disclaimer
Lat/Lon: 46.84°N 122.85°W   Elevation:600 ft
Get as KML
Current Local WeatherMove point forecast map down, and current conditions, radar, and satellite up.
+ + + + +
+Olympia, Olympia Airport
+Last UPdate on 05 Feb 16:54 PST

+
+ + + +
+ +A Few Clouds
+
49°F
(9°C)
+ + + + + + + + + + + + + + + + + + + + +
Humidity:63 %
Wind Speed:SSW 7 MPH
+
Barometer:29.74 in (1007.10 mb)
Dewpoint:37°F (3°C)
Wind Chill:46°F (8°C)
Visibility:10.00 Miles
More Local Wx: 3 Day History:
+
+
+
Radar and Satellite (Click for larger image)
Link to Local Radar Data Link to Satellite Data

+ National Digital Forecast Database (Click for larger image) +
+ National Digital Forecast Database Maximum Temperature Forecast + National Digital Forecast Database Weather Element Forecast +
+ Additional Forecasts and Information +
+ + + + + + + + + + +
Zone Area Forecast for Southwest Interior, WA
Forecast Discussion
Printable ForecastText Only Forecast
Hourly Weather GraphTabular Forecast
International System of UnitsAbout Point Forecasts
Forecast Weather Table Interface

Webmaster
National Weather Service:
Seattle, WA
www.weather.gov
Privacy Policy
Disclaimer
+ diff --git a/office/regression/000_000074.html b/office/regression/000_000074.html new file mode 100644 index 0000000..c87c6d5 --- /dev/null +++ b/office/regression/000_000074.html @@ -0,0 +1,91 @@ + +7-Day Forecast for Latitude 46.86°N and Longitude 122.85°W (Elev. 400 ft)
   
NOAA logo - Click to go to the NOAA homepageYour National Weather Service forecastNWS logo
Tenino WASkip to Detailed 7-Day Forecast
Enter Your "City, ST" or zip code   
+
+ +
NWS Seattle, WA
 Point Forecast: Tenino WA
 46.86°N 122.85°W (Elev. 400 ft)
Mobile Weather Information
En Español
Last Update: 3:47 pm PST Feb 5, 2009
Forecast Valid: 6pm PST Feb 5, 2009-6pm PST Feb 12, 2009
+ + + + + + +
+Forecast at a Glance +
+
+ + + +
Tonight

Rain Chance for Measurable Precipitation 80%
Rain

Lo 39°F
Friday

Showers Likely Chance for Measurable Precipitation 70%
Showers
Likely
Hi 45°F
Friday
Night

Mostly Cloudy
Mostly
Cloudy
Lo 32°F
Saturday

Mostly Cloudy
Mostly
Cloudy
Hi 50°F
Saturday
Night

Mostly Cloudy
Mostly
Cloudy
Lo 35°F
Sunday

Chance Rain Chance for Measurable Precipitation 40%
Chance
Rain
Hi 48°F
Sunday
Night

Chance Showers Chance for Measurable Precipitation 50%
Chance
Showers
Lo 31°F
Monday

Chance Showers
Chance
Showers
Hi 41°F
Monday
Night

Chance Showers
Chance
Showers
Lo 32°F
+ + + + + + +
+
+Detailed text forecast
+ +Tonight: Rain, mainly after 10pm. Low around 39. South southwest wind between 3 and 8 mph. Chance of precipitation is 80%.

Friday: Showers likely. Cloudy, with a high near 45. West wind between 6 and 8 mph. Chance of precipitation is 70%.

Friday Night: Mostly cloudy, with a low around 32. West northwest wind 6 to 8 mph becoming east.

Saturday: Mostly cloudy, with a high near 50. South wind around 5 mph becoming calm.

Saturday Night: Mostly cloudy, with a low around 35. Calm wind becoming east southeast between 4 and 7 mph.

Sunday: A 40 percent chance of rain. Mostly cloudy, with a high near 48.

Sunday Night: A 50 percent chance of showers. Mostly cloudy, with a low around 31.

Monday: A chance of showers. Mostly cloudy, with a high near 41.

Monday Night: A chance of showers. Mostly cloudy, with a low around 32.

Tuesday: Rain likely. Cloudy, with a high near 43.

Tuesday Night: Showers likely. Cloudy, with a low around 35.

Wednesday: A chance of showers. Mostly cloudy, with a high near 42.

Wednesday Night: A chance of showers. Mostly cloudy, with a low around 34.

Thursday: A chance of showers. Mostly cloudy, with a high near 47.

+
+Detailed Point ForecastsMove point forecast map down, and current conditions, radar, and satellite up.
Click Map for Forecast                        Disclaimer
Lat/Lon: 46.86°N 122.85°W   Elevation:400 ft
Get as KML
Current Local WeatherMove point forecast map down, and current conditions, radar, and satellite up.
+ + + + +
+Olympia, Olympia Airport
+Last UPdate on 05 Feb 16:54 PST

+
+ + + +
+ +A Few Clouds
+
49°F
(9°C)
+ + + + + + + + + + + + + + + + + + + + +
Humidity:63 %
Wind Speed:SSW 7 MPH
+
Barometer:29.74 in (1007.10 mb)
Dewpoint:37°F (3°C)
Wind Chill:46°F (8°C)
Visibility:10.00 Miles
More Local Wx: 3 Day History:
+
+
+
Radar and Satellite (Click for larger image)
Link to Local Radar Data Link to Satellite Data

+ National Digital Forecast Database (Click for larger image) +
+ National Digital Forecast Database Maximum Temperature Forecast + National Digital Forecast Database Weather Element Forecast +
+ Additional Forecasts and Information +
+ + + + + + + + + + +
Zone Area Forecast for Southwest Interior, WA
Forecast Discussion
Printable ForecastText Only Forecast
Hourly Weather GraphTabular Forecast
International System of UnitsAbout Point Forecasts
Forecast Weather Table Interface

Webmaster
National Weather Service:
Seattle, WA
www.weather.gov
Privacy Policy
Disclaimer
+ diff --git a/office/regression/000_000075.html b/office/regression/000_000075.html new file mode 100644 index 0000000..40330e5 --- /dev/null +++ b/office/regression/000_000075.html @@ -0,0 +1,35 @@ + + + +
+ + + + + + + + + +SEA74AS019
NTSB Identification: SEA74AS019
14 CFR Part 91 General Aviation
Event occurred Saturday, October 13, 1973 in TENINO, WA
Aircraft: PIPER PA-28R, registration: N9456N

----------------------------------------------------------------------------------------------------------------------------
FILEDATELOCATIONAIRCRAFTDATAINJURIESFLIGHTPILOTDATA
FSM/NPURPOSE
----------------------------------------------------------------------------------------------------------------------------
3-305873/10/13TENINO,WASHPIPERPA-28RCR-100NONCOMMERCIALPRIVATE,AGE42,183
TIME-1230N9456NPX-000PLEASURE/PERSONALTRANSPTOTALHOURS,UNK/NRIN
DAMAGE-DESTROYEDOT-000TYPE,NOTINSTRUMENT
RATED.
DEPARTUREPOINTINTENDEDDESTINATION
UNKNOWN/NOTREPORTEDUNKNOWN/NOTREPORTED
TYPEOFACCIDENTPHASEOFOPERATION
AIRFRAMEFAILURE:INFLIGHTINFLIGHT:OTHER
PROBABLECAUSE(S)
PILOTINCOMMAND-CONTINUEDVFRFLIGHTINTOADVERSEWEATHERCONDITIONS
PILOTINCOMMAND-SPATIALDISORIENTATION
PILOTINCOMMAND-EXCEEDEDDESIGNEDSTRESSLIMITSOFAIRCRAFT
MISCELLANEOUSACTS,CONDITIONS-OVERLOADFAILURE
FACTOR(S)
MISCELLANEOUSACTS,CONDITIONS-SEPARATIONINFLIGHT
WEATHER-LOWCEILING
WEATHER-RAIN
WEATHER-FOG
WEATHERBRIEFING-BRIEFEDBYFLIGHTSERVICEPERSONNEL,BYPHONE
WEATHERFORECAST-FORECASTSUBSTANTIALLYCORRECT
SKYCONDITIONCEILINGATACCIDENTSITE
OVERCAST/LOWERSCATTERED2400
VISIBILITYATACCIDENTSITEPRECIPITATIONATACCIDENTSITE
2MILESORLESSRAIN
OBSTRUCTIONSTOVISIONATACCIDENTSITEWINDVELOCITY-KNOTS
FOG19
TYPEOFWEATHERCONDITIONSTYPEOFFLIGHTPLAN
VFRNONE
REMARKS-REQ&RECWEABETWEENSEATTLE&PORTLAND.MARGINALVFR.BOTHWGS&TAILSEPARATED.

Index for Oct1973 | Index of months + + + + + +

+ diff --git a/office/regression/000_000076.html b/office/regression/000_000076.html new file mode 100644 index 0000000..ab4f4a9 --- /dev/null +++ b/office/regression/000_000076.html @@ -0,0 +1,70 @@ + + +FR Doc 05-18026 + + + + + + + +
+
+[Federal Register: September 14, 2005 (Volume 70, Number 177)]
+[Proposed Rules]               
+[Page 54334]
+From the Federal Register Online via GPO Access [wais.access.gpo.gov]
+[DOCID:fr14se05-32]                         
+
+-----------------------------------------------------------------------
+
+FEDERAL COMMUNICATIONS COMMISSION
+
+47 CFR Part 73
+
+[DA 05-2340, MB Docket No. 05-185, RM-11236]
+
+ 
+Radio Broadcasting Services; Tenino, WA
+
+AGENCY: Federal Communications Commission.
+
+ACTION: Proposed rule; dismissal.
+
+-----------------------------------------------------------------------
+
+SUMMARY: This document dismisses a pending petition for rulemaking 
+filed by Dr. Sandra L. Woodruff to allot Channel 229C3 at Tenino, 
+Washington for failure to state a continuing interest in the requested 
+allotment. The document therefore terminates the proceeding. See 70 FR 
+30050, published May 25, 2005.
+
+ADDRESSES: Federal Communications Commission, Washington, DC 20554.
+
+FOR FURTHER INFORMATION CONTACT: Helen McLean, Media Bureau (202) 418-
+2738.
+
+SUPPLEMENTARY INFORMATION: This is a synopsis of the Commission's 
+Report and Order, MB Docket No. 05-185, adopted August 24, 2005, and 
+released August 26, 2005. The full text of this Commission decision is 
+available for inspection and copying during normal business hours in 
+the FCC Reference Information Center (Room CY-A257), 445 12th Street, 
+SW., Washington, DC. This document may also be purchased from the 
+Commission's duplicating contractors, Best Copy and Printing, Inc., 445 
+12th Street, SW., Room CY-B402, Washington, DC 20554, telephone 1-800-
+378-3160 or http://www.BCPIWEB.com.
+
+    This document is not subject to the Congressional Review Act. (The 
+Commission, is, therefore, not required to submit a copy of this Report 
+and Order to GAO, pursuant to the Congressional Review Act, see 5 
+U.S.C. 801(a)(1)(A) since this proposed rule is dismissed, herein.)
+
+Federal Communications Commission.
+John A. Karousos,
+Assistant Chief, Audio Division, Media Bureau.
+[FR Doc. 05-18026 Filed 9-13-05; 8:45 am]
+
+BILLING CODE 6712-01-P
+
+ + \ No newline at end of file diff --git a/office/regression/000_000077.html b/office/regression/000_000077.html new file mode 100644 index 0000000..e5d8abe --- /dev/null +++ b/office/regression/000_000077.html @@ -0,0 +1,597 @@ + + +1997 Economic Census: ZIP Code Statistics + - 98589 + + + + + +U.S. Census Bureau + + + + + + + + + + + + +
+1997 Economic Census main page1997 Economic Census: +
ZIP Code Statistics +
98589 + 
  (Tenino, WA) +
+
+ + + +
+
+ + + +
+
+ + + +
+ + + + +
+ + + +Introductory text includes scope and methodology. +Establishment counts are available in more industry detail on CD-ROM. +Table includes only establishments with payroll. +For descriptions of column headings and rows (industries), click on the appropriate underlined element in the table. +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+NAICS
code
Description +Estab-
lish-
ments
+Sales or
receipts
($1,000)
+Annual
payroll
($1,000)
+Paid
employees
+21 +Mining (not published for ZIP Codes) N + N + N + N +
+22 +Utilities (not published for ZIP Codes) N + N + N + N +
+23 +Construction (not published for ZIP Codes) N + N + N + N +
+31-33 +Manufacturing 3 + M + M + M +
+42 +Wholesale trade (not published for ZIP Codes) N + N + N + N +
+44-45 +Retail trade 12 + 10m-24999 + 1000-2499 + 50-99 +
+48-49 +Transportation & warehousing (not published for ZIP Codes) N + N + N + N +
+51 +Information (not published for ZIP Codes) N + N + N + N +
+52 +Finance & insurance (not published for ZIP Codes) N + N + N + N +
+53 +Real estate & rental & leasing (not published for ZIP Codes) N + N + N + N +
+54 +Professional, scientific, & technical servicesTaxable 3 + 250-499 + 250-500 + 5-9 +
+55 +Management of companies & enterprises (not published for ZIP Codes) N + N + N + N +
+56 +Administrative & support & waste management &remediation services 1 + 50-99 + under 10 + 1-4 +
+61 +Educational servicesTaxable 0 + N + N + N +
+62 +Health care & social assistanceTaxable 4 + 1000-2499 + 250-500 + 10-19 +
+71 +Arts, entertainment, & recreationTaxable 1 + 10-24 + 10-24 + 0 +
+72 +Accommodation & foodservices 7 + 1000-2499 + 250-500 + 50-99 +
+81 +Other services (except public administration)Taxable 5 + 250-499 + 100-249 + 5-9 +
+   +Auxiliaries (not published for ZIP Codes) N + N + N + N +
+ + + +N = Not available;   M = Not published for Manufacturing;   where ranges are shown, k = thousands, m = millions (sales and payroll figures +are already in thousands) + +
+ +

+ + + + + + + + + + +
Establishments by ZIP Code by detailed industry by size class:Census 2000 by ZCTA:
+1997 Economic Census on CD-ROM +ZIP Code Business Patterns (annual) +Map + +Demographic Profile +
+ +
+ +
+Source: 1997 Economic Census + + +

Last modified: 10/23/01 +  + +Questions? + +
+

+ + + + + + + + + + diff --git a/office/regression/000_000078.html b/office/regression/000_000078.html new file mode 100644 index 0000000..06ea3ad --- /dev/null +++ b/office/regression/000_000078.html @@ -0,0 +1,47 @@ + + + +News Release, U.S. Bureau of Reclamation, PN Region + +
+

+August 13, 2001
+John Redding
+(208) 378-5212
+Bill Brooks
+(541) 536-8059
+ + +
+
+ +
+

Temporary Road Closures Near Wickiup Dam +

Bureau of Reclamation officials are urging residents and visitors who utilize U.S. Forest Service roads near Wickiup Dam to plan for alternate routes. Several USFS roads in the vicinity of Wickiup Dam will be closed from August 20 through October 6, 2003. + +

The closures are necessary during the safety of dams repair work at Wickiup Dam where heavy equipment will travel to and from the construction site. Plans should be made to use alternative routes during this time period (see map). + +

Forest Service roads 860, 920, and 600 from Highway 44 to Forest Service Road 690, and 600 from the Tenino boat ramp to the dam will be closed except for emergency access. Recreation traffic accessing the Tenino boat ramp on the south side of the Deschutes River should use Forest Service Road 690 to the open segment of 600 and on to the boat ramp. + +

Access to the north borrow area will be along Forest Service Roads 4380 to 900 and then to 915. Flaggers and traffic controls will be used during peak hauling periods to control traffic on the open segment of Forest Service Road 4380, roads 900 and 915 will be closed. Recreation traffic to the Wickiup Butte Campground and boat ramp can use Forest Service Road 4260 on the crest of the dam. Forest Service Road 4370 below the dam along the north side of the Deschutes River will also remain open to the public. + +

Wickiup Dam, is being upgraded to meet current seismic standards. Wickiup Dam, part of the Deschutes Project, provides 200,000 acre-feet of storage for irrigation to 50,000 acres within the North Unit Irrigation District. North Unit Irrigation District operates and maintains the dam which is owned by Reclamation. + +

For more information on the road closures, contact the U.S. Bureau of Reclamation Wickiup Dam Field Office, telephone (541) 536-8059, or the Bend Field Office at (541) 389-0233. + +

+
+- DOI -
+ + + +Visit our web site at http://www.pn.usbr.gov
+ + + diff --git a/office/regression/000_000079.html b/office/regression/000_000079.html new file mode 100644 index 0000000..4b6edbc --- /dev/null +++ b/office/regression/000_000079.html @@ -0,0 +1,296 @@ + + + + + +A Prairie Preserved (May 11, 2005) | NRCS This Week | NRCS + + + + + + + + + + +
+ + + + + + + + + + + +
+ + United States Department of Agriculture
+ + Natural Resources Conservation Service
+ + + Go to Accessibility Information
+ + Skip to Page Content
+
+ +
+ + + + + + + + +
+ + + + + + + +
+ + + + + +
+
+
+ + +


+

+ + + +
+


+NRCS This Week mast head
+
+A Prairie Preserved

+ +
The Colvin Ranch Is the First in Washington to +Participate in the Grassland Reserve Program
+ + + + + +
+

+ + driving the family tractor, Tenino area landowner Fred Colvin takes a tour group through the wild camas and buttercups that will be preserved as a native prairie through the Grassland Reserve Program -- photo by Steve Bloom/The Olympian
+
+ driving the family tractor, Tenino area landowner + Fred Colvin takes a tour group through the wild camas and buttercups that + will be preserved as a native prairie through the Grassland Reserve + Program -- photo by Steve Bloom/The Olympian

+ +

"Right now the prairie is as pretty as it can be," Fred Colvin said Thursday +before becoming the first Washington landowner to sign his land into the +Grassland Reserve Program.
+
+Colvin's signature on Thursday ensured his descendants will also be able to look +out on the prairie, rather than a housing development or a field taken over by +non-native Scotch broom.
+
+It might have been easier for the pioneering Colvins to take the beauty of the +prairie for granted than his descendants. After all, there were once an +estimated quarter-million acres of prairie in Western Washington. Today, the 216 +acres on the Colvin ranch just west of Tenino, signed into the GRP, are among +about 3,000 acres of prairie that remain. Several thousand more acres are +preserved on Fort Lewis.
+
+Land remains usable
+
+The voluntary Grassland Reserve Program pays landowners to protect and restore +grasslands while allowing them to continue using the land to graze their cattle.
+
+For Fred Colvin, the ability to continue using the land was what sold him on +signing up.
+
+"This program recognizes the importance of private ownership and working lands," +said Colvin, who has 100 cattle on the ranch, as well as another 120 yearlings +for part of the year.
+
+Those cattle will be key in controlling the non-native grasses that, unchecked, +would take over the native plants on the prairie, according to Marty Chaney, an +agronomist for the National Resources Conservation Service, which administers +the program. In a normal prairie ecosystem, fire is a key element in maintaining +the balance of prairie plants.
+
+That's not an option in Thurston County, where those controlled burns are not +allowed. Herbicides and mowing don't work well either.
+
+That means the job falls to the cattle.
+
+By allowing them to graze parts of the prairie only at certain times of the +year, the cows eat the non-native grasses without disturbing the prairie plants.
+
+For example, many native prairie plants go dormant in the summer. The cattle +grazing during those times will eat non-native grasses without damaging the +natives.
+
+What the cows prefer
+
+The cows actually prefer to eat grasses rather than flowers and, in the grass +category, they prefer the softer, non-native grasses to those of the native +prairie, Chaney said.
+
+Those facts, combined with careful monitoring and movement of the cattle onto +different portions of the ranch, will be the prairie's chief allies.
+
+"Those cows, they're a conservation tool," Colvin said. "That's a shift in +thought to what we thought previously."
+
+To control where the cattle graze, Colvin has divided up the prairie into about +30 fields, set off with fencing. He worked with NRCS staff to develop a grazing +plan, which takes several factors into consideration in deciding which field is +ready to be grazed. For example, lower fields that are soaked from rains will be +off-limits to cattle.
+
+The adversaries of the remaining prairies in Western Washington are primarily +development and non-native plants.
+
+Doris Colvin, Fred's mother, said people often ask her about their plans for the +land.
+
+"They ask me so many times, 'you're not going to develop that land, are you?' "
+
+The answer has always, and always will be, a definite no.
+
+Fred Colvin said he saw the urgency of protecting the land about three years ago +when a housing development was proposed across the highway.
+
+"We were concerned about what was going on around us," he said.
+
+Gus Hughbanks, a state conservationist with NRCS, said there's not a lot of +funding available through the GRP program, but that it's important for +interested landowners to sign up so their land can be evaluated. The projects +will be accepted based on their land's biodiversity and whatever specific +threats the land faces.
+(story by Barry Gintar, The Olympian)
+Your contact is Ron Nichols, NRCS +public affairs specialist, at 509-323-2912.

+ +
 
+ +


+
+

+ + +
\ No newline at end of file diff --git a/office/regression/000_000080.html b/office/regression/000_000080.html new file mode 100644 index 0000000..344beb8 --- /dev/null +++ b/office/regression/000_000080.html @@ -0,0 +1,16 @@ + + + +MESOWEST STATION INTERFACE + + + + + + + + + + + + diff --git a/office/regression/000_000081.txt b/office/regression/000_000081.txt new file mode 100644 index 0000000..61fd6de --- /dev/null +++ b/office/regression/000_000081.txt @@ -0,0 +1,139 @@ + + *Pages 1--4 from Microsoft Word - 48428.doc* + Federal Communications Commission DA 05- 1311 + Before the Federal Communications Commission + Washington, D. C. 20554 + + + In the Matter of + Amendment of Section 73. 202( b) Table of Allotments, + FM Broadcast Stations. (Tenino, Washington) + + + ) ) + ) ) + ) ) + ) + + + MB Docket No. 05- 185 RM- 11236 + + + NOTICE OF PROPOSED RULE MAKING + Adopted: May 4, 2005 Released: May 6, 2005 + Comment Date: June 27, 2005 Reply Comment Date: July 12, 2005 + + + By the Assistant Chief, Audio Division, Media Bureau: + 1. The Audio Division has before it a Petition for Rule Making filed by Dr. Sandra L. Woodruff ( Petitioner), proposing the allotment of Channel 229C3 to Tenino, Washington, as its first local + aural transmission service. Petitioner states that she will file an application for Channel 229C3 at Tenino, if allotted. 1 + + + 2. Petitioner states that Tenino, Washington is an incorporated city with a 2000 U. S. Census population of 1,447 persons. Tenino is governed by a five member city council under an elected mayor + according to Petitioner. Additionally, Tenino has its own post office and zip code of 98589. Petitioner also states that Tenino has an active business community, a number of local churches, the Tenino School District + 402, and is served by the Tenino/ Bucoda Police Department and the Tenino Fire Department. + 3. The proposal to allot Channel 229C3 at Tenino warrants consideration because it would provide first local service to the community. 2 A staff engineering analysis indicates that Channel 229C3 can + be allotted to Tenino consistent with the minimum distance separation requirements of the Commissions rules at reference coordinates located at 46- 51- 22 North Latitude and 122- 52- 30 West Longitude with a site + restriction of 1.9 kilometers (1.1 miles) west of the community. Because the reference coordinates for Channel 229C3 at Tenino, Washington are located within 320 kilometers (200 miles) of the U. S.- Canadian + border, Canadian concurrence has been requested. + + + 1 We note that subsequent to the December 14, 2004, filing of the instant proposal, an Auction 37 application for a + new construction permit on Channel 228A at Ocean Shores, Washington (File No. BNPH- 20041228AAT) was filed on December 28, 2004, and granted on March 25, 2005 pursuant to 47 C. F. R. 73.215. + + + 2 The proposed Tenino allotment is short spaced to Channel 229C, Station KPDQ- FM at Portland, Oregon. Channel + 230C2 was substituted for Channel 299C, and KPDQ- FMs license was modified to reflect the channel change, pursuant to a Report and Order issued in MB Docket 02- 136. See Arlington, et al., 19 FCC Rcd 12803 (MB 2004). + + + Although that Report and Order has become effective, the decision in that docket is not yet final because an Application for Review and a Petition for Reconsideration remain pending. We caution parties that if we grant the + instant proposal to allot Channel 229C3 at Tenino, Washington, the grant will be subject to the final outcome of MB Docket No. 02- 136. See Auburn, Alabama, et al., 18 FCC Rcd 10333 (MB 2003). +1 + Federal Communications Commission DA 05- 1311 + 2 + 4. Accordingly, we seek comment on the proposed amendment of the FM Table of Allotments, Section 73.202( b), 3 as follows: + Community Present Proposed + Tenino, Washington --- 229C3 + 5. The Commissions authority to institute rule making proceedings, showings required, cut- off procedures, and filing requirements are contained in the attached Appendix and are incorporated by reference + herein. In particular, we note that a showing of continuing interest is required in paragraph 2 of the Appendix before a channel will be allotted. + + + 6. Pursuant to Sections 1.415 and 1.419, 4 interested parties may file comments on or before June 27, 2005, and reply comments on or before July 12, 2005, and are advised to read the Appendix for + the proper procedures. Comments should be filed with the Federal Communications Commission, Office of the Secretary, 445 Twelfth Street, SW, TW- A325, Washington, D. C. 20554. Additionally, a copy of + such comments should be served on Petitioner, as follows: + Dr. Sandra L. Woodruff 2708 Hampton Ct. SE + Olympia, WA 98501 + 7. Parties must file an original and four copies of each filing. Filings can be sent by hand or messenger delivery, by commercial overnight courier, or by first- class or overnight U. S. Postal Service + mail (although we continue to experience delays in receiving U. S. Postal Service mail). The Commissions contractor, Natek, Inc., will receive hand- delivered or messenger- delivered paper filings + for the Commissions Secretary at 236 Massachusetts Avenue, N. E., Suite 110, Washington, D. C. 20002. The filing hours at this location are 8: 00 a. m. to 7: 00 p. m. All hand deliveries must be held together with + rubber bands or fasteners. Any envelopes must be disposed of before entering the building. Commercial overnight mail (other than U. S. Postal Service Express Mail or Priority Mail) must be sent to 9300 East + Hampton Drive, Capitol Heights, MD 20743. U. S. Postal Service first- class mail, Express Mail, and Priority Mail should be addressed to 445 12 th Street, SW, Washington, D. C. 20554. All filings must be + addressed to Marlene H. Dortch, Secretary, Federal Communications Commission, Office of the Secretary. Any filing that is not addressed to the Office of the Secretary will be treated as filed on + the day it is received in the Office of the Secretary. See 47 C. F. R. Section 1.7. Accordingly, failure to follow the specified requirements may result in the treatment of a filing as untimely. + + + 8. The Commission has determined that the relevant provisions of the Regulatory Flexibility Act of 1980 do not apply to a rule making proceeding to amend the FM Table of Allotments, Section + 73.202( b). 5 This document does not contain proposed information collection requirements subject to the Paperwork Reduction Act of 1995, Public Law 104- 13. In addition, therefore, it does not contain any + proposed information collection burden for small business concerns with fewer than 25 employees, + + + 3 47 C. F. R. 73.202( b). + 4 47 C. F. R. 1.415 and 1. 419. + 5 See Certification that Section 603 and 604 of the Regulatory Flexibility Act Do Not Apply to Rule Making to + Amend Sections 73. 202( b), 73. 504 and 73.606( b) of the Commissions Rules, 46 FR 11549 (Feb. 9, 1981). +2 + Federal Communications Commission DA 05- 1311 + 3 + pursuant to the Small Business Paperwork Relief Act of 2002, Public Law 107- 198, see Section 3506( c)( 4). 6 + 9. For further information concerning a proceeding listed above, contact Helen McLean, Media Bureau (202) 418- 2738. For purposes of this restricted notice and comment rule making + proceeding, members of the public are advised that no ex parte presentations are permitted from the time the Commission adopts a Notice of Proposed Rule Making until the proceeding has been decided and + such decision in the applicable docket is no longer subject to reconsideration by the Commission or review by any court. An ex parte presentation is not prohibited if specifically requested by the + Commission or staff for the clarification or adduction of evidence or resolution of issues in the proceeding. However, any new written information elicited from such a request or any summary of any + new information shall be served by the person making the presentation upon the other parties to the proceeding in particular docket unless the Commission specifically waives this service requirement. Any + comment which has not been served on the petitioner constitutes an ex parte presentation and shall not be considered in the proceeding. Any reply comment which has not been served on the person( s) who filed + the comment, to which the reply is directed, constitutes an ex parte presentation and shall not be considered in the proceeding. + + + FEDERAL COMMUNICATIONS COMMISSION + + + John A. Karousos Assistant Chief + Audio Division Media Bureau + + + Attachment: Appendix + + + 6 44 U. S. C. 3506( c)( 4). +3 + Federal Communications Commission DA 05- 1311 + 4 + APPENDIX + 1. Pursuant to authority found in 47 U. S. C. Sections 4( i), 5( c)( 1), 303( g) and (r), and 307( b), and 47 C. F. R. Sections 0.61, 0.204( b) and 0.283, IT IS PROPOSED TO AMEND the FM Table + of Allotments, 47 C. F. R. Section 73.202( b), as set forth in the Notice of Proposed Rule Making to which this Appendix is attached. + + + 2. Showings Required. Comments are invited on the proposal( s) discussed in the Notice of Proposed Rule Making to which this Appendix is attached. Proponent( s) will be expected to answer + whatever questions are presented in initial comments. The proponent of a proposed allotment is also expected to file comments even if it only resubmits or incorporates by reference its former pleadings. It + should also restate its present intention to apply for the channel if it is allotted and, if authorized, to build a station promptly. Failure to file may lead to denial of the request. + + + 3. Cut- off protection. The following procedures will govern the consideration of filings in this proceeding: + (a) Counterproposals advanced in this proceeding itself will be considered, if advanced in initial comments, so that parties may comment on them in reply comments. They will not be + considered if advanced in reply comments (see 47 C. F. R. Section 1.420( d).) + (b) Petitions for rule making which conflict with the proposals in this Notice will be considered as comments in the proceeding, and Public Notice to this effect will be given as long + as they are filed before the date for filing initial comments herein. If they are filed later than that, they will not be considered in connection with the decision in this docket. + + + (c) The filing of a counterproposal may lead the Commission to allot a different channel than was requested for any of the communities involved. + 4. Comments and Reply Comments; service. Pursuant to applicable procedures set out in 47 C. F. R. Sections 1.415 and 1.420, interested parties may file comments and reply comments on or + before the dates set forth in the Notice of Proposed Rule Making to which this Appendix is attached. All submissions by parties to this proceeding or by persons acting on behalf of such parties must be made in + written comments, reply comments, or other appropriate pleadings. The person filing the comments shall serve comments on the petitioners. Reply comments shall be served on the person( s) who filed comments + to which the reply is directed. A certificate of service shall accompany such comments and reply comments (see 47 C. F. R. Section 1.420( a), (b) and (c).) Comments should be filed with the Secretary, + Federal Communications Commission, Washington, D. C. 20554. + 5. Number of Copies. In accordance with the provisions of 47 C. F. R. Section 1.420, an original and four copies of all comments, reply comments, pleadings, briefs, or other documents shall be + furnished the Commission. + 6. Public Inspection of Filings. All filings made in this proceeding will be available for examination by interested parties during regular business hours in the Commission's Reference + Information Center, at its headquarters, 445 12th Street, S. W., Washington, D. C. +4 + diff --git a/office/regression/000_000082.txt b/office/regression/000_000082.txt new file mode 100644 index 0000000..a2ab801 --- /dev/null +++ b/office/regression/000_000082.txt @@ -0,0 +1,56 @@ + + *Pages 1--2 from Microsoft Word - 51195.doc* + Federal Communications Commission DA 05- 2340 + Before the Federal Communications Commission + Washington, D. C. 20554 + + + In the matter of + Amendment of Section 73. 202( b) FM Table of Allotments, + FM Broadcast Stations. (Tenino, Washington) + + + ) ) + ) ) + ) ) + ) + + + MB Docket No. 05- 185 RM- 11236 + + + REPORT AND ORDER (Proceeding Terminated) + Adopted: August 24, 2005 Released: August 26, 2005 + By the Assistant Chief, Audio Division, Media Bureau: + 1. The Audio Division has before it a Notice of Proposed Rulemaking 1 issued at the request of Dr. Sandra L. Woodruff ( Petitioner) requesting the allotment of Channel 229C3 at Tenino, + Washington, as the communitys first local service. Petitioner did not file comments reiterating her continuing interest in applying for Channel 229C3 at Tenino. 2 No other comments or counterproposals + were received. + 2. As stated in the Notice, a showing of continuing interest is required before a channel will be allotted. It is the Commissions policy to refrain from making an allotment to a community absent an + + + expression of interest. Therefore, since no such continuing interest has been expressed for an allotment at Tenino, Washington, we will dismiss Petitioners proposal. + + + 3. This document is not subject to the Congressional Review Act. (The Commission, is, therefore, not required to submit a copy of this Report and Order to Government Accountability Office, + pursuant to the Congressional Review Act, see 5 U. S. C. Section 801( a)( 1)( A) since this proposed rule is dismissed, herein.) + + + 4. In view of the above, IT IS ORDERED That the Petition for Rule Making filed by Dr. Sandra L. Woodruff (RM- 11236), requesting the allotment of Channel 229C3 at Tenino, Washington, IS + DISMISSED. + 5. IT IS FURTHER ORDERED, That this proceeding IS TERMINATED. + + + 1 See Tenino, Washington, 20 FCC Rcd 8835 (MB 2005). + 2 The proposed reference coordinates were 46- 51- 22 NL and 122- 52- 30 WL with a site restriction of 1. 9 kilometers + (1.1 miles) west of Tenino. +1 + Federal Communications Commission DA 05- 2340 + 2 + 6. For further information concerning this proceeding, contact Helen McLean, Media Bureau, (202) 418- 2738. + FEDERAL COMMUNICATIONS COMMISSION + + + John A. Karousos Assistant Chief + Audio Division Media Bureau +2 + diff --git a/office/regression/000_000084.txt b/office/regression/000_000084.txt new file mode 100644 index 0000000..b6df613 --- /dev/null +++ b/office/regression/000_000084.txt @@ -0,0 +1,16 @@ +From: Diane Dolstad [ddolstad@hotmail.com] +Sent: Tuesday, August 12, 2003 9:28 PM +To: rule-comments@sec.gov +Subject: S7-14-03 + +I am a stockholder who supports your new proposal, S7-14-03, on diclosure of +how directors are selected. I want to know so I can invest wisely. Thank +you + +K Diane Dolstad +4705 Old Military Rd +Tenino WA 98589 + +_________________________________________________________________ +Tired of spam? Get advanced junk mail protection with MSN 8. +http://join.msn.com/?page=features/junkmail diff --git a/office/regression/000_000085.txt b/office/regression/000_000085.txt new file mode 100644 index 0000000..e2f07aa --- /dev/null +++ b/office/regression/000_000085.txt @@ -0,0 +1,15 @@ +60 MEANS OF COMMUNICATION. +most part a fine agricultural country in Whitman and Stevens Counties, W. T., and also richly timbered and mining region in Kootenai County, Idaho, rendering them available to settlers and industrial enterprise. +2. Pacific Division of the same railroad, extending from Kalama, on the Columbia river, to Tacoma, on Puget Sound, (1(:5 miles), with a branch line (30 miles) to the coal regions of Wilkeson and Carbonado. This road passes through a most interesting pirt of Washington Territory. +3. A short narrow gauge railroad from Olympia to Tenino, on the line of the Pacific Division of the Northern Pacific Railroad. +4. The Oregon and California Railroad (East Side Division), from East Portland to Roseburg, in the Umpqua Valley, a distance of two hundred miles. The road follows the east side bf the Willamette and touches all the principal towns in the valley. Its extension to the California line is now in progress. From Roseburg a well managed stage line runs to Redding, in the Sacramento Valley (180 miles), the present northern terminus of the California railroad system. +5. The Oregon and California Railroad (West Side Division), beginning at Portland, within the city limits, and following the west side of the Willamette river. Passing westwardly through Washington County, it then turns to the south and ends at Corvallis (97 miles). This line.will be extended to Junction City, some miles further, to unite with the Oregon and California Railroad, and eventually, also, in a northwest direction to Astoria, at the mouth of the Columbia river. +6. The Oregon Railway Company, limited, a narrow gauge road, also traverses the most fertile lands of the Willamette Valley, on both sides of the river. This line flanks the Oregon and California Railroad. It begins at Coburg 120 miles from Portland, on the east side of the river and skirts the foot hills, running north until it approaches Ray's Landing. It continues its course on the west side of the valley, running south to Airlie, a distance of 37 miles, with a branch of 7 miles to Sheridan. This line has been leased to the Oregon Railway and Navigation Company. +7. Tle Oregon Railway and Navigation Company's Railroad. A standard gauge line, fully equipped, running from Portland mainly through the valley ot the Columbia river, by way of The Dalles, to Wallula, thence to Walla Walla and Dayton, with a branch from Bolles' Junction to Texas Ferry, on the Snake river. There is also a narrow-gauge branch from Whitman, near Walla Walla, to Blue Mountain Station, near Weston, in Oregon. +8. The ocean steamship lines of the same company, being a fleet of first-class passenger and freight steamships, making regular trips every five days between San Francisco and Portland, as well as forming a line between San Francisco, British Columbia, the ports on Puget Sound and Alaska. +9. A fleet of 30 river steamboats and barges, plying daily on the Lower, Middle and Upper Columbia and Snake and Willamette rivers, traversing the last named river to the head of its navigable waters; together with the steamboats and facilities formerly owned by the Willamette Locks and Transportation Company. +10. The fleet of four new iron steam colliers, comprising the Mississippi, the Umatilla, the Willamette and the Walla Walla, which make frequent trips between Seattle and San Francisco. +Appended are the routes of travel which now radiate from Portland, with the mileage in operation: + + + diff --git a/office/regression/000_000086.txt b/office/regression/000_000086.txt new file mode 100644 index 0000000..7d52bfa --- /dev/null +++ b/office/regression/000_000086.txt @@ -0,0 +1,320 @@ +Time,F-Scale,Location,County,State,Lat,Lon,Comments +1944,UNK,MELBOURNE,HARRISON,MO,40.15,-93.78,BRIEF TORNADO TOUCHDOWN ALONG THE GRUNDY-HARRISON COUNTY LINE NEAR MELBOURNE (EAX) +1954,UNK,4 W TRENTON,GRUNDY,MO,40.08,-93.68,TORNADO TOUCHDOWN AT 146 AND 128 HIGHWAY 4 MILES WEST OF TRENTON (EAX) +2002,UNK,2 S MELBOURNE,DAVIESS,MO,40.12,-93.78,(EAX) +2007,UNK,1 N CHAMPION,NOLAN,TX,32.37,-100.62,NWS SURVEY TEAM CONFIRMED TORNADO DAMAGE EXTENDING FROM NEAR CHAMPION TO ABOUT 3 MILES EAST OF CHAMPION. THIS TORNADO WAS ON THE GROUND FOR 2.8 MILES AND WAS 75 YARDS W (SJT) +2020,UNK,3 SW SWEETWATER,NOLAN,TX,32.44,-100.44,(SJT) +2037,UNK,1 E MERKEL,TAYLOR,TX,32.47,-100.01,NUMEROUS EYEWITNESS REPORTS TORNADO MOVED ACROSS THE EAST SIDE OF MERKEL NEAR THE BIG COUNTRY TRUCK STOP. NWS SURVEY TEAM DID NOTE SOME DAMAGE THAT WOULD HAVE BEEN CONS (SJT) +2200,UNK,4 WSW TENINO,THURSTON,WA,46.84,-122.93,WIND ESTIMATED AT 90 TO 100 MPH. PATH LENGTH 0.2 MILES AND ON GROUND APPROXIMATELY 1 MINUTE. MAXIMUM WIDTH 75 YARDS. BARN HEAVILY DAMAGED WITH LOSS OF PART OF THE ROOF,(SEW) +2220,UNK,LYONS,GREENE,IN,38.99,-87.08,(IND) +2225,UNK,LYONS,GREENE,IN,38.99,-87.08,(IND) +2233,UNK,10 ESE PETERSBURG,PIKE,IN,38.44,-87.11,FUNNEL CLOUD BRIEFLY TOUCHED DOWN IN A FIELD AND WENT BACK UP QUICKLY JUST SOUTH OF OTWELL...NEAR THE INTERSECTION OF S.R. 56 AND C.R. 725. (PAH) +2245,UNK,10 S WASHINGTON COURT H,FAYETTE,OH,39.39,-83.43,BARN/GARAGE WITH SUBSTANTIAL DAMAGE. (ILN) +2250,UNK,3 NE GREENFIELD,ROSS,OH,39.38,-83.35,25 YARDS WIDE. PATH LENGTH 1/2 MILE. (ILN) +2330,UNK,ORGAN SPRINGS,WASHINGTON,IN,38.48,-86.17,CONFIRMED TORNADO TOUCHDOWN NEAR ORGAN SPRINGS...BECKSMILL ROAD...MOVING EAST. (LMK) +2330,UNK,LIVONIA,WASHINGTON,IN,38.56,-86.28,LIKELY TORNADO DAMAGE IN AREA. (LMK) +2330,UNK,2 NE LA CENTER,CLARK,WA,45.89,-122.64,TORE 1.5 FT TREE OUT BY ROOTS. TORE OFF PART OF A BARN ROOF. MOVED A 50 GAL DRUM ACROSS YARD. EXTENSIVE SMALL TREE BRANCHES DOWNED (PQR) +2335,UNK,ROSEBUD,WASHINGTON,IN,38.53,-86.22,LIKELY TORNADO DAMAGE IN AREA. (LMK) +2345,UNK,7 WNW DEL RIO,VAL VERDE,TX,29.38,-100.9,TORNADO REPORTED JUST SOUTH OF AMISTAD DAM NEAR VEGA BY VAL VERDE COUNTY SHERIFF (SAT) +2345,UNK,JONESBURG,MONTGOMERY,MO,38.85,-91.31,TORNADO IN JONESBURG REPORTED BY FIRE DEPARTMENT. (LSX) +0002,UNK,BORDEN,CLARK,IN,38.47,-85.95,DAMAGE CONSISTENT WITH A TORNADO TOUCHDOWN. SHREDDED TREES,WITH TREES DOWN IN VARIOUS DIRECTIONS,DAMAGE TO STRUCTURES. (LMK) +0009,UNK,LAUGHLIN AFB,VAL VERDE,TX,29.36,-100.78,LAUGHLIN AFB KDLF OBSERVATION AT 0009 UTC...TORNADO NO. 1. TORNADO NO. 2 REPORTED IN PREVIOUS LSR AT 0018 UTC. (SAT) +0018,UNK,LAUGHLIN AFB,VAL VERDE,TX,29.36,-100.78,REPORTED IN LAUGHLIN AFB KDLF OBSERVATION AT 0018 UTC (SAT) +0030,UNK,13 WNW BRACKETTVILLE,KINNEY,TX,29.39,-100.61,REPORTED BY VAL VERDE COUNTY SHERIFF ENROUTE TO DEL RIO FROM SAN ANTONIO. SAME TORNADOES AS REPORTED FROM LAUGHLIN AFB. ONE ON THE NORTH SIDE OF U.S. 90...ONE ON THE SO (SAT) +0035,UNK,4 NW MOUNT ORAB,BROWN,OH,39.07,-83.98,PORTION OF ROOF OF TWO STORY HOME PEELED OFF. (ILN) +0055,UNK,EMINENCE,HENRY,KY,38.37,-85.17,NUMEROUS REPORTS OF HOMES DAMAGED WITH SOME PEOLPE TRAPPED....NO INJURIES REPORTED AT THIS TIME. (LMK) +0055,UNK,GREENVILLE,FLOYD,IN,38.37,-85.98,POSSIBLE TORNADO TOUCHDOWN IN THE AREA,NOT CONFIRMED AS OF THIS TIME. EXTENSIVE DAMAGE IN THE AREA. (LMK) +0058,UNK,ARNOLD,JEFFERSON,MO,38.43,-90.37,TORNADO ON THE GROUND 5 MILES SOUTH OF 141 AND 55 INTERCHANGE...NEAR ARNOLD. (LSX) +0130,UNK,1 SE DE SOTO,JEFFERSON,MO,38.13,-90.55,PUBLIC REPORTED POSSIBLE TORNADO ON THE GROUND SOUTHEAST OF DESOTO. (LSX) +0139,UNK,6 NW GEORGETOWN,SCOTT,KY,38.27,-84.63,POSSIBLE TORNADO TOUCHDOWN IN MALLARD POINT. (LMK) +0230,UNK,LEXINGTON,FAYETTE,KY,38.04,-84.46,POSSIBLE TORNADO TOUCHDOWN AT LEESTOWN ROAD AND NEW CIRCLE AND VERSAILES ROAD AT NEW CIRCLE. REPORTS OF DAMAGE TO TREES AND HOMES. (LMK) +Time,Speed,Location,County,State,Lat,Lon,Comments +1725,UNK,3 WNW SHENANDOAH,FREMONT,IA,40.78,-95.42,COMBINATION OF MARBLE SIZED HAIL AND 60 MPH WINDS CAUSED CONSIDERABLE DAMAGE TO CORN AND SOYBEAN CROPS. (OAX) +1730,UNK,SHENANDOAH,PAGE,IA,40.76,-95.37,ESTIMATED 70 MPH WINDS TREES AND POWER LINES DOWN (OAX) +1817,UNK,2 NE HOPKINS,NODAWAY,MO,40.57,-94.79,1-3 INCH DIAMETER LIMBS DOWN. (EAX) +1818,70,5 SSW BEDFORD,TAYLOR,IA,40.6,-94.75,(DMX) +1855,70,GRANT CITY,WORTH,MO,40.49,-94.41,60 TO 70 MPH WINDS REPORTED (EAX) +1950,70,13 E STURGIS,MEADE,SD,44.41,-103.25,(UNR) +2008,80,TRENTON,GRUNDY,MO,40.08,-93.6,70 TO 80 MPH WINDS REPORTED (EAX) +2010,80,CHAMPION,NOLAN,TX,32.36,-100.62,LARGE TREES UPROOTED (SJT) +2020,80,1 S SWEETWATER,NOLAN,TX,32.45,-100.4,80 MPH WINDS IN COMBINATION WITH GOLFBALL SIZE HAIL PRODUCED CONSIDERABLE DAMAGE ON THE SOUTH SIDE OF SWEETWATER. (SJT) +2037,60,6 SSW BIG LAKE,REAGAN,TX,31.11,-101.5,LOCATED ON FARM ROAD 1676. (MAF) +2054,60,7 N MERKEL,JONES,TX,32.57,-100.01,(SJT) +2103,UNK,LYNN,RANDOLPH,IN,40.05,-84.94,SEVERAL TREES AND POLES DOWN (IND) +2109,60,BARNHART,IRION,TX,31.13,-101.17,(SJT) +2120,UNK,FIELDON,JERSEY,IL,39.11,-90.5,TREE DOWN ON ROUTE 16. (LSX) +2122,UNK,VERONA,PREBLE,OH,39.9,-84.49,LARGE TREE LIMBS DOWN (ILN) +2140,UNK,FIELDON,JERSEY,IL,39.11,-90.5,TREE ON ROUTE 16. (LSX) +2146,UNK,5 S MUNCIE,DELAWARE,IN,40.13,-85.39,HOUSE LOST ROOF IN COWAN. (IND) +2147,UNK,DUNKIRK,JAY,IN,40.37,-85.21,TREE REPORTED BLOWN OVER ONTO A VAN. (IWX) +2149,60,MODOC,RANDOLPH,IN,40.04,-85.13,(IND) +2150,60,3 E KETTERING,GREENE,OH,39.7,-84.09,(ILN) +2151,UNK,1 N OBLONG,CRAWFORD,IL,39.02,-87.91,SEVERAL TREES BLOWN DOWN NORTH OF OBLONG (ILX) +2155,60,COWDEN,SHELBY,IL,39.25,-88.86,REPORTED BY SHELBY COUNTY SHERIFF. (ILX) +2200,UNK,5 N EASTLAND,EASTLAND,TX,32.47,-98.82,TELEPHONE POLE KNOCKED DOWN (FTW) +2205,UNK,3 N NEWTON,JASPER,IL,39.03,-88.16,SEMI WITH BOX TRAILER WAS BLOWN OVER INTO A FIELD ON IL ROUTE 130 NORTH OF NEWTON. THE DRIVER WAS UNINJURED. (ILX) +2213,UNK,EFFINGHAM,EFFINGHAM,IL,39.12,-88.55,NUMEROUS TREES WERE BLOWN DOWN COUNTYWIDE. ALSO...SEVERAL CARS WERE BLOWN OFF THE ROAD ON INTERSTATE 57 BETWEEN EFFINGHAM AND EDGEWOOD. (ILX) +2215,UNK,3 NE WAYNESVILLE,WARREN,OH,39.56,-84.05,LARGE LIMBS DOWNED ON A PARK TRAIL (ILN) +2225,65,1 N BIBLE GROVE,CLAY,IL,38.88,-88.43,PUBLIC REPORT...VIA ESDA. (ILX) +2229,UNK,EFFINGHAM,EFFINGHAM,IL,39.12,-88.55,TREES DOWN COUNTYWIDE. REPORTED BY EFFINGHAM COUNTY ESDA. (ILX) +2230,UNK,SABINA,CLINTON,OH,39.49,-83.63,LARGE TREES AND WIRES DOWN (ILN) +2234,UNK,STE. MARIE,JASPER,IL,38.93,-88.03,CABLE TOWER FELL ON POWERLINES. REPORTED BY JASPER COUNTY SHERIFF. (ILX) +2235,UNK,PARIS,MONROE,MO,39.48,-92,STRUCTURAL DAMAGE TO GAS STATION. (LSX) +2240,60,5 S PALO PINTO,PALO PINTO,TX,32.7,-98.3,60 MPH GUST REPORTED AT LAKE PALO PINTO (FTW) +2242,60,CROSS PLAINS,CALLAHAN,TX,32.13,-99.17,(SJT) +2245,UNK,STURGEON,BOONE,MO,39.23,-92.28,POWER POLE BLOWN DOWN. (LSX) +2247,UNK,10 NW PAOLI,ORANGE,IN,38.66,-86.6,NUMEROUS TREES REPORTED DOWN BY PUBLIC. (LMK) +2252,UNK,SHIPMAN,MACOUPIN,IL,39.12,-90.05,NUMEROUS POWER LINES (LSX) +2300,70,MAY,BROWN,TX,31.98,-98.92,WINDS ESTIMATED AT 70 MPH DOWNED POWER POLES AND SNAPPED TREE BRANCHES (SJT) +2307,UNK,5 W BIRDS,LAWRENCE,IL,38.84,-87.76,GARAGE DAMAGE AND TREES DOWN (ILX) +2308,UNK,1 E INGAHAM,CLAY,IL,38.83,-88.31,ROOF BLOWN OFF A MOBILE HOME. (ILX) +2310,UNK,MILLSAP,PARKER,TX,32.75,-98.01,*** 2 INJ *** MOBILE HOME DESTROYED AT FM ROUTE 113,2 MINOR INJURIES (FTW) +2310,UNK,CHAMBERSBURG,ORANGE,IN,38.52,-86.38,NUMEROUS TREES AND POWER LINES DOWN. (LMK) +2312,UNK,VERONA,PREBLE,OH,39.9,-84.49,TREES DOWN ON REYNOLDS ROAD AND IN FRONT OF LOCAL FIRE DEPARTMENT (ILN) +2315,UNK,RIPLEY,JACKSON,WV,38.82,-81.71,SEVERAL TREES AND POWER LINES DOWN IN KENNA...FAIRPLAIN...GOLDTOWN. (RLX) +2317,UNK,WEATHERFORD,PARKER,TX,32.76,-97.77,POWER LINES AND TREES DOWNED FROM MILLSAP TO WEATHERFORD. (FTW) +2320,UNK,OLNEY,RICHLAND,IL,38.73,-88.09,TREES DOWN IN OLNEY. (ILX) +2330,UNK,10 N WASHINGTON,DAVIESS,IN,38.8,-87.17,TREES DOWNED NEAR PLAINVILLE. (IND) +2330,UNK,PALESTINE,WIRT,WV,39.03,-81.4,TREES DOWN COUNTYWIDE...ESPECIALLY ALONG STATE ROUTE 7 (RLX) +2330,UNK,8 SE BLOOMINGTON,MONROE,IN,39.08,-86.42,TREES DOWNED NEAR LAKE MONROE. (IND) +2330,UNK,SISTERSVILLE,TYLER,WV,39.56,-81,LARGE BRANCHES DOWN (RLX) +2335,UNK,DUBLIN,ERATH,TX,32.09,-98.34,POWER LINES AND TREES BLOWN DOWN (FTW) +2335,UNK,STEPHENVILLE,ERATH,TX,32.22,-98.22,POWER LINES AND TREES BLOWN DOWN (FTW) +2340,UNK,ORGAN SPRINGS,WASHINGTON,IN,38.48,-86.17,TREES AND POWER LINES DOWN. (LMK) +2345,UNK,4 S BELTON,CASS,MO,38.76,-94.53,SIDING DAMAGED ON HOUSE...LARGE TREE LIMBS DOWN...LARGE SATELLITE DISH MANGLED...2 BY 4 SUPPORTING BIRD HOUSE SNAPPED...BETWEEN 210 AND 211 BLOCK OF HIGHWAY Y. (EAX) +2345,UNK,6 NE ST. MARYS,TYLER,WV,39.46,-81.12,TREES DOWN IN THE SUGAR VALLEY AREA (RLX) +2346,UNK,JONESBURG,MONTGOMERY,MO,38.85,-91.31,NUMEROUS TREES DOWN...COULD BE RELATED TO PREVIOUSLY REPORTED TORNADO. (LSX) +2347,60,FARMLAND,RANDOLPH,IN,40.19,-85.13,(IND) +2350,UNK,5 N DEL RIO,VAL VERDE,TX,29.45,-100.9,RETIRED PARK SERVICE EMPOLYEE REPORTED 5 TELEPHONE POLES DOWN. (SAT) +2350,UNK,6 SE MIDDLEBOURNE,TYLER,WV,39.43,-80.83,TREES AND POWER LINES DOWN ON RT 18 SOUTH OF ALMA (RLX) +2358,UNK,GREENFIELD,HIGHLAND,OH,39.35,-83.39,ROOF OFF BARN (ILN) +5384,UNK,5 N ALVARADO,JOHNSON,TX,32.48,-97.21,*** 1 INJ *** NUMEROUS MANUFACTURED HOMES DAMAGED IN THE PLESANT POINT AREA NEAR FM 2738 AND COUNTY ROAD 608 (FTW) +0000,UNK,COVINGTON,KENTON,KY,39.04,-84.51,TREES DOWN COUNTYWIDE (ILN) +0000,UNK,5 S WASHINGTON COURT HO,FAYETTE,OH,39.47,-83.43,NUMEROUS TREES KNOCKED DOWN IN GOOD HOPE (ILN) +0001,72,2 W DEL RIO,VAL VERDE,TX,29.38,-100.93,KDRT ASOS G63KT AT 0000 UTC (SAT) +0005,UNK,DEL RIO,VAL VERDE,TX,29.38,-100.9,DEL RIO POLICE REPORT TREES DOWN IN CITY (SAT) +0006,70,CHARLESTOWN,CLARK,IN,38.45,-85.67,ESTIMATED WIND GUST TO 70 MPH. NUMEROUS TREES DOWN. (LMK) +0010,UNK,6 SE SHOALS,MARTIN,IN,38.61,-86.71,TREES DOWNED NEAR NATCHEZ. (IND) +0015,UNK,O'FALLON,ST. CHARLES,MO,38.78,-90.71,NUMEROUS TREES DOWN (LSX) +0015,UNK,WARSAW,GALLATIN,KY,38.79,-84.89,TREES DOWN COUNTYWIDE (ILN) +0015,UNK,6 SE SHELBYVILLE,SHELBY,IN,39.46,-85.7,SEVERAL TREES AND LIMBS DOWNED NEAR COUNTY ROAD 750 SOUTH AND RIVER ROAD. (IND) +0015,UNK,DANVILLE,MONTOUR,PA,40.96,-76.61,TREES/WIRES AND TELEPHONE POLE DOWN (CTP) +0016,65,O'FALLON,ST. CHARLES,MO,38.78,-90.71,HWY K AND INTERSTATE 70...3/4 INCH HAIL AND WIND GUST 65 MPH. (LSX) +0018,69,LAUGHLIN AFB,VAL VERDE,TX,29.36,-100.78,LAUGHLIN AFB KDLF OBSERVATION AT 0018 UTC (SAT) +0020,UNK,WILLIAMSBURG,CLERMONT,OH,39.05,-84.05,TREES DOWNED (ILN) +0025,60,1 N WOODSON TERRACE,ST. LOUIS,MO,38.74,-90.36,52KT/60MPH GUST AT LAMBERT FIELD. (LSX) +0025,UNK,PIKETON,PIKE,OH,39.07,-83,TWO TREES DOWNED (ILN) +0030,UNK,5 N ALVARADO,JOHNSON,TX,32.48,-97.21,*** 1 INJ *** THREE MOBILE HOMES DESTROYED IN THE LILLIAN AREA NEAR THE INTERSECTION OF FM ROAD 917 AND 2738. (FTW) +0030,UNK,DAYTON,MONTGOMERY,OH,39.78,-84.2,TREES AND POWER LINES DOWNED (ILN) +0038,60,3 S BURLESON,JOHNSON,TX,32.49,-97.33,60 MPH WIND GUST,STREET FLOODING REPORTED BY OFF DUTY LOYEE (FTW) +0042,UNK,LA GRANGE,OLDHAM,KY,38.4,-85.38,NUMEROUS TREES AND POWER LINES DOWN. (LMK) +0045,60,RAMSEY,HARRISON,IN,38.32,-86.15,(LMK) +0045,UNK,ST. LOUIS,ST. LOUIS CITY,MO,38.64,-90.24,PRELIMINARY REPORT...SEVERAL SMALL TREES BLOWN OVER IN CITY OF ST. LOUIS. (LSX) +0046,UNK,MASON,MASON,WV,39.02,-82.03,LARGE BRANCHES BROKEN OFF TOP OF TREES (RLX) +0054,UNK,6 W CEDAR HILL,FRANKLIN,MO,38.36,-90.75,LARGE TREES SNAPPED OFF NEAR TOPS. (LSX) +0100,UNK,CHESTNUT GROVE,SHELBY,KY,38.3,-85.27,NUMEROUS TREES DOWN IN THE AREA. (LMK) +0105,UNK,1 NW HIGH RIDGE,JEFFERSON,MO,38.47,-90.55,BOATS LIFTED OUT OF THE WATER. (LSX) +0105,UNK,SOUTH WEBSTER,SCIOTO,OH,38.82,-82.73,TWELVE TREES DOWNED (ILN) +0106,61,13 SSE KIMBERLY,TWIN FALLS,ID,42.36,-114.27,TRAIL GULCH RAWS 6000 FT MSL THUNDERSTORM WIND GUST. (BOI) +0110,UNK,OWENTON,OWEN,KY,38.54,-84.84,TREES DOWN COUNTYWIDE (ILN) +0110,UNK,4 SSW HACKER VALLEY,WEBSTER,WV,38.6,-80.41,LARGE LIMBS DOWN ON RT 20 ON HODAM MOUNTAIN (RLX) +0111,UNK,HILLSBORO,JEFFERSON,MO,38.23,-90.57,BUILDING COLLAPSED IN HILLSBORO...RELAYED BY JEFFERSON COUNTY 911. (LSX) +0117,60,DE SOTO,JEFFERSON,MO,38.14,-90.56,(LSX) +0121,UNK,3 W HOUSE SPRINGS,JEFFERSON,MO,38.42,-90.62,10 INCH DIAMETER TREES BLOWN OVER. (LSX) +0127,60,NEW ATHENS,ST. CLAIR,IL,38.32,-89.88,(LSX) +0129,UNK,LOUISVILLE,JEFFERSON,KY,38.22,-85.74,REPORTS OF NUMEROUS TREES AND POWERLINES DOWN ACROSS THE LOUISVILLE METRO AREA. (LMK) +0131,UNK,MONTEREY,OWEN,KY,38.42,-84.87,SEVERAL TREES AND LARGE LIMBS DOWNED ACROSS SOUTHERN PART OF THE COUNTY (ILN) +0138,UNK,RED BUD,RANDOLPH,IL,38.21,-90,2 FOOT DIAMETER PINE TREES SNAPPED. WIND ESTIMATED TO BE 60 MPH. (LSX) +0140,UNK,3 N GEORGETOWN,PERRY,IN,38,-86.57,SMALL BARN MOVED ACROSS A FIELD,IN THE SIMS PIKE AREA NORTH OF GEORGETOWN,NEAR DELAPLAIN. (LMK) +0140,UNK,3 N GEORGETOWN,SCOTT,KY,38.25,-84.55,SMALL BARN MOVED ACROSS A FIELD,IN THE SIMS PIKE AREA NORTH OF GEORGETOWN,NEAR DELAPLAIN. (LMK) +0150,UNK,FRANKFORT,FRANKLIN,KY,38.19,-84.87,NUMEROUS TREES DOWN. (LMK) +0155,UNK,ALBION,EDWARDS,IL,38.38,-88.06,NUMEROUS TREES AND POWER LINES DOWN MAINLY WEST OF ALBION. (PAH) +0215,UNK,VERSAILLES,WOODFORD,KY,38.05,-84.73,NUMEROUS TREES DOWN AND POWER LINES. (LMK) +0215,58,ATOMIC CITY,BUTTE,ID,43.44,-112.81,(PIH) +0220,UNK,OWENSVILLE,GIBSON,IN,38.27,-87.69,NUMEROUS TREES DOWN IN AND AROUND OWENSVILLE. (PAH) +0225,UNK,MACEDONIA,HAMILTON,IL,38.05,-88.7,TREE AND LIMBS...AND POWER LINE DOWN IN THE CITY. (PAH) +0225,UNK,WEBSTER SPRINGS,WEBSTER,WV,38.48,-80.41,LARGE BRANCHES DOWN ON ROAD (RLX) +0229,UNK,MURPHYSBORO,JACKSON,IL,37.77,-89.34,POWER LINES DOWN (PAH) +0230,65,CARTERVILLE,WILLIAMSON,IL,37.76,-89.08,NO DAMAGE YET EXCEPT FOR SOME TREE LIMBS (PAH) +0230,UNK,BENTON,FRANKLIN,IL,38.01,-88.92,NUMEROUS TREES AND POWER LINES DOWN (PAH) +0230,UNK,LEXINGTON,FAYETTE,KY,38.04,-84.46,ROOFING MATERIAL ON PARTS OF CITATION ROAD NEAR I-75 EXIT 115. (LMK) +0230,UNK,CYNTHIANA,HARRISON,KY,38.39,-84.3,TREES AND POWER LINES DOWN IN THE CITY. (LMK) +0235,UNK,VERSAILLES,WOODFORD,KY,38.05,-84.73,NUMEROUS TREES DOWN AND POWER LINES. (LMK) +0240,UNK,GALATIA,SALINE,IL,37.84,-88.61,NUMEROUS TREES BLOWN DOWN IN AND AROUND THE CITY OF GALATIA. (PAH) +0245,UNK,WINCHESTER,CLARK,KY,38,-84.19,TREES AND POWER LINES DOWN IN THE CITY. (LMK) +0245,UNK,CARMI,WHITE,IL,38.09,-88.17,NUMEROUS TREES DOWN ACROSS WHITE COUNTY. (PAH) +0255,UNK,RALEIGH,SALINE,IL,37.83,-88.53,NUMEROUS TREES BLOWN DOWN IN AND AROUND RALEIGH. (PAH) +0255,UNK,CHUBBUCK,BANNOCK,ID,42.92,-112.46,DOWN TREES AND POWER LINES AT INTERSECTION OF HAWTHORNE ROAD AND RESERVATION ROAD. (PIH) +0308,UNK,SIDEVIEW,MONTGOMERY,KY,38.11,-84.04,HAM OPERATOR REPORTS POWER LINES AND TREETOPS TWISTED OFF INTO AARONS RUN ROAD OFF OF HIGHWAY 460. (JKL) +0310,60,STANTON,POWELL,KY,37.85,-83.86,NATIONAL WEATHER SERVICE EMPLOYEE ESTIMATES THUNDERSTORM WIND GUSTS OF AT LEAST 60 MPH. (JKL) +0315,UNK,FOX,ESTILL,KY,37.76,-84.07,TREES AND POWER LINES WERE DOWN. (JKL) +0315,UNK,UNIONTOWN,UNION,KY,37.77,-87.93,TREES DOWN AND SOME BUILDING DAMAGE. (PAH) +0315,UNK,BOWEN,POWELL,KY,37.84,-83.77,SEVERAL LARGE LIMBS BLOWN DOWN. (JKL) +0315,UNK,EVANSVILLE,VANDERBURGH,IN,37.98,-87.54,TREES DOWN ON SEVEN HILLS ROAD BETWEEN HWY 57 AND BARTON ROAD. NUMEROUS TREES DOWN BLOCKING THE ROAD ON OLD HENDERSON ROAD FROM HICKORY RIDGE. (PAH) +0315,UNK,WINCHESTER,CLARK,KY,38,-84.19,TREES AND POWERLINES REPORTED DOWN ALONG REDHOUSE RD (LMK) +0320,UNK,NEW HAVEN,GALLATIN,IL,37.9,-88.13,NUMEROUS TREES DOWN. (PAH) +0330,UNK,PITTS,ESTILL,KY,37.71,-83.88,TREES AND POWER LINES WERE DOWN ON TIPTON RIDGE. (JKL) +0345,UNK,ROGERS,WOLFE,KY,37.74,-83.64,TREES AND POWER LINES DOWN. (JKL) +0354,UNK,OWENSBORO,DAVIESS,KY,37.76,-87.12,NUMEROUS TREES DOWN IN OWENSBORO. (PAH) +0355,UNK,2 N HAZEL GREEN,MORGAN,KY,37.83,-83.42,TREES DOWN ALONG HIGHWAY 203 (JKL) +0400,UNK,1 E FLAT,WOLFE,KY,37.65,-83.53,LARGE TREES DOWN ON LITTLE BLOODY CREEK ROAD...NEAR FLAT MARY ROAD. (JKL) +0405,UNK,SALYERSVILLE,MAGOFFIN,KY,37.75,-83.06,LARGE LIMBS BLOWN DOWN ONTO A POWERLINE. (JKL) +0407,UNK,5 N HARTFORD,OHIO,KY,37.52,-86.89,TREES AND POWER LINES REPORTED DOWN. (LMK) +0410,UNK,5 E BEATTYVILLE,LEE,KY,37.58,-83.62,TREE DOWN PARTIALLY BLOCKING HWY 52 (JKL) +0412,UNK,LYONIA,HANCOCK,KY,37.72,-86.73,TREES DOWN AND A FEW POWER OUTAGES. (LMK) +0420,UNK,GARRETT,MEADE,KY,37.9,-86.12,TREES AND POWER LINES DOWN IN SOME AREAS. (LMK) +0430,UNK,3 E JACKSON,BREATHITT,KY,37.56,-83.32,TREE BLOCKING QUICKSAND ROAD (JKL) +0430,UNK,VALLEY STATION,JEFFERSON,KY,38.1,-85.86,POWER LINES REPORTED DOWN. (LMK) +0440,UNK,2 N SHEPHERDSVILLE,BULLITT,KY,38.02,-85.71,NUMEROUS TREES AND POWER LINES DOWN. (LMK) +0510,UNK,3 S GRETHEL,FLOYD,KY,37.45,-82.65,TREES DOWN ALONG MINK BRANCH ROAD AS WELL AS HIGHWAY 979. TREES BLOWN DOWN ONTO HOUSES AND POWERLINES. (JKL) +0510,UNK,2 N PRESTONSBURG,FLOYD,KY,37.7,-82.77,TREES AND POWERLINES DOWN IN ABBOTT. (JKL) +0515,UNK,JACKSON,BREATHITT,KY,37.56,-83.38,TREE DOWN ACROSS HIGHWAY 15 NEAR APPLIANCE STORE (JKL) +0525,UNK,4 WNW MARROWBONE,PIKE,KY,37.39,-82.48,ROOF BLOWN OFF OF A HOUSE CAUSING IT TO FALL APART IN THE GREASY CREEK AREA. (JKL) +0525,UNK,4 WNW MARROWBONE,FLOYD,KY,37.57,-82.76,ROOF BLOWN OFF OF A HOUSE CAUSING IT TO FALL APART IN THE GREASY CREEK AREA. (JKL) +0650,UNK,1 SW GLEN DANIEL,RALEIGH,WV,37.77,-81.35,TREES UPROOTED. OTHER TREES SNAPPED IN HALF. SMALL BUILDING RIPPED OFF FOUNDATION. NUMEROUS POWER LINES DOWN. NUMEROUS ROADS BLOCKED BY TREES (RLX) +0750,UNK,HAROLD,FLOYD,KY,37.54,-82.63,TREES ACROSS HWY 979 (JKL) +Time,Size,Location,County,State,Lat,Lon,Comments +1612,88,2 S NODAWAY,ADAMS,IA,40.91,-94.9,DELAYED REPORT. (DMX) +1635,100,3 WSW LENOX,TAYLOR,IA,40.86,-94.61,(DMX) +1636,75,DECATUR CITY,DECATUR,IA,40.74,-93.83,COVERING THE GROUND. (DMX) +1652,175,N DECATUR CITY,DECATUR,IA,40.74,-93.83,(DMX) +1652,75,NW DIAGONAL,RINGGOLD,IA,40.81,-94.34,(DMX) +1703,75,2 S ROYAL,PHELPS,MO,38.1,-91.58,REPORTED BY LAW ENFORCEMENT. (SGF) +1726,88,ALLERTON,WAYNE,IA,40.71,-93.37,(DMX) +1745,88,6 ESE LEON,DECATUR,IA,40.72,-93.64,(DMX) +1750,100,3 NW SHAMBAUGH,PAGE,IA,40.69,-95.08,(OAX) +1806,100,7 S NEW MARKET,TAYLOR,IA,40.63,-94.9,(DMX) +1815,75,3 SW PROMISE CITY,WAYNE,IA,40.71,-93.19,(DMX) +1822,100,5 S BEDFORD,TAYLOR,IA,40.67,-94.72,COMBINATION OF HAIL AND 50MPH WIND DESTROYED CROPS IN AN 8 MILE LONG SWATH THAT WAS 3 MILES WIDE. THE PATH BEGAN NEAR THE HAMLET OF SIAM AND EXTENDED ESE TO THE COUNTY (DMX) +1839,175,SHERIDAN,WORTH,MO,40.52,-94.61,PING-PONG TO GOLF BALL SIZE HAIL REPORTED (EAX) +1853,175,2 S GRANT CITY,WORTH,MO,40.46,-94.41,(EAX) +1905,150,12 NE ALBANY,HARRISON,MO,40.37,-94.17,(EAX) +1905,150,10 NNE ALBANY,GENTRY,MO,40.38,-94.26,(EAX) +1905,175,W AUBURN,NEMAHA,NE,40.39,-95.84,HAIL CAUSED VEHICLE DAMAGE ON THE WEST SIDE OF AUBURN (OAX) +1910,100,WIBAUX,WIBAUX,MT,46.99,-104.19,(GGW) +1925,275,BETHANY,HARRISON,MO,40.27,-94.03,TENNIS TO BASEBALL SIZE HAIL REPORTED ON THE NORTHWEST SIDE OF BETHANY (EAX) +1945,75,17 N BROCKTON,ROOSEVELT,MT,48.4,-104.92,DIME SIZED HAIL ON HIGHWAY 344 (GGW) +1951,100,MUNCIE,DELAWARE,IN,40.2,-85.39,(IND) +1952,100,BRIMSON,GRUNDY,MO,40.14,-93.74,(EAX) +2000,275,5 SW BRIMSON,DAVIESS,MO,40.09,-93.8,2 INCH DIAMETER LIMBS ALSO REPORTED DOWN. (EAX) +2000,100,3 NW KOKOMO,HOWARD,IN,40.51,-86.17,(IND) +2010,175,CHAMPION,NOLAN,TX,32.36,-100.62,(SJT) +2012,400,TRENTON,GRUNDY,MO,40.08,-93.6,POWER LINE ALSO REPORTED DOWN (EAX) +2018,175,S SWEETWATER,NOLAN,TX,32.47,-100.4,SEVERAL HOMES AND BUSSINESSES ON THE SOUTH SIDE OF SWEETWATER RECEIVED SIGNIFICANT DAMAGE DUE TO THE COMBINATION OF 80 MPH WINDS AND HAIL TO THE SIZE OF GOLFBALLS. (SJT) +2020,100,ROCKBRIDGE,GREENE,IL,39.27,-90.21,(LSX) +2025,75,2 S WINCHESTER,RANDOLPH,IN,40.14,-84.98,(IND) +2025,100,ALEXANDRIA,MADISON,IN,40.26,-85.68,(IND) +2034,175,5 ENE CHULA,LIVINGSTON,MO,39.94,-93.38,(EAX) +2035,88,10 SE LOUISIANA,PIKE,MO,39.34,-90.93,HAIL COVERING THE GROUND (LSX) +2037,100,TRENT,TAYLOR,TX,32.49,-100.12,(SJT) +2041,175,ROSENDALE,ANDREW,MO,40.04,-94.82,(EAX) +2045,125,6 S BIG LAKE,REAGAN,TX,31.11,-101.46,QUARTER TO HALF DOLLAR SIZED HAIL ALONG HIGHWAY 137. (MAF) +2050,125,30 NW OZONA,CROCKETT,TX,31.02,-101.56,(SJT) +2052,75,MOZIER,CALHOUN,IL,39.29,-90.75,(LSX) +2052,88,10 SE LOUISIANA,PIKE,MO,39.34,-90.93,HAIL COVERING THE GROUND. (LSX) +2052,100,CURRYVILLE,PIKE,MO,39.35,-91.34,(LSX) +2053,175,BROOKFIELD,LINN,MO,39.79,-93.08,(EAX) +2053,88,CHILLICOTHE,LIVINGSTON,MO,39.79,-93.55,(EAX) +2055,100,CICERO,HAMILTON,IN,40.12,-86.02,(IND) +2100,88,4 S FRANKFORT,CLINTON,IN,40.22,-86.51,NEAR ANTIOCH. (IND) +2100,100,NEW BREMEN,AUGLAIZE,OH,40.44,-84.38,(ILN) +2102,175,3 NE FOUNTAIN CITY,WAYNE,IN,39.99,-84.88,GOLFBALL HAIL IN BETHEL (ILN) +2103,88,LYNN,RANDOLPH,IN,40.05,-84.94,(IND) +2105,100,HOLLANSBURG,DARKE,OH,40,-84.79,(ILN) +2115,100,ALEXANDRIA,MADISON,IN,40.26,-85.68,(IND) +2120,100,ROCKBRIDGE,GREENE,IL,39.27,-90.21,(LSX) +2122,88,GASTON,DELAWARE,IN,40.31,-85.5,(IND) +2126,88,ENGLEWOOD,MONTGOMERY,OH,39.86,-84.31,(ILN) +2129,100,WEST MILTON,MIAMI,OH,39.95,-84.33,(ILN) +2130,100,BOWLING GREEN,PIKE,MO,39.34,-91.2,(LSX) +2133,175,2 W DIETERICH,EFFINGHAM,IL,39.06,-88.42,(ILX) +2134,100,3 NW WHEELER,JASPER,IL,39.07,-88.36,(ILX) +2135,88,4 S HARTFORD CITY,BLACKFORD,IN,40.39,-85.37,REPORTED AT STATE ROUTE 3 AND THE COUNTY LINE. (IWX) +2139,125,BYNUMVILLE,CHARITON,MO,39.62,-92.83,(EAX) +2140,88,MACON,MACON,MO,39.74,-92.47,(EAX) +2140,100,NEW CAMBRIA,MACON,MO,39.78,-92.75,(EAX) +2150,88,3 E KETTERING,GREENE,OH,39.7,-84.09,(ILN) +2150,100,LYNN,RANDOLPH,IN,40.05,-84.94,(IND) +2200,100,5 S SULLIVAN,SULLIVAN,IN,39.02,-87.41,(IND) +2200,75,12 SE PROMISE,DEWEY,SD,45.21,-100.43,(ABR) +2210,200,MOBERLY,RANDOLPH,MO,39.42,-92.44,(EAX) +2215,175,LINTON,GREENE,IN,39.04,-87.16,(IND) +2217,75,NEW MADISON,DARKE,OH,39.97,-84.71,(ILN) +2225,175,1 N BIBLE GROVE,CLAY,IL,38.88,-88.43,(ILX) +2226,88,STRAWN,PALO PINTO,TX,32.55,-98.5,(FTW) +2232,75,ANNAPOLIS,CRAWFORD,IL,39.15,-87.82,REPORTED BY CRAWFORD ESDA. (ILX) +2234,175,BOGOTA,JASPER,IL,38.92,-88.23,REPORTED BY JASPER COUNTY SHERIFF. (ILX) +2235,175,PARIS,MONROE,MO,39.48,-92,HAIL COVERING THE GROUND. (LSX) +2240,88,5 S PALO PINTO,PALO PINTO,TX,32.7,-98.3,NICKEL HAIL AT LAKE PALO PINTO (FTW) +2242,75,CROSS PLAINS,CALLAHAN,TX,32.13,-99.17,(SJT) +2243,100,LOWELL,WASHINGTON,OH,39.53,-81.51,(RLX) +2245,75,FLAT ROCK,CRAWFORD,IL,38.9,-87.67,(ILX) +2245,75,CENTER,RALLS,MO,39.51,-91.53,HAILED FOR SEVERAL MINUTES. (LSX) +2247,88,10 SE WASHINGTON COURT,FAYETTE,OH,39.54,-83.43,HAIL COVERING THE GROUND IN GOOD HOPE (ILN) +2250,75,KAMPSVILLE,CALHOUN,IL,39.31,-90.63,(LSX) +2252,75,8 SW BLOOMINGTON,MONROE,IN,39.08,-86.63,NEAR STANDFORD (IND) +2255,100,FRANKFORD,PIKE,MO,39.49,-91.32,(LSX) +2255,75,CONNERSVILLE,FAYETTE,IN,39.66,-85.14,(ILN) +2256,88,NEW LEBANON,MONTGOMERY,OH,39.74,-84.4,(ILN) +2300,88,12 WSW DE LEON,COMANCHE,TX,32.05,-98.73,NICKEL HAIL AT SIPE SPRINGS (FTW) +2302,100,3 S FRANKFORT,ROSS,OH,39.36,-83.18,(ILN) +2304,75,2 SW ROBINSON,CRAWFORD,IL,38.99,-87.77,(ILX) +2305,75,SULLIVAN,SULLIVAN,IN,39.1,-87.41,(IND) +2306,88,1 SW RUSSIAVILLE,HOWARD,IN,40.41,-86.28,(IND) +2307,300,COMSTOCK,VAL VERDE,TX,29.68,-101.17,RELAYED BY VAL VERDE COUNTY SHERIFF (SAT) +2308,75,10 N BEDFORD,MONROE,IN,39.01,-86.49,(IND) +2310,75,8 SE NORRIS,TODD,SD,43.38,-101.09,(UNR) +2312,100,BELLBROOK,GREENE,OH,39.64,-84.09,(ILN) +2314,100,FOUNTAIN CITY,WAYNE,IN,39.96,-84.92,(ILN) +2315,88,DE LEON,COMANCHE,TX,32.11,-98.54,NICKEL HAIL IN DE LEON (FTW) +2320,125,STOCKPORT,MORGAN,OH,39.55,-81.79,(RLX) +2322,100,10 WNW TIPTON,TIPTON,IN,40.34,-86.22,HAIL TWO INCHES DEEP ON GROUND (IND) +2323,100,BELTON,CASS,MO,38.82,-94.53,(EAX) +2340,88,5 S PALO PINTO,PALO PINTO,TX,32.7,-98.3,NICKEL HAIL AT LAKE PALO PINTO (FTW) +2343,100,ALEXANDRIA,MADISON,IN,40.26,-85.68,(IND) +2345,75,ST. CHARLES,ST. CHARLES,MO,38.79,-90.52,HIGHWAY 370 / I-70 INTERCHANGE (LSX) +2345,75,1 NE ROSEBUD,TODD,SD,43.24,-100.84,(UNR) +2355,425,7 WNW DEL RIO,VAL VERDE,TX,29.38,-100.9,REPORTED JUST SOUTH OF AMISTAD DAM...RELAYED BY VAL VERDE COUNTY SHERIFF (SAT) +2358,88,ELMWOOD PLACE,HAMILTON,OH,39.18,-84.49,(ILN) +2358,88,1 W SOUTH SALEM,ROSS,OH,39.34,-83.33,(ILN) +2358,100,GREENFIELD,HIGHLAND,OH,39.35,-83.39,(ILN) +2359,100,4 E ALEXANDRIA,MADISON,IN,40.26,-85.6,(IND) +0000,75,REEDY,ROANE,WV,38.9,-81.43,(RLX) +0000,88,SEAMAN,ADAMS,OH,38.94,-83.57,(ILN) +0000,100,WEST UNION,DODDRIDGE,WV,39.3,-80.78,(RLX) +0002,88,PECULIAR,CASS,MO,38.72,-94.46,(EAX) +0002,88,10 NE PORTSMOUTH,SCIOTO,OH,38.86,-82.82,PENNY TO NICKEL HAIL IN MINFORD (ILN) +0004,88,10 NE VEVAY,SWITZERLAND,IN,38.85,-84.94,(ILN) +0006,425,DEL RIO,VAL VERDE,TX,29.38,-100.9,RELAYED BY VAL VERDE COUNTY SHERIFF (SAT) +0006,175,CHARLESTOWN,CLARK,IN,38.45,-85.67,GOLF BALL HAIL REPORTED. (LMK) +0006,88,CINCINNATI,HAMILTON,OH,39.14,-84.51,(ILN) +0016,75,GOSHEN,OLDHAM,KY,38.41,-85.59,PENNY SIZE HAIL REPORTED IN THE CITY. (LMK) +0020,100,MUNCIE,DELAWARE,IN,40.2,-85.39,(IND) +0027,75,HILLSBORO,HIGHLAND,OH,39.21,-83.61,(ILN) +0034,75,5 SE VINTON,GALLIA,OH,38.98,-82.34,IN THE TOWN OF BIDWELL (RLX) +0034,75,MOUNT ORAB,BROWN,OH,39.03,-83.92,(ILN) +0035,75,6 N ADRIAN,CASS,MO,38.48,-94.35,(EAX) +0050,88,7 E PACIFIC,ST. LOUIS,MO,38.48,-90.62,REPORTED FROM INTERSTATE 44. (LSX) +0050,88,BREESE,CLINTON,IL,38.61,-89.52,(LSX) +0105,75,SCOTT AFB,ST. CLAIR,IL,38.54,-89.85,WIND GUST ESTIMATED TO BE 45 MPH. (LSX) +0105,100,SUTTON,BRAXTON,WV,38.67,-80.71,(RLX) +0109,175,4 SW FLORA,CLAY,IL,38.63,-88.53,(ILX) +0115,88,4 N WOODLAWN,JEFFERSON,IL,38.39,-89.04,(PAH) +0130,88,WATTSBURG,ERIE,PA,42,-79.81,(CLE) +0135,75,SUTTON,BRAXTON,WV,38.67,-80.71,(RLX) +0135,75,5 SE VINTON,GALLIA,OH,38.93,-82.27,IN THE TOWN OF BIDWELL (RLX) +0138,88,1 N BASSETT,ROCK,NE,42.6,-99.54,(LBF) +0155,75,FLATWOODS,BRAXTON,WV,38.72,-80.65,LOTS OF TREES DOWN (RLX) +0205,175,ALLENDALE,WABASH,IL,38.53,-87.71,(PAH) +0219,175,HAZLETON,GIBSON,IN,38.49,-87.54,(PAH) +0225,75,2 N WEBSTER SPRINGS,WEBSTER,WV,38.51,-80.41,(RLX) +0240,75,BLOUNTSVILLE,HENRY,IN,40.06,-85.24,(IND) +0245,100,MOUNT VERNON,POSEY,IN,37.94,-87.9,(PAH) +0245,88,NORRIS CITY,WHITE,IL,37.98,-88.33,(PAH) +0305,100,HUNTINGBURG,DUBOIS,IN,38.3,-86.96,(LMK) +0334,100,4 E HENDERSON,HENDERSON,KY,37.84,-87.51,THIS REPORT CAME IN FOR HAIL IN THE CITY OF ZION. (PAH) +0335,88,9 S ST. CROIX,PERRY,IN,38.1,-86.58,NICKEL SIZE HAIL REPORTED BY A SHERIFFS DEPUTY ALONG ROUTE 37. (LMK) +0335,88,5 S ST. CROIX,CRAWFORD,IN,38.23,-86.58,NICKEL SIZE HAIL REPORTED BY A SHERIFFS DEPUTY ALONG ROUTE 37. (LMK) +0353,250,WOLF CREEK,MEADE,KY,38.1,-86.38,(LMK) +0427,100,LOST CREEK,BREATHITT,KY,37.48,-83.33,QUARTER SIZED HAIL (JKL) +0512,75,GRETHEL,FLOYD,KY,37.49,-82.65,(JKL) diff --git a/office/regression/000_000087.txt b/office/regression/000_000087.txt new file mode 100644 index 0000000..6e6d1ab --- /dev/null +++ b/office/regression/000_000087.txt @@ -0,0 +1,327 @@ +******************************************************** + NOTICE +******************************************************** + +This document was converted from +WordPerfect to ASCII Text format. + +Content from the original version of the document such as +headers, footers, footnotes, endnotes, graphics, and page numbers +will not show up in this text version. + +All text attributes such as bold, italic, underlining, etc. from the +original document will not show up in this text version. + +Features of the original document layout such as +columns, tables, line and letter spacing, pagination, and margins +will not be preserved in the text version. + +If you need the complete document, download the +WordPerfect version or Adobe Acrobat version, if available. + +***************************************************************** + Before the + Federal Communications Commission + Washington, D.C. 20554 + +In the Matter of ) + ) +Petition for Agreement with Designation of) CC Docket No. 96-45 +Rural Company Eligible Telecommunications) +Carrier Service Areas and for Approval of the) +Use of Disaggregation of Study Areas for the) +Purpose of Distributing Portable Federal) +Universal Service Support ) + ) +Washington Utilities and Transportation) +Commission; Asotin Telephone Co.;) +Century Tel of Cowiche; Ellensburg Tele.) +Co.; Century Tel of Washington; Hat) +Island Telephone Co.; Hood Canal Telephone) +Co., Inc.; Inland Telephone Co.: Kalama) +Telephone Co.; Lewis River Telephone) +Co.; Mashell Telecom, Inc.; McDaniel ) +Telephone Co.; Pend Oreille Telephone Co.;) +Pioneer Telephone Co.; St. John,) +Co-operative Telephone and Telegraph Co.;) +Tenino Telephone Co.; The Toledo Telephone) +Co., Inc.; United Telephone Co. of the) +Northwest; Western Wahkiakum County) +Telephone Co.; Whidbey Telephone Co.; and) +Yelm Telephone Co. ) + + + MEMORANDUM OPINION AND ORDER + + +Adopted: September 9, 1999 Released: September 9, 1999 + + +By the Common Carrier Bureau: + + I. INTRODUCTION + + 1. The Washington Utilities and Transportation Commission (Washington +Commission) and twenty rural incumbent local exchange carriers (rural LEC Petitioners) filed a +petition that requests the Commission's agreement with the Washington Commission's designation +of the individual exchanges of fifteen rural LECs to be their service areas. The Washington +Commission's proposal also requests a waiver for Washington rural carriers from the method of +calculating universal service funds prescribed in section 54.307 of the Commission's rules. +Specifically, the petition proposes to disaggregate federal high cost support currently given at the +study area level, by using the Benchmark Cost Proxy Model (BCPM) to estimate the cost of +providing service in density zones within each exchange served by the rural carriers. The rural +LEC petitioners' support of the request for service area designation is conditioned on this +Commission's approval of the request for disaggregated study area support. For the reasons +discussed herein, we agree with the Washington Commission's proposed service area designation, +and grant the requested waiver to permit the disaggregation of federal high cost support currently +given at the study area level. + + II. BACKGROUND + + 2. For areas served by a rural telephone company, section 214(e)(5) of the +Communications Act, as amended (the Act), provides that the company's "service area" will be +its study area "unless and until the Commission and the States, after taking into account the +recommendations of a Federal-State Joint Board instituted under section 410(c) of the Act, +establish a different definition of service area for such company." Section 54.207 of the +Commission's rules, and the Universal Service Order, set forth the Commission's procedures +for consideration of petitions filed by state commissions seeking to designate rural service areas +for rural telephone companies that are different from such companies' study areas. Section 54.207 +provides that the Commission may initiate a proceeding to consider such a petition within ninety +days of the release date of a Public Notice of the petition or, in the alternative, may act on the +petition without initiating a proceeding. Pursuant to this rule, the Commission issued a Public +Notice on August 24, 1998 to elicit comment from interested parties. On November 24, 1998, +the Commission initiated a proceeding to continue its consideration of the petition. + + 3. Petitioners assert that the Washington Commission has taken into account the +recommendations of the Federal-State Joint Board, as required by the Act and the Commission's +rules, in proposing exchange level service areas for the rural LEC petitioners. Petitioners also +contend that establishment of service areas at the exchange level will promote the procompetitive +policies and goals of the Commission and the Washington Commission. + + 4. Petitioners also seek a waiver of the existing method of calculating the amount of +universal service support that a competitive eligible telecommunications carrier should receive +pursuant to section 54.307 of the Commission's rules, and for approval of a proposed alternative +methodology for determining the amount of universal service support, developed through a series +of workshops held by the Washington Commission. Under the methodology proposed by +petitioners, the individual exchanges of the rural LECs would first be designated as their service +areas. Then the federal high cost support that is currently provided to the rural LEC petitioners +on a study area basis would be disaggregated and redistributed among the smaller geographic +service areas. Under this methodology, the amount of universal service support available to the +proposed service areas in the aggregate would be the total amount of support currently provided +to the existing study area in which they are located. The methodology proposed to disaggregate +and distribute this total support amount among the proposed service areas is an adaptation of the +BCPM. This methodology would be used to estimate the relative cost of providing service in a +lower-cost and a higher-cost density zone within each exchange. This cost data would then be +used to set the support amount for carriers providing service within each of these density zones. +Because the model would be used only to disaggregate and redistribute the federal high cost +support currently provided for each of the rural LEC petitioner's existing study areas, the proposal +would not increase or change the aggregate amount of federal support provided for those study +areas. Under petitioners' proposal, high cost support for each of the current study areas would +continue to be recalculated each year based on the average loop cost in the study area. Thus, the +amount of support calculated for each study area before disaggregation would still be limited by +the mechanisms that limit the overall growth in the fund. Petitioners assert that disaggregation +under this methodology is relatively easy to administer and track, and the necessary information +can be supplied to or developed by the Universal Service Administrative Company (USAC). + + 5. Several commenters express support for the Washington Commission's designation +of the individual exchanges of the rural LECs as their service areas. A number of commenters +also urge us to grant the petition in its entirety because the proposed geographical disaggregation +is intertwined with the Washington Commission's proposed designation of individual exchanges as +service areas, and approving the service area designation alone would create the potential for +"cream skimming." If the exchanges, rather than the current study areas, are designated as the +service areas, and universal service support is not geographically disaggregated, a competitive +LEC could receive a windfall by entering a relatively low cost exchange and receiving support +based on the higher average cost within the study area. Petitioners, and commenters that +support the petition, claim that the proposed geographical disaggregation would avoid such +problems. NECA agrees with other commenters that the Commission should grant the petition, +but cautions the Commission not to "establish the Washington proposal as a de facto standard for +disaggregating interstate universal service support in other areas." NECA explains that whereas +the approach espoused by the Washington Commission may prove workable on an interim basis, +subsequent developments in forward looking cost methods for rural companies may prove that +other methods work better. + + 6. USTA and GTE oppose the petition. USTA expresses concern about the +precedential effects of our decision in this proceeding. It contends that the issues raised by the +petition have the potential of altering established universal service policies and policies that are +being formulated in ongoing proceedings. GTE declares that while it supports the petition's +objective to better target federal universal service support, it cannot support the petition unless +the petition is amended to include GTE Northwest's Contel Washington study area in the +proposed change in service area definition for rural areas. GTE also claims that the proposed +methodology to disaggregate support to areas smaller than a wire center does not fully resolve the +universal service issues in Washington state, even for rural areas, and proposes an alternative +methodology. GTE recommends that if the Commission allows a state to "experiment with +modifications to its transitional universal service support for rural areas," then the Commission +should set forth guidelines for "any such experimentation." In reply, the Washington +Commission states that, in light of GTE's subsequent certification of its Contel study area as rural, +it will work with GTE regarding the inclusion of the Contel study area in petitioners' proposal. + + + III. DISCUSSION + + 7. To begin, we recognize that the request for disaggregated study area support is +inextricably intertwined with the request for agreement with the Washington Commission's +proposed designation of the individual exchanges of the fifteen rural carriers as service areas. We +also recognize that petitioners' proposed methodology to disaggregate and redistribute the federal +high cost support has not been tested, or even studied, outside the context of the Washington +Commission's limited study. We also note that much remains to be done in the development of +the forward-looking economic cost model before being used to distribute universal service +support to rural carriers. The Rural Task Force is developing recommendations on this subject +for the Universal Service Joint Board, which will be followed by the recommendations of that +Joint Board. Pending completion of these steps, and the Commission's decision on the high cost +support mechanism for rural carriers, rural carriers will continue to receive support under the +existing mechanism until, at least, the year 2001. For the reasons described below, however, we +agree with the proposed service areas and grant, on an interim basis until we adopt a new high +cost support mechanism for all rural carriers, the proposed waiver of section 54.307 of the +Commission's rules. When the Commission adopts an order establishing a new support +mechanism for rural carriers, that order will supersede this order, and rural carriers in Washington +will receive high cost support based on the new mechanism. + + 8. Service Area Designation. We find that our concurrence with rural LEC +petitioners' request for designation of their individual exchanges as service areas is warranted in +order to promote competition. The Washington Commission is particularly concerned that rural +areas, of which there are many in Washington, are not left behind in the move to greater +competition. Petitioners also state that designating eligible telecommunications carriers at the +exchange level, rather than at the study area level, will promote competitive entry by permitting +new entrants to provide service in relatively small areas. The proposed methodology will more +closely associate support with the cost of providing service than do the current rules. This, in +turn, should encourage efficient entry in the higher-cost fringe areas as well as the lower-cost core +areas within each exchange. We conclude that this effort to facilitate local competition justifies +our concurrence with the proposed service area designation. + + 9. We also conclude that the Washington Commission has addressed the concerns +expressed by the Federal-State Joint Board on Universal Service, as required by the Act and the +Commission's rules. In the First Recommended Decision, the Joint Board listed three reasons +for retaining, at least initially, the current study areas of rural telephone companies as their service +areas. First, the Joint Board suggested that retaining study areas would minimize potential +"cream skimming," because competitors would be required, as a condition of eligibility, to provide +service throughout the rural telephone company's study area. The Commission expressed its +agreement with this analysis in adopting the Joint Board's recommendations regarding the study +areas of rural carriers. Second, the Joint Board noted that the 1996 Act places rural telephone +companies on a different footing from other local exchange companies, making allowances for +considerations of administrative, technical and economical feasibility. Finally, the Joint Board +expressed concern that determining embedded costs on a basis other than study areas would +impose an administrative burden on rural companies. We conclude that petitioners have taken +these concerns into account in crafting the proposed methodology for disaggregating and +redistributing support currently distributed on a study area basis. In particular, this methodology +is designed to address opportunities for "cream skimming" by competitors. Moreover, to the +extent the Joint Board was concerned about the interests of rural companies, we find it significant +that the rural LEC petitioners support the proposed service area designation, conditioned on +approval of the proposal to disaggregate support. + + 10. Proposal to Disaggregate and Redistribute Support. As to petitioners' request for +waiver of section 54.307, the Commission's rules generally may be waived for good cause +shown. But, as noted by the Court of Appeals for the D.C. Circuit, agency rules are presumed +valid, and "an applicant for waiver faces a high hurdle even at the starting gate." The +Commission may exercise its general discretion to waive a rule where the particular facts make +strict compliance inconsistent with the public interest. In addition, the Commission may take +into account considerations of hardship, equity, or more effective implementation of overall policy +on an individual basis. Waiver is, therefore, appropriate if special circumstances warrant a +deviation from the general rule, and such deviation would better serve the public interest than +strict adherence to the general rule. + + 11. We believe that special circumstances warrant the deviation from the existing +section 54.307 of the Commission's rules. The petition proposes an experiment for the +distribution of universal service support to rural carriers serving high cost areas in the State of +Washington. As such, it will provide useful information in the pending Joint Board and +Commission proceedings to determine how best to distribute universal service support to rural +carriers serving high cost areas across the nation. In addition, the proposal before us represents +the consensus of a state and 20 of its rural carriers, and the Washington Commission has stated its +willingness to take steps to include GTE's Contel exchanges, as well. + + 12. We also find that petitioners have demonstrated that permitting them to deviate +from section 54.307 of the Commission's rules by implementing their proposal will better serve +the public interest than will strict adherence to the rules. Without this waiver of section 54.307, +the proposed designation of service areas at the exchange level could result in the potential harms +that the Joint Board sought to avoid in recommending that rural telephone companies' study areas +be retained as their service areas. Specifically, if service areas were designated as the exchanges, +rather than the study areas, and universal service support were not geographically disaggregated, +a competitor could receive a windfall by providing service in a relatively low cost exchange and +receiving support based on the average cost within the study area. Petitioners' proposal to +disaggregate support is designed to reduce such opportunities for cream skimming. + + 13. We also conclude that the proposed methodology's use of the BCPM is not a basis +for finding that deviation from the current rule would not better serve the public interest. +Although the Commission has adopted the synthesis model, rather than the BCPM, for use in +determining high cost support for non-rural carriers, the synthesis model has not yet been +finalized. As noted above, the Joint Board will be making recommendations, after receiving input +from the Rural Task Force, concerning the nature of the high cost support mechanism that should +be used for rural carriers. Petitioners' proposed methodology will be superseded by the +Commission's adoption of a new support mechanism for rural carriers. + + 14. We also note that in the proposed methodology the BCPM will be used in a +different manner than the synthesis model, which the Commission adopted to estimate the cost for +non-rural carriers to provide service. In the proposed methodology, the BCPM will be used +simply to estimate the relative cost of providing service in density zones within the exchanges +served by the rural LEC petitioners. We believe that the BCPM is sufficiently accurate for such +purposes on an interim basis. We emphasize, however, that our approval of the proposed +methodology is not intended as an endorsement of the BCPM for any purpose other than that in +the proposed methodology and for the purposes of this particular situation. + + 15. Finally, we recognize that it was not possible for petitioners to include the +synthesis model in their proposed methodology because the Commission had not yet adopted it +when the petition was filed. The Washington Commission and rural LEC petitioners have +invested significant time and effort in developing the proposed methodology, which represents a +significant step forward. Denying the petition because it uses BCPM would likely result in a +significant delay in the Washington Commission's efforts to promote competition in the areas +served by the rural LEC petitioners. While the Washington Commission and the rural LEC +petitioners could revise the proposed methodology to include the synthesis model, rather than the +BCPM, and then seek our concurrence, experience suggests that this would be difficult and time +consuming. On balance, we therefore believe it is appropriate to approve the petition as +proposed. + + 16. Nevertheless, we urge petitioners to consider substituting the synthesis model in +the proposed methodology when it is finalized. We urge petitioners to take this course because +regardless of the Commission's ultimate decision on whether to apply the synthesis model to rural +carriers, we believe that the synthesis model provides more accurate cost estimates than does the +BCPM and use of the synthesis model will make it easier for USAC to administer petitioners' +methodology. We hereby give advance approval to modifications to petitioners' proposal to +conform the model platform and inputs to those adopted by this Commission. + + 17. Petitioners suggest that the information necessary for disaggregation of support +can be either supplied to or developed by USAC. As discussed earlier, such information will be +obtained by running a modified version of the BCPM. In light of USAC's responsibility for +administering the disbursement of federal support, we conclude that USAC should administer +petitioners' proposal, including the running of the cost model and determination of disaggregated +support amounts in the rural LEC petitioners' current service areas. We recognize that USAC +will have to work closely with the Washington Commission and rural LEC petitioners to obtain +information necessary to implement the proposal. We delegate authority to USAC to obtain such +information from these and other parties, as necessary. For ease of administration, we conclude +that USAC should implement the proposed methodology on January 1, 2000. + + 18. In reaching these conclusions, we make no judgment regarding similar requests +that we may receive in the future and decline to adopt GTE's suggestion that we adopt guidelines +for such requests. We will examine each request on a case-by-case basis. We disagree with +USTA's assertion that we should deny the petition because it raises significant issues that have +"the potential of altering the Commission's universal service policies" established by and being +reformulated in ongoing proceedings. This decision will permit the Washington Commission to +experiment with an alternative method of distributing universal service support to rural carriers +and may provide information useful in the Commission's ongoing proceeding on this subject. Our +approval of petitioners' proposal on an interim basis permits it to be applied only in the +circumstances outlined in their petition. It is in no way indicative of what we may decide in any +pending proceeding or how the issues in that proceeding will be addressed. Finally, we believe +that our decision in this matter accords with the Commission's endeavor to encourage states and +carriers to find innovative ways to foster a pro-competitive environment, and to foster better use +of available support. + + IV. ORDERING CLAUSES + + + 19. Accordingly, IT IS ORDERED, pursuant to section 214 (e)(5) of the +Communications Act of 1934, as amended, 47 U.S.C.  214(e)(5), sections 54.207 and 54.307 of +the Commission's rules, 47 C.F.R.  54.207, 54.307, and authority delegated by section +54.207(e) of the Commission's rules, 47 C.F.R.  54.207(e), that the petition filed by the +petitioners IS GRANTED to the extent stated herein. + + 20. IT IS FURTHER ORDERED that this ORDER IS EFFECTIVE thirty (30) days +from its release date. USAC is directed to use the proposed methodology beginning on January +1, 2000. + + + + FEDERAL COMMUNICATIONS COMMISSION + + + + + Lisa M. Zaina + Acting Deputy Chief, Common Carrier Bureau diff --git a/office/regression/000_000088.txt b/office/regression/000_000088.txt new file mode 100644 index 0000000..9b4270c --- /dev/null +++ b/office/regression/000_000088.txt @@ -0,0 +1,9 @@ +76 APPENDIX. +able timber land is tributary to the town by water. As nearly all the productive wheat land of the Columbia basin must be supplied with lumber and fuel from other places. a great part of this lumber and fuel must be distributed by rail from Spokane Falls in return for the wheat which will come there to be ground into flour and carried below for shipment to Europe. The town has already churches, public and private schools, newspapers, flouring and other mills, and is growing rapidly. Cheney, another flourishing town, situated on the railroad, is the seat of the District Court, and also of the land office of the Northern Pacific Railroad. +Stevens County, situated in the northeastern part of the Territory, adjoining Brilish Columbia, is one of the largest counties. Very little of its area has been surveyed, and it is quite sparsely settled, the population in 1880 being only 1,245. Value of taxable property, in 1881, $164,719; assessed acreage, 2,720. Its surface is that of a great rolling plateau, having many deep valleys, called coul6es, the channels of former water courses, with soil of the best sort for grain and grass. The country is well watered by countless streams, and is free from alkali. There are growths of good timber, consisting of spruce, white pine and large tamarack throughout the region, interspersed with open arable land, which produces good crops of wheat and vegetables, as well as melons and tomatoes, wherever it has been tried. The immense Colville country offers the very best inducements to settlers, and attention is directed to it. The climate is warmer than that of the Walla Walla Valley. Gold is found in the streams north of the Spokane River, and the mountainous region toward Lake Pend d'Oreille is rich in ledges of fine white and variegated marble, limestone and granite, as well as gold-bearing quartz. Horses in large droves are wintered in this county without care, subsisting on the bunch-grass. Colville is the county seat. At Kettle Falls (old Fort Colville) there is good salmon fishing, and game of all kinds is everywhere abundant. +Thurston County lies at the head of Puget Sound. Area, 750 square miles. Value of taxable property, $1,800,000; assessed acreage, 284,939. Population, 3,270. The surface of the county is densely wooded with fir, cedar, oak, ash, maple and alder. Logging is one of the chief industries. There is, however, much prairie and bottom land adapted to stock raising and agriculture. The best butter is produced by the dairies of the county, and the cereals, garden vegetables and hardy fruits yield well. There is unlimited water at Tumwater, which is utilized by a saw-mill, water-pipe factory, two flouring.mills, a tannery, two door and sash factories, and the water works, which supply the town of Olympia. This latter is a beautiful place of about 1,300 inhabitants. It is the county seat, as well as the capital of the Territory. Olympia is connected by a short railroad with Tenino, a station on the Northern Pacific Line. +Wakiakum County, the smallest county in the Territory, is situated on the Columbia River, between Pacific and Cowlitz Counties. Area, 360 square miles. Value of taxable property, $259,728; assessed acreage, 22,000. Population, 1,600. The land is rocky and mountainous, abounding in dense growths of timber, and there is little agriculture carried on, excepting along the river, where garden vegetables and hay are produced. The people mainly engage in salmon canning, and there are several large establishments for this purpose. Cathlamet is the county seat. Other towns are Waterford, Eagle Cliff and Skamokawa. +Walla Walla County is bounded south and east by the Blue Mountains, and west and north by the Columbia and Snake Rivers. Area 1,250 square miles. Value of taxable property, $4,421,000: assessed acreage, 134,861. Population, 8,716. The country is a high rolling prairie, well watered by many rivers and their lateral branches. About three-fourths of the land is arable, and experience has proved it to be extremely fertile, producing wheat, barley and oats + + + diff --git a/office/regression/000_000089.txt b/office/regression/000_000089.txt new file mode 100644 index 0000000..9ec3ee4 --- /dev/null +++ b/office/regression/000_000089.txt @@ -0,0 +1,303 @@ +WASHINGTON CONGRESSIONAL DISTRICTS BY SCHOOL DISTRICTS + +Note: If there are two different school districts in the same state with the same name, the +county name is added in parentheses after the school district name to distinguish them. + +School District 109th Congressional District + +ABERDEEN 6 +ADNA 3 +ALMIRA 4,5 +ANACORTES 2 +ARLINGTON 2 +ASOTIN-ANATONE 5 +AUBURN 8,9 +BAINBRIDGE ISLAND 1 +BATTLE GROUND 3 +BELLEVUE 8 +BELLINGHAM 2 +BENGE 5 +BETHEL 6,8,9 +BICKLETON 4 +BLAINE 2 +BOISTFORT 3 +BREMERTON 1,6 +BREWSTER 4,5 +BRIDGEPORT 4,5 +BRINNON 6 +BURLINGTON-EDISON 2 +CAMAS 3 +CAPE FLATTERY 6 +CARBONADO 8 +CASCADE 4 +CASHMERE 4 +CASTLE ROCK 3 +CENTERVILLE 4 +CENTRAL KITSAP 1,6 +CENTRAL VALLEY 5 +CENTRALIA 3 +CHEHALIS 3 +CHENEY 5 +CHEWELAH 5 +CHIMACUM 6 +CLARKSTON 5 +CLE ELUM-ROSLYN 4 +CLOVER PARK 6,9 +COLFAX 5 +COLLEGE PLACE 5 +COLTON 5 +COLUMBIA (STEV) 5 +COLUMBIA (WALLA) 5 +COLVILLE 5 +CONCRETE 2 +CONWAY 2 +COSMOPOLIS 6 +COULEE-HARTLINE 4 +COUPEVILLE 2 +CRESCENT 6 +CRESTON 5 +CURLEW 5 +CUSICK 5 +DAMMAN 4 +DARRINGTON 2 +DAVENPORT 5 +DAYTON 5 +DEER PARK 5 +DIERINGER 8,9 +DIXIE 5 +EAST VALLEY (SPK) 5 +EAST VALLEY (YAK) 4 +EASTMONT 4 +EASTON 4 +EATONVILLE 8,9 +EDMONDS 1 +ELLENSBURG 4 +ELMA 6 +ENDICOTT 5 +ENTIAT 4 +ENUMCLAW 8 +EPHRATA 4 +EVALINE 3 +EVERETT 1,2 +EVERGREEN (CLARK) 3 +EVERGREEN (STEV) 5 +FEDERAL WAY 9 +FERNDALE 2 +FIFE 6,9 +FINLEY 4 +FRANKLIN PIERCE 6,8,9 +FREEMAN 5 +GARFIELD 5 +GLENWOOD 4 +GOLDENDALE 4 +GRAND COULEE 4,5 +GRANDVIEW 4 +GRANGER 4 +GRANITE FALLS 2 +GRAPEVIEW 6 +GREAT NORTHERN 5 +GREEN MOUNTAIN 3 +GRIFFIN 3 +HARRINGTON 5 +HIGHLAND 4 +HIGHLINE 7,9 +HOCKINSON 3 +HOOD CANAL 6 +HOQUIAM 6 +INCHELIUM 5 +INDEX 2 +ISSAQUAH 8 +KAHLOTUS 4 +KALAMA 3 +KELLER 5 +KELSO 3 +KENNEWICK 4 +KENT 8,9 +KETTLE FALLS 5 +KIONA-BENTON 4 +KITTITAS 4 +KLICKITAT 4 +LA CENTER 3 +LA CONNER 2 +LACROSSE 5 +LAKE CHELAN 4,5 +LAKE STEVENS 2 +LAKE WASHINGTON 1,8 +LAKEWOOD 2 +LAMONT 5 +LIBERTY 5 +LIND 5 +LONGVIEW 3 +LOON LAKE 5 +LOPEZ 2 +LYLE 4 +LYNDEN 2 +MABTON 4 +MANSFIELD 4 +MANSON 4 +MARY M KNIGHT 6 +MARY WALKER 5 +MARYSVILLE 2 +MCCLEARY 6 +MEAD 5 +MEDICAL LAKE 5 +MERCER ISLAND 8 +MERIDIAN 2 +METHOW VALLEY 5 +MILL A 3,4 +MONROE 1,2 +MONTESANO 6 +MORTON 3 +MOSES LAKE 4 +MOSSYROCK 3 +MOUNT ADAMS 4 +MOUNT BAKER 2 +MOUNT PLEASANT 3 +MOUNT VERNON 2 +MUKILTEO 1,2 +NACHES VALLEY 4 +NAPAVINE 3 +NASELLE-GRAYS 3 +NESPELEM 5 +NEWPORT 5 +NINE MILE FALLS 5 +NOOKSACK VALLEY 2 +NORTH BEACH 6 +NORTH FRANKLIN 4,5 +NORTH KITSAP 1 +NORTH MASON 1,6 +NORTH RIVER 3,6 +NORTH THURSTON 3,9 +NORTHPORT 5 +NORTHSHORE 1 +OAK HARBOR 2 +OAKESDALE 5 +OAKVILLE 3,6 +OCEAN BEACH 3 +OCOSTA 3,6 +ODESSA 4,5 +OKANOGAN 5 +OLYMPIA 3,9 +OMAK 5 +ONALASKA 3 +ONION CREEK 5 +ORCAS ISLAND 2 +ORCHARD PRAIRIE 5 +ORIENT 5 +ORONDO 4 +OROVILLE 5 +ORTING 8 +OTHELLO 4,5 +PALISADES 4 +PALOUSE 5 +PASCO 4 +PATEROS 4,5 +PATERSON 4 +PE ELL 3 +PENINSULA 6 +PIONEER 6 +POMEROY 5 +PORT ANGELES 6 +PORT TOWNSEND 6 +PRESCOTT 5 +PROSSER 4 +PULLMAN 5 +PUYALLUP 8,9 +QUEETS-CLEARWATER 6 +QUILCENE 6 +QUILLAYUTE VALLEY 6 +QUINAULT 6 +QUINCY 4 +RAINIER 3,9 +RAYMOND 3 +REARDAN-EDWALL 5 +RENTON 7-9 +REPUBLIC 5 +RICHLAND 4 +RIDGEFIELD 3 +RITZVILLE 5 +RIVERSIDE 5 +RIVERVIEW 1,8 +ROCHESTER 3,6 +ROOSEVELT 4 +ROSALIA 5 +ROYAL 4 +SAN JUAN ISLAND 2 +SATSOP 6 +SEATTLE 1,7 +SEDRO-WOOLLEY 2 +SELAH 4 +SELKIRK 5 +SEQUIM 6 +SHAW ISLAND 2 +SHELTON 6 +SHORELINE 1,7 +SKAMANIA 3 +SKYKOMISH 2,8 +SNOHOMISH 1,2 +SNOQUALMIE VALLEY 2,8 +SOAP LAKE 4 +SOUTH BEND 3 +SOUTH KITSAP 6 +SOUTH WHIDBEY 2 +SOUTHSIDE 6 +SPOKANE 5 +SPRAGUE 5 +ST JOHN 5 +STANWOOD 2 +STAR 4 +STARBUCK 5 +STEHEKIN 4 +STEILACOOM 6,9 +STEPTOE 5 +STEVENSON-CARSON 3,4 +SULTAN 2 +SUMMIT VALLEY 5 +SUMNER 8,9 +SUNNYSIDE 4 +TACOMA 6,9 +TAHOLAH 6 +TAHOMA 8 +TEKOA 5 +TENINO 3 +THORP 4 +TOLEDO 3 +TONASKET 5 +TOPPENISH 4 +TOUCHET 5 +TOUTLE LAKE 3 +TROUT LAKE 4 +TUKWILA 7,9 +TUMWATER 3 +UNION GAP 4 +UNIVERSITY PLACE 6 +VADER 3 +VALLEY 5 +VANCOUVER 3 +VASHON ISLAND 7 +WAHKIAKUM 3 +WAHLUKE 4 +WAITSBURG 5 +WALLA WALLA 5 +WAPATO 4 +WARDEN 4,5 +WASHOUGAL 3 +WASHTUCNA 4,5 +WATERVILLE 4 +WELLPINIT 5 +WENATCHEE 4 +WEST VALLEY (SPK) 5 +WEST VALLEY (YAK) 4 +WHITE PASS 3 +WHITE RIVER 8 +WHITE SALMON 4 +WILBUR 5 +WILLAPA VALLEY 3 +WILSON CREEK 4,5 +WINLOCK 3 +WISHKAH VALLEY 6 +WISHRAM 4 +WOODLAND 3 +YAKIMA 4 +YELM 3,9 +ZILLAH 4 diff --git a/office/regression/000_000090.txt b/office/regression/000_000090.txt new file mode 100644 index 0000000..b9b6709 --- /dev/null +++ b/office/regression/000_000090.txt @@ -0,0 +1,245 @@ + +Mail Response Rates for Local and Tribal Governmental Entities Page: 1 + Source: 1990 U.S. Census of Population 06/18/1999 + +SS CCC MMM PPPP RRRR Name Percent +--------------------------------------------------------------------------- +53 Washington 67 +53 003 Asotin County 71 +53 005 Benton County 66 +53 007 Chelan County 69 +53 009 Clallam County 67 +53 011 Clark County 68 +53 015 Cowlitz County 66 +53 017 Douglas County 70 +53 021 Franklin County 54 +53 025 Grant County 64 +53 027 Grays Harbor County 63 +53 029 Island County 59 +53 033 King County 69 +53 035 Kitsap County 67 +53 037 Kittitas County 64 +53 041 Lewis County 65 +53 053 Pierce County 63 +53 055 San Juan County 51 +53 057 Skagit County 69 +53 061 Snohomish County 66 +53 063 Spokane County 72 +53 065 Stevens County 43 +53 067 Thurston County 66 +53 071 Walla Walla County 69 +53 073 Whatcom County 63 +53 075 Whitman County 69 +53 077 Yakima County 65 + +Places + +53 0005 Aberdeen city 61 +53 0010 Airway Heights city 42 +53 0020 Algona city 53 +53 0030 Anacortes city 77 +53 0045 Arlington city 72 +53 0055 Auburn city 65 +53 0060 Battle Ground city 67 +53 0070 Beaux Arts Village town 85 +53 0075 Bellevue city 71 +53 0080 Bellingham city 70 +53 0085 Benton City city 41 +53 0095 Black Diamond city 59 +53 0100 Blaine city 52 +53 0105 Bonney Lake city 62 +53 0110 Bothell city 73 + +Mail Response Rates for Local and Tribal Governmental Entities Page: 2 + Source: 1990 U.S. Census of Population 06/18/1999 + +SS CCC MMM PPPP RRRR Name Percent +--------------------------------------------------------------------------- +53 Washington - continued + +Places - continued + +53 0115 Bremerton city 64 +53 0127 Brier city 82 +53 0130 Buckley city 65 +53 0135 Bucoda town 44 +53 0140 Burlington city 70 +53 0145 Camas city 68 +53 0150 Carbonado town 58 +53 0155 Carnation city 57 +53 0170 Castle Rock city 49 +53 0180 Centralia city 65 +53 0190 Chehalis city 64 +53 0200 Cheney city 66 +53 0215 Clarkston city 67 +53 0225 Clyde Hill town 84 +53 0235 College Place city 67 +53 0260 Concrete town 50 +53 0270 Cosmopolis city 62 +53 0290 Coupeville town 47 +53 0305 Darrington town 55 +53 0320 Deer Park city 61 +53 0325 Des Moines city 65 +53 0330 DuPont city 63 +53 0335 Duvall city 52 +53 0350 East Wenatchee city 61 +53 0360 Eatonville town 49 +53 0365 Edmonds city 74 +53 0380 Ellensburg city 63 +53 0410 Enumclaw city 72 +53 0415 Ephrata city 74 +53 0420 Everett city 62 +53 0425 Everson city 51 +53 0430 Fairfield town 74 +53 0445 Ferndale city 67 +53 0450 Fife city 50 +53 0455 Fircrest town 81 +53 0470 Friday Harbor town 51 +53 0490 Gig Harbor city 61 +53 0495 Gold Bar town 33 +53 0515 Grandview city 66 +53 0520 Granger town 53 +53 0525 Granite Falls town 40 +53 0535 Hamilton town 44 + +Mail Response Rates for Local and Tribal Governmental Entities Page: 3 + Source: 1990 U.S. Census of Population 06/18/1999 + +SS CCC MMM PPPP RRRR Name Percent +--------------------------------------------------------------------------- +53 Washington - continued + +Places - continued + +53 0540 Harrah town 47 +53 0560 Hoquiam city 63 +53 0570 Hunts Point town 71 +53 0580 Index town 36 +53 0590 Issaquah city 70 +53 0600 Kalama city 54 +53 0605 Kelso city 63 +53 0610 Kennewick city 62 +53 0615 Kent city 57 +53 0625 Kirkland city 68 +53 0640 La Center town 48 +53 0643 Lacey city 70 +53 0650 La Conner town 61 +53 0657 Lake Forest Park city 83 +53 0664 Lake Stevens city 63 +53 0670 Langley city 57 +53 0675 Latah town 59 +53 0695 Longview city 71 +53 0705 Lyman town 59 +53 0710 Lynden city 84 +53 0715 Lynnwood city 65 +53 0725 Mabton town 50 +53 0745 Marysville city 68 +53 0755 Medical Lake city 60 +53 0760 Medina city 82 +53 0763 Mercer Island city 82 +53 0778 Mill Creek city 60 +53 0780 Millwood town 76 +53 0785 Milton city 57 +53 0790 Monroe city 68 +53 0805 Moses Lake city 65 +53 0815 Mountlake Terrace city 67 +53 0820 Mount Vernon city 71 +53 0825 Moxee city 55 +53 0830 Mukilteo city 64 +53 0835 Naches town 56 +53 0865 Nooksack city 54 +53 0870 Normandy Park city 81 +53 0875 North Bend city 60 +53 0895 Oak Harbor city 63 +53 0920 Olympia city 67 +53 0940 Orting city 58 + +Mail Response Rates for Local and Tribal Governmental Entities Page: 4 + Source: 1990 U.S. Census of Population 06/18/1999 + +SS CCC MMM PPPP RRRR Name Percent +--------------------------------------------------------------------------- +53 Washington - continued + +Places - continued + +53 0950 Pacific city 52 +53 0960 Pasco city 48 +53 0990 Port Angeles city 68 +53 1000 Port Orchard city 67 +53 1010 Poulsbo city 61 +53 1020 Prosser city 71 +53 1025 Pullman city 69 +53 1030 Puyallup city 65 +53 1050 Rainier town 55 +53 1065 Redmond city 66 +53 1070 Renton city 65 +53 1080 Richland city 76 +53 1085 Ridgefield city 63 +53 1100 Rockford town 62 +53 1125 Roy city 60 +53 1130 Ruston town 64 +53 1140 Seattle city 70 +53 1150 Sedro-Woolley city 72 +53 1155 Selah city 71 +53 1175 Skykomish town 50 +53 1180 Snohomish city 74 +53 1185 Snoqualmie city 50 +53 1210 South Prairie town 45 +53 1215 Spangle city 66 +53 1220 Spokane city 71 +53 1235 Stanwood city 64 +53 1245 Steilacoom town 69 +53 1255 Sultan town 57 +53 1265 Sumas city 60 +53 1270 Sumner city 58 +53 1275 Sunnyside city 65 +53 1280 Tacoma city 63 +53 1290 Tenino town 52 +53 1295 Tieton town 63 +53 1310 Toppenish city 62 +53 1320 Tukwila city 59 +53 1325 Tumwater city 67 +53 1335 Union Gap city 58 +53 1350 Vancouver city 68 +53 1365 Walla Walla city 68 +53 1375 Wapato city 63 +53 1385 Washougal city 65 + +Mail Response Rates for Local and Tribal Governmental Entities Page: 5 + Source: 1990 U.S. Census of Population 06/18/1999 + +SS CCC MMM PPPP RRRR Name Percent +--------------------------------------------------------------------------- +53 Washington - continued + +Places - continued + +53 1400 Waverly town 67 +53 1405 Wenatchee city 69 +53 1425 West Richland city 58 +53 1445 Wilkeson town 65 +53 1460 Winslow city 72 +53 1470 Woodland city 65 +53 1475 Woodway city 81 +53 1480 Yacolt town 56 +53 1485 Yakima city 68 +53 1490 Yarrow Point town 84 +53 1495 Yelm town 58 +53 1500 Zillah city 63 + +American Indian Reservation/Alaska Native Village + +53 2070 Lummi Reservation 52 +53 2375 Muckleshoot Reservation 63 +53 2460 Nisqually Reservation 52 +53 2475 Nooksack Reservation 43 +53 2910 Port Gamble Reservation 42 +53 2925 Port Madison Reservation 57 +53 3000 Puyallup Reservation 58 +53 3625 Sauk-Suiattle Reservation 29 +53 4000 Stillaguamish Reservation 47 +53 4075 Swinomish Reservation 66 +53 4290 Tulalip Reservation 58 +53 4455 Upper Skagit Reservation 30 +53 4690 Yakima Reservation 56 diff --git a/office/regression/000_000092.txt b/office/regression/000_000092.txt new file mode 100644 index 0000000..2439260 --- /dev/null +++ b/office/regression/000_000092.txt @@ -0,0 +1,530 @@ +Aberdeen=1|2 +Acme=2|2 +Addy=5|2 +Adna=9|2 +Airway Heights=4|2 +Albion=2|2 +Allyn=0|2 +Almira=3|2 +Amanda Park=1|2 +Amboy=9|2 +Anacortes=3|2 +Anatone=1|2 +Anderson Island=4|2 +Appleton=4|2 +Ardenvoir=7|2 +Ariel=2|2 +Arlington=3|2 +Ashford=4|2 +Asotin=1|2 +Auburn=4|2 +Bainbridge Island=0|2 +Baring=4|2 +Battle Ground=9|2 +Bay Center=0|2 +Beaver=2|2 +Belfair=0|2 +Bellevue=4|2 +Bellingham=2|2 +Belmont=2|2 +Benge=3|2 +Benton City=8|2 +Beverly=3|2 +Bickleton=4|2 +Bingen=4|2 +Black Diamond=4|2 +Blaine=2|2 +Blakely Island=1|2 +Bothell=3|2 +Bothell=4|2 +Bow=3|2 +Boyds=5|2 +Bremerton=0|2 +Brewster=5|2 +Bridgeport=7|2 +Brinnon=0|2 +Brownstown=5|2 +Brush Prairie=9|2 +Buckley=4|2 +Bucoda=4|2 +Buena=5|2 +Burbank=8|2 +Burley=0|2 +Burlington=3|2 +Burton=4|2 +Camas=9|2 +Camp Murray=4|2 +Carbonado=4|2 +Carlsborg=2|2 +Carlton=5|2 +Carnation=4|2 +Carrolls=2|2 +Carson=9|2 +Cashmere=7|2 +Castle Rock=2|2 +Cathlamet=1|2 +Centerville=4|2 +Centralia=9|2 +Chattaroy=4|2 +Chehalis=9|2 +Chelan=7|2 +Chelan Falls=7|2 +Cheney=4|2 +Chewelah=5|2 +Chimacum=0|2 +Chinook=0|2 +Cinebar=9|2 +Clallam Bay=2|2 +Clarkston=1|2 +Clayton=5|2 +Cle Elum=5|2 +Clearlake=3|2 +Clinton=9|2 +Colbert=4|2 +Colfax=2|2 +College Place=8|2 +Colton=2|2 +Colville=5|2 +Conconully=5|2 +Concrete=3|2 +Connell=8|2 +Conway=3|2 +Copalis Beach=1|2 +Copalis Crossing=1|2 +Cosmopolis=1|2 +Cougar=2|2 +Coulee City=3|2 +Coulee Dam=5|2 +Coupeville=9|2 +Cowiche=5|2 +Creston=3|2 +Cunningham=3|2 +Curlew=5|2 +Curtis=9|2 +Cusick=5|2 +Custer=2|2 +Dallesport=4|2 +Danville=5|2 +Darrington=3|2 +Davenport=3|2 +Dayton=9|2 +Deer Harbor=1|2 +Deer Park=4|2 +Deming=2|2 +Dixie=8|2 +Doty=9|2 +Dryden=7|2 +Dupont=4|2 +Duvall=4|2 +East Olympia=4|2 +East Wenatchee=7|2 +Easton=5|2 +Eastsound=1|2 +Eatonville=4|2 +Edmonds=3|2 +Edwall=3|2 +Elbe=4|2 +Electric City=3|2 +Elk=4|2 +Ellensburg=5|2 +Elma=1|2 +Elmer City=5|2 +Eltopia=8|2 +Endicott=2|2 +Entiat=7|2 +Enumclaw=4|2 +Ephrata=3|2 +Ethel=9|2 +Evans=5|2 +Everett=3|2 +Everson=2|2 +Fairchild Air Force Base=4|2 +Fairfield=4|2 +Fall City=4|2 +Farmington=2|2 +Federal Way=4|2 +Ferndale=2|2 +Ford=5|2 +Forks=2|2 +Four Lakes=4|2 +Fox Island=4|2 +Freeland=9|2 +Freeman=4|2 +Friday Harbor=1|2 +Fruitland=5|2 +Galvin=9|2 +Garfield=2|2 +George=3|2 +Gifford=5|2 +Gig Harbor=4|2 +Glenoma=9|2 +Glenwood=4|2 +Gold Bar=3|2 +Goldendale=4|2 +Goose Prairie=5|2 +Graham=4|2 +Grand Coulee=3|2 +Grandview=5|2 +Granger=5|2 +Granite Falls=3|2 +Grapeview=0|2 +Grayland=1|2 +Grays River=1|2 +Greenacres=4|2 +Greenbank=9|2 +Hamilton=3|2 +Hansville=0|2 +Harrah=5|2 +Harrington=3|2 +Hartline=3|2 +Hatton=3|2 +Hay=2|2 +Heisson=9|2 +Hobart=4|2 +Hoodsport=0|2 +Hooper=2|2 +Hoquiam=1|2 +Humptulips=1|2 +Hunters=5|2 +Husum=4|2 +Ilwaco=0|2 +Inchelium=5|2 +Index=3|2 +Indianola=0|2 +Ione=5|2 +Issaquah=4|2 +Joyce=2|2 +Kahlotus=8|2 +Kalama=2|2 +Kapowsin=4|2 +Keller=5|2 +Kelso=2|2 +Kenmore=4|2 +Kennewick=8|2 +Kent=4|2 +Kettle Falls=5|2 +Keyport=0|2 +Kingston=0|2 +Kirkland=4|2 +Kittitas=5|2 +Klickitat=4|2 +La Center=9|2 +La Conner=3|2 +La Grande=4|2 +La Push=2|2 +Lacey=4|2 +Lacrosse=2|2 +Lake Stevens=3|2 +Lakebay=4|2 +Lakewood=4|2 +Lamona=3|2 +Lamont=2|2 +Langley=9|2 +Latah=4|2 +Laurier=5|2 +Leavenworth=7|2 +Lebam=0|2 +Liberty Lake=4|2 +Lilliwaup=0|2 +Lincoln=3|2 +Lind=3|2 +Littlerock=4|2 +Long Beach=0|2 +Longbranch=4|2 +Longmire=4|2 +Longview=2|2 +Loomis=5|2 +Loon Lake=5|2 +Lopez Island=1|2 +Lummi Island=2|2 +Lyle=4|2 +Lyman=3|2 +Lynden=2|2 +Lynnwood=3|2 +Mabton=5|2 +Malaga=7|2 +Malden=2|2 +Malo=5|2 +Malone=1|2 +Malott=5|2 +Manchester=0|2 +Mansfield=7|2 +Manson=7|2 +Maple Falls=2|2 +Maple Valley=4|2 +Marblemount=3|2 +Marcus=5|2 +Marlin=3|2 +Marshall=4|2 +Marysville=3|2 +Matlock=0|2 +Mattawa=3|2 +Mazama=5|2 +Mccleary=1|2 +Mckenna=4|2 +Mead=4|2 +Medical Lake=4|2 +Medina=4|2 +Menlo=0|2 +Mercer Island=4|2 +Mesa=8|2 +Metaline=5|2 +Metaline Falls=5|2 +Methow=5|2 +Mica=4|2 +Milton=4|2 +Mineral=9|2 +Moclips=1|2 +Mohler=3|2 +Monitor=7|2 +Monroe=3|2 +Montesano=1|2 +Morton=9|2 +Moses Lake=3|2 +Mossyrock=9|2 +Mount Vernon=3|2 +Mountlake Terrace=3|2 +Moxee=5|2 +Mukilteo=3|2 +Naches=5|2 +Nahcotta=0|2 +Napavine=9|2 +Naselle=0|2 +Neah Bay=2|2 +Neilton=1|2 +Nespelem=5|2 +Newman Lake=4|2 +Newport=5|2 +Nine Mile Falls=4|2 +Nooksack=2|2 +Nordland=0|2 +North Bend=4|2 +North Bonneville=9|2 +North Lakewood=3|2 +Northport=5|2 +Oak Harbor=9|2 +Oakesdale=2|2 +Oakville=1|2 +Ocean Park=0|2 +Ocean Shores=1|2 +Odessa=3|2 +Okanogan=5|2 +Olalla=0|2 +Olga=1|2 +Olympia=4|2 +Omak=5|2 +Onalaska=9|2 +Orcas=1|2 +Orient=5|2 +Orondo=7|2 +Oroville=5|2 +Orting=4|2 +Othello=3|2 +Otis Orchards=4|2 +Outlook=5|2 +Oysterville=0|2 +Pacific=4|2 +Pacific Beach=1|2 +Packwood=9|2 +Palisades=7|2 +Palouse=2|2 +Paradise Inn=4|2 +Parker=5|2 +Pasco=8|2 +Pateros=5|2 +Paterson=8|2 +Pe Ell=9|2 +Peshastin=7|2 +Plymouth=8|2 +Point Roberts=2|2 +Pomeroy=1|2 +Port Angeles=2|2 +Port Gamble=0|2 +Port Hadlock=0|2 +Port Ludlow=0|2 +Port Orchard=0|2 +Port Townsend=0|2 +Poulsbo=0|2 +Prescott=8|2 +Preston=4|2 +Prosser=8|2 +Pullman=2|2 +Puyallup=4|2 +Quilcene=0|2 +Quinault=1|2 +Quincy=3|2 +Rainier=4|2 +Randle=9|2 +Ravensdale=4|2 +Raymond=0|2 +Reardan=4|2 +Redmond=4|2 +Redondo=4|2 +Renton=4|2 +Republic=5|2 +Retsil=0|2 +Rice=5|2 +Richland=8|2 +Ridgefield=9|2 +Ritzville=3|2 +Riverside=5|2 +Rochester=4|2 +Rock Island=7|2 +Rockford=4|2 +Rockport=3|2 +Rollingbay=0|2 +Ronald=5|2 +Roosevelt=4|2 +Rosalia=2|2 +Rosburg=1|2 +Roslyn=5|2 +Roy=4|2 +Royal City=3|2 +Ryderwood=2|2 +Saint John=2|2 +Salkum=9|2 +Satsop=1|2 +Seabeck=0|2 +Seahurst=4|2 +Seattle=6|2 +Seaview=0|2 +Sedro Woolley=3|2 +Sekiu=2|2 +Selah=5|2 +Sequim=2|2 +Shaw Island=1|2 +Shelton=0|2 +Silvana=3|2 +Silver Creek=9|2 +Silverdale=0|2 +Silverlake=2|2 +Skamokawa=1|2 +Skykomish=4|2 +Snohomish=3|2 +Snoqualmie=4|2 +Snoqualmie Pass=4|2 +Soap Lake=3|2 +South Bend=0|2 +South Cle Elum=5|2 +South Colby=0|2 +South Prairie=4|2 +Southworth=0|2 +Spanaway=4|2 +Spangle=4|2 +Spokane=4|2 +Sprague=3|2 +Springdale=5|2 +Stanwood=3|2 +Starbuck=9|2 +Startup=3|2 +Stehekin=7|2 +Steilacoom=4|2 +Steptoe=2|2 +Stevenson=9|2 +Stratford=3|2 +Sultan=3|2 +Sumas=2|2 +Sumner=4|2 +Sunnyside=5|2 +Suquamish=0|2 +Tacoma=4|2 +Taholah=1|2 +Tahuya=0|2 +Tekoa=2|2 +Tenino=4|2 +Thornton=2|2 +Thorp=5|2 +Tieton=5|2 +Tokeland=0|2 +Toledo=9|2 +Tonasket=5|2 +Toppenish=5|2 +Touchet=8|2 +Toutle=2|2 +Tracyton=0|2 +Trout Lake=4|2 +Tumtum=5|2 +Twisp=5|2 +Underwood=9|2 +Union=0|2 +Uniontown=2|2 +University Place=4|2 +Usk=5|2 +Vader=9|2 +Valley=5|2 +Valleyford=4|2 +Vancouver=9|2 +Vantage=5|2 +Vashon=4|2 +Vaughn=4|2 +Veradale=4|2 +Wahkiacus=4|2 +Waitsburg=8|2 +Waldron=1|2 +Walla Walla=8|2 +Wallula=8|2 +Wapato=5|2 +Warden=3|2 +Washougal=9|2 +Washtucna=3|2 +Waterville=7|2 +Wauconda=5|2 +Wauna=4|2 +Waverly=4|2 +Wellpinit=5|2 +Wenatchee=7|2 +West Richland=8|2 +Westport=1|2 +White Salmon=4|2 +White Swan=5|2 +Wilbur=3|2 +Wilkeson=4|2 +Wilson Creek=3|2 +Winlock=9|2 +Winthrop=5|2 +Wishram=4|2 +Woodinville=4|2 +Woodland=2|2 +Yacolt=9|2 +Yakima=5|2 +Yelm=4|2 +Zillah=5|2 +Adams=3|2 +Asotin=1|2 +Benton=8|2 +Chelan=7|2 +Clallam=2|2 +Clark=9|2 +Columbia=9|2 +Cowlitz=2|2 +Douglas=7|2 +Ferry=5|2 +Franklin=8|2 +Garfield=1|2 +Grant=3|2 +Grays Harbor=1|2 +Island=9|2 +Jefferson=0|2 +King=4|2 +Kitsap=0|2 +Kittitas=5|2 +Klickitat=4|2 +Lewis=9|2 +Lincoln=3|2 +Mason=0|2 +Okanogan=5|2 +Pacific=0|2 +Pend Oreille=5|2 +Pierce=4|2 +San Juan=1|2 +Skagit=3|2 +Skamania=9|2 +Snohomish=3|2 +Spokane=4|2 +Stevens=5|2 +Thurston=4|2 +Wahkiakum=1|2 +Walla Walla=8|2 +Whatcom=2|2 +Whitman=2|2 +Yakima=5|2 diff --git a/office/regression/000_000093.txt b/office/regression/000_000093.txt new file mode 100644 index 0000000..6ffd9f2 --- /dev/null +++ b/office/regression/000_000093.txt @@ -0,0 +1,553 @@ +Washington 04/14/06 + + +Plan Title Plan Type Participating Jurisdiction Approval Date +Washington State Hazard Mitigation Plan ES Washington 07/01/04 +Lummi Nation TS Lummi 06/07/04 +Skokomish Tribe TS Skokomish 04/27/05 +Clallam Hazard MIT Plan TL Jamestown S'Klallam 01/10/05 +Kitsap County TL Suquamish Tribe- Port Madison Indian Reservation 03/17/05 +Mason County Hazard Mitigation Plan TL Squaxin Island Tribe 01/20/05 +Pend Oreille County Local HMP TL Kalispel Tribe 01/10/05 +Skagit Co. Multi-Jurisdictional All-Hazards Plan TL Swinomish Indian Tribal Community 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan TL Upper Skagit Indian Tribe 10/30/03 +Thurston Hazard MIT Plan TL Confederated Tribes of the Chehalis Reservation 10/06/03 +"Aberdeen, City," S Aberdeen 08/24/04 +Benton County M Benton 07/09/04 +Benton County M Benton County 07/09/04 +Benton County M Kennewick 07/09/04 +Benton County M Prosser 07/09/04 +Benton County M Richland 07/09/04 +Benton County M West Richland 07/09/04 +Bethel S.D. All-Hazards Plan S Bethel School District #403 05/25/04 +Chelan County M Cashmere 02/28/05 +Chelan County M Chelan 02/28/05 +Chelan County M Chelan County 02/28/05 +Chelan County M Entiat 02/28/05 +Chelan County M Leavenworth 02/28/05 +Chelan County M Wenatchee 02/28/05 +"City, Puyallup" S Puyallup 04/06/05 +"City, Redmond" S Redmond 12/15/04 +"City, Renton" S Renton 01/23/04 +"City, Shoreline" S Shorline 09/30/04 +"City, Snoqualmie" S Snoqualmie 01/09/04 +Clallam Hazard MIT Plan M Clallam County 01/10/05 +Clallam Hazard MIT Plan M Forks 01/10/05 +Clallam Hazard MIT Plan M Olympic Medical Center 01/10/05 +Clallam Hazard MIT Plan M Peninsula College 01/10/05 +Clallam Hazard MIT Plan M Port Angeles 01/10/05 +Clallam Hazard MIT Plan M Port of Port Angeles 01/10/05 +Clallam Hazard MIT Plan M Sequim 01/10/05 +Clark Regional Hazard MIT Plan M Battle Ground 12/16/04 +Clark Regional Hazard MIT Plan M Camas 12/16/04 +Clark Regional Hazard MIT Plan M Clark County 12/16/04 +Clark Regional Hazard MIT Plan M La Center 12/16/04 +Clark Regional Hazard MIT Plan M Ridgefield 12/16/04 +Clark Regional Hazard MIT Plan M Vancouver 12/16/04 +Clark Regional Hazard MIT Plan M Washougal 12/16/04 +Clark Regional Hazard MIT Plan M Yacolt 12/16/04 +Clover Park S.D. # 400 Hazard MIT Plan S Clover Park School District 12/30/04 +Cowlitz County M Beacon Hill 02/08/05 +Cowlitz County M Castle Rock 02/08/05 +Cowlitz County M Castle Rock School District 02/08/05 +Cowlitz County M CDID No. 1 02/08/05 +Cowlitz County M Cowlitz 2 Fire and Rescue 02/08/05 +Cowlitz County M Cowlitz County 02/08/05 +Cowlitz County M "Cowlitz County Fire Districts 3, 4, 5, 6" 02/08/05 +Cowlitz County M Cowlitz County PUD 02/08/05 +Cowlitz County M Cowlitz-Skamania Fire District 7 02/08/05 +Cowlitz County M DID No. 1 - North Kelso 02/08/05 +Cowlitz County M DID No. 15 - Willow Grove 02/08/05 +Cowlitz County M Kalama 02/08/05 +Cowlitz County M Kalama School District 02/08/05 +Cowlitz County M Kelso 02/08/05 +Cowlitz County M Kelso School District 02/08/05 +Cowlitz County M Lexington Flood Control Zone District 02/08/05 +Cowlitz County M Longview 02/08/05 +Cowlitz County M Longview School District 02/08/05 +Cowlitz County M Lower Columbia College 02/08/05 +Cowlitz County M Port of Longview 02/08/05 +Cowlitz County M Port of Woodland 02/08/05 +Cowlitz County M Toutle Lake School District 02/08/05 +Cowlitz County M Woodland 02/08/05 +Cowlitz County M Woodland School District 02/08/05 +Douglas Hazard MIT Plan M Bridgeport 07/30/04 +Douglas Hazard MIT Plan M Coulee Dam 07/30/04 +Douglas Hazard MIT Plan M Douglas County 07/30/04 +Douglas Hazard MIT Plan M East Wenatchee 07/30/04 +Douglas Hazard MIT Plan M Mansfield 07/30/04 +Douglas Hazard MIT Plan M Rock Island 07/30/04 +Douglas Hazard MIT Plan M Waterville 07/30/04 +Ferry County M Ferry Conservation District 08/24/04 +Ferry County M Ferry County 08/24/04 +Ferry County M Ferry Public Utility District No. 1 08/24/04 +Ferry County M Public Hospital District No. 1 08/24/04 +Franklin County M Connell 12/08/04 +Franklin County M FC Fire Protection District #1 12/08/04 +Franklin County M FC Fire Protection District #3 12/08/04 +Franklin County M FC Mosquito Control Distict 12/08/04 +Franklin County M FC Public Utility District #1 12/08/04 +Franklin County M Franklin County 12/08/04 +Franklin County M Kahlotus 12/08/04 +Franklin County M Mesa 12/08/04 +Franklin County M North Franklin School District #J-51-162 12/08/04 +Franklin County M Pasco 12/08/04 +Franklin County M Pasco School District 12/08/04 +Franklin County M Port of Pasco 12/08/04 +Grays Harbor County S Grays Harbor County 12/06/05 +Highline WD Vulnerability Assesment Plan S Highline Water District 01/09/04 +"Jefferson County & The City, Port Townsend" M Chimacum School District #49 11/18/04 +"Jefferson County & The City, Port Townsend" M Jefferson County 11/18/04 +"Jefferson County & The City, Port Townsend" M Jefferson County Fire District #1 11/18/04 +"Jefferson County & The City, Port Townsend" M Jefferson County Fire District #2 11/18/04 +"Jefferson County & The City, Port Townsend" M Jefferson County Fire District #3 11/18/04 +"Jefferson County & The City, Port Townsend" M Jefferson County Fire District #4 11/18/04 +"Jefferson County & The City, Port Townsend" M Jefferson County Fire District #5 11/18/04 +"Jefferson County & The City, Port Townsend" M Jefferson County Fire District #6 11/18/04 +"Jefferson County & The City, Port Townsend" M Jefferson County Library District 11/18/04 +"Jefferson County & The City, Port Townsend" M Parks and Recreation District #1 11/18/04 +"Jefferson County & The City, Port Townsend" M Port Ludlow Drainage District 11/18/04 +"Jefferson County & The City, Port Townsend" M Port of Port Townsend 11/18/04 +"Jefferson County & The City, Port Townsend" M Port Townsend 11/18/04 +"Jefferson County & The City, Port Townsend" M Port Townsend School District #50 11/18/04 +"Jefferson County & The City, Port Townsend" M Public Hospital District #2 11/18/04 +"Jefferson County & The City, Port Townsend" M "Public Utility District #1, Jefferson County" 11/18/04 +"Jefferson County & The City, Port Townsend" M Queets/Clearwater School District #20 11/18/04 +"Jefferson County & The City, Port Townsend" M Quilcene School District #48 11/18/04 +"Jefferson County & The City, Port Townsend" M Quillayute Valley School District #402 11/18/04 +"Kent, city, All-Hazards Mitigation Plan" M Kent 01/27/05 +"Kent, city, All-Hazards Mitigation Plan" M King County FPD #37 01/27/05 +King Regional Hazard MIT Plan M Auburn 11/01/04 +King Regional Hazard MIT Plan M Burien 11/01/04 +King Regional Hazard MIT Plan M Cedar River Water and Sewer District 11/01/04 +King Regional Hazard MIT Plan M Coal Creek Utility District 11/01/04 +King Regional Hazard MIT Plan M Covington Water District 11/01/04 +King Regional Hazard MIT Plan M Duvall 11/01/04 +King Regional Hazard MIT Plan M Federal Way 11/01/04 +King Regional Hazard MIT Plan M Federal Way Fire Department 11/01/04 +King Regional Hazard MIT Plan M Issaquah 11/01/04 +King Regional Hazard MIT Plan M King County 11/01/04 +King Regional Hazard MIT Plan M King County Fire District 40 11/01/04 +King Regional Hazard MIT Plan M King County Fire District 44 11/01/04 +King Regional Hazard MIT Plan M King County Fire District 45 11/01/04 +King Regional Hazard MIT Plan M King County Water District 111 11/01/04 +King Regional Hazard MIT Plan M King County Water District 20 11/01/04 +King Regional Hazard MIT Plan M King County Water District 90 11/01/04 +King Regional Hazard MIT Plan M Lake Washington School District 11/01/04 +King Regional Hazard MIT Plan M Maple Valley Fire and Life Safety District KCFPD# 43 11/01/04 +King Regional Hazard MIT Plan M Midway Sewer District 11/01/04 +King Regional Hazard MIT Plan M Montainview Fire and Rescue 11/01/04 +King Regional Hazard MIT Plan M North Bend 11/01/04 +King Regional Hazard MIT Plan M North Highline Fire District 11/01/04 +King Regional Hazard MIT Plan M Northshore Utility District 11/01/04 +King Regional Hazard MIT Plan M Ronald Wastewater District 11/01/04 +King Regional Hazard MIT Plan M Seatac 11/01/04 +King Regional Hazard MIT Plan M Shoreline Water District 11/01/04 +King Regional Hazard MIT Plan M Soos Creek Water and Sewer District 11/01/04 +King Regional Hazard MIT Plan M Southwest Suburban Sewer District 11/01/04 +King Regional Hazard MIT Plan M Val Vue Sewer District 11/01/04 +King Regional Hazard MIT Plan M Vashon Island School District 11/01/04 +King Regional Hazard MIT Plan M Woodinville 11/01/04 +King Regional Hazard MIT Plan M Woodinville Water District 11/01/04 +King Regional Hazard MIT Plan M Woondinville Fire and Life Safety District 11/01/04 +Kitsap County M "American Red Cross, Kitsap County" 03/17/05 +Kitsap County M Annapolis Water District 03/17/05 +Kitsap County M Bainbridge Island 03/17/05 +Kitsap County M Bainbridge Island Fire Department 03/17/05 +Kitsap County M Bainbridge Island School District 303 03/17/05 +Kitsap County M Bremerton 03/17/05 +Kitsap County M Bremerton School District 100-C 03/17/05 +Kitsap County M Central Kitsap Fire and Rescue 03/17/05 +Kitsap County M Central Kitsap School District 03/17/05 +Kitsap County M Holly Ridge Center 03/17/05 +Kitsap County M Karcher Creek Sewer District 03/17/05 +Kitsap County M Kitsap Community Resources 03/17/05 +Kitsap County M Kitsap County 03/17/05 +Kitsap County M Kitsap County Consolidated Housing Authority 03/17/05 +Kitsap County M Kitsap County Health District 03/17/05 +Kitsap County M Kitsap County Historical Society 03/17/05 +Kitsap County M Kitsap County Public Utility District 03/17/05 +Kitsap County M Kitsap County Rural Library District 03/17/05 +Kitsap County M Kitsap Mental Health Services 03/17/05 +Kitsap County M Kitsap Transit 03/17/05 +Kitsap County M Manchester Water District 03/17/05 +Kitsap County M North Kitsap Fire and Rescue 03/17/05 +Kitsap County M North Kitsap School District 400 03/17/05 +Kitsap County M North Perry Avenue Water District 03/17/05 +Kitsap County M Peninsula Services 03/17/05 +Kitsap County M Port of Bremerton 03/17/05 +Kitsap County M Port of Kingston 03/17/05 +Kitsap County M Port of Poulsbo 03/17/05 +Kitsap County M Port Orchard 03/17/05 +Kitsap County M Poulsbo 03/17/05 +Kitsap County M Poulsbo Fire Department 03/17/05 +Kitsap County M Silverdale Water District 03/17/05 +Kitsap County M South Kitsap Fire and Rescue 03/17/05 +Kitsap County M South Kitsap School District 03/17/05 +Kitsap County M Sunnyslope Water District 03/17/05 +Kittitas W.D. Hazard Plan S Kittitas County Water District #4 02/09/04 +Lake Washington Technical College Hazard Mitigation Plan S "Lake Washington Technical +College" 08/10/04 +Lakehaven Utility District S Lakehaven Utility District 07/09/04 +Lewis County M Adna School District 226 02/28/05 +Lewis County M Boistfort School District #234 02/28/05 +Lewis County M Centralia 02/28/05 +Lewis County M Centralia Christian School 02/28/05 +Lewis County M Centralia College 02/28/05 +Lewis County M Centralia School District 401 02/28/05 +Lewis County M Centralia/Chehalis Airport 02/28/05 +Lewis County M Chehalis 02/28/05 +Lewis County M Chehalis School District 302 02/28/05 +Lewis County M Evaline School District 36 02/28/05 +Lewis County M "Extendicare Homes, Inc (Riverside)" 02/28/05 +Lewis County M Lewis County 02/28/05 +Lewis County M "Lewis County Fire Districts 1, 3, 5, 9, 10, 12, 16, 17" 02/28/05 +Lewis County M Lewis County Hospital District 1 02/28/05 +Lewis County M Lewis County Public Utility District 1 02/28/05 +Lewis County M Lewis County Sewer District 1 02/28/05 +Lewis County M Lewis County Water District 3 02/28/05 +Lewis County M Lewis County Water/Sewer District 5 02/28/05 +Lewis County M Lewis County Water/Sewer District 6 02/28/05 +Lewis County M Liberty Country Place 02/28/05 +Lewis County M Morton 02/28/05 +Lewis County M Morton School District 214 02/28/05 +Lewis County M Mossyrock 02/28/05 +Lewis County M Mossyrock School District 206 02/28/05 +Lewis County M Napavine 02/28/05 +Lewis County M Napavine School District 14 02/28/05 +Lewis County M Pe Ell 02/28/05 +Lewis County M Pe Ell School District 301 02/28/05 +Lewis County M Port of Centralia 02/28/05 +Lewis County M Providence/Centralia Hospital 02/28/05 +Lewis County M Stillwater Colonial Residence 02/28/05 +Lewis County M Thousand Trails 02/28/05 +Lewis County M Toledo 02/28/05 +Lewis County M Toledo School District 237 02/28/05 +Lewis County M Tractebel (Chehalis Power) 02/28/05 +Lewis County M Vader 02/28/05 +Lewis County M Vader School District 18 02/28/05 +Lewis County M White Pass School District 303 02/28/05 +Lewis County M Winlock 02/28/05 +Lewis County M Winlock School District 232 02/28/05 +Lummi Island Fire District NHMP S "Whatcom County Rural Fire Protection +District #11" 08/11/04 +Mason County Hazard Mitigation Plan M Mason County 01/20/05 +Mason County Hazard Mitigation Plan M Mason County Fire Protection Dist #2 01/20/05 +Mason County Hazard Mitigation Plan M Mason County Fire Protection Dist #5 01/20/05 +Mason County Hazard Mitigation Plan M Mason County Public Hospital Dist #1 01/20/05 +Mason County Hazard Mitigation Plan M Shelton 01/20/05 +"Mercer Island, City,, Pre-Disaster Hazard Mitigation Plan" S Mercer Island 11/09/04 +Newport S.D. Hazard Plan S Newport School District 05/12/04 +North King and South Snohomish Counties Hazard Mitigation Plan M Port of Edmonds 10/25/04 +"North King and South Snohomish +Counties Hazard Mitigation Plan" M Brier 10/25/04 +"North King and South Snohomish +Counties Hazard Mitigation Plan" M Edmonds 10/25/04 +"North King and South Snohomish +Counties Hazard Mitigation Plan" M Edmonds School District 10/25/04 +"North King and South Snohomish +Counties Hazard Mitigation Plan" M Kenmore 10/25/04 +"North King and South Snohomish +Counties Hazard Mitigation Plan" M Lynnwood 10/25/04 +"North King and South Snohomish +Counties Hazard Mitigation Plan" M Mill Creek 10/25/04 +"North King and South Snohomish +Counties Hazard Mitigation Plan" M Mountlake Terrace 10/25/04 +"North King and South Snohomish +Counties Hazard Mitigation Plan" M Olympic View Water & Sewer District 10/25/04 +"North King and South Snohomish +Counties Hazard Mitigation Plan" M Woodway 10/25/04 +North River S.D. Emergency Plan M North River School District #200 02/09/04 +Onalaska School District S Onalaska School District 01/09/04 +Pend Oreille County Local HMP M Cusick 01/10/05 +Pend Oreille County Local HMP M Cusick School District 01/10/05 +Pend Oreille County Local HMP M Ione 01/10/05 +Pend Oreille County Local HMP M Metaline 01/10/05 +Pend Oreille County Local HMP M Metaline Falls 01/10/05 +Pend Oreille County Local HMP M Newport 01/10/05 +Pend Oreille County Local HMP M Pend Oreille County 01/10/05 +Pend Oreille County Local HMP M Port of Pend Oreille 01/10/05 +Pend Oreille County Local HMP M PUD No. 1 01/10/05 +Pend Oreille County Local HMP M Selkirk School District 01/10/05 +Pierce County S Pierce County 11/03/04 +Pierce Fire District #14 Hazard MIT Plan S Riverside Fire & Rescue-Pierce County Fire Protection Dist. #14 10/06/03 +Richland Hazard MIT Plan S Richland 01/13/04 +Roy/Pierce County FD #17 M Pierce County FD No. 17 06/23/05 +Roy/Pierce County FD #17 M Roy 06/23/05 +Seattle All-Hazards MIT Plan S Seattle 03/01/04 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M Anacortes 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M Anacortes School District 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M Burlington 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M Burlington-Edison School District #100 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M Concrete 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M "Dike Districts 1, 3, 4, 5, 9, 12, 17, 19, 20, 22, 25" 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M "Drainage Districts 14, 15, 17, 18, 19, 21, 22, 25" 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M "Fire Districts 2, 5, 8, 11, 13, 16, 17" 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M Hamilton 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M "Hospital Districts 1, 2, 304" 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M "Housing Authority, Skagit County" 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M La Conner 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M La Conner Library 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M La Conner School District 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M Lyman 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M Mount Vernon 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M Mount Vernon School District 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M Port of Anacortes 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M Port of Skagit County 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M Public Utility District #1 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M Sedro Woolley 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M Sedro-Woolley School District 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M Sewer District #1 10/30/03 +Skagit Co. Multi-Jurisdictional All-Hazards Plan M Skagit County 10/30/03 +Skyway WSD Vulner Assess & Emergency Response Plan S 08/24/04 +Snohomish County M Alderwood Water/Wastewater District 04/27/05 +Snohomish County M Arlington 04/27/05 +Snohomish County M Cross Valley Water District 04/27/05 +Snohomish County M Darrington 04/27/05 +Snohomish County M Darrington School District 04/27/05 +Snohomish County M French Slough Flood Control District 04/27/05 +Snohomish County M Gold Bar 04/27/05 +Snohomish County M Granite Falls 04/27/05 +Snohomish County M Highland Water District 04/27/05 +Snohomish County M Index 04/27/05 +Snohomish County M Lake Stevens 04/27/05 +Snohomish County M Marshland Flood Control District 04/27/05 +Snohomish County M Marysville 04/27/05 +Snohomish County M Marysville 04/27/05 +Snohomish County M Monroe 04/27/05 +Snohomish County M Monroe School District # 103 04/27/05 +Snohomish County M Mukilteo 04/27/05 +Snohomish County M Mukilteo Water District 04/27/05 +Snohomish County M Northshore Parks and Recreation District 04/27/05 +Snohomish County M Olympus Terrace Sewer District 04/27/05 +Snohomish County M Silver Lake Water District 04/27/05 +Snohomish County M Snohomish 04/27/05 +Snohomish County M "Snohomish Co. Fire Districts 1, 3, 4, 5, 7, 14, 17, 18, 19, 21, 24, 25, 26, 27, 28" 04/27/05 +Snohomish County M Snohomish County 04/27/05 +Snohomish County M Snohomish County Dike District #2 04/27/05 +Snohomish County M Snohomish County Health District 04/27/05 +Snohomish County M Stanwood 04/27/05 +Snohomish County M Stillaguamish Flood Control District 04/27/05 +Snohomish County M Sultan 04/27/05 +Snohomish County M Sultan School District #311 04/27/05 +South Bend's Hazard MIT Plan S 08/24/04 +Sulton City Pre-Disaster Hazard MT Plan S Sultan 01/11/05 +Sumner/Bonney Lake Area M Bonney Lake 12/22/04 +Sumner/Bonney Lake Area M East Pierce County Fire & Rescue 12/22/04 +Sumner/Bonney Lake Area M Sumner 12/22/04 +Sumner/Bonney Lake Area M Sumner School District 12/22/04 +Thurston Hazard MIT Plan M Bucoda 10/06/03 +Thurston Hazard MIT Plan M Evergreen State College 10/06/03 +Thurston Hazard MIT Plan M Intercity Transit 10/06/03 +Thurston Hazard MIT Plan M Lacey 10/06/03 +Thurston Hazard MIT Plan M North Thurston Public Schools 10/06/03 +Thurston Hazard MIT Plan M Olympia 10/06/03 +Thurston Hazard MIT Plan M Olympia School District 10/06/03 +Thurston Hazard MIT Plan M Providence St. Peter Hospital 10/06/03 +Thurston Hazard MIT Plan M Rainier 10/06/03 +Thurston Hazard MIT Plan M Rainier School District 10/06/03 +Thurston Hazard MIT Plan M Tenino 10/06/03 +Thurston Hazard MIT Plan M Thurston County 10/06/03 +Thurston Hazard MIT Plan M "Thurston County Fire Chiefs Association Fire Districts 4, 9, 13" 10/06/03 +Thurston Hazard MIT Plan M Tumwater 10/06/03 +Thurston Hazard MIT Plan M Tumwater School District 10/06/03 +Thurston Hazard MIT Plan M Yelm 10/06/03 +Thurston Hazard MIT Plan M Yelm Community Schools #002 10/06/03 +Walla Walla County M College Place 05/17/05 +Walla Walla County M Mill Creek Flood Control District 05/17/05 +Walla Walla County M Prescott 05/17/05 +Walla Walla County M Waitsburg 05/17/05 +Walla Walla County M Walla Walla 05/17/05 +Walla Walla County M Walla Walla County 05/17/05 +Whatcom County Hazard Mitigation Plan M Bellingham 07/18/05 +Whatcom County Hazard Mitigation Plan M Blaine 07/18/05 +Whatcom County Hazard Mitigation Plan M Everson 07/18/05 +Whatcom County Hazard Mitigation Plan M Ferndale 07/18/05 +Whatcom County Hazard Mitigation Plan M Lynded 07/18/05 +Whatcom County Hazard Mitigation Plan M Nooksack 07/18/05 +Whatcom County Hazard Mitigation Plan M Sumas 07/18/05 +Whatcom County Hazard Mitigation Plan M Whatcom County 07/18/05 +"Yakima County Multi-Jurisdictional +HMP" M Ahtanum Irrigation District 02/08/05 +"Yakima County Multi-Jurisdictional +HMP" M Grandview 02/08/05 +"Yakima County Multi-Jurisdictional +HMP" M Granger 02/08/05 +"Yakima County Multi-Jurisdictional +HMP" M Harrah 02/08/05 +"Yakima County Multi-Jurisdictional +HMP" M Highland School District 02/08/05 +"Yakima County Multi-Jurisdictional +HMP" M Mabton 02/08/05 +"Yakima County Multi-Jurisdictional +HMP" M Moxy 02/08/05 +"Yakima County Multi-Jurisdictional +HMP" M Naches 02/08/05 +"Yakima County Multi-Jurisdictional +HMP" M Naches Valley School District 02/08/05 +"Yakima County Multi-Jurisdictional +HMP" M Selah 02/08/05 +"Yakima County Multi-Jurisdictional +HMP" M Sunnyside 02/08/05 +"Yakima County Multi-Jurisdictional +HMP" M Sunnyside Valley Irrigation District 02/08/05 +"Yakima County Multi-Jurisdictional +HMP" M Tieton 02/08/05 +"Yakima County Multi-Jurisdictional +HMP" M Toppenish 02/08/05 +"Yakima County Multi-Jurisdictional +HMP" M Union Gap 02/08/05 +"Yakima County Multi-Jurisdictional +HMP" M Wapato 02/08/05 +"Yakima County Multi-Jurisdictional +HMP" M Yakima 02/08/05 +"Yakima County Multi-Jurisdictional +HMP" M Yakima County 02/08/05 +"Yakima County Multi-Jurisdictional +HMP" M "Yakima County Fire Protection Districts 1, 2, 4, 5" 02/08/05 +"Yakima County Multi-Jurisdictional +HMP" M Yakima Valley Emergency Management District 02/08/05 +"Yakima County Multi-Jurisdictional +HMP" M Yakima-Tieton Irrigation District 02/08/05 +"Yakima County Multi-Jurisdictional +HMP" M Zillah 02/08/05 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/office/regression/000_000094.txt b/office/regression/000_000094.txt new file mode 100644 index 0000000..d876c79 --- /dev/null +++ b/office/regression/000_000094.txt @@ -0,0 +1,1346 @@ +Common Core of Data CD-ROM -- School Years 1996-1997 through 1999-2000 +School Year 1998-99 Public School Universe data +Corrections to Agency Locale Codes +using Version 1c of the Public School Universe data files, dated June 2001 + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | + | | +0100420 BLOUNT COUNTY SCH DIST | 7 8 | +0100840 COLBERT COUNTY SCH DIST | 4 8 | +0101050 DALE COUNTY SCH DIST | 7 4 | +0101770 HOUSTON COUNTY SCH DIST | 7 8 | +0101920 JEFFERSON COUNTY SCH DIST | 3 2 | +0102010 LAUDERDALE COUNTY SCH DIST | 7 8 | +0103062 SAINT CLAIR COUNTY SCH DIST | 7 8 | +0400021 COLORADO CITY UNIFIED DISTRICT | 7 8 | +0400083 PPEP TEC HIGH SCHOOL | 1 2 | +0400116 CASA BLANCA MIDDLE SCHOOL | 7 3 | +0400480 AGUILA ELEMENTARY DISTRICT | 7 3 | +0400720 ANTELOPE UNION HIGH SCH DIST | 7 8 | +0400840 ARLINGTON ELEMENTARY DISTRICT | 7 3 | +0401710 CASA GRANDE ELEMENTARY DIST | 7 3 | +0401740 CASA GRANDE UNION HIGH DIST | 7 3 | +0402010 CHLORIDE ELEMENTARY DISTRICT | 7 8 | +0402250 CONTINENTAL ELEMENTARY DIST | 7 3 | +0403080 FREDONIA MOCCASIN UNIFIED DIST | 7 8 | +0403240 GADSDEN ELEMENTARY DISTRICT | 7 4 | +0403310 GILA BEND UNIFIED DISTRICT | 7 8 | +0403550 GRAND CANYON UNIFIED DISTRICT | 7 4 | +0403900 HYDER ELEMENTARY DISTRICT | 7 4 | +0404290 LAVEEN ELEMENTARY DISTRICT | 7 2 | +0404410 LITTLEFIELD ELEMENTARY DIST | 7 3 | +0404440 LITTLETON ELEMENTARY DISTRICT | 7 3 | +0404530 MAINE CONSOL ELEMENTARY DIST | 7 4 | +0404720 MARICOPA UNIFIED SCHOOL DIST | 7 3 | +0404770 ALTAR VALLEY ELEMENTARY DIST | 7 3 | +0405100 MOBILE ELEMENTARY DISTRICT | 7 3 | +0405220 MOHAWK VALLEY ELEMENTARY DIST | 7 4 | +0405340 MORRISTOWN ELEMENTARY DISTRICT | 7 3 | +0405460 NADABURG ELEMENTARY DISTRICT | 7 3 | +0405730 OWENS WHITNEY ELEM DIST | 7 3 | +0405850 PALO VERDE ELEMENTARY DISTRICT | 7 3 | +0406120 PEACH SPRINGS UNIFIED DIST | 7 8 | +0406360 PICACHO ELEMENTARY DISTRICT | 7 3 | +0406850 RAY UNIFIED DISTRICT | 7 8 | +0406900 RED ROCK ELEMENTARY DISTRICT | 7 3 | +0407170 RUTH FISHER ELEMENTARY DIST | 7 3 | +0407200 SACATON ELEMENTARY DISTRICT | 7 8 | +0407300 SAHUARITA UNIFIED DISTRICT | 7 3 | +0407680 SENTINEL ELEMENTARY DISTRICT | 7 4 | +0407820 SNOWFLAKE UNIFIED DISTRICT | 6 3 | +0408130 STANFIELD ELEMENTARY DISTRICT | 7 3 | +0408430 PALOMA ELEMENTARY DISTRICT | 7 8 | +0408640 TOPOCK ELEMENTARY DISTRICT | 7 3 | +0408850 VAIL ELEMENTARY DISTRICT | 8 3 | +0408880 VALENTINE ELEMENTARY DISTRICT | 7 8 | +0409090 WELLTON ELEMENTARY DISTRICT | 7 8 | + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | +0409570 YUCCA ELEMENTARY DISTRICT | 7 3 | +0500012 RIVERSIDE SCHOOL DISTRICT | 7 8 | +0502330 ALTHEIMER UNIFIED SCHOOL DISTRICT | 7 8 | +0502790 BAUXITE SCHOOL DISTRICT | 7 8 | +0502820 BAY SCHOOL DISTRICT | 7 8 | +0503030 PEA RIDGE SCHOOL DISTRICT | 7 8 | +0503570 BRIGHT STAR SCHOOL DISTRI | 7 4 | +0503640 BROOKLAND SCHOOL DISTRICT | 7 8 | +0503710 BUFFALO ISLAND CENTRAL SCHOOL DISTRICT | 7 4 | +0503960 CARLISLE SCHOOL DISTRICT | 7 8 | +0504080 CEDARVILLE SCHOOL DISTRICT | 7 4 | +0504770 CRAWFORDSVILLE SCHOOL DIS | 7 8 | +0504980 DECATUR SCHOOL DISTRICT | 7 8 | +0505760 ELKINS SCHOOL DIST #10 | 7 8 | +0506360 FOUKE SCHOOL DISTRICT | 7 8 | +0507140 GUYPERKINS SCHOOLS | 7 8 | +0507410 HARTFORD DISTRICT #94 | 7 8 | +0508730 LAVACA PUBLIC SCHOOLS | 7 8 | +0508940 LINCOLN SCHOOL DISTRICT | 7 8 | +0509330 MANSFIELD SCHOOL DISTRICT | 7 8 | +0509540 MAYFLOWER SCHOOL DISTRICT | 7 8 | +0510080 MT.VERNONENOLA SCHOOL DISTRICT | 7 8 | +0510260 MOUNTAINBURG SCHOOLS | 7 8 | +0510290 MULBERRY SCHOOL DISTRICT | 7 8 | +0511760 PRAIRIE GROVE SCHOOL DISTRICT | 7 8 | +0513260 TURRELL SCHOOL DISTRICT | 7 8 | +0513530 VILONIA SCHOOL DISTRICT | 7 8 | +0513860 WINSLOW SCHOOL DISTRICT | 7 8 | +0600001 ACTON-AGUA DULCE UNIFIED | 7 8 | +0600009 CUYAMA JOINT UNIFIED | 7 4 | +0600023 CHAWANAKEE JT. ELEMENTARY | 7 3 | +0600026 EL TEJON UNIFIED | 7 4 | +0600031 PACIFIC UNIFIED | 7 4 | +0600041 MINARETS JT. UNION HIGH | 7 3 | +0600042 WARNER UNIFIED | 7 3 | +0602010 ALPAUGH UNIFIED | 7 4 | +0602250 ALTA-DUTCH FLAT UNION ELEMENTA | 7 3 | +0603060 ARCOHE UNION ELEMENTARY | 7 3 | +0603610 BAKER VALLEY UNIFIED | 7 3 | +0604350 BELLA VISTA ELEMENTARY | 7 4 | +0604560 BELRIDGE ELEMENTARY | 7 4 | +0604860 BIG CREEK ELEMENTARY | 7 3 | +0605040 BIGGS UNIFIED | 7 8 | +0605240 BLACK OAK MINE UNIFIED | 7 3 | +0605250 BLAKE ELEMENTARY | 7 4 | +0605520 BOLINAS-STINSON UNION ELEMENTA | 7 8 | +0605730 BRADLEY UNION ELEMENTARY | 7 4 | +0606960 CALIENTE UNION ELEMENTARY | 7 4 | +0607260 CAMPTONVILLE ELEMENTARY | 7 4 | +0607350 CANYON ELEMENTARY | 7 3 | +0607620 CARUTHERS UNION ELEMENTARY | 7 8 | +0607650 CARUTHERS UNION HIGH | 7 8 | +0607710 CASMALIA ELEMENTARY | 7 4 | +0608580 CHUALAR UNION ELEMENTARY | 7 4 | + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | +0609300 COLFAX ELEMENTARY | 7 8 | +0609510 COLUMBINE ELEMENTARY | 7 4 | +0609990 COTTONWOOD UNION ELEMENTARY | 7 8 | +0610380 CUTTEN ELEMENTARY | 6 7 | +0611100 DESERT CENTER UNIFIED | 7 3 | +0611550 DUCOR UNION ELEMENTARY | 7 4 | +0612360 ELK HILLS ELEMENTARY | 7 4 | +0612660 EMIGRANT GAP ELEMENTARY | 7 3 | +0612690 EMPIRE UNION ELEMENTARY | 2 4 | +0613710 FEATHER FALLS UNION ELEMENTARY | 7 4 | +0614490 FRENCH GULCH-WHISKEYTOWN ELEME | 7 4 | +0615600 GORMAN ELEMENTARY | 7 3 | +0616830 HEBER ELEMENTARY | 6 7 | +0616860 HELENDALE ELEMENTARY | 7 3 | +0617580 HORICON ELEMENTARY | 7 3 | +0617640 HOT SPRINGS ELEMENTARY | 7 4 | +0618270 INDIAN SPRINGS ELEMENTARY | 7 4 | +0619320 KELSEYVILLE UNIFIED | 6 7 | +0620160 LA GRANGE ELEMENTARY | 7 4 | +0620220 LA HONDA-PESCADERO UNIFIED | 7 3 | +0620520 LAGUNITAS ELEMENTARY | 7 3 | +0622620 LOS ALAMOS ELEMENTARY | 7 4 | +0622920 LOS OLIVOS ELEMENTARY | 7 4 | +0624300 MCKINLEYVILLE UNION ELEMENTARY | 6 7 | +0624930 MILLVILLE ELEMENTARY | 7 4 | +0625650 MONTGOMERY ELEMENTARY | 7 3 | +0626340 MT. BALDY JOINT ELEMENTARY | 7 3 | +0626970 NEW HOPE ELEMENTARY | 7 4 | +0627040 MOUNTAIN UNION ELEMENTARY | 7 4 | +0627120 NEWCASTLE ELEMENTARY | 7 3 | +0627300 NICASIO ELEMENTARY | 7 3 | +0627870 OAK RUN ELEMENTARY | 7 4 | +0628650 ORANGE UNIFIED | 3 2 | +0628950 ORO GRANDE ELEMENTARY | 7 3 | +0629340 PACIFIC ELEMENTARY | 7 3 | +0630060 PAUMA ELEMENTARY | 7 3 | +0630120 PENRYN ELEMENTARY | 7 3 | +0630630 PIXLEY UNION ELEMENTARY | 7 8 | +0631350 POND UNION ELEMENTARY | 7 4 | +0631680 RAISIN CITY ELEMENTARY | 7 3 | +0632340 KASHIA ELEMENTARY | 7 3 | +0632430 RICHGROVE ELEMENTARY | 7 8 | +0633110 RIVER DELTA JOINT UNIFIED | 7 3 | +0634050 SAN ANTONIO UNION ELEMENTARY | 7 4 | +0634080 SAN ARDO UNION ELEMENTARY | 7 4 | +0634770 SAN LUCAS UNION ELEMENTARY | 7 4 | +0636360 SEQUOIA UNION ELEMENTARY | 7 4 | +0636570 SHASTA UNION ELEMENTARY | 7 4 | +0636670 SHORELINE UNIFIED | 7 3 | +0636810 SILVER FORK ELEMENTARY | 7 3 | +0636820 SILVER VALLEY UNIFIED | 7 3 | +0636960 SNELLING-MERCED FALLS UNION EL | 7 4 | +0636990 SOLANA BEACH ELEMENTARY | 3 2 | +0637350 SOUTH BAY UNION ELEMENTARY | 6 7 | + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | +0637680 SPENCER VALLEY ELEMENTARY | 7 3 | +0637710 SPRECKELS UNION ELEMENTARY | 7 4 | +0638130 STRATHMORE UNION ELEMENTARY | 7 8 | +0639600 TRAVER JOINT ELEMENTARY | 7 4 | +0641220 VISTA DEL MAR UNION ELEMENTARY | 7 4 | +0642210 WESTSIDE ELEMENTARY | 7 3 | +0642330 WHEATLAND ELEMENTARY | 7 8 | +0642350 WHEATLAND UNION HIGH | 7 8 | +0642420 WHITMORE UNION ELEMENTARY | 7 4 | +0691063 DEL NORTE CO. OFFICE OF EDUCAT | 6 7 | +0691134 GOLDEN PLAINS UNIFIED | 7 3 | +0691137 BIG OAK FLAT-GROVELAND UNIFIED | 6 7 | +0802310 AULT-HIGHLAND RE-9 | 7 8 | +0802550 BRIGGSDALE RE-10 | 7 3 | +0802730 CALHAN RJ-1 | 7 8 | +0803030 PLATEAU VALLEY 50 | 7 8 | +0803240 DE BEQUE 49JT | 7 8 | +0803270 DEER TRAIL 26J | 7 8 | +0804200 GILCREST RE-1 | 7 8 | +0804440 PAWNEE RE-12 | 7 8 | +0804830 JOHNSTOWN-MILLIKEN RE-5J | 7 8 | +0804920 KEENESBURG RE-3(J) | 7 8 | +0804950 PLATTE VALLEY RE-7 | 7 8 | +0806060 PEYTON 23 JT | 7 3 | +0806150 PUEBLO COUNTY RURAL 70 | 4 8 | +0806720 PRAIRIE RE-11 | 7 8 | +0806750 STRASBURG 31J | 7 3 | +0900150 BARKHAMSTED SCHOOL DISTRICT | 6 8 | +0900360 BOLTON SCHOOL DISTRICT | 6 8 | +0900900 COLUMBIA SCHOOL DISTRICT | 6 8 | +0901080 DEEP RIVER SCHOOL DISTRICT | 6 7 | +0901200 EAST HADDAM SCHOOL DISTRICT | 7 8 | +0902760 NEW HARTFORD SCHOOL DISTRICT | 6 8 | +0903480 PUTNAM SCHOOL DISTRICT | 6 7 | +0903510 REDDING SCHOOL DISTRICT | 6 8 | +1200390 DADE COUNTY SCHOOL DISTRICT | 7 3 | +1200540 FLAGLER COUNTY SCHOOL DISTRICT | 7 8 | +1200930 INDIAN RIVER COUNTY SCHOOL DISTRICT | 6 7 | +1201650 SANTA ROSA COUNTY SCHOOL DISTRICT | 4 8 | +1300930 CATOOSA COUNTY | 7 4 | +1301050 CHATTAHOOCHEE COUNTY | 7 8 | +1301590 DADE COUNTY | 7 8 | +1301740 DEKALB COUNTY | 3 2 | +1301980 EFFINGHAM COUNTY | 7 8 | +1302280 FULTON COUNTY | 3 2 | +1302820 HENRY COUNTY | 3 8 | +1303150 JONES COUNTY | 7 8 | +1303270 LEE COUNTY | 7 8 | +1303480 MADISON COUNTY | 7 8 | +1304110 PICKENS COUNTY | 7 8 | +1305220 TWIGGS COUNTY | 7 8 | +1500030 HAWAII DEPARTMENT OF EDUCATION | 3 2 | +1600930 BONNEVILLE JOINT SCHOOL DISTRICT 93 | 6 7 | +1601950 MARSH VALLEY JOINT SCHOOL DISTRICT 21 | 7 8 | + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | +1602070 MELBA JOINT SCHOOL DISTRICT 136 | 7 8 | +1602550 PARMA SCHOOL DISTRICT 137 | 7 8 | +1603480 WILDER SCHOOL DISTRICT 133 | 7 8 | +1700058 LAKE CO H S TECHNOLOGY CAMPUS | 6 8 | +1700106 HERITAGE COMM UNIT SCH DIST 8 | 7 8 | +1700109 RIDGEVIEW COMM UNIT SCH DIST 19 | 7 8 | +1700123 MERIDIAN COMM UNIT SCH DIST 15 | 7 8 | +1700195 LEE/OGLE ROE | 7 4 | +1700196 LOGAN/MASON/MENARD ROE | 7 8 | +1703270 ALBERS SCHOOL DISTRICT 63 | 7 8 | +1703660 ALWOOD COMM UNIT SCH DIST 225 | 7 8 | +1703810 ANNAWAN COMM UNIT SCH DIST 226 | 7 8 | +1703990 ARGENTA-OREANA COMM UNIT SCH D 1 | 7 8 | +1704470 ATHENS COMM UNIT SCH DIST 213 | 7 8 | +1704740 AVISTON SCHOOL DISTRICT 21 | 7 8 | +1705160 BARTELSO SCHOOL DISTRICT 57 | 7 8 | +1705430 BEECHER C U SCH DIST 200U | 7 8 | +1706840 BRACEVILLE SCHOOL DIST 75 | 7 8 | +1707200 BRIMFIELD C U SCHOOL DIST 309 | 7 8 | +1707830 CENTRAL COMM UNIT SCH DIST 301 | 7 8 | +1708010 BYRON COMM UNIT SCHOOL DIST 226 | 7 8 | +1709850 CHESTER-EAST LINCOLN CCS DIST 61 | 6 7 | +1711220 CRESTON COMM CONS SCHOOL DIST 161 | 7 8 | +1711880 DEER CREEK-MACKINAW CUSD 701 | 7 8 | +1712300 DIVERNON C U SCHOOL DIST 13 | 7 8 | +1712700 DUNLAP C U SCHOOL DIST 323 | 7 8 | +1713920 TRI VALLEY C U SCHOOL DISTRICT 3 | 7 8 | +1714160 ELWOOD C C SCH DIST 203 | 7 8 | +1714410 ESWOOD C C DISTRICT 269 | 7 4 | +1714430 EUREKA C U DIST 140 | 4 8 | +1715180 FISHER C U SCHOOL DISTRICT 1 | 7 8 | +1715490 FORRESTVILLE VALLEY C U S D 221 | 7 8 | +1716230 GARDNER COMM CONS SCH DIST 72C | 7 8 | +1716260 GARDNER S WILMINGTON THS DIST 73 | 7 8 | +1716290 GAVIN SCHOOL DIST 37 | 7 3 | +1716530 GERMANTOWN SCHOOL DISTRICT 60 | 7 8 | +1717370 GRANT PARK C U SCHOOL DIST 6 | 7 8 | +1717700 GREENVIEW C U SCH DIST 200 | 7 8 | +1717760 GRIDLEY C U SCH DIST 10 | 7 8 | +1718840 HERSCHER COMM UNIT SCH DIST 2 | 7 8 | +1718870 HEYWORTH C U SCH DIST 4 | 7 8 | +1719260 HINCKLEY BIG ROCK C U S D 429 | 7 8 | +1719960 ILLINI BLUFFS CU SCH DIST 327 | 7 8 | +1719980 ILLIOPOLIS C U SCHOOL DIST 12 | 7 8 | +1721300 HIAWATHA C U SCHOOL DIST 426 | 7 8 | +1722710 LEXINGTON C U SCH DIST 7 | 7 8 | +1723310 LIVINGSTON C C SCHOOL DIST 4 | 7 8 | +1723700 LUDLOW C C SCHOOL DIST 142 | 7 8 | +1724190 MALTA COMM UNIT SCH DIST 433 | 7 8 | +1724750 MAROA FORSYTH C U SCH DIST 2 | 7 8 | +1725190 MAZON-VERONA-KINSMAN ESD 2C | 7 8 | +1725690 MERIDIAN C U SCH DIST 223 | 7 8 | +1727990 COMMUNITY UNIT SCHOOL DIST 16 | 7 8 | +1728270 NEWARK COMM CONS SCH DIST 66 | 7 3 | + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | +1728470 NIANTIC-HARRISTOWN C U S D 6 | 7 8 | +1729640 OGDEN COMM CONS SCH DIST 212 | 7 8 | +1729890 OLYMPIA C U SCHOOL DIST 16 | 7 8 | +1731140 PEMBROKE C C SCHOOL DISTRICT 259 | 7 8 | +1731410 PORTA COMM UNIT SCHOOL DIST 202 | 7 8 | +1731920 PLEASANT PLAINS C U SCHOOL DIST 8 | 7 8 | +1732560 PRAIRIEVIEW COMM CONS DIST 192 | 7 8 | +1734140 ROANOKE BENSON C U S DIST 60 | 7 8 | +1735970 INDIAN CREEK COMM UNIT DIST 425 | 7 8 | +1736240 SHIRLAND C C SCHOOL DIST 134 | 7 4 | +1736510 SMITHTON C C SCHOOL DIST 130 | 7 8 | +1736570 SOMONAUK C U SCHOOL DIST 432 | 7 8 | +1736780 SOUTH PEKIN SCHOOL DIST 137 | 7 8 | +1736840 SOUTH WILMINGTON CONS SCH DIST 74 | 7 8 | +1736990 SPRING GROVE SCH DIST 11 | 7 8 | +1737120 ST ANNE C C SCHOOL DIST 256 | 7 8 | +1737140 ST ANNE COMM H S DIST 302 | 7 8 | +1737350 TRIAD COMM UNIT SCHOOL DIST 2 | 3 8 | +1737380 ST JOSEPH C C SCHOOL DIST 169 | 7 8 | +1737410 ST JOSEPH OGDEN C H S DIST 305 | 7 8 | +1737440 ST LIBORY CONS SCH DIST 30 | 7 8 | +1738790 THOMASBORO C C SCHOOL DIST 130 | 7 8 | +1739120 TOLONO C U SCHOOL DIST 7 | 7 8 | +1739450 TRI CITY COMM UNIT SCH DIST 1 | 7 8 | +1740830 WARRENSBURG-LATHAM C U DIST 11 | 7 8 | +1740920 LOWPOINT-WASHBURN C U S DIST 21 | 7 8 | +1742480 WILLIAMSVILLE C U SCHOOL DIST 15 | 7 8 | +1742790 WINNEBAGO C U SCH DIST 323 | 7 8 | +1802130 CLINTON CENTRAL SCHOOL CORP | 7 8 | +1803210 SHELBY EASTERN SCHOOLS | 7 3 | +1803330 EMINENCE COMMUNITY SCHOOL CORP | 7 3 | +1804140 MONROE-GREGG SCHOOL DISTRICT | 7 3 | +1804470 WESTERN SCHOOL CORP | 7 8 | +1806660 MILL CREEK COMMUNITY SCH CORP | 7 8 | +1807500 NEW HARMONY TOWN & TWP CON SCH | 7 8 | +1807620 NINEVEH-HENSLEY-JACKSON UNITED | 7 8 | +1808070 NORTH VERMILLION COM SCH CORP | 7 8 | +1809120 JOHN GLENN SCHOOL CORPORATION | 7 8 | +1809600 RISING SUN-OHIO CO COM | 7 8 | +1811190 SUNMAN-DEARBORN COM SCH CORP | 7 8 | +1812240 WA-NEE COMMUNITY SCHOOLS | 4 8 | +1905070 BONDURANT-FARRAR COMM SCHOOL DISTRICT | 7 8 | +1906660 CENTER POINT-URBANA COMM SCHOOL DISTRICT | 7 8 | +1908520 DALLAS CENTER-GRIMES COMM SCHOOL DISTRICT | 7 4 | +1909540 DUNKERTON COMM SCHOOL DISTRICT | 7 8 | +1917250 LISBON COMM SCHOOL DISTRICT | 7 8 | +1918750 MARTENSDALE-ST MARYS COMM SCHOOL DISTRICT | 7 8 | +1920820 NORTH LINN COMM SCHOOL DISTRICT | 7 4 | +1923110 PLEASANT VALLEY COMM SCHOOL DISTRICT | 7 4 | +1926580 SOLON COMM SCHOOL DISTRICT | 7 8 | +1931350 WESTERN DUBUQUE COMM SCHOOL DISTRICT | 7 8 | +1931950 WOODBURY CENTRAL COMM SCHOOL DISTRICT | 7 8 | +1932010 WOODWARD-GRANGER COMM SCHOOL DISTRICT | 7 8 | +2003780 BASEHOR-LINWOOD | 7 8 | + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | +2006330 FT LEAVENWORTH | 7 3 | +2006540 GODDARD | 7 8 | +2008550 BLUESTEM | 7 8 | +2008970 LOUISBURG | 7 8 | +2011080 RENWICK | 7 8 | +2011220 FLINTHILLS | 7 3 | +2012210 TONGANOXIE | 7 8 | +2012300 CIRCLE | 7 8 | +2101020 CARTER CO | 7 4 | +2102130 GALLATIN CO | 7 8 | +2102250 GRANT CO | 7 8 | +2102400 GREENUP CO | 7 8 | +2102490 HARDIN CO | 6 7 | +2102990 JEFFERSON CO | 3 2 | +2103960 MCCRACKEN CO | 6 7 | +2104530 OLDHAM CO | 7 3 | +2104740 PENDLETON CO | 7 8 | +2105700 WALTON VERONA IND | 7 3 | +2106000 WOODFORD CO | 4 8 | +2200024 SAINT LANDRY CHARTER SCHOOL - AGENCY | 7 4 | +2200030 ACADIA PARISH SCHOOL BOARD | 4 8 | +2302850 BAR HARBOR | 6 7 | +2303780 BRUNSWICK | 6 7 | +2304860 DAYTON | 6 8 | +2304890 DEDHAM | 6 8 | +2305300 EC-S CTY TEC 10 | 6 7 | +2308100 MECHANIC FALLS | 7 8 | +2308280 MILLINOCKET | 6 7 | +2309100 N PENOB TC R 3 | 6 7 | +2309110 SCH APPL TEC RG 9 | 6 7 | +2309330 ORRINGTON | 6 8 | +2310500 SANFORD | 6 7 | +2310710 S.A.D. 15 GRAY | 6 8 | +2311010 S.A.D. 24 VAN BUREN | 6 7 | +2311160 S.A.D. 29 HOULTON | 6 7 | +2311790 S.A.D. 6 BUXTON | 6 8 | +2314160 S.A.D. 52 TURNER | 6 8 | +2314210 S.A.D. 61 BRIDGTON | 7 6 | +2314330 S.A.D. 49 FAIRFIELD | 7 6 | +2314360 S.A.D. 47 OAKLAND | 6 7 | +2314440 S.A.D. 64 CORINTH | 6 7 | +2314470 S.A.D. 63 EDDINGTON | 2 8 | +2314560 S.A.D. 59 MADISON | 6 7 | +2314610 S.A.D. 53 PITTSFIELD | 6 7 | +2314760 S.A.D. 67 LINCOLN | 6 7 | +2314761 S.A.D. 68 DOVER-FOXCROFT | 6 7 | +2314768 S.A.D. 75 TOPSHAM | 8 7 | +2400030 BOARD OF EDUC, ALLEGANY COUNTY | 7 4 | +2400060 ANNE ARUNDEL COUNTY PUB SCHLS | 7 3 | +2400150 CALVERT COUNTY PUBLIC SCHOOLS | 4 8 | +2400240 BOARD OF ED OF CECIL COUNTY | 4 8 | +2400270 BOARD OF EDUC, CHARLES COUNTY | 8 3 | +2400330 FREDERICK COUNTY BOARD OF ED | 7 3 | +2400390 HARFORD COUNTY PUBLIC SCHOOLS | 8 3 | + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | +2400510 PRINCE GEORGES COUNTY PUB SCHS | 4 3 | +2400540 BOARD OF ED,QUEEN ANNES COUNTY | 7 8 | +2400600 SAINT MARYS COUNTY PUBLIC SCHS | 6 7 | +2400660 BOARD OF ED, WASHINGTON COUNTY | 7 2 | +2500002 SPENCER-E BROOKFIELD | 6 3 | +2500038 FRANCIS W PARKER CHARTER | 6 8 | +2502530 BERKSHIRE HILLS | 6 7 | +2502970 BREWSTER | 6 8 | +2503330 CARLISLE | 6 8 | +2503360 CARVER | 6 8 | +2504560 NAUSET | 4 8 | +2505270 GILL-MONTAGUE | 4 7 | +2505490 GREENFIELD | 8 7 | +2505500 GROTON-DUNSTABLE | 8 3 | +2506330 HOPKINTON | 7 8 | +2506570 LAKEVILLE | 4 8 | +2508310 NASHOBA | 4 8 | +2508790 NORTH MIDDLESEX | 4 8 | +2509180 ORANGE | 3 7 | +2509210 ORLEANS | 7 8 | +2509900 RALPH C MAHAR | 8 7 | +2510080 RICHMOND | 6 8 | +2510710 SHERBORN | 7 8 | +2511370 SUNDERLAND | 1 8 | +2511740 TRITON | 7 8 | +2511880 WACHUSETT | 7 8 | +2512060 WAREHAM | 4 8 | +2600066 GVSU--DISCOVERY ELEM. SCHOOL | 7 8 | +2601920 ADDISON COMMUNITY SCHOOLS | 7 8 | +2603240 ARMADA AREA SCHOOLS | 7 8 | +2603870 BANGOR PUBLIC SCHS. (VAN BUREN | 3 8 | +2604650 BELLEVUE COMMUNITY SCHOOLS | 7 8 | +2606270 BLOOMINGDALE PUBLIC SCHOOL DIS | 7 8 | +2606780 BRIDGEPORT-SPAULDING COMM. S/D | 7 4 | +2607800 CAPAC COMMUNITY SCHOOL DISTRIC | 7 8 | +2610020 CLIMAX-SCOTTS COMMUNITY SCHOOL | 4 8 | +2610050 CLINTON COMMUNITY SCHOOLS | 3 8 | +2610200 COLEMAN COMMUNITY SCH. DISTRIC | 3 8 | +2610650 CONCORD COMMUNITY SCHOOLS | 7 8 | +2610980 COVERT PUBLIC SCHOOLS | 7 8 | +2611730 DEERFIELD PUBLIC SCHOOLS | 7 8 | +2612240 DRYDEN COMMUNITY SCHOOLS | 7 8 | +2612810 EAU CLAIRE PUBLIC SCHOOLS | 7 8 | +2614230 FENNVILLE PUBLIC SCHOOLS | 7 8 | +2614700 FOWLER PUBLIC SCHOOLS | 4 8 | +2615060 FREELAND COMMUNITY SCH. DISTRI | 7 8 | +2615450 GALESBURG-AUGUSTA COMM. SCHOOL | 7 8 | +2615480 GALIEN TOWNSHIP SCHOOL DISTRIC | 7 8 | +2616050 GOBLES PUBLIC SCHOOL DISTRICT | 6 8 | +2616830 GRASS LAKE COMMUNITY SCHOOLS | 7 8 | +2617250 GULL LAKE COMMUNITY SCHOOLS | 4 8 | +2617340 HAGAR TOWNSHIP S/D #6 | 7 8 | +2617400 HAMILTON COMMUNITY SCHOOLS | 2 8 | +2617640 HANOVER-HORTON SCHOOLS | 3 4 | + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | +2617910 HARTLAND CONSOLIDATED SCHOOLS | 7 8 | +2617970 HASTINGS AREA SCHOOL DISTRICT | 3 6 | +2618180 HEMLOCK PUBLIC SCHOOL DISTRICT | 7 8 | +2618510 HOLTON PUBLIC SCHOOLS | 7 8 | +2618540 HOMER COMMUNITY SCHOOLS | 7 8 | +2618570 HOPKINS PUBLIC SCHOOLS | 7 8 | +2618840 HUDSONVILLE PUBLIC SCH. DISTRI | 7 4 | +2620280 KENOWA HILLS PUBLIC SCHOOLS | 2 4 | +2620940 LAKEVILLE COMMUNITY SCHOOLS | 7 8 | +2621180 LAPEER COMMUNITY SCHOOLS | 4 8 | +2622050 LOWELL AREA SCHOOLS | 7 4 | +2622980 MARTIN PUBLIC SCHOOLS | 7 8 | +2624180 MONTAGUE AREA PUBLIC SCHOOLS | 6 8 | +2624420 MONTROSE COMMUNITY SCHOOLS | 7 8 | +2624960 NAPOLEON COMMUNITY SCHOOLS | 7 8 | +2625230 NEW HAVEN COMMUNITY SCHOOLS | 7 8 | +2625680 NORTH BRANCH AREA SCHOOLS | 7 8 | +2626370 OLIVET COMMUNITY SCHOOLS | 7 8 | +2626520 ONSTED COMMUNITY SCHOOLS | 7 8 | +2627960 PEWAMO-WESTPHALIA COMM. SCHOOL | 7 4 | +2628140 PINCKNEY COMMUNITY SCHOOLS | 7 8 | +2628530 PLAINWELL COMMUNITY SCHOOLS | 7 4 | +2629160 POTTERVILLE PUBLIC SCHOOLS | 7 8 | +2629790 RIVER VALLEY SCHOOL DISTRICT | 7 8 | +2632820 ST. JOHNS PUBLIC SCHOOLS | 7 4 | +2633030 STOCKBRIDGE COMMUNITY SCHOOLS | 7 8 | +2633750 TEKONSHA COMMUNITY SCHOOLS | 7 8 | +2634950 VICKSBURG COMMUNITY SCHOOLS | 7 8 | +2635550 WAYLAND UNION SCHOOLS | 7 4 | +2636600 YALE PUBLIC SCHOOLS | 7 8 | +2680160 BERRIEN ISD | 7 8 | +2680520 INGHAM ISD | 7 4 | +2680660 LAPEER ISD | 7 3 | +2700008 ST. LOUIS COUNTY | 3 8 | +2700045 MEEKER & WRIGHT SP ED COOP | 7 8 | +2700055 HIAWATHA VALLEY ED. DIST. | 4 6 | +2700105 BELGRADE-BROOTEN-ELROSA | 7 8 | +2700114 RIGHT STEP ACADEMY | 7 1 | +2700123 HOWARD LAKE-WAVERLY-WINSTED | 7 8 | +2700137 SUMMIT SCHOOL FOR THE ARTS | 7 8 | +2700143 CENTRAL MINNESOTA JOINT POWERS | 7 8 | +2702930 ALBANY | 7 8 | +2703150 ANNANDALE | 3 8 | +2703660 BARNESVILLE | 7 8 | +2706060 BRAHAM | 7 8 | +2707200 BUFFALO | 4 3 | +2707350 BYRON | 7 8 | +2708880 FRANCONIA | 7 8 | +2709360 CLIMAX | 7 8 | +2709440 COLD SPRING | 7 8 | +2710060 DASSEL-COKATO | 7 8 | +2710260 DILWORTH-GLYNDON-FELTON | 7 4 | +2711370 ELK RIVER | 7 3 | +2711820 FARMINGTON | 7 3 | + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | +2711910 FERTILE-BELTRAMI | 3 8 | +2712300 FOSSTON | 7 8 | +2713560 HAWLEY | 3 8 | +2714190 HOLDINGFORD | 4 8 | +2714280 HOUSTON | 7 8 | +2717220 KIMBALL | 7 8 | +2717250 LACRESCENT-HOKAH | 7 4 | +2723820 NORTH BRANCH | 7 8 | +2723910 NORWOOD | 7 8 | +2730150 RANDOLPH | 6 8 | +2732070 ROCKFORD | 6 8 | +2732550 RUSH CITY | 7 8 | +2732880 SAUK RAPIDS | 7 4 | +2733300 SPRING GROVE | 6 8 | +2733510 ST. CLOUD | 5 2 | +2733540 ST. FRANCIS | 7 3 | +2733720 NETT LAKE | 7 8 | +2738190 STILLWATER | 7 3 | +2740810 ULEN-HITTERDAL | 7 8 | +2791449 WIN-E-MAC | 7 8 | +2800001 MISSISSIPPI STATE HOSPITAL | 8 4 | +2801196 HUDSPETH CENTER ADMINISTRATION | 7 4 | +2801510 FORREST COUNTY AG HIGH SCHOOL | 7 4 | +2801740 HANCOCK CO SCHOOL DIST | 7 8 | +2801770 HARRISON CO SCHOOL DIST | 7 2 | +2801840 HINDS CO AHS | 7 8 | +2801860 HINDS CO SCHOOL DIST | 7 8 | +2802160 JACKSON CO SCHOOL DIST | 8 4 | +2802400 LAMAR COUNTY SCHOOL DISTRICT | 7 8 | +2802760 LUMBERTON PUBLIC SCHOOL | 7 8 | +2803830 RANKIN CO SCHOOL DIST | 7 8 | +2900009 DIVISION OF YOUTH SERVICES | 4 8 | +2902577 STATE SCHOOLS SEVERELY HANDICP | 7 6 | +2903000 SANTA FE R-X | 7 8 | +2908430 CHADWICK R-I | 3 8 | +2909780 CLEVER R-V | 7 8 | +2910080 CONCORDIA R-II | 7 8 | +2910320 SHERWOOD CASS R-VIII | 7 8 | +2910590 BUCHANAN CO. R-IV | 3 8 | +2910800 DIAMOND R-IV | 2 8 | +2911070 DREXEL R-IV | 3 8 | +2911160 EAST LYNNE 40 | 6 8 | +2911250 EAST BUCHANAN CO. C-1 | 6 8 | +2911400 ELSBERRY R-II | 7 8 | +2911700 FAIR GROVE R-X | 7 8 | +2911940 MID-BUCHANAN CO. R-V | 6 4 | +2912180 FORDLAND R-III | 6 8 | +2913080 GRAIN VALLEY R-V | 7 8 | +2913680 HARDIN-CENTRAL C-2 | 6 8 | +2916450 KEARNEY R-I | 7 8 | +2918220 LAWSON R-XIV | 7 8 | +2919170 GREENE CO. R-VIII | 6 8 | +2919200 LONEDELL R-XIV | 6 3 | +2920670 MEHLVILLE R-IX | 6 3 | + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | +2921060 MISSOURI CITY 56 | 6 8 | +2921810 NEOSHO R-V | 6 4 | +2921960 NEW HAVEN | 6 8 | +2922500 NIANGUA R-V | 7 8 | +2922710 NORTH ANDREW CO. R-VI | 7 8 | +2922830 NORTH PLATTE CO. R-I | 7 8 | +2922890 NORTHWEST R-I | 7 8 | +2923340 GASCONADE CO. R-II | 6 7 | +2923460 MERAMEC VALLEY R-III | 6 3 | +2923730 RAYMORE-PECULIAR R-II | 6 8 | +2927540 SARCOXIE R-II | 6 8 | +2927570 SAVANNAH R-III | 7 4 | +2927900 SENECA R-VII | 7 8 | +2928290 SILEX R-I | 7 8 | +2928740 SPARTA R-III | 7 8 | +2929470 STET R-XV | 6 3 | +2929640 STRAFFORD R-VI | 3 8 | +2929670 STRASBURG C-3 | 6 8 | +2929700 STURGEON R-V | 7 8 | +2930420 EAST NEWTON CO. R-VI | 7 8 | +2930450 TROY R-III | 7 3 | +2930990 WALNUT GROVE R-V | 3 8 | +2931500 WEBB CITY R-VII | 7 4 | +2931560 WELLINGTON-NAPOLEON R-IX | 6 8 | +2932010 WILLARD R-II | 7 8 | +2932190 WINFIELD R-IV | 6 8 | +2932310 WRIGHT CITY R-II | 6 8 | +3004890 BROADVIEW ELEM | 6 8 | +3004920 BROADVIEW H S | 6 8 | +3005310 BUTTE H S | 3 7 | +3008130 CUSTER K-12 SCHOOLS | 3 4 | +3010920 EVERGREEN ELEM | 3 7 | +3018570 MISSOULA ELEM | 7 5 | +3024300 SUN RIVER VALLEY ELEM | 6 4 | +3024330 SIMMS H S | 3 4 | +3025130 CENTERVILLE ELEM | 7 4 | +3025140 CENTERVILLE H S | 7 4 | +3026880 ULM ELEM | 7 4 | +3100021 WAVERLY PUBLIC SCHOOLS | 7 8 | +3100071 TEKAMAH-HERMAN COMMUNITY SCHS | 6 7 | +3100088 NORRIS SCHOOL DIST 160 | 7 8 | +3103990 BENNINGTON PUBLIC SCHOOLS | 7 8 | +3104950 RAYMOND CENTRAL SCHOOLS | 7 4 | +3163000 WASHINGTON PUBLIC SCHOOL | 6 8 | +3167380 OLIVE BRANCH PUBLIC SCHOOL | 7 8 | +3170110 ELKHORN PUBLIC SCHOOLS | 7 8 | +3173050 LOUISVILLE PUBLIC SCHOOLS | 1 8 | +3174200 CONESTOGA PUBLIC SCHOOLS | 3 8 | +3176860 SO SIOUX CITY COMMUNITY SCHS | 7 4 | +3178030 VALLEY PUBLIC SCHOOLS | 4 8 | +3178360 WATERLOO PUBLIC SCHOOLS | 7 8 | +3180030 EDUCATIONAL SERVICE UNIT 3 | 7 8 | +3200090 DOUGLAS COUNTY SCHOOL DISTRICT | 3 7 | +3200120 ELKO COUNTY SCHOOL DISTRICT | 2 7 | + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | +3200240 LANDER COUNTY SCHOOL DISTRICT | 4 7 | +3200360 NYE COUNTY SCHOOL DISTRICT | 4 3 | +3200480 WASHOE COUNTY SCHOOL DISTRICT | 7 2 | +3300017 EXETER REGION COOPERATIVE | 6 3 | +3300616 MILTON SCH DIST | 7 8 | +3301650 BARRINGTON SCH DIST | 6 8 | +3302070 BROOKLINE SCH DIST | 3 8 | +3303540 HAMPTON FALLS SCH DIST | 7 8 | +3304030 JAFFREY-RINDGE COOP SCH DIST | 8 7 | +3304380 LITTLETON SCH DIST | 6 7 | +3304950 MONT VERNON SCH DIST | 7 8 | +3305580 PEMBROKE SCH DIST | 4 7 | +3306720 TIMBERLANE REGIONAL SCH DIST | 7 8 | +3307110 WILTON SCH DIST | 6 8 | +3400810 ALLOWAY TWP | 7 8 | +3401110 AVALON BORO | 7 8 | +3401200 BASS RIVER TWP | 7 8 | +3401290 BEACH HAVEN BORO | 6 8 | +3403480 COMMERCIAL TWP | 7 8 | +3403620 CUMBERLAND REGIONAL | 6 8 | +3403660 DEERFIELD TWP | 7 8 | +3403720 DELAWARE TWP | 4 8 | +3403840 DENNIS TWP | 7 8 | +3403960 DOWNE TWP | 6 8 | +3404650 ELMER BORO | 6 8 | +3405130 FARMINGDALE BORO | 7 8 | +3405340 FRANKFORD TWP | 7 8 | +3405460 FRANKLIN TWP | 7 8 | +3405940 GLEN RIDGE BORO | 8 3 | +3406090 GREEN TWP | 7 8 | +3406150 GREENWICH TWP | 6 8 | +3406600 HAMPTON BORO | 3 8 | +3407470 HOPE TWP | 6 8 | +3407530 HOPEWELL VALLEY REGIONAL | 6 3 | +3407560 HOWELL TWP | 7 8 | +3407980 KINGSWAY REGIONAL | 6 8 | +3408070 KNOWLTON TWP | 3 8 | +3408910 LONG BEACH ISLAND | 6 8 | +3409510 MANSFIELD TWP | 7 8 | +3409780 MAURICE RIVER TWP | 5 8 | +3411070 MULLICA TWP | 7 8 | +3411520 NORTH CALDWELL BORO | 7 3 | +3411980 OCEAN CO VOC-TECH | 7 3 | +3412210 OLDMANS TWP | 6 8 | +3412810 PEMBERTON TWP | 6 3 | +3413260 POHATCONG TWP | 8 3 | +3413380 PORT REPUBLIC CITY | 6 8 | +3413620 RANCOCAS VALLEY REGIONAL | 6 3 | +3414220 ROOSEVELT BORO | 7 8 | +3414610 SANDYSTON-WALPACK TWP | 6 8 | +3415270 SOUTH HARRISON TWP | 6 8 | +3415750 STILLWATER TWP | 6 8 | +3416560 UPPER FREEHOLD REGIONAL | 7 8 | +3417460 WEST ESSEX REGIONAL | 8 3 | + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | +3417700 W WINDSOR-PLAINSBORO REG | 7 8 | +3418240 WOODLAND TWP | 7 8 | +3500060 ALBUQUERQUE PUBLIC SCHOOLS | 4 1 | +3500210 BERNALILLO PUBLIC SCHOOLS | 7 3 | +3500390 CENTRAL CONSOLIDATED SCHOOLS | 6 7 | +3500660 CUBA INDEPENDENT SCHOOLS | 6 8 | +3501080 GADSDEN INDEPENDENT SCHOOLS | 7 4 | +3501230 HATCH VALLEY MUNICIPAL SCHOOLS | 7 8 | +3501380 JEMEZ MOUNTAIN PUBLIC SCHOOLS | 3 7 | +3501500 LAS CRUCES PUBLIC SCHOOLS | 7 2 | +3501680 LOS LUNAS PUBLIC SCHOOLS | 7 3 | +3502370 SANTA FE PUBLIC SCHOOLS | 7 2 | +3600010 COBLESKILL-RICHMONDVILLE CSD | 3 4 | +3600013 ONEIDA CITY SD | 7 4 | +3600016 AVERILL PARK CSD | 6 8 | +3602730 WINDSOR CSD | 6 8 | +3602820 ALTMAR-PARISH-WILLIAMSTOWN CSD | 6 8 | +3603210 ARGYLE CSD | 6 8 | +3603270 ARLINGTON CSD | 7 3 | +3604530 BEMUS POINT CSD | 7 8 | +3604920 EAST BLOOMFIELD CSD | 6 4 | +3605010 BOLTON CSD | 6 8 | +3605040 ADIRONDACK CSD | 4 8 | +3605310 BREWSTER CSD | 6 8 | +3605370 BRIDGEHAMPTON UFSD | 7 8 | +3605670 BROOKFIELD CSD | 6 8 | +3606240 CAMDEN CSD | 6 4 | +3606300 CANAJOHARIE CSD | 7 8 | +3606420 CANDOR CSD | 7 8 | +3606660 CASSADAGA VALLEY CSD | 6 8 | +3606900 CENTRAL SQUARE CSD | 7 8 | +3607860 CLYDE-SAVANNAH CSD | 4 8 | +3608340 PEMBROKE CSD | 6 8 | +3608850 DE RUYTER CSD | 6 8 | +3609210 DOVER UFSD | 7 8 | +3609360 DUANESBURG CSD | 6 8 | +3609630 EAST GREENBUSH CSD | 8 4 | +3610230 EDINBURG COMN SD | 6 8 | +3611190 FONDA-FULTONVILLE CSD | 7 8 | +3611280 FORT ANN CSD | 6 8 | +3611370 FORT PLAIN CSD | 6 8 | +3611610 FREWSBURG CSD | 2 8 | +3612120 GILBOA-CONESVILLE CSD | 2 8 | +3612300 GORHAM-MIDDLESEX CSD (MARCUS W | 2 8 | +3612840 GREENPORT UFSD | 7 8 | +3612900 GREENWICH CSD | 7 8 | +3612990 SPRINGVILLE-GRIFFITH INST CSD | 7 3 | +3613590 HANNIBAL CSD | 7 8 | +3613710 HARPURSVILLE CSD | 7 8 | +3613830 HARTFORD CSD | 7 8 | +3614400 HIGHLAND CSD | 4 7 | +3614430 HIGHLAND FALLS CSD | 8 3 | +3614610 HOLLEY CSD | 2 8 | +3614700 HONEOYE FALLS-LIMA CSD | 6 8 | + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | +3615570 ITHACA CITY SD | 7 5 | +3615720 JEFFERSON CSD | 7 8 | +3615870 JOHNSBURG CSD | 6 8 | +3615990 JORDAN-ELBRIDGE CSD | 6 8 | +3616470 LAKE GEORGE CSD | 6 8 | +3616560 EVANS-BRANT CSD (LAKE SHORE) | 7 8 | +3616980 NORTH ROSE-WOLCOTT CSD | 6 8 | +3617640 LIVONIA CSD | 6 8 | +3617970 LYNDONVILLE CSD | 7 8 | +3619170 MEXICO CSD | 7 8 | +3619260 MIDDLEBURGH CSD | 6 8 | +3619380 MILLBROOK CSD | 6 8 | +3619560 MINISINK VALLEY CSD | 2 8 | +3619650 MONROE-WOODBURY CSD | 3 8 | +3620970 NORTH COLLINS CSD | 3 8 | +3621450 DALTON-NUNDA CSD (KESHEQUA) | 3 8 | +3621540 FIRE ISLAND UFSD | 3 8 | +3622050 OSWEGO CITY SD | 3 4 | +3622530 PAWLING CSD | 7 8 | +3623040 PINE PLAINS CSD | 2 8 | +3623370 POLAND CSD | 6 8 | +3623430 PORT BYRON CSD | 3 8 | +3623520 PORT JERVIS CITY SD | 6 3 | +3623970 PUTNAM CSD | 6 8 | +3624240 RED HOOK CSD | 6 8 | +3624360 REMSEN CSD | 7 8 | +3624690 RIVERHEAD CSD | 6 3 | +3625320 FLORIDA UFSD | 6 8 | +3625650 SANDY CREEK CSD | 6 8 | +3626100 SCHOHARIE CSD | 6 8 | +3626160 SCHUYLERVILLE CSD | 7 8 | +3626580 SHARON SPRINGS CSD | 6 8 | +3626640 SHELTER ISLAND UFSD | 6 8 | +3626760 SHERRILL CITY SD | 3 8 | +3627120 SODUS CSD | 7 8 | +3627660 SOUTHWESTERN CSD AT JAMESTOWN | 7 4 | +3627750 SPENCER-VAN ETTEN CSD | 7 8 | +3627930 ST JOHNSVILLE CSD | 6 8 | +3628110 STILLWATER CSD | 6 8 | +3628800 TOWN OF WEBB UFSD | 6 8 | +3629130 TULLY CSD | 6 8 | +3629190 TUXEDO UFSD | 6 8 | +3629250 UNION SPRINGS CSD | 7 8 | +3630160 WATERVILLE CSD | 6 8 | +3630270 WAVERLY CSD | 6 4 | +3630330 WAYNE CSD | 3 8 | +3630420 WEEDSPORT CSD | 3 8 | +3630930 BRIDGEWATER-WEST WINFIELD CSD | 6 8 | +3630990 WESTFIELD CSD | 7 8 | +3631020 WESTHAMPTON BEACH UFSD | 7 8 | +3631050 WESTMORELAND CSD | 6 8 | +3631440 WILLIAMSON CSD | 6 8 | +3680900 BOCES TOMPKINS-SENECA-TIOGA | 6 7 | +3700011 CUMBERLAND COUNTY SCHOOLS | 4 2 | + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | +3700012 PITT COUNTY SCHOOLS | 8 2 | +3700030 ALAMANCE-BURLINGTON SCHOOLS | 7 2 | +3700053 WOODS CHARTER | 7 4 | +3700070 EAST WAKE ACADEMY | 7 8 | +3700090 ALEXANDER COUNTY SCHOOLS | 6 8 | +3700420 BRUNSWICK COUNTY SCHOOLS | 7 8 | +3700450 BUNCOMBE COUNTY SCHOOLS | 6 4 | +3700580 CALDWELL COUNTY SCHOOLS | 7 2 | +3700630 CARTERET COUNTY SCHOOLS | 7 6 | +3700690 CATAWBA COUNTY SCHOOLS | 6 8 | +3700750 CHATHAM COUNTY SCHOOLS | 8 4 | +3701080 CURRITUCK COUNTY SCHOOLS | 7 3 | +3701530 FRANKLIN COUNTY SCHOOLS | 7 8 | +3702820 MADISON COUNTY SCHOOLS | 7 8 | +3704380 STOKES COUNTY SCHOOLS | 7 4 | +3705040 YADKIN COUNTY SCHOOLS | 7 8 | +3800044 NORTHERN CASS 97 | 7 8 | +3802320 BALDWIN 29 | 7 4 | +3804090 CENTRAL CASS 17 | 7 8 | +3806360 EMERADO 127 | 7 8 | +3806930 FLASHER 39 | 7 8 | +3807830 GLEN ULLIN 48 | 7 8 | +3809180 HEBRON 13 | 7 8 | +3810860 LARIMORE 44 | 7 8 | +3811540 LITTLE HEART 4 | 7 4 | +3812000 MANVEL 125 | 7 8 | +3812020 MAPLE VALLEY 4 | 7 8 | +3812030 MAPLETON 7 | 7 8 | +3812510 MCKENZIE 34 | 7 4 | +3812720 MENOKEN 33 | 7 4 | +3813870 NEW SALEM 7 | 7 8 | +3814340 NORTHWOOD 129 | 7 8 | +3814730 PAGE 80 | 7 8 | +3815670 REGAN 2 | 7 8 | +3816950 SIMS 8 | 7 8 | +3817760 STERLING 35 | 7 4 | +3818280 THOMPSON 61 | 7 8 | +3820130 WING 28 | 7 8 | +3904480 SOUTH-WESTERN CITY SD | 3 2 | +3904513 WORTHINGTON CITY SD | 3 2 | +3904588 PYMATUNING VALLEY LOCAL SD | 7 8 | +3904603 EASTERN LOCAL SD | 7 8 | +3904627 SOUTHEASTERN LOCAL SD | 7 8 | +3904632 CLERMONT-NORTHEASTERN LOCAL S | 7 8 | +3904645 UNITED LOCAL SD | 7 8 | +3904650 BUCKEYE CENTRAL LOCAL SD | 7 8 | +3904651 COLONEL CRAWFORD LOCAL SD | 7 8 | +3904674 BIG WALNUT LOCAL SD | 7 8 | +3904681 PERKINS LOCAL SD | 6 7 | +3904684 AMANDA-CLEARCREEK LOCAL SD | 7 8 | +3904685 BERNE UNION LOCAL SD | 7 8 | +3904686 BLOOM CARROLL LOCAL SD | 7 8 | +3904687 FAIRFIELD UNION LOCAL SD | 2 8 | +3904707 PETTISVILLE LOCAL SD | 7 3 | + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | +3904754 CONOTTON VALLEY UNION LOCAL S | 7 8 | +3904779 EDISON LOCAL SD | 7 8 | +3904790 PERRY LOCAL SD | 7 8 | +3904816 KEYSTONE LOCAL SD | 7 8 | +3904825 JEFFERSON LOCAL SD | 7 3 | +3904862 MIAMI EAST LOCAL SD | 7 8 | +3904863 NEWTON LOCAL SD | 7 8 | +3904946 PLYMOUTH LOCAL SD | 7 8 | +3904966 WHEELERSBURG LOCAL SD | 6 7 | +3904994 SANDY VALLEY LOCAL SD | 7 8 | +3905000 MANCHESTER LOCAL SD | 7 3 | +3905001 GREEN LOCAL SD | 7 3 | +3905009 BLOOMFIELD-MESPO LOCAL SD | 7 4 | +3905017 JOSEPH BADGER LOCAL SD | 7 4 | +3905048 FORT FRYE LOCAL SD | 7 8 | +3905049 FRONTIER LOCAL SD | 7 8 | +3905051 WOLF CREEK LOCAL SD | 7 4 | +3905112 JEFFERSON COUNTY JVSD | 7 8 | +3906349 PORTAGE LAKES JVSD | 7 3 | +3906351 CENTRAL OHIO JVSD | 7 8 | +3910018 WARREN LOCAL SD | 7 4 | +4003300 ASHER | 7 8 | +4003450 AVANT | 7 8 | +4003570 BARNSDALL | 7 8 | +4004680 BLANCHARD | 7 8 | +4005160 BOWRING | 7 3 | +4005850 BURBANK | 7 8 | +4006030 BYARS | 7 8 | +4006120 CACHE | 7 8 | +4006240 CALUMET | 7 8 | +4007320 CHATTANOOGA | 7 8 | +4007380 CHELSEA | 7 8 | +4007710 CIMARRON | 7 8 | +4008790 COVINGTON-DOUGLAS | 7 8 | +4008940 COYLE | 7 8 | +4009000 CRESCENT | 7 8 | +4009750 DEPEW | 7 8 | +4009870 DIBBLE | 7 8 | +4010170 DRUMMOND | 7 8 | +4010500 EARLSBORO | 7 8 | +4010710 ELGIN | 7 8 | +4011700 FLETCHER | 7 8 | +4012090 FOYIL | 7 8 | +4012390 GANS | 7 8 | +4012420 GARBER | 7 8 | +4012630 GERONIMO | 7 8 | +4012900 GORE | 7 8 | +4013600 GYPSY | 7 8 | +4014970 HOMINY | 7 8 | +4015420 INDIAHOMA | 7 8 | +4015480 INOLA | 7 8 | +4016170 KELLYVILLE | 7 8 | +4016500 KIEFER | 7 8 | +4016740 KREMLIN-HILLSDALE | 7 8 | + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | +4017700 LIBERTY | 7 8 | +4017760 LIBERTY | 7 3 | +4017820 GUM SPRINGS | 7 8 | +4018630 LUTHER | 7 8 | +4018660 MACOMB | 7 8 | +4018840 MANNFORD | 7 8 | +4018900 MAPLE | 7 8 | +4018960 MARBLE CITY | 7 8 | +4019290 MAUD | 7 8 | +4019560 MC LOUD | 7 8 | +4020010 MILFAY | 7 3 | +4020550 MOUNDS | 7 8 | +4020910 MULHALL-ORLANDO | 7 8 | +4022560 OILTON | 7 8 | +4022620 OKAY | 7 8 | +4023040 OOLOGAH-TALALA | 7 8 | +4024510 PIONEER-PLEASANT VALE | 7 8 | +4025170 PRUE | 7 8 | +4026310 ROLAND | 7 8 | +4027630 SHIDLER | 7 8 | +4028170 SPERRY | 7 8 | +4028590 STERLING | 7 8 | +4030048 WOODLAND | 7 8 | +4030197 PORTER CONSOLIDATED | 7 8 | +4030630 UNION CITY | 7 8 | +4031140 VIAN | 7 8 | +4031500 WANETTE | 7 8 | +4031710 WASHINGTON | 7 8 | +4031950 WAUKOMIS | 7 8 | +4032010 WAYNE | 7 8 | +4033330 WYNONA | 7 8 | +4100015 GERVAIS SCH DIST 001 | 7 8 | +4101920 BEAVERTON SCH DIST 48J | 3 2 | +4102160 BLACHLY SCH DIST 090 | 7 4 | +4102580 BUTTE FALLS SCH DIST 091 | 7 8 | +4102780 CASCADE SCH DIST 005 | 7 8 | +4102970 CHENOWITH SCH DIST 009 | 6 7 | +4103260 COLUMBIA SCH DIST 6J | 7 8 | +4103270 COLTON SCH DIST 053 | 7 3 | +4103420 CORBETT SCH DIST 039 | 7 3 | +4107740 MARCOLA SCH DIST 079J | 7 4 | +4107980 MCKENZIE SCH DIST 068 | 7 4 | +4109530 PERRYDALE SCH DIST 21 | 7 8 | +4110200 PROSPECT SCH DIST 059 | 7 4 | +4110680 ROGUE RIVER SCH DIST 035 | 7 8 | +4111450 SILVER FALLS SCH DIST 4J | 3 8 | +4111610 SOUTH UMPQUA SCH DIST 019 | 6 7 | +4113350 WILLAMINA SCH DIST 30J | 7 8 | +4200022 CRESSON SECURE TREATMENT UNIT | 7 8 | +4202100 ALBERT GALLATIN AREA SD | 7 8 | +4202910 BALD EAGLE AREA SD | 6 8 | +4203300 BELLWOOD-ANTIS SD | 7 8 | +4203390 BENTON AREA SD | 7 8 | +4204080 BROWNSVILLE AREA SD | 3 8 | + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | +4204740 CAMBRIA HEIGHTS SD | 7 8 | +4205460 CRESTWOOD SD | 6 8 | +4206120 CLAYSBURG-KIMMEL SD | 6 8 | +4206420 CONEMAUGH TOWNSHIP AREA SD | 6 8 | +4206660 CONNELLSVILLE AREA SD | 3 8 | +4207540 DEER LAKES SD | 7 8 | +4208490 EAST LYCOMING SD | 7 8 | +4208820 EASTERN LANCASTER COUNTY SD | 4 8 | +4209600 KARNS CITY AREA SD | 7 8 | +4209932 LOYSVILLE YOUTH DEV CTR | 7 8 | +4209934 YOUTH FORESTRY CAMP #2 | 7 8 | +4209940 FOREST HILLS SD | 7 8 | +4210350 FRAZIER SD | 7 8 | +4211340 HAMBURG AREA SD | 4 8 | +4212300 JAMESTOWN AREA SD | 7 8 | +4212990 LACKAWANNA TRAIL SD | 7 8 | +4213710 LIGONIER VALLEY SD | 7 8 | +4215450 MILLVILLE AREA SD | 7 8 | +4216170 MOUNT PLEASANT AREA SD | 6 8 | +4216890 NEWPORT SD | 7 8 | +4217310 NORTH POCONO SD | 7 8 | +4217520 NORTHEASTERN YORK SD | 7 8 | +4217610 NORTHERN CAMBRIA SD | 7 4 | +4217640 NORTHERN LEBANON SD | 7 8 | +4217790 NORTHWEST AREA SD | 7 8 | +4218810 PENNS VALLEY AREA SD | 7 8 | +4220760 SALISBURY-ELK LICK SD | 7 8 | +4221180 SHADE-CENTRAL CITY SD | 6 8 | +4221240 SHAMOKIN AREA SD | 6 7 | +4221270 SHANKSVILLE-STONYCREEK SD | 7 8 | +4222170 SOUTH EASTERN SD | 7 8 | +4222260 SOUTHERN COLUMBIA AREA SD | 7 8 | +4222380 SOUTHERN YORK COUNTY SD | 7 8 | +4222410 SOUTHMORELAND SD | 6 8 | +4222530 SPRING COVE SD | 4 8 | +4222590 SPRING GROVE AREA SD | 7 8 | +4223040 SUSQUENITA SD | 6 8 | +4223820 TULPEHOCKEN AREA SD | 7 8 | +4223850 TUNKHANNOCK AREA SD | 6 8 | +4223880 TURKEYFOOT VALLEY AREA SD | 7 8 | +4224000 TWIN VALLEY SD | 7 8 | +4224060 UNION AREA SD | 6 7 | +4224540 UPPER PERKIOMEN SD | 3 8 | +4225740 WEST PERRY SD | 7 8 | +4226430 WILLIAMSBURG COMMUNITY SD | 7 8 | +4280491 NORTHUMBERLAND CO AVTS | 6 7 | +4400150 CHARIHO REG DIST | 6 8 | +4400600 LITTLE COMPTON SCH DIST | 6 8 | +4400630 MIDDLETOWN SCH DIST | 6 7 | +4500002 DORCHESTER SCHOOL DISTRICT 04 | 7 8 | +4500010 R D ANDERSON APP TECH CTR | 7 4 | +4500840 ANDERSON SCHOOL DISTRICT 03 | 7 8 | +4501110 BEAUFORT COUNTY SCHOOL DIST | 6 7 | +4502160 FLORENCE SCHOOL DISTRICT 02 | 7 8 | + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | +4502760 LEXINGTON SCHOOL DISTRICT 03 | 6 4 | +4503510 SPARTANBURG SCHOOL DISTRICT 02 | 4 8 | +4503600 SPARTANBURG SCHOOL DISTRICT 05 | 7 8 | +4503720 SUMTER SCHOOL DISTRICT 02 | 7 8 | +4700090 ANDERSON COUNTY SCHOOL DISTRCT | 7 4 | +4701020 DICKSON COUNTY SCHOOL DISTRICT | 7 8 | +4701170 FAYETTE COUNTY SCHOOL DISTRICT | 7 8 | +4704080 TIPTON COUNTY SCHOOL DISTRICT | 7 8 | +4704290 UNION COUNTY SCHOOL DISTRICT | 7 8 | +4704380 WASHINGTON COUNTY SCHOOL DIST | 4 8 | +4704530 WILLIAMSON COUNTY SCHOOL DIST | 3 2 | +4800008 DRIPPING SPRINGS ISD | 7 8 | +4800009 WIMBERLEY ISD | 7 8 | +4800010 HAYS CONS ISD | 7 8 | +4800039 COASTAL BEND YOUTH CITY | 7 8 | +4807530 AGUA DULCE ISD | 7 8 | +4808190 ANAHUAC ISD | 7 8 | +4808910 AUBREY ISD | 7 8 | +4809030 AVALON ISD | 7 3 | +4809150 AXTELL ISD | 7 4 | +4809410 BANQUETE ISD | 7 3 | +4809450 BARBERS HILL ISD | 7 8 | +4809540 BARTLETT ISD | 7 8 | +4809780 BELLS ISD | 7 8 | +4810140 BIG SANDY ISD | 7 8 | +4810350 BLAND ISD | 7 3 | +4810500 BLOOMINGTON ISD | 7 8 | +4810590 BLUE RIDGE ISD | 7 8 | +4810740 BOLES ISD | 7 8 | +4811640 BROWNSBORO ISD | 7 8 | +4811730 BRUCEVILLE-EDDY ISD | 7 8 | +4812060 BULLARD ISD | 7 8 | +4812390 CADDO MILLS ISD | 7 8 | +4812660 CAMPBELL ISD | 7 8 | +4813260 CELESTE ISD | 7 8 | +4814010 CHRISTOVAL ISD | 7 4 | +4814580 COLLINSVILLE ISD | 7 8 | +4814730 COMAL ISD | 2 3 | +4814850 COMMUNITY ISD | 7 8 | +4815420 COUPLAND ISD | 7 3 | +4815510 CRANDALL ISD | 7 8 | +4815600 CRAWFORD ISD | 7 8 | +4815840 CROSS ROADS ISD | 7 8 | +4816110 CYPRESS-FAIRBANKS ISD | 3 2 | +4816260 DAMON ISD | 7 3 | +4816290 DANBURY ISD | 7 8 | +4816920 DEVERS ISD | 7 8 | +4817550 DRISCOLL ISD | 7 8 | +4817880 EAST CHAMBERS ISD | 7 8 | +4818480 ELYSIAN FIELDS ISD | 7 4 | +4818720 EUSTACE ISD | 7 8 | +4818780 EVANT ISD | 7 8 | +4819320 FLORENCE ISD | 7 8 | +4821540 GRANDVIEW ISD | 7 8 | + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | +4821590 GRANGER ISD | 7 8 | +4821960 GUNTER ISD | 7 8 | +4822170 HALLSVILLE ISD | 7 8 | +4822380 HARDIN ISD | 7 8 | +4822410 HARDIN-JEFFERSON ISD | 7 5 | +4822500 HARLETON ISD | 7 4 | +4823160 HIGH ISLAND ISD | 7 3 | +4823370 HOLLAND ISD | 7 8 | +4823400 HOLLIDAY ISD | 7 8 | +4823700 HUBBARD ISD | 7 8 | +4823880 HULL-DAISETTA ISD | 7 8 | +4824100 HUTTO ISD | 7 8 | +4824120 IDALOU ISD | 7 8 | +4824450 ITALY ISD | 7 8 | +4824600 JARRELL ISD | 7 3 | +4824750 JIM HOGG COUNTY ISD | 6 7 | +4824780 JIM NED CONS ISD | 7 8 | +4824900 JONESBORO ISD | 7 4 | +4825110 KARNACK ISD | 7 4 | +4825320 KEMP ISD | 7 8 | +4825380 KENDLETON ISD | 7 8 | +4825740 KLEIN ISD | 3 2 | +4825920 KOUNTZE ISD | 7 8 | +4825980 KRUM ISD | 7 8 | +4826310 LA VERNIA ISD | 7 8 | +4826340 LA VILLA ISD | 7 8 | +4827420 LIBERTY HILL ISD | 7 3 | +4827510 LINDALE ISD | 7 8 | +4828020 LONE OAK ISD | 7 8 | +4828200 LORENA ISD | 2 8 | +4828290 LOS FRESNOS CONS ISD | 7 8 | +4828780 MALAKOFF ISD | 7 8 | +4828890 MANOR ISD | 7 2 | +4829100 MARION ISD | 7 8 | +4829460 MAUD ISD | 7 8 | +4829580 MAYPEARL ISD | 7 8 | +4829760 MCDADE ISD | 7 3 | +4830090 MEGARGEL ISD | 7 8 | +4830120 MELISSA ISD | 7 8 | +4830340 MERKEL ISD | 7 8 | +4830780 MILFORD ISD | 7 8 | +4830870 MILLSAP ISD | 7 8 | +4830990 MIRANDO CITY ISD | 7 4 | +4831230 MONTE ALTO ISD | 7 4 | +4831290 MOODY ISD | 7 8 | +4832010 MURCHISON ISD | 7 8 | +4832310 NEEDVILLE ISD | 7 8 | +4832400 NEW CANEY ISD | 7 3 | +4832460 NEW DIANA ISD | 7 4 | +4833180 NORTHWEST ISD | 7 8 | +4833360 ODEM-EDROY ISD | 7 8 | +4833780 ORANGEFIELD ISD | 7 4 | +4833840 ORE CITY ISD | 7 8 | +4834500 PEASTER ISD | 7 3 | + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | +4835310 PONDER ISD | 7 8 | +4835340 POOLVILLE ISD | 7 3 | +4835370 PORT ARANSAS ISD | 7 8 | +4835550 POTH ISD | 7 8 | +4835570 BUSHLAND ISD | 7 4 | +4835580 POTTSBORO ISD | 7 8 | +4835700 PRAIRIE LEA ISD | 7 3 | +4835910 PROGRESO ISD | 7 4 | +4836240 QUINLAN ISD | 7 8 | +4836450 RANDOLPH FIELD ISD | 7 3 | +4836750 REDWATER ISD | 7 8 | +4837170 RIO HONDO ISD | 7 8 | +4837710 ROGERS ISD | 7 8 | +4838220 ROYSE CITY ISD | 7 8 | +4838400 S AND S CONS ISD | 7 8 | +4838490 SABINE PASS ISD | 7 4 | +4838580 SALADO ISD | 7 8 | +4839330 SANTA MARIA ISD | 7 4 | +4839360 SANTA ROSA ISD | 7 8 | +4839870 SHALLOWATER ISD | 7 8 | +4840320 SIMMS ISD | 7 4 | +4840740 SOMERSET ISD | 8 2 | +4840890 SOUTHLAND ISD | 7 8 | +4841610 STOCKDALE ISD | 7 8 | +4842660 THRALL ISD | 7 8 | +4842870 TIOGA ISD | 7 8 | +4842900 TOLAR ISD | 7 8 | +4842930 TOM BEAN ISD | 7 8 | +4842990 TORNILLO ISD | 7 3 | +4843890 VAN ALSTYNE ISD | 7 8 | +4844010 VENUS ISD | 7 8 | +4844410 WALL ISD | 7 4 | +4844430 WALLER ISD | 7 8 | +4844470 BRAZOS ISD | 7 8 | +4844670 WASKOM ISD | 7 8 | +4844710 WATER VALLEY ISD | 7 4 | +4844810 WEBB CONS ISD | 7 4 | +4845000 WEST HARDIN COUNTY CONS ISD | 7 4 | +4846080 WINDTHORST ISD | 7 8 | +4900480 KANE SCHOOL DISTRICT | 7 4 | +4901080 UINTAH SCHOOL DISTRICT | 6 7 | +5002130 BENNINGTON ID SCHOOL DISTRICT | 6 7 | +5002490 BRATTLEBORO SCHOOL DISTRICT | 6 7 | +5003030 CHAMPLAIN VALLEY UHSD 15 | 6 8 | +5003930 FAIRFAX SCHOOL DISTRICT | 7 8 | +5004140 GEORGIA SCHOOL DISTRICT | 6 8 | +5004290 GRAND ISLE SCHOOL DISTRICT | 7 8 | +5004590 HARTFORD SCHOOL DISTRICT | 6 7 | +5004680 HINESBURG SCHOOL DISTRICT | 6 8 | +5004980 JERICHO SCHOOL DISTRICT | 6 8 | +5005490 MIDDLEBURY ID SCHOOL DISTRICT | 6 7 | +5005620 MISSISQUOI VALLEY UHSD 7 | 6 8 | +5005810 MOUNT ANTHONY UHSD 14 | 6 7 | +5005840 MOUNT MANSFIELD USD 17 | 6 8 | + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | +5006840 RICHMOND SCHOOL DISTRICT | 6 8 | +5007530 SPRINGFIELD SCHOOL DISTRICT | 6 7 | +5007650 SAINT JOHNSBURY SCHOOL DIST | 6 7 | +5099911 SAINT JOHNSBURY SUPERVISORY DI | 6 7 | +5099912 CHITTENDEN EAST SUPV UNION | 6 8 | +5099914 CHITTENDEN SOUTH SUPV UNION | 6 8 | +5099921 FRANKLIN NORTHWEST SUPV UNION | 6 8 | +5099922 FRANKLIN WEST SUPV UNION | 7 8 | +5099939 RUTLAND WINDSOR SUPV UNION | 6 7 | +5099948 WINDHAM SOUTHEAST SUPV UNION | 6 7 | +5099954 HARTFORD SUPERVISORY DISTRICT | 6 7 | +5099956 SPRINGFIELD SUPERVISORY DISTRI | 6 7 | +5100015 MIDDLE PENIN REG SP ED PR | 7 3 | +5100026 NORTHERN VA REGIONAL SPEC EDUC PRGM | 7 3 | +5100210 AMHERST | 7 4 | +5100420 BOTETOURT | 7 8 | +5100600 CAMPBELL | 7 4 | +5101380 FLUVANNA | 7 4 | +5101620 GLOUCESTER | 7 3 | +5101710 GREENE | 7 8 | +5102430 MATHEWS | 7 3 | +5102610 NEW KENT | 7 4 | +5102940 PITTSYLVANIA | 7 8 | +5103480 SCOTT | 7 4 | +5300870 CARBONADO | 7 8 | +5301980 DARRINGTON | 7 8 | +5302070 DEER PARK | 7 8 | +5302310 EASTMONT | 6 7 | +5303180 GRANGER | 7 8 | +5303210 GRANITE FALLS | 7 8 | +5303780 KAHLOTUS | 7 8 | +5304260 LAKEWOOD | 7 3 | +5304560 RIVERVIEW | 3 8 | +5304650 MABTON | 7 8 | +5305640 NINE MILE FALLS | 7 4 | +5305670 NOOKSACK VALLEY | 7 8 | +5305730 NORTH FRANKLIN | 7 8 | +5306600 PATEROS | 6 7 | +5306630 PATERSON | 7 4 | +5307110 RAINIER | 7 8 | +5307350 RIDGEFIELD | 7 8 | +5308550 SULTAN | 7 8 | +5308820 TENINO | 7 8 | +5310140 YELM | 7 8 | +5400511 INSTITUTIONAL PROGRAMS | 7 6 | +5401500 WAYNE COUNTY SCHOOL DISTRICT | 7 4 | +5500720 BALDWIN-WOODVILLE AREA | 7 8 | +5500780 BANGOR | 7 8 | +5500990 BELLEVILLE | 7 8 | +5502880 CORNELL | 7 8 | +5503510 KETTLE MORAINE | 7 8 | +5504260 ELKHART LAKE-GLENBEULAH | 7 8 | +5504920 FREEDOM AREA | 6 8 | +5505520 GLENWOOD CITY | 7 8 | + + | Locale Code | + | ------------------- | +NCES ID Agency | Value in Corrected | +Agency Name | CD-ROM value | +------- --------------------------------------------------| -------- --------- | +5506060 SAINT CROIX CENTRAL | 7 8 | +5507680 LAKE HOLCOMBE | 7 8 | +5508670 MARATHON CITY | 7 8 | +5509300 NORTH LAKE | 6 3 | +5509360 MERTON COMMUNITY | 7 8 | +5510440 NEW AUBURN | 7 8 | +5512330 PULASKI COMMUNITY | 7 8 | +5512450 RANDOM LAKE | 7 8 | +5512880 FRIESS LAKE | 6 8 | +5513380 WILMOT GRADE | 7 8 | +5513860 SILVER LAKE J1 | 7 8 | +5514190 SPENCER | 7 8 | +5514340 SPRING VALLEY | 7 8 | +5514520 STOCKBRIDGE | 7 8 | +5516770 WILMOT UHS | 7 8 | +5516830 WINNECONNE COMMUNITY | 7 8 | +5604120 LARAMIE CO SCHOOL DIST 02 | 7 8 | +5900011 MINNEAPOLIS AREA OFFICE | 6 7 | +5900015 PIMA AGENCY | 7 3 | +5900019 SACRAMENTO AREA OFFICE | 7 3 | diff --git a/office/regression/000_000095.txt b/office/regression/000_000095.txt new file mode 100644 index 0000000..c441a20 --- /dev/null +++ b/office/regression/000_000095.txt @@ -0,0 +1,470 @@ +Pjt No,Pjt Name,Terrty,Office,Main Grp,Catgy No,Catgy Name,Subcatgy,SoA,NC/Refi,Mtg Amt,Units,Pjt Street,Pjt City,Pjt ST,Pjt Zip,Cty No,County,MSA No,MSA Name,Lat,Lon,IE FY,Orig No,Orig Name,Hldr No,Holder Name,Serv No,Servicer Name,Serv ST +12111023,LAKEVILLE RESORT APARTME,9,San Francisco,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$20,932,600 ",492,1 LAKEVILLE CIRCLE,PETALUMA,CA,94954,97,Sonoma,7500,"SANTA ROSA, CA",38.2396,-122.5917,FY95,04951,GMAC COMMERCIAL MORTGAGE CORP,04951,GMAC COMMERCIAL MORTGAGE CORP,42162,GMAC MORTGAGE CORPORATION PA,PA +12111026,PHEASANT RUN APARTMENTS,9,San Francisco,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$9,277,100 ",368,1301 RICHLAND AVENUE,MODESTO,CA,95351,99,Stanislaus,5170,"MODESTO, CA",37.6138,-120.968,FY94,24864,CENTENNIAL MORTGAGE INC,24864,CENTENNIAL MORTGAGE INC,24864,CENTENNIAL MORTGAGE INC,IN +12111027,PARK KNOLLS,9,San Francisco,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$9,032,200 ",350,1100 PEDROS ROAD,TURLOCK,CA,95380,99,Stanislaus,5170,"MODESTO, CA",37.5129,-120.8614,FY94,24864,CENTENNIAL MORTGAGE INC,24864,CENTENNIAL MORTGAGE INC,24864,CENTENNIAL MORTGAGE INC,IN +12111030,BURGUNDY HOUSE APARTMENT,9,San Francisco,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$3,825,000 ",133,2901 EAST STEWART DRIVE,VISALIA,CA,93291,107,Tulare,8780,"VISALIA-TULARE-PORTERVILLE, CA",36.3411,-119.2597,FY94,24864,CENTENNIAL MORTGAGE INC,24864,CENTENNIAL MORTGAGE INC,24864,CENTENNIAL MORTGAGE INC,IN +12111034,CASA DEL REY,9,San Francisco,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$4,354,500 ",130,2020 SOUTHWEST EXPRESSWA,SAN JOSE,CA,95126,85,Santa Clara,7400,"SAN JOSE, CA",37.3224,-121.917,FY94,24864,CENTENNIAL MORTGAGE INC,24864,CENTENNIAL MORTGAGE INC,24864,CENTENNIAL MORTGAGE INC,IN +12111043,ALIDA MANOR,9,San Francisco,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$2,100,000 ",75,416 ALIDA,SOUTH SAN FRANCISC,CA,94080,81,San Mateo,7360,"SAN FRANCISCO, CA",37.6453,-122.4284,FY96,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12112013,SECOND EL RANCHO VERDE,9,San Francisco,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$16,126,000 ",400,303 CHECKERS DRIVE,SAN JOSE,CA,95133,85,Santa Clara,7400,"SAN JOSE, CA",37.3603,-121.8574,FY94,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12112014,ALMADEN GARDEN APARTMENT,9,San Francisco,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$2,265,100 ",52,947 Branham Ln Apt C,San Jose,CA,95136,85,Santa Clara,7400,"SAN JOSE, CA",37.265752,-121.865568,FY94,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12112015,MARINA TOWERS APTS,9,San Francisco,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$2,432,500 ",155,601 SACRAMENTO ST,VALLEJO,CA,94590,95,Solano,8720,"VALLEJO-FAIRFIELD-NAPA, CA",38.1025,-122.2573,FY94,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12112016,CAPITOL AVENUE APARTMENT,9,San Francisco,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$1,027,900 ",26,260 N Capitol Ave,San Jose,CA,95127,85,Santa Clara,7400,"SAN JOSE, CA",37.369124,-121.841076,FY94,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12112017,CREEKSIDE TERRACE APARTM,9,San Francisco,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$1,568,000 ",57,5030 San Pablo Dam Rd #,El Sobrante,CA,94803,13,Contra Costa,5775,"OAKLAND, CA",37.963817,-122.288563,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12112018,SAN TOMAS GARDENS APARTM,9,San Francisco,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$11,197,800 ",100,825 S San Tomas Aquino R,Campbell,CA,95008,85,Santa Clara,7400,"SAN JOSE, CA",37.27554,-121.970303,FY94,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12112019,PARK LANE APARTMENTS,9,San Francisco,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$5,152,100 ",90,109 MAGNOLIA AVENUE,PETALUMA,CA,94952,97,Sonoma,7500,"SANTA ROSA, CA",38.245,-122.645,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12112020,KINGS GARDENS APTS,9,San Francisco,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$1,976,500 ",100,1224A FERNOT WAY,HANFORD,CA,93230,31,Kings,0,NM,36.3381,-119.6266,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12112021,159 FAIRCHILD APTS,9,San Francisco,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$1,036,000 ",18,159 Fairchild Dr,Mountain View,CA,94043,85,Santa Clara,7400,"SAN JOSE, CA",37.405777,-122.059595,FY94,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12112022,DIAMOND VIEW APARTMENTS,9,San Francisco,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$4,464,300 ",58,296 ADDISON STREET,SAN FRANCISCO,CA,94131,75,San Francisco,7360,"SAN FRANCISCO, CA",37.7401,-122.4325,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12112023,EMERSON ARMS APARTMENTS,9,San Francisco,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$1,396,100 ",32,317 GREEN STREET,MARTINEZ,CA,94553,13,Contra Costa,5775,"OAKLAND, CA",38.0146,-122.1376,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12112024,ARASTRADERO PARK APARTME,9,San Francisco,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$6,934,100 ",66,574 ARASTRADERO ROAD,PALO ALTO,CA,94306,85,Santa Clara,7400,"SAN JOSE, CA",37.4084,-122.1236,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12112025,SIERRA VISTA I APARTMENT,9,San Francisco,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$4,136,900 ",34,1909 Hackett Ave,Mountain View,CA,94043,85,Santa Clara,7400,"SAN JOSE, CA",37.40308,-122.089659,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12112026,ELENA GARDENS APARTMENTS,9,San Francisco,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$8,667,400 ",168,1902 LAKEWOOD DRIVE,SAN JOSE,CA,95132,85,Santa Clara,7400,"SAN JOSE, CA",37.4051,-121.8797,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12112027,THE HILARITA,9,San Francisco,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$9,093,500 ",102,100 NED'S WAY,TIBURON,CA,94920,41,Marin,7360,"SAN FRANCISCO, CA",37.8808,-122.4639,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12112028,SAN JOSE GARDENS,9,San Francisco,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$4,421,000 ",176,4668 ALBANY DRIVE,SAN JOSE,CA,95129,85,Santa Clara,7400,"SAN JOSE, CA",37.3213,-121.9834,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12112032,NAPA PARK APARTMENTS,9,San Francisco,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$6,503,000 ",140,790 LINCOLN AVENUE,NAPA,CA,94558,55,Napa,8720,"VALLEJO-FAIRFIELD-NAPA, CA",38.3096,-122.288,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12114010,CRESCENT PARK APARTMENTS,9,San Francisco,Basic FHA,6,241 Impvmts Apts,241/BMIR ,ZSL,Impvmts,"$15,751,400 ",378,5000 HARTNETT STREET,RICHMOND,CA,94804,13,Contra Costa,5775,"OAKLAND, CA",37.9217,-122.3346,FY94,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12114011,THE VILLAGE,9,San Francisco,Basic FHA,6,241 Impvmts Apts,241/BMIR ,ZSL,Impvmts,"$4,829,800 ",106,506 Civic Center Blvd,Suisun City,CA,94585,95,Solano,8720,"VALLEJO-FAIRFIELD-NAPA, CA",38.2403,-122.0402,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12122001,CHATEAU PLEASANT HILL,9,San Francisco,Basic FHA,3,232 Health Care,NH 223f,RNQ,Refi/ Pchse,"$10,362,500 ",150,2726-2770 PLEASANT HILL,Pleasant Hill,CA,94523,13,Contra Costa,5775,"OAKLAND, CA",37.95602,-122.08975,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12122002,PALO ALTO COMMONS,9,San Francisco,Basic FHA,3,232 Health Care,NH 223f,RNQ,Refi/ Pchse,"$10,209,500 ",131,4075 EL CAMINO WAY,Palo Alto,CA,94306,85,Santa Clara,7400,"SAN JOSE, CA",37.41525,-122.12564,FY96,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12122003,ENGLISH OAKS CONVALESCENT HOSP,9,San Francisco,Basic FHA,3,232 Health Care,NH 223f,RNQ,Refi/ Pchse,"$5,542,000 ",180,2633 W RUMBLE RD,Modesto,CA,95350,99,Stanislaus,5170,"MODESTO, CA",37.68395,-121.04947,FY96,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12135864,STONEBRIDGE APTS,9,San Francisco,Basic FHA,5,223a7 Refi Apts,A7/221d4,REJ,Refi/ Pchse,"$8,680,400 ",286,2800 BRADEN AVENUE,MODESTO,CA,95356,99,Stanislaus,5170,"MODESTO, CA",37.6899,-121.0478,FY94,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12135868,THE MEADOWS,9,San Francisco,Basic FHA,5,223a7 Refi Apts,A7/221d4,REJ,Refi/ Pchse,"$20,937,200 ",336,1000 ESCALON AVENUE,SUNNYVALE,CA,94086,85,Santa Clara,7400,"SAN JOSE, CA",37.3878,-122.0452,FY96,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12135869,COUNTRY CLUB VILLA APART,9,San Francisco,Basic FHA,5,223a7 Refi Apts,A7/221d4,REJ,Refi/ Pchse,"$17,403,200 ",313,3246 CORTESE CIRCLE,SAN JOSE,CA,95127,85,Santa Clara,7400,"SAN JOSE, CA",37.3828,-121.8283,FY96,74988,BANC ONE CAPITAL FUNDING CORP,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,VA +12143127,SAN CARLOS RESIDENTIAL C,9,San Francisco,Basic FHA,3,232 Health Care,Board & Care,RNT,NC/SR,"$9,194,600 ",95,CORNER ELM & CHERRY STS,SAN CARLOS,CA,94070,81,San Mateo,7360,"SAN FRANCISCO, CA",37.4993,-122.2655,FY95,64617,PACIFIC COMMONWEALTH MTG CO,64617,PACIFIC COMMONWEALTH MTG CO,64617,PACIFIC COMMONWEALTH MTG CO,CA +12143131,COGNICARE ALZHEIMER'S FA,9,San Francisco,Basic FHA,3,232 Health Care,Board & Care,RNT,NC/SR,"$3,773,600 ",56,N. MARKS AVENUE AT W. BU,FRESNO,CA,93711,19,Fresno,2840,"FRESNO, CA",36.8317,-119.8321,FY96,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +121EE001,JARDINES PALOMA BLANCA,9,San Francisco,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$3,854,300 ",43,132 NORTH JACKSON AVENUE,SAN JOSE,CA,95116,85,Santa Clara,7400,"SAN JOSE, CA",37.3617,-121.8458,FY94,,,,,,, +121EE005,STONEMAN VILLAGE II,9,San Francisco,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$5,525,900 ",60,HARBOR STREET,PITTSBURG,CA,94565,13,Contra Costa,5775,"OAKLAND, CA",38.0233,-121.9554,FY94,,,,,,, +121EE008,OCEANA SENIOR HOUSING,9,San Francisco,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$3,440,900 ",42,901 Oceana Blvd,Pacifica,CA,94044,81,San Mateo,7360,"SAN FRANCISCO, CA",37.64166,-122.48924,FY94,,,,,,, +121EE012,LYTTON IV,9,San Francisco,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$5,738,600 ",51,330 EVERETT AVENUE,PALO ALTO,CA,94301,85,Santa Clara,7400,"SAN JOSE, CA",37.4478,-122.1629,FY94,,,,,,, +121EE015,NEWARK GARDENS II,9,San Francisco,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$4,129,900 ",50,35300 CEDAR BOULEVARD,NEWARK,CA,94560,1,Alameda,5775,"OAKLAND, CA",37.5499,-122.0403,FY94,,,,,,, +121EE023,BOULDER CITY VOA ELDERLY,9,San Francisco,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$4,775,600 ",60,EL CAMINO WAY AT BUCHANA,BOULDER CITY,NV,89005,3,Clark,4120,"LAS VEGAS, NV-AZ",35.9636,-114.8445,FY95,,,,,,, +121EE026,RENO SILVERCREST,9,San Francisco,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$4,568,600 ",57,WEDEKING RD & CENTENNIAL,RENO,NV,89512,31,Washoe,6720,"RENO, NV",39.5473,-119.7996,FY95,,,,,,, +121EE029,REDWOOD COVE,9,San Francisco,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$2,862,800 ",40,1755 NORTHCREST DRIVE,CRESCENT CITY,CA,95531,15,Del Norte,0,NM,41.7757,-124.1985,FY95,,,,,,, +121EE038,REDWOOD SHORES,9,San Francisco,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$10,068,500 ",120,400 REDWOOD STREET,VALLEJO,CA,94589,95,Solano,8720,"VALLEJO-FAIRFIELD-NAPA, CA",38.1225,-122.2609,FY95,,,,,,, +121HD003,CAROL HAYNES APARTMENTS,9,San Francisco,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,562,700 ",24,GEN. BRAGG DR. & GEN. MI,LAS VEGAS,NV,89101,3,Clark,4120,"LAS VEGAS, NV-AZ",36.1673,-115.1263,FY95,,,,,,, +121HD006,EDDY STREET APARTMENTS,9,San Francisco,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$2,132,000 ",21,1096 EDDY STREET,SAN FRANCISCO,CA,94109,75,San Francisco,7360,"SAN FRANCISCO, CA",37.7823,-122.4246,FY96,,,,,,, +121HD009,COLMA RIDGE,9,San Francisco,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,987,100 ",20,85 Reiner St,Colma,CA,94014,81,San Mateo,7360,"SAN FRANCISCO, CA",37.689014,-122.465095,FY95,,,,,,, +121HD011,ASI-RENO,9,San Francisco,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,931,100 ",21,E. 2ND STREET AT PARK,RENO,NV,89502,31,Washoe,6720,"RENO, NV",39.5273,-119.8035,FY96,,,,,,, +121HD016,269 VERNON STREET,9,San Francisco,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,387,600 ",13,269 VERNON STREET,OAKLAND,CA,94610,1,Alameda,5775,"OAKLAND, CA",37.8147,-122.2571,FY95,,,,,,, +121HD017,LINCOLN AVENUE APARTMENT,9,San Francisco,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$912,100 ",6,1349-1353 LINCOLN AVENUE,SAN RAFAEL,CA,94901,41,Marin,7360,"SAN FRANCISCO, CA",37.9775,-122.5211,FY95,,,,,,, +121HH003,CASA DE LOS AMIGOS,9,San Francisco,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$2,137,900 ",24,965 KING ROAD,SAN JOSE,CA,95133,85,Santa Clara,7400,"SAN JOSE, CA",37.3732,-121.872,FY94,,,,,,, +121HH010,CASA LINDA,9,San Francisco,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,999,100 ",21,1840 MACIEL AVENUE,SANTA CRUZ,CA,95062,87,Santa Cruz,7485,"SANTA CRUZ-WATSONVILLE, CA",36.9758,-121.9751,FY94,,,,,,, +12211018,CANYON CREEK APARTMENTS,9,Los Angeles,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$6,538,200 ",240,38121 25th St E,Lake Los Angeles,CA,93550,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.578717,-118.084036,FY94,24864,CENTENNIAL MORTGAGE INC,24864,CENTENNIAL MORTGAGE INC,24864,CENTENNIAL MORTGAGE INC,IN +12211019,DRY CREEK VILLAGE APARTM,9,Los Angeles,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRS,Refi/ Pchse,"$8,806,000 ",400,1227 CORRAL CREEK,SAN LUIS OBISPO,CA,93446,79,San Luis Obispo,7460,"SAN LUIS OBISPO-ATASCADERO-PASO ROBLES, CA",35.606031,-120.659061,FY94,24864,CENTENNIAL MORTGAGE INC,24864,CENTENNIAL MORTGAGE INC,24864,CENTENNIAL MORTGAGE INC,IN +12211024,CIVIC CENTER PLACE APART,9,Los Angeles,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$10,293,500 ",192,12700 BLOOMFIELD AVENUE,NORWALK,CA,90650,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",33.9157,-118.0633,FY95,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,75148,GE CAPITAL ASSET MGTMT CORP,TX +12211025,CROWN POINT APARTMENTS,9,Los Angeles,Basic FHA,5,223a7 Refi Apts,A7/223f,REK,Refi/ Pchse,"$8,288,000 ",192,1840 NELSON,WEST COVINA,CA,91791,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.0659,-117.8972,FY94,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,VA +12211030,ROSAMOND GARDEN APARTMEN,9,Los Angeles,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRS,Refi/ Pchse,"$2,964,800 ",120,3400 15th St W,Rosamond,CA,93560,29,Kern,0680,"BAKERSFIELD, CA",34.872032,-118.157289,FY95,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,GA +12211035,COVINA ROLLINGWOOD APTS,9,Los Angeles,Basic FHA,5,223a7 Refi Apts,A7/223f,REK,Refi/ Pchse,"$7,045,000 ",169,1901 E AMAR RD,WEST COVINA,CA,90046,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.12012,-118.37415,FY95,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +12211038,UNION PLAZA APARTMENTS,9,Los Angeles,Basic FHA,5,223a7 Refi Apts,A7/223f,REK,Refi/ Pchse,"$2,968,000 ",72,16818 DOWNEY AVENUUE,PARAMOUNT,CA,90723,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",33.8955,-118.164,FY96,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,VA +12241001,ROSCOE PARK APARTMENTS,9,Los Angeles,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$2,941,200 ",82,ROSCOE AVE AND VARIEL AVE,LOS ANGELES,CA,91304,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.2197,-118.5915,FY94,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12241002,LA PUENTE PARK APARTMENT,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$5,326,300 ",133,14711 Nelson Ave,La Puente,CA,91744,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.035663,-117.969018,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12241003,RESEDA PARK APARTMENTS,9,Los Angeles,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$4,435,500 ",136,6505 RESEDA BOULEVARD,LOS ANGELES,CA,91335,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.186801,-118.535206,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12241004,VAN NESS TERRACE,9,Los Angeles,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$400,100 ",16,1809 S Van Ness Ave,Los Angeles,CA,90019,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.043163,-118.315599,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12241005,ST. ANDREWS TERRACE,9,Los Angeles,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$786,900 ",27,1525 S St Andrews Pl,Los Angeles,CA,90019,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.044889,-118.310767,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12241006,HAWAIIAN GARDENS APTS,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$9,320,300 ",264,11950 Centralia Rd,Hawaiian Gardens,CA,90716,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",33.838617,-118.076824,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12241007,DEL AMO GARDENS,9,Los Angeles,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$8,427,000 ",230,225 EAST DEL AMO BOULEVA,LONG BEACH,CA,90805,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",33.8627,-118.1797,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12241008,ST. ANDREWS ARMS APARTME,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$1,296,700 ",43,1511 ST. ANDREWS PLACE,LOS ANGELES,CA,90002,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",33.9598,-118.2603,FY94,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12241009,RAYEN PARK APTS,9,Los Angeles,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$2,250,200 ",84,15243 RAYEN ST,Sepulveda,CA,91343,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.23188,-118.46351,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12241014,MISSION PLAZA,9,Los Angeles,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$3,284,300 ",132,2218 Parkside Ave # 2258,Los Angeles,CA,90031,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.070811,-118.1992,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12241015,PARTHENIA TOWNHOMES,9,Los Angeles,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$679,100 ",24,21218 PARTHENIA AVENUE,LOS ANGELES,CA,91304,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.227917,-118.593427,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12241017,KITTRIDGE GARDENS I,9,Los Angeles,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$5,801,200 ",128,6540 Wilbur Ave,Reseda,CA,91335,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.189124,-118.543737,FY96,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12241020,ELLENDALE ARMS APTs,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$1,006,200 ",67,2711 Ellendale Place,Los Angeles,CA,90007,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.03212,-118.28808,FY96,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12241021,WOODMAN NORDHOFF APARTME,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$2,082,200 ",80,9135 WOODMAN AVENUE,LOS ANGELES,CA,91331,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.23678,-118.44014,FY96,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,GA +12241024,KITTRIDGE GARDENS II,9,Los Angeles,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$2,772,600 ",80,6540 Wilbur Ave,Reseda,CA,91335,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.189124,-118.543737,FY96,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12241026,LAUREL CANYON TERRACE APTs,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$881,300 ",52,13276 KAGEL CANYON STREET,LOS ANGELES,CA,91331,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.25018,-118.42113,FY96,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12241027,OXFORD PARK,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$2,863,200 ",109,1920 S Oxford Ave,Los Angeles,CA,90018,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.039529,-118.3069,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12241030,SUNLAND PARK APARTMENTS,9,Los Angeles,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$4,873,800 ",120,10836 Roycroft St,Sun Valley,CA,91352,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.241492,-118.364399,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12241033,ANAHEIM GARDENS,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$4,344,000 ",80,1535 ANAHEIM STREET,LOS ANGELES,CA,90710,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",33.78507,-118.3026,FY96,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,VA +12241034,FIGUEROA GARDENS APARTME,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$2,792,200 ",88,4556 N Figueroa St,Los Angeles,CA,90065,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.102398,-118.201864,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12241035,DE SOTO GARDENS,9,Los Angeles,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$9,055,600 ",248,8722 De Soto Ave,Canoga Park,CA,91304,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.229655,-118.587262,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12241037,WESTMINSTER VILLAS APART,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$461,000 ",12,655 WESTMINSTER AVENUE,LOS ANGELES,CA,90291,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",33.99488,-118.46515,FY96,64293,BA MORTGAGE INTERNATL RTY CORP,64293,BA MORTGAGE INTERNATL RTY CORP,64293,BA MORTGAGE INTERNATL RTY CORP,CA +12241038,ST. ANDREWS GARDENS,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$5,278,200 ",192,2062 W. ADAMS BLVD.,LOS ANGELES,CA,90018,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.0328,-118.3101,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12241043,SILVER LAKE PLAZA APARTM,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$5,461,200 ",88,3740 Evans St,Los Angeles,CA,90027,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.105711,-118.272282,FY96,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,GA +12241045,MARKET PARK APARTMENTS,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$1,078,400 ",50,MARKET PARK APARTMENTS,INGLEWOOD,CA,90302,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",33.9752,-118.3546,FY96,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12241046,CIENEGA GARDENS,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$5,224,300 ",180,1956 E Cienega Ave,Covina,CA,91724,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.103083,-117.850185,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12241047,AZUSA APARTMENTS,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$3,801,400 ",88,805 S. CERRITOS,AZUSA,CA,91702,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.10843,-117.898199,FY96,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12241048,PIONEER GARDENS,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$3,271,800 ",141,9039 PIONEER BOULEVARD,SANTA FE SPRINGS,CA,90670,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",33.961,-118.0827,FY96,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12241049,SHERMAN PARK APTS,9,Los Angeles,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$4,294,100 ",134,17960 SHERMAN WAY,Reseda,CA,91335,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.20087,-118.52369,FY96,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12241050,CLAREMONT VILLAGE COMMON,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$4,842,700 ",150,955 WEST ARROW HIGHWAY,CLAREMONT,CA,91711,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.0901,-117.7301,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12241052,VENTURA TERRACE,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$3,627,700 ",130,6600 Telephone Rd,Ventura,CA,93003,111,Ventura,8735,"VENTURA, CA",34.266271,-119.20321,FY96,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12241054,DUDLEY OAKS APARTMENTS,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$484,000 ",20,2119 Oak St,Los Angeles,CA,90007,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.03419,-118.2788,FY96,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12292010,UNIVERSITY GARDENS,9,Los Angeles,Basic FHA,12,Other FHA,old 207s PMM sale,HRF,Other,"$1,432,200 ",113,1250 W Jefferson Blvd,Los Angeles,CA,90007,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.025443,-118.292078,FY95,77349,REILLY MORTGAGE ASSOCIATES LP,77349,REILLY MORTGAGE ASSOCIATES LP,77349,REILLY MORTGAGE ASSOCIATES LP,VA +122EE004,CANTERBURY VILLAGE,9,Los Angeles,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$5,077,100 ",64,AVENIDA ROTELLA,LOS ANGELES COUNTY,CA,91355,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.3965,-118.5516,FY95,,,,,,, +122EE007,TELACU VISTAS,9,Los Angeles,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$8,320,500 ",100,739 VIA MARISOL,LOS ANGELES,CA,90032,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.0917,-118.1829,FY94,,,,,,, +122EE017,MURRAY PLACE,9,Los Angeles,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$6,411,300 ",72,4324 FLORENCE AVENUE,BELL,CA,90201,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",33.9708,-118.19,FY95,,,,,,, +122EE031,VERDUGO TOWER,9,Los Angeles,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$9,904,700 ",121,SW COR SAN FERNANDO BLVD,BURBANK,CA,91502,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.175,-118.307,FY94,,,,,,, +122EE034,TELACU AMADOR MANOR,9,Los Angeles,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$5,279,800 ",70,3436 Tyler Ave,El Monte,CA,91731,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.0711,-118.034976,FY95,,,,,,, +122EE035,TELACU HOUSING,9,Los Angeles,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$6,516,900 ",70,42 E. WALNUT ST,PASADENA,CA,91103,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.1496,-118.1487,FY95 +122EE037,PALM SPRINGS SR. HSG.,9,Los Angeles,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$4,510,800 ",60,VISTA CHINO RD,PALM SPRINGS,CA,92262,65,Riverside,6780,"RIVERSIDE-SAN BERNARDINO, CA",33.8425,-116.5364,FY95 +122EH527,DICKENS SENIOR HOUSING,9,Los Angeles,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$6,961,400 ",83,14559 DICKENS STREET,LOS ANGELES,CA,91403,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.150029,-118.449247,FY95 +122EH528,MAR VISTA ELDORADO,9,Los Angeles,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$6,302,300 ",73,102 S Nevada St,Oceanside,CA,92054,73,San Diego,7320,"SAN DIEGO, CA",33.19641,-117.37551,FY94 +122EH530,SOUTH BAY RETIREMENT RES,9,Los Angeles,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$5,944,300 ",75,1015 W. CRESSEY ST.,COMPTON,CA,90222,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",33.9038,-118.2422,FY95 +122EH531,SALVATION ARMY PASADENA,9,Los Angeles,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$7,943,800 ",75,NW CORNER UNION & CATALI,PASADENA,CA,91106,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.1433,-118.1262,FY94 +122HD005,VILLA MALAGA,9,Los Angeles,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$2,753,900 ",24,4709 E BROOKLYN AVE,Monterey Park,CA,91754,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.0506,-118.1377,FY95 +122HD007,RAINBOW HOMES,9,Los Angeles,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$805,900 ",14,15917 CHASE ST,LOS ANGELES,CA,91343,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.2245,-118.47627,FY95 +122HD011,JOSHUA TREE APARTMENTS,9,Los Angeles,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,418,200 ",21,4948 BUCKLEY WAY,BAKERSFIELD,CA,93309,29,Kern,0680,"BAKERSFIELD, CA",35.3388,-119.0529,FY94 +122HD012,VILLAGE CHOICE,9,Los Angeles,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$705,600 ",12,16124 TUPPER ST,LOS ANGELES,CA,91307,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.1946,-118.64,FY95 +122HD014,EUCALYPTUS APARTMENTS,9,Los Angeles,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$2,369,600 ",24,CORNER OF EUCALYPTUS & L,SIGNAL HILL,CA,90301,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",33.9552,-118.3562,FY96 +122HD018,LARC HOME,9,Los Angeles,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$448,100 ",7,SITE IDENTIFIED,SAUGUS,CA,91350,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.4595,-118.4898,FY95 +122HD041,VISTA HOMES,9,Los Angeles,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$806,000 ",12,23210 JUSTICE,LOS ANGELES,CA,90012,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.0616,-118.2385,FY96 +122HH012,CASA CORAZON,9,Los Angeles,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$2,592,700 ",25,4TH & ELM,LONG BEACH,CA,90802,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",33.7718,-118.187,FY94 +122HH015,PROJECT ROHER,9,Los Angeles,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$710,200 ",8,758 S. MELROSE,SAN DIEGO,CA,92114,73,San Diego,7320,"SAN DIEGO, CA",32.712985,-117.080668,FY94 +122HH017,IVY GLEN APARTMENTS,9,Los Angeles,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$2,330,500 ",25,113-123 NORTH CEDAR STRE,GLENDALE,CA,91206,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.1548,-118.2311,FY94 +122HH018,LIBERTY VILLAGE,9,Los Angeles,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$710,200 ",8,22439 MARLIN PLACE,LOS ANGELES,CA,91311,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.259,-118.591,FY94,,,,,,, +122HH019,PROJECT HOMELIFE,9,Los Angeles,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$390,300 ",4,10223 PARISE DRIVE,LOS ANGELES,CA,90603,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",33.94457,-118.01368,FY94,,,,,,, +122HH026,PROJECT INDEPENDENCE,9,Los Angeles,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,822,000 ",26,10454 Amestoy Ave # AVE-,San Fernando,CA,91344,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.260516,-118.5056,FY94,,,,,,, +12311026,PALM LANE GARDEN APTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRS,Refi/ Pchse,"$605,900 ",64,1818 N. 40TH STREET,PHOENIX,AZ,85008,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.4677,-111.9947,FY94,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12311029,MOUNTAIN LAKES APTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRS,Refi/ Pchse,"$675,700 ",96,1975 W. 36TH ST.,TUCSON,AZ,85713,19,Pima,8520,"TUCSON, AZ",32.1921,-111.0077,FY94,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12311030,SANTA CRUZ APTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRS,Refi/ Pchse,"$1,093,000 ",132,3601 S 16th Ave,Tucson,AZ,85713,19,Pima,8520,"TUCSON, AZ",32.181633,-110.980892,FY94,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12311031,WINDSOR TERRACE APTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRS,Refi/ Pchse,"$215,900 ",24,3525 N. STONE AVE,TUCSON,AZ,85705,19,Pima,8520,"TUCSON, AZ",32.2702,-110.9712,FY94,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12311032,CAROLE ARMS APTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRS,Refi/ Pchse,"$310,200 ",44,2535 W Coolidge St # 255,Phoenix,AZ,85017,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.504817,-112.112835,FY94,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12311033,BETHANY PARK APTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRS,Refi/ Pchse,"$1,831,700 ",172,5830 N. 67TH AVE.,GLENDALE,AZ,85303,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.5218,-112.2025,FY94,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12311045,BANYANTREE APARTMENTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$2,800,000 ",232,12435 N. 28TH DRIVE,PHOENIX,AZ,85029,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.599,-112.1189,FY94,77268,BOATMAN'S BANK OF IOWA NA,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12311047,CIMMARRON PLACE APARTMEN,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$2,916,200 ",144,3121 NORTH SWAN ROAD,TUCSON,AZ,85712,19,Pima,8520,"TUCSON, AZ",32.2639,-110.8916,FY94,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,75148,GE CAPITAL ASSET MGTMT CORP,TX +12311050,CARONDOLET APARTMENTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$3,102,500 ",111,6770 E Carondelet Dr,Tucson,AZ,85710,19,Pima,8520,"TUCSON, AZ",32.225217,-110.848737,FY94,60188,LOVE FUNDING CORPORATION,24038,HEARTLAND SAVINGS BANK FSB,24038,HEARTLAND SAVINGS BANK FSB,MO +12311051,MISSION CREEK APARTMENTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$2,975,000 ",200,1451 WEST AJO WAY,TUCSON,AZ,85713,19,Pima,8520,"TUCSON, AZ",32.1778,-110.9962,FY94,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12311052,SUNFLOWER APARTMENTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$1,849,800 ",144,6502 EAST GOLF LINKS,TUCSON,AZ,85701,19,Pima,8520,"TUCSON, AZ",32.2125,-110.9687,FY94,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12311053,SILVERADO APARTMENTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$1,905,200 ",132,5000 S Country Club Rd,Tucson,AZ,85706,19,Pima,8520,"TUCSON, AZ",32.16283,-110.9255,FY94,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12311054,MOUNTAIN VILLAGE APARTME,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$1,365,000 ",96,513 WEST PANORAMA,TUCSON,AZ,85701,19,Pima,8520,"TUCSON, AZ",32.2125,-110.9687,FY94,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12311055,MOUNTAIN SHADOWS APARTME,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$1,044,600 ",104,2430 N Dodge Blvd,Tucson,AZ,85716,19,Pima,8520,"TUCSON, AZ",32.25156,-110.91313,FY94,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12311057,RIVER RUN APTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$679,600 ",25,1065 W. FIRST STREET,TEMPE,AZ,85281,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.429,-111.953,FY94,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12311059,OASIS APARTMENTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$4,505,000 ",183,4250 E Busby Dr,Sierra Vista,AZ,85635,3,Cochise,0,NM,31.547431,-110.254491,FY94,60188,LOVE FUNDING CORPORATION,24038,HEARTLAND SAVINGS BANK FSB,24038,HEARTLAND SAVINGS BANK FSB,MO +12311061,MISSION SPRINGS APTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$1,841,600 ",50,16818 N. 56TH ST.,SCOTTSDALE,AZ,85254,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.6338,-111.9484,FY94,51385,DAVIS-PENN MORTGAGE CO,51385,DAVIS-PENN MORTGAGE CO,51385,DAVIS-PENN MORTGAGE CO,TX +12311062,COLONY GROVE APTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$3,165,000 ",161,1145 W. BASELINE RD,TEMPE,AZ,85283,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.378,-111.9533,FY94,55500,CENTENNIAL BANK,05120,MELLON MORTGAGE COMPANY,05120,MELLON MORTGAGE COMPANY,PA +12311063,BOSTON SQUARE APTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$3,330,000 ",177,1750 W Boston St,Chandler,AZ,85224,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.3315,-111.8636,FY94,55500,CENTENNIAL BANK,05120,MELLON MORTGAGE COMPANY,05120,MELLON MORTGAGE COMPANY,PA +12311064,RIDGEWOOD GARDENS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$3,387,100 ",168,3302A SOUTH PANTANO ROAD,TUCSON,AZ,85730,19,Pima,8520,"TUCSON, AZ",32.1831,-110.8232,FY95,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12311066,METRO TERRACE APARTMENTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$6,410,500 ",288,3333 WEST DUNLAP,PHOENIX,AZ,85051,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.5675,-112.1294,FY95,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,VA +12311067,PARADISE PALMS APARTMENT,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$2,596,300 ",137,17646 N Cave Creek Rd,Phoenix,AZ,85032,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.6195,-112.0037,FY95,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12311068,RANCHWOOD APTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$5,403,000 ",360,5740 NORTH 59TH AVE,GLENDALE,AZ,85301,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.52,-112.1855,FY95,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,VA +12311069,GLEN OAKS APTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$2,751,300 ",184,5750 NORTH 59TH AVE,GLENDALE,AZ,85301,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.5201,-112.1855,FY95,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,VA +12311070,THE SANDS APTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$2,635,000 ",141,2305 EAST MAIN STREET,MESA,AZ,85213,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.4153,-111.7796,FY95,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,VA +12311071,CORONADO APARTMENTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$4,699,200 ",262,1865 E Broadway Rd,Tempe,AZ,85282,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.407331,-111.906391,FY95,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12311072,DAYBREAK PLACE APARTMENT,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$3,710,200 ",210,815 EAST BETHANY HOME RO,PHOENIX,AZ,85012,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.5098,-112.0676,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12311073,DAYBREAK GARDENS APARTME,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$2,753,800 ",161,5225 EAST THOMAS ROAD,PHOENIX,AZ,85018,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.4799,-111.968,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12311075,VILLA SERENAS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$9,397,500 ",610,8111 E Broadway Blvd,Tucson,AZ,85710,19,Pima,8520,"TUCSON, AZ",32.220763,-110.818073,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12311076,HACIENDA DEL SOL,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$5,929,400 ",376,868 S. ARIZONA AVE,Chandler,AZ,85224,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.29204,-111.8408,FY95,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12311077,HUNTERS GLEN APARTMENTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$7,731,000 ",264,2601 W Claremont St,Phoenix,AZ,85017,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.528517,-112.11573,FY96,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,VA +12312001,CASA MADRID APTS,9,Phoenix,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$685,800 ",70,4417 N. 12TH ST.,PHOENIX,AZ,85014,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.5002,-112.0554,FY94,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12314001,CONCORD VILLAGE,9,Phoenix,Basic FHA,6,241 Impvmts Apts,241/BMIR ,ZSL,Impvmts,"$3,622,100 ",373,631 EAST LEXINGTON PLACE,TEMPE,AZ,85281,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.4575,-111.9282,FY96,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12322001,APACHE JUNCTION HEALTH C,9,Phoenix,Basic FHA,3,232 Health Care,NH 223f,RNQ,Refi/ Pchse,"$4,080,000 ",130,2012 W Southern Ave,Apache Junction,AZ,85220,21,Pinal,6200,"PHOENIX-MESA, AZ",33.393222,-111.56423,FY96,77472,CAPITAL FUNDING GROUP,77472,CAPITAL FUNDING GROUP,77472,CAPITAL FUNDING GROUP,MD +12335215,LIMBERLOST APts,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$5,431,700 ",128,115 W Limberlost,TUCSON,AZ,85704,19,Pima,8520,"TUCSON, AZ",32.28262,-110.97136,FY96,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12335217,VISTA DE SIERRA II,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMD,NC/SR,"$10,241,700 ",240,9155 E Tanque Verde Rd,Tucson,AZ,85749,19,Pima,8520,"TUCSON, AZ",32.2575,-110.79744,FY94,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12335219,CASA MADERA APARTMENTS,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$3,673,200 ",80,INA ROAD & MONA LISA,TUCSON,AZ,85741,19,Pima,8520,"TUCSON, AZ",32.3368,-111.0199,FY94,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12335220,LE MIRAGE APARTMENTS,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$6,155,600 ",168,NWC THORNYDALE AND LINDA,TUCSON,AZ,85741,19,Pima,8520,"TUCSON, AZ",32.3456,-111.0385,FY94,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12335223,CASA DE TOPAZ APARTMENTS,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$5,119,400 ",140,SW CORNER COTTONWOOD LAN,CASA GRANDE,AZ,85222,21,Pinal,6200,"PHOENIX-MESA, AZ",32.8913,-111.7545,FY94,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12335225,UNIVERSITY WEST APARTMEN,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$5,122,300 ",121,1830 S. MILTON RD.,FLAGSTAFF,AZ,86001,5,Coconino,2620,"FLAGSTAFF, AZ",35.18,-111.6606,FY94,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12335229,LAKESIDE APARTMENTS,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$7,500,000 ",160,411 KYRENE ROAD,CHANDLER,AZ,85226,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.3102,-111.9191,FY94,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12335235,SABINO CANYON CASITAS,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$2,848,700 ",44,W.SABINO CANYON & SOUTH,TUCSON,AZ,85715,19,Pima,8520,"TUCSON, AZ",32.2701,-110.8346,FY95,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12335238,ORCHARDS APTS,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$3,677,600 ",57,3435 E. CAMELBACK ROAD,PHOENIX,AZ,85018,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.5098,-112.0068,FY95,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12335239,TOWNSHIP APARTMENTS,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$6,461,700 ",160,SWC OF GILBERT RD. & ASH,GILBERT,AZ,85234,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.3639,-111.7697,FY95,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12335242,MONTEBELLA APARTMENTS,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$8,181,200 ",168,SWC ORANGE GROVE ROAD &,TUCSON,AZ,85704,19,Pima,8520,"TUCSON, AZ",32.3225,-110.9835,FY96,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12335244,CANYON SPRINGS APARTMENT,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$5,876,100 ",112,900 NORTH SWITZER CANYON,FLAGSTAFF,AZ,86001,5,Coconino,2620,"FLAGSTAFF, AZ",35.20144,-111.63676,FY95,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12335249,MOONRISE AT STAR PASS,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$12,700,000 ",224,101 S. PLAYERS CLUB DR,Tucson,AZ,85745,19,Pima,8520,"TUCSON, AZ",32.2226,-111.03237,FY95,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12335250,CASA DEL RIO,9,Phoenix,Basic FHA,5,223a7 Refi Apts,A7/221d4,REJ,Refi/ Pchse,"$5,835,100 ",150,12751 NORTH PLAZA DEL RI,PEORIA,AZ,85381,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.606376,-112.2582,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12335252,CASA DORINDA,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$6,692,100 ",138,7474 N Mona Lisa Rd,Tucson,AZ,85741,19,Pima,8520,"TUCSON, AZ",32.34546,-111.01972,FY96,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12335254,METROPOLITAN APARTMENT,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$8,675,800 ",140,FILLMORE ST. BETWEEN SEC,PHOENIX,AZ,85004,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.4562,-112.0686,FY96,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12335256,LA VIDA APARTMENTS,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$6,197,900 ",136,S.W. CORNER BROADWAY BLV,TUCSON,AZ,85745,19,Pima,8520,"TUCSON, AZ",32.2438,-111.0179,FY95,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12335257,THE PRESERVE AT MOUNTAIN,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$24,739,700 ",360,13820 SOUTH 44TH STREET,PHOENIX,AZ,85004,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.4562,-112.0686,FY95,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12335258,STARRVIEW APARTMENTS,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$11,000,000 ",176,3310 WEST STARR PASS BLV,TUCSON,AZ,85745,19,Pima,8520,"TUCSON, AZ",32.2438,-111.0179,FY95,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12335259,CLUB CANCUN,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$7,700,900 ",140,S.E.CRNR METRO BLVD & FE,CHANDLER,AZ,85226,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.3102,-111.9191,FY96,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12335267,PALM VALLEY APARTMENTS,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$7,764,500 ",132,N.E. CORNER MCDOWELL & L,GOODYEAR,AZ,85338,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.4367,-112.3608,FY96,71746,PARAGON MORTGAGE CORP,71746,PARAGON MORTGAGE CORP,71746,PARAGON MORTGAGE CORP,AZ +12343038,SIERRA VISTA CARE CENTER,9,Phoenix,Basic FHA,3,232 Health Care,NH A7,REQ,Refi/ Pchse,"$1,730,100 ",100,660 Coronado Dr,SIERRA VISTA,AZ,85635,3,Cochise,0,NM,31.5353,-110.2693,FY95,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,VA +123EE001,RET HOME OF SCOTTSDALE I,9,Phoenix,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$2,148,600 ",47,74TH STREET AND PALM LN,SCOTTSDALE,AZ,85257,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.4692,-111.9212,FY94,,,,,,, +123EE002,B'NAI BRITH COVENANT HS,9,Phoenix,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$3,881,000 ",79,W. OF CATALINA AT 2ND ST,TUCSON,AZ,85711,19,Pima,8520,"TUCSON, AZ",32.2342,-110.8984,FY94,,,,,,, +123EE033,MESA MANOR APARTMENTS,9,Phoenix,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$3,537,700 ",65,SOUTH MAIN AND POWER RAO,MESA,AZ,85210,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.3892,-111.8447,FY96,,,,,,, +123EE034,COTTONWOOD ACRES APARTME,9,Phoenix,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$1,087,700 ",20,SOUTH OF ALTERNATE 89 AN,COTTONWOOD,AZ,86326,25,Yavapai,0,NM,34.7045,-112.0098,FY96,,,,,,, +123HD002,DALE'S HOUSE,9,Phoenix,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,093,700 ",25,SECOND AVE. & FREMONT RD,PHOENIX,AZ,85041,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.3896,-112.0964,FY95,,,,,,, +123HD003,TOBY HOUSE III,9,Phoenix,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,485,500 ",24,SCATTERED SITES,PHOENIX,AZ,85021,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.5543,-112.0951,FY95,,,,,,, +123HD008,STEPHENSON PLACE,9,Phoenix,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,510,700 ",25,113 EAST YAVAPAI ROAD,TUCSON,AZ,85705,19,Pima,8520,"TUCSON, AZ",32.2695,-110.9696,FY96,,,,,,, +123HD009,PLAZA DE MERCED,9,Phoenix,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,587,900 ",25,SCATTERED SITES,PHOENIX,AZ,85022,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.6312,-112.0539,FY95,,,,,,, +123HD010,VALLEY OF THE SUN APARTM,9,Phoenix,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$578,900 ",25,SCATTERED SITES,PHOENIX,AZ,85021,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.5543,-112.0951,FY96,,,,,,, +12411001,PLAZA I APARTMENTS,10,Portland,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$2,335,800 ",63,120 E Mallard Dr,Boise,ID,83706,1,Ada,1080,"BOISE CITY, ID",43.596682,-116.181823,FY94,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +12435062,WHISPERING PINES,10,Portland,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$3,929,600 ",105,7845 USTICK ROAD,BOISE,ID,83704,1,Ada,1080,"BOISE CITY, ID",43.634,-116.2785,FY94,75283,HANOVER CAPITAL MORTGAGE CORP,75283,HANOVER CAPITAL MORTGAGE CORP,75283,HANOVER CAPITAL MORTGAGE CORP,MO +12435063,SIGNATURE PTE OF BAY HIL,10,Portland,Basic FHA,2,FHA NC/SR Apts,221d4,OMD,NC/SR,"$8,209,800 ",156,3501 N Cole Rd,Boise,ID,83704,1,Ada,1080,"BOISE CITY, ID",43.63656,-116.273413,FY94,70970,BERKSHIRE MORTGAGE FINANCE,70970,BERKSHIRE MORTGAGE FINANCE,70970,BERKSHIRE MORTGAGE FINANCE,MA +12435067,EAGLE PROPERTIES,10,Portland,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$3,373,500 ",88,STATE STREET - HIGHWAY 4,EAGLE,ID,83616,1,Ada,1080,"BOISE CITY, ID",43.7056,-116.3625,FY95,24864,CENTENNIAL MORTGAGE INC,24864,CENTENNIAL MORTGAGE INC,24864,CENTENNIAL MORTGAGE INC,IN +12435069,THE QUADS APARTMENTS,10,Portland,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$2,856,000 ",48,815 Ann Morrison Park Dr,Boise,ID,83706,1,Ada,1080,"BOISE CITY, ID",43.605408,-116.210638,FY95,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,GA +12435070,COURTHOUSE APTS. (FT),10,Portland,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$5,953,700 ",120,7225 WEST COLONIAL STREE,BOISE,ID,83705,1,Ada,1080,"BOISE CITY, ID",43.5856,-116.2191,FY94,70970,BERKSHIRE MORTGAGE FINANCE,70970,BERKSHIRE MORTGAGE FINANCE,70970,BERKSHIRE MORTGAGE FINANCE,MA +12435071,PARK PLACE APARTMENTS,10,Portland,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$5,944,800 ",150,RAMSEY ROAD & KATHLEEN AVE,COEUR D'ALENE,ID,83814,55,Kootenai,0,NM,47.6929,-116.7848,FY95,10006,FIRST SECURITY BANK IDAHO NA,10006,FIRST SECURITY BANK IDAHO NA,10006,FIRST SECURITY BANK IDAHO NA,ID +12441001,PAYETTE MANOR APARTMENTS,10,Portland,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$370,000 ",32,106 NORTH 12TH STREET,PAYETTE COUNTY,ID,83661,75,Payette,0,NM,44.086617,-116.944581,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12441002,DELLA MANOR APARTMENTS,10,Portland,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$349,900 ",32,650 E Butterfield St,Weiser,ID,83672,87,Washington,0,NM,44.251382,-116.957593,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12441003,VALLEY MANOR APARTMENTS,10,Portland,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$485,800 ",32,555 NORTH BUTTE AVENUE,EMMETT,ID,83617,45,Gem,0,NM,43.8795,-116.4847,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12441004,OAKLAWN APARTMENTS,10,Portland,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$487,700 ",30,3330 N 34th St # 3480,Boise,ID,83703,1,Ada,1080,"BOISE CITY, ID",43.65008,-116.229786,FY95,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +124EE005,SYRINGA PLAZA,10,Portland,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$2,015,400 ",40,6TH AND ALMO,BURLEY,ID,83318,31,Cassia,0,NM,42.546,-113.7871,FY95,,,,,,, +124EE006,FRIENDSHIP MANOR II,10,Portland,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$2,135,055 ",40,321 E Morrison St,Caldwell,ID,83605,27,Canyon,1080,"BOISE CITY, ID",43.65682,-116.69443,FY96,,,,,,, +12511024,ALPINE VILLAGE APARTMENT,9,San Francisco,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$9,010,000 ",324,901 BRUSH STREET,LAS VEGAS,NV,89107,3,Clark,4120,"LAS VEGAS, NV-AZ",36.1613,-115.2093,FY94,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,75148,GE CAPITAL ASSET MGTMT CORP,TX +12511025,SAGECREST APARTMENTS,9,San Francisco,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$5,227,500 ",208,1050 CONNOLLY DRIVE,ELKO,NV,89801,7,Elko,0,NM,40.8351,-115.7942,FY94,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,75148,GE CAPITAL ASSET MGTMT CORP,TX +12511026,TANGLEWOOD VILLAGE APART,9,San Francisco,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$2,916,400 ",130,919 S Roop St,Carson City,NV,89701,510,Carson City,0,NM,39.152088,-119.761493,FY94,60188,LOVE FUNDING CORPORATION,24038,HEARTLAND SAVINGS BANK FSB,24038,HEARTLAND SAVINGS BANK FSB,MO +12511028,SUN VALLEY APARTMENTS,9,San Francisco,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$3,364,000 ",135,100 NORTH SUN VALLEY DRI,Mesquite,NV,89024,3,Clark,4120,"LAS VEGAS, NV-AZ",36.7674,-114.3568,FY94,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,75148,GE CAPITAL ASSET MGTMT CORP,TX +12511029,SALIMAN MANOR APARTMENTS,9,San Francisco,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$1,613,300 ",53,800 SALIMAN ROAD,CARSON CITY,NV,89701,510,Carson City,0,NM,39.153132,-119.750906,FY94,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,75148,GE CAPITAL ASSET MGTMT CORP,TX +12511030,BAYSHORE CLUB APARTMENTS,9,San Francisco,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$5,037,500 ",144,4975 Duneville St,Las Vegas,NV,89118,3,Clark,4120,"LAS VEGAS, NV-AZ",36.087135,-115.219501,FY94,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,VA +12511041,WASHINGTON PLAZA APARTME,9,San Francisco,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$1,466,200 ",96,2200 CARTER CIRCLE,LAS VEGAS,NV,89106,3,Clark,4120,"LAS VEGAS, NV-AZ",36.1808,-115.1712,FY95,09632,AMERICAN CAPITAL RESOURCE INC,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12512006,CENTENNIAL PARK ANNEX,9,San Francisco,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$778,700 ",40,1652 WEDEKIND RD,Reno,NV,89512,31,Washoe,6720,"RENO, NV",39.54692,-119.80018,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12512007,COMMUNITY GARDENS II,9,San Francisco,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$1,279,600 ",80,2035 CANNAN ST,Reno,NV,89512,31,Washoe,6720,"RENO, NV",39.54935,-119.78471,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12535126,KENWOOD APARTMENTS,9,San Francisco,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$1,007,200 ",28,800 N Major Ave,Henderson,NV,89015,3,Clark,4120,"LAS VEGAS, NV-AZ",36.037551,-114.964707,FY95,24864,CENTENNIAL MORTGAGE INC,24864,CENTENNIAL MORTGAGE INC,24864,CENTENNIAL MORTGAGE INC,IN +12535128,VICTORY VILLAGE APARTMEN,9,San Francisco,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$16,442,400 ",320,LAKE MEAD DRIVE,HENDERSON,NV,89015,3,Clark,4120,"LAS VEGAS, NV-AZ",36.0474,-114.9943,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12535131,SANDPEBBLE VILLAGE APTS,9,San Francisco,Basic FHA,5,223a7 Refi Apts,A7/221d4,REJ,Refi/ Pchse,"$7,210,600 ",280,4480 SIRIUS AVE,Las Vegas,NV,89102,3,Clark,4120,"LAS VEGAS, NV-AZ",36.13368,-115.20054,FY95,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +12611014,RIDGECREST TIMBERS APART,10,Portland,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$1,604,400 ",97,8870 N COLUMBIA BOULEVAR,PORTLAND,OR,97203,51,Multnomah,6440,"PORTLAND-VANCOUVER, OR-WA",45.605317,-122.752612,FY94,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12611016,ROSEMARIE APARTMENTS,10,Portland,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$879,900 ",55,7144 SW OLESON ROAD,PORTLAND,OR,97223,67,Washington,6440,"PORTLAND-VANCOUVER, OR-WA",45.4685,-122.7485,FY94,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12611021,ROSE VILLA APARTMENTS,10,Portland,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$822,800 ",91,2525 NE Stephens St,Roseburg,OR,97470,19,Douglas,0,NM,43.239496,-123.351486,FY94,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +12611023,GREENTREE APARTMENTS,10,Portland,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$890,400 ",64,2310 EAST Q AVENUE,LA GRANDE,OR,97850,61,Union,0,NM,45.3276,-118.0801,FY94,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +12611025,PORTLAND CENTER,10,Portland,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$23,021,300 ",525,255 SW HARRISON STREET,PORTLAND,OR,97201,51,Multnomah,6440,"PORTLAND-VANCOUVER, OR-WA",45.5101,-122.6776,FY94,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,75148,GE CAPITAL ASSET MGTMT CORP,TX +12611027,REDWOOD PARK APARTMENTS,10,Portland,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$3,157,100 ",216,4103 W 18th Ave,Eugene,OR,97402,39,Lane,2400,"EUGENE-SPRINGFIELD, OR",44.03917,-123.161398,FY94,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,WA +12611030,EAGLE ROCK APARTMENTS,10,Portland,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$890,000 ",60,1228 SW 1TH STREET,REDMOND,OR,97756,17,Deschutes,0,NM,44.2752,-121.1867,FY95,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,GA +12611034,BAILEY HILL MEADOWS (FT),10,Portland,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$1,363,300 ",71,1515 Bailey Hill Rd Apt,Eugene,OR,97402,39,Lane,2400,"EUGENE-SPRINGFIELD, OR",44.046509,-123.146558,FY96,60188,LOVE FUNDING CORPORATION,60188,LOVE FUNDING CORPORATION,60188,LOVE FUNDING CORPORATION,DC +12611035,BROOKSHORE VILLAGE,10,Portland,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$2,778,800 ",123,1539 SE 15TH STREET,ALBANY,OR,97321,43,Linn,0,NM,44.6273,-123.0849,FY96,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +12615001,HOMEWOODS ON THE WILLAMETTE,10,Portland,Basic FHA,12,Other FHA,Optg loss 221MR,XTJ,Other,"$470,500 ",112,17971 SE RIVER RD,Milwaukie,OR,97267,5,Clackamas,6440,"PORTLAND-VANCOUVER, OR-WA",45.39337,-122.62034,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12635233,ORCHARD HILL TOWNHOUSES,10,Portland,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$14,888,700 ",264,SAGERT ROAD,TUALATIN,OR,97062,67,Washington,6440,"PORTLAND-VANCOUVER, OR-WA",45.3805,-122.7595,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12635234,ST. MARYS WOODS APARTMEN,10,Portland,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$16,231,200 ",408,SW 160TH AVENUE & BLANTO,BEAVERTON,OR,97007,67,Washington,6440,"PORTLAND-VANCOUVER, OR-WA",45.4896,-122.8405,FY94,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12635244,BEAVERTON LODGE RETIREME,10,Portland,Basic FHA,5,223a7 Refi Apts,A7/221d4,REJ,Refi/ Pchse,"$6,765,800 ",121,12900 SW 9TH STREET,BEAVERTON,OR,97005,67,Washington,6440,"PORTLAND-VANCOUVER, OR-WA",45.4805,-122.808,FY94,74634,LPC MORTGAGE CO,05120,MELLON MORTGAGE COMPANY,05120,MELLON MORTGAGE COMPANY,PA +12635246,COURTYARD VILLAGE (FT),10,Portland,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$5,108,100 ",82,NW EASTMAN PARKWAY & NW,GRESHAM,OR,97080,51,Multnomah,6440,"PORTLAND-VANCOUVER, OR-WA",45.4816,-122.4146,FY95,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12635248,COMMONS AT DAWSON CREEK,10,Portland,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$12,061,300 ",240,2101 NE SHUTE ROAD,HILLSBORO,OR,97124,67,Washington,6440,"PORTLAND-VANCOUVER, OR-WA",45.5315,-122.9304,FY95,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +12635253,CHERRY BLOSSOM APARTMENT,10,Portland,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$5,646,500 ",120,10570 CHERRY BLOSSOM DR,PORTLAND,OR,97216,51,Multnomah,6440,"PORTLAND-VANCOUVER, OR-WA",45.5158,-122.5537,FY96,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,GA +12635254,SIR CHARLES COURT (UFT),10,Portland,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$19,633,200 ",396,NE BRONSON RD & NW 167TH,BEAVERTON,OR,97229,67,Washington,6440,"PORTLAND-VANCOUVER, OR-WA",45.5451,-122.833,FY96,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,GA +12641003,CHIEF TYEE APARTMENTS,10,Portland,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$310,000 ",32,102 GARFIELD STREET,ASHLAND,OR,97520,29,Jackson,4890,"MEDFORD-ASHLAND, OR",42.1926,-122.6953,FY94,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12641004,JULIA ANN APARTMENTS,10,Portland,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$1,083,500 ",56,1050 SPRING ST,MEDFORD,OR,97504,29,Jackson,4890,"MEDFORD-ASHLAND, OR",42.3383,-122.8587,FY94,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12641005,TAKILMA VILLAGE,10,Portland,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$175,600 ",18,99 EMERICK STREET,JACKSON COUNTY,OR,97520,29,Jackson,4890,"MEDFORD-ASHLAND, OR",42.195441,-122.69953,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12641006,TENINO TERRACE,10,Portland,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$2,187,500 ",94,2405 SE Umatilla St,Portland,OR,97202,51,Multnomah,6440,"PORTLAND-VANCOUVER, OR-WA",45.462782,-122.638895,FY94,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12641011,BROOKSIDE COURT,10,Portland,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$465,200 ",50,1623 NE VINE,DOUGLAS COUNTY,OR,97470,19,Douglas,0,NM,43.229646,-123.345786,FY94,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12641015,ROYAL LOTO,10,Portland,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$317,200 ",16,101 E 8TH STREET,MEDFORD,OR,97501,29,Jackson,4890,"MEDFORD-ASHLAND, OR",42.3254,-122.8712,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12641016,HOLGATE PLAZA,10,Portland,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$479,400 ",48,4333 SE 104th Ave,Portland,OR,97266,51,Multnomah,6440,"PORTLAND-VANCOUVER, OR-WA",45.491331,-122.554487,FY95,09632,AMERICAN CAPITAL RESOURCE INC,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12641017,ALBINA PLAZA,10,Portland,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$61,000 ",8,3955 & 3965 N ALBINA,PORTLAND,OR,97227,51,Multnomah,6440,"PORTLAND-VANCOUVER, OR-WA",45.5503,-122.6746,FY95,09632,AMERICAN CAPITAL RESOURCE INC,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12641018,AVENUE PLAZA,10,Portland,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$229,500 ",22,5025 NE 8TH AVENUE,PORTLAND,OR,97211,51,Multnomah,6440,"PORTLAND-VANCOUVER, OR-WA",45.5594,-122.6562,FY95,09632,AMERICAN CAPITAL RESOURCE INC,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12641019,SCOTT CREST PLAZA,10,Portland,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$565,500 ",42,13223 SE POWELL BLVD.,PORTLAND,OR,97236,51,Multnomah,6440,"PORTLAND-VANCOUVER, OR-WA",45.4978,-122.5255,FY95,09632,AMERICAN CAPITAL RESOURCE INC,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12641020,OAK PLAZA,10,Portland,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$63,600 ",20,1265 Salem Ave SE,Albany,OR,97321,43,Linn,0,NM,44.637982,-123.08876,FY95,09632,AMERICAN CAPITAL RESOURCE INC,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12641022,MARWOOD PLAZA,10,Portland,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$192,200 ",40,7200 SE Woodstock Blvd,Portland,OR,97206,51,Multnomah,6440,"PORTLAND-VANCOUVER, OR-WA",45.479517,-122.58773,FY95,09632,AMERICAN CAPITAL RESOURCE INC,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12641023,EMERSON APARTMENTS,10,Portland,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$115,800 ",16,5314 NE EMERSON,PORTLAND,OR,97211,51,Multnomah,6440,"PORTLAND-VANCOUVER, OR-WA",45.5656,-122.6451,FY95,09632,AMERICAN CAPITAL RESOURCE INC,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12641024,MINERVA PLAZA,10,Portland,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$116,800 ",15,6633 & 6634 N OBERLIN ST,PORTLAND,OR,97203,51,Multnomah,6440,"PORTLAND-VANCOUVER, OR-WA",45.5893,-122.7348,FY95,09632,AMERICAN CAPITAL RESOURCE INC,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12641025,CHENOWITH RIM APARTMENTS,10,Portland,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$360,000 ",48,3640 WEST 13TH STREET,THE DALLES,OR,97058,65,Wasco,0,NM,45.6259,-121.2281,FY95,09632,AMERICAN CAPITAL RESOURCE INC,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12641026,CANDALARIA APARTMENTS,10,Portland,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$499,800 ",32,901 SE 162ND AVENUE,PORTLAND,OR,97233,51,Multnomah,6440,"PORTLAND-VANCOUVER, OR-WA",45.5168,-122.4952,FY95,09632,AMERICAN CAPITAL RESOURCE INC,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12641028,BURLWOOD APARTMENTS,10,Portland,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$656,900 ",35,14992 SOUTHEAST DIVISION,PORTLAND,OR,97204,51,Multnomah,6440,"PORTLAND-VANCOUVER, OR-WA",45.5174,-122.6749,FY95,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12641029,PINE VILLAGE APARTMENTS,10,Portland,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$380,600 ",30,525 9TH STREET,COOS COUNTY,OR,97411,11,Coos,0,NM,43.11522,-124.4184,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12641030,OREGON CITY TERRACE,10,Portland,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$443,800 ",48,600 MAY STREET,OREGON CITY,OR,97045,5,Clackamas,6440,"PORTLAND-VANCOUVER, OR-WA",45.3404,-122.5959,FY95,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12643041,TIMBERHILL ASSISTED LVG,10,Portland,Basic FHA,3,232 Health Care,NH 232,RNF,NC/SR,"$2,979,900 ",60,989 NW SPRUCE AVENUE,CORVALLIS,OR,97330,3,Benton,0,NM,44.5875,-123.2607,FY94,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +12643044,MARIAN RETIREMENT ASST L,10,Portland,Basic FHA,3,232 Health Care,Asst'd Living,RNL,NC/SR,"$3,420,000 ",50,390 SE Church St,Sublimity,OR,97385,47,Marion,7080,"SALEM, OR",44.828699,-122.789284,FY96,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +12643045,HEARTHSTONE ASSISTED LIV,10,Portland,Basic FHA,3,232 Health Care,Asst'd Living,RNL,NC/SR,"$2,974,000 ",57,12520 SW HART ROAD,WASHINGTON COUNTY,OR,97005,67,Washington,6440,"PORTLAND-VANCOUVER, OR-WA",45.466643,-122.802728,FY96,20608,GEORGETOWN SAVINGS BANK,20608,GEORGETOWN SAVINGS BANK,20608,GEORGETOWN SAVINGS BANK,MA +12643046,CANFIELD PLACE RETIREMEN,10,Portland,Basic FHA,3,232 Health Care,Asst'd Living,RNL,NC/SR,"$5,040,000 ",88,SW CORNER MURRAY ROAD &,BEAVERTON,OR,97007,67,Washington,6440,"PORTLAND-VANCOUVER, OR-WA",45.4746,-122.8575,FY95,05120,MELLON MORTGAGE COMPANY,05120,MELLON MORTGAGE COMPANY,05120,MELLON MORTGAGE COMPANY,PA +126EE002,RVM MYRTLE CREEK,10,Portland,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$1,770,900 ",40,PLAZA DRIVE,MYRTLE CREEK,OR,97457,19,Douglas,0,NM,43.0179,-123.2854,FY94,,,,,,, +126EE003,RVM BEND HOUSING,10,Portland,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$2,419,000 ",58,27TH STREET AND NEFF ROA,BEND,OR,97701,17,Deschutes,0,NM,44.0945,-121.2936,FY94,,,,,,, +126EE006,PROVIDENCE HOUSE,10,Portland,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$2,127,300 ",40,5921 E Burnside St,Portland,OR,97215,51,Multnomah,6440,"PORTLAND-VANCOUVER, OR-WA",45.523082,-122.601434,FY94,,,,,,, +126EE011,KIRKLAND UNION MANOR III,10,Portland,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$3,143,500 ",56,8447 SE LAFAYETTE STREET,PORTLAND,OR,97266,51,Multnomah,6440,"PORTLAND-VANCOUVER, OR-WA",45.4965,-122.5744,FY94,,,,,,, +126EE013,RVM KLAMATH FALLS,10,Portland,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$2,184,900 ",40,ELDORADO AND DAGGETT,KLAMATH FALLS,OR,97601,35,Klamath,0,NM,42.2483,-121.7853,FY95,,,,,,, +126EE016,LARSEN CRK RET.,10,Portland,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$2,397,700 ",40,1025 ELLENDALE DRIVE,MEDFORD,OR,97504,29,Jackson,4890,"MEDFORD-ASHLAND, OR",42.3135,-122.8445,FY95,,,,,,, +126HD002,THE WILLOWS APARTMENTS,10,Portland,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$561,900 ",9,357-377 NW ADAMS,HILLSBORO,OR,97123,67,Washington,6440,"PORTLAND-VANCOUVER, OR-WA",45.4982,-122.957,FY95,,,,,,, +126HD003,ALPINE EAST APARTMENTS,10,Portland,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$953,200 ",18,111 NE 162ND,GRESHAM,OR,97230,51,Multnomah,6440,"PORTLAND-VANCOUVER, OR-WA",45.523387,-122.495217,FY94,,,,,,, +126HD006,BLACKBERRY KNOLL APARTME,10,Portland,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$582,100 ",12,2145 NW Northills Dr,Grants Pass,OR,97526,33,Josephine,0,NM,42.46348,-123.3294,FY96,,,,,,, +126HD009,HOPEWELL APARTMENTS,10,Portland,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$837,100 ",12,1264 SW Cheltenham St,Portland,OR,97201,51,Multnomah,6440,"PORTLAND-VANCOUVER, OR-WA",45.479588,-122.690817,FY95,,,,,,, +126HD010,BAYBRIDGE APARTMENTS,10,Portland,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,146,100 ",22,NORMAN AND STARK,COOS BAY,OR,97420,11,Coos,0,NM,43.3901,-124.2596,FY95,,,,,,, +12710013,HAINES APARTMENTS,10,Seattle,Basic FHA,6,241 Impvmts Apts,241/221MR ,ZSJ,Impvmts,"$502,500 ",30,1415 EAST OLIVE,SEATTLE,WA,98122,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.61662,-122.31255,FY94,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12710016,CONIFER SOUTH APARTMENTS,10,Seattle,Basic FHA,6,241 Impvmts Apts,241/221MR ,ZSJ,Impvmts,"$253,600 ",32,5234 S Warner St # 5235,Tacoma,WA,98409,53,Pierce,8200,"TACOMA, WA",47.209063,-122.480083,FY95,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +12710017,TAMARACK APARTMENTS,10,Seattle,Basic FHA,6,241 Impvmts Apts,241/221MR ,ZSJ,Impvmts,"$442,300 ",83,3511 ALMIRA DRIVE,BREMERTON,WA,98310,35,Kitsap,1150,"BREMERTON, WA",47.5979,-122.6226,FY95,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +12710018,JUNIPER GARDENS APTS.,10,Seattle,Basic FHA,6,241 Impvmts Apts,241/221MR ,ZSJ,Impvmts,"$630,100 ",60,3018 N Highland St,Tacoma,WA,98407,53,Pierce,8200,"TACOMA, WA",47.274335,-122.512694,FY95,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +12710019,PINE TREE HARBOR APTS.,10,Seattle,Basic FHA,6,241 Impvmts Apts,241/221MR ,ZSJ,Impvmts,"$306,800 ",60,2501 SOUTH G STREET,TACOMA,WA,98405,53,Pierce,8200,"TACOMA, WA",47.2379,-122.4409,FY95,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +12710020,EMERSON MANOR,10,Seattle,Basic FHA,6,241 Impvmts Apts,241/221MR ,ZSJ,Impvmts,"$513,000 ",58,217 7TH ST,Hoquiam,WA,98550,27,Grays Harbor,0,NM,46.97835,-123.88352,FY95,05120,MELLON MORTGAGE COMPANY,05120,MELLON MORTGAGE COMPANY,05120,MELLON MORTGAGE COMPANY,PA +12710021,ELIZABETH JAMES APARTMEN,10,Seattle,Basic FHA,6,241 Impvmts Apts,241/221MR ,ZSJ,Impvmts,"$2,053,700 ",60,109 23RD AVENUE EAST,SEATTLE,WA,98112,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.6195,-122.3012,FY95,75950,WA COMMUNITY REINVESTMENT ASSOC,22025,NORWEST BANK MINNESOTA NA,75600,SILVERSTATE FINANCIAL CORP,CO +12711018,OAK TERRACE APARTMENTS,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$2,635,000 ",91,42 Thunderbird Pky SW,Tacoma,WA,98498,53,Pierce,8200,"TACOMA, WA",47.181947,-122.541359,FY94,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,WA +12711036,PINEWOOD SQUARE APARTMEN,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$4,687,100 ",180,6500 208TH ST SW,LYNNWOOD,WA,98036,61,Snohomish,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.8106,-122.3195,FY94,60188,LOVE FUNDING CORPORATION,24038,HEARTLAND SAVINGS BANK FSB,24038,HEARTLAND SAVINGS BANK FSB,MO +12711039,WESTVIEW TERRACE APARTME,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$1,160,200 ",46,2301 SOUTH 74TH STREET,TACOMA,WA,98409,53,Pierce,8200,"TACOMA, WA",47.1902,-122.4645,FY95,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,GA +12711040,VERMONT APARTMENTS,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$1,160,200 ",51,1112 9TH STREET SE,PUYALLUP,WA,98372,53,Pierce,8200,"TACOMA, WA",47.1824,-122.2815,FY94,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,75148,GE CAPITAL ASSET MGTMT CORP,TX +12711041,COLLEGE PLACE APARTMENTS,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$2,571,900 ",73,4131 11TH AVENUE NE,SEATTLE,WA,98105,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.6575,-122.3152,FY94,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +12711043,LOWELL-EMERSON APARTMENT,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$4,617,800 ",193,1102 8TH AVENUE,SEATTLE,WA,98101,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.6091,-122.3277,FY94,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,75148,GE CAPITAL ASSET MGTMT CORP,TX +12711047,SOMERSET APARTMENTS,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$2,577,600 ",104,1802 SOUTH 82ND STREET,TACOMA,WA,98408,53,Pierce,8200,"TACOMA, WA",47.1829,-122.4591,FY94,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,WA +12711052,MALLARD LAKE APARTMENTS,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$7,371,400 ",335,1400 SW 107th St,Seattle,WA,98146,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.507282,-122.35126,FY95,60188,LOVE FUNDING CORPORATION,24038,HEARTLAND SAVINGS BANK FSB,24038,HEARTLAND SAVINGS BANK FSB,MO +12711053,DOVER APARTMENTS,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$1,608,000 ",48,901 6TH AVENUE,SEATTLE,WA,98104,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.6066,-122.3287,FY94,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,75148,GE CAPITAL ASSET MGTMT CORP,TX +12711055,VILLAGE FAIR APARTMENTS,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$3,784,600 ",120,305 NE FAIRGROUND ROAD,SILVERDALE,WA,98310,35,Kitsap,1150,"BREMERTON, WA",47.632117,-122.657357,FY94,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,75148,GE CAPITAL ASSET MGTMT CORP,TX +12711057,BURGUNDY RIDGE APTS.,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$2,911,700 ",76,12002 Roosevelt Way NE,Seattle,WA,98125,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.716307,-122.316477,FY95,09632,AMERICAN CAPITAL RESOURCE INC,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12711058,COAL CREEK APARTMENTS,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$3,154,700 ",106,6810 Coal Creek Pky SE,Bellevue,WA,98006,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.550749,-122.163956,FY96,09632,AMERICAN CAPITAL RESOURCE INC,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12711059,COVENTRY PLACE APTS.,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$3,866,900 ",96,6700 NE 182ND ST.,SEATTLE,WA,98155,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.7587,-122.3102,FY96,09632,AMERICAN CAPITAL RESOURCE INC,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12711064,QUAIL HOLLOW APARTMENTS,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$9,273,500 ",190,2033 NW Bobwhite Ln,Silverdale,WA,98383,35,Kitsap,1150,"BREMERTON, WA",47.6557,-122.6988,FY96,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,GA +12711065,TAMA QUA APARTMENTS,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$3,070,300 ",126,11844 26TH AVENUE SO.,SEATTLE,WA,98168,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.4956,-122.2981,FY94,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,75148,GE CAPITAL ASSET MGTMT CORP,TX +12711067,SANDPIPER APARTMENTS,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$6,332,700 ",163,3100 SOUTH 208TH ST.,SEATAC,WA,98198,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.4156,-122.2923,FY95,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,GA +12711077,MARLBOROUGH HOUSE APARTM,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$3,325,000 ",85,1220 BOREN AVENUE,SEATTLE,WA,98101,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.6113,-122.3252,FY95,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,GA +12711078,UNION ARMSUNION MANOR AP,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$1,200,000 ",78,604 E Union St,Seattle,WA,98122,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.61348,-122.3229,FY95,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,GA +12711081,HERITAGE GARDENS APARTME,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$3,978,300 ",108,2501 148TH AVENUE SE,BELLEVUE,WA,98007,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.5876,-122.1416,FY96,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,WA +12711082,KINGSBRIDGE APARTMENTS,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$2,617,400 ",60,29605 18TH AVENUE SOUTH,FEDERAL WAY,WA,98003,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.3366,-122.3094,FY96,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,GA +12711085,BRIDGEWIVE APARTMENTS,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$1,246,100 ",24,1515 NW 52ND STREET,SEATTLE,WA,98107,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.6666,-122.3749,FY96,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,GA +12711090,HUMPHREY,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$2,240,000 ",74,2205 SECOND AVENUE,SEATTLE,WA,98121,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.6135,-122.3431,FY96,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,GA +12711091,COMPTON WOODS,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$3,587,500 ",120,1321 97TH AVENUE NE,KIRKLAND,WA,98034,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.7048,-122.2169,FY96,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,WA +12711092,BETHUNE MANOR APTS,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$647,500 ",20,106 22ND AVE,SEATTLE,WA,98144,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.60171,-122.30238,FY95,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,WA +12711094,CHEYENNE PLACE APARTMENT,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$1,316,900 ",64,4602 S 55TH,TACOMA,WA,98409,53,Pierce,8200,"TACOMA, WA",47.207597,-122.49674,FY96,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,WA +12712008,VARSITY VILLAGE EXTENSIO,10,Seattle,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$1,136,700 ",52,2400 MCKENZIE AVENUE,BELLINGHAM,WA,98225,73,Whatcom,0860,"BELLINGHAM, WA",48.7193,-122.4843,FY94,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12712009,BAYVIEW APARTMENTS,10,Seattle,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$833,000 ",46,808 29TH STREET,ANACORTES,WA,98221,57,Skagit,0,NM,48.499,-122.6092,FY94,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12712010,PARKWAY APARTMENTS,10,Seattle,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$1,568,600 ",40,3970 W Lake Sammamish Pky N,Redmond,WA,98052,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.64492,-122.1063,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12712011,MARY RUTH MANOR APTS.,10,Seattle,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$557,600 ",20,100 20TH AVENUE E.,SEATTLE,WA,98112,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.6188,-122.3048,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12714005,VARSITY VILLAGE APTS.,10,Seattle,Basic FHA,6,241 Impvmts Apts,241/BMIR ,ZSL,Impvmts,"$1,303,000 ",49,2400 MC KENZIE AVENUE,BELLINGHAM,WA,98225,73,Whatcom,0860,"BELLINGHAM, WA",48.7193,-122.4843,FY94,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12714007,REDWOOD PARK APARTMENTS,10,Seattle,Basic FHA,6,241 Impvmts Apts,241/BMIR ,ZSL,Impvmts,"$3,432,900 ",155,3015 N. PEARL ST.,TACOMA,WA,98407,53,Pierce,8200,"TACOMA, WA",47.2744,-122.5144,FY95,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +12735384,NORTHBRIDGE APARTMENTS,10,Seattle,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$3,321,800 ",44,3800 AURORA AVENUE N,SEATTLE,WA,98103,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.6529,-122.3458,FY94,55500,CENTENNIAL BANK,05120,MELLON MORTGAGE COMPANY,05120,MELLON MORTGAGE COMPANY,PA +12735404,CAPITAL CITY ON THE COUR,10,Seattle,Basic FHA,2,FHA NC/SR Apts,221d4,OMD,NC/SR,"$4,562,400 ",96,SWC RUDDELL RD SE/YELM H,LACEY,WA,98505,67,Thurston,5910,"OLYMPIA, WA",47.0739,-122.9775,FY94,55500,CENTENNIAL BANK,55500,CENTENNIAL BANK,55500,CENTENNIAL BANK,WA +12735424,CANYON PARK APARTMENTS,10,Seattle,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$13,152,400 ",300,5800 112TH ST EAST,PIERCE COUNTY,WA,98446,53,Pierce,8200,"TACOMA, WA",47.15448,-122.35576,FY94,55500,CENTENNIAL BANK,55500,CENTENNIAL BANK,55500,CENTENNIAL BANK,WA +12735427,PARK GREEN APARTMENTS,10,Seattle,Basic FHA,5,223a7 Refi Apts,A7/221d4,REJ,Refi/ Pchse,"$2,307,400 ",100,5544 CHEYENNE LOOP ROAD,TACOMA,WA,98409,53,Pierce,8200,"TACOMA, WA",47.2069,-122.4976,FY94,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12743063,GIG HARBOR RETIREMENT CE,10,Seattle,Basic FHA,3,232 Health Care,NH 232,RNF,NC/SR,"$5,152,500 ",78,45TH STREET COURT N.W.,GIG HARBOR,WA,98335,53,Pierce,8200,"TACOMA, WA",47.3018,-122.609,FY94,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +12743069,OLYMPIA RETIREMENT CENTE,10,Seattle,Basic FHA,3,232 Health Care,Asst'd Living,RNL,NC/SR,"$6,088,500 ",83,"LOT B,SS-5497 LILLY ROAD",OLYMPIA,WA,98504,67,Thurston,5910,"OLYMPIA, WA",47.041,-122.8946,FY95,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +12743074,MEADOWBROOK NURSING CENT,10,Seattle,Basic FHA,3,232 Health Care,NH 232,RNF,NC/SR,"$4,590,000 ",47,3540 NE 110TH STREET,SEATTLE,WA,98125,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.7084,-122.289,FY96,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +12743076,KIN ON HEALTH CARE CENTE,10,Seattle,Basic FHA,3,232 Health Care,NH 232,RNF,NC/SR,"$8,835,000 ",100,BRANDON ST AND RAINIER,SEATTLE,WA,98125,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.5536,-122.2785,FY95,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +12722001,BRANCH VILLA HEALTH CC,10,Seattle,Basic FHA,3,232 Health Care,NH 232,RNF,NC/SR,"$10,200,000 ",237,2611 S DEARBORN STREET,Seattle,WA,98144,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.5957,-122.2972,FY96,09632,AMERICAN CAPITAL RESOURCE INC,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12743084,WOODWAY INN,10,Seattle,Basic FHA,3,232 Health Care,Asst'd Living,RNL,NC/SR,"$2,299,900 ",51,1712 E. MAPLEWOOD AVENUE,BELLINGHAM,WA,98225,73,Whatcom,0860,"BELLINGHAM, WA",48.7725,-122.4911,FY95,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +12743085,PEOPLE RETIREMENT COMMUNITY,10,Seattle,Basic FHA,3,232 Health Care,Board & Care,RNT,NC/SR,"$6,579,000 ",121,1800 E 67TH ST,Tacoma,WA,98404,53,Pierce,8200,"TACOMA, WA",47.1961,-122.40584,FY96,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,GA +127EE004,THE SWAN MANOR ADDITION,10,Seattle,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$3,572,100 ",45,10 SOUTH 8TH AVENUE,YAKIMA,WA,98902,77,Yakima,9260,"YAKIMA, WA",46.5988,-120.5188,FY95,,,,,,, +127EE005,STILLAGUAMISH POINTE APT,10,Seattle,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$2,556,600 ",40,18300 31ST AVE. NE,ARLINGTON,WA,98223,61,Snohomish,7600,"SEATTLE-BELLEVUE-EVERETT, WA",48.1623,-122.1868,FY94,,,,,,, +127EE006,LYNNCREST SENIOR APTS.,10,Seattle,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$2,556,600 ",40,4703 194TH ST. SW,LYNNWOOD,WA,98036,61,Snohomish,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.8231,-122.2954,FY94,,,,,,, +127EE007,PROVIDENCE PLACE,10,Seattle,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$2,568,300 ",40,SE 3-4 STS WASH.- ADAMS,CHEHALIS,WA,98532,41,Lewis,0,NM,46.6378,-122.9651,FY94,,,,,,, +127EE009,PUYALLUP VALLEY SILVERCR,10,Seattle,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$2,597,000 ",41,11401 94TH AVENUE E.,PUYALLUP,WA,98373,53,Pierce,8200,"TACOMA, WA",47.1528,-122.3025,FY95,,,,,,, +127EE011,SILVER VIEW SENIOR APTS.,10,Seattle,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$2,611,900 ",40,16TH AVENUE & 112TH ST S,EVERETT,WA,98208,61,Snohomish,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.8972,-122.2092,FY96,,,,,,, +127HD002,OAK MANOR APARTMENTS,10,Seattle,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,069,400 ",15,10621 BAGLEY AVENUE N.,SEATTLE,WA,98133,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.7067,-122.3315,FY95,,,,,,, +127HD003,OPEN DOOR VENTURES,10,Seattle,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,477,000 ",24,400 BROADWAY,SEATTLE,WA,98122,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.6055,-122.3194,FY94,,,,,,, +127HD006,VISTA DEL SOL APARTMENTS,10,Seattle,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$698,100 ",12,FIRST AND PARKLAND,SUNNYSIDE,WA,98944,77,Yakima,9260,"YAKIMA, WA",46.3141,-120.019,FY96,,,,,,, +127HD007,COUNTERPOINT,10,Seattle,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$706,200 ",11,3404 148TH ST SW,LYNNWOOD,WA,98037,61,Snohomish,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.8642,-122.2748,FY96,,,,,,, +127HD008,UCP EASTSIDE COMMUNITY L,10,Seattle,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$554,700 ",9,12517 SE 63RD ST.,BELLEVUE,WA,98006,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.5468,-122.1712,FY95,,,,,,, +12911004,LOMA PALISADES APARTMENT,9,Los Angeles,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRS,Refi/ Pchse,"$25,925,000 ",548,2799 ADRIAN STREET,SAN DIEGO,CA,92110,73,San Diego,7320,"SAN DIEGO, CA",32.7497,-117.2267,FY94,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12912009,PLAZA MANOR APARTMENTS,9,Los Angeles,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$8,079,000 ",369,2721 PLAZA BOULEVARD,National City,CA,91950,73,San Diego,7320,"SAN DIEGO, CA",32.68035,-117.07923,FY94,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12941001,INTER-CITY MANOR APARTME,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$1,632,800 ",80,2101 L AVENUE,NATIONAL CITY,CA,91950,73,San Diego,7320,"SAN DIEGO, CA",32.6679,-117.0895,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12941002,RAMMTON ARMS APARTMENTS,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$3,295,900 ",154,10233 MISSION GORGE ROAD,SANTEE,CA,92071,73,San Diego,7320,"SAN DIEGO, CA",32.8385,-116.9741,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12941003,BROADWAY APARTMENTS PHAS,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$1,025,400 ",52,849 NORTH THIRD STREET,EL CAJON,CA,92021,73,San Diego,7320,"SAN DIEGO, CA",32.8064,-116.9261,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12941004,CASA DE CORTEZ APARTMENT,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$713,200 ",32,528 DE LUZ ROAD,FALLBROOK,CA,92028,73,San Diego,7320,"SAN DIEGO, CA",33.3857,-117.2515,FY96,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12941005,CASITA DE CORTEZ,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$209,400 ",12,520 N. FREEMA STREET,OCEANSIDE,CA,92054,73,San Diego,7320,"SAN DIEGO, CA",33.1993,-117.3802,FY96,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12941006,VILLA DE CORTEZ APARTMEN,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$211,100 ",11,310 N. CLEMENTINE STREET,OCEANSIDE,CA,92054,73,San Diego,7320,"SAN DIEGO, CA",33.1988,-117.3765,FY96,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12941007,RANCHO DE CORTEZ APARTME,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$649,000 ",26,1260 Calle Jules,Vista,CA,92084,73,San Diego,7320,"SAN DIEGO, CA",33.216647,-117.228998,FY96,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12941008,CARLTON COUNTRY CLUB,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$4,347,400 ",130,9345 CARLTON OAKS DRIVE,SANTEE,CA,92071,73,San Diego,7320,"SAN DIEGO, CA",32.8458,-116.9971,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12941009,MURRAY MANOR APARTMENTS,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$4,961,600 ",218,5700 COWLES MOUNTAIN,LA MESA,CA,91942,73,San Diego,7320,"SAN DIEGO, CA",32.7838,-117.0295,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12941010,MEADOWBROOK I APARTMEBTS,9,Los Angeles,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$5,215,900 ",208,7844 Paradise Valley Rd,San Diego,CA,92139,73,San Diego,7320,"SAN DIEGO, CA",32.696539,-117.026997,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12941011,MEADOWBROOK II APTS,9,Los Angeles,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$7,278,000 ",239,7844 PARADISE VALLEY RD,San Diego,CA,92139,73,San Diego,7320,"SAN DIEGO, CA",32.69654,-117.027,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12941012,SU CASA PRO CORTEZ APART,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$2,234,400 ",30,620 MELBA ROAD,ENCINITAS,CA,92024,73,San Diego,7320,"SAN DIEGO, CA",33.04,-117.2781,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +12941022,ESCONDIDO APARTMENTS,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$2,582,600 ",92,500 NORTH MIDWAY DRIVE,ESCONDIDO,CA,92027,73,San Diego,7320,"SAN DIEGO, CA",33.1394,-117.0522,FY96,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +129EE001,TELACU MANOR - NATIONAL,9,Los Angeles,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$5,165,700 ",76,650 E. 14th St,NATIONAL CITY,CA,92050,73,San Diego,7320,"SAN DIEGO, CA",32.67,-117.1,FY94,,,,,,, +129EE002,THE SALVATION ARMY SAN D,9,Los Angeles,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$12,123,500 ",125,SEC 7TH & E STREETS,SAN DIEGO,CA,92101,73,San Diego,7320,"SAN DIEGO, CA",32.7184,-117.1588,FY95,,,,,,, +129HD001,DOWNSTOWN VISTA,9,Los Angeles,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$801,700 ",8,1089 JENNIFER CIR & 232,VISTA,CA,92084,73,San Diego,7320,"SAN DIEGO, CA",33.2122,-117.2269,FY96,,,,,,, +129HH001,PROJECT ROHER,9,Los Angeles,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$710,200 ",8,758 S. MELROSE DR411 CAR,SAN DIEGO,CA,92083,73,San Diego,7320,"SAN DIEGO, CA",33.184071,-117.251748,FY94,,,,,,, +13600156,MINK CREEK MOBILE HOME P,9,Sacramento,Basic FHA,12,Other FHA,MobHome,HRC,Other,"$1,262,500 ",54,SO AUBURN ST & HWY 80,COLFAX,CA,95713,61,Placer,6920,"SACRAMENTO, CA",39.0776,-120.9598,FY94,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +13611015,PARKWAY VILLAGE APARTMEN,9,Sacramento,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$8,502,500 ",332,7826 Center Pky,Sacramento,CA,95823,67,Sacramento,6920,"SACRAMENTO, CA",38.472414,-121.43704,FY94,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,75148,GE CAPITAL ASSET MGTMT CORP,TX +13612005,CRANBROOK COURT APARTMEN,9,Sacramento,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$1,044,900 ",40,920 CRANBROOK COURT,DAVIS,CA,95616,113,Yolo,9270,"YOLO, CA",38.5597,-121.7402,FY94,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +13612006,TRANS PACIFIC GARDENS II,9,Sacramento,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$3,004,100 ",164,729 NORD AVE,CHICO,CA,95926,7,Butte,1620,"CHICO-PARADISE, CA",39.7301,-121.856,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +13612007,THE MEADOWS I APARTMENTS,9,Sacramento,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$1,119,600 ",29,401 CLINTON RD,JACKSON,CA,95642,5,Amador,0,NM,38.3442,-120.76,FY94,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +13612008,YUBA GARDEN APARTMENTS,9,Sacramento,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$1,429,500 ",120,1894 HAMMONTON ROAD,MARYSVILLE,CA,95901,115,Yuba,9340,"YUBA CITY, CA",39.1353,-121.5471,FY94,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +13612009,THE VILLAGE APARTMENTS,9,Sacramento,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$1,135,100 ",72,435 EAST 6TH STREET,TRACY,CA,95376,77,San Joaquin,8120,"STOCKTON-LODI, CA",37.7366,-121.4181,FY94,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +13612010,GREENBRIAR APARTMENT III,9,Sacramento,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$5,334,900 ",140,2844 WRIGHT STREET,SACRAMENTO,CA,95821,67,Sacramento,6920,"SACRAMENTO, CA",38.6168,-121.405,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +13612011,FOOTHILL PLAZA APARTMENT,9,Sacramento,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$4,562,200 ",98,5324 HEMLOCK STREET,SACRAMENTO,CA,95841,67,Sacramento,6920,"SACRAMENTO, CA",38.6647,-121.3402,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +13612012,TUOLUMNE APARTMENTS,9,Sacramento,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$876,000 ",52,18400 Tuolumne Rd,Tuolumne,CA,95379,109,Tuolumne,0,NM,37.9703,-120.2354,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +13612013,FLORIN MEADOWS I,9,Sacramento,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$2,143,700 ",120,7301 29TH STREET,SACRAMENTO,CA,95822,67,Sacramento,6920,"SACRAMENTO, CA",38.4929,-121.4719,FY94,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +13612014,FLORIN MEADOWS II,9,Sacramento,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$2,174,900 ",124,7301 29TH STREET,SACRAMENTO,CA,95822,67,Sacramento,6920,"SACRAMENTO, CA",38.4929,-121.4719,FY94,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +13612015,SIERRA GARDENS APARTMENT,9,Sacramento,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$1,506,900 ",76,1801 Lake Tahoe Blvd,South Lake Tahoe,CA,96150,17,El Dorado,6920,"SACRAMENTO, CA",38.9168,-119.9871,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +13612016,VILLAGE GARDENS APARTMEN,9,Sacramento,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$1,763,500 ",88,662 EAST STREET,TRACY,CA,95376,77,San Joaquin,8120,"STOCKTON-LODI, CA",37.7363,-121.42,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +13612017,1215 D STREET,9,Sacramento,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$589,000 ",24,1215 D STREET,SACRAMENTO,CA,95814,67,Sacramento,6920,"SACRAMENTO, CA",38.5861,-121.4865,FY95,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +13612020,CREEKSIDE SOUTH APARTMEN,9,Sacramento,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$951,500 ",40,601 WIMBLEDON DR,LODI,CA,95240,77,San Joaquin,8120,"STOCKTON-LODI, CA",38.1043,-121.2784,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +13612021,PALM GARDENS APARTMENTS,9,Sacramento,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$663,000 ",32,701 A STREET,GALT,CA,95632,67,Sacramento,6920,"SACRAMENTO, CA",38.2547,-121.3014,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +13612022,2301 C ST APTS,9,Sacramento,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$362,600 ",16,2301 C ST,SACRAMENTO,CA,95816,67,Sacramento,6920,"SACRAMENTO, CA",38.5832,-121.4713,FY95,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +13638049,TEHAMA ESTATES,9,Sacramento,Basic FHA,5,223a7 Refi Apts,A7/231,REN,Refi/ Pchse,"$1,372,900 ",72,750 DAVID AVE,RED BLUFF,CA,96080,103,Tehama,0,NM,40.1694,-122.2509,FY94,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +13641012,DEVONSHIRE APARTMENTS,9,Sacramento,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$251,800 ",30,1431 WESCOTT ROAD,COLUSA,CA,95932,11,Colusa,0,NM,39.2002,-122.0048,FY96,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +136EE002,ROCKLIN VOA ELDERLY HOUS,9,Sacramento,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$3,139,600 ",43,SW CORNER OF RUKKALA RD,ROCKLIN,CA,95677,61,Placer,6920,"SACRAMENTO, CA",38.7882,-121.2401,FY94,,,,,,, +136EE003,STOCKTON SILVERCREST,9,Sacramento,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$5,866,399 ",83,191 STANISLAUS ST,STOCKTON,CA,95202,77,San Joaquin,8120,"STOCKTON-LODI, CA",37.9608,-121.2875,FY95,,,,,,, +136EE004,AUBURN VOA ELDERLY HSG,9,Sacramento,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$4,045,800 ",59,AUBURN RAVINE RD,AUBURN,CA,95603,61,Placer,6920,"SACRAMENTO, CA",38.8992,-121.072,FY94,,,,,,, +136EE007,PLACER COUNTY VOA ELDERL,9,Sacramento,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$5,632,100 ",79,5725 SHANNON BAY DR,ROCKLIN,CA,95677,61,Placer,6920,"SACRAMENTO, CA",38.7833,-121.2493,FY96,,,,,,, +136EE011,TREE HOUSE SENIOR APARTM,9,Sacramento,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$4,018,100 ",62,4500 ALDER ST,REDDING,CA,96001,89,Shasta,6690,"REDDING, CA",40.585882,-122.42443,FY96,,,,,,, +136HD004,WILSHIRE PLACE,9,Sacramento,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,101,200 ",17,580 Wilshire Dr,Redding,CA,96002,89,Shasta,6690,"REDDING, CA",40.562482,-122.364392,FY95,,,,,,, +14012001,WAIPAHU TOWER,9,Honolulu,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$6,517,500 ",63,94-337 PUPLUMOMI ST,Waipahu,HI,96797,3,Honolulu,3320,"HONOLULU, HI",21.38392,-158.0187,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +14012002,KEWALO APTS,9,Honolulu,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$2,979,300 ",38,1407 KEWALO ST,Honolulu,HI,96822,3,Honolulu,3320,"HONOLULU, HI",21.30617,-157.8427,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +14043007,THE PONDS AT PUNALUU,9,Honolulu,Basic FHA,3,232 Health Care,NH 232,RNF,NC/SR,"$12,068,000 ",141,53-594 Kamehameha Hwy,Hauula,HI,96717,3,Honolulu,3320,"HONOLULU, HI",21.619903,-157.916494,FY96,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,WA +140EE002,MALUHIA ELDERLY HOUSING,9,Honolulu,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$4,283,700 ",40,1027 HALA DRIVE,HONOLULU,HI,96817,3,Honolulu,3320,"HONOLULU, HI",21.3328,-157.86369,FY95,,,,,,, +14311008,BENTLEY PARKE APARTMENTS,9,Los Angeles,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$11,985,000 ",232,3200 WEST FIFTH STREET,ORANGE,CA,92703,59,Orange,5945,"ORANGE COUNTY, CA",33.748907,-117.909253,FY94,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,VA +14311011,HACIENDA LA JOLLA II,9,Los Angeles,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRS,Refi/ Pchse,"$3,230,000 ",80,840 WEST LA JOLLA STREET,PLACENTIA,CA,92670,59,Orange,5945,"ORANGE COUNTY, CA",33.8567,-117.8794,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +14311012,COUNTRY VILLAGE APARTMEN,9,Los Angeles,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$28,256,700 ",1194,10250 Country Village Rd,Mira Loma,CA,91752,65,Riverside,6780,"RIVERSIDE-SAN BERNARDINO, CA",33.9931,-117.5232,FY94,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,75148,GE CAPITAL ASSET MGTMT CORP,TX +14311016,VICTORIA WOODS APARTMENT,9,Los Angeles,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRS,Refi/ Pchse,"$11,621,300 ",327,8493 Etiwanda Ave,Rancho Cucamonga,CA,91739,71,San Bernardino,6780,"RIVERSIDE-SAN BERNARDINO, CA",34.099593,-117.523085,FY95,09632,AMERICAN CAPITAL RESOURCE INC,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +14311020,FLOWERTREE APARTMENTS,9,Los Angeles,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$7,789,500 ",186,6664 KNOTT AVENUE,BUENA PARK,CA,90621,59,Orange,5945,"ORANGE COUNTY, CA",33.8635,-118.0101,FY96,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,GA +14311022,TYLER TERRACE APARTMENTS,9,Los Angeles,Basic FHA,5,223a7 Refi Apts,A7/223f,REK,Refi/ Pchse,"$3,917,400 ",112,3572 BANBURY DRIVE,RIVERSIDE,CA,92505,65,Riverside,6780,"RIVERSIDE-SAN BERNARDINO, CA",33.9057,-117.4613,FY96,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +14341001,MECCA VINEYARDS,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$6,556,500 ",265,83385 Gemini St,Indio,CA,92201,65,Riverside,6780,"RIVERSIDE-SAN BERNARDINO, CA",33.711608,-116.208163,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +14341002,PALO VERDE APARTMENTS,9,Los Angeles,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$1,646,800 ",80,720 VERDE STREET,INDIO,CA,92201,65,Riverside,6780,"RIVERSIDE-SAN BERNARDINO, CA",33.7194,-116.2352,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +14341003,ONTARIO TOWNHOUSES,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$2,673,700 ",86,1360 EAST D STREET,ONTARIO,CA,91764,71,San Bernardino,6780,"RIVERSIDE-SAN BERNARDINO, CA",34.0669,-117.6229,FY95,71242,MARBLE MORTGAGE CORP,71242,MARBLE MORTGAGE CORP,71242,MARBLE MORTGAGE CORP,MD +14341007,DEL VISTA VILLAGE,9,Los Angeles,Presv 241f,7,Presv 241f,241f BMIR ,ZFL,,"$3,565,700 ",160,956 AVENIDA DEL VISTA,CORONA,CA,91720,65,Riverside,6780,"RIVERSIDE-SAN BERNARDINO, CA",33.8743,-117.5991,FY95,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +14341008,LAS LOMAS GARDENS,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$4,354,900 ",112,900 LAS LOMAS DR,La Habra,CA,90631,59,Orange,5945,"ORANGE COUNTY, CA",33.92036,-117.95388,FY96,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +143HD002,MORENO VALLEY APARTMENTS,9,Los Angeles,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$2,620,100 ",24,24545 BAY AVENUE,MORENO VALLEY,CA,92388,65,Riverside,6780,"RIVERSIDE-SAN BERNARDINO, CA",33.9208,-117.2333,FY95,,,,,,, +143HD003,HAGAN HOUSE,9,Los Angeles,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$2,308,600 ",25,840 MERMAID AVENUE,LAGUNA BEACH,CA,92651,59,Orange,5945,"ORANGE COUNTY, CA",33.5372,-117.7718,FY95,,,,,,, +17110002,PONDEROSA APARTMENTS,10,Seattle,Basic FHA,6,241 Impvmts Apts,241/221MR ,ZSJ,Impvmts,"$1,957,600 ",129,EAST 9314 MONTGOMERY,SPOKANE,WA,99206,63,Spokane,7840,"SPOKANE, WA",47.6494,-117.258,FY94,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +17111015,SERENDIPIDY,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$443,200 ",14,12807 E SPRAGUE AVENUE,SPOKANE,WA,99216,63,Spokane,7840,"SPOKANE, WA",47.6572,-117.2321,FY96,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +17112001,HAMILTON HOUSE,10,Seattle,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$425,700 ",42,902 E Boone Ave,Spokane,WA,99202,63,Spokane,7840,"SPOKANE, WA",47.66842,-117.39521,FY95,05120,MELLON MORTGAGE COMPANY,05120,MELLON MORTGAGE COMPANY,05120,MELLON MORTGAGE COMPANY,PA +17135207,WASHINGTON SQUARE II,10,Seattle,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$5,246,600 ",88,2400 George Washington Way,Richland,WA,99352,5,Benton,6740,"RICHLAND-KENNEWICK-PASCO, WA",46.32035,-119.27176,FY94,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +17135214,RIVERPOINTE APARTMENTS,10,Seattle,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$11,433,900 ",228,DUPORTAIL ST AND COULEE ST,RICHLAND,WA,99352,5,Benton,6740,"RICHLAND-KENNEWICK-PASCO, WA",46.2835,-119.2883,FY94,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +17135215,CROSSPOINTE APARTMENTS,10,Seattle,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$10,374,800 ",200,DESCHUTES AVE AND COLUMBIA,KENNEWICK,WA,99336,5,Benton,6740,"RICHLAND-KENNEWICK-PASCO, WA",46.2132,-119.1201,FY94,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +17135216,ASPEN VILLAGE,10,Seattle,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$6,581,000 ",162,15825 E. 4TH,SPOKANE,WA,99037,63,Spokane,7840,"SPOKANE, WA",47.653604,-117.193877,FY96,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +171EE001,WINCHESTER COURT III,10,Seattle,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$1,939,700 ",41,4002 N Stone St,Spokane,WA,99207,63,Spokane,7840,"SPOKANE, WA",47.69368,-117.37498,FY96,,,,,,, +171EE007,AUSTEN MANOR,10,Seattle,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$1,601,100 ",30,1222 Chestnut St,Clarkston,WA,99403,3,Asotin,0,NM,46.410982,-117.053262,FY95,,,,,,, +171EE008,ALSAKER-GRACE COURT VILL,10,Seattle,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$3,308,000 ",60,12915 EAST BROADWAY,SPOKANE,WA,99216,63,Spokane,7840,"SPOKANE, WA",47.6645,-117.231,FY96,,,,,,, +171HD002,WASHINGTON VOA LIVING CT,10,Seattle,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,163,000 ",19,12700 E 3rd Ave,Spokane,WA,99216,63,Spokane,7840,"SPOKANE, WA",47.65448,-117.23373,FY94,,,,,,, +17611007,BARONESS APARTMENTS,10,Anchorage,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$552,500 ",30,1400 W. 25TH AVENUE,ANCHORAGE CITY AND,AK,99503,20,Anchorage,0380,"ANCHORAGE, AK",61.198617,-149.903664,FY94,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,75148,GE CAPITAL ASSET MGTMT CORP,TX +17611009,"CLIFFWOOD, JOINT VENTURE",10,Anchorage,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$1,271,400 ",40,"1311,1313,1319 & 1321 SE",KODIAK,AK,99615,150,Kodiak Island,0,NM,57.7813,-152.4854,FY95,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,09632,AMERICAN CAPITAL RESOURCE INC,GA +17611013,NANTUCKET SQUARE APARTME,10,Anchorage,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$2,167,500 ",48,1318 - 29TH AVENUE,FAIRBANKS,AK,99701,90,Fairbanks North Star,0,NM,64.8212,-147.7317,FY95,09632,AMERICAN CAPITAL RESOURCE INC,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +17611014,SUNDAY APARTMENTS,10,Anchorage,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$382,500 ",18,801 E 12TH AVE,ANCHORAGE CITY AND,AK,99515,20,Anchorage,0380,"ANCHORAGE, AK",61.21098,-149.86664,FY96,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,WA +17611016,MICHAEL W. PADGETT,10,Anchorage,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$175,000 ",6,511 Robin Cir,Wasilla,AK,99654,170,Matanuska-Susitna,0,NM,61.583997,-149.473728,FY96,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,WA +17611017,PATRICIA STRAUSSE,10,Anchorage,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$637,500 ",20,"13301,13321,13341 & 1341",ANCHORAGE CITY AND,AK,99515,20,Anchorage,0380,"ANCHORAGE, AK",61.1125,-149.8992,FY96,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,WA +17611022,DOUGLAS HARVEY,10,Anchorage,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$731,000 ",34,8480 JEWELL LAKE ROAD,ANCHORAGE CITY AND,AK,99502,20,Anchorage,0380,"ANCHORAGE, AK",61.143606,-149.950186,FY96,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,WA +17611023,BARONESS #2 APARTMENTS,10,Anchorage,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$747,300 ",30,7016 WEIMER DRIVE,ANCHORAGE CITY AND,AK,99502,20,Anchorage,0380,"ANCHORAGE, AK",61.157488,-149.947826,FY96,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,WA +17612001,JEWELL LAKE VILLA I,10,Anchorage,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$1,029,800 ",53,3640 WEST 88TH AVE,ANCHORAGE CITY AND,AK,99503,20,Anchorage,0380,"ANCHORAGE, AK",61.14108,-149.94648,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +17612002,JEWELL LAKE VILLA II,10,Anchorage,Basic FHA,6,241 Impvmts Apts,241/236 ,ZSR,Impvmts,"$1,565,900 ",72,88TH AVE & BLAC,ANCHORAGE CITY AND,AK,99503,20,Anchorage,0380,"ANCHORAGE, AK",61.1942,-149.8947,FY95,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA +176EE001,MOORE STREET SENIOR APAR,10,Anchorage,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$1,525,000 ",20,1424 MOORE STREET,STATE OF ALASKA,AK,99701,90,Fairbanks North Star,0,NM,64.835757,-147.76697,FY94,,,,,,, +176HD002,LIFE QUEST,10,Anchorage,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$541,000 ",14,SCATTERED SITES,PALMER,AK,99687,170,Matanuska-Susitna,0,NM,61.5771,-149.5291,FY94,,,,,,, +176HD004,ASETS,10,Anchorage,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,071,100 ",9,125 E. 24TH AVE,ANCHORAGE CITY AND,AK,99503,20,Anchorage,0380,"ANCHORAGE, AK",61.199782,-149.880586,FY94,,,,,,, +176HD006,LIFE QUEST,10,Anchorage,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$570,000 ",5,1690 LACY LOOP,WASILLA,AK,99687,170,Matanuska-Susitna,0,NM,61.5985,-149.43449,FY95,,,,,,, +14311021,WIMBLEDON APTS,9,Los Angeles,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$7,738,200 ",288,16950 Jasmine St,Victorville,CA,92392,71,San Bernardino,6780,"RIVERSIDE-SAN BERNARDINO, CA",34.47334,-117.29096,FY96,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,VA +12322002,CHRIS RIDGE VILLAGE,9,Phoenix,Basic FHA,3,232 Health Care,NH 223f,RNQ,Refi/ Pchse,"$4,877,300 ",150,6246 N. 19TH AVENUE,PHOENIX,AZ,85015,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.529,-112.0986,FY96,70322,CENTRAL BANK OF PUEBLO NA,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12322003,SILVER RIDGE VILLAGE,9,Phoenix,Basic FHA,3,232 Health Care,NH 223f,RNQ,Refi/ Pchse,"$2,598,300 ",120,2817 SILVER CREEK ROAD,Bullhead City,AZ,86442,15,Mohave,4120,"LAS VEGAS, NV-AZ",35.1027,-114.6003,FY96,70322,CENTRAL BANK OF PUEBLO NA,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12222002,TOPANGA PARK RETIREMENT,9,Los Angeles,Basic FHA,3,232 Health Care,NH 223f,RNQ,Refi/ Pchse,"$3,783,400 ",115,7945 TOPANGA CANYON BOUL,LOS ANGELES,CA,91304,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.2137,-118.60464,FY96,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +13622001,SOMERSET NURSING CENTER,9,Sacramento,Basic FHA,3,232 Health Care,NH 223f,RNQ,Refi/ Pchse,"$2,098,800 ",99,2215 OAKMONT WAY,WEST SACRAMENTO,CA,95691,113,Yolo,9270,"YOLO, CA",38.5769,-121.538,FY96,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12635257,COURTYARDS AT FAIRVIEW,10,Portland,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$5,262,200 ",107,20410 NE SANDY BLVD,FAIRVIEW,OR,97060,51,Multnomah,6440,"PORTLAND-VANCOUVER, OR-WA",45.54452,-122.45147,FY96,77310,PACIFIC NORTHWEST FUNDING LLC,77310,PACIFIC NORTHWEST FUNDING LLC,77310,PACIFIC NORTHWEST FUNDING LLC,OR +12335269,CANYON VIEW APARTMENTS,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$7,240,000 ",91,FRANCISCO DRIVE,PHOENIX,AZ,85004,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.4562,-112.0686,FY96,72873,MALONE MORTGAGE CO AMERICA LTD,72873,MALONE MORTGAGE CO AMERICA LTD,72873,MALONE MORTGAGE CO AMERICA LTD,TX +12635252,PINE CREEK ESTATES,10,Portland,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$2,734,300 ",72,3282 S. PACIFIC HIGHWAY,PHOENIX,OR,97501,29,Jackson,4890,"MEDFORD-ASHLAND, OR",42.2913,-122.8371,FY96,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,VA +12635256,SUNFIELD LAKES APTS (FT),10,Portland,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$11,373,400 ",200,N SIDE CENTURY DR & BALE,SHERWOOD,OR,97140,67,Washington,6440,"PORTLAND-VANCOUVER, OR-WA",45.3486,-122.8583,FY96,77310,PACIFIC NORTHWEST FUNDING LLC,77310,PACIFIC NORTHWEST FUNDING LLC,77310,PACIFIC NORTHWEST FUNDING LLC,OR +12635255,HEATHERWOOD APARTMENTS,10,Portland,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$13,445,900 ",264,765-785 SE MOUNT HOOD HW,GRESHAM,OR,97080,51,Multnomah,6440,"PORTLAND-VANCOUVER, OR-WA",45.4816,-122.4146,FY96,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +12922001,Magnolia Special Care Center,9,Los Angeles,Basic FHA,3,232 Health Care,NH 223f,RNQ,Refi/ Pchse,"$2,811,400 ",99,635 So. Magnolia,EL CAJON,CA,92020,73,San Diego,7320,"SAN DIEGO, CA",32.7888,-116.9614,FY96,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12711100,CHAMBERS CREST APARTMENT,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$2,487,500 ",85,3301 COLLEGE STREETSW,LACEY,WA,98503,67,Thurston,5910,"OLYMPIA, WA",47.0302,-122.8012,FY96,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12711093,McQuire Court Apts,10,Seattle,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$1,766,600 ",55,10740 8th Ave,Seattle,WA,98125,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.70703,-122.31901,FY96,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +122HD017,BEACH COURT,9,Los Angeles,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$702,500 ",6,648 MAPLE AVENUE,CARPINTERIA,CA,93013,83,Santa Barbara,7480,"SANTA BARBARA-SANTA MARIA-LOMPOC, CA",34.3958,-119.5191,FY96 +122HD038,VILLAGE WAY,9,Los Angeles,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$846,900 ",14,9071 Corbin Avenue,Northridge,CA,91324,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.23467,-118.5614,FY96 +122HD040,HOMEWARD BOUND,9,Los Angeles,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$388,100 ",8,5625 GREEN VALLEY CIRCLE,CULVER CITY,CA,90230,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",33.9779,-118.3859,FY96 +143HD001,CASA MARIA DEL RIO,9,Los Angeles,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$2,424,700 ",25,2200 EAST CHAPMAN AVENUE,FULLERTON,CA,92631,59,Orange,5945,"ORANGE COUNTY, CA",33.8742,-117.8924,FY96 +143EE018,MOUNTAIN VIEW TERRACE,9,Los Angeles,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$3,287,000 ",40,2789 CLARK AV,NORCO,CA,91760,65,Riverside,6780,"RIVERSIDE-SAN BERNARDINO, CA",33.9216,-117.56,FY96 +123EE021,CASA DEL PUEBLO,9,Phoenix,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$2,755,600 ",58,SW CORNER IRVING ROAD AN,TUCSON,AZ,85714,19,Pima,8520,"TUCSON, AZ",32.1698,-110.9646,FY96 +136EE013,RVM YREKA HOUSING,9,Sacramento,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$2,247,500 ",29,EAST LENNOX ST,YREKA,CA,96097,93,Siskiyou,0,NM,41.6253,-122.6361,FY96 +121EE018,FREITAS HOUSING,9,San Francisco,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$5,302,700 ",62,1 TRINITY WAY,SAN RAFAEL,CA,94903,41,Marin,7360,"SAN FRANCISCO, CA",38.01,-122.5529,FY96 +121HD010,OAK HILL APARTMENTS,9,San Francisco,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,217,400 ",14,127 MARIPOSA AVENUE,SAN ANSELMO,CA,94960,41,Marin,7360,"SAN FRANCISCO, CA",37.9705,-122.5639,FY96 +121EE040,NOTRE DAME APARTMENTS,9,San Francisco,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$6,117,500 ",66,347 DOLORES STREET,SAN FRANCISCO,CA,94110,75,San Francisco,7360,"SAN FRANCISCO, CA",37.764,-122.425,FY96 +121HD019,ASI-CARSON CITY,9,San Francisco,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,799,700 ",24,1005 E. 5TH STREET,CARSON CITY,NV,89701,510,Carson City,0,NM,39.1614,-119.7559,FY96 +176HD009,JUNEAU ALLIANCE,10,Anchorage,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$2,071,700 ",15,"2400 BLOCK DOUGLAS HGWY,","JUNEAU, CITY BORO",AK,99801,110,Juneau,0,NM,58.2833,-134.4051,FY96 +126HD007,BEAVERTON HILLSDALE CMI,10,Portland,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,416,200 ",24,BEAVERTON HILLSDALE HIGH,PORTLAND,OR,97221,51,Multnomah,6440,"PORTLAND-VANCOUVER, OR-WA",45.4927,-122.7273,FY96 +124HD003,FAIRVIEW TERRACE,10,Portland,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$720,300 ",12,1445 23RD AVENUE,LEWISTON,ID,83501,69,Nez Perce,0,NM,46.3972,-117.0106,FY96 +126HD011,KOURT STREET APARTMENTS,10,Portland,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,105,300 ",20,KOURT LANE & RIVER ROAD,EUGENE,OR,97404,39,Lane,2400,"EUGENE-SPRINGFIELD, OR",44.0928,-123.1251,FY96 +124EE008,MEADOWOOD GLEN II,10,Portland,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$1,106,200 ",20,1105 E 3RD STREET,POST FALLS,ID,83854,55,Kootenai,0,NM,47.7083,-116.9325,FY96 +126EE014,RVM-REEDSPORT,10,Portland,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$1,973,900 ",30,RANCH ROAD,REEDSPORT,OR,97467,19,Douglas,0,NM,43.7014,-124.1047,FY96,,,,,,, +126EE017,VANCOUVER 202,10,Portland,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$3,203,800 ",46,207 N LIESER ROAD,VANCOUVER,WA,98664,11,Clark,6440,"PORTLAND-VANCOUVER, OR-WA",45.6218,-122.584,FY96,,,,,,, +171HD005,BMAC-FOUR 2BD,10,Seattle,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$289,400 ",4,TAUSICK WAY-BLUE & PORTL,WALLA WALLA,WA,99362,71,Walla Walla,0,NM,46.062,-118.3311,FY96,,,,,,, +127EE001,LYNN CREST SENIOR APTS,10,Seattle,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$2,403,400 ",40,4703 194TH ST SW,LYNNWOOD,WA,98036,61,Snohomish,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.82318,-122.2944,FY94,,,,,,, +140HD002,KO KAKOU HALE,9,Honolulu,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$552,800 ",8,1122 11TH AVENUE,HONOLULU COUNTY,HI,96816,3,Honolulu,3320,"HONOLULU, HI",21.285,-157.8031,FY96,,,,,,, +140HD003,HILO HALE,9,Honolulu,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$567,800 ",9,208 WAINAKU AVENUE,HILO,HI,96720,1,Hawaii,0,NM,19.7337,-155.09489,FY96,,,,,,, +12211039,WILSHIRE WESTHOLME APTS,9,Los Angeles,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$18,326,000 ",180,10600 WILSHIRE BOULEVARD,LOS ANGELES,CA,90024,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.0615,-118.4328,FY96,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12335262,VILLAGE AT LINDSAY PARK,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$14,552,800 ",256,N. E. CORNER OF LINDSAY,MESA,AZ,85204,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.4034,-111.7884,FY96,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12311080,FOXWOOD APARTMENTS,9,Phoenix,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$5,610,000 ",260,6131 NORTH 27TH AVENUE,PHOENIX,AZ,85017,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.52689,-112.11586,FY96,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +136HD006,FLORINWOOD APARTMENT PRO,9,Sacramento,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,919,000 ",21,66TH AVE AND FLORINWOOD,SACRAMENTO,CA,95823,67,Sacramento,6920,"SACRAMENTO, CA",38.4926,-121.4346,FY96,,,,,,, +121EE032,COLUMBIA PARK MANOR,9,San Francisco,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$6,235,500 ",79,CHESTER DRIVE,PITTSBURG,CA,94565,13,Contra Costa,5775,"OAKLAND, CA",38.0167,-121.9163,FY96,,,,,,, +121HD013,PACIFIC GROVE SUPPORTIVE,9,San Francisco,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,916,400 ",20,FREMONT BOULEVARD,FREMONT,CA,94536,1,Alameda,5775,"OAKLAND, CA",37.5559,-122.0272,FY96,,,,,,, +12135872,PIEDMONT APARTMENTS,9,San Francisco,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$11,250,000 ",250,215 WEST MAC ARTHUR BOUL,OAKLAND,CA,94611,1,Alameda,5775,"OAKLAND, CA",37.82333,-122.25598,FY96,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +171HD001,ASI - SPOKANE,10,Seattle,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,600,000 ",21,819 HATCH STREET,SPOKANE,WA,99202,63,Spokane,7840,"SPOKANE, WA",47.6474,-117.3995,FY96,,,,,,, +12122004,GLADMAN MENTAL HEALTH FACILITY,9,San Francisco,Basic FHA,3,232 Health Care,NH 223f,RNQ,Refi/ Pchse,"$3,010,700 ",80,2633 EAST 27TH STREET,OAKLAND,CA,94601,1,Alameda,5775,"OAKLAND, CA",37.79106,-122.22137,FY96,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12122005,PACIFIC COAST MANOR,9,San Francisco,Basic FHA,3,232 Health Care,NH 223f,RNQ,Refi/ Pchse,"$3,400,000 ",99,1935 WHARF ROAD,CAPITOLA,CA,95010,87,Santa Cruz,7485,"SANTA CRUZ-WATSONVILLE, CA",36.97697,-121.95602,FY96,74788,HEARTLAND CAPITAL CORP,74788,HEARTLAND CAPITAL CORP,74788,HEARTLAND CAPITAL CORP,TN +12122006,PACIFIC HILLS MANOR,9,San Francisco,Basic FHA,3,232 Health Care,NH 223f,RNQ,Refi/ Pchse,"$3,570,000 ",99,370 NOBLE COURT,MORGAN HILL,CA,95037,85,Santa Clara,7400,"SAN JOSE, CA",37.1301,-121.6471,FY96,74788,HEARTLAND CAPITAL CORP,74788,HEARTLAND CAPITAL CORP,74788,HEARTLAND CAPITAL CORP,TN +12743083,MESSENGER HOUSE CARE CENTER,10,Seattle,Basic FHA,3,232 Health Care,NH 232,RNF,NC/SR,"$7,475,200 ",96,10861 Manitou Park Blvd,Winslow,WA,98110,35,Kitsap,1150,"BREMERTON, WA",47.66275,-122.49857,FY96,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,60152,REILLY MORTGAGE GROUP,VA +17611024,SUNRISE EAST APTS,10,Anchorage,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$4,200,000 ",144,141 PATTERSON,ANCHORAGE CITY AND,AK,99520,13,Aleutians East,0380,"ANCHORAGE, AK",55.9368,-160.4903,FY96,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +17611025,DUBEN PLACE APTS,10,Anchorage,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$561,000 ",16,8427 &8437 Duben ST,Anchorage,AK,99524,20,Anchorage,0380,"ANCHORAGE, AK",61.22118,-149.71776,FY96,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,55220,SEATTLE MORTGAGE COMPANY,WA +122EE085,TELACU - MONTEREY PARK,9,Los Angeles,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$5,783,500 ",67,SE CORNER OF RAMONA,MONTEREY PARK,CA,91754,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.0506,-118.1377,FY96,,,,,,, +122EE005,THE SAL ARMY HLLYWD,9,Los Angeles,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$10,633,400 ",98,5941 HOLLYWOOD BLVD.,LOS ANGELES,CA,90028,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.1016,-118.3181,FY96,,,,,,, +122EE066,TELACU POINTE,9,Los Angeles,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$6,836,900 ",84,3200 FLETCHER DRIVE,LOS ANGELES,CA,90065,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.1165,-118.2421,FY96,,,,,,, +129HD002,DOWNSTOWN VISTA,9,Los Angeles,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$711,700 ",12,1089 JENNIFER CIR,SAN MARCOS,CA,92083,73,San Diego,7320,"SAN DIEGO, CA",33.2146,-117.2507,FY96,,,,,,, +123HD014,VALLEY OF THE SUN PROPER,9,Phoenix,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$542,100 ",20,SCATTERED SITES,GLENDALE,AZ,85301,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.5322,-112.1754,FY96,,,,,,, +176EE007,MULDOON MANOR,10,Anchorage,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$2,434,700 ",20,2020 MULDOON RD,ANCHORAGE CITY AND,AK,99504,20,Anchorage,0380,"ANCHORAGE, AK",61.2028,-149.73109,FY96,,,,,,, +124HD001,ASI-BOISE INC,10,Portland,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,704,000 ",24,5306 WEST STATE,BOISE,ID,83703,1,Ada,1080,"BOISE CITY, ID",43.6536,-116.254,FY96,,,,,,, +171EE002,BMAC #1-5,10,Seattle,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$837,400 ",10,MALCOLM ST AND SPRAGUE ST,WALLA WALLA,WA,99362,71,Walla Walla,0,NM,46.0563,-118.3421,FY96,,,,,,, +127HD010,COMM PSYCHIATRIC CLINIC,10,Seattle,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,270,200 ",16,934 NORTH 98TH,SEATTLE,WA,98103,33,King,7600,"SEATTLE-BELLEVUE-EVERETT, WA",47.7008,-122.3454,FY96,,,,,,, +136HD005,CHICO HOUSING PROJECT,9,Sacramento,202/811,1,202/811,811 Cap Adv,ZPD,NC/SR,"$1,360,500 ",21,657 E 20TH ST,CHICO,CA,95928,7,Butte,1620,"CHICO-PARADISE, CA",39.7232,-121.8183,FY96,,,,,,, +12335266,MONTEGO BAY APARTMENTS,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$7,002,900 ",192,429 SOUTH LENZNER,SIERRA VISTA,AZ,85635,3,Cochise,0,NM,31.55643,-110.2811,FY96,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +12122008,CARLTON PLAZA OF FREMONT,9,San Francisco,Basic FHA,3,232 Health Care,NH 223f,RNQ,Refi/ Pchse,"$9,983,900 ",130,3800 WALNUT AVENUE,FREMONT,CA,94538,1,Alameda,5775,"OAKLAND, CA",37.54932,-121.97852,FY96,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,71163,TRI CAPITAL CORP,CA +12211034,PACIFIC HOLIDAY TOWERS,9,Los Angeles,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$10,920,800 ",266,1900 E. Ocean Blvd,Long Beach,CA,90802,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",33.7646,-118.16884,FY96,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,20660,CONTINENTAL WINGATE ASSOC INC,MA +12335272,POLO CLUB APTS,9,Phoenix,Basic FHA,2,FHA NC/SR Apts,221d4,OMI,NC/SR,"$15,479,200 ",282,3319 E University Dr,Mesa,AZ,85004,13,Maricopa,6200,"PHOENIX-MESA, AZ",33.42252,-111.76136,FY96,70324,PFC CORPORATION,70324,PFC CORPORATION,70324,PFC CORPORATION,CA +122EE078,GOLDEN YEARS SENIOR HOUS,9,Los Angeles,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$7,984,000 ",90,11330 Ortega St,North Hollywood,CA,91601,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.1623,-118.3781,FY96,,,,,,, +122EE022,STEEL PLAZA APTS,9,Los Angeles,202/811,1,202/811,202 Cap Adv,ZPE,NC/SR,"$6,514,200 ",65,287-299 Union Ave,Los Angeles,CA,90026,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.1036,-118.293,FY96,,,,,,, +13611021,FAIRLAKE APARTMENTS,9,Sacramento,Basic FHA,4,223f Pchse/ Refi Apts,223F Apts,HRI,Refi/ Pchse,"$16,936,800 ",565,1100 HOWE AVE,SACRAMENTO,CA,95825,67,Sacramento,6920,"SACRAMENTO, CA",38.58536,-121.41399,FY96,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,34489,WMF-HUNTOON PAIGE ASSOCIATES,NJ +12241065,ASTORIA GARDENS,9,Los Angeles,Presv 241f,7,Presv 241f,241f 236,ZFR,,"$6,284,000 ",136,13997 Astoria St,Sylmar,CA,91342,37,Los Angeles,4480,"LOS ANGELES-LONG BEACH, CA",34.31173,-118.43777,FY96,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,04001,BANK OF AMERICA NT & SA,CA diff --git a/office/regression/000_000096.txt b/office/regression/000_000096.txt new file mode 100644 index 0000000..01e437f --- /dev/null +++ b/office/regression/000_000096.txt @@ -0,0 +1,1920 @@ +Export Name|PCHA/FireFamily Plus +Version|2.0 +Creation Date|01/29/2008 10:38 +Selection Criteria|BLM - Arizona - Yuma-Lake Havasu Zone (AZYUD)|Fire Cause Natural, Human and not specified|All fire reports (complete and incomplete)|01/01/1972 through 12/31/2007|All fire types and protection types +Record Count|1914 +FireId|Organization|Unit|UnitIdentifier|FireName|FireNumber|FireCode|FireType|ProtectionType|StartTime|InitAttTime|ControlTime|ControlAcres|GeneralCause|Datum|Latitude|Longitude|Slope|Elevation|Aspect|MsgcModel|Owner|CompletionCode +88160|BLM|AZ|AZYUD|TUNNEL||0136|1|1|01/03/1980 09:14|01/03/1980 09:40|01/03/1980 11:25|1.0|2|NAD83|32.8167|-114.4841|1|1|4|B|01|Complete +88161|BLM|AZ|AZYUD|WESTPOND||0137|1|1|01/17/1980 14:35|01/17/1980 14:40|01/17/1980 17:03|1.0|9|NAD83|32.8834|-114.4674|1|1|5|B|01|Complete +88162|BLM|AZ|AZYUD|FA 1||0138|5|1|01/23/1980 15:30|||||NAD83|32.9667|-114.4841|||||01|Complete +88163|BLM|AZ|AZYUD|TAMARISK||0139|1|1|03/29/1980 13:55|03/29/1980 14:15|03/29/1980 21:50|1.0|2|NAD83|32.7167|-114.4174|1|1|7|B|01|Complete +88164|BLM|AZ|AZYUD|TRADER||0140|1|1|03/31/1980 08:00|03/31/1980 15:00|03/31/1980 16:00|1.0|2|NAD83|32.8334|-114.5008|1|1|5|B|01|Complete +88165|BLM|AZ|AZYUD|ISLAND||0141|1|1|03/31/1980 13:10|03/31/1980 15:00|03/31/1980 21:00|4.0|3|NAD83|32.7500|-114.5508|1|1|6|B|01|Complete +88166|BLM|AZ|AZYUD|FA 5||0142|5|1|04/10/1980 16:00|||||NAD83|30.7834|-114.5841|||||01|Complete +88167|BLM|AZ|AZYUD|DUMP||0143|1|1|04/24/1980 14:05|04/24/1980 15:15|04/24/1980 15:45|0.1|4|NAD83|32.8667|-114.4508|1|1|5|B|01|Complete +88168|BLM|AZ|AZYUD|RIVIERA||0144|1|1|05/07/1980 16:00|05/07/1980 16:05|05/08/1980 14:00|28.0|3|NAD83|35.0833|-114.6341|1|1|7|B|01|Complete +88169|BLM|AZ|AZYUD|NEEDLES||0145|5|1|05/16/1980 11:30|||||NAD83|35.0167|-114.6508|||||01|Complete +88170|BLM|AZ|AZYUD|SENATORS||0146|1|1|05/16/1980 20:25|05/16/1980 22:00|05/17/1980 00:35|38.0|3|NAD83|32.8667|-114.4674|1|1|4|B|01|Complete +88171|BLM|AZ|AZYUD|IMPERIAL||0147|1|1|05/22/1980 20:30|05/22/1980 20:45|05/22/1980 21:00|0.1|2|NAD83|32.8834|-114.4674|1|1|2|B|01|Complete +88172|BLM|AZ|AZYUD|FA 2||0148|5|1|06/06/1980 10:00|||||NAD83|32.8334|-114.4508|||||01|Complete +88173|BLM|AZ|AZYUD|STANDARD||0149|1|1|07/04/1980 14:00|07/04/1980 14:40|07/04/1980 16:00|5.0|9|NAD83|34.3667|-114.2175|1|1|3|B|01|Complete +88174|BLM|AZ|AZYUD|BLAISDELL||0150|1|1|07/11/1980 20:00|07/11/1980 21:00|07/11/1980 21:30|0.1|3|NAD83|32.7167|-114.4174|1|1|4|B|01|Complete +88175|BLM|AZ|AZYUD|FINGERS||9826|1|1|07/12/1980 10:30|07/12/1980 11:45|07/12/1980 12:30|0.1|4|NAD83|32.2667|-114.6841|1|0|8|B|01|Complete +88176|BLM|AZ|AZYUD|CHURCH||9827|1|1|07/16/1980 15:30|07/16/1980 16:00|07/16/1980 18:00|5.0|9|NAD83|32.7334|-114.5174|1|1|4|B|01|Complete +88177|BLM|AZ|AZYUD|MOHAVE||9828|1|1|07/30/1980 17:00|07/30/1980 19:30|07/30/1980 22:00|10.0|1|NAD83|34.6333|-114.2341|1|1|3|B|01|Complete +88178|BLM|AZ|AZYUD|CROSSMAN||9829|1|1|07/30/1980 17:00|07/31/1980 09:00|08/03/1980 20:00|13100.0|1|NAD83|34.5667|-114.2008|2|6|6|B|01|Complete +88179|BLM|AZ|AZYUD|LEATHERS||9830|1|1|08/27/1980 11:30|08/27/1980 11:50|08/27/1980 11:55|0.1|4|NAD83|32.8834|-114.4674|1|0|4|B|01|Complete +88180|BLM|AZ|AZYUD|FA 6||9831|5|1|08/28/1980 21:00|||||NAD83|32.7334|-114.3174|||||01|Complete +88181|BLM|AZ|AZYUD|FORTUNA||9832|1|1|09/06/1980 06:25|09/06/1980 07:55|09/06/1980 13:25|0.1|4|NAD83|32.7167|-114.4508|1|1|4|B|01|Complete +88182|BLM|AZ|AZYUD|LAZY||9833|1|1|09/20/1980 15:00|09/20/1980 16:10|09/20/1980 19:15|2.0|4|NAD83|32.7167|-114.4341|1|0|4|B|01|Complete +88183|BLM|AZ|AZYUD|BOAT||9834|1|1|09/26/1980 11:00|09/26/1980 13:30|09/26/1980 14:30|1.0|2|NAD83|32.9167|-114.4674|1|0|5|B|01|Complete +88184|BLM|AZ|AZYUD|GAUGE||9835|1|1|10/26/1980 18:55|10/26/1980 19:05|10/26/1980 20:00|1.0|5|NAD83|32.7000|-114.7175|1|0|5|B|01|Complete +88185|BLM|AZ|AZYUD|MITTRY||9836|1|1|11/23/1980 11:10|11/23/1980 11:30|11/23/1980 18:40|1.0|3|NAD83|32.8167|-114.4674|1|0|7|B|01|Complete +88186|BLM|AZ|AZYUD|RAMIREZ||9837|1|1|11/24/1980 09:00|11/24/1980 12:30|11/24/1980 13:00|0.1|2|NAD83|32.8834|-114.4674|1|0|4|B|01|Complete +88187|BLM|AZ|AZYUD|GILA||9838|1|1|11/24/1980 13:30|11/24/1980 13:55|11/24/1980 14:30|0.1|4|NAD83|32.7667|-114.4008|1|0|3|B|01|Complete +88188|BLM|AZ|AZYUD|FA 3||9839|5|1|11/26/1980 14:30|||||NAD83|34.2500|-113.9008|||||01|Complete +88189|BLM|AZ|AZYUD|FA 4||9840|5|1|12/03/1980 14:30|||||NAD83|34.2500|-113.9508|||||01|Complete +88190|BLM|AZ|AZYUD|FA 7||9842|5|5|12/21/1980 15:00|||||NAD83|32.9834|-114.5008|||||01|Complete +84062|BLM|AZ|AZYUD|WILLIAMS||0136|1|1|01/08/1981 16:20|01/08/1981 16:50|01/09/1981 11:30|350.0|6|NAD83|34.3000|-114.1008|1||4|B|01|Complete +84063|BLM|AZ|AZYUD|FA 1||0137|5|1|01/16/1981 09:25|||||NAD83|34.5333|-114.2508|||||01|Complete +84064|BLM|AZ|AZYUD|OASIS||0138|1|1|01/18/1981 16:40|01/18/1981 16:55|01/18/1981 19:00|0.1|4|NAD83|32.8834|-114.4508|1|1|5|B|01|Complete +84065|BLM|AZ|AZYUD|FOOL||0139|1|1|04/01/1981 14:25|04/01/1981 16:20|04/01/1981 21:00|20.0|4|NAD83|32.7500|-114.5841|1|1|5|B|01|Complete +84066|BLM|AZ|AZYUD|SIPHON||0140|1|1|04/13/1981 16:10|04/13/1981 16:40|04/13/1981 21:48|0.1|4|NAD83|32.7000|-114.4341|1|1|5|B|01|Complete +84067|BLM|AZ|AZYUD|GENERATOR||0141|1|1|04/15/1981 05:55|04/15/1981 06:52|04/15/1981 06:52|0.1|9|NAD83|32.8667|-114.4674|1|1|3|B|01|Complete +84068|BLM|AZ|AZYUD|GILA||0142|1|1|04/17/1981 13:10|04/17/1981 16:32|04/17/1981 22:05|10.0|4|NAD83|32.5667|-114.4341|1|1|4|B|01|Complete +84069|BLM|AZ|AZYUD|ADOBE||0143|3|7|04/26/1981 00:00||04/26/1981 00:00|0.1|||||||||01|Complete +84070|BLM|AZ|AZYUD|GONZALES||0144|1|6|05/01/1981 13:00|05/01/1981 13:47|05/01/1981 15:15||4|NAD83|32.6334|-114.6341|1|1|6|B|08|Complete +84071|BLM|AZ|AZYUD|CHEYENNE||0145|3|7|05/06/1981 00:00||05/06/1981 00:00||||||||||01|Complete +84072|BLM|AZ|AZYUD|FISHER||0146|1|1|05/23/1981 18:15|05/23/1981 19:30|05/24/1981 18:00|36.0|8|NAD83|32.9500|-114.4508|1|1|4|B|01|Complete +84073|BLM|AZ|AZYUD|MOHAWK||0147|1|1|06/05/1981 10:00|06/05/1981 21:40|06/06/1981 18:00|228.0|4|NAD83|32.7834|-113.8341|1|1|1|B|01|Complete +84074|BLM|AZ|AZYUD|MAIN||0148|1|1|06/06/1981 13:20|06/06/1981 14:10|06/06/1981 18:00|2.0|5|NAD83|32.6334|-114.7675|1|1|6|B|01|Complete +84075|BLM|AZ|AZYUD|LIQURTA||0149|1|6|06/21/1981 18:55|06/21/1981 20:10|06/22/1981 09:00|5.0|3|NAD83|32.7000|-114.3341|1|1|4|B|08|Complete +84076|BLM|AZ|AZYUD|DOME||0150|1|6|06/23/1981 14:00|06/23/1981 14:50|06/23/1981 21:00|5.0|9|NAD83|32.6334|-114.7675|1|1|4|B|08|Complete +84077|BLM|AZ|AZYUD|WELLTON||9826|1|6|06/24/1981 15:30|06/24/1981 15:35|06/25/1981 18:00|254.0|4|NAD83|32.7000|-114.0341|1|1|5|B|08|Complete +84078|BLM|AZ|AZYUD|TRESTLE||9827|1|6|06/25/1981 11:00|06/25/1981 11:05|06/25/1981 20:00|10.0|4|NAD83|32.7167|-114.0174|1|1|8|B|08|Complete +84079|BLM|AZ|AZYUD|CONFLUENCE||9828|1|1|06/27/1981 23:00|06/27/1981 23:25|06/28/1981 01:00|0.1|2|NAD83|32.7167|-114.5675|1|1|7|B|01|Complete +84080|BLM|AZ|AZYUD|TACNA||9829|1|1|06/28/1981 16:00|06/28/1981 17:00|06/29/1981 08:30|30.0|4|NAD83|32.7667|-113.8674|1|1|3|B|01|Complete +84081|BLM|AZ|AZYUD|MONDAY||9830|1|1|06/29/1981 14:00|06/29/1981 15:45|06/30/1981 02:00|45.0|4|NAD83|32.7667|-113.8674|1|1|4|B|01|Complete +84082|BLM|AZ|AZYUD|WEDNESDAY||9831|1|1|07/01/1981 15:00|07/01/1981 16:00|07/01/1981 18:00|2.0|4|NAD83|32.7000|-114.0341|1|1|6|B|01|Complete +84083|BLM|AZ|AZYUD|FRIDAY||9832|1|1|07/03/1981 13:45|07/03/1981 14:10|07/03/1981 16:00|1.0|4|NAD83|34.2000|-114.2008|1|1|4|B|01|Complete +84084|BLM|AZ|AZYUD|FISHERMAN||9833|1|1|07/03/1981 20:00|07/03/1981 21:30|07/03/1981 21:30|1.0|5|NAD83|34.2000|-114.2008|1|1|5|B|01|Complete +84085|BLM|AZ|AZYUD|GREEN||9834|1|1|07/04/1981 01:00|07/04/1981 01:06|07/04/1981 01:15|0.1|9|NAD83|34.2333|-114.2008|1|1|6|B|01|Complete +84086|BLM|AZ|AZYUD|ROCHE||9835|1|1|07/04/1981 10:00|07/04/1981 10:10|07/04/1981 10:50|0.1|8|NAD83|32.5667|-114.5341|1|1|8|B|01|Complete +84087|BLM|AZ|AZYUD|FA 2||9836|5|1|07/07/1981 20:35|||||NAD83|32.6834|-114.7341|||||01|Complete +84088|BLM|AZ|AZYUD|DAVID||9837|1|1|07/08/1981 18:00|07/08/1981 19:40|07/09/1981 12:00|60.0|9|NAD83|32.7167|-114.0508|1|1|6|B|01|Complete +84089|BLM|AZ|AZYUD|CROSSMAN||9838|1|1|07/10/1981 20:10|07/10/1981 21:50|07/11/1981 08:00|5.0|2|NAD83|34.5500|-114.2008|1|1|4|B|01|Complete +84090|BLM|AZ|AZYUD|TEXAS||9839|1|1|07/11/1981 12:45|07/11/1981 14:15|07/11/1981 17:30|10.0|3|NAD83|32.7500|-113.7841|1|1|3|B|01|Complete +84091|BLM|AZ|AZYUD|MORELOS||9840|1|1|07/15/1981 15:02|07/15/1981 17:20|07/15/1981 20:00|5.0|3|NAD83|32.6834|-114.7341|1|1|5|B|01|Complete +84092|BLM|AZ|AZYUD|FA 3||9841|5|3|07/18/1981 18:00|||||NAD83|32.7167|-114.7175|||||01|Complete +84093|BLM|AZ|AZYUD|ANDRADE||9842|3|7|07/21/1981 00:00||07/21/1981 00:00||||||||||01|Complete +84094|BLM|AZ|AZYUD|FA 4||9843|5|6|08/09/1981 20:30|||||NAD83|32.8000|-114.5341|||||01|Complete +84095|BLM|AZ|AZYUD|CLAPPER||9844|1|1|08/18/1981 17:00|08/18/1981 18:20|08/20/1981 22:00|20.0|4|NAD83|32.7000|-114.1508|1|1|4|B|01|Complete +84096|BLM|AZ|AZYUD|ALGADON||9845|1|6|09/04/1981 10:15|09/04/1981 11:46|09/04/1981 17:20|5.0|4|NAD83|32.8000|-114.7841|1|1|7|B|08|Complete +84097|BLM|AZ|AZYUD|CIBOLA||9846|1|1|10/23/1981 14:00|10/23/1981 17:30|10/24/1981 17:00|90.0|4|NAD83|33.3500|-114.7008|1|1|3|B|01|Complete +84098|BLM|AZ|AZYUD|HANLON||9847|1|1|10/31/1981 18:15|10/31/1981 19:11|10/31/1981 22:00|1.0|6|NAD83|32.7167|-114.7175|1|1|6|B|01|Complete +84099|BLM|AZ|AZYUD|MITTRY||9848|1|1|11/01/1981 15:30|11/01/1981 16:35|11/01/1981 17:25|1.0|4|NAD83|32.8167|-114.4674|1|1|4|B|01|Complete +84100|BLM|AZ|AZYUD|FA 5||9849|5|6|11/18/1981 19:05|||||NAD83|33.1167|-114.7008|||||01|Complete +84101|BLM|AZ|AZYUD|FA 6||9850|5|6|12/01/1981 19:55|||||NAD83|32.8000|-114.5341|||||01|Complete +81021|BLM|AZ|AZYUD|CORDERIO||0137|1|1|01/17/1982 16:20|01/17/1982 16:50|01/17/1982 16:59|1.0|4|NAD83|32.7334|-114.6508|1|3|2|B|01|Complete +81022|BLM|AZ|AZYUD|GADSEN||0138|1|1|01/20/1982 08:45|01/20/1982 09:35|01/20/1982 10:20|0.1|4|NAD83|32.5001|-114.7675|1|0|1|B|01|Complete +81023|BLM|AZ|AZYUD|QUIGLEY||0139|1|1|01/23/1982 17:40|01/23/1982 19:34|01/23/1982 19:40|1.0|4|NAD83|32.7334|-113.9674|1|0|6|B|01|Complete +81024|BLM|AZ|AZYUD|LAGUNA||0140|1|1|01/27/1982 13:30|01/27/1982 14:08|01/27/1982 18:28|1.0|4|NAD83|32.8167|-114.4841|1|1|7|B|01|Complete +81025|BLM|AZ|AZYUD|CONFLUENCE||0141|1|5|02/02/1982 12:45|02/02/1982 13:15|02/02/1982 20:30|30.0|3|NAD83|32.5001|-114.7175|1|0|7|B|08|Complete +81026|BLM|AZ|AZYUD|MITTRY||0142|1|1|02/13/1982 03:20|02/13/1982 04:09|02/13/1982 05:29|1.0|2|NAD83|32.8167|-114.4841|1|0|4|B|01|Complete +81027|BLM|AZ|AZYUD|RAMP||0143|1|1|02/13/1982 04:18|02/13/1982 04:18|02/13/1982 04:19|0.1|9|NAD83|32.8167|-114.4841|1|1|3|B|01|Complete +81028|BLM|AZ|AZYUD|TIRE||0144|1|1|02/26/1982 15:10|02/26/1982 16:17|02/26/1982 16:58|0.1|4|NAD83|32.7000|-114.1674|1|0|8|B|01|Complete +81029|BLM|AZ|AZYUD|LAZY||0145|1|1|02/26/1982 16:00|02/26/1982 16:13|02/26/1982 16:32|0.1|4|NAD83|32.7000|-114.4508|1|0|2|B|01|Complete +81030|BLM|AZ|AZYUD|HUNTER||0146|1|1|02/27/1982 18:50|02/28/1982 09:00|02/28/1982 12:20|0.1|4|NAD83|32.5167|-114.8008|1|0|5|B|01|Complete +81032|BLM|AZ|AZYUD|REFUGE||0148|3|7|02/28/1982 00:00||03/01/1982 00:00|||NAD83|33.0000|-114.5008|||||01|Complete +81031|BLM|AZ|AZYUD|HOLE||0147|2|1|02/28/1982 09:53||02/28/1982 09:53|0.1||NAD83|32.5167|-114.8008|1|0|6|B|01|Complete +81033|BLM|AZ|AZYUD|FA 1||0149|5|1|03/03/1982 16:30|||||NAD83|32.7167|-114.5008|||||01|Complete +81034|BLM|AZ|AZYUD|SIPHON||0150|1|1|03/04/1982 15:50|03/04/1982 17:14|03/04/1982 19:50|10.0|4|NAD83|32.7334|-114.9175|1|0|2|B|01|Complete +81035|BLM|AZ|AZYUD|ALGADON||9826|1|1|03/05/1982 11:58|03/05/1982 12:40|03/05/1982 17:18|10.0|2|NAD83|32.7834|-113.6841|1|0|4|B|01|Complete +81036|BLM|AZ|AZYUD|RAILROAD||9827|1|1|03/07/1982 18:30|03/07/1982 20:25|03/07/1982 21:39|1.0|4|NAD83|32.5834|-114.7841|1|0|3|B|01|Complete +81037|BLM|AZ|AZYUD|WALTERS||9828|1|1|03/11/1982 12:50|03/11/1982 14:30|03/11/1982 18:00|1.0|2|NAD83|33.2500|-114.6841|1|3|2|B|01|Complete +81038|BLM|AZ|AZYUD|DUMPSTER||9829|1|1|03/26/1982 09:25|03/26/1982 10:15|03/26/1982 10:25|0.1|4|NAD83|32.9000|-114.3341|1|0|1|B|01|Complete +81039|BLM|AZ|AZYUD|MODE||9830|1|1|03/29/1982 22:05|03/29/1982 22:51|03/29/1982 23:43|1.0|3|NAD83|32.7334|-114.7008|1|0|3|B|01|Complete +81040|BLM|AZ|AZYUD|YUCCA||9831|1|1|04/24/1982 20:30|04/24/1982 21:17|04/24/1982 23:45|1.0|4|NAD83|32.7167|-114.7175|1|0|6|B|01|Complete +81041|BLM|AZ|AZYUD|PARADISE||9832|1|1|05/01/1982 06:25|05/01/1982 07:58|05/01/1982 18:00|5.0|3|NAD83|32.7334|-114.6508|1|0|4|B|01|Complete +81042|BLM|AZ|AZYUD|CAVE||9833|1|1|05/02/1982 18:30|05/02/1982 19:14|05/02/1982 22:35|5.0|9|NAD83|32.7334|-114.6508|1|0|4|B|01|Complete +81043|BLM|AZ|AZYUD|FA 2||9834|5|1|05/14/1982 12:40|||||NAD83|32.7334|-114.4341|||||01|Complete +81044|BLM|AZ|AZYUD|IMPERIAL||9835|1|1|05/17/1982 17:25|05/17/1982 18:25|05/17/1982 22:37|3.0|9|NAD83|32.8834|-114.4674|1|0|2|B|01|Complete +81045|BLM|AZ|AZYUD|POWERS||9836|1|5|05/18/1982 15:56|05/18/1982 16:42|05/18/1982 16:50|0.1|4|NAD83|32.7334|-114.7008|1|0|6|B|08|Complete +81046|BLM|AZ|AZYUD|FA 3||9837|5|6|05/23/1982 11:20|||||NAD83|32.7334|-114.4341|||||01|Complete +81047|BLM|AZ|AZYUD|TAMARISK||9838|1|5|05/24/1982 21:40|05/24/1982 22:00|05/25/1982 16:00|0.1|4|NAD83|32.7334|-114.4341|1|0|1|B|08|Complete +81048|BLM|AZ|AZYUD|CAMP||9839|1|1|05/31/1982 14:05|05/31/1982 14:05|05/31/1982 14:20|0.1|2|NAD83|32.8167|-114.4674|1|0|8|B|01|Complete +81049|BLM|AZ|AZYUD|MORALES||9840|1|1|06/09/1982 17:20|06/09/1982 17:50|06/09/1982 18:45|0.1|5|NAD83|32.7000|-114.7175|1|0|7|B|01|Complete +81050|BLM|AZ|AZYUD|LAGUNA 2||9841|1|1|06/15/1982 08:52|06/15/1982 09:35|06/15/1982 14:05|1.0|4|NAD83|32.8167|-114.4841|1|3|1|B|01|Complete +81051|BLM|AZ|AZYUD|FA 4||9842|5|1|06/17/1982 10:44|||||NAD83|33.8167|-114.4841|||||01|Complete +81052|BLM|AZ|AZYUD|CIBOLA||9843|3|7|07/03/1982 00:00||07/04/1982 00:00|||NAD83|33.2834|-114.6675|||||01|Complete +81053|BLM|AZ|AZYUD|THIESSEN||9844|3|7|07/03/1982 00:00||07/04/1982 00:00|||NAD83|33.3667|-114.6841|||||01|Complete +81054|BLM|AZ|AZYUD|OXBOW||9845|1|1|07/03/1982 23:05|07/03/1982 23:10|07/04/1982 00:25|1.0|9|NAD83|33.7000|-114.7175|1|0|3|B|01|Complete +81055|BLM|AZ|AZYUD|FOURTH||9846|1|1|07/04/1982 20:00|07/04/1982 21:12|07/06/1982 08:00|10.0|9|NAD83|32.8167|-114.4841|1|0|6|B|01|Complete +81056|BLM|AZ|AZYUD|CAMPBELL||9847|1|1|07/04/1982 22:25|07/04/1982 23:31|07/05/1982 01:00|0.1|9|NAD83|34.2167|-114.1841|1|0|8|B|01|Complete +81057|BLM|AZ|AZYUD|OASIS||9848|1|6|07/08/1982 01:30|07/08/1982 02:49|07/09/1982 13:30|60.0|9|NAD83|32.8667|-114.4508|1|0|4|B|07|Complete +81058|BLM|AZ|AZYUD|KIM||9849|1|1|07/10/1982 18:25|07/10/1982 19:21|07/10/1982 23:00|1.0|9|NAD83|33.3834|-114.7008|1|0|1|B|01|Complete +81059|BLM|AZ|AZYUD|BORDEN||9850|1|1|07/10/1982 22:30|07/10/1982 23:00|07/11/1982 00:15|1.0|9|NAD83|34.3167|-114.1341|1|1|2|B|01|Complete +81060|BLM|AZ|AZYUD|BEHRENDS||9851|1|1|08/05/1982 18:30|08/05/1982 20:12|08/05/1982 22:09|1.0|3|NAD83|33.0000|-114.5008|1|0|3|B|01|Complete +81061|BLM|AZ|AZYUD|SNAKE||9852|1|1|08/18/1982 23:30|08/19/1982 00:03|08/19/1982 01:27|1.0|2|NAD83|32.4167|-114.3674|1|0|1|B|01|Complete +81062|BLM|AZ|AZYUD|FASTER||9853|2|1|08/20/1982 19:55||08/20/1982 19:55|0.1||NAD83|32.7334|-114.6341|||||01|Complete +81063|BLM|AZ|AZYUD|DREDGE||9854|1|1|09/07/1982 08:15|09/07/1982 09:03|09/07/1982 12:30|0.1|1|NAD83|32.8500|-114.4841|1|0|2|B|01|Complete +81064|BLM|AZ|AZYUD|PALM||9855|1|1|09/07/1982 09:09|09/07/1982 09:15|09/07/1982 09:29|0.1|1|NAD83|32.5501|-114.4674|2|0|1|B|01|Complete +81065|BLM|AZ|AZYUD|SENATOR||9856|1|1|09/07/1982 09:40|09/07/1982 11:46|09/07/1982 14:00|2.0|1|NAD83|32.9167|-114.4674|1|0|8|B|01|Complete +81066|BLM|AZ|AZYUD|FOOT||9857|1|1|09/24/1982 22:25|09/24/1982 23:06|09/25/1982 00:30|1.0|4|NAD83|32.5001|-114.7841|1|0|2|B|01|Complete +81067|BLM|AZ|AZYUD|CYGAN||9858|1|1|09/29/1982 14:30|09/29/1982 15:37|09/29/1982 16:20|0.1|4|NAD83|32.5001|-114.7841|1|1|6|B|01|Complete +81068|BLM|AZ|AZYUD|FA 5||9859|5|1|11/01/1982 11:19|||||NAD83|32.7334|-114.6675|||||01|Complete +81069|BLM|AZ|AZYUD|FIGUEROA||9860|1|1|11/10/1982 03:50|11/10/1982 04:43|11/10/1982 05:40|0.1|4|NAD83|32.8000|-114.5008|1|0|1|B|01|Complete +81070|BLM|AZ|AZYUD|HOBO||9861|1|1|12/04/1982 20:20|12/04/1982 20:45|12/04/1982 23:00|2.0|2|NAD83|32.7334|-114.6508|1|2|1|B|01|Complete +81020|BLM|AZ|AZYUD|BUTTERFIEL||0136|1|1|12/30/1982 01:00|12/30/1982 01:51|12/30/1982 04:12|3.0|4|NAD83|32.7500|-114.3674|1|0|1|B|01|Complete +77677|BLM|AZ|AZYUD|LARSON||0136|1|1|01/01/1983 14:00|01/01/1983 16:00|01/01/1983 17:08|3.0|4|NAD83|32.9334|-114.3841|1|1|0|B|01|Complete +77678|BLM|AZ|AZYUD|FA 1||0137|5|6|01/11/1983 21:00|||||NAD83|32.7167|-114.5174|||||01|Complete +77679|BLM|AZ|AZYUD|VALENTINE||0138|1|1|02/14/1983 13:39|02/14/1983 14:55|02/14/1983 20:00|25.0|9|NAD83|32.7334|-113.9341|1|1|0|B|01|Complete +77680|BLM|AZ|AZYUD|PIUTE||0139|3|7|03/10/1983 00:00||03/10/1983 00:00||||||||||01|Complete +77681|BLM|AZ|AZYUD|FA 2||0140|5|1|03/14/1983 11:58|||||NAD83|32.7000|-114.7175|||||01|Complete +77682|BLM|AZ|AZYUD|CLEAR||0141|3|7|03/19/1983 00:00||03/19/1983 00:00||||||||||01|Complete +77683|BLM|AZ|AZYUD|LAKEWASH||0142|1|1|03/24/1983 16:38|03/24/1983 19:05|03/26/1983 19:40|150.0|2|NAD83|33.5500|-114.5008|1|1|0|B|01|Complete +77684|BLM|AZ|AZYUD|CONFLUENCE||0143|1|1|03/27/1983 21:25|03/27/1983 22:41|03/27/1983 23:59|1.0|2|NAD83|32.7167|-114.5508|1|1|0|B|01|Complete +77685|BLM|AZ|AZYUD|SECOND||0144|1|1|04/02/1983 14:20|04/02/1983 16:12|04/02/1983 18:35|1.0|9|NAD83|33.5167|-114.5008|1|1|0|B|01|Complete +77686|BLM|AZ|AZYUD|JACKSON||0145|3|7|04/03/1983 00:00||04/03/1983 00:00||||||||||01|Complete +77687|BLM|AZ|AZYUD|RAUL||0146|1|1|04/05/1983 11:00|04/05/1983 14:18|04/06/1983 17:40|100.0|4|NAD83|32.7500|-114.0841|1|1|0|B|01|Complete +77688|BLM|AZ|AZYUD|EAVES||0147|1|6|04/05/1983 14:00|04/05/1983 14:43|04/05/1983 15:20|1.0|3|NAD83|32.8167|-114.5008|1|1|0|B|08|Complete +77689|BLM|AZ|AZYUD|SEEPAGE||0148|1|1|04/05/1983 19:20|04/05/1983 20:00|04/05/1983 23:00|1.0|9|NAD83|32.8834|-114.4674|1|1|0|B|01|Complete +77690|BLM|AZ|AZYUD|FA 3||0149|5|1|04/06/1983 13:00|||||NAD83|32.5167|-114.2674|||||01|Complete +77691|BLM|AZ|AZYUD|FA 4||0150|5|1|04/13/1983 15:15|||||NAD83|32.8834|-114.4674|||||01|Complete +77692|BLM|AZ|AZYUD|HOPKINS||9826|1|1|04/22/1983 16:15|04/22/1983 17:00|04/22/1983 17:55|0.1|2|NAD83|32.8500|-114.4508|1|1|0|B|01|Complete +77693|BLM|AZ|AZYUD|PLANET||9827|1|6|04/24/1983 20:30|04/24/1983 23:15|04/24/1983 23:59|0.1|9|NAD83|34.2500|-113.9674|1|1|0|B|08|Complete +77694|BLM|AZ|AZYUD|WALTERS||9828|1|5|05/06/1983 11:00|05/06/1983 11:30|05/08/1983 17:00|140.0|9|NAD83|33.2167|-114.6841|2|1|0|B|08|Complete +77695|BLM|AZ|AZYUD|BUSH||9829|1|1|05/10/1983 17:40|05/10/1983 18:30|05/10/1983 18:45|0.1|9|NAD83|34.5333|-114.2508|1|1|0|B|01|Complete +77696|BLM|AZ|AZYUD|CROSSMAN||9830|1|1|05/14/1983 13:25|05/14/1983 14:05|05/15/1983 15:00|40.0|4|NAD83|34.5500|-114.2175|2|2|0|B|01|Complete +77697|BLM|AZ|AZYUD|GADBERRY||9831|1|1|05/23/1983 11:00|05/23/1983 12:00|05/23/1983 13:00|0.1|3|NAD83|32.8500|-114.4841|1|1|0|B|01|Complete +77698|BLM|AZ|AZYUD|FA 5||9832|5|1|05/25/1983 13:00|||||NAD83|32.7000|-114.7175|||||01|Complete +77699|BLM|AZ|AZYUD|FA 6||9833|5|1|05/25/1983 14:00|||||NAD83|32.7167|-114.4674|||||01|Complete +77700|BLM|AZ|AZYUD|MOHAVE||9834|1|1|05/29/1983 15:30|05/29/1983 18:00|05/30/1983 18:00|700.0|6|NAD83|33.4000|-114.5841|1|1|0|B|01|Complete +77702|BLM|AZ|AZYUD|CATTAIL||9836|1|5|05/30/1983 20:00|05/30/1983 21:00|05/30/1983 23:00|2.0|2|NAD83|34.3000|-114.1341|1|1|0|B|03|Complete +77701|BLM|AZ|AZYUD|PARADISE||9835|1|1|05/31/1983 14:50|05/31/1983 16:00|05/31/1983 16:30|0.1|2|NAD83|32.7334|-114.6508|1|1|0|B|01|Complete +77703|BLM|AZ|AZYUD|GOULD||9837|1|1|06/03/1983 14:30|06/03/1983 16:30|06/04/1983 17:00|160.0|6|NAD83|33.3667|-114.5841|1|1|0|B|01|Complete +77704|BLM|AZ|AZYUD|ROCK||9838|1|1|06/07/1983 16:30|06/07/1983 17:45|06/07/1983 18:15|0.1|3|NAD83|33.6667|-114.1674|1|1|0|B|01|Complete +77705|BLM|AZ|AZYUD|ADAIR||9839|1|1|06/10/1983 13:00|06/10/1983 13:45|06/10/1983 15:00|0.1|3|NAD83|33.4334|-114.0008|1|1|0|B|01|Complete +77706|BLM|AZ|AZYUD|FA 7||9840|5|1|06/13/1983 15:00|||||NAD83|33.4334|-114.6175|||||01|Complete +77707|BLM|AZ|AZYUD|FA 8||9841|5|1|06/13/1983 21:00|||||NAD83|32.5167|-113.9508|||||01|Complete +77708|BLM|AZ|AZYUD|TYSON||9842|1|1|06/21/1983 16:00|06/21/1983 18:00|06/21/1983 18:30|0.1|3|NAD83|33.7000|-114.2341|1|1|0|B|01|Complete +77709|BLM|AZ|AZYUD|SOUTHERN||9843|1|1|07/07/1983 12:00|07/07/1983 14:00|07/07/1983 14:04|0.1|9|NAD83|32.6667|-114.1008|1|1|0|B|01|Complete +77710|BLM|AZ|AZYUD|FA 9||9844|5|1|07/23/1983 09:45|||||NAD83|32.7334|-113.7508|||||01|Complete +77711|BLM|AZ|AZYUD|MARINE||9845|1|1|09/05/1983 11:25|09/05/1983 11:59|09/05/1983 12:35|0.1|9|NAD83|32.9834|-114.4674|1|1|0|B|01|Complete +77712|BLM|AZ|AZYUD|TELEGRAPH||9846|1|1|09/24/1983 22:30|09/24/1983 23:45|09/25/1983 00:19|0.1|2|NAD83|32.6667|-114.3341|2|1|0|B|01|Complete +77713|BLM|AZ|AZYUD|FA 10||9847|5|1|11/21/1983 17:10|||||NAD83|32.8334|-114.4841|||||01|Complete +77714|BLM|AZ|AZYUD|FA 11||9848|5|1|12/05/1983 15:35|||||NAD83|32.9667|-114.5008|||||01|Complete +73584|BLM|AZ|AZYUD|IMPERIAL||C721|1|1|02/08/1984 00:30|02/08/1984 02:45|02/08/1984 05:00|10.0|9|NAD83|32.9000|-114.4674|1|1|0|B|01|Complete +73585|BLM|AZ|AZYUD|REDONDO||C722|1|1|02/27/1984 12:00|02/27/1984 12:50|02/27/1984 14:17|1.0|4|NAD83|32.7500|-114.4841|1|1|0|B|01|Complete +73586|BLM|AZ|AZYUD|MARTINEZ||C723|3|7|03/19/1984 00:00||03/19/1984 00:00||||||||||01|Complete +73587|BLM|AZ|AZYUD|WEST POND||C724|1|1|04/09/1984 10:30|04/09/1984 11:38|04/09/1984 12:15|0.1|4|NAD83|32.8834|-114.4674|1|1|0|B|01|Complete +73588|BLM|AZ|AZYUD|ROOKERY||C725|1|1|04/16/1984 14:15|04/16/1984 16:05|04/16/1984 18:00|7.0|4|NAD83|33.4000|-114.3674|1|1|0|B|01|Complete +73589|BLM|AZ|AZYUD|RIVERA||C726|1|1|04/22/1984 12:00|04/22/1984 12:20|04/22/1984 18:00|3.0|2|NAD83|34.2167|-114.2174|1|1|0|B|01|Complete +73590|BLM|AZ|AZYUD|GILAWEST||C727|1|5|04/29/1984 14:00|04/29/1984 15:00|04/29/1984 16:25|0.1|2|NAD83|32.7334|-114.4341|1|1|0|B|08|Complete +73591|BLM|AZ|AZYUD|FA 1||C728|5|6|05/07/1984 14:45|||||NAD83|32.7167|-114.5008|||||01|Complete +73592|BLM|AZ|AZYUD|PENNY||C729|1|5|05/13/1984 15:20|05/13/1984 17:05|05/13/1984 18:55|21.0|4|NAD83|33.4000|-114.7008|1|1|0|B|08|Complete +73593|BLM|AZ|AZYUD|PALO||C730|1|1|05/29/1984 19:30|05/29/1984 19:55|05/30/1984 02:45|4.0|1|NAD83|32.3834|-114.7175|1|1|0|B|01|Complete +73594|BLM|AZ|AZYUD|FA 2||C731|5|6|06/02/1984 22:30|||||NAD83|32.6667|-114.7508|||||01|Complete +73595|BLM|AZ|AZYUD|DUMPSTER||C732|1|1|07/05/1984 10:30|07/05/1984 10:33|07/05/1984 10:36|0.1|9|NAD83|32.8667|-114.3674|1|1|0|B|01|Complete +73596|BLM|AZ|AZYUD|FA 3||C733|5|1|07/25/1984 01:55|||||NAD83|32.9834|-114.4674|||||01|Complete +73597|BLM|AZ|AZYUD|FA 4||C734|5|6|08/21/1984 16:15|||||NAD83|32.7334|-114.5174|||||01|Complete +73598|BLM|AZ|AZYUD|TIRE||C735|1|1|11/22/1984 18:00|11/22/1984 18:15|11/23/1984 14:00|0.1|4|NAD83|32.7000|-114.1674|1|1|0|B|01|Complete +68931|BLM|AZ|AZYUD|KOOL||C721|1|1|02/11/1985 11:15|02/11/1985 11:37|02/11/1985 18:00|10.0|9|NAD83|32.8000|-114.5008|1|0|7|B|01|Complete +68932|BLM|AZ|AZYUD|CONFLUENCE||C722|1|1|02/14/1985 11:43|02/14/1985 11:45|02/14/1985 17:17|3.0|9|NAD83|32.7167|-114.5508|1|0|0|B|01|Complete +68933|BLM|AZ|AZYUD|TIRE||C723|1|1|02/20/1985 12:40|02/20/1985 13:00|02/20/1985 16:45|2.0|9|NAD83|32.7000|-114.1674|1|0|0|A|01|Complete +68934|BLM|AZ|AZYUD|TUBE||C724|1|1|02/23/1985 18:45|02/23/1985 19:00|02/23/1985 21:14||9|NAD83|32.7000|-114.1674|1|0|0|A|01|Complete +68936|BLM|AZ|AZYUD|GADSDEN||C726|1|1|03/26/1985 19:30|03/26/1985 19:40|03/26/1985 22:27|1.0|9|NAD83|32.5667|-114.8008|1|0|0|B|01|Complete +68937|BLM|AZ|AZYUD|TAMRISK||C727|1|1|03/31/1985 06:10|03/31/1985 06:16|03/31/1985 07:00|0.1|9|NAD83|32.7334|-114.4174|1|0|0|B|01|Complete +68938|BLM|AZ|AZYUD|WIER||C728|1|1|04/01/1985 18:15|04/01/1985 18:27|04/01/1985 19:15|0.1|9|NAD83|32.8167|-114.4841|1|0|0|B|01|Complete +68939|BLM|AZ|AZYUD|FA 1||C729|5|1|04/06/1985 13:00|||||NAD83|33.6667|-114.4675|||||01|Complete +68940|BLM|AZ|AZYUD|POWERS||C730|1|1|04/14/1985 14:58|04/14/1985 15:00|04/14/1985 16:50|1.0|9|NAD83|32.7334|-114.6508|1|0|0|B|01|Complete +68941|BLM|AZ|AZYUD|FA 2||C731|5|1|04/22/1985 11:26||04/22/1985 00:00|||NAD83|32.7000|-114.3341|||||01|Complete +68942|BLM|AZ|AZYUD|FAREWELL||C732|1|1|04/26/1985 13:38|04/26/1985 13:55|04/27/1985 06:00|120.0|9|NAD83|32.7167|-114.1174|1|0|0|B|01|Complete +68943|BLM|AZ|AZYUD|MCPHAUL||C733|1|1|04/30/1985 12:53|04/30/1985 13:05|05/01/1985 07:00|10.0|9|NAD83|32.7500|-114.4341|1|0|0|B|01|Complete +68944|BLM|AZ|AZYUD|FA 3||C734|5|1|05/06/1985 16:26|||||NAD83|32.7500|-114.4341|||||01|Complete +68945|BLM|AZ|AZYUD|ARAZ WASH||C735|1|6|05/08/1985 12:45|05/08/1985 12:54|05/08/1985 15:49|2.0|9|NAD83|32.7167|-114.7175|1|0|0|B|01|Complete +68946|BLM|AZ|AZYUD|FA 4||C736|5|1|05/19/1985 19:20|||||NAD83|32.7167|-114.7175|||||01|Complete +68947|BLM|AZ|AZYUD|FA 5||C737|5|1|05/27/1985 14:18|||||NAD83|33.3834|-114.7008|||||01|Complete +68948|BLM|AZ|AZYUD|FA 6||C738|5|1|06/05/1985 21:00|||||NAD83|32.6834|-114.7341|||||01|Complete +68949|BLM|AZ|AZYUD|PIPELINE||C739|1|1|06/19/1985 14:00|06/19/1985 14:20|06/19/1985 20:30|6.0|9|NAD83|33.6000|-114.5175|1|0|0|B|01|Complete +68951|BLM|AZ|AZYUD|COLFRED||C741|3|7|06/29/1985 14:25||06/29/1985 16:44||||||||||01|Complete +68950|BLM|AZ|AZYUD|FA 7||C740|5|6|07/09/1985 09:00|||||NAD83|32.8167|-113.5174|||||01|Complete +68935|BLM|AZ|AZYUD|BREES||C725|1|1|08/09/1985 17:30|08/09/1985 17:35|08/09/1985 19:30|0.1|9|NAD83|32.7000|-114.1674|1|0|0|B|01|Complete +68952|BLM|AZ|AZYUD|FA 8||C742|5|6|08/15/1985 17:00|||||NAD83|32.7167|-114.4674|||||01|Complete +68953|BLM|AZ|AZYUD|FA 9||C743|5|6|09/12/1985 11:30|||||NAD83|32.7500|-114.4341|||||01|Complete +68954|BLM|AZ|AZYUD|FA 10||C744|5|6|09/25/1985 13:52|||||NAD83|34.0333|-114.4508|||||01|Complete +68955|BLM|AZ|AZYUD|FA 11||C745|5|6|09/25/1985 19:30|||||NAD83|32.7334|-114.4174|||||01|Complete +68956|BLM|AZ|AZYUD|FA 12||C746|5|6|09/26/1985 09:00|||||NAD83|32.7334|-114.4174|||||01|Complete +68957|BLM|AZ|AZYUD|FA 13||C747|5|6|09/26/1985 19:30|||||NAD83|33.9834|-114.4508|||||01|Complete +64875|BLM|AZ|AZYUD|BIG B||C742|1|1|02/16/1986 20:45|02/16/1986 21:13|02/16/1986 22:53|1.0|9|NAD83|32.7000|-114.7175|1|0|0|B|01|Complete +64876|BLM|AZ|AZYUD|SP 1||C743|1|5|02/17/1986 17:40|02/17/1986 18:40|02/17/1986 19:10||9|NAD83|32.6834|-114.5008|1|0|0|B|08|Complete +64877|BLM|AZ|AZYUD|FISHERS||C744|1|1|02/18/1986 12:50|02/18/1986 13:30|02/18/1986 18:59|40.0|9|NAD83|32.9500|-114.4674|1|0|0|B|01|Complete +64878|BLM|AZ|AZYUD|FA 1||C745|5|1|02/26/1986 13:30|||||NAD83|32.7167|-114.5508|||||01|Complete +64880|BLM|AZ|AZYUD|FA 2||C747|5|1|03/04/1986 19:00|||||NAD83|32.7000|-114.0174|||||01|Complete +64881|BLM|AZ|AZYUD|WASH FIRE||C748|1|1|03/05/1986 15:20|03/05/1986 15:20|03/05/1986 16:22|0.5|9|NAD83|32.9000|-114.4841|1|0|0|B|01|Complete +64882|BLM|AZ|AZYUD|PACIFIC||C749|1|5|03/19/1986 16:25|03/19/1986 16:35|03/20/1986 14:00|70.0|9|NAD83|32.7167|-114.6008|1|0|0|A|08|Complete +64883|BLM|AZ|AZYUD|MOHAWK||C750|1|1|03/22/1986 16:30|03/22/1986 23:00|03/24/1986 19:00|260.0|5|NAD83|32.7834|-113.8008|1|0|2|B|01|Complete +64884|BLM|AZ|AZYUD|MILLER||C751|1|1|03/29/1986 16:40|03/29/1986 17:20|03/29/1986 22:00|15.0|5|NAD83|32.8167|-114.4674|1|0|2|B|01|Complete +64885|BLM|AZ|AZYUD|BLACK||C752|1|1|03/30/1986 16:15|03/30/1986 16:55|03/30/1986 16:57||2|NAD83|32.0001|-114.3841|1|0|1|B|01|Complete +64886|BLM|AZ|AZYUD|FA 3||C753|5|1|03/31/1986 14:16|||||NAD83|32.7000|-114.7341|||||01|Complete +64887|BLM|AZ|AZYUD|TIRE 1||C754|1|1|04/18/1986 18:30|04/18/1986 19:00|04/18/1986 22:00|1.0|9|NAD83|32.7000|-114.1674|1|0|0|B|01|Complete +64888|BLM|AZ|AZYUD|TIRE 2||C755|1|1|04/18/1986 18:30|04/18/1986 19:00|04/18/1986 22:00|1.0|9|NAD83|32.7000|-114.1674|1|0|0|B|01|Complete +64889|BLM|AZ|AZYUD|FA 4||C756|5|1|04/28/1986 16:43|||||NAD83|32.9334|-113.5341|||||01|Complete +64879|BLM|AZ|AZYUD|MADD||C746|1|1|04/29/1986 13:00|04/29/1986 13:21|04/29/1986 16:33|120.0|9|NAD83|32.7167|-114.5508|1|0|0|B|01|Complete +64890|BLM|AZ|AZYUD|WELLTON||C757|1|1|05/05/1986 14:00|05/05/1986 15:20|05/05/1986 16:16|0.5|9|NAD83|32.7334|-114.1341|1|0|0|B|01|Complete +64891|BLM|AZ|AZYUD|FA 5||C758|5|1|05/09/1986 12:20|||||NAD83|32.7334|-114.5341|||||01|Complete +64892|BLM|AZ|AZYUD|CIBOLA||C759|1|1|05/09/1986 14:50|05/09/1986 17:48|05/09/1986 19:00|25.0|9|NAD83|33.4000|-114.6341|1|0|0|B|01|Complete +64894|BLM|AZ|AZYUD|BLYTHE||C761|2|1|05/25/1986 16:00||05/25/1986 16:00|1.0||NAD83|33.6834|-114.5175|||||01|Complete +64893|BLM|AZ|AZYUD|MITTRY||C760|2|1|05/26/1986 10:00||05/26/1986 10:00|1.0||NAD83|32.8167|-114.4841|||||01|Complete +64895|BLM|AZ|AZYUD|FA 6||C762|5|1|05/26/1986 15:00|||||NAD83|32.7834|-113.8008|||||01|Complete +64896|BLM|AZ|AZYUD|CHANAL||C763|1|1|06/01/1986 17:20|06/01/1986 17:40|06/01/1986 18:30|5.0|9|NAD83|32.7167|-114.5508|1|0|0|B|01|Complete +64897|BLM|AZ|AZYUD|FA 7||C764|5|1|06/17/1986 12:25|||||NAD83|32.8334|-113.3341|||||01|Complete +64898|BLM|AZ|AZYUD|TOWER||C765|1|1|06/23/1986 11:40|06/23/1986 11:55|06/23/1986 13:00|0.2|9|NAD83|32.8167|-114.4841|4|0|6|B|01|Complete +64899|BLM|AZ|AZYUD|LOST||C766|1|1|06/23/1986 15:15|06/23/1986 15:40|06/23/1986 16:45|0.5|9|NAD83|33.5167|-114.5675|1|0|0|B|01|Complete +64900|BLM|AZ|AZYUD|RURAL||C767|1|1|06/27/1986 00:30|06/27/1986 01:59|06/27/1986 02:50|0.3|9|NAD83|32.8167|-114.4841|4|0|6|B|01|Complete +64901|BLM|AZ|AZYUD|GSCOUT||C768|1|1|06/30/1986 14:00|06/30/1986 14:44|06/30/1986 16:00|0.1|9|NAD83|32.8167|-114.4674|1|0|0|B|01|Complete +64902|BLM|AZ|AZYUD|COUNTY A||C769|3|7|07/01/1986 00:00||07/01/1986 00:00||||||||||01|Complete +64903|BLM|AZ|AZYUD|FERGUSON||C770|1|1|07/03/1986 21:00|07/03/1986 22:00|07/04/1986 13:00|250.0|9|NAD83|32.9667|-114.4841|1|0|0|B|01|Complete +64904|BLM|AZ|AZYUD|MARTINEZ||C771|3|7|07/05/1986 00:00||07/06/1986 00:00||||||||||01|Complete +64905|BLM|AZ|AZYUD|BERNEY||C772|1|1|07/06/1986 17:25|07/06/1986 17:37|07/06/1986 18:00|0.3|9|NAD83|32.9334|-114.5008|1|0|0|B|01|Complete +64906|BLM|AZ|AZYUD|QUARTZSITE||C773|1|1|07/22/1986 16:00|07/22/1986 16:05|07/22/1986 16:35|0.1|1|NAD83|33.7500|-114.2341|1|0|0|B|01|Complete +64907|BLM|AZ|AZYUD|FORTUNA||C774|1|1|07/30/1986 20:30|07/30/1986 22:07|07/30/1986 23:59|1.0|9|NAD83|32.7167|-114.4508|1|0|0|B|01|Complete +64908|BLM|AZ|AZYUD|BAR||C775|1|1|07/31/1986 14:00|07/31/1986 14:45|08/01/1986 17:00|6.0|9|NAD83|32.7167|-114.4508|1|0|0|B|01|Complete +64909|BLM|AZ|AZYUD|FORTMESA||C776|1|1|08/03/1986 21:00|08/03/1986 21:15|08/03/1986 22:28|0.1|6|NAD83|35.0500|-114.6008|1|0|0|B|01|Complete +64910|BLM|AZ|AZYUD|PALO||C777|2|1|08/30/1986 10:30||08/30/1986 10:30|0.3||NAD83|33.2834|-114.7508|||||01|Complete +64911|BLM|AZ|AZYUD|FA 8||C778|5|1|09/17/1986 11:10|||||NAD83|32.6334|-114.6675|||||01|Complete +64912|BLM|AZ|AZYUD|BASS||C779|1|1|10/15/1986 14:45|10/15/1986 15:04|10/15/1986 16:00|1.0|2|NAD83|32.7000|-114.5675|1|2|1|B|01|Complete +64913|BLM|AZ|AZYUD|METAL||C780|1|1|12/05/1986 09:30|12/05/1986 10:00|12/05/1986 22:00|25.0|2|NAD83|34.2833|-114.1508|1|1|2|B|01|Complete +64914|BLM|AZ|AZYUD|BEND||C781|1|1|12/12/1986 19:00|12/12/1986 19:20|12/12/1986 20:00|0.5|2|NAD83|32.6834|-114.6675|1|1|3|B|01|Complete +64915|BLM|AZ|AZYUD|VERDE||C782|1|1|12/15/1986 14:50|12/15/1986 15:10|12/15/1986 19:25|3.0|4|NAD83|33.3667|-114.6675|1|0|2|B|01|Complete +64916|BLM|AZ|AZYUD|PALO||C783|1|1|12/15/1986 15:00|12/15/1986 15:20|12/15/1986 19:25|2.0|4|NAD83|33.3667|-114.6675|1|0|2|B|01|Complete +64917|BLM|AZ|AZYUD|DUMP||C784|1|1|12/22/1986 15:30|12/22/1986 16:00|12/22/1986 17:40|1.0|4|NAD83|32.7167|-114.4508|1|0|7|B|01|Complete +64918|BLM|AZ|AZYUD|GILA||C785|1|1|12/27/1986 04:00|12/27/1986 04:15|12/27/1986 06:00|0.5|2|NAD83|32.7000|-114.4841|1|0|6|B|01|Complete +60030|BLM|AZ|AZYUD|TOPOCK||C786|3|7|01/31/1987 00:00||01/31/1987 00:00||||||||||01|Complete +60031|BLM|AZ|AZYUD|FA 1||C787|5|1|02/01/1987 18:05|||||NAD83|32.9834|-114.5008|||||01|Complete +60032|BLM|AZ|AZYUD|FIRST||C788|3|7|02/05/1987 00:00||02/05/1987 00:00||||||||||01|Complete +60082|BLM|AZ|AZYUD|OLDER||C838|1|1|02/10/1987 13:00|02/10/1987 14:00|02/10/1987 16:00|0.3|4|NAD83|32.7834|-113.8008|1|0|0|B|01|Complete +60033|BLM|AZ|AZYUD|FA 2||C789|5|1|02/10/1987 14:05|||||NAD83|32.8334|-114.4174|||||01|Complete +60034|BLM|AZ|AZYUD|IMPERIAL||C790|1|1|02/10/1987 14:43|02/10/1987 14:50|02/11/1987 03:00|1200.0|9|NAD83|32.9667|-114.4174|1|0|0|B|01|Complete +60035|BLM|AZ|AZYUD|FA 3||C791|5|1|02/10/1987 14:49|||||NAD83|32.7167|-114.5508|||||01|Complete +60036|BLM|AZ|AZYUD|FA 4||C792|5|1|02/13/1987 09:12|||||NAD83|32.7167|-114.6008|||||01|Complete +60037|BLM|AZ|AZYUD|FA 6||C793|5|2|02/22/1987 15:19|||||NAD83|34.9667|-114.5841|||||01|Complete +60038|BLM|AZ|AZYUD|FA 7||C794|5|2|02/23/1987 08:43|||||NAD83|32.8834|-114.5508|||||01|Complete +60039|BLM|AZ|AZYUD|FA 8||C795|5|1|02/23/1987 09:30|||||NAD83|34.9667|-114.5508|||||01|Complete +60040|BLM|AZ|AZYUD|FA 9||C796|5|3|02/26/1987 09:42|||||NAD83|34.9833|-114.5841|||||01|Complete +60041|BLM|AZ|AZYUD|EARLY||C797|1|1|03/03/1987 14:00|03/03/1987 14:30|03/03/1987 19:00|4.0|2|NAD83|32.7167|-114.6008|1|0|0|B|01|Complete +60042|BLM|AZ|AZYUD|FA 5||C798|5|1|03/05/1987 12:53|||||NAD83|32.7334|-114.5174|||||01|Complete +60044|BLM|AZ|AZYUD|TURNER||C800|3|7|03/10/1987 00:00||03/10/1987 00:00||||||||||01|Complete +60046|BLM|AZ|AZYUD|VISTA||C802|3|7|03/12/1987 00:00||03/12/1987 00:00||||||||||01|Complete +60045|BLM|AZ|AZYUD|HOBO||C801|1|1|03/12/1987 19:40|03/12/1987 20:20|03/13/1987 04:00|4.0|2|NAD83|32.7167|-114.6008|1|0|0|B|01|Complete +60043|BLM|AZ|AZYUD|HIDDEN||C799|2|6|03/17/1987 20:52||03/18/1987 01:30|10.0||NAD83|34.7000|-114.4841|||||04|Complete +60047|BLM|AZ|AZYUD|PALO VERDE||C803|1|1|03/26/1987 01:18|03/26/1987 03:11|03/26/1987 05:30|0.5|2|NAD83|33.3834|-114.7175|1|0|0|B|01|Complete +60048|BLM|AZ|AZYUD|RIVER||C804|1|1|03/27/1987 16:28|03/27/1987 16:40|03/27/1987 19:00|0.5|2|NAD83|32.7167|-114.6008|1|0|0|B|01|Complete +60049|BLM|AZ|AZYUD|HAY||C805|2|3|03/29/1987 09:15||03/29/1987 14:30|0.1||NAD83|32.8167|-114.4841|||||01|Complete +60050|BLM|AZ|AZYUD|CLASSIC||C806|1|1|03/30/1987 10:45|03/30/1987 14:50|03/30/1987 15:30|0.1|4|NAD83|33.6000|-114.6008|1|0|0|B|01|Complete +60051|BLM|AZ|AZYUD|WEASLE||C807|1|5|04/07/1987 12:25|04/07/1987 13:00|04/07/1987 13:37|1.0|9|NAD83|32.7167|-114.5675|1|0|0|B|08|Complete +60052|BLM|AZ|AZYUD|PENA||C808|3|7|04/10/1987 00:00||04/10/1987 00:00||||||||||01|Complete +60053|BLM|AZ|AZYUD|LAGUNAI||C809|3|7|04/10/1987 00:00||04/11/1987 00:00||||||||||01|Complete +60054|BLM|AZ|AZYUD|LAGUNA 2||C810|3|7|04/10/1987 00:00||04/11/1987 00:00||||||||||01|Complete +60055|BLM|AZ|AZYUD|MUSKRAT||C811|1|1|04/14/1987 21:00|04/14/1987 21:38|04/16/1987 14:00|120.0|2|NAD83|32.7167|-114.5675|1|0|0|B|01|Complete +60083|BLM|AZ|AZYUD|OLD||C839|1|1|04/17/1987 13:00|04/17/1987 14:00|04/17/1987 17:00|12.0|4|NAD83|32.7834|-113.7841|1|0|0|B|01|Complete +60058|BLM|AZ|AZYUD|BUCKSKIN||C814|1|3|04/19/1987 02:20|04/19/1987 02:27|04/19/1987 05:00|9.0|9|NAD83|34.2500|-114.1508|1|0|0|B|01|Complete +60056|BLM|AZ|AZYUD|WALTERS||C812|1|1|04/19/1987 14:40|04/19/1987 16:02|04/19/1987 17:00|0.1|2|NAD83|33.2334|-114.6841|1|0|0|B|01|Complete +60059|BLM|AZ|AZYUD|WALTER 2||C815|2|1|04/19/1987 17:00||04/19/1987 17:00|0.1||NAD83|33.2334|-114.6841|||||01|Complete +60057|BLM|AZ|AZYUD|GOPHER||C813|1|1|04/20/1987 07:50|04/20/1987 08:53|04/20/1987 09:47|0.1|9|NAD83|32.7500|-114.4174|1|0|0|B|01|Complete +60060|BLM|AZ|AZYUD|FA 10||C816|5|1|04/23/1987 10:35|||||NAD83|34.2167|-114.2174|||||01|Complete +60061|BLM|AZ|AZYUD|BUCKSKIN 2||C817|1|1|04/28/1987 14:38|04/28/1987 15:30|04/28/1987 16:00|0.1|4|NAD83|34.2500|-114.1508|1|0|0|B|01|Complete +60064|BLM|AZ|AZYUD|CADI||C820|1|3|05/03/1987 20:05|05/03/1987 20:56|05/03/1987 21:02|0.1|5|NAD83|34.8333|-114.5675|1|0|0|B|01|Complete +60063|BLM|AZ|AZYUD|FERGUSON||C819|3|7|05/07/1987 00:00||05/11/1987 00:00||||||||||01|Complete +60062|BLM|AZ|AZYUD|ISLAND||C818|3|7|05/08/1987 00:00||05/09/1987 00:00||||||||||01|Complete +60065|BLM|AZ|AZYUD|MCALLISTER||C821|3|7|05/08/1987 00:00||05/10/1987 00:00||||||||||01|Complete +60066|BLM|AZ|AZYUD|FA 11||C822|5|1|05/17/1987 19:30|||||NAD83|32.7834|-114.5008|||||01|Complete +60067|BLM|AZ|AZYUD|ARAZ||C823|3|7|05/19/1987 00:00||05/19/1987 00:00||||||||||01|Complete +60068|BLM|AZ|AZYUD|RURAL||C824|3|7|05/20/1987 00:00||05/20/1987 00:00||||||||||01|Complete +60069|BLM|AZ|AZYUD|GOPHERS||C825|3|7|05/21/1987 00:00||05/21/1987 00:00||||||||||01|Complete +60070|BLM|AZ|AZYUD|FA 12||C826|5|5|05/21/1987 17:26|||||NAD83|35.1333|-114.6008|||||01|Complete +60071|BLM|AZ|AZYUD|GOOSEFLATS||C827|3|7|05/23/1987 00:00||05/23/1987 00:00||||||||||01|Complete +60072|BLM|AZ|AZYUD|HUNTERS||C828|1|1|05/24/1987 22:38|05/25/1987 00:01|05/25/1987 16:00|15.0|2|NAD83|32.9834|-114.5175|1|0|5|B|01|Complete +60073|BLM|AZ|AZYUD|GLAD||C829|1|1|05/28/1987 11:12|05/28/1987 11:53|05/28/1987 12:00|0.1|4|NAD83|32.5001|-114.7675|1|0|0|B|01|Complete +60074|BLM|AZ|AZYUD|FA 13||C830|5|1|06/01/1987 10:54|||||NAD83|32.7667|-114.3674|||||01|Complete +60076|BLM|AZ|AZYUD|TRAIN||C832|3|7|06/03/1987 00:00||06/03/1987 00:00||||||||||01|Complete +60075|BLM|AZ|AZYUD|FA 14||C831|5|6|06/03/1987 10:04|||||NAD83|34.4167|-114.2508|||||01|Complete +60077|BLM|AZ|AZYUD|POLE||C833|1|1|06/04/1987 20:00|06/04/1987 20:37|06/04/1987 20:41|0.1|1|NAD83|33.3500|-114.2508|1|0|0|B|01|Complete +60078|BLM|AZ|AZYUD|FA 15||C834|5|1|06/10/1987 17:02|||||NAD83|32.7334|-113.7508|||||01|Complete +60079|BLM|AZ|AZYUD|PARK||C835|1|6|06/15/1987 15:20|06/15/1987 15:50|06/15/1987 19:00|8.0|5|NAD83|34.8000|-114.5508|1|0|0|B|04|Complete +60080|BLM|AZ|AZYUD|FORT||C836|1|6|06/15/1987 16:15|06/15/1987 16:30|06/16/1987 00:07|3.0|5|NAD83|35.0500|-114.6175|1|0|0|B|02|Complete +60081|BLM|AZ|AZYUD|FA 16||C837|5|1|06/18/1987 11:37|||||NAD83|33.3334|-114.7508|||||01|Complete +60084|BLM|AZ|AZYUD|FA 17||C840|5|1|06/22/1987 09:17|||||NAD83|32.8334|-114.5008|||||01|Complete +60085|BLM|AZ|AZYUD|GAME||C841|1|1|06/24/1987 19:20|06/24/1987 20:05|06/25/1987 13:00|5.0|9|NAD83|32.7167|-114.7341|1|0|0|B|01|Complete +60086|BLM|AZ|AZYUD|SNAKE PIT||C842|1|1|06/26/1987 13:48|06/26/1987 14:19|06/27/1987 16:00|50.0|9|NAD83|33.5834|-114.5341|1|0|0|B|01|Complete +60087|BLM|AZ|AZYUD|HELPLESS||C843|1|3|06/27/1987 01:00|06/27/1987 01:13|06/28/1987 11:30|0.1|9|NAD83|32.8167|-114.4841|1|0|0|B|01|Complete +60088|BLM|AZ|AZYUD|COCOPAH 1||C844|3|7|06/29/1987 00:00||06/30/1987 00:00||||||||||01|Complete +60089|BLM|AZ|AZYUD|FA 18||C845|5|1|07/01/1987 11:05|||||NAD83|32.7167|-114.6175|||||01|Complete +60090|BLM|AZ|AZYUD|BEE||C846|3|7|07/03/1987 00:00||07/03/1987 00:00||||||||||01|Complete +60092|BLM|AZ|AZYUD|MITTRY C||C848|1|1|07/03/1987 13:55|07/03/1987 15:10|07/03/1987 15:29|0.1|2|NAD83|32.8167|-114.4674|1|0|0|B|01|Complete +60091|BLM|AZ|AZYUD|PICACHO||C847|1|1|07/04/1987 21:22|07/04/1987 22:00|07/08/1987 08:00|350.0|9|NAD83|33.0167|-114.6175|1|0|0|O|01|Complete +60093|BLM|AZ|AZYUD|CITY||C849|3|7|07/07/1987 00:00||07/10/1987 00:00||||||||||01|Complete +60094|BLM|AZ|AZYUD|MONSOON||C850|1|1|07/14/1987 10:30|07/14/1987 11:10|07/14/1987 11:45|0.3|1|NAD83|32.8500|-114.5008|1|0|0|B|01|Complete +60095|BLM|AZ|AZYUD|SPIRIT||C851|3|7|07/18/1987 00:00||07/18/1987 00:00||||||||||01|Complete +60096|BLM|AZ|AZYUD|MAVERICK||C852|3|7|07/21/1987 00:00||07/22/1987 00:00||||||||||01|Complete +60097|BLM|AZ|AZYUD|FA 19||C853|5|1|07/25/1987 17:51|||||NAD83|33.4667|-114.6175|||||01|Complete +60098|BLM|AZ|AZYUD|N INLAND||C854|3|7|07/28/1987 00:00||08/01/1987 00:00||||||||||01|Complete +60099|BLM|AZ|AZYUD|PIG FARM||C855|1|2|07/30/1987 20:15|07/30/1987 21:40|07/30/1987 22:50|0.3|9|NAD83|33.5500|-114.5675|1|0|0|B|01|Complete +60100|BLM|AZ|AZYUD|FA 20||C856|5|1|08/06/1987 15:39|||||NAD83|32.7834|-114.5008|||||01|Complete +60101|BLM|AZ|AZYUD|QUARTZ||C857|1|5|08/12/1987 09:00|08/12/1987 10:51|08/12/1987 11:25|0.3|9|NAD83|33.5000|-114.5008|1|0|0|B|08|Complete +60102|BLM|AZ|AZYUD|BRIDGE||C858|3|7|08/13/1987 00:00||08/14/1987 00:00||||||||||01|Complete +60103|BLM|AZ|AZYUD|FA 21||C859|5|1|08/18/1987 15:10|||||NAD83|32.7167|-114.5508|||||01|Complete +60104|BLM|AZ|AZYUD|FA 22||C860|5|1|08/18/1987 19:05|||||NAD83|34.3667|-114.0674|||||01|Complete +60105|BLM|AZ|AZYUD|A-7||C861|2|1|08/22/1987 13:30||08/22/1987 13:30|1.0||NAD83|33.6167|-114.5675|||||01|Complete +60106|BLM|AZ|AZYUD|GILA FLARE||C862|1|1|08/22/1987 22:00|08/22/1987 23:13|08/22/1987 23:59|0.3|1|NAD83|32.7167|-114.5675|1|0|0|A|01|Complete +60107|BLM|AZ|AZYUD|CANAL||C863|1|1|08/28/1987 20:00|08/28/1987 20:30|08/28/1987 21:00|1.0|9|NAD83|32.7000|-114.5675|1|0|0|B|01|Complete +60109|BLM|AZ|AZYUD|THREE MILE||C865|1|1|08/30/1987 19:55|08/30/1987 20:00|09/04/1987 12:00|1300.0|1|NAD83|34.8167|-114.5508|1|0|0|B|01|Complete +60108|BLM|AZ|AZYUD|FA 23||C864|5|1|08/31/1987 14:43|||||NAD83|32.7667|-114.4174|||||01|Complete +60110|BLM|AZ|AZYUD|LUIS||C866|1|1|09/01/1987 20:35|09/02/1987 00:55|09/02/1987 13:00|6.0|1|NAD83|32.5167|-114.8008|1|0|0|B|01|Complete +60111|BLM|AZ|AZYUD|FA 24||C867|5|1|09/06/1987 18:30|||||NAD83|32.9000|-114.5341|||||01|Complete +60112|BLM|AZ|AZYUD|DRAIN||C868|1|1|09/12/1987 02:56|09/12/1987 03:00|09/12/1987 03:30|0.4|4|NAD83|32.7167|-114.4674|1|0|0|B|01|Complete +60115|BLM|AZ|AZYUD|JACK||C871|2|1|09/21/1987 20:30|09/21/1987 20:45|09/21/1987 21:00|1.0||NAD83|32.6334|-114.6341|1|0|0|B|01|Complete +60113|BLM|AZ|AZYUD|FERGUSON||C869|1|1|09/22/1987 13:50|09/22/1987 14:55|09/22/1987 16:00|0.3|1|NAD83|32.9667|-114.4674|1|0|0|B|01|Complete +60116|BLM|AZ|AZYUD|SAN||C872|2|1|09/22/1987 19:30||09/22/1987 20:20|1.0||NAD83|32.5001|-114.8008|||||01|Complete +60114|BLM|AZ|AZYUD|TULE||C870|1|2|09/28/1987 21:00|09/28/1987 21:30|09/28/1987 22:00|0.3|1|NAD83|32.9667|-114.4674|1|0|0|B|01|Complete +60117|BLM|AZ|AZYUD|SPILLWAY||C873|3|7|10/02/1987 00:00||10/02/1987 00:00||||||||||01|Complete +60118|BLM|AZ|AZYUD|TACNA 1||C874|1|3|10/02/1987 23:00|10/02/1987 23:20|10/03/1987 00:01|0.3|9|NAD83|32.7500|-113.9508|1|0|0|B|01|Complete +60119|BLM|AZ|AZYUD|TACNA 2||C875|1|3|10/03/1987 05:00|10/03/1987 05:15|10/03/1987 08:10|0.3|9|NAD83|32.7500|-113.9508|1|0|0|B|01|Complete +60120|BLM|AZ|AZYUD|DUMP||C876|2|1|10/20/1987 20:30||10/20/1987 23:00|1.0||NAD83|32.9834|-114.5008|||||01|Complete +54988|BLM|AZ|AZYUD|FISHER||C877|1|1|01/25/1988 17:00|01/25/1988 17:45|01/26/1988 20:00|240.0|8|NAD83|32.9667|-114.4674|1|0|0|B|01|Complete +54990|BLM|AZ|AZYUD|YPG||C879|3|7|02/06/1988 09:00||02/06/1988 00:00||||||||||01|Complete +54989|BLM|AZ|AZYUD|FA1||C878|5|6|02/07/1988 01:00|||||NAD83|32.6334|-114.4841|||||01|Complete +54991|BLM|AZ|AZYUD|FA 2||C880|5|1|02/08/1988 19:05|||||NAD83|33.4334|-114.7341|||||01|Complete +54992|BLM|AZ|AZYUD|FA 3||C881|5|1|02/10/1988 17:30|||||NAD83|33.4167|-114.7175|||||01|Complete +54993|BLM|AZ|AZYUD|FA 4||C882|5|1|02/11/1988 14:08|||||NAD83|32.5834|-114.8175|||||01|Complete +54994|BLM|AZ|AZYUD|RIVERROAD||C883|1|1|02/12/1988 12:00|02/12/1988 12:45|02/12/1988 13:45|1.0|9|NAD83|32.4834|-114.7508|1|0|0|B|01|Complete +54995|BLM|AZ|AZYUD|IRONWOOD||C884|1|1|02/14/1988 21:06|02/15/1988 10:00|02/15/1988 12:00|0.2|4|NAD83|33.2334|-114.7175|1|0|0|B|01|Complete +54996|BLM|AZ|AZYUD|FA 5||C885|5|5|02/18/1988 10:15|||||NAD83|32.8500|-114.2841|||||01|Complete +54997|BLM|AZ|AZYUD|DOME||C886|1|1|02/18/1988 17:10|02/18/1988 17:41|02/18/1988 23:20|150.0|9|NAD83|32.7500|-114.3508|1|0|0|B|01|Complete +54998|BLM|AZ|AZYUD|PACIFIC||C887|1|1|02/21/1988 14:12|02/21/1988 14:25|02/21/1988 14:50|0.4|9|NAD83|32.7167|-114.5008|1|0|0|B|01|Complete +54999|BLM|AZ|AZYUD|MORELOS||C888|1|1|02/25/1988 10:00|02/25/1988 10:20|02/25/1988 11:15|0.2|2|NAD83|32.7334|-114.7341|1|0|0|B|01|Complete +55000|BLM|AZ|AZYUD|CITY 1||C889|3|7|02/25/1988 22:33||02/26/1988 00:00||||||||||01|Complete +55001|BLM|AZ|AZYUD|OXBOW||C890|1|1|02/29/1988 14:05|02/29/1988 15:00|03/01/1988 16:00|30.0|2|NAD83|33.4167|-114.7008|1|0|5|B|01|Complete +55002|BLM|AZ|AZYUD|MORALES 2||C891|1|1|03/04/1988 17:30|03/04/1988 18:00|03/04/1988 19:12|1.0|9|NAD83|32.7334|-114.7341|1|0|0|B|01|Complete +55003|BLM|AZ|AZYUD|HUALAPAI||C892|3|7|03/08/1988 09:30||03/08/1988 00:00||||||||||01|Complete +55004|BLM|AZ|AZYUD|ARAZ 3||C893|3|7|03/15/1988 18:00||03/16/1988 01:00||||||||||01|Complete +55005|BLM|AZ|AZYUD|STATE 1||C894|3|7|03/18/1988 12:55||03/18/1988 15:16||||||||||01|Complete +55006|BLM|AZ|AZYUD|FERGUESON1||C895|1|1|03/18/1988 20:30|03/18/1988 22:53|03/18/1988 23:44|25.0|5|NAD83|32.9834|-114.5008|1|0|0|B|01|Complete +55007|BLM|AZ|AZYUD|BIA 3||C896|3|7|03/20/1988 20:47||03/21/1988 12:00||||||||||01|Complete +55008|BLM|AZ|AZYUD|ROLL||C897|1|5|03/26/1988 01:10|03/26/1988 02:40|03/26/1988 11:50|3.0|9|NAD83|32.7167|-113.9841|1|0|0|B|06|Complete +55009|BLM|AZ|AZYUD|NEEDLES 1||C898|1|5|03/27/1988 18:00|03/27/1988 18:45|03/29/1988 18:00|325.0|8|NAD83|34.8333|-114.6841|1|0|0|B|08|Complete +55010|BLM|AZ|AZYUD|LAKES||C899|1|1|03/29/1988 16:00|03/29/1988 17:00|03/30/1988 17:00|8.0|4|NAD83|32.7667|-114.4841|1|0|0|B|01|Complete +55011|BLM|AZ|AZYUD|NATURAL||C900|2|1|03/30/1988 15:43||03/30/1988 18:00|0.5||NAD83|32.7500|-114.4841|||||01|Complete +55013|BLM|AZ|AZYUD|PUMPHOUSE||C902|1|3|03/31/1988 12:00|03/31/1988 12:15|03/31/1988 14:00|0.1|2|NAD83|32.5834|-114.7175|1|0|0|B|01|Complete +55012|BLM|AZ|AZYUD|BORDER||C901|1|3|03/31/1988 19:30|03/31/1988 20:00|03/31/1988 21:00|0.5|2|NAD83|32.6667|-114.6341|1|0|0|B|01|Complete +55014|BLM|AZ|AZYUD|FA 6||C903|5|6|04/03/1988 19:30|||||NAD83|32.7334|-114.5174|||||01|Complete +55015|BLM|AZ|AZYUD|EMBRY||C904|1|1|04/06/1988 09:30|04/06/1988 09:32|04/06/1988 10:00|0.1|2|NAD83|32.7334|-114.6508|1|0|0|B|01|Complete +55016|BLM|AZ|AZYUD|N SHORE||C905|1|1|04/09/1988 23:45|04/10/1988 00:25|04/10/1988 03:00|0.5|9|NAD83|32.9000|-114.5008|1|0|0|B|01|Complete +55017|BLM|AZ|AZYUD|MOHAVE 1||C906|3|7|04/11/1988 16:33||||||||||||01|Complete +55018|BLM|AZ|AZYUD|BIA 4||C907|3|7|04/22/1988 14:05||04/23/1988 16:00||||||||||01|Complete +55019|BLM|AZ|AZYUD|FA 7||C908|5|6|05/02/1988 20:01|||||NAD83|32.8334|-114.5174|||||01|Complete +55020|BLM|AZ|AZYUD|HAVASU 1||C909|3|7|05/09/1988 20:30||05/10/1988 00:30||||||||||01|Complete +55021|BLM|AZ|AZYUD|CITY 2||C910|3|7|05/14/1988 17:31||05/14/1988 20:11||||||||||01|Complete +55022|BLM|AZ|AZYUD|GADSDEN||C911|1|1|05/15/1988 13:06|05/15/1988 13:43|05/15/1988 14:20|1.0|3|NAD83|32.5167|-114.8008|1|0|0|B|01|Complete +55023|BLM|AZ|AZYUD|TACNA||C912|1|1|05/26/1988 12:44|05/26/1988 14:04|05/26/1988 16:30|5.0|9|NAD83|32.7334|-113.9341|1|0|5|B|01|Complete +55024|BLM|AZ|AZYUD|TYSON||C913|1|1|05/28/1988 01:00|05/28/1988 01:30|05/28/1988 14:00|2.5|9|NAD83|33.6667|-114.2174|1|0|0|T|01|Complete +55025|BLM|AZ|AZYUD|HAVASU 2||C914|3|7|05/29/1988 00:00||05/29/1988 00:00||||||||||01|Complete +55026|BLM|AZ|AZYUD|BIA 5||C915|3|7|05/30/1988 00:00||05/30/1988 00:00||||||||||01|Complete +55027|BLM|AZ|AZYUD|FA 8||C916|5|1|06/01/1988 09:00|||||NAD83|34.4833|-114.2675|||||01|Complete +55028|BLM|AZ|AZYUD|FISHER 2||C917|1|1|06/04/1988 19:00|06/04/1988 19:15|06/04/1988 21:54|0.3|9|NAD83|32.9667|-114.4508|1|0|0|B|01|Complete +55029|BLM|AZ|AZYUD|COLFRED||C918|1|1|06/06/1988 08:10|06/06/1988 09:20|06/06/1988 11:32|0.1|9|NAD83|32.6834|-113.9508|1|0|0|B|01|Complete +55030|BLM|AZ|AZYUD|HWY 1||C919|1|1|06/13/1988 14:30|06/13/1988 14:32|06/13/1988 14:35|0.1|3|NAD83|34.2500|-114.2008|1|0|0|A|01|Complete +55031|BLM|AZ|AZYUD|HWY 2||C920|1|1|06/13/1988 14:45|06/13/1988 14:53|06/13/1988 15:10|0.1|3|NAD83|34.3333|-114.1674|1|0|0|A|01|Complete +55032|BLM|AZ|AZYUD|BIA 6||C921|3|7|06/15/1988 00:00||06/16/1988 00:00|20.0|||||||||01|Complete +55033|BLM|AZ|AZYUD|A 10||C922|1|1|06/16/1988 15:23|06/16/1988 17:10|06/18/1988 12:00|455.0|9|NAD83|33.4334|-114.6341|1|0|0|B|01|Complete +55034|BLM|AZ|AZYUD|FWS 1||C923|3|7|06/18/1988 04:15||06/19/1988 12:00||||||||||01|Complete +55035|BLM|AZ|AZYUD|CHANNEL||C924|1|1|06/24/1988 09:56|06/24/1988 10:55|06/24/1988 18:00|410.0|5|NAD83|32.9500|-114.4508|1|0|0|B|01|Complete +55036|BLM|AZ|AZYUD|WALTERS 1||C925|1|1|06/25/1988 21:00|06/25/1988 22:00|06/25/1988 23:50|3.0|9|NAD83|33.2500|-114.7175|1|0|0|B|01|Complete +55037|BLM|AZ|AZYUD|NEEDLES 3||C926|1|1|06/27/1988 14:27|06/27/1988 14:45|06/27/1988 15:45|2.0|9|NAD83|34.8500|-114.6008|1|0|0|B|01|Complete +55038|BLM|AZ|AZYUD|BUCKSKIN||C927|1|6|07/01/1988 20:05|07/01/1988 20:30|07/01/1988 21:00|0.1|3|NAD83|34.2833|-114.2174|1|0|0|A|09|Complete +55040|BLM|AZ|AZYUD|SB 1||C929|3|7|07/03/1988 00:00||07/04/1988 00:00||||||||||01|Complete +55042|BLM|AZ|AZYUD|MARTINEZ||C931|1|1|07/03/1988 00:01|07/03/1988 00:20|07/03/1988 00:45|0.1|9|NAD83|32.8334|-114.4841|1|0|0|B|01|Complete +55039|BLM|AZ|AZYUD|FA 9||C928|5|5|07/03/1988 20:51|||||NAD83|34.4667|-114.4008|||||01|Complete +55041|BLM|AZ|AZYUD|SPORTSMAN||C930|1|1|07/03/1988 22:00|07/03/1988 22:30|07/03/1988 23:30|0.1|9|NAD83|34.2000|-114.2008|1|0|0|A|01|Complete +55043|BLM|AZ|AZYUD|COLFRED 2||C932|1|1|07/08/1988 09:09|07/08/1988 10:21|07/08/1988 11:29|0.1|2|NAD83|32.7000|-113.9674|1|0|0|A|01|Complete +55045|BLM|AZ|AZYUD|BIA 7||C934|3|7|07/09/1988 00:00||07/09/1988 00:00||||||||||01|Complete +55044|BLM|AZ|AZYUD|COLFRED 3||C933|1|1|07/09/1988 09:31|07/09/1988 10:30|07/09/1988 13:30|0.1|2|NAD83|32.7000|-113.9674|1|0|0|B|01|Complete +55047|BLM|AZ|AZYUD|SWANSEA||C936|1|1|07/11/1988 07:43|07/11/1988 07:43|07/11/1988 13:00|0.3|9|NAD83|34.2500|-113.8508|1|0|0|A|01|Complete +55048|BLM|AZ|AZYUD|PLANET||C937|1|1|07/11/1988 07:45|07/11/1988 07:45|07/11/1988 13:00|0.3|9|NAD83|34.2500|-113.8508|1|0|0|A|01|Complete +55046|BLM|AZ|AZYUD|SQUAW||C935|2|1|07/11/1988 12:00||07/11/1988 12:00|0.1||NAD83|32.9000|-114.4841|||||01|Complete +55049|BLM|AZ|AZYUD|BULLHEAD||C938|1|1|07/13/1988 16:32|07/13/1988 16:45|07/14/1988 10:00|1.5|9|NAD83|35.0833|-114.6175|1|0|0|N|01|Complete +55050|BLM|AZ|AZYUD|STATE 2||C939|3|7|07/14/1988 00:00||07/14/1988 00:00||||||||||01|Complete +55051|BLM|AZ|AZYUD|BARNEY||C940|1|3|07/16/1988 19:15|07/16/1988 19:32|07/16/1988 19:39|0.1|9|NAD83|34.6000|-114.3508|1|0|0|A|01|Complete +55052|BLM|AZ|AZYUD|STATE 3||C941|3|7|07/20/1988 00:00||07/20/1988 00:00||||||||||01|Complete +55053|BLM|AZ|AZYUD|BANK||C942|1|1|07/20/1988 08:55|07/20/1988 09:15|07/20/1988 10:00|0.1|9|NAD83|32.8167|-114.4508|1|0|0|A|01|Complete +55054|BLM|AZ|AZYUD|BUSH||C943|1|1|07/20/1988 08:55|07/20/1988 09:30|07/20/1988 10:00|0.1|9|NAD83|32.8167|-114.4508|1|0|0|A|01|Complete +55055|BLM|AZ|AZYUD|DIKE ROAD||C944|3|7|07/21/1988 19:45||07/23/1988 18:00|110.0|||||||||01|Complete +55056|BLM|AZ|AZYUD|YUM YUM||C945|1|3|07/23/1988 17:00|07/23/1988 18:00|07/23/1988 20:00|0.3|9|NAD83|33.5834|-114.2841|1|0|0|A|01|Complete +55057|BLM|AZ|AZYUD|FERGUESON2||C946|1|1|07/24/1988 10:23|07/24/1988 10:54|07/24/1988 16:00|1.0|5|NAD83|32.9834|-114.5008|1|0|0|N|01|Complete +55058|BLM|AZ|AZYUD|NAT 3||C947|2|1|07/31/1988 16:30||07/31/1988 18:00|0.1|1|NAD83|34.5333|-114.1675|||||01|Complete +55059|BLM|AZ|AZYUD|GRAVE||C948|1|1|08/09/1988 09:00|08/09/1988 09:21|08/09/1988 10:00|0.1|2|NAD83|32.7167|-114.7008|1|0|0|N|01|Complete +55060|BLM|AZ|AZYUD|LIGUIRTA||C949|1|1|08/13/1988 17:29|08/13/1988 18:01|08/14/1988 17:00|20.0|9|NAD83|32.6834|-114.2841|1|0|0|N|01|Complete +55061|BLM|AZ|AZYUD|MINER CAMP||C950|1|1|08/16/1988 13:30|08/16/1988 14:00|08/16/1988 17:00|10.0|4|NAD83|32.7667|-114.4174|1|0|0|N|01|Complete +55062|BLM|AZ|AZYUD|OXBOW LAKE||C951|1|1|08/17/1988 17:52|08/17/1988 19:40|08/17/1988 21:38|0.3|9|NAD83|33.4000|-114.7175|1|0|5|N|01|Complete +55063|BLM|AZ|AZYUD|DRAINAGE||C952|1|6|08/19/1988 12:43|08/19/1988 15:03|08/20/1988 16:00|4.0|6|NAD83|33.2834|-114.7008|1|0|0|N|04|Complete +55064|BLM|AZ|AZYUD|HUNTERS||C953|1|1|09/11/1988 11:15|09/11/1988 12:00|09/11/1988 18:29|10.0|9|NAD83|32.5167|-114.7841|1|0|0|N|01|Complete +55065|BLM|AZ|AZYUD|PIG PEN||C954|3|7|09/12/1988 10:30||09/12/1988 15:56||||||||||01|Complete +55066|BLM|AZ|AZYUD|WILLOW||C955|1|1|09/19/1988 02:52|09/19/1988 03:30|09/19/1988 13:00|2.0|9|NAD83|32.7167|-114.5675|1|0|0|B|01|Complete +55067|BLM|AZ|AZYUD|A-7||C956|1|1|09/20/1988 14:00|09/20/1988 14:30|09/21/1988 18:00|40.0|5|NAD83|33.5667|-114.5341|1|0|5|B|01|Complete +55068|BLM|AZ|AZYUD|GAGING STA||C957|1|1|09/22/1988 18:42|09/22/1988 19:19|09/22/1988 22:35|2.0|9|NAD83|32.7167|-114.7175|1|0|0|B|01|Complete +55069|BLM|AZ|AZYUD|WILLOW 2||C958|1|1|09/22/1988 22:34|09/22/1988 22:59|09/23/1988 01:00|1.0|9|NAD83|32.7167|-114.5675|1|0|0|B|01|Complete +54986|BLM|AZ|AZYUD|IMPERIAL||C721|3|7|10/01/1988 23:00||10/02/1988 00:00||||||||||01|Complete +54987|BLM|AZ|AZYUD|SOURDOUGH||C722|3|7|10/03/1988 09:00||10/03/1988 00:00||||||||||01|Complete +51021|BLM|AZ|AZYUD|TRAILER||C725|3|7|01/07/1989 00:00||01/07/1989 00:00||||||||||01|Complete +51022|BLM|AZ|AZYUD|GILA||C726|1|1|02/04/1989 00:44|02/04/1989 01:20|02/04/1989 10:05|2.5|2|NAD83|32.7167|-114.5508|1|0|5|B|01|Complete +51023|BLM|AZ|AZYUD|GILMORE||C727|1|5|02/05/1989 13:24|02/05/1989 15:54|02/06/1989 16:36|35.0|2|NAD83|33.2334|-114.6841|1|0|5|B|08|Complete +51024|BLM|AZ|AZYUD|STATE 1||C728|3|7|02/12/1989 00:00||02/12/1989 00:00||||||||||01|Complete +51025|BLM|AZ|AZYUD|MITTRY||C729|1|1|02/17/1989 16:13|02/17/1989 16:49|02/17/1989 17:14|0.1|9|NAD83|32.8167|-114.4674|1|0|0|B|01|Complete +51026|BLM|AZ|AZYUD|FWS 1||C730|3|7|02/18/1989 00:00||02/20/1989 00:00||||||||||01|Complete +51027|BLM|AZ|AZYUD|MORELOS||C731|1|1|02/19/1989 16:49|02/19/1989 18:20|02/19/1989 19:00|1.0|9|NAD83|32.7000|-114.7341|1|0|0|B|01|Complete +51028|BLM|AZ|AZYUD|ALIEN||C732|1|1|02/20/1989 09:51|02/20/1989 10:11|02/20/1989 12:30|0.5|9|NAD83|32.6834|-114.7341|1|0|0|B|01|Complete +51029|BLM|AZ|AZYUD|SAN LUIS||C733|1|1|03/09/1989 16:09|03/09/1989 16:46|03/09/1989 21:47|3.0|2|NAD83|32.5167|-114.8008|1|0|5|B|01|Complete +51030|BLM|AZ|AZYUD|OXBOW||C734|1|3|03/14/1989 15:10|03/14/1989 15:15|03/14/1989 16:30|0.1|2|NAD83|33.3834|-114.7175|1|0|0|B|01|Complete +51031|BLM|AZ|AZYUD|WINDSOR||C735|3|7|03/20/1989 00:00||03/20/1989 00:00||||||||||01|Complete +51032|BLM|AZ|AZYUD|COLES||C736|3|7|03/20/1989 00:00||03/20/1989 00:00||||||||||01|Complete +51033|BLM|AZ|AZYUD|FA 1||C737|5|1|03/20/1989 11:41|||||NAD83|33.4167|-114.7175|||||01|Complete +51034|BLM|AZ|AZYUD|CITY 1||C738|3|7|04/02/1989 00:00||04/02/1989 00:00||||||||||01|Complete +51035|BLM|AZ|AZYUD|DUNES||C739|3|7|04/12/1989 00:00||04/13/1989 00:00||||||||||01|Complete +51036|BLM|AZ|AZYUD|FIGUEROA||C740|1|1|04/13/1989 16:15|04/13/1989 16:35|04/14/1989 12:00|12.0|9|NAD83|32.7334|-114.6675|1|0|0|B|01|Complete +51037|BLM|AZ|AZYUD|VALDEZ||C741|3|7|04/22/1989 00:00||04/23/1989 00:00||||||||||01|Complete +51038|BLM|AZ|AZYUD|LAGUNA||C742|1|1|04/23/1989 09:45|04/23/1989 10:00|04/23/1989 12:00|0.3|2|NAD83|32.8334|-114.4841|1|0|0|B|01|Complete +51039|BLM|AZ|AZYUD|B CHURCH||C743|3|7|04/24/1989 00:00||04/24/1989 00:00||||||||||01|Complete +51040|BLM|AZ|AZYUD|SPORTSMANS||C744|1|1|05/02/1989 17:00|05/02/1989 17:00|05/02/1989 18:00|0.5|4|NAD83|34.2333|-114.2008|1|0|0|N|01|Complete +51041|BLM|AZ|AZYUD|BLAISDELL||C745|3|7|05/04/1989 00:00||05/04/1989 00:00||||||||||01|Complete +51042|BLM|AZ|AZYUD|COUNTY 10||C746|1|1|05/04/1989 17:25|05/04/1989 18:30|05/05/1989 11:20|3.0|9|NAD83|32.6834|-114.7341|1|0|7|B|01|Complete +51043|BLM|AZ|AZYUD|FWS 2||C747|3|7|05/05/1989 00:00||05/05/1989 00:00||||||||||01|Complete +51044|BLM|AZ|AZYUD|CROSSMAN||C748|1|1|05/14/1989 19:00|05/14/1989 21:45|05/15/1989 07:30|4.0|5|NAD83|34.5500|-114.2175|3|3|8|A|01|Complete +51045|BLM|AZ|AZYUD|CITY 2||C749|3|7|05/25/1989 00:00||||||||||||01|Complete +51046|BLM|AZ|AZYUD|FERGUSON||C750|1|6|05/28/1989 19:00|05/28/1989 20:30|06/01/1989 18:00|2560.0|9|NAD83|33.0000|-114.4841|1|0|0|A|04|Complete +51047|BLM|AZ|AZYUD|LAGUNA II||C751|1|1|05/29/1989 09:48|05/29/1989 10:43|06/01/1989 18:00|3352.0|9|NAD83|32.8500|-114.4674|1|0|0|A|01|Complete +51048|BLM|AZ|AZYUD|FA 2||C752|5|1|06/03/1989 19:45|||||NAD83|32.7167|-114.6008|||||01|Complete +51049|BLM|AZ|AZYUD|OASIS||C753|1|1|06/09/1989 21:30|06/09/1989 21:40|06/09/1989 21:50|0.1|9|NAD83|32.8834|-114.4508|1|0|0|B|01|Complete +51050|BLM|AZ|AZYUD|MORALOS 2||C754|1|1|06/14/1989 20:45|06/14/1989 21:00|06/15/1989 07:57|0.3|9|NAD83|32.7000|-114.7175|1|0|0|B|01|Complete +51051|BLM|AZ|AZYUD|CONFLUENCE||C755|1|1|06/14/1989 20:45|06/14/1989 21:35|06/15/1989 10:00|12.0|9|NAD83|32.7167|-114.5675|1|0|0|B|01|Complete +51052|BLM|AZ|AZYUD|FA 3||C756|5|1|06/22/1989 13:01|||||NAD83|34.6333|-114.4175|||||01|Complete +51057|BLM|AZ|AZYUD|TAKEOFF 5||C761|1|1|06/23/1989 10:05|06/23/1989 10:05|06/23/1989 10:15|0.1|8|NAD83|34.3000|-114.1341|1|1|1|A|01|Complete +51061|BLM|AZ|AZYUD|TAKEOFF 9||C765|2|1|06/23/1989 10:05||06/23/1989 10:05|0.1||NAD83|35.3000|-114.1341|||||01|Complete +51060|BLM|AZ|AZYUD|TAKEOFF 8||C764|2|1|06/23/1989 10:05||06/23/1989 10:05|0.1||NAD83|35.3000|-114.1341|||||01|Complete +51058|BLM|AZ|AZYUD|TAKEOFF 6||C762|2|1|06/23/1989 10:05||06/23/1989 10:05|0.1||NAD83|35.3000|-114.1341|||||01|Complete +51059|BLM|AZ|AZYUD|TAKEOFF 7||C763|2|1|06/23/1989 10:05||06/23/1989 10:05|0.1||NAD83|35.3000|-114.1341|||||01|Complete +51056|BLM|AZ|AZYUD|TAKE OFF 4||C760|2|1|06/23/1989 10:20||06/23/1989 10:20|0.1||NAD83|35.3000|-114.1341|||||01|Complete +51055|BLM|AZ|AZYUD|TAKE OFF 3||C759|2|1|06/23/1989 10:25||06/23/1989 10:25|0.1||NAD83|35.3000|-114.1341|||||01|Complete +51054|BLM|AZ|AZYUD|TAKEOFF 2||C758|2|1|06/23/1989 10:30||06/23/1989 10:30|0.1||NAD83|35.3000|-114.1341|||||01|Complete +51053|BLM|AZ|AZYUD|TAKEOFF 1||C757|2|1|06/23/1989 10:35||06/23/1989 10:35|0.1||NAD83|35.3000|-114.1341|||||01|Complete +51062|BLM|AZ|AZYUD|ROLL||C766|1|1|06/29/1989 19:15|06/29/1989 20:00|06/30/1989 17:00|60.0|9|NAD83|32.7167|-114.0341|1|0|0|B|01|Complete +51065|BLM|AZ|AZYUD|FA 5||C769|5|1|06/30/1989 10:00|||||NAD83|32.8334|-114.5008|||||01|Complete +51063|BLM|AZ|AZYUD|FA 4||C767|5|1|06/30/1989 14:10|||||NAD83|32.7500|-114.5841|||||01|Complete +51064|BLM|AZ|AZYUD|ISLAND||C768|1|1|06/30/1989 21:52|06/30/1989 22:30|07/01/1989 13:00|400.0|9|NAD83|32.9000|-114.5008|1|0|0|N|01|Complete +51066|BLM|AZ|AZYUD|BEACH||C770|1|1|07/04/1989 17:04|07/04/1989 17:18|07/06/1989 18:00|110.0|9|NAD83|32.7167|-114.5675|1|0|0|N|01|Complete +51067|BLM|AZ|AZYUD|RIVIERA||C771|1|1|07/05/1989 08:43|07/05/1989 10:14|07/05/1989 12:00|1.5|9|NAD83|35.1333|-114.6675|1|0|0|A|01|Complete +51068|BLM|AZ|AZYUD|CHIVA||C772|3|7|07/06/1989 00:00||||||||||||01|Complete +51069|BLM|AZ|AZYUD|BEACH 2||C773|1|1|07/08/1989 10:09|07/08/1989 10:26|07/08/1989 12:00|0.5|9|NAD83|32.7167|-114.5675|1|0|0|B|01|Complete +51070|BLM|AZ|AZYUD|PLANET||C774|1|6|07/09/1989 13:00|07/09/1989 15:29|07/13/1989 18:00|890.0|1|NAD83|34.2833|-114.0841|1|0|0|N|04|Complete +51071|BLM|AZ|AZYUD|FA 6||C775|5|1|07/18/1989 15:21|||||NAD83|32.7000|-114.5841|||||01|Complete +51072|BLM|AZ|AZYUD|CITY 3||C776|3|7|07/21/1989 00:00||07/21/1989 00:00||||||||||01|Complete +51073|BLM|AZ|AZYUD|FA 7||C777|5|1|07/26/1989 14:49|||||NAD83|32.7167|-114.5508|||||01|Complete +51074|BLM|AZ|AZYUD|PICACHO||C778|1|6|07/27/1989 22:00|07/28/1989 06:34|07/28/1989 11:30|1.0|1|NAD83|33.0334|-114.6508|1|0|0|N|07|Complete +51075|BLM|AZ|AZYUD|FA 8||C779|5|1|07/28/1989 18:00|||||NAD83|36.0000|-113.0008|||||01|Complete +51076|BLM|AZ|AZYUD|BEACH 3||C780|1|1|08/05/1989 05:49|08/05/1989 06:59|08/05/1989 18:00|4.0|9|NAD83|32.7167|-114.5675|1|0|0|N|01|Complete +51077|BLM|AZ|AZYUD|FA 9||C781|5|1|08/15/1989 10:00|||||NAD83|34.2500|-114.7175|||||01|Complete +51078|BLM|AZ|AZYUD|MORELOS 3||C782|1|1|08/23/1989 20:28|08/23/1989 21:45|08/24/1989 17:00|17.0|9|NAD83|32.7000|-114.7175|1|0|0|B|01|Complete +51079|BLM|AZ|AZYUD|FORTUNA||C783|1|1|08/26/1989 22:00|08/27/1989 00:01|08/27/1989 08:30|1.0|9|NAD83|32.7000|-114.4508|1|0|0|B|01|Complete +51080|BLM|AZ|AZYUD|R MILE 20||C784|1|1|08/28/1989 11:30|08/28/1989 11:54|08/28/1989 19:30|18.0|9|NAD83|32.6834|-114.7175|1|0|0|B|01|Complete +51081|BLM|AZ|AZYUD|FA 10||C785|5|1|09/08/1989 10:04|||||NAD83|32.7834|-113.8008|||||01|Complete +51082|BLM|AZ|AZYUD|FA 11||C786|5|1|09/20/1989 17:10|||||NAD83|33.2500|-114.7341|||||01|Complete +51083|BLM|AZ|AZYUD|BULLHEAD||C787|1|1|09/21/1989 13:00|09/21/1989 13:19|09/21/1989 15:00|5.0|8|NAD83|35.0833|-114.6175|1|0|0|B|01|Complete +51084|BLM|AZ|AZYUD|TRIGO II||C788|1|6|10/04/1989 17:01|10/04/1989 17:15|10/05/1989 11:00|0.5|9|NAD83|33.4167|-114.6341|1|0|0|B|07|Complete +51085|BLM|AZ|AZYUD|HAVASU||C789|1|6|10/06/1989 15:35|10/06/1989 15:45|10/06/1989 16:15|0.1|8|NAD83|34.4833|-114.3675|1|0|0|B|07|Complete +51086|BLM|AZ|AZYUD|E RANCH 5||C790|1|6|10/23/1989 16:00|10/23/1989 16:00|10/23/1989 19:05|2.0|9|NAD83|32.7334|-114.5841|1|0|0|B|02|Complete +51087|BLM|AZ|AZYUD|QUICK||C791|1|6|10/26/1989 22:30|10/26/1989 22:55|10/27/1989 03:00|2.0|4|NAD83|32.7500|-114.6841|1|0|0|B|02|Complete +51088|BLM|AZ|AZYUD|BETTYS||C792|1|1|11/03/1989 15:19|11/03/1989 15:48|11/03/1989 16:30|0.1|3|NAD83|32.8167|-114.4841|1|0|0|N|01|Complete +51089|BLM|AZ|AZYUD|TAYLOR||C793|1|6|11/03/1989 23:24|11/04/1989 23:58|11/08/1989 17:00|30.0|3|NAD83|33.0167|-114.6341|1|0|0|N|07|Complete +51090|BLM|AZ|AZYUD|BULLFROG||C794|1|1|11/22/1989 20:27|11/22/1989 20:36|11/22/1989 21:45|0.1|9|NAD83|34.2333|-114.1841|1|0|4|A|01|Complete +51091|BLM|AZ|AZYUD|TENINO||C795|3|7|11/29/1989 00:00||11/29/1989 00:00||||||||||01|Complete +51092|BLM|AZ|AZYUD|FA 12||C796|5|1|12/20/1989 16:50|||||NAD83|32.7167|-114.7175|||||01|Complete +51093|BLM|AZ|AZYUD|CABLE||C797|1|1|12/21/1989 16:12|12/21/1989 16:19|12/21/1989 16:35|0.1|4|NAD83|32.7000|-114.7175|1|0|0|N|01|Complete +46917|BLM|AZ|AZYUD|MCPHAUL||C798|1|1|01/05/1990 09:28|01/05/1990 10:15|01/05/1990 15:01|0.1|9|NAD83|32.7500|-114.4174|1|0|0|N|01|Complete +46919|BLM|AZ|AZYUD|FA 1||C800|5|1|01/10/1990 08:10|||||NAD83|32.7500|-114.5008|||||01|Complete +46918|BLM|AZ|AZYUD|OASIS||C799|1|1|01/14/1990 13:05|01/14/1990 13:29|01/15/1990 14:30|450.0|1|NAD83|32.9000|-114.4508|1|0|0|N|01|Complete +46920|BLM|AZ|AZYUD|COLES||C801|3|7|02/06/1990 00:00||||||||||||01|Complete +46921|BLM|AZ|AZYUD|FA 2||C802|5|1|02/07/1990 18:30|||||NAD83|32.8167|-114.5008|||||01|Complete +46922|BLM|AZ|AZYUD|DRAIN||C803|3|7|02/08/1990 00:00||||||||||||01|Complete +46923|BLM|AZ|AZYUD|FA 3||C804|5|6|02/14/1990 11:08|||||NAD83|32.7334|-114.7341|||||01|Complete +46924|BLM|AZ|AZYUD|OUTHOUSE||C805|3|7|02/15/1990 00:00||02/15/1990 00:00||||||||||01|Complete +46925|BLM|AZ|AZYUD|FA4||C806|5|1|02/21/1990 19:35|||||NAD83|32.7167|-114.6675|||||01|Complete +46926|BLM|AZ|AZYUD|COLEY||C807|3|7|02/23/1990 00:00||||||||||||01|Complete +46927|BLM|AZ|AZYUD|RIZZO||C808|1|6|02/24/1990 08:00|02/24/1990 09:00|02/24/1990 09:15|0.1|2|NAD83|34.5000|-114.2675|1|1|2|A|07|Complete +46928|BLM|AZ|AZYUD|PALO VERDE||C809|1|6|02/24/1990 09:30|02/24/1990 09:30|02/24/1990 09:45|0.1|2|NAD83|34.4833|-114.2675|1|1|6|A|07|Complete +46929|BLM|AZ|AZYUD|PALM WASH||C810|1|6|02/24/1990 09:45|02/24/1990 09:50|02/24/1990 10:00|0.1|2|NAD83|34.5000|-114.2341|1|1|6|A|07|Complete +46930|BLM|AZ|AZYUD|CITY 1||C811|3|7|03/04/1990 00:00||03/04/1990 00:00||||||||||01|Complete +46931|BLM|AZ|AZYUD|4TH AVE||C812|3|7|03/05/1990 00:00||03/05/1990 00:00||||||||||01|Complete +46932|BLM|AZ|AZYUD|FORD||C813|1|1|03/16/1990 02:12|03/16/1990 03:03|03/16/1990 10:30|7.0|2|NAD83|32.7000|-114.5508|1|0|0|N|01|Complete +46933|BLM|AZ|AZYUD|MOHAWK||C814|1|1|03/17/1990 18:45|03/17/1990 20:09|03/19/1990 12:00|85.0|4|NAD83|32.7834|-113.7508|1|0|0|B|01|Complete +46934|BLM|AZ|AZYUD|CITY 2||C815|3|7|03/20/1990 00:00||03/20/1990 00:00||||||||||01|Complete +46936|BLM|AZ|AZYUD|SCENIC||C817|1|3|03/21/1990 20:45|03/21/1990 20:49|03/21/1990 21:12|0.1|9|NAD83|34.3833|-114.1674|1|1|0|A|01|Complete +46935|BLM|AZ|AZYUD|CITY 3||C816|3|7|03/25/1990 00:00||03/26/1990 00:00||||||||||01|Complete +46937|BLM|AZ|AZYUD|INDIANLANE||C818|3|7|03/30/1990 00:00||04/01/1990 00:00||||||||||01|Complete +46938|BLM|AZ|AZYUD|CHESAPEAKE||C819|1|6|04/02/1990 06:30|04/02/1990 06:50|04/02/1990 07:30|0.1|4|NAD83|34.4667|-114.2341|1|1|0|A|07|Complete +46939|BLM|AZ|AZYUD|FA 5||C820|5|1|04/04/1990 10:54|||||NAD83|32.7167|-114.5675|||||01|Complete +46940|BLM|AZ|AZYUD|BASSPOINT||C821|1|1|04/10/1990 10:30|04/10/1990 10:30|04/10/1990 10:35|0.1|2|NAD83|34.2000|-114.2341|1|0|0|A|01|Complete +46941|BLM|AZ|AZYUD|PACIFIC||C822|1|1|04/14/1990 17:00|04/14/1990 18:45|04/15/1990 18:00|140.0|2|NAD83|32.7167|-114.5841|1|0|0|N|01|Complete +46942|BLM|AZ|AZYUD|STONE||C823|2|1|04/16/1990 13:30||04/16/1990 13:30|0.1||NAD83|33.3000|-114.2174|||||01|Complete +46943|BLM|AZ|AZYUD|ISLANDUNIT||C824|3|7|04/27/1990 00:00||04/28/1990 00:00||||||||||01|Complete +46944|BLM|AZ|AZYUD|HIDDENCOVE||C825|1|1|04/29/1990 23:30|04/29/1990 23:50|04/30/1990 16:00|20.0|9|NAD83|32.7334|-114.6508|1|0|0|N|01|Complete +46945|BLM|AZ|AZYUD|OUTHOUSE 2||C826|3|7|04/30/1990 00:00||05/01/1990 00:00||||||||||01|Complete +46946|BLM|AZ|AZYUD|FA 6||C827|5|1|05/03/1990 18:00|||||NAD83|33.6667|-114.0008|||||01|Complete +46947|BLM|AZ|AZYUD|FA 7||C828|5|1|05/17/1990 10:37|||||NAD83|32.6334|-114.7675|||||01|Complete +46948|BLM|AZ|AZYUD|TOPOCK||C829|3|7|05/22/1990 00:00||||||||||||01|Complete +46949|BLM|AZ|AZYUD|FA 8||C830|5|1|05/25/1990 17:00|||||NAD83|32.7167|-114.4008|||||01|Complete +46950|BLM|AZ|AZYUD|KIOWA||C831|1|6|05/26/1990 18:06|05/26/1990 18:09|05/27/1990 00:10|5.0|6|NAD83|34.5000|-114.3675|1|0|0|B|07|Complete +46951|BLM|AZ|AZYUD|KOOLKORNER||C832|1|6|05/26/1990 22:50|05/27/1990 00:05|05/27/1990 22:00|15.0|9|NAD83|32.7834|-114.5174|1|0|0|N|07|Complete +46952|BLM|AZ|AZYUD|AIRSTRIP||C833|3|7|05/27/1990 00:00||05/28/1990 00:00||||||||||01|Complete +46953|BLM|AZ|AZYUD|SENATOR||C834|1|1|05/27/1990 20:35|05/27/1990 21:40|05/27/1990 22:00|0.1|2|NAD83|32.9000|-114.4674|2|0|5|A|01|Complete +46954|BLM|AZ|AZYUD|FA 9||C835|5|1|05/29/1990 18:12|||||NAD83|32.7334|-113.7508|||||01|Complete +46955|BLM|AZ|AZYUD|RITE||C836|1|1|06/03/1990 14:21|06/03/1990 14:21|06/03/1990 14:45|0.1|2|NAD83|34.2167|-114.2008|1|0|0|A|01|Complete +46956|BLM|AZ|AZYUD|FA 10||C837|5|6|06/08/1990 11:00|||||NAD83|32.6167|-114.7841|||||01|Complete +46957|BLM|AZ|AZYUD|CITY 4||C838|3|7|06/12/1990 00:00||06/12/1990 00:00||||||||||01|Complete +46958|BLM|AZ|AZYUD|BEAL||C839|1|1|06/15/1990 07:25|06/15/1990 07:30|06/16/1990 13:00|20.0|2|NAD83|34.7833|-114.5675|1|0|0|B|01|Complete +46959|BLM|AZ|AZYUD|BORDER||C840|3|7|06/19/1990 00:00||06/20/1990 00:00||||||||||01|Complete +46960|BLM|AZ|AZYUD|FA11||C841|5|1|06/23/1990 15:00|||||NAD83|34.6167|-114.2508|||||01|Complete +46961|BLM|AZ|AZYUD|FA12||C842|5|6|06/24/1990 15:00|||||NAD83|33.0167|-114.5341|||||01|Complete +46962|BLM|AZ|AZYUD|4TH AVE 2||C843|3|7|07/02/1990 00:00||||||||||||01|Complete +46963|BLM|AZ|AZYUD|BODYBEACH||C844|1|6|07/04/1990 20:30|07/04/1990 20:35|07/04/1990 20:45|2.0|9|NAD83|34.4667|-114.3341|1|0|0|B|07|Complete +46964|BLM|AZ|AZYUD|HAMBURGER||C845|3|7|07/05/1990 00:00||07/05/1990 00:00||||||||||01|Complete +46965|BLM|AZ|AZYUD|FA13||C846|5|1|07/06/1990 11:45|||||NAD83|34.2500|-113.9174|||||01|Complete +46966|BLM|AZ|AZYUD|FA14||C847|5|6|07/07/1990 21:17|||||NAD83|32.7000|-114.7008|||||01|Complete +46967|BLM|AZ|AZYUD|FA15||C848|5|6|07/15/1990 18:57|||||NAD83|32.9834|-114.4841|||||01|Complete +46968|BLM|AZ|AZYUD|5 MILE||C849|1|1|07/26/1990 16:32|07/26/1990 16:40|07/26/1990 18:30|0.3|8|NAD83|34.8000|-114.5675|1|0|0|B|01|Complete +46969|BLM|AZ|AZYUD|PARADISE||C850|1|1|07/29/1990 18:46|07/29/1990 19:16|07/29/1990 19:30|0.1|9|NAD83|32.7167|-114.6508|1|0|0|B|01|Complete +46970|BLM|AZ|AZYUD|FIVE MILE2||C851|1|1|08/06/1990 15:43|08/06/1990 15:50|08/07/1990 16:00|5.0|1|NAD83|34.4500|-114.5675|1|0|0|B|01|Complete +46971|BLM|AZ|AZYUD|CHERRY||C852|1|6|09/09/1990 07:00|09/09/1990 07:45|09/09/1990 08:30|0.1|4|NAD83|34.5000|-114.2675|1|2|0|A|07|Complete +46972|BLM|AZ|AZYUD|BUSH||C853|1|6|09/09/1990 07:00|09/09/1990 07:30|09/09/1990 08:10|0.1|4|NAD83|34.5000|-114.2675|1|2|0|A|07|Complete +46973|BLM|AZ|AZYUD|B W DELTA||C854|3|7|09/18/1990 06:00|09/18/1990 07:00||540.0|1|NAD83|34.2833|-114.0674|1|0|0|B|04|Complete +46974|BLM|AZ|AZYUD|KOHEN||C855|1|6|09/19/1990 18:00|09/19/1990 18:05|09/21/1990 12:00|7.0|1|NAD83|34.2667|-114.0341|1|0|0|B|04|Complete +46975|BLM|AZ|AZYUD|OGRAM||C856|1|1|09/22/1990 16:37|09/22/1990 17:03|09/22/1990 17:48|0.1|4|NAD83|32.7167|-114.5841|1|0|0|B|01|Complete +46976|BLM|AZ|AZYUD|SAND POINT||C857|1|1|09/26/1990 20:30|09/26/1990 20:59|09/26/1990 21:10|1.0|4|NAD83|34.3500|-114.1674|1|0|0|B|01|Complete +46977|BLM|AZ|AZYUD|FA16||C858|5|1|09/29/1990 11:36|||||NAD83|32.7167|-114.7175|||||01|Complete +46978|BLM|AZ|AZYUD|PACIFIC 2||C859|1|1|10/01/1990 11:37|10/01/1990 11:54|10/01/1990 12:15|0.1|4|NAD83|32.7167|-114.5675|1|0|0|B|01|Complete +46979|BLM|AZ|AZYUD|NO MONEY||C860|3|7|10/07/1990 00:00|10/07/1990 00:00|10/07/1990 00:00||||||||||01|Complete +46980|BLM|AZ|AZYUD|FA 17||C861|5|1|10/29/1990 07:15|10/29/1990 10:00||||NAD83|34.5833|-114.2341|||||01|Complete +46981|BLM|AZ|AZYUD|SUNRISE||C862|2|1|10/29/1990 12:30||10/29/1990 13:20|0.1||NAD83|34.5500|-114.2175|||||01|Complete +46984|BLM|AZ|AZYUD|FALLS||C865|2|1|10/29/1990 13:00||10/29/1990 13:00|0.1||NAD83|34.5500|-114.2341|||||01|Complete +46983|BLM|AZ|AZYUD|SPRING||C864|2|1|10/29/1990 13:10||10/29/1990 13:10|0.1||NAD83|34.5500|-114.2341|||||01|Complete +46982|BLM|AZ|AZYUD|JEEP||C863|2|1|10/29/1990 13:20||10/29/1990 13:20|0.1||NAD83|34.5500|-114.2175|||||01|Complete +46985|BLM|AZ|AZYUD|FA 18||C866|5|1|11/10/1990 05:30||11/10/1990 06:00|||NAD83|33.6500|-114.2841|||||01|Complete +46987|BLM|AZ|AZYUD|PARKER D||C868|1|1|11/22/1990 18:00|11/22/1990 18:15|11/22/1990 18:30|0.1|2|NAD83|34.3000|-114.1341|1|0|0|B|01|Complete +46986|BLM|AZ|AZYUD|SORRY||C867|1|1|11/29/1990 15:00|11/29/1990 15:40|11/29/1990 16:15|0.1|4|NAD83|32.7167|-114.4674|1|0|0|B|01|Complete +46988|BLM|AZ|AZYUD|MITRY||C869|1|1|12/16/1990 18:00|12/16/1990 19:00|12/16/1990 20:30|0.3|2|NAD83|32.8167|-114.4674|1|0|0|B|01|Complete +46989|BLM|AZ|AZYUD|STANDARD||C870|2|1|12/19/1990 08:00||12/19/1990 08:00|0.1||NAD83|32.4001|-114.1841|||||01|Complete +46990|BLM|AZ|AZYUD|YULTIDE||C871|3|7|12/23/1990 00:00||12/24/1990 00:00||||||||||01|Complete +46991|BLM|AZ|AZYUD|MORELOS||C872|1|1|12/23/1990 18:00|12/23/1990 18:48|12/23/1990 23:59|4.0|2|NAD83|32.7001|-111.7340|1|0|0|B|01|Complete +46992|BLM|AZ|AZYUD|GILA||C873|1|1|12/30/1990 04:00|12/30/1990 07:01|12/30/1990 09:00|4.0|2|NAD83|32.7000|-114.5508|1|0|0|B|01|Complete +46993|BLM|AZ|AZYUD|DREDGE||C874|1|1|12/31/1990 12:01|12/31/1990 12:45|12/31/1990 15:15|1.0|2|NAD83|32.8334|-114.4674|1|0|0|B|01|Complete +42511|BLM|AZ|AZYUD|ABC MISC||C902|3|7|01/01/1991 00:00||||||||||||01|Complete +42484|BLM|AZ|AZYUD|BIA 1||C875|3|7|01/20/1991 00:00||01/20/1991 00:00|0.1|||||||||01|Complete +42485|BLM|AZ|AZYUD|COUNTY 9TH||C876|1|5|01/23/1991 19:00|01/23/1991 20:27|01/23/1991 20:36|0.1|4|NAD83|32.7000|-114.7341|1|0|0|B|08|Complete +42486|BLM|AZ|AZYUD|FIGUEROA||C877|1|1|01/29/1991 15:00|01/29/1991 15:30|01/30/1991 18:00|33.0|2|NAD83|32.7334|-114.5675|1|0|0|B|01|Complete +42488|BLM|AZ|AZYUD|CIBOLA||C879|3|7|02/02/1991 00:00||02/03/1991 00:00||||||||||01|Complete +42487|BLM|AZ|AZYUD|AVE 4E||C878|1|1|02/02/1991 08:57|02/02/1991 09:50|02/02/1991 17:30|4.0|8|NAD83|32.7167|-111.5507|1|0|0|B|01|Complete +42489|BLM|AZ|AZYUD|OXBOW||C880|1|1|02/04/1991 15:30|02/04/1991 17:30|02/06/1991 10:00|210.0|4|NAD83|32.4001|-114.7008|1|0|0|B|08|Complete +42494|BLM|AZ|AZYUD|FERGUSON||C885|1|1|02/10/1991 18:00|02/10/1991 19:15|02/10/1991 19:15|0.1|2|NAD83|32.9667|-114.5008|1|0|0|B|01|Complete +42490|BLM|AZ|AZYUD|MORELOS||C881|1|1|02/15/1991 21:50|02/15/1991 22:30|02/16/1991 01:00|0.3|2|NAD83|32.7000|-114.7175|1|0|0|B|01|Complete +42492|BLM|AZ|AZYUD|BIA 2||C883|3|7|02/16/1991 00:00||||||||||||01|Complete +42491|BLM|AZ|AZYUD|FA 1||C882|5|1|02/16/1991 17:00|02/16/1991 17:30||||NAD83|32.6834|-114.7175|||||01|Complete +42493|BLM|AZ|AZYUD|CABLE||C884|1|1|02/18/1991 14:11|02/18/1991 15:01|02/18/1991 17:00|0.5|2|NAD83|32.7167|-114.7175|1|0|0|B|01|Complete +42495|BLM|AZ|AZYUD|FARM||C886|3|7|02/21/1991 00:00||02/21/1991 00:00||||||||||01|Complete +42496|BLM|AZ|AZYUD|FOSTER||C887|3|7|02/21/1991 00:00||02/21/1991 00:00||||||||||01|Complete +42497|BLM|AZ|AZYUD|BIA 3||C888|3|7|03/09/1991 00:00||03/09/1991 00:00||||||||||01|Complete +42498|BLM|AZ|AZYUD|FA 2||C889|5|1|03/21/1991 18:45|03/21/1991 19:45||||NAD83|32.7500|-114.5841|||||01|Complete +42499|BLM|AZ|AZYUD|FA 3||C890|5|1|03/25/1991 18:30|03/25/1991 18:55||||NAD83|32.7334|-114.5508|||||01|Complete +42500|BLM|AZ|AZYUD|FA 4||C891|5|1|03/31/1991 03:30|03/31/1991 03:45||||NAD83|32.7000|-114.6008|||||01|Complete +42501|BLM|AZ|AZYUD|CITY 1||C892|3|7|04/02/1991 00:00||04/03/1991 00:00||||||||||01|Complete +42502|BLM|AZ|AZYUD|COUNTY 5TH||C893|1|1|04/03/1991 19:00|04/03/1991 19:56|04/04/1991 08:00|0.5|2|NAD83|32.8667|-114.8008|1|0|0|B|01|Complete +42503|BLM|AZ|AZYUD|YORK RD||C894|3|7|04/06/1991 00:00||04/07/1991 00:00||||||||||01|Complete +42504|BLM|AZ|AZYUD|PLANTATION||C895|1|1|04/09/1991 16:30|04/09/1991 16:45|04/11/1991 18:00|250.0|4|NAD83|34.8500|-114.5508|1|0|0|B|01|Complete +42505|BLM|AZ|AZYUD|TREE||C896|1|1|04/12/1991 12:45|04/12/1991 13:09|04/12/1991 13:20|0.1|2|NAD83|32.7167|-114.6841|1|0|0|B|01|Complete +42507|BLM|AZ|AZYUD|MINERAL W||C898|3|7|04/15/1991 00:00||04/17/1991 00:00||||||||||01|Complete +42506|BLM|AZ|AZYUD|A-7||C897|1|1|04/15/1991 09:00|04/15/1991 13:00|04/15/1991 16:00|20.0|2|NAD83|33.5667|-114.5341|1|0|0|N|01|Complete +42508|BLM|AZ|AZYUD|COORS||C899|1|1|04/21/1991 13:00|04/21/1991 13:35|04/21/1991 14:30|5.0|2|NAD83|32.9334|-114.4674|1|0|0|B|01|Complete +42509|BLM|AZ|AZYUD|MESQUITE||C900|3|7|04/26/1991 00:00||04/26/1991 00:00||||||||||01|Complete +42510|BLM|AZ|AZYUD|COUNTY 5TH||C901|3|7|05/08/1991 00:00||05/09/1991 00:00||||||||||01|Complete +42512|BLM|AZ|AZYUD|FERGUSON 2||C903|1|1|05/23/1991 21:30|05/23/1991 22:30|05/23/1991 23:59|0.1|2|NAD83|32.9834|-114.5008|1|0|0|N|01|Complete +42513|BLM|AZ|AZYUD|CIBOLA 2||C904|3|7|05/25/1991 00:00||05/25/1991 00:00||||||||||01|Complete +42514|BLM|AZ|AZYUD|BIA 4||C905|3|7|05/25/1991 00:00||05/25/1991 00:00||||||||||01|Complete +42515|BLM|AZ|AZYUD|N SHORE||C906|1|1|05/25/1991 19:30|05/25/1991 19:40|05/25/1991 19:56|0.1|2|NAD83|32.8834|-114.4674|1|0|0|B|01|Complete +42516|BLM|AZ|AZYUD|BIA 5||C907|3|7|05/26/1991 00:00||05/26/1991 00:00||||||||||01|Complete +42517|BLM|AZ|AZYUD|BIA 6||C908|3|7|05/26/1991 00:00||05/26/1991 00:00||||||||||01|Complete +42519|BLM|AZ|AZYUD|FA 5||C910|5|1|05/27/1991 10:00|05/27/1991 11:00||||NAD83|34.4167|-114.3008|||||01|Complete +42518|BLM|AZ|AZYUD|PACIFIC||C909|1|1|05/27/1991 20:00|05/27/1991 20:30|05/28/1991 18:00|20.0|4|NAD83|32.7167|-114.5675|1|0|0|B|01|Complete +42520|BLM|AZ|AZYUD|SWITCHBACK||C911|3|7|06/02/1991 00:00||06/02/1991 00:00||||||||||01|Complete +42521|BLM|AZ|AZYUD|BIA 7||C912|3|7|06/10/1991 00:00||06/11/1991 00:00||||||||||01|Complete +42522|BLM|AZ|AZYUD|JOE HENERY||C913|1|1|06/12/1991 10:45|06/12/1991 11:00|06/12/1991 11:15|0.1|2|NAD83|32.7334|-114.5675|1|0|0|B|01|Complete +42523|BLM|AZ|AZYUD|MILE 36||C914|1|1|06/19/1991 22:00|06/19/1991 23:10|06/20/1991 08:00|3.0|2|NAD83|32.7334|-114.5174|1|0|0|B|01|Complete +42524|BLM|AZ|AZYUD|FA 6||C915|5|1|06/22/1991 18:00|06/22/1991 20:15||||NAD83|32.7667|-113.8174|||||01|Complete +42525|BLM|AZ|AZYUD|STANDARD||C916|1|1|07/03/1991 13:30|07/03/1991 14:00|07/03/1991 14:15|0.1|6|NAD83|34.4167|-114.2008|1|0|0|A|01|Complete +42528|BLM|AZ|AZYUD|LH CITY||C919|3|7|07/04/1991 00:00||07/04/1991 00:00||||||||||01|Complete +42526|BLM|AZ|AZYUD|THREE MILE||C917|1|1|07/04/1991 21:20|07/04/1991 23:15|07/04/1991 23:30|0.1|9|NAD83|33.5167|-114.5508|1|0|0|B|01|Complete +42527|BLM|AZ|AZYUD|JOE HENRY2||C918|1|1|07/05/1991 00:35|07/05/1991 01:09|07/05/1991 01:31|0.1|2|NAD83|32.7000|-114.6175|1|0|0|A|01|Complete +42529|BLM|AZ|AZYUD|MITRY LAKE||C920|1|1|07/12/1991 01:07|07/12/1991 01:42|07/12/1991 03:30|0.1|9|NAD83|32.8167|-114.4508|1|0|0|B|01|Complete +42530|BLM|AZ|AZYUD|ELCAMPO||C921|1|1|07/14/1991 13:30|07/14/1991 13:30|07/14/1991 13:30|0.1|2|NAD83|34.4833|-114.1675|1|2|4|A|01|Complete +42531|BLM|AZ|AZYUD|KITCHEN||C922|1|1|07/26/1991 08:30|07/26/1991 09:35|07/26/1991 09:35|0.1|4|NAD83|32.8167|-114.3674|1|0|0|A|01|Complete +42532|BLM|AZ|AZYUD|FORTUNA||C923|3|7|07/26/1991 20:24||||||||||||01|Complete +42533|BLM|AZ|AZYUD|FA 7||C924|5|1|08/09/1991 16:17|08/09/1991 16:30||||NAD83|32.7167|-114.6675|||||01|Complete +42535|BLM|AZ|AZYUD|LOST||C926|1|1|08/18/1991 00:30|08/18/1991 03:00|08/18/1991 03:30|0.1|4|NAD83|33.9334|-114.5341|1|0|0|B|01|Complete +42534|BLM|AZ|AZYUD|FA 8||C925|5|1|08/18/1991 11:30|08/18/1991 11:45||||NAD83|32.9000|-114.4674|||||01|Complete +42536|BLM|AZ|AZYUD|VELMA||C927|3|7|08/21/1991 14:00||||||||||||01|Complete +42537|BLM|AZ|AZYUD|LAGUNA DAM||C928|3|7|09/01/1991 07:20||||||||||||01|Complete +42538|BLM|AZ|AZYUD|BIA 8||C929|3|7|09/04/1991 19:30||||||||||||01|Complete +42539|BLM|AZ|AZYUD|HAMBURGER||C930|1|1|09/07/1991 14:47|09/07/1991 17:00|09/08/1991 12:00|0.5|5|NAD83|32.2167|-114.5508|1|0|0|B|01|Complete +42540|BLM|AZ|AZYUD|BULLFROG||C931|1|1|09/08/1991 06:00|09/08/1991 06:09|09/08/1991 06:19|0.1|2|NAD83|34.2333|-114.1841|1|0|0|B|01|Complete +42543|BLM|AZ|AZYUD|RIVERVIEW||C934|1|1|09/26/1991 19:30|09/26/1991 19:35|09/26/1991 20:02|0.1|2|NAD83|34.2000|-114.2174|1|0|7|B|01|Complete +42541|BLM|AZ|AZYUD|BLANKNSHIP||C932|3|7|09/26/1991 23:00||||||||||||01|Complete +42542|BLM|AZ|AZYUD|TEXAS||C933|1|1|09/27/1991 03:30|09/27/1991 07:00|09/27/1991 17:00|0.5|1|NAD83|32.7834|-113.7341|1|0|0|B|01|Complete +42544|BLM|AZ|AZYUD|PICACHO||C935|3|7|10/21/1991 16:50||||||||||||01|Complete +42545|BLM|AZ|AZYUD|MORELOS 2||C936|1|1|10/28/1991 19:39|10/29/1991 20:33|10/30/1991 01:00|0.7|2|NAD83|32.7000|-114.7341|1|0|0|B|01|Complete +42548|BLM|AZ|AZYUD|CABLE CAR||C939|3|7|10/30/1991 09:49||||||||||||01|Complete +42549|BLM|AZ|AZYUD|COLE CORNE||C940|3|7|10/30/1991 13:17||||||||||||01|Complete +42546|BLM|AZ|AZYUD|FLYING J||C937|1|1|11/01/1991 15:38|11/01/1991 15:58|11/01/1991 20:30|0.3|4|NAD83|33.5667|-114.5341|1|0|0|B|01|Complete +42547|BLM|AZ|AZYUD|SORRYVILLE||C938|1|1|11/03/1991 16:03|11/03/1991 16:53|11/03/1991 17:58|0.1|5|NAD83|32.7167|-114.4508|1|0|0|B|01|Complete +42550|BLM|AZ|AZYUD|GILA||C941|1|1|11/24/1991 15:05|11/24/1991 16:00|11/24/1991 18:00|0.5|4|NAD83|32.7000|-114.5341|1|0|0|B|01|Complete +42551|BLM|AZ|AZYUD|MILE 20||C942|1|1|11/26/1991 05:30|11/26/1991 06:30|11/26/1991 14:30|6.0|4|NAD83|32.6667|-114.7341|1|0|0|B|01|Complete +42552|BLM|AZ|AZYUD|MILE 20-2||C943|1|1|11/28/1991 11:30|11/28/1991 12:00|11/28/1991 15:00|0.1|2|NAD83|32.6667|-114.7341|1|0|0|B|01|Complete +42553|BLM|AZ|AZYUD|YUMA LAKE||C944|1|1|12/01/1991 00:21|12/01/1991 00:45|12/01/1991 01:14|0.2|2|NAD83|32.7500|-114.4841|1|0|0|B|01|Complete +42554|BLM|AZ|AZYUD|FA 9||C945|5|1|12/30/1991 22:35|12/30/1991 23:10||||NAD83|32.7500|-113.8674|||||01|Complete +36989|BLM|AZ|AZYUD|ABC MISC||C958|3|7|01/01/1992 00:00||||||||||||01|Complete +36977|BLM|AZ|AZYUD|IMPERIAL||C946|1|1|01/02/1992 22:55|01/02/1992 22:58|01/02/1992 23:59|0.1|9|NAD83|32.8834|-114.4508|1|0|0|B|01|Complete +36978|BLM|AZ|AZYUD|BIA 1||C947|3|7|01/10/1992 00:00||01/10/1992 00:00||||||||||01|Complete +36979|BLM|AZ|AZYUD|BIA 2||C948|3|7|01/10/1992 00:00||||||||||||01|Complete +36980|BLM|AZ|AZYUD|HNWR 1||C949|3|7|01/11/1992 00:00||||||||||||01|Complete +36981|BLM|AZ|AZYUD|IMR 1||C950|3|7|01/12/1992 00:00||||||||||||01|Complete +36982|BLM|AZ|AZYUD|GADSDEN||C951|1|1|01/22/1992 08:15|01/22/1992 10:26|01/22/1992 10:26|0.1|4|NAD83|32.5501|-114.8008|1|0|0|B|01|Complete +36983|BLM|AZ|AZYUD|BIA 3||C952|3|7|01/29/1992 00:00||||||||||||01|Complete +36984|BLM|AZ|AZYUD|BOR 1||C953|1|1|02/01/1992 16:30|02/01/1992 16:45|02/01/1992 17:30|0.1|2|NAD83|32.7000|-114.7341|1|0|0|B|01|Complete +36985|BLM|AZ|AZYUD|LHC 1||C954|3|7|02/14/1992 00:00||||||||||||01|Complete +36986|BLM|AZ|AZYUD|BIA 4||C955|3|7|02/25/1992 00:00||||||||||||01|Complete +36987|BLM|AZ|AZYUD|FA 1||C956|5|1|03/13/1992 16:30|03/13/1992 16:30||||NAD83|34.5500|-114.1174|||||01|Complete +36988|BLM|AZ|AZYUD|WALTERS||C957|1|1|03/18/1992 15:32|03/18/1992 16:30|03/21/1992 12:00|1800.0|4|NAD83|33.2334|-114.7008|1|0|0|B|01|Complete +36990|BLM|AZ|AZYUD|GILA P||C959|1|1|04/02/1992 23:40|04/03/1992 00:44|04/03/1992 16:00|0.1|4|NAD83|32.7000|-114.5508|1|0|0|A|01|Complete +36918|BLM|AZ|AZYUD|PALLET 3||C721|1|1|04/05/1992 04:00|04/05/1992 04:33|04/05/1992 12:00|0.1|4|NAD83|32.7000|-114.5508|1|0|0|A|01|Complete +36991|BLM|AZ|AZYUD|PALLET 2||C960|1|1|04/05/1992 19:15|04/05/1992 19:40|04/05/1992 22:00|0.1|4|NAD83|32.7000|-114.5508|1|0|0|A|01|Complete +36919|BLM|AZ|AZYUD|CA CHNL||C722|1|1|04/18/1992 18:00|04/18/1992 20:00|04/18/1992 21:00|2.0|2|NAD83|32.9334|-114.4674|1|0|0|B|01|Complete +36920|BLM|AZ|AZYUD|CA CHNL 2||C723|1|1|04/19/1992 12:00|04/19/1992 12:40|04/20/1992 08:00|1285.0|9|NAD83|32.9500|-114.4674|1|0|0|B|01|Complete +36921|BLM|AZ|AZYUD|SECTION 30||C724|3|7|04/20/1992 00:00||||||||||||01|Complete +36922|BLM|AZ|AZYUD|MITTRY||C725|1|1|04/22/1992 20:00|04/22/1992 20:53|04/22/1992 23:30|1.0|2|NAD83|32.8167|-114.4674|1|0|0|B|01|Complete +36923|BLM|AZ|AZYUD|BIA 5||C726|3|7|04/29/1992 00:00||||||||||||01|Complete +36924|BLM|AZ|AZYUD|BIA 6||C727|3|7|05/01/1992 00:00||||||||||||01|Complete +36925|BLM|AZ|AZYUD|BIA 7||C728|3|7|05/09/1992 00:00||||||||||||01|Complete +36926|BLM|AZ|AZYUD|CITY 1||C729|3|7|05/12/1992 00:00||||||||||||01|Complete +36927|BLM|AZ|AZYUD|SALOME 1||C730|3|7|05/14/1992 00:00||||||||||||01|Complete +36928|BLM|AZ|AZYUD|BIA 8||C731|3|7|05/15/1992 00:00||||||||||||01|Complete +36938|BLM|AZ|AZYUD|CFIRE 1||C741|1|1|05/23/1992 13:30|05/23/1992 13:30|05/23/1992 13:31|0.1|2|NAD83|34.2333|-114.1841|1|0|0|A|01|Complete +36929|BLM|AZ|AZYUD|FA 2||C732|5|1|05/25/1992 13:00|05/25/1992 13:20||||NAD83|32.7167|-114.4508|||||01|Complete +36930|BLM|AZ|AZYUD|FA 3||C733|5|1|05/25/1992 18:00|05/25/1992 18:15||||NAD83|32.3667|-114.7341|||||01|Complete +36939|BLM|AZ|AZYUD|CFIRE 2||C742|1|1|05/27/1992 14:30|05/27/1992 14:30|05/27/1992 14:31|0.1|2|NAD83|34.3000|-114.1341|1|0|0|A|01|Complete +36940|BLM|AZ|AZYUD|CFIRE 3||C743|1|1|05/29/1992 09:45|05/29/1992 09:45|05/29/1992 09:47|0.1|2|NAD83|34.3833|-114.2508|1|0|0|A|01|Complete +36931|BLM|AZ|AZYUD|FA 4||C734|5|1|05/30/1992 09:45|05/30/1992 00:00||||NAD83|32.7167|-114.3008|||||01|Complete +36932|BLM|AZ|AZYUD|HENRY||C735|1|1|06/03/1992 20:00|06/03/1992 20:50|06/04/1992 10:00|15.0|2|NAD83|32.7334|-114.6675|1|0|0|B|01|Complete +36933|BLM|AZ|AZYUD|GILA||C736|1|1|06/05/1992 02:30|06/05/1992 03:30|06/05/1992 05:00|1.0|2|NAD83|32.7167|-114.5508|1|0|0|B|01|Complete +36934|BLM|AZ|AZYUD|FA 5||C737|5|1|06/05/1992 11:30|06/05/1992 00:00||||NAD83|32.8000|-114.5008|||||01|Complete +36935|BLM|AZ|AZYUD|FA 6||C738|5|1|06/06/1992 15:04|06/06/1992 00:00||||NAD83|32.7167|-114.5675|||||01|Complete +36943|BLM|AZ|AZYUD|CFIRE 5||C746|1|1|06/06/1992 22:30|06/06/1992 22:30|06/06/1992 22:33|0.1|2|NAD83|35.0500|-114.6175|1|0|0|A|01|Complete +36942|BLM|AZ|AZYUD|CROSSROADS||C745|1|1|06/11/1992 10:15|06/11/1992 10:17|06/11/1992 10:17|0.1|3|NAD83|34.2167|-114.2174|1|0|0|A|01|Complete +36936|BLM|AZ|AZYUD|CITY 2||C739|3|7|06/16/1992 00:00||||||||||||01|Complete +36937|BLM|AZ|AZYUD|BIA 9||C740|3|7|06/17/1992 00:00||||||||||||01|Complete +36941|BLM|AZ|AZYUD|CFIRE 4||C744|1|1|06/17/1992 12:00|06/17/1992 12:00|06/17/1992 12:02|0.1|2|NAD83|34.7500|-114.5341|1|0|0|A|01|Complete +36944|BLM|AZ|AZYUD|RIVERVIEW||C747|1|1|06/20/1992 12:45|06/20/1992 12:45|06/20/1992 12:47|0.1|2|NAD83|34.2167|-114.2174|1|0|0|A|01|Complete +36945|BLM|AZ|AZYUD|BIA 10||C748|3|7|06/23/1992 00:00||||||||||||01|Complete +36946|BLM|AZ|AZYUD|BIA 11||C749|3|7|06/26/1992 00:00||||||||||||01|Complete +36947|BLM|AZ|AZYUD|BIA 12||C750|3|7|06/28/1992 00:00||||||||||||01|Complete +36948|BLM|AZ|AZYUD|BIA 13||C751|3|7|07/01/1992 00:00||||||||||||01|Complete +36949|BLM|AZ|AZYUD|RIVER||C752|3|7|07/02/1992 00:00||||||||||||01|Complete +36950|BLM|AZ|AZYUD|FA 7||C753|5|5|07/02/1992 19:33|07/02/1992 19:33||||NAD83|34.4000|-114.2841|||||01|Complete +36951|BLM|AZ|AZYUD|BIA 14||C754|3|7|07/03/1992 20:53||||||||||||01|Complete +36952|BLM|AZ|AZYUD|BIA 15||C755|3|7|07/04/1992 00:00||||||||||||01|Complete +36953|BLM|AZ|AZYUD|RED ROCK||C756|3|7|07/04/1992 00:00||||||||||||01|Complete +36954|BLM|AZ|AZYUD|SAND||C757|1|3|07/16/1992 04:37|07/16/1992 04:37|07/16/1992 05:25|0.1|2|NAD83|34.8333|-114.5675|1|0|0|A|01|Complete +36955|BLM|AZ|AZYUD|BOUSE 1||C758|3|7|07/17/1992 00:00|07/17/1992 00:00|||||||||||01|Complete +36956|BLM|AZ|AZYUD|FA 8||C759|5|5|07/17/1992 22:59|07/17/1992 00:00||||NAD83|33.5000|-114.6841|||||01|Complete +36957|BLM|AZ|AZYUD|BOUSE 2||C760|3|7|07/18/1992 20:00|07/18/1992 00:00|||||||||||01|Complete +36958|BLM|AZ|AZYUD|IMC 1||C761|3|7|07/22/1992 00:00|07/22/1992 00:00|||||||||||01|Complete +36959|BLM|AZ|AZYUD|BOUSE 3||C762|3|7|07/22/1992 17:00||07/22/1992 19:17||||||||||01|Complete +36960|BLM|AZ|AZYUD|BIA 16||C763|3|7|08/01/1992 00:00||08/01/1992 00:00||||||||||01|Complete +36961|BLM|AZ|AZYUD|FALLS||C764|2|1|08/08/1992 14:00||08/08/1992 00:00|0.5||NAD83|34.5333|-114.2341|||||01|Complete +36962|BLM|AZ|AZYUD|PACIFIC||C765|3|7|08/09/1992 00:00||||||||||||01|Complete +36963|BLM|AZ|AZYUD|ALAMO||C766|1|1|08/16/1992 15:23|08/16/1992 15:46|08/17/1992 19:00|100.0|1|NAD83|34.1500|-113.3008|1|2|0|A|01|Complete +36964|BLM|AZ|AZYUD|FALLS 2||C767|2|1|08/18/1992 11:00||08/18/1992 00:00|0.1||NAD83|34.5333|-114.2341|||||01|Complete +36965|BLM|AZ|AZYUD|CIBOLA 1||C768|1|1|08/29/1992 20:20|08/29/1992 20:20|08/29/1992 22:30|0.1|4|NAD83|33.4000|-114.6675|1|1|0|B|01|Complete +36966|BLM|AZ|AZYUD|BULLHEAD 1||C769|1|1|08/31/1992 10:15|08/31/1992 12:00|08/31/1992 18:00|3.0|1|NAD83|35.0333|-114.6175|1|0|0|A|01|Complete +36967|BLM|AZ|AZYUD|CROSSMAN||C770|1|1|09/04/1992 16:33|09/04/1992 16:45|09/04/1992 19:30|30.0|9|NAD83|34.5333|-114.2341|1|0|0|N|01|Complete +36968|BLM|AZ|AZYUD|HUNTER 2||C771|3|7|09/05/1992 00:00||09/05/1992 00:00|5.0|||||||||01|Complete +36969|BLM|AZ|AZYUD|BASELINE||C772|3|7|09/18/1992 00:00||||||||||||01|Complete +36970|BLM|AZ|AZYUD|PRISON||C773|3|7|09/18/1992 00:00||||||||||||01|Complete +36971|BLM|AZ|AZYUD|WELLTON||C774|1|1|09/21/1992 15:50|09/21/1992 15:50|09/22/1992 15:00|2.2|4|NAD83|32.7000|-114.1341|1|0|0|A|01|Complete +36972|BLM|AZ|AZYUD|CITY 3||C775|3|7|09/25/1992 00:00||||||||||||01|Complete +36973|BLM|AZ|AZYUD|MITTRY 2||C776|1|1|09/26/1992 02:06|09/26/1992 02:06|09/26/1992 07:02|1.0|9|NAD83|32.8167|-114.4674|1|0|0|A|01|Complete +36974|BLM|AZ|AZYUD|FA 9||C777|5|1|09/26/1992 16:10|09/26/1992 00:00||||NAD83|32.9000|-114.5008|||||01|Complete +36975|BLM|AZ|AZYUD|PARADISE||C778|1|1|11/13/1992 01:00|11/13/1992 01:06|11/13/1992 01:45|0.1|4|NAD83|32.7334|-114.6675|1|0|0|B|01|Complete +36976|BLM|AZ|AZYUD|ANDRADE||C779|3|7|11/29/1992 00:00||||||||||||01|Complete +33157|BLM|AZ|AZYUD|ZONE ASST||C780|3|7|01/01/1993 00:00||||||||||||01|Complete +33158|BLM|AZ|AZYUD|PACIFIC||C781|1|1|01/22/1993 12:00|01/22/1993 12:27|01/22/1993 12:45|0.1|4|NAD83|32.7167|-114.5008|1|0|0|A|01|Complete +33159|BLM|AZ|AZYUD|FA 1||C782|5|5|01/26/1993 15:54|01/26/1993 16:03||||NAD83|32.7167|-114.5841|||||01|Complete +33160|BLM|AZ|AZYUD|FA 2||C783|5|5|02/05/1993 20:56|02/05/1993 21:05||||NAD83|32.7000|-114.7175|||||01|Complete +33161|BLM|AZ|AZYUD|LEVEE 1||C784|3|7|02/24/1993 00:00||02/24/1993 00:00||||||||||01|Complete +33162|BLM|AZ|AZYUD|FA 3||C785|5|5|02/26/1993 14:51|02/26/1993 14:51||||NAD83|32.7334|-114.5174|||||01|Complete +33163|BLM|AZ|AZYUD|BIA 2||C786|3|7|03/11/1993 15:30||03/12/1993 16:00||||||||||01|Complete +33164|BLM|AZ|AZYUD|FA 4||C787|5|5|03/21/1993 11:01|03/21/1993 00:00||||NAD83|32.5001|-114.8008|||||01|Complete +33165|BLM|AZ|AZYUD|FA 5||C788|5|1|03/29/1993 14:15|03/29/1993 00:00||||NAD83|32.7167|-114.6008|||||01|Complete +33166|BLM|AZ|AZYUD|SQUAW LK||C789|1|1|04/01/1993 16:25|04/01/1993 16:25|04/01/1993 17:05|0.5|4|NAD83|32.1501|-114.5508|1|0|0|A|01|Complete +33167|BLM|AZ|AZYUD|HIPPIE||C790|1|5|04/11/1993 10:59|04/11/1993 11:18|04/11/1993 18:00|1.0|5|NAD83|33.3834|-114.7008|1|0|0|B|08|Complete +33168|BLM|AZ|AZYUD|BOUSE 1||C791|1|5|04/19/1993 14:15|04/19/1993 14:30|04/19/1993 22:00|10.0|4|NAD83|33.9000|-113.9841|1|0|0|A|08|Complete +33169|BLM|AZ|AZYUD|AG STATION||C792|1|1|04/22/1993 15:30|04/22/1993 15:30|04/22/1993 16:00|0.4|9|NAD83|34.7167|-114.5175|1|1|0|A|01|Complete +33170|BLM|AZ|AZYUD|NEEDLES HS||C793|3|7|04/22/1993 17:00|04/22/1993 17:00||||NAD83|34.8333|-114.6175|||||01|Complete +33171|BLM|AZ|AZYUD|I10 MP31 5||C794|1|1|04/24/1993 15:30|04/24/1993 15:30|04/24/1993 19:30|3.0|9|NAD83|33.6500|-114.0174|1|1|0|A|01|Complete +33172|BLM|AZ|AZYUD|HWY95MP237||C795|3|7|04/27/1993 00:00||04/27/1993 00:00||||||||||01|Complete +33173|BLM|AZ|AZYUD|FA 6||C796|5|5|04/30/1993 18:34|04/30/1993 00:00||||NAD83|34.3833|-114.2675|||||01|Complete +33174|BLM|AZ|AZYUD|HAV FALLS||C797|1|1|05/01/1993 08:00|05/01/1993 09:10|05/01/1993 10:30|0.1|2|NAD83|34.5333|-114.2175|1|1|0|A|01|Complete +33175|BLM|AZ|AZYUD|ICE HOUSE||C798|1|1|05/03/1993 11:15|05/03/1993 11:15|05/05/1993 08:00|300.0|2|NAD83|34.8167|-114.5675|1|0|0|B|08|Complete +33176|BLM|AZ|AZYUD|I10 MP15 9||C799|1|1|05/09/1993 14:50|05/09/1993 15:00|05/09/1993 16:00|0.1|9|NAD83|33.6500|-114.2674|1|0|0|A|01|Complete +33177|BLM|AZ|AZYUD|HYDER||C800|1|5|05/09/1993 15:13|05/09/1993 15:13|05/10/1993 18:00|20.0|9|NAD83|33.0667|-114.2674|1|0|0|A|07|Complete +33178|BLM|AZ|AZYUD|I10 MP32 5||C801|1|1|05/10/1993 15:50|05/10/1993 16:16|05/10/1993 16:30|0.1|9|NAD83|33.6500|-113.9841|1|0|0|A|01|Complete +33179|BLM|AZ|AZYUD|BULLHEAD||C802|1|1|05/11/1993 15:18|05/11/1993 17:00|05/11/1993 21:00|4.5|9|NAD83|35.1500|-114.5675|1|0|0|A|01|Complete +33180|BLM|AZ|AZYUD|PICACHO||C803|1|1|05/14/1993 17:05|05/14/1993 18:48|05/15/1993 15:00|480.0|1|NAD83|33.0334|-114.6341|1|0|0|N|01|Complete +33181|BLM|AZ|AZYUD|FRANCONIA||C804|1|1|05/14/1993 20:02|05/14/1993 22:00|05/16/1993 14:00|400.0|1|NAD83|34.5333|-114.0508|2|4|4|A|01|Complete +33182|BLM|AZ|AZYUD|45 E||C805|1|1|05/15/1993 12:00|05/15/1993 12:00|05/15/1993 13:30|0.1|9|NAD83|32.7000|-113.8508|1|0|0|A|01|Complete +33183|BLM|AZ|AZYUD|I40 MP7||C806|1|5|05/18/1993 19:10|05/19/1993 18:56|05/19/1993 20:39|0.1|1|NAD83|34.7333|-114.3508|1|0|0|A|08|Complete +33184|BLM|AZ|AZYUD|FA 7||C807|5|5|05/20/1993 19:10|05/20/1993 19:10||||NAD83|34.3500|-114.1508|||||01|Complete +33185|BLM|AZ|AZYUD|PINTAIL||C808|3|7|05/20/1993 21:50|05/20/1993 21:50|05/21/1993 00:00||||||||||01|Complete +33186|BLM|AZ|AZYUD|PICACHO 2||C809|1|5|05/21/1993 09:00|05/21/1993 09:10|05/21/1993 10:00|0.1|9|NAD83|33.0334|-114.6341|1|0|0|B|07|Complete +33187|BLM|AZ|AZYUD|FWS 1||C811|3|7|05/25/1993 00:00|05/25/1993 00:00|05/25/1993 00:00||||||||||01|Complete +33188|BLM|AZ|AZYUD|HIDDEN SHR||C812|1|1|05/28/1993 22:19|05/28/1993 23:05|05/29/1993 01:00|5.0|9|NAD83|32.8834|-114.4508|1|0|0|N|01|Complete +33189|BLM|AZ|AZYUD|SECTION 30||C813|1|1|05/29/1993 12:34|05/29/1993 13:30|05/30/1993 13:00|40.0|9|NAD83|35.0833|-114.6175|1|1|0|B|01|Complete +33190|BLM|AZ|AZYUD|FA 8||C814|5|1|06/02/1993 14:43|06/02/1993 00:00||||NAD83|34.7000|-114.4675|||||01|Complete +33191|BLM|AZ|AZYUD|MITTRY 1||C815|1|1|06/08/1993 14:51|06/08/1993 15:00|06/08/1993 16:30|0.5|9|NAD83|32.8167|-114.4841|1|0|0|N|01|Complete +33192|BLM|AZ|AZYUD|VICKSBURG||C816|3|7|06/13/1993 07:17||06/13/1993 08:50|0.2|||||||||01|Complete +33193|BLM|AZ|AZYUD|MOABI||C817|1|1|06/15/1993 13:57|06/15/1993 15:00|06/15/1993 17:00|4.0|9|NAD83|34.7000|-114.4841|1|0|0|A|01|Complete +33194|BLM|AZ|AZYUD|LONE MTN||C818|1|5|06/19/1993 16:35|06/19/1993 16:35|06/20/1993 08:00|70.0|9|NAD83|33.7167|-113.5174|1|0|0|A|07|Complete +33195|BLM|AZ|AZYUD|I-8 MP82||C819|1|1|06/20/1993 21:00|06/20/1993 22:30|06/20/1993 23:30|0.1|9|NAD83|32.7167|-113.7508|1|0|0|A|01|Complete +33197|BLM|AZ|AZYUD|ROWELL||C821|1|1|06/21/1993 17:30|06/21/1993 17:30|06/21/1993 17:30|0.1|4|NAD83|33.4000|-114.6675|1|0|0|A|01|Complete +33196|BLM|AZ|AZYUD|WHITE WING||C820|2|1|06/23/1993 08:30||06/23/1993 00:00|125.0||NAD83|32.9500|-113.5341|||||01|Complete +33198|BLM|AZ|AZYUD|MOHAVE||C822|3|7|06/28/1993 00:00||06/29/1993 00:00||||||||||01|Complete +33199|BLM|AZ|AZYUD|ISLAND||C823|1|1|07/04/1993 16:20|07/04/1993 16:20|07/04/1993 21:00|2.0|9|NAD83|32.9667|-114.4674|1|0|0|B|01|Complete +33200|BLM|AZ|AZYUD|BASS PT 1||C824|1|1|07/04/1993 21:12|07/04/1993 21:22|07/04/1993 23:00|0.5|9|NAD83|34.2000|-114.2174|1|0|0|B|01|Complete +33201|BLM|AZ|AZYUD|BASS PT 2||C825|1|1|07/04/1993 21:12|07/04/1993 21:12|07/04/1993 23:00|0.1|9|NAD83|34.2000|-114.2174|1|0|0|B|01|Complete +33202|BLM|AZ|AZYUD|FA 9||C826|5|1|07/05/1993 10:30|07/05/1993 00:00||||NAD83|34.3500|-114.1674|||||01|Complete +33203|BLM|AZ|AZYUD|FA 10||C827|5|1|07/07/1993 11:50|07/07/1993 00:00||||NAD83|32.9500|-113.5007|||||01|Complete +33204|BLM|AZ|AZYUD|FWS 2||C828|3|7|07/14/1993 00:00|07/14/1993 00:00|||||||||||01|Complete +33205|BLM|AZ|AZYUD|BIA 2||C829|3|7|07/15/1993 00:00|07/15/1993 00:00|||||||||||01|Complete +33206|BLM|AZ|AZYUD|FA 11||C830|5|5|07/22/1993 11:00|07/22/1993 00:00||||NAD83|34.7167|-114.4175|||||01|Complete +33207|BLM|AZ|AZYUD|CTY 5TH||C831|3|7|07/23/1993 00:00||||||||||||01|Complete +33208|BLM|AZ|AZYUD|FA 12||C832|5|1|07/31/1993 06:30|07/31/1993 07:15||||NAD83|32.1501|-109.9173|||||01|Complete +33209|BLM|AZ|AZYUD|FWS 3||C833|3|7|08/02/1993 00:00||||||||||||01|Complete +33210|BLM|AZ|AZYUD|RAM MTN||C834|1|1|08/06/1993 21:00|08/06/1993 21:30|08/06/1993 22:00||1|NAD83|34.6167|-114.2508|1|1|0|A|01|Complete +33211|BLM|AZ|AZYUD|FEEDLOT||C835|3|7|08/12/1993 00:00||||||||||||01|Complete +33212|BLM|AZ|AZYUD|FA 13||C836|5|1|08/15/1993 08:23|08/15/1993 00:00||||NAD83|34.4500|-114.1841|||||01|Complete +33213|BLM|AZ|AZYUD|FA 14||C837|5|5|08/16/1993 21:24|08/16/1993 21:47||||NAD83|34.5167|-114.2841|||||01|Complete +33214|BLM|AZ|AZYUD|FWS 4||C838|3|7|08/19/1993 17:32|08/19/1993 00:00|08/20/1993 00:00||||||||||01|Complete +33215|BLM|AZ|AZYUD|BOR BRIDGE||C839|3|7|08/21/1993 00:00|08/21/1993 00:00|||||||||||01|Complete +33216|BLM|AZ|AZYUD|FA 15||C840|5|1|08/22/1993 09:18|08/22/1993 00:00||||NAD83|33.4834|-113.7174|||||01|Complete +33217|BLM|AZ|AZYUD|FA 16||C841|5|1|08/24/1993 18:43|08/24/1993 00:00||||NAD83|34.4167|-113.7174|||||01|Complete +33218|BLM|AZ|AZYUD|FWS 4||C842|3|7|09/17/1993 00:00||09/19/1993 00:00||||||||||01|Complete +33219|BLM|AZ|AZYUD|FWS 5||C843|3|7|09/26/1993 00:00||09/26/1993 00:00||||||||||01|Complete +33220|BLM|AZ|AZYUD|HORTHSHORE||C844|1|1|10/02/1993 22:00|10/02/1993 22:30|10/03/1993 02:00|0.1|9|NAD83|32.9000|-114.4508|1|0|0|A|01|Complete +33221|BLM|AZ|AZYUD|FERGUSON||C845|1|1|10/07/1993 20:00|10/07/1993 20:00|10/07/1993 22:00|0.1|4|NAD83|32.9500|-114.5008|1|0|0|A|01|Complete +33222|BLM|AZ|AZYUD|BISON BLVD||C846|1|1|10/08/1993 11:47|10/08/1993 11:47|10/09/1993 02:00|0.1|5|NAD83|34.5167|-114.2675|1|0|0|A|01|Complete +33223|BLM|AZ|AZYUD|PLOMOSA||C847|1|1|10/09/1993 15:00|10/09/1993 15:00|10/09/1993 16:00|3.0|9|NAD83|33.7334|-114.1674|1|0|0|A|01|Complete +33224|BLM|AZ|AZYUD|FLYING J||C848|1|1|10/23/1993 19:00|10/23/1993 19:15|10/23/1993 19:25|0.1|9|NAD83|33.6167|-114.4675|1|0|0|A|01|Complete +33225|BLM|AZ|AZYUD|SORRYVILLE||C849|3|7|10/26/1993 00:00||10/26/1993 00:00||||||||||01|Complete +33226|BLM|AZ|AZYUD|BIA 3||C850|3|7|11/04/1993 00:00||11/04/1993 00:00||||||||||01|Complete +26517|BLM|AZ|AZYUD|DOME ROCK||C854|1|1|01/04/1994 17:45|01/04/1994 17:45|01/04/1994 18:30|0.1|9|NAD83|33.6334|-114.3175|1|0|0|A|01|Complete +26518|BLM|AZ|AZYUD|F.A. #1||C855|5|5|01/17/1994 11:40|01/17/1994 12:00||||NAD83|34.4500|-114.3175||||||Complete +26519|BLM|AZ|AZYUD|F.A. #2||C856|5|5|01/19/1994 11:39|01/19/1994 11:50||||NAD83|34.4500|-114.3008||||||Complete +26520|BLM|AZ|AZYUD|ZONE ASST||C857|3|7|02/06/1994 00:00||12/31/1994 00:00|||||||||||Complete +26521|BLM|AZ|AZYUD|F.A. #3||C858|5|5|02/06/1994 22:30|02/06/1994 22:45||||NAD83|32.8667|-114.4841||||||Complete +26522|BLM|AZ|AZYUD|CIBOLA #1||C859|3|7|02/18/1994 00:00||02/19/1994 00:00|||||||||||Complete +26523|BLM|AZ|AZYUD|SAN LUIS#1||C860|1|1|03/13/1994 16:04|03/13/1994 16:35|03/13/1994 19:00|5.0|4|NAD83|32.4834|-114.7841|1|0|0|A|01|Complete +26524|BLM|AZ|AZYUD|LIMEKILN||C861|1|5|03/17/1994 20:00|03/17/1994 21:45|03/18/1994 19:00|125.0|9|NAD83|33.5667|-114.5175|1|0|0|A|07|Complete +26525|BLM|AZ|AZYUD|HAVASU||C862|3|7|03/18/1994 00:00||03/18/1994 21:56|||||||||||Complete +26526|BLM|AZ|AZYUD|BOUSE||C863|3|7|03/28/1994 00:00||03/28/1994 00:00|||||||||||Complete +26527|BLM|AZ|AZYUD|MITTRY LK||C864|1|1|03/28/1994 21:31|03/28/1994 21:45|03/28/1994 23:15|0.1|9|NAD83|32.8167|-114.4674|1|0|0|A|01|Complete +26528|BLM|AZ|AZYUD|H. SHR RD||C865|1|1|04/09/1994 03:20|04/09/1994 03:30|04/09/1994 04:00|0.1|9|NAD83|32.8667|-114.4508|1|0|0|A|01|Complete +26529|BLM|AZ|AZYUD|BIA #1||C866|3|7|04/22/1994 00:00||04/23/1994 01:30|||||||||||Complete +26530|BLM|AZ|AZYUD|COUNTY 5TH||C867|3|7|04/30/1994 00:00||04/30/1994 08:00|||||||||||Complete +26531|BLM|AZ|AZYUD|LINCOLN||C868|3|7|05/01/1994 00:00||05/01/1994 00:00|||||||||||Complete +26532|BLM|AZ|AZYUD|BIA #2||C869|3|7|05/12/1994 00:00||05/12/1994 00:00|||||||||||Complete +26533|BLM|AZ|AZYUD|CA CHANNEL||C870|1|1|05/13/1994 19:33|05/13/1994 20:14|05/13/1994 23:30|1.5|5|NAD83|32.9334|-114.4508|1|0|0|B|01|Complete +26534|BLM|AZ|AZYUD|FA # 4||C871|5|1|05/15/1994 16:24|05/15/1994 16:24||||NAD83|33.7000|-114.2508||||||Complete +26535|BLM|AZ|AZYUD|DOMEVALLEY||C872|1|1|05/24/1994 11:38|05/24/1994 12:20|05/25/1994 11:00|1.1|9|NAD83|32.7667|-114.3841|1|0|0|B|01|Complete +26536|BLM|AZ|AZYUD|HIDDEN||C873|1|1|05/24/1994 14:50|05/24/1994 15:37|05/24/1994 16:00||1|NAD83|32.8834|-114.4674|1|0|0|N|01|Complete +26537|BLM|AZ|AZYUD|COUNTY 8TH||C874|1|1|06/02/1994 16:36|06/02/1994 17:03|06/03/1994 09:00|2.0|9|NAD83|32.7120|-114.7330|1|0|0|N|01|Complete +26538|BLM|AZ|AZYUD|BUCKSKIN||C875|1|1|06/06/1994 10:24|06/06/1994 10:30|06/06/1994 11:48|0.1|9|NAD83|34.2000|-114.2008|1|0|0|B|01|Complete +26539|BLM|AZ|AZYUD|DOME VLY 2||C876|1|1|06/08/1994 07:36|06/08/1994 08:12|06/09/1994 11:00|0.1|9|NAD83|32.7667|-114.3841|1|0|0|B|01|Complete +26540|BLM|AZ|AZYUD|DOMEROCK 2||C877|2|1|06/17/1994 05:30||06/17/1994 06:00|0.1||NAD83|33.6500|-114.3341|||||01|Complete +26541|BLM|AZ|AZYUD|OXBOW||C878|1|1|06/24/1994 12:13|06/24/1994 12:50|06/24/1994 19:30|25.0|4|NAD83|33.4800|-114.7175|1|0|0|B|01|Complete +26542|BLM|AZ|AZYUD|FA #5||C879|5|1|06/28/1994 21:38|06/29/1994 00:30||||NAD83|34.2234|-113.5308||||||Complete +26543|BLM|AZ|AZYUD|THOMPSON||C880|3|7|07/01/1994 00:00||07/02/1994 00:00|||||||||||Complete +26544|BLM|AZ|AZYUD|BASS POINT||C881|1|1|07/04/1994 21:29|07/04/1994 21:33|07/04/1994 21:59|0.1|9|NAD83|34.2167|-114.2191|1|0|0|B|01|Complete +26545|BLM|AZ|AZYUD|PARKER DAM||C882|1|1|07/09/1994 21:25|07/09/1994 21:45|07/10/1994 11:00|1.5|9|NAD83|34.3000|-114.1341|1|1|0|B|01|Complete +26546|BLM|AZ|AZYUD|FA #6||C883|5|5|07/16/1994 20:00|07/16/1994 20:00||||NAD83|32.7334|-114.2508||||||Complete +26547|BLM|AZ|AZYUD|FA #7||C884|5|5|07/16/1994 22:00|07/16/1994 22:00||||NAD83|32.3834|-114.2174||||||Complete +26548|BLM|AZ|AZYUD|BLACK MESA||C886|1|1|08/13/1994 18:30|08/13/1994 20:17|08/15/1994 18:00|1300.0|1|NAD83|34.5100|-114.0641|2|3|5|A|01|Complete +26549|BLM|AZ|AZYUD|KOHEN||C887|3|7|08/15/1994 00:00||08/17/1994 00:00|||||||||||Complete +26550|BLM|AZ|AZYUD|FA #8||C888|5|1|08/26/1994 21:00|08/26/1994 21:33||||NAD83|34.2750|-114.1324|||||01|Complete +26551|BLM|AZ|AZYUD|FA #9||C889|5|1|08/29/1994 18:00|08/29/1994 18:30||||NAD83|32.7067|-114.5391|||||01|Complete +26552|BLM|AZ|AZYUD|AZS ASSIST||C890|3|7|09/01/1994 00:00||09/02/1994 00:00|||||||||||Complete +26553|BLM|AZ|AZYUD|WINDOWROCK||C891|1|1|09/04/1994 19:30|09/04/1994 22:33|09/05/1994 08:00|2.0|9|NAD83|34.4800|-114.2375|1|2|0|A|01|Complete +26554|BLM|AZ|AZYUD|CROSSMAN||C892|1|1|09/17/1994 02:00|09/17/1994 03:00|09/17/1994 17:00|15.0|9|NAD83|34.5533|-114.2208|2|2|5|A|01|Complete +26555|BLM|AZ|AZYUD|COUNTY 8.5||C893|1|1|10/05/1994 18:03|10/05/1994 18:55|10/05/1994 21:05|0.1|9|NAD83|32.7067|-114.7275|1|0|0|B|01|Complete +26556|BLM|AZ|AZYUD|CIBOLA #2||C894|3|7|10/19/1994 00:00||10/20/1994 00:00|||||||||||Complete +26557|BLM|AZ|AZYUD|BIA # 3||C895|3|7|11/04/1994 00:00||11/04/1994 00:00|||||||||||Complete +26558|BLM|AZ|AZYUD|FA #10||C896|5|1|11/24/1994 09:52|11/24/1994 10:00||||NAD83|32.9617|-114.4591|||||01|Complete +26559|BLM|AZ|AZYUD|CITY ASSIS||C897|3|7|11/26/1994 00:00||11/26/1994 00:00|||||||||||Complete +26560|BLM|AZ|AZYUD|PACIFIC||C898|1|1|12/02/1994 03:30|12/02/1994 04:00|12/02/1994 11:00|0.1|3|NAD83|32.7150|-114.5975|1|0|0|B|01|Complete +21614|BLM|AZ|AZYUD|CRZ ASSIST||C900|3|7|01/09/1995 00:00||12/01/1995 00:00|||||||||||Complete +21613|BLM|AZ|AZYUD|TOM WELLS||C899|1|1|01/09/1995 11:17|01/09/1995 11:35|01/09/1995 13:00|0.1|9|NAD83|33.6250|-114.4341|1|0|0|A|01|Complete +21615|BLM|AZ|AZYUD|SOMERTON||C901|1|1|01/17/1995 15:50|01/17/1995 16:30|01/19/1995 18:00|0.2|3|NAD83|32.6500|-114.7088|1|0|0|B|01|Complete +21616|BLM|AZ|AZYUD|BIA #1||C902|3|7|02/20/1995 00:00||02/21/1995 00:00|||||||||||Complete +21617|BLM|AZ|AZYUD|CONTACT||C903|1|1|03/06/1995 22:30|03/07/1995 11:00|03/07/1995 14:00|0.5|9|NAD83|34.4339|-114.3086|1|0|0|A|01|Complete +21618|BLM|AZ|AZYUD|FA #1||C904|5|1|03/25/1995 18:00|03/25/1995 19:00||||NAD83|33.6084|-113.9174|||||01|Complete +21619|BLM|AZ|AZYUD|HVR #1||C905|3|7|03/31/1995 00:00||04/07/1995 00:00|||||||||||Complete +21620|BLM|AZ|AZYUD|FERGUSON||C906|1|1|04/08/1995 20:00|04/08/1995 21:30|04/09/1995 18:00|1.0|4|NAD83|32.9884|-114.5091|1|0|0|N|01|Complete +21621|BLM|AZ|AZYUD|CRA #1||C907|3|7|04/09/1995 00:00||04/11/1995 00:00|||||||||||Complete +21622|BLM|AZ|AZYUD|PARKER||C908|1|1|04/09/1995 23:00|04/09/1995 23:50|04/10/1995 16:00|7.0|2|NAD83|34.2889|-114.1258|1|0|0|B|01|Complete +21623|BLM|AZ|AZYUD|AIRPORT||C909|1|1|04/26/1995 19:00|04/26/1995 20:00|04/27/1995 02:00|0.5|5|NAD83|32.6345|-114.6405|1|0|0|N|01|Complete +21624|BLM|AZ|AZYUD|AIRPORT 2||C910|1|1|04/27/1995 23:00|04/28/1995 00:01|04/28/1995 02:30|0.3|5|NAD83|32.6345|-114.6405|1|0|0|N|01|Complete +21625|BLM|AZ|AZYUD|NEEDLES||C911|1|1|04/30/1995 11:05|04/30/1995 11:45|05/01/1995 18:00|8.0|9|NAD83|34.8133|-114.6858|1|0|0|B|01|Complete +21626|BLM|AZ|AZYUD|AIRPORT 3||C912|1|1|04/30/1995 23:00|04/30/1995 23:15|05/01/1995 03:30|0.3|5|NAD83|32.6345|-114.6405|1|0|0|N|01|Complete +21627|BLM|AZ|AZYUD|ICEHOUSE||C913|1|1|05/02/1995 19:56|05/02/1995 20:13|05/07/1995 18:00|3408.0|8|NAD83|34.8389|-114.5458|1|0|0|B|01|Complete +21628|BLM|AZ|AZYUD|COUNTY 9TH||C914|1|1|05/09/1995 15:00|05/09/1995 15:30|05/09/1995 20:00|1.0|4|NAD83|32.6917|-114.7333|1|0|0|N|01|Complete +21629|BLM|AZ|AZYUD|FA #2||C915|5|1|05/15/1995 10:44|05/15/1995 11:20||||NAD83|32.6667|-114.3369|||||01|Complete +21630|BLM|AZ|AZYUD|FA # 3||C916|5|5|05/19/1995 08:30|05/19/1995 08:50||||NAD83|32.6917|-114.1435|||||08|Complete +21631|BLM|AZ|AZYUD|WATER ST.||C917|3|7|05/23/1995 00:00||05/24/1995 00:00|||||||||||Complete +21632|BLM|AZ|AZYUD|FA # 4||C918|5|1|05/25/1995 23:00|05/25/1995 23:45||||NAD83|32.8195|-114.4702|||||01|Complete +21633|BLM|AZ|AZYUD|FA # 5||C919|5|1|05/27/1995 20:15|05/27/1995 20:35||||NAD83|32.7175|-114.5875|||||01|Complete +21634|BLM|AZ|AZYUD|ISLAND||C920|1|1|05/27/1995 23:00|05/28/1995 01:00|05/28/1995 01:30|0.1|4|NAD83|32.9017|-114.4708|1|0|0|N|01|Complete +21635|BLM|AZ|AZYUD|SWEETWATER||C921|1|1|05/28/1995 22:05|05/28/1995 23:12|05/29/1995 01:19|3.0|9|NAD83|34.4517|-114.3058|1|1|0|A|01|Complete +21636|BLM|AZ|AZYUD|JETSKI||C922|1|1|06/08/1995 13:30|06/08/1995 14:00|06/08/1995 14:30|0.1|5|NAD83|32.8834|-114.4674|1|0|5|A|01|Complete +21637|BLM|AZ|AZYUD|5E/95||C923|1|1|06/14/1995 21:00|06/14/1995 21:43|06/14/1995 21:50|0.1|4|NAD83|32.7103|-114.5569|1|0|0|B|01|Complete +21638|BLM|AZ|AZYUD|BIA #2||C924|3|7|06/15/1995 00:00||06/16/1995 00:00|||||||||||Complete +21639|BLM|AZ|AZYUD|LOST LAKE||C925|3|7|06/23/1995 00:00||06/26/1995 00:00|||||||||||Complete +21644|BLM|AZ|AZYUD|FARMERS BR||C930|1|1|06/26/1995 15:47|06/26/1995 15:58|06/26/1995 18:40|1.0|9|NAD83|32.4139|-114.6591|1|0|0|B|01|Complete +21640|BLM|AZ|AZYUD|RIVERLAND||C926|1|1|07/01/1995 02:15|07/01/1995 02:30|07/01/1995 10:32|0.2|9|NAD83|34.1917|-114.2255|1|0|0|N|01|Complete +21641|BLM|AZ|AZYUD|POSTON||C927|3|7|07/02/1995 00:00||07/04/1995 00:00|||||||||||Complete +21642|BLM|AZ|AZYUD|TAYLOR||C928|1|1|07/03/1995 11:22|07/03/1995 11:52|07/03/1995 12:32|1.0|5|NAD83|33.0303|-114.6383|1|0|0|N|01|Complete +21643|BLM|AZ|AZYUD|HORACE||C929|1|1|07/03/1995 14:00|07/03/1995 15:34|07/03/1995 19:00|1.0|5|NAD83|33.4384|-114.6336|1|0|5|N|01|Complete +21645|BLM|AZ|AZYUD|F.A. #6||C931|5|1|07/08/1995 08:30|07/08/1995 09:30||||NAD83|33.5850|-113.4591|||||01|Complete +21646|BLM|AZ|AZYUD|F.A. #7||C932|5|5|07/21/1995 09:24|07/21/1995 11:27||||NAD83|33.9445|-114.0036|||||08|Complete +21647|BLM|AZ|AZYUD|SALOME||C933|3|7|07/30/1995 00:00||07/31/1995 00:00|||||||||||Complete +21648|BLM|AZ|AZYUD|HARQUAHALA||C934|1|1|07/31/1995 18:30|07/31/1995 19:00|07/31/1995 19:54|0.1|6|NAD83|33.5945|-113.5346|1|1|0|A|01|Complete +21649|BLM|AZ|AZYUD|F.A. #8||C935|5|5|07/31/1995 21:38|07/31/1995 22:00||||NAD83|32.6251|-114.6369|||||08|Complete +21650|BLM|AZ|AZYUD|BOUSE||C936|3|7|08/03/1995 00:00||08/03/1995 00:00|||||||||||Complete +21651|BLM|AZ|AZYUD|LAGUNA||C937|1|1|08/08/1995 14:30|08/08/1995 14:45|08/09/1995 06:00|35.0|2|NAD83|32.8509|-114.4936|1|0|0|B|01|Complete +21652|BLM|AZ|AZYUD|FYA #1||C938|3|7|08/16/1995 00:00||08/17/1995 00:00|||||||||||Complete +21653|BLM|AZ|AZYUD|COUNTY 15||C939|3|7|08/23/1995 00:00||08/23/1995 00:00|||||||||||Complete +14111|BLM|AZ|AZYUD|ZONEASSIST||C944|3|7|01/01/1996 00:00|||||||||||||Complete +14109|BLM|AZ|AZYUD|CALIENTE||C942|3|7|01/14/1996 00:00||01/14/1996 00:00|||||||||||Complete +14110|BLM|AZ|AZYUD|FA #1||C943|5|1|01/16/1996 13:45|01/16/1996 14:15||||NAD83|34.6756|-114.3500|||||01|Complete +14112|BLM|AZ|AZYUD|COUNTY 9TH||C945|1|1|01/26/1996 10:30|01/26/1996 11:00|01/26/1996 12:00|0.1|4|NAD83|32.6834|-114.7175|1|0|0|B|01|Complete +14113|BLM|AZ|AZYUD|5MILE1||C946|1|1|01/28/1996 02:30|01/28/1996 03:30|01/28/1996 13:00|2.0|9|NAD83|34.7400|-114.5641|1|0|0|B|01|Complete +14114|BLM|AZ|AZYUD|5MILE2||C947|1|1|01/28/1996 23:30|01/29/1996 07:00|01/29/1996 13:00|3.0|9|NAD83|34.0175|-114.5341|1|1|0|B|01|Complete +14115|BLM|AZ|AZYUD|RED CLOUD||C948|2|1|02/06/1996 11:15||02/06/1996 12:43|0.1||NAD83|33.1081|-114.6041|||||01|Complete +14116|BLM|AZ|AZYUD|BULLFROG||C949|1|1|03/29/1996 20:00|03/29/1996 22:30|03/30/1996 06:30|1.5|8|NAD83|34.1672|-114.1891|1|0|0|B|01|Complete +14117|BLM|AZ|AZYUD|FYA #1||C950|3|7|04/02/1996 00:00||04/02/1996 00:00|||||||||||Complete +14118|BLM|AZ|AZYUD|HIGH ACRES||C951|3|7|04/05/1996 00:00||04/06/1996 00:00|||||||||||Complete +14123|BLM|AZ|AZYUD|CDF ASSIST||C956|3|7|04/11/1996 00:00||04/11/1996 00:00|||||||||||Complete +14120|BLM|AZ|AZYUD|RITA'S||C953|1|1|04/13/1996 19:00|04/13/1996 19:30|04/13/1996 20:45|0.1|4|NAD83|32.6834|-114.7175|1|0|0|B|01|Complete +14121|BLM|AZ|AZYUD|FA #2||C954|5|1|04/20/1996 12:00|04/20/1996 12:30||||NAD83|34.6733|-114.3500|||||01|Complete +14122|BLM|AZ|AZYUD|BRUCECHRCH||C955|1|1|04/25/1996 07:00|04/25/1996 07:30|04/25/1996 09:00|0.1|4|NAD83|32.7167|-114.5341|1|0|0|B|01|Complete +14119|BLM|AZ|AZYUD|SMITH PEAK||C952|1|1|05/02/1996 18:00|05/02/1996 19:00|05/03/1996 16:00|25.0|6|NAD83|34.0667|-113.3508|5|5|1|F|01|Complete +14124|BLM|AZ|AZYUD|GOOSE FLAT||C957|1|1|05/12/1996 18:30|05/12/1996 18:39|05/12/1996 19:30|0.1|9|NAD83|33.5667|-114.5475|1|0|0|N|01|Complete +14125|BLM|AZ|AZYUD|CABLE CAR||C958|1|1|05/19/1996 17:30|05/19/1996 17:50|05/19/1996 20:00|3.0|2|NAD83|32.7167|-114.7175|1|0|0|B|01|Complete +14126|BLM|AZ|AZYUD|RIPLEY||C959|1|1|05/27/1996 12:00|05/27/1996 12:00|05/27/1996 13:30|2.0|4|NAD83|33.4417|-114.6141|1|0|0|B|01|Complete +14091|BLM|AZ|AZYUD|RANGER||C727|3|7|05/31/1996 00:00||09/05/1996 00:00|||||||||||Complete +14127|BLM|AZ|AZYUD|MORELOSDAM||C960|1|1|05/31/1996 15:08|05/31/1996 15:32|05/31/1996 16:30|1.0|6|NAD83|32.7078|-114.7116|1|0|0|B|01|Complete +14084|BLM|AZ|AZYUD|EGRET||C720|1|1|06/01/1996 20:30|06/01/1996 21:15|06/01/1996 23:00|1.0|4|NAD83|33.4017|-114.7008|1|0|0|B|01|Complete +14085|BLM|AZ|AZYUD|5 MILE 3||C721|1|1|06/03/1996 07:00|06/03/1996 09:30|06/03/1996 12:00|3.0|5|NAD83|34.7708|-114.5558|1|0|0|B|01|Complete +14086|BLM|AZ|AZYUD|WILLIAMS||C722|3|7|06/04/1996 00:00||06/05/1996 00:00|||||||||||Complete +14087|BLM|AZ|AZYUD|MULLET||C723|1|1|06/07/1996 19:34|06/07/1996 21:59|06/07/1996 23:30|0.4|1|NAD83|32.6834|-114.2008|1|0|0|B|01|Complete +14088|BLM|AZ|AZYUD|FYASUPPORT||C724|3|7|06/12/1996 00:00||09/27/1996 00:00|||||||||||Complete +14089|BLM|AZ|AZYUD|STANDARD||C725|3|7|06/16/1996 00:00||06/16/1996 00:00|||||||||||Complete +14090|BLM|AZ|AZYUD|JOE HENRY||C726|1|1|06/16/1996 12:00|06/16/1996 12:20|06/16/1996 12:55|0.1|4|NAD83|32.7317|-114.6575|1|0|0|A|01|Complete +14092|BLM|AZ|AZYUD|SOUTHWEST||C728|3|7|07/06/1996 00:00||07/06/1996 00:00|||||||||||Complete +14093|BLM|AZ|AZYUD|COCOPAH||C729|3|7|07/21/1996 00:00||07/22/1996 00:00|||||||||||Complete +14094|BLM|AZ|AZYUD|PARADISE||C730|3|7|07/26/1996 00:00||07/27/1996 00:00|||||||||||Complete +14095|BLM|AZ|AZYUD|FA #3||C731|5|1|07/27/1996 16:00|07/27/1996 18:00||||NAD83|33.2884|-114.7258|||||01|Complete +14096|BLM|AZ|AZYUD|BEALE||C732|1|1|08/10/1996 02:00|08/10/1996 02:30|08/11/1996 19:00|9.0|5|NAD83|34.7917|-114.5708|1|0|0|B|01|Complete +14097|BLM|AZ|AZYUD|DITCHRIDER||C733|1|1|08/26/1996 05:30|08/26/1996 06:00|08/26/1996 06:15|0.1|2|NAD83|32.8214|-114.4827|1|0|0|A|01|Complete +14098|BLM|AZ|AZYUD|FA #4||C734|5|1|09/02/1996 13:29|09/02/1996 13:32||||NAD83|32.6667|-114.1569|||||01|Complete +14099|BLM|AZ|AZYUD|TRADERHORN||C735|1|1|10/04/1996 07:40|10/04/1996 08:05|10/04/1996 08:56|0.3|9|NAD83|32.8356|-114.4924|1|0|0|B|01|Complete +14100|BLM|AZ|AZYUD|TRADRHORN2||C736|1|1|10/04/1996 13:00|10/04/1996 13:37|10/05/1996 15:00|70.0|9|NAD83|32.4987|-114.4949|1|0|0|B|01|Complete +14101|BLM|AZ|AZYUD|MITTRY||C737|1|1|10/14/1996 19:30|10/14/1996 19:58|10/14/1996 23:21|0.5|2|NAD83|32.8195|-114.4794|1|0|0|B|01|Complete +14102|BLM|AZ|AZYUD|CITYASSIST||C738|3|7|10/26/1996 00:00||10/26/1996 00:00|||||||||||Complete +14103|BLM|AZ|AZYUD|COUNTY 2ND||C739|1|1|11/04/1996 20:13|11/04/1996 20:39|11/05/1996 15:30|0.3|2|NAD83|32.8003|-114.5227|1|0|1|B|01|Complete +14104|BLM|AZ|AZYUD|FA #5||C740|5|1|11/30/1996 12:40|11/30/1996 14:06||||NAD83|33.3534|-114.6708|||||08|Complete +14105|BLM|AZ|AZYUD|FA #6||C741|5|1|11/30/1996 15:45|11/30/1996 16:00||||NAD83|34.8306|-114.5925|||||08|Complete +14106|BLM|AZ|AZYUD|PONDS||C742|3|7|12/01/1996 00:00||12/01/1996 00:00|||||||||||Complete +14107|BLM|AZ|AZYUD|MESQUITE||C743|3|7|12/07/1996 00:00||12/08/1996 00:00|||||||||||Complete +14108|BLM|AZ|AZYUD|XMAS||C744|1|1|12/21/1996 14:00|12/21/1996 14:30|12/21/1996 18:30|1.1|5|NAD83|32.8167|-114.4841|1|0|0|B|01|Complete +9635|BLM|AZ|AZYUD|ZONEASSIST||C747|3|7|01/01/1997 00:00|||||||||||||Complete +9633|BLM|AZ|AZYUD|NEW YEAR||C745|1|1|01/15/1997 13:59|01/15/1997 14:10|01/15/1997 16:30|1.0|2|NAD83|32.8178|-114.4808|1|0|0|B|01|Complete +9634|BLM|AZ|AZYUD|BACKFIRE||C746|1|1|02/10/1997 14:14|02/10/1997 14:37|02/10/1997 17:00|1.5|2|NAD83|32.8267|-114.4697|1|0|0|B|01|Complete +9636|BLM|AZ|AZYUD|WELLTON||C748|1|1|02/24/1997 18:00|02/24/1997 18:45|02/24/1997 20:00|0.1|9|NAD83|32.6800|-114.1077|1|0|0|B|01|Complete +9637|BLM|AZ|AZYUD|COG||C749|1|1|02/27/1997 18:30|02/27/1997 19:00|02/27/1997 20:00|0.1|9|NAD83|32.8553|-114.4888|1|0|0|B|01|Complete +9639|BLM|AZ|AZYUD|GILA||C751|1|1|03/02/1997 13:00|03/02/1997 13:40|03/02/1997 21:30|0.1|9|NAD83|32.7500|-114.4008|1|0|0|B|01|Complete +9640|BLM|AZ|AZYUD|MITTRY||C752|1|1|03/02/1997 13:00|03/02/1997 13:30|03/04/1997 08:00|123.9|5|NAD83|32.8156|-114.4594|1|0|0|B|01|Complete +9638|BLM|AZ|AZYUD|MCPHAUL||C750|1|1|03/02/1997 13:30|03/02/1997 14:10|03/02/1997 15:33|0.1|9|NAD83|32.8092|-114.4569|1|0|0|B|01|Complete +9641|BLM|AZ|AZYUD|FYA ASSIST||C753|3|7|03/04/1997 00:00|||||||||||||Complete +9642|BLM|AZ|AZYUD|LAGUNA||C754|1|1|03/10/1997 14:43|03/10/1997 14:55|03/10/1997 19:00|2.5|9|NAD83|32.9023|-114.4874|1|0|0|B|01|Complete +9643|BLM|AZ|AZYUD|MARTINEZ||C755|3|7|03/27/1997 00:00||03/28/1997 00:00|||||||||||Complete +9644|BLM|AZ|AZYUD|WINDMILL||C756|1|1|03/29/1997 11:00|03/29/1997 11:30|03/29/1997 17:00|0.1|8|NAD83|34.2272|-114.1958|1|0|0|B|01|Complete +9645|BLM|AZ|AZYUD|LUMPY||C757|1|1|04/14/1997 14:00|04/14/1997 14:45|04/14/1997 15:30|0.1|2|NAD83|32.9109|-114.4747|1|0|0|B|01|Complete +9646|BLM|AZ|AZYUD|COCOPAH||C758|3|7|04/18/1997 00:00||04/19/1997 00:00|||NAD83|32.6109|-114.8022||||||Complete +9647|BLM|AZ|AZYUD|FA #1||C759|5|6|04/19/1997 07:00|04/19/1997 07:35||||NAD83|32.8823|-114.4758||||||Complete +9648|BLM|AZ|AZYUD|CITYASSIST||C760|3|7|04/27/1997 00:00||04/27/1997 00:00|||NAD83|32.7300|-114.6505||||||Complete +9649|BLM|AZ|AZYUD|QSITE||C761|1|1|05/03/1997 13:00|05/03/1997 13:25|05/03/1997 13:50|0.1|9|NAD83|33.6598|-114.0174|1|1|0|A|01|Complete +9650|BLM|AZ|AZYUD|TYSON||C762|1|1|05/11/1997 17:58|05/11/1997 18:00|05/11/1997 19:00|0.1|6|NAD83|33.6472|-114.3369|1|1|0|A|01|Complete +9651|BLM|AZ|AZYUD|DIKE||C763|1|1|05/22/1997 11:30|05/22/1997 12:00|05/23/1997 06:00|67.0|5|NAD83|35.0333|-114.4008|1|1|0|B|01|Complete +9652|BLM|AZ|AZYUD|AZS ASSIST||C764|3|7|05/28/1997 00:00||05/28/1997 00:00|||NAD83|32.8167|-113.4507||||||Complete +9653|BLM|AZ|AZYUD|DIKE 2||C765|3|7|06/07/1997 00:00||06/07/1997 00:00|||NAD83|34.8833|-114.6397||||||Complete +9654|BLM|AZ|AZYUD|BUCKSKIN||C766|1|1|06/20/1997 16:58|06/20/1997 17:02|06/20/1997 17:25|0.1|2|NAD83|34.2333|-114.1858|1|0|0|B|01|Complete +9655|BLM|AZ|AZYUD|CARCASS||C767|1|1|07/01/1997 16:30|07/01/1997 18:00|07/01/1997 20:00|1.0|4|NAD83|32.7000|-114.7175|1|0|0|B|01|Complete +9658|BLM|AZ|AZYUD|RIDGE||C770|1|1|07/14/1997 00:01|07/14/1997 00:20|07/14/1997 04:00|0.5|5|NAD83|32.8500|-114.4841|1|0|0|B|01|Complete +9659|BLM|AZ|AZYUD|SWAMP||C771|1|1|07/18/1997 22:00|07/18/1997 23:00|07/19/1997 00:39|0.5|4|NAD83|32.8500|-114.4841|1|0|0|B|01|Complete +9660|BLM|AZ|AZYUD|STORM||C772|1|1|07/22/1997 17:30|07/22/1997 17:45|07/23/1997 02:00|0.5|1|NAD83|33.3167|-114.7175|1|0|0|B|01|Complete +9661|BLM|AZ|AZYUD|IMR ASSIST||C773|3|7|07/24/1997 00:00||07/28/1997 00:00|||||||||||Complete +9662|BLM|AZ|AZYUD|TABLE||C774|1|1|07/25/1997 11:00|07/25/1997 11:45|07/25/1997 17:30|10.0|4|NAD83|32.8870|-113.5377|1|0|0|B|01|Complete +9663|BLM|AZ|AZYUD|TABLE 2||C775|3|7|07/26/1997 00:00||07/26/1997 00:00|||NAD83|32.8834|-113.5174||||||Complete +9657|BLM|AZ|AZYUD|CRA ASSIST||C769|3|7|08/08/1997 00:00||08/11/1997 00:00|||||||||||Complete +9664|BLM|AZ|AZYUD|BAIL||C776|3|7|08/12/1997 00:00||08/12/1997 00:00|||NAD83|32.8167|-114.4841||||||Complete +9665|BLM|AZ|AZYUD|WIND||C777|1|1|08/15/1997 11:32|08/15/1997 12:14|08/15/1997 12:34|0.1|3|NAD83|32.7189|-114.5591|1|0|0|B|01|Complete +9666|BLM|AZ|AZYUD|MARLOWE||C778|3|7|08/16/1997 00:00||08/21/1997 00:00|||NAD83|32.3623|-114.7130||||||Complete +9667|BLM|AZ|AZYUD|RATLESNAKE||C779|1|1|08/21/1997 00:01|08/21/1997 00:40|08/21/1997 14:00|2.0|9|NAD83|34.7667|-114.5508|1|0|0|B|01|Complete +9656|BLM|AZ|AZYUD|RIDGE 2||C768|1|1|09/03/1997 22:30|09/03/1997 23:00|09/04/1997 02:00|0.5|9|NAD83|32.8575|-114.4966|1|0|0|B|01|Complete +9668|BLM|AZ|AZYUD|STEAMBOAT||C780|1|1|09/05/1997 16:30|09/05/1997 17:00|09/05/1997 18:15|0.1|9|NAD83|34.3958|-114.2675|1|0|0|B|01|Complete +9669|BLM|AZ|AZYUD|STAMPMILL||C781|1|6|09/09/1997 18:00|09/09/1997 18:45|09/09/1997 23:59|0.1|1|NAD83|33.0228|-114.6030|1|0|0|N|07|Complete +9670|BLM|AZ|AZYUD|HVR ASSIST||C782|3|7|10/27/1997 00:00||10/27/1997 00:00|||NAD83|34.5333|-114.3008||||||Complete +9671|BLM|AZ|AZYUD|SAND||C783|3|7|10/27/1997 00:00||10/27/1997 00:00|||NAD83|34.5333|-114.2675||||||Complete +9672|BLM|AZ|AZYUD|SARA||C784|1|1|11/07/1997 14:00|11/07/1997 14:00|11/07/1997 14:30|0.1|4|NAD83|34.1334|-113.9174|1|1|0|A|01|Complete +9673|BLM|AZ|AZYUD|TERSREVNGE||C785|1|1|11/17/1997 01:45|11/17/1997 02:20|11/17/1997 08:00|1.0|9|NAD83|32.9034|-114.4761|1|0|0|B|01|Complete +4823|BLM|AZ|AZYUD|ZONEASSIST||C787|3|7|01/06/1998 00:00|||||NAD83|32.7289|-114.5652||||||Complete +4824|BLM|AZ|AZYUD|FA #1||C788|5|1|01/06/1998 18:00|||||NAD83|33.5934|-114.5347||||||Complete +4825|BLM|AZ|AZYUD|FYA ASSIST||C789|3|7|01/07/1998 00:00|||||NAD83|32.7917|-114.6202||||||Complete +4826|BLM|AZ|AZYUD|YUMA LAKES||C790|3|7|03/31/1998 00:00||04/01/1998 00:00|||||||||||Complete +4827|BLM|AZ|AZYUD|GILA||C791|3|7|04/07/1998 00:00||04/11/1998 00:00|||NAD83|32.7289|-114.5652||||||Complete +4828|BLM|AZ|AZYUD|CRA ASSIST||C792|3|7|04/19/1998 00:00||04/24/1998 00:00|||||||||||Complete +4830|BLM|AZ|AZYUD|LIMITROPHE||C794|1|1|05/07/1998 19:30|05/07/1998 19:45|05/07/1998 22:00|0.5|9|NAD83|32.6989|-114.7291|1|0|0|B|01|Complete +4831|BLM|AZ|AZYUD|SNAKE||C795|1|1|05/29/1998 08:30|05/29/1998 10:00|05/30/1998 16:00|0.2|4|NAD83|33.4036|-114.7344|1|0|0|B|01|Complete +4832|BLM|AZ|AZYUD|FA #2||C796|5|1|06/02/1998 14:37|||||NAD83|33.6795|-114.0933||||||Complete +4833|BLM|AZ|AZYUD|BAD FISH||C797|1|1|06/06/1998 12:05|06/06/1998 12:24|06/06/1998 22:00|1.0|4|NAD83|32.7309|-114.6530|1|0|0|B|01|Complete +4834|BLM|AZ|AZYUD|FA#3||C798|5|1|06/12/1998 17:21|||||NAD83|33.6767|-114.1502||||||Complete +4835|BLM|AZ|AZYUD|PITSTOP||C799|1|1|06/18/1998 12:40|06/18/1998 13:00|06/18/1998 18:30|0.9|4|NAD83|32.7459|-114.4319|1|0|0|B|01|Complete +4836|BLM|AZ|AZYUD|FERGUSON||C800|1|1|06/27/1998 21:00|06/27/1998 21:25|06/28/1998 00:30|0.5|9|NAD83|32.9728|-114.4905|1|1|0|N|01|Complete +4837|BLM|AZ|AZYUD|DOME||C801|3|7|06/30/1998 00:00||07/01/1998 00:00|||||||||||Complete +4838|BLM|AZ|AZYUD|EMPIRE||C802|1|1|07/03/1998 20:22|07/03/1998 21:00|07/03/1998 21:30|0.1|9|NAD83|34.2167|-114.2008|1|0|0|B|01|Complete +4839|BLM|AZ|AZYUD|OXBOW||C803|5|1|07/04/1998 13:30|||||NAD83|33.3870|-114.7125||||||Complete +4829|BLM|AZ|AZYUD|S DIKE RD||C793|3|7|07/05/1998 00:00||07/17/1998 00:00|||NAD83|34.7917|-114.5425||||||Complete +4840|BLM|AZ|AZYUD|LIGURTA||C804|1|1|07/07/1998 12:00|07/07/1998 12:20|07/07/1998 19:30|8.3|9|NAD83|32.6792|-114.2305|1|0|0|B|01|Complete +4841|BLM|AZ|AZYUD|FA#4||C805|5|1|07/18/1998 21:30|||||NAD83|34.1159|-113.3480||||||Complete +4842|BLM|AZ|AZYUD|FA#5||C806|5|1|08/14/1998 21:00|||||NAD83|34.1086|-113.2205||||||Complete +4843|BLM|AZ|AZYUD|MO VALLEY||C807|1|1|08/15/1998 19:53|08/15/1998 20:01|08/15/1998 20:25|0.1|1|NAD83|34.8211|-114.5772|1|0|0|B|01|Complete +4844|BLM|AZ|AZYUD|DOC||C808|1|1|08/27/1998 13:30|08/27/1998 14:00|08/27/1998 19:30|0.2|9|NAD83|32.7100|-114.7244|1|0|0|B|01|Complete +4845|BLM|AZ|AZYUD|AIRPORT||C809|1|1|08/31/1998 11:00|08/31/1998 11:20|08/31/1998 15:00|0.4|4|NAD83|32.7098|-114.7244|1|0|0|B|01|Complete +4846|BLM|AZ|AZYUD|COVE||C810|1|1|10/03/1998 09:30|10/03/1998 10:00|10/03/1998 10:30|0.1|6|NAD83|32.7409|-114.6566|1|0|0|B|01|Complete +4847|BLM|AZ|AZYUD|CLOCK||C811|1|1|10/05/1998 20:00|10/05/1998 20:30|10/05/1998 20:50|1.0|2|NAD83|32.9867|-114.5113|1|0|0|B|01|Complete +4848|BLM|AZ|AZYUD|BOR||C812|1|1|10/06/1998 19:30|10/06/1998 20:02|10/06/1998 20:30|0.3|2|NAD83|34.8325|-114.5919|1|0|0|B|01|Complete +4849|BLM|AZ|AZYUD|MP 21||C813|1|1|10/12/1998 18:00|10/12/1998 18:50|10/12/1998 19:25|0.1|2|NAD83|33.6534|-114.0694|1|0|2|B|01|Complete +4850|BLM|AZ|AZYUD|WM||C814|1|1|12/10/1998 01:03|12/10/1998 03:29|12/11/1998 16:00|8.0|4|NAD83|32.6823|-114.2174|1|0|0|B|01|Complete +92792|BLM|AZ|AZYUD|ZoneAssist||C816|3|7|01/01/1999 08:00|01/01/1999 12:00|12/31/1999 23:59|0.1|||||||||06|Incomplete +1995|BLM|AZ|AZYUD|fivemilefv||C815|1|1|01/02/1999 04:28|01/02/1999 05:00|01/02/1999 12:00|1.0|9|NAD83|32.7245|-114.4855|1|1|0|A|01|Complete +92807|BLM|AZ|AZYUD|DomeValley||C817|1|1|01/25/1999 12:42|01/25/1999 13:16|01/25/1999 20:00|15.0|4|NAD83|32.7620|-114.3947|1|0|0|B|01|Complete +3222|BLM|AZ|AZYUD|Cable Car||C819|1|1|03/09/1999 11:00|03/09/1999 11:30|03/09/1999 11:45|0.1|1|NAD83|32.6167|-114.6397|1|0|0|B|01|Complete +92771|BLM|AZ|AZYUD|Border||C822|1|1|04/16/1999 10:00|04/16/1999 10:20|04/16/1999 13:15|25.0|9|NAD83|32.7128|-114.7233|1|0|0|B|01|Complete +4072|BLM|AZ|AZYUD|Harcuvar||C824|1|1|05/27/1999 19:00|05/27/1999 22:00|06/02/1999 18:00|15980.0|1|NAD83|34.06067|-113.42330|3|3|1|B|01|Complete +3227|BLM|AZ|AZYUD|Cotton||C825|1|1|05/29/1999 16:10|05/29/1999 17:35|05/29/1999 20:32|0.2|1|NAD83|33.4073|-114.6986|1|1|0|A|01|Complete +3234|BLM|AZ|AZYUD|Hidden||C826|1|6|05/30/1999 21:00|05/30/1999 22:30|06/01/1999 12:30|500.0|9|NAD83|32.8884|-114.4591|1|0|0|N|06|Complete +3210|BLM|AZ|AZYUD|Limitrope||C827|1|1|05/31/1999 02:30|05/31/1999 03:00|05/31/1999 05:00|0.2|4|NAD83|32.7209|-114.6386|1|0|0|B|01|Incomplete +92774|BLM|AZ|AZYUD|millard||C828|3|7|06/08/1999 12:01|06/08/1999 12:30|06/08/1999 23:59|6.0||NAD83|32.7334|-114.6175|1|0|0|B|02|Complete +3238|BLM|AZ|AZYUD|Arrastra||C829|1|1|06/18/1999 10:45|06/18/1999 11:35|06/20/1999 18:00|2400.0|9|NAD83|34.5681|-114.2025|2|3|2|B|01|Complete +3220|BLM|AZ|AZYUD|Cnty 14||C818|1|6|06/21/1999 16:30|06/21/1999 17:30|06/22/1999 01:00|20.0|9|NAD83|32.6298|-114.7755|1|0|0|B|02|Complete +3858|BLM|AZ|AZYUD|N Shore||C830|1|1|07/05/1999 00:05|07/05/1999 00:30|07/05/1999 03:00|0.1|8|NAD83|32.8667|-114.4841|1|0|0|B|01|Complete +4056|BLM|AZ|AZYUD|Confluence||C831|1|6|07/05/1999 13:00|07/05/1999 13:30|07/06/1999 08:30|6.0|9|NAD83|32.7167|-114.5675|1|0|0|B|02|Complete +92808|BLM|AZ|AZYUD|centennial||C832|1|3|07/05/1999 15:15|07/05/1999 15:30|07/05/1999 18:00|33.3|4|NAD83|33.8334|-113.5919|1|2|0|A|01|Complete +4028|BLM|AZ|AZYUD|High Levee||C833|1|1|07/08/1999 10:30|07/08/1999 10:45|07/08/1999 15:00|0.1|1|NAD83|33.3750|-114.7508|1|0|0|A|01|Complete +92783|BLM|AZ|AZYUD|AZS Assist||C821|3|7|07/08/1999 15:30|07/08/1999 16:00|07/09/1999 03:00|3.0|1|NAD83|33.4209|-114.6355|1|0|0|B|07|Complete +93299|BLM|AZ|AZYUD|Bison||C865|2|1|07/11/1999 00:01||07/11/1999 00:01|1.0||NAD83|34.5356|-114.2586|1|1|0|B|01|Complete +4058|BLM|AZ|AZYUD|Cnty 8half||C834|1|1|07/11/1999 11:35|07/11/1999 12:00|07/11/1999 19:00|5.0|9|NAD83|32.7639|-114.6163|1|0|0|B|01|Complete +3854|BLM|AZ|AZYUD|Cabin||C835|1|6|07/12/1999 17:56|07/12/1999 18:00|07/13/1999 03:00|15.0|1|NAD83|34.4500|-114.5258|1|0|0|A|04|Complete +3225|BLM|AZ|AZYUD|FalseAlarm||C823|5|1|07/17/1999|||||NAD83|32.7500|-114.4841|||||01|Complete +3208|BLM|AZ|AZYUD|Bettys||C837|1|1|07/17/1999 03:00|07/17/1999 03:20|07/17/1999 13:00|0.1|9|NAD83|32.8245|-114.4936|1|0|0|B|01|Incomplete +4053|BLM|AZ|AZYUD|Paradise||C838|1|1|08/05/1999 00:04|08/05/1999 00:30|08/05/1999 04:30|0.3|6|NAD83|32.7320|-114.6513|1|0|0|B|01|Incomplete +3295|BLM|AZ|AZYUD|ALAMO LAKE||C839|2|1|08/18/1999 21:00|08/19/1999 02:30|08/19/1999 08:00|2.5|1|NAD83|34.0167|-113.5174|3|3|1|B|01|Complete +3315|BLM|AZ|AZYUD|Flip||C841|1|1|08/28/1999 18:30|08/28/1999 20:30|08/29/1999 08:00|15.0|1|NAD83|32.9520|-114.4513|1|0|0|A|01|Complete +3300|BLM|AZ|AZYUD|Matt||C840|1|1|08/28/1999 23:30|08/29/1999 03:34|08/29/1999 12:00|0.3|1|NAD83|33.4136|-114.6350|1|0|0|B|01|Complete +3733|BLM|AZ|AZYUD|4ONEHALF E||C842|1|6|09/03/1999 14:00|09/03/1999 14:24|09/03/1999 15:09|0.1|4|NAD83|32.7334|-114.7175|1|0|0|A|02|Complete +4063|BLM|AZ|AZYUD|Catfish||C843|1|6|09/12/1999 20:00|09/12/1999 20:30|09/13/1999 08:30|20.0|1|NAD83|34.8333|-114.5841|1|1|0|B|04|Complete +93300|BLM|AZ|AZYUD|Bison II||C866|2|1|09/15/1999 02:00||09/15/1999|0.5||NAD83|43.5363|-114.2475|1|1|0|B|01|Complete +91244|BLM|AZ|AZYUD|Pump||C844|1|1|09/28/1999 22:00|09/28/1999 22:30|09/28/1999 23:59|0.1|6|NAD83|32.7167|-114.5588|1|0|0|A|01|Complete +99147|BLM|AZ|AZYUD|CBR mntnc||CD05|4|7|10/04/1999|||||||||||||Complete +91937|BLM|AZ|AZYUD|Gadsden||C846|1|1|10/18/1999 10:30|10/18/1999 10:30|10/20/1999 08:00|60.0|9|NAD83|32.5834|-114.7508|1|0|0|B|01|Complete +99970|BLM|AZ|AZYUD|IndianRock||C845|3|7|10/20/1999 03:30|10/20/1999 04:00|10/20/1999 04:30|15.0||NAD83|36.93330|-114.56750|1|0|0|B|02|Complete +91945|BLM|AZ|AZYUD|Pig Pen||C818|1|1|10/21/1999 08:00|10/21/1999 08:30|10/21/1999 12:00|0.5|4|NAD83|32.8500|-114.5841|1|0|0|J|02|Complete +91943|BLM|AZ|AZYUD|Cnty 11 5||C847|1|1|10/25/1999 17:30|10/25/1999 18:00|10/25/1999 22:00|0.5|8|NAD83|32.6834|-114.6008|1|1|0|A|01|Complete +99152|BLM|AZ|AZYUD|Bettys||CD06|4|1|11/01/1999 07:00||04/29/2000|6.0||NAD83|32.8192|-114.4872|||||01|Complete +92069|BLM|AZ|AZYUD|Dump||C848|1|1|11/11/1999 09:00|11/11/1999 13:00|11/11/1999 14:00|0.1|4|NAD83|34.5564|-114.2597|3|3|5|A|01|Complete +99154|BLM|AZ|AZYUD|Section 10||CD04|4|1|11/15/1999 07:00||10/20/2000|0.1||NAD83|35.0475|-114.6066|||||01|Complete +99026|BLM|AZ|AZYUD|Needles||CD02|4|1|11/15/1999 07:00||11/18/1999 15:00|19.0||NAD83|34.8200|-114.5808|||||01|Complete +99157|BLM|AZ|AZYUD|BoatIn||CD10|4|1|11/21/1999 07:00||11/26/1999|60.0||NAD83|32.4273|-114.2916|||||01|Complete +99156|BLM|AZ|AZYUD|Reveg||CD09|4|1|11/22/1999 07:00||11/24/1999|19.0||NAD83|34.8200|-114.5808|||||01|Complete +92380|BLM|AZ|AZYUD|Turkey||C849|1|1|11/24/1999 20:30|11/24/1999 21:00|11/25/1999 00:30|0.3|2|NAD83|32.7195|-114.5716|1|0|0|B|01|Complete +99148|BLM|AZ|AZYUD|Beal Lake||CD07|4|7|11/29/1999|||||||||||||Complete +99971|BLM|AZ|AZYUD|Twin Lakes||C820|3|7|12/04/1999 12:05|12/04/1999 12:20|12/04/1999 16:00|1.5||NAD83|34.8833|-114.6341|1|1|0|B|02|Complete +92812|BLM|AZ|AZYUD|FiveMile 6||C851|1|1|12/08/1999 22:00|12/08/1999 22:23|12/09/1999 14:00|3.0|5|NAD83|34.8833|-114.6341|1|1|0|B|01|Complete +92746|BLM|AZ|AZYUD|Franconia||C852|1|5|12/11/1999 14:30|12/11/1999 15:00|12/11/1999 16:30|0.1|2|NAD83|34.73473|-114.26829|1|2|0|A|08|Complete +92736|BLM|AZ|AZYUD|CAR 3||C853|1|1|12/31/1999 18:00|12/31/1999 19:00|12/31/1999 22:00|0.3|9|NAD83|32.7225|-114.6341|1|0|0|B|01|Complete +99155|BLM|AZ|AZYUD|Ft Yuma||CD11|4|7|01/03/2000|||||||||||||Complete +93329|BLM|AZ|AZYUD|Cherry 2||C868|2|1|02/05/2000 03:00||02/05/2000 08:00|0.5||NAD83|34.5208|-114.2311|1|1|0|B|01|Complete +98515|BLM|AZ|AZYUD|Dump||C857|1|1|02/05/2000 14:11|02/05/2000 14:23|02/05/2000 16:00|0.1|4|NAD83|32.7325|-114.6566|1|0|0|B|01|Complete +92913|BLM|AZ|AZYUD|Rabbitt||C858|1|1|02/18/2000 13:00|02/18/2000 13:30|02/18/2000 15:30|0.1|4|NAD83|32.6334|-114.6408|1|0|0|A|01|Complete +93107|BLM|AZ|AZYUD|Ferguson||C861|1|1|02/29/2000 15:00|02/29/2000 16:00|03/02/2000 09:20|72.0|9|NAD83|32.9806|-114.4969|1|0|0|B|01|Complete +93681|BLM|AZ|AZYUD|Ferguson||C859|3|7|02/29/2000 15:22|02/29/2000 16:00|03/05/2000 18:00|85.0||NAD83|32.9806|-114.4969|1|1|0|B||Complete +93106|BLM|AZ|AZYUD|county 21||C860|1|1|03/02/2000 17:00|03/02/2000 18:00|03/04/2000 11:00|22.8|9|NAD83|32.5223|-114.8002|1|0|0|B|01|Complete +99158|BLM|AZ|AZYUD|CBR 2||CD13|4|7|03/13/2000|||||||||||||Complete +93328|BLM|AZ|AZYUD|Cherry||C867|2|1|03/15/2000 08:00||03/15/2000 09:00|0.5||NAD83|34.5195|-114.2419|1|1|0|B|01|Complete +93102|BLM|AZ|AZYUD|cty12half||C862|1|1|03/26/2000 05:00|03/26/2000 05:25|03/26/2000 08:18|0.3|9|NAD83|32.6470|-114.6344|1|0|5|B|01|Complete +93139|BLM|AZ|AZYUD|Walters||C863|1|1|03/30/2000 11:00|03/30/2000 11:15|03/30/2000 12:00|0.1|6|NAD83|38.8592|-94.7836|1|1|0|K|01|Complete +93213|BLM|AZ|AZYUD|falsealarm||C856|5|1|04/03/2000||||||||1|0|0|A|01|Complete +93326|BLM|AZ|AZYUD|air strip||C854|5|5|04/03/2000 00:30|04/03/2000 01:00|04/03/2000 03:30|0.5||NAD83|32.6453|-114.6372|1|0|0|B|07|Complete +93680|BLM|AZ|AZYUD|Fortuna||C864|3|7|04/07/2000 12:00|04/11/2000 14:00|04/12/2000 17:00|10.0||NAD83|32.7112|-114.4469|1|0|0|B|07|Complete +93434|BLM|AZ|AZYUD|Levee 9||C869|3|7|04/27/2000 18:30|||||NAD83|32.6992|-114.7291|||||01|Complete +93562|BLM|AZ|AZYUD|Old 80||C872|3|7|05/03/2000 15:30|05/03/2000 15:45|05/04/2000 23:59|85.5|||||1|0|0|B|02|Complete +93556|BLM|AZ|AZYUD|Paradise c||C870|1|1|05/03/2000 19:05|05/03/2000 19:30|05/03/2000 21:00|0.1|9|NAD83|32.7325|-114.6572|1|0|0|B|01|Complete +93557|BLM|AZ|AZYUD|Cnty 23||C871|1|1|05/03/2000 20:40|05/03/2000 21:10|05/03/2000 23:00|0.1|9|NAD83|32.4984|-114.8102|1|0|0|B|01|Complete +93560|BLM|AZ|AZYUD|Gila||C873|1|1|05/21/2000 17:14|05/21/2000 17:45|05/21/2000 21:00|2.0|2|NAD83|32.7203|-114.5905|1|0|0|B|01|Complete +93679|BLM|AZ|AZYUD|Wills||C874|3|7|05/28/2000 11:45|05/28/2000 12:20|05/29/2000 18:00|40.0||NAD83|32.6334|-114.7675|1|0|0|B|02|Complete +93692|BLM|AZ|AZYUD|Cnty 18th||C875|1|1|05/30/2000 04:00|05/30/2000 04:30|05/30/2000 04:50|0.1|4|NAD83|32.5612|-114.7908|1|0|0|B|01|Complete +93694|BLM|AZ|AZYUD|Cnty 8||C876|1|1|05/31/2000 17:15|05/31/2000 18:00|05/31/2000 20:00|0.3|9|NAD83|32.7120|-114.7119|1|0|0|B|01|Complete +94510|BLM|AZ|AZYUD|Host||C877|1|1|06/04/2000 21:00|06/04/2000 21:01|06/04/2000 21:10|0.1|2|NAD83|32.9075|-114.4944|1|0|0|B|01|Complete +98961|BLM|AZ|AZYUD|Campfire||C878|1|1|06/12/2000 20:10|06/12/2000 21:24|06/12/2000 21:30|0.1|2|NAD83|32.7023|-114.7286|1|0|0|B|01|Complete +94121|BLM|AZ|AZYUD|Tire||C879|1|1|06/25/2000 14:45|06/25/2000 15:00|06/25/2000 16:00|0.1|4|NAD83|32.7175|-114.6083|1|0|0|B|01|Complete +99972|BLM|AZ|AZYUD|Stars||C880|1|5|07/04/2000 16:23|07/04/2000 17:00|07/07/2000 19:30|3.0|4|NAD83|32.71366|-114.44940|1|0|0|P|07|Complete +98579|BLM|AZ|AZYUD|EDDY||C881|3|7|07/14/2000 11:47|07/14/2000 11:55|07/15/2000 15:11|60.0||NAD83|32.0253|-114.3549|1|0|0|B|02|Complete +98581|BLM|AZ|AZYUD|MP 195||C882|1|1|07/19/2000 11:45|07/19/2000 11:55|07/19/2000 12:03|0.2|3|NAD83|34.6328|-114.3269|1|1|0|A|01|Complete +98586|BLM|AZ|AZYUD|Chesney||C883|1|1|07/20/2000 04:29|07/20/2000 04:44|07/20/2000 07:12|0.1|9|NAD83|34.8294|-114.5794|1|0|0|A|01|Complete +98588|BLM|AZ|AZYUD|CoorsIsle||C884|1|1|08/01/2000 05:56|08/01/2000 06:30|08/01/2000 08:30|0.2|2|NAD83|34.7983|-114.5758|1|1|0|B|01|Complete +98959|BLM|AZ|AZYUD|Oxbow||C885|1|1|08/01/2000 10:02|08/01/2000 10:05|08/01/2000 11:36|0.1|4|NAD83|33.3903|-114.6897|1|0|0|B|01|Complete +98530|BLM|AZ|AZYUD|BIA Assist||C855|3|7|08/02/2000 18:20|08/02/2000 18:30|08/03/2000 03:30|14.0||NAD83|32.7478|-114.5891|1|0|0|B|02|Complete +98674|BLM|AZ|AZYUD|New Sub 2||C886|3|7|08/02/2000 18:20|08/02/2000 18:30|08/03/2000 03:30|14.0||NAD83|32.7478|-114.5891|2|1|1|B|02|Complete +98933|BLM|AZ|AZYUD|Topock||C887|1|1|08/05/2000 09:00|08/05/2000 09:15|08/05/2000 12:28|0.1|9|NAD83|34.7325|-114.4839|1|0|0|B|01|Complete +98682|BLM|AZ|AZYUD|WILLS 2||C888|3|7|08/15/2000 19:16|08/15/2000 20:12|08/16/2000 06:00|3.0||NAD83|32.6223|-114.7994|1|0|0|B|02|Complete +98684|BLM|AZ|AZYUD|LEVEE 5E||C889|1|1|08/16/2000 18:00|08/16/2000 19:30|08/16/2000 21:00|0.5|4|NAD83|32.7117|-114.5488|1|0|0|B|01|Incomplete +98726|BLM|AZ|AZYUD|River||C890|3|7|08/20/2000 01:05|08/20/2000 01:17|08/20/2000 18:00|2.0|||||1|1|0|B|02|Incomplete +98960|BLM|AZ|AZYUD|DAM||C891|1|1|08/25/2000 05:30|08/25/2000 05:45|08/25/2000 06:12|0.2|1|NAD83|34.2903|-114.1402|1|0|0|B|01|Complete +100610|BLM|AZ|AZYUD|Squaw Lake||C894|1|1|09/04/2000 19:00|09/04/2000 19:20|09/05/2000 18:00|0.1|9|NAD83|32.9062|-114.4730|1|0|0|L|01|Complete +99742|BLM|AZ|AZYUD|Cty 15half||C892|3|7|09/12/2000 13:30|09/12/2000 14:00|09/13/2000 06:00|3.0||NAD83|32.6031|-114.8030|1|0|0|B|02|Complete +104618|BLM|AZ|AZYUD|Brenda||C895|1|1|09/13/2000 09:07|09/13/2000 09:33|09/13/2000 09:51|0.1|9|NAD83|33.6748|-113.9663|1|1|0|A|01|Complete +99743|BLM|AZ|AZYUD|Garbage||C893|3|7|09/13/2000 09:25|09/13/2000 10:09|09/13/2000 10:31|0.1||NAD83|32.7964|-114.6025|1|0|0|B|02|Complete +100166|BLM|AZ|AZYUD|State 2||C905|3|7|01/01/2001 15:30|01/01/2001 15:30|01/01/2001 19:00|1.5||NAD83|32.7173|-114.5822|1|0|0|L|07|Complete +100167|BLM|AZ|AZYUD|Kennel||C906|3|7|01/08/2001 14:45|01/08/2001 15:00|01/09/2001 10:00|4.0||NAD83|34.1106|-114.4002|1|0|0|B|02|Complete +100168|BLM|AZ|AZYUD|County 19||C907|1|1|01/10/2001 16:30|01/10/2001 17:00|01/10/2001 19:00|0.8|9|NAD83|32.5664|-114.7927|3|0|0|L|01|Complete +100170|BLM|AZ|AZYUD|Kite||C908|3|7|02/05/2001 14:00|02/05/2001 14:15|02/06/2001 12:00|1.0||NAD83|32.6348|-114.7680|1|0|0|L|02|Complete +104393|BLM|AZ|AZYUD|First St||C909|3|7|02/09/2001 16:00|02/09/2001 16:30|02/09/2001 20:00|0.8||NAD83|32.7300|-114.7133|1|0|0|L|02|Incomplete +100173|BLM|AZ|AZYUD|First St 2||C910|3|7|02/12/2001|||||NAD83|32.7300|-114.7133|||||02|Complete +100174|BLM|AZ|AZYUD|Zone Asst||C911|3|7|02/18/2001||||||||||||06|Complete +100175|BLM|AZ|AZYUD|Farmer||C912|3|7|02/19/2001 15:00|02/19/2001 15:00|02/20/2001|10.0||NAD83|33.4067|-114.7005|1|0|0|L|07|Incomplete +100177|BLM|AZ|AZYUD|Mittry Lk||C913|3|7|03/16/2001 19:00|03/16/2001 19:30|03/17/2001 01:00|1.0||NAD83|32.8189|-114.4794|1|0|0|L|06|Incomplete +100178|BLM|AZ|AZYUD|Cluster||C914|3|7|03/23/2001 15:30|03/23/2001 16:00|03/24/2001 00:01|1.0||NAD83|33.2350|-114.6897|1|0|0|B|02|Complete +100179|BLM|AZ|AZYUD|American||C915|3|7|03/29/2001 13:00|03/29/2001 13:00|03/31/2001 17:00|||NAD83|32.8250|-114.5925|1|0|0|B|02|Incomplete +100180|BLM|AZ|AZYUD|Walters||C916|3|7|04/11/2001 13:00|04/11/2001 14:30|04/12/2001 08:00|20.0||NAD83|33.2295|-114.6888|1|0|0|L|08|Incomplete +100205|BLM|AZ|AZYUD|Oxbow||C917|1|1|04/17/2001 16:30|04/17/2001 17:00|04/18/2001 13:00|100.0|9|NAD83|33.3903|-114.7077|1|0|0|L|01|Complete +100356|BLM|AZ|AZYUD|Browns||C919|3|7|04/21/2001 20:30|04/21/2001 22:46|04/22/2001 13:00|0.5||NAD83|34.2834|-113.5508||1|5|L|08|Incomplete +100212|BLM|AZ|AZYUD|Algodones||C918|3|7|04/22/2001 20:00|04/22/2001 21:30|04/29/2001 12:00|1.0||NAD83|32.7206|-114.7194|1|0|0|L|02|Incomplete +100357|BLM|AZ|AZYUD|Sandal||C920|1|1|04/24/2001 19:00|04/24/2001 19:05|04/25/2001 20:00|40.0|9|NAD83|32.7700|-113.8160|1|0|0|L|01|Complete +100358|BLM|AZ|AZYUD|FalseAlarm||C921|5|1|05/02/2001|||||||||||||Complete +100359|BLM|AZ|AZYUD|Coley||C922|3|7|05/03/2001 15:00|05/03/2001 15:15|05/03/2001 18:00|10.0||NAD83|32.7548|-114.8038|1|0|0|B|02|Incomplete +100360|BLM|AZ|AZYUD|Fortuna||C923|3|7|05/04/2001 16:00|05/04/2001 16:30|05/04/2001 17:00|0.1||NAD83|32.6853|-114.3944|1|0|0|L|07|Complete +100361|BLM|AZ|AZYUD|Levee||C924|3|7|05/06/2001 18:00|05/06/2001 18:15|05/06/2001 18:30|0.1||NAD83|32.7175|-114.5727|1|0|0|L|08|Complete +100513|BLM|AZ|AZYUD|Trampas||C925|3|7|05/20/2001 17:30|05/21/2001 10:00|05/21/2001 11:00|0.2||NAD83|34.6206|-114.4419|1|0|6|L|04|Complete +100770|BLM|AZ|AZYUD|Campfire 2||C926|1|1|05/25/2001 15:00|05/25/2001 15:30|05/25/2001 15:30|0.1|2|NAD83|32.8192|-114.4883|1|0|0|L|01|Complete +100514|BLM|AZ|AZYUD|Gene||C927|1|1|05/26/2001 10:00|05/26/2001 11:00|05/26/2001 12:00|1.0|9|NAD83|34.3100|-114.1408|1|0|0|L|01|Complete +101177|BLM|AZ|AZYUD|Pipeline||C928|3|7|06/01/2001 13:55|06/01/2001 14:02|06/01/2001 16:00|6.0||NAD83|34.7014|-114.4841|1|0|2|L|04|Complete +101178|BLM|AZ|AZYUD|PMA ASSIST||C929|3|7|06/08/2001||||||||||||02|Complete +101179|BLM|AZ|AZYUD|Hay||C930|1|1|06/10/2001 19:00|06/10/2001 20:00|06/11/2001 02:00|1.0|9|NAD83|33.9964|-114.3469|1|0|0|L|01|Complete +101180|BLM|AZ|AZYUD|Burns||C931|3|7|06/11/2001 16:00||||||||||||02|Complete +101199|BLM|AZ|AZYUD|Gould||C932|3|7|06/12/2001 08:00|06/12/2001 08:15|06/12/2001 09:30|1.0||NAD83|34.1003|-114.3419|1|0|0|L|02|Complete +100771|BLM|AZ|AZYUD|Bard||C933|3|7|06/12/2001 09:00|06/12/2001 12:00|06/13/2001 18:00|350.0||NAD83|32.8134|-114.5805|1|0|0|L|02|Complete +101200|BLM|AZ|AZYUD|Tsosie||C934|3|7|06/13/2001 21:00|06/13/2001 23:00|06/14/2001 11:00|5.0||NAD83|33.8595|-114.3477|1|0|0|L|02|Complete +101202|BLM|AZ|AZYUD|Bluewater||C935|3|7|06/16/2001 22:00|06/16/2001 22:30|06/17/2001 03:00|3.0||NAD83|34.1675|-114.2694|1|0|0|L|02|Complete +101208|BLM|AZ|AZYUD|Avi 2||C937|3|7|06/17/2001 09:00|06/17/2001 09:20|06/17/2001 13:00|0.1||NAD83|34.9894|-114.6252|1|0|0|L|02|Complete +101243|BLM|AZ|AZYUD|Beach||C938|3|7|06/18/2001 15:00|06/18/2001 15:00|06/18/2001 21:00|3.0||NAD83|32.7820|-114.5336|1|0|0|L|02|Complete +101248|BLM|AZ|AZYUD|Mtn View||C940|3|7|06/20/2001 10:00|06/20/2001 10:27|06/20/2001 11:10|0.1||NAD83|34.9386|-114.5797|1|1|0|J|02|Complete +101245|BLM|AZ|AZYUD|Gorge||C939|3|7|06/24/2001 20:10|06/24/2001 22:30|06/25/2001 15:00|200.0||NAD83|34.7022|-114.4719|1|0|2|L|04|Complete +101251|BLM|AZ|AZYUD|Alamo||C941|3|7|06/26/2001 18:00|06/26/2001 18:20|06/26/2001 18:30|1.0||NAD83|32.7203|-114.7241|1|0|0|L|02|Complete +101206|BLM|AZ|AZYUD|Morelos||C936|1|1|06/27/2001 16:00|06/27/2001 16:20|06/29/2001 18:00|15.5|9|NAD83|32.7009|-114.7277|1|0|0|L|01|Complete +104175|BLM|AZ|AZYUD|Rodeo||C942|3|7|06/29/2001 15:00|06/29/2001 15:00|06/29/2001 15:30|1.0||NAD83|34.1314|-114.3227|1|0|0|L|02|Incomplete +104176|BLM|AZ|AZYUD|Avi 3||C943|3|7|06/30/2001 11:25|06/30/2001 11:29|07/02/2001 11:30|2.5||NAD83|35.0186|-114.6461|1|0|0|L|02|Complete +101253|BLM|AZ|AZYUD|Wenden||C944|3|7|07/01/2001 13:00|||2.0|||||||||07|Complete +101252|BLM|AZ|AZYUD|Yuma Lakes||C945|3|7|07/04/2001 21:00|07/04/2001 21:00|07/04/2001 23:00|1.5||NAD83|32.7423|-114.4452|1|0|0|L|08|Complete +105653|BLM|AZ|AZYUD|4th Ave||C946|3|7|07/14/2001||||||||||||07|Complete +104177|BLM|AZ|AZYUD|7th Ave||C947|3|7|07/25/2001 14:00|07/25/2001 14:05|07/25/2001 17:30|2.0||NAD83|34.0525|-114.3644|1|0|0|L|02|Complete +104179|BLM|AZ|AZYUD|Poston||C948|3|7|08/05/2001 00:00|08/05/2001 00:30|08/05/2001 05:00|1.0||NAD83|33.9939|-114.4066|1|0|0|L|02|Incomplete +104180|BLM|AZ|AZYUD|Gould 2||C950|3|7|08/06/2001 15:30|08/06/2001 15:30|08/06/2001 17:30|1.0||NAD83|34.1006|-114.3483|1|0|0|L|02|Incomplete +105655|BLM|AZ|AZYUD|Draper||C951|3|7|08/08/2001||||||||||||04|Complete +104181|BLM|AZ|AZYUD|Gold||C953|1|1|08/11/2001 14:00|08/11/2001 14:00|08/11/2001 15:00|0.1|9|NAD83|33.6781|-114.0686|1|0|0|L|01|Complete +105656|BLM|AZ|AZYUD|Redondo||C954|1|1|08/11/2001 17:00|08/11/2001 17:20|08/11/2001 19:00|1.0|9|NAD83|32.7450|-114.4863|1|0|0|B|01|Complete +104184|BLM|AZ|AZYUD|Rockhouse||C955|3|7|08/12/2001 20:30|08/12/2001 21:00|08/13/2001 00:00|1.0||NAD83|34.2211|-114.2036|1|0|0|L|02|Complete +105657|BLM|AZ|AZYUD|Gadsden 2||C956|1|1|08/20/2001 17:30|08/20/2001 17:50|08/20/2001 19:15|0.1|9|NAD83|32.5328|-114.8033|1|0|0|B|01|Complete +107059|BLM|AZ|AZYUD|AVI4||C957|3|7|09/03/2001 20:00|09/03/2001 20:00|09/03/2001 20:30|1.0||NAD83|35.0161|-114.6364|1|3|0||04|Incomplete +105658|BLM|AZ|AZYUD|Cemetary||C958|3|7|09/07/2001||||||||||||02|Complete +105659|BLM|AZ|AZYUD|Co 10th||C959|3|7|09/11/2001||||||||||||07|Complete +105919|BLM|AZ|AZYUD|No Name||C960|3|7|09/11/2001 07:30|09/11/2001 07:30|09/17/2001 16:00|1.5||NAD83|33.9803|-114.4697|1|0|0|B|02|Complete +105922|BLM|AZ|AZYUD|McCabe||C723|3|7|09/27/2001 09:30|09/27/2001 10:00|09/27/2001 12:00|2.5||NAD83|33.9534|-114.5036|1|1|0|B|02|Complete +112934|BLM|AZ|AZYUD|Monitoring||CD15|4|1|10/01/2001 10:00||10/01/2002|1040.0||NAD83|32.7020|-114.6027|||||01|Complete +110594|BLM|AZ|AZYUD|Long Pond||CD04|4|7|10/15/2001 10:00||10/17/2002|257.0||NAD83|33.3686|-114.6719|||||04|Complete +107347|BLM|AZ|AZYUD|LgPdCrnRst||CD04|4|7|10/19/2001 06:30|||||NAD83|33.3686|-114.7002|1|0|0||04|Complete +107345|BLM|AZ|AZYUD|Tpk Msh U3||CD03|4|7|11/07/2001 10:00|||||NAD83|34.7917|-114.5175|1|0|0|L|04|Complete +110593|BLM|AZ|AZYUD|Topock 1||CD03|4|7|11/08/2001 10:00||11/10/2001|387.0||NAD83|34.8250|-114.5186|||||04|Complete +107060|BLM|AZ|AZYUD|County7||C726|3|7|11/20/2001 08:49|11/20/2001 09:00|11/20/2001 10:30|0.1|1||||1|0|0|A|02|Complete +107061|BLM|AZ|AZYUD|Patrick||C728|3|7|12/05/2001 08:00|12/05/2001 08:15|12/05/2001 11:30|1.5|||||1|0|0||02|Complete +107062|BLM|AZ|AZYUD|slide||C729|3|7|12/10/2001 08:30|12/10/2001 08:30|12/10/2001 09:30|||NAD83|34.0378|-114.1677|1|0|0|B|02|Complete +107063|BLM|AZ|AZYUD|Burns II||C731|3|7|12/10/2001 10:00|12/10/2001 10:00|12/10/2001 10:30|1.0|||||1|0|0|A|02|Complete +107064|BLM|AZ|AZYUD|Agnes Wils||C733|3|7|12/25/2001 15:00|12/25/2001 15:15||1.0||NAD83|34.0475|-114.4391|1|0|0|A|02|Complete +107360|BLM|AZ|AZYUD|CURTIS||C734|3|7|01/02/2002 08:00|01/02/2002 08:15|01/02/2002 12:00|0.5||NAD83|34.1247|-114.2991|1|0|0|L|02|Complete +107896|BLM|AZ|AZYUD|CLEAR LAKE||C736|3|7|01/03/2002|||||NAD83|33.0353|-114.0241|||||04|Complete +107361|BLM|AZ|AZYUD|STACK||C735|3|7|01/03/2002 07:30|01/03/2002 07:30|01/03/2002|0.5||NAD83|34.0395|-114.3825|2|0|0|L|02|Complete +107362|BLM|AZ|AZYUD|NO NAME||C737|3|7|01/06/2002 14:30|01/06/2002 16:00|01/06/2002 16:05|0.1||NAD83|32.6298|-114.6380|1|0|0|L|08|Complete +107898|BLM|AZ|AZYUD|HIPPY||C739|3|7|01/08/2002|||||NAD83|32.3798|-114.7086|||||02|Complete +107901|BLM|AZ|AZYUD|COUNTY 18||C738|3|7|01/08/2002||||||||||||08|Complete +107903|BLM|AZ|AZYUD|WENDEN CPX||C741|3|7|01/10/2002|||||NAD83|33.8195|-113.5388|||||07|Complete +107900|BLM|AZ|AZYUD|LITTLE||C740|1|6|01/10/2002 13:18|01/10/2002 13:25|01/11/2002 12:00|2.0|9|NAD83|34.0972|-114.3505|1|0|0|A|02|Complete +107908|BLM|AZ|AZYUD|HOMEBREW||C743|1|6|01/11/2002 08:00|01/11/2002 08:05|01/11/2002 12:00|2.0|9|NAD83|34.0925|-114.3088|1|0|0|A|02|Complete +107364|BLM|AZ|AZYUD|CROSSING||C742|1|1|01/12/2002 00:30|01/12/2002 08:45|01/13/2002 09:00|0.1|9|NAD83|32.5612|-114.7908|1|0|0|L|01|Complete +107365|BLM|AZ|AZYUD|CAMP MOHVE||C744|3|7|01/16/2002 16:30|01/16/2002 16:45|01/16/2002 20:10|2.0||NAD83|33.0248|-114.6269|1|0|0|L|02|Complete +107366|BLM|AZ|AZYUD|FOSTER||C745|3|7|01/18/2002 11:30|01/18/2002 11:40|01/18/2002 12:30|0.1||NAD83|32.7687|-114.6547|1|0|0|L|02|Complete +107910|BLM|AZ|AZYUD|CANAL||C746|3|7|01/19/2002||||||||||||08|Complete +107367|BLM|AZ|AZYUD|HILL||C747|1|1|01/22/2002 14:00|01/22/2002 14:45|01/22/2002 16:30|0.5|9|NAD83|32.5598|-114.7894|1|0|0|L|01|Complete +107368|BLM|AZ|AZYUD|WAKEUP||C748|3|7|01/24/2002 05:00|01/24/2002 05:30|01/24/2002 09:00|0.5||NAD83|32.6181|-114.6386|1|0|0|L|08|Complete +107369|BLM|AZ|AZYUD|BUS||C749|3|7|01/28/2002 10:30|01/28/2002 11:00|01/28/2002 12:45|0.5||NAD83|32.7559|-114.6863|1|0|0|L|02|Complete +107370|BLM|AZ|AZYUD|WEST LAKE||C750|1|1|01/29/2002 14:00|01/29/2002 14:30|01/29/2002 19:00|25.0|9|NAD83|32.8809|-114.4805|1|0|0|L|01|Complete +107349|BLM|AZ|AZYUD|Mittry N||CD01|4|1|01/30/2002 10:00||03/30/2002|75.0||NAD83|32.8695|-114.4561|||||01|Complete +107912|BLM|AZ|AZYUD|ZONEASSIST||C751|3|7|02/01/2002||||||||||||06|Complete +107913|BLM|AZ|AZYUD|STUMP||C752|1|1|02/05/2002 16:19|02/05/2002 16:22|02/05/2002 18:00|0.1|9|NAD83|33.6578|-114.1836|1|0|0|K|01|Complete +107916|BLM|AZ|AZYUD|COUNTY 21||C753|1|1|02/05/2002 17:15|02/05/2002 17:20|02/05/2002 20:00|2.0|9|NAD83|32.5226|-114.7997|1|0|0|L|01|Complete +107371|BLM|AZ|AZYUD|MOCHEN||C754|3|7|02/07/2002 17:00|02/07/2002 17:30|02/07/2002 20:10|0.5||NAD83|34.0947|-114.3405|1|0|0|L|02|Complete +107931|BLM|AZ|AZYUD|SQUIRREL||C755|1|1|02/14/2002 14:00|02/14/2002 14:00|02/14/2002 16:00|0.1|9|NAD83|33.6581|-114.2688|1|0|0|T|01|Complete +110589|BLM|AZ|AZYUD|PARKER 1||CD16|4|1|02/15/2002 10:00||02/28/2002|40.0||NAD83|34.4197|-114.3061|||||01|Complete +107372|BLM|AZ|AZYUD|OLBULLHEAD||C756|1|1|02/15/2002 17:00|02/15/2002 17:10|02/17/2002 18:00|5.0|9|NAD83|35.1367|-114.5727|1|0|0|L|01|Complete +107373|BLM|AZ|AZYUD|BARBEQUE||C757|3|7|02/18/2002 13:30|02/18/2002 13:30|02/18/2002 14:30|0.5||NAD83|34.0761|-114.4344|1|0|0|L|02|Complete +107933|BLM|AZ|AZYUD|ROCK||C758|3|7|02/24/2002||||||||||||07|Complete +107414|BLM|AZ|AZYUD|WINSOR||C760|3|7|03/02/2002 01:30|03/02/2002 01:30|03/02/2002 08:30|10.0||NAD83|34.5056|-114.3602|1|0|0|L|04|Complete +107975|BLM|AZ|AZYUD|MORELOSDAM||C761|5|5|03/03/2002||||||||||||00|Complete +107415|BLM|AZ|AZYUD|29 MILE||C762|3|7|03/09/2002 12:30|03/09/2002 12:30|03/09/2002 14:14|0.1||NAD83|33.6675|-114.0394|1|0|0|L|07|Complete +107974|BLM|AZ|AZYUD|FALSEALARM||C759|5|1|03/11/2002|||||||||||||Complete +107416|BLM|AZ|AZYUD|KOTEEN||C763|3|7|03/12/2002 10:25|03/12/2002 10:30|03/12/2002 10:45|0.1||NAD83|32.8070|-114.6172|1|0|0|L|02|Complete +107417|BLM|AZ|AZYUD|BORDER||C764|1|1|03/13/2002 08:00|03/13/2002 08:45|03/13/2002 10:00|0.1|9|NAD83|32.5603|-114.7897|1|0|0|L|01|Complete +113625|BLM|AZ|AZYUD|RIVER 1||C765|1|6|03/14/2002 19:15|03/14/2002 19:20|03/14/2002 20:30|0.1|9|NAD83|34.1578|-114.3005|1|0|0|A|02|Complete +110591|BLM|AZ|AZYUD|MECHTRTMT||C721|5|3|03/15/2002||07/31/2002|45.0||NAD83|32.7417|-114.6425|||||02|Complete +107419|BLM|AZ|AZYUD|DIKE||C766|3|7|03/16/2002 14:19|03/16/2002 14:27|03/18/2002 17:30|7.0||NAD83|34.8733|-114.6327|1|0|3|L|02|Complete +107978|BLM|AZ|AZYUD|SVRTY LNF||C767|6|7|03/22/2002||||||||||||05|Complete +107422|BLM|AZ|AZYUD|CATFISH||C768|3|7|03/22/2002 15:08|03/22/2002 15:08|03/23/2002 18:00|0.3||NAD83|34.5206|-114.3886|1|0|0|L|02|Complete +107423|BLM|AZ|AZYUD|GAGING||C769|3|7|03/22/2002 19:30|03/22/2002 21:00|03/22/2002 23:00|1.0||NAD83|32.6634|-114.7475|1|0|0|L|08|Complete +107424|BLM|AZ|AZYUD|ALGODONES||C770|3|7|03/23/2002 01:00|03/23/2002 02:35|03/23/2002 10:00|8.0||NAD83|32.7287|-114.7161|1|0|0|L|02|Complete +107428|BLM|AZ|AZYUD|GORDON||C771|3|7|03/23/2002 18:30|03/23/2002 18:45|03/23/2002 20:26|5.0||NAD83|34.9314|-114.6225|1|0|0|L|02|Complete +107429|BLM|AZ|AZYUD|MITTRY||C772|1|1|03/24/2002 11:30|03/24/2002 12:00|03/24/2002 19:00|10.0|9|NAD83|32.8200|-114.4819|1|0|0|L|01|Complete +107979|BLM|AZ|AZYUD|JACKRABBIT||C773|3|7|03/28/2002|||||NAD83|32.6337|-114.6405|||||08|Complete +107980|BLM|AZ|AZYUD|SHOTGUN||C774|3|7|03/28/2002|||||NAD83|32.6459|-114.6369|||||08|Complete +107430|BLM|AZ|AZYUD|EMBANKMENT||C775|3|7|03/28/2002 13:00|03/28/2002 13:30|03/28/2002 15:15|0.5||NAD83|32.5703|-114.7927|1|0|0|L|02|Complete +107981|BLM|AZ|AZYUD|EASTER||C776|3|7|03/31/2002 17:15|03/31/2002 17:30|04/01/2002 08:00|51.4||NAD83|32.7173|-114.5966|1|0|0|L|02|Complete +107431|BLM|AZ|AZYUD|VISTA||C777|3|7|03/31/2002 18:17|03/31/2002 18:18|03/31/2002 18:26|0.1||NAD83|34.5678|-114.4002|1|1|3|L|04|Complete +107440|BLM|AZ|AZYUD|BOUSE||C778|3|7|04/06/2002 21:55|04/06/2002 21:55|04/06/2002 22:00|0.1||NAD83|33.9347|-114.0024|1|4|0|L|08|Complete +107441|BLM|AZ|AZYUD|DRAIN||C779|1|1|04/10/2002 11:00|04/10/2002 11:16|04/10/2002 14:15|1.0|9|NAD83|32.6470|-114.6383|1|0|0|L|01|Complete +107982|BLM|AZ|AZYUD|4TH AVE||C780|3|7|04/13/2002 17:00|04/13/2002 17:30|04/14/2002 08:00|5.6||NAD83|32.7309|-114.6238|1|0|0|L|02|Complete +110590|BLM|AZ|AZYUD|JETTIES||CD17|4|1|04/15/2002 10:00||04/30/2002|35.0||NAD83|32.8189|-114.4672|||||01|Complete +107984|BLM|AZ|AZYUD|MISCRXBURN||C781|5|2|04/22/2002||||||||||||04|Complete +107986|BLM|AZ|AZYUD|BURN||C783|3|7|04/27/2002|||||NAD83|34.0800|-114.4352|||||02|Complete +113629|BLM|AZ|AZYUD|BURN||C852|1|6|04/27/2002 14:45|04/27/2002 16:30|04/27/2002 18:00|2.0|9|NAD83|34.0820|-114.1019|1|0|0|A|02|Complete +107985|BLM|AZ|AZYUD|CORRAL||C782|1|6|04/29/2002 14:55|04/29/2002 15:00|04/29/2002 16:30|0.5|9|NAD83|34.0864|-114.2938|1|0|0|A|02|Complete +107988|BLM|AZ|AZYUD|RIVER BANK||C784|1|1|05/06/2002 12:00|05/06/2002 12:10|05/06/2002 18:00|1.0|9|NAD83|32.4995|-114.8100|1|0|0|A|01|Complete +107989|BLM|AZ|AZYUD|ROADSIDE||C785|3|7|05/10/2002|||||NAD83|34.9131|-114.5983|||||04|Complete +112704|BLM|AZ|AZYUD|MCVEY||C787|3|7|05/11/2002|||||NAD83|34.0970|-114.3500|1|0|0|L|02|Complete +112701|BLM|AZ|AZYUD|LOST||C786|1|6|05/11/2002 09:12|05/11/2002 09:13|05/11/2002 12:00|0.3|9|NAD83|33.6456|-113.7680|1|0|0|L|02|Complete +112705|BLM|AZ|AZYUD|KNOX||C788|3|7|05/12/2002|||||NAD83|34.7658|-114.4980|1|0|0|L|04|Complete +112706|BLM|AZ|AZYUD|RESEVOIR||C789|1|6|05/18/2002 10:30|05/18/2002 10:35|05/18/2002 18:00|1.0|9|NAD83|34.0975|-114.2997|1|0|0|L|02|Complete +112707|BLM|AZ|AZYUD|RESEVOIR 2||C790|3|7|05/19/2002|||||NAD83|34.0956|-114.2986|1|0|0|L|02|Complete +113592|BLM|AZ|AZYUD|SYPHON||C793|1|1|05/19/2002 15:40|05/19/2002 15:47|05/19/2002 18:00|0.1|9|NAD83|32.7117|-114.5486|1|0|0|A|01|Complete +112709|BLM|AZ|AZYUD|JACKRBTSTW||C791|1|2|05/20/2002 22:30|05/20/2002 22:45|05/21/2002 06:00|0.1|9|NAD83|32.6337|-114.6405|1|0|0|L|01|Complete +113624|BLM|AZ|AZYUD|GOAT||C792|1|6|05/21/2002 10:40|05/21/2002 10:41|05/21/2002 11:15|2.0|9|NAD83|33.9442|-114.4244|1|0|0|A|02|Complete +113895|BLM|AZ|AZYUD|TREE||C794|3|7|05/22/2002|05/22/2002||||NAD83|32.6348|-114.7688|1|0|0|B|02|Complete +113591|BLM|AZ|AZYUD|MEMORIAL||C795|1|1|05/27/2002 13:20|05/27/2002 13:25|05/27/2002 17:00|1.0|9|NAD83|32.5120|-114.8013|1|0|0|A|01|Complete +113896|BLM|AZ|AZYUD|HIGHWAY||C796|3|7|05/30/2002|05/30/2002||||NAD83|35.0567|-114.6727|1|0|0|B|01|Complete +113897|BLM|AZ|AZYUD|MOHAWK ATK||C797|3|7|05/31/2002|05/31/2002||||NAD83|32.7006|-114.9277|1|0|0|B|07|Complete +113596|BLM|AZ|AZYUD|SAND ISLE||C798|1|1|06/08/2002 14:47|06/08/2002 14:56|06/08/2002 18:33|0.1|2|NAD83|34.3847|-114.2380|1|0|0|B|01|Complete +113898|BLM|AZ|AZYUD|RONAN||C799|1|1|06/09/2002 16:44|06/09/2002 17:15|06/10/2002 14:00|5.0|9|NAD83|32.5589|-114.7894|1|0|0|B|01|Complete +113595|BLM|AZ|AZYUD|REVEG||C800|1|1|06/12/2002 02:52|06/12/2002 02:58|06/12/2002 11:06|5.0|9|NAD83|34.8217|-114.5805|1|0|0|A|01|Complete +113901|BLM|AZ|AZYUD|ROLLOVER||C801|3|7|06/20/2002 18:32|06/20/2002 20:12|06/22/2002 13:48|5.0||NAD83|32.7320|-114.7252|1|0|0|B|02|Complete +113594|BLM|AZ|AZYUD|CARDBOARD||C802|1|1|06/22/2002 09:35|06/22/2002 09:40|06/22/2002 10:49|0.1|9|NAD83|32.7175|-114.5527|1|0|0|A|01|Complete +113588|BLM|AZ|AZYUD|HIPPY||C803|1|5|06/23/2002 14:39|06/23/2002 14:42|07/11/2002 20:22|424.3|9|NAD83|33.3686|-114.7063|1|2|0|N|04|Complete +113903|BLM|AZ|AZYUD|BREAKFAST||C804|3|7|06/28/2002 10:00|06/28/2002 10:15|06/28/2002 10:20|0.1||NAD83|33.9872|-114.3997|1|0|0|B|02|Complete +113904|BLM|AZ|AZYUD|STRUCTURE1||C805|3|7|07/04/2002 13:31|07/04/2002 13:48|07/04/2002 14:07|1.0||NAD83|33.9014|-114.4391|1|0|0|B|02|Complete +113593|BLM|AZ|AZYUD|SHOWER||C808|1|1|07/08/2002 08:00|07/08/2002 08:09|07/08/2002 11:00|0.2|9|NAD83|32.4989|-114.8105|1|0|0|A|01|Complete +113905|BLM|AZ|AZYUD|I 8||C806|3|7|07/11/2002 14:45|07/11/2002 15:29|07/11/2002 15:40|0.3||NAD83|32.6909|-114.5913|1|0|0|B|07|Complete +113626|BLM|AZ|AZYUD|NO PAGER||C807|1|6|07/13/2002 14:00|07/13/2002 14:05|07/13/2002 18:00|0.1|9|NAD83|34.0845|-114.4316|1|0|0|A|02|Complete +113909|BLM|AZ|AZYUD|BEEHIVE||C810|3|7|07/17/2002 16:17|07/17/2002|07/17/2002|0.1||NAD83|32.8117|-114.6938|1|0|0|B|08|Complete +113906|BLM|AZ|AZYUD|MP 4||C809|3|7|07/18/2002 11:57|07/18/2002|07/18/2002 12:25|0.1||NAD83|32.6909|-114.5911|1|0|0|B|07|Complete +113924|BLM|AZ|AZYUD|PLANTATION||C811|3|7|07/21/2002 12:33|07/21/2002 12:46|07/21/2002 14:20|0.5||NAD83|34.8514|-114.5536|1|0|0|B|02|Complete +113926|BLM|AZ|AZYUD|BUCKET||C812|3|7|07/24/2002 14:57|07/24/2002||||NAD83|32.6195|-114.5763|1|0|0|B|08|Complete +113605|BLM|AZ|AZYUD|BURIAL||C814|1|6|07/28/2002 23:39|07/29/2002 23:45|07/30/2002 00:24|0.3|9|NAD83|34.8581|-114.5983|1|0|0|A|02|Complete +113929|BLM|AZ|AZYUD|BEACH||C813|3|7|07/29/2002||||||||1|0|0|B|02|Complete +113599|BLM|AZ|AZYUD|MIDNIGHT||C815|1|1|07/31/2002 22:45|07/31/2002 22:57|08/01/2002 18:00|1.0|2|NAD83|32.5642|-114.7947|1|0|0|A|01|Complete +113627|BLM|AZ|AZYUD|POLK||C816|1|1|08/01/2002 13:29|08/01/2002 14:36|08/01/2002 19:45|0.1|9|NAD83|32.6967|-114.9072|1|0|0|A|01|Complete +113930|BLM|AZ|AZYUD|LEVY||C817|3|7|08/03/2002 13:50|08/03/2002 14:03|08/03/2002|5.0||NAD83|32.7189|-114.5730|1|0|0|B|07|Complete +113598|BLM|AZ|AZYUD|GADSDEN||C818|1|1|08/04/2002 16:20|08/04/2002 16:25|08/04/2002 18:50|0.1|9|NAD83|32.5614|-114.7902|1|0|0|A|01|Complete +113931|BLM|AZ|AZYUD|CRASUPPORT||C819|6|7|08/08/2002||||||||||||02|Complete +113934|BLM|AZ|AZYUD|FYASUPPORT||C820|6|7|08/08/2002||||||||||||02|Complete +113935|BLM|AZ|AZYUD|GOULD||C821|3|7|08/13/2002 14:27|08/13/2002 14:36|08/13/2002 15:13|0.8||NAD83|34.1036|-114.3580|1|0|0|B|02|Complete +113628|BLM|AZ|AZYUD|PORT||C822|1|5|08/13/2002 14:35|08/13/2002 14:50|08/13/2002 17:44|0.3|9|NAD83|32.7331|-114.7230|1|0|0|A|01|Complete +113938|BLM|AZ|AZYUD|MCDANIEL||C823|1|6|08/15/2002 10:20|08/15/2002 10:24|08/15/2002 11:01|0.1|6|NAD83|34.9636|-114.5983|1|0|0|B|02|Complete +113604|BLM|AZ|AZYUD|ANNVERSITY||C824|1|1|08/15/2002 11:00|08/15/2002 11:24|08/15/2002 16:11|5.0|9|NAD83|32.5034|-114.8072|1|0|0|A|01|Complete +113597|BLM|AZ|AZYUD|OXBOW||C825|1|1|08/17/2002 19:45|08/17/2002 20:02|08/18/2002 01:00|0.1|9|NAD83|33.3717|-114.7066|1|0|0|A|01|Complete +113603|BLM|AZ|AZYUD|BOARDER||C831|1|1|08/31/2002 15:32|08/31/2002 16:00|09/01/2002 12:00|2.0|9|NAD83|32.6531|-114.7586|1|0|0|A|01|Complete +113623|BLM|AZ|AZYUD|ROGICH||C837|1|6|09/12/2002 09:00|09/12/2002 09:30|09/13/2002 12:00|3.0|9|NAD83|32.0473|-114.3566|1|0|0|A|02|Complete +113602|BLM|AZ|AZYUD|CROSSING||C841|1|1|09/28/2002 11:51|09/28/2002 12:00|09/28/2002 14:32|10.0|9|NAD83|32.7062|-114.7330|1|0|0|A|01|Complete +113600|BLM|AZ|AZYUD|DCOVE||C842|1|1|09/28/2002 12:26|09/28/2002 12:35|09/28/2002 17:00|0.1|2|NAD83|32.7292|-114.6602|1|0|0|A|01|Complete +113630|BLM|AZ|AZYUD|INIDIAN SC||C845|1|6|10/24/2002 00:01|10/24/2002 00:30|10/24/2002 14:00|1.0|9|NAD83|34.0484|-114.3655|1|0|0|A|02|Complete +113683|BLM|AZ|AZYUD|MESQUITE||C851|1|6|11/19/2002 16:30|11/19/2002 16:30|11/19/2002 17:00|0.1|9|NAD83|32.7603|-114.6091|1|0|0|A|02|Complete +113834|BLM|AZ|AZYUD|PILE||C855|1|1|12/04/2002 14:30|12/04/2002 15:00|12/04/2002 18:30|0.1|4|NAD83|32.7870|-114.4999|1|0|0|A|01|Incomplete +113876|BLM|AZ|AZYUD|Ctnwd Loop||C857|3|7|12/11/2002 13:50|12/11/2002 14:16|12/11/2002 16:35|0.1||NAD83|32.5620|-114.6738|1|0|0|B|02|Complete +113875|BLM|AZ|AZYUD|County 14||C858|3|7|12/16/2002 15:13|12/16/2002 16:08|12/16/2002 18:11|0.5||NAD83|32.6181|-114.7880|1|0|0|B|02|Complete +114202|BLM|AZ|AZYUD|FalseAlarm||C862|5|1|01/01/2003 08:00||||||||||||01|Complete +114203|BLM|AZ|AZYUD|Sunday||C863|3|7|01/05/2003 10:00|01/05/2003 10:15|01/05/2003 12:00|1.0||NAD83|32.6428|-114.7650|1|0|0|B|02|Complete +114204|BLM|AZ|AZYUD|ZoneAssist||C864|3|7|01/07/2003 08:00||||||||||||01|Complete +114205|BLM|AZ|AZYUD|Lettuce||C865|3|7|01/10/2003 10:24|01/10/2003 10:58|01/10/2003 14:00|0.1||NAD83|32.5920|-114.7997|1|0|0|B|02|Complete +114206|BLM|AZ|AZYUD|Avenue D||C866|3|7|01/29/2003 16:37|01/29/2003 16:43|01/30/2003 09:30|2.0||NAD83|32.5631|-114.6752|1|0|0|B|02|Complete +114207|BLM|AZ|AZYUD|Kazeenova||C867|3|7|01/31/2003 15:43|01/31/2003 15:44|01/31/2003|1.0||NAD83|34.1475|-114.3097|1|0|0|B|02|Complete +114208|BLM|AZ|AZYUD|Gordon||C868|3|7|02/01/2003 13:13|02/01/2003 14:21|02/05/2003 08:08|20.0||NAD83|34.9619|-114.6205|1|0|0|B|02|Complete +114209|BLM|AZ|AZYUD|Trailor||C869|3|7|02/04/2003 15:59||||||||1|0|0||02|Complete +114201|BLM|AZ|AZYUD|Mittry||CD01|4|8|02/19/2003 10:00|||||NAD83|32.8678|-114.4549|1|0|0|L|01|Incomplete +114210|BLM|AZ|AZYUD|Rock Pit||C870|1|1|02/22/2003 00:22|02/22/2003 00:22|02/22/2003 00:22|0.3|9|NAD83|32.8198|-114.4874|1|0|0|B|01|Complete +114211|BLM|AZ|AZYUD|Haybale||C871|1|1|02/24/2003 11:10|02/24/2003 11:40|02/24/2003 18:00|0.1|9|NAD83|32.8214|-114.4880|1|0|0|B|01|Complete +114212|BLM|AZ|AZYUD|Gould||C873|3|7|03/07/2003 11:00|03/07/2003 11:40|03/10/2003 18:00|4.0||NAD83|34.1014|-114.3588|1|0|0|B|02|Complete +114213|BLM|AZ|AZYUD|Mittry||C874|1|1|03/12/2003 10:22|03/12/2003 10:57|03/16/2003 18:00|1313.0|5|NAD83|32.8609|-114.4494|1|1|0|B|01|Complete +114214|BLM|AZ|AZYUD|Lthouse Rk||C875|3|7|03/12/2003 18:00|03/13/2003 08:00|03/15/2003 13:30|274.0||NAD83|33.1667|-114.6769|1|0|0|B|04|Complete +114216|BLM|AZ|AZYUD|Friday||C877|1|1|03/14/2003 11:55|03/14/2003 13:41|03/15/2003 13:49|0.3|9|NAD83|32.5078|-114.8075|1|0|0|B|01|Complete +114215|BLM|AZ|AZYUD|County 22||C876|1|1|03/14/2003 12:57|03/14/2003 13:41|03/15/2003 13:49|0.5|9|NAD83|32.5098|-114.8077|1|0|0|B|01|Complete +114217|BLM|AZ|AZYUD|Radium||C878|3|7|03/24/2003 13:14|03/24/2003 14:09||||NAD83|32.7612|-114.0291|1|0|0|B|08|Complete +114218|BLM|AZ|AZYUD|WintAssist||C879|3|7|03/25/2003 12:20|03/25/2003 12:20|||||||1|0|0|B|08|Complete +114239|BLM|AZ|AZYUD|Aha Quin||C880|3|7|03/29/2003 19:23|03/29/2003 19:41|04/02/2003 08:00|20.0||NAD83|33.9264|-114.5305|1|0|0|B|02|Complete +114241|BLM|AZ|AZYUD|West I10||C882|3|7|03/31/2003 11:52|03/31/2003 11:54|03/31/2003 13:17|1.8||NAD83|33.6684|-114.0397|1|1|5|B|07|Complete +114240|BLM|AZ|AZYUD|Andrade||C881|3|7|04/01/2003 04:02|04/01/2003 05:14||||NAD83|32.7195|-114.7200|1|0|0|B|02|Complete +114242|BLM|AZ|AZYUD|Flamingo||C883|3|7|04/05/2003 00:30|04/05/2003 01:12|04/08/2003 13:18|3.0||NAD83|35.1631|-114.5677|1|0|0|B|07|Complete +114243|BLM|AZ|AZYUD|Late4Dnner||C884|3|7|04/07/2003 20:37|04/07/2003 21:32||||NAD83|33.3525|-114.6977|1|0|0|B|04|Complete +114282|BLM|AZ|AZYUD|Burns||C885|3|7|04/09/2003 11:55|04/09/2003 11:55|04/11/2003 09:20|3.0||NAD83|34.0936|-114.3072|1|0|0|B|02|Complete +114283|BLM|AZ|AZYUD|GoodFriday||C886|1|1|04/18/2003 15:27|04/18/2003 16:04|04/19/2003 12:48|10.0|9|NAD83|32.5584|-114.7930|1|0|0|B|01|Complete +114284|BLM|AZ|AZYUD|Yuma Lake||C887|3|7|04/25/2003 10:12|04/25/2003 10:12||||NAD83|32.7248|-114.4694|1|0|0|B|08|Complete +114285|BLM|AZ|AZYUD|Rekindle||C888|3|7|04/25/2003 10:23|04/25/2003 10:36||||NAD83|32.7670|-114.5813|1|0|0|B|07|Complete +114286|BLM|AZ|AZYUD|Trash II||C889|3|7|04/28/2003 15:30|04/28/2003 15:45|04/28/2003 20:00|0.3||NAD83|32.6312|-114.7125|1|0|0|B|02|Complete +115941|BLM|AZ|AZYUD|Lost||C890|3|7|04/29/2003 13:50|04/29/2003 15:32|04/30/2003 09:08|0.6||NAD83|32.7270|-114.5802|1|0|0||07|Complete +120176|BLM|AZ|AZYUD|Avi 2||C891|3|7|05/02/2003 22:34|05/02/2003 22:34|05/03/2003 10:32|2.5||NAD83|35.0236|-114.6408|1|0|0|B|02|Complete +114704|BLM|AZ|AZYUD|Spike||C892|1|1|05/04/2003 18:58|05/04/2003 20:30|05/05/2003 08:40|0.1|5|NAD83|33.0359|-115.1297|1|1|0|B|01|Complete +119173|BLM|AZ|AZYUD|Havasu||C893|3|7|05/09/2003 07:45|05/09/2003 07:45|05/09/2003 14:14|||NAD83|34.5150|-114.3669|1|0|8|A|04|Complete +120177|BLM|AZ|AZYUD|7th IndScl||C894|3|7|05/16/2003 01:57|05/16/2003 01:57|05/17/2003 09:15|20.0||NAD83|34.0717|-114.3650|1|0|0|B|02|Complete +115907|BLM|AZ|AZYUD|Wino||C895|1|6|05/19/2003 17:18|05/19/2003 17:26|05/19/2003 19:40|0.2|9|NAD83|32.7378|-114.6177|1|0|0|F|02|Complete +120181|BLM|AZ|AZYUD|Agnes||C896|3|7|05/22/2003 13:00|05/22/2003 13:00|05/25/2003 15:00|20.0||NAD83|34.0433|-114.4486|1|0|0|B|02|Complete +115905|BLM|AZ|AZYUD|Fortuna||C897|3|7|05/24/2003 16:15|05/24/2003 16:19|05/24/2003 17:13|0.1||NAD83|32.7131|-114.4422|1|0|0||08|Complete +115979|BLM|AZ|AZYUD|New Subs||C898|3|7|06/04/2003 18:10|06/04/2003 18:45|06/27/2003 09:16|5.0||NAD83|32.7495|-114.5897|1|0|0||02|Complete +115945|BLM|AZ|AZYUD|Garbage||C899|3|7|06/06/2003 11:34|06/06/2003 11:55|06/06/2003 13:25|0.2||NAD83|32.6312|-114.7127|1|0|0||02|Complete +120183|BLM|AZ|AZYUD|Dyke Road||C900|3|7|06/08/2003 02:20|06/08/2003 03:25||||NAD83|34.9950|-114.6300|1|0|0|B|07|Complete +120184|BLM|AZ|AZYUD|Hay||C901|3|7|06/11/2003 09:00|06/11/2003 09:30|06/12/2003 16:30|457.0||NAD83|34.0517|-114.3738|1|0|0|B|02|Complete +120186|BLM|AZ|AZYUD|River||C902|3|7|06/12/2003 19:22|06/12/2003 19:42|06/22/2003 10:40|491.0||NAD83|35.0344|-114.6369||0|0|B|02|Complete +115982|BLM|AZ|AZYUD|Mission||C903|1|6|06/17/2003 20:22|06/17/2003 20:30|06/21/2003 16:00|65.0|5|NAD83|32.7317|-114.6091|1|0|0|B|02|Complete +120187|BLM|AZ|AZYUD|Wilson||C904|3|7|06/19/2003 12:07|06/19/2003 12:07|06/22/2003 12:00|381.0||NAD83|34.0506|-114.4441|1|0|0|B|02|Complete +115980|BLM|AZ|AZYUD|Ironwood||C905|3|7|06/20/2003 08:21|06/20/2003 08:36|06/21/2003 16:00|0.1||NAD83|32.7517|-114.5991|1|0|0||02|Complete +120188|BLM|AZ|AZYUD|Not Again||C906|3|7|06/20/2003 16:41|06/20/2003 16:41|06/27/2003 13:00|47.0||NAD83|34.0717|-114.3736|1|0|0|B|02|Complete +120189|BLM|AZ|AZYUD|Ehren||C907|3|7|06/20/2003 19:40|06/20/2003 19:40|06/21/2003 19:30|10.0||NAD83|33.6867|-114.4744|1|0|0|B|02|Complete +120190|BLM|AZ|AZYUD|Farewell||C908|3|7|06/21/2003 20:02|06/21/2003 20:02|06/25/2003 16:30|22.0||NAD83|34.9506|-114.6291|1|0|0|B|02|Complete +115981|BLM|AZ|AZYUD|Que Ball||C909|3|7|06/22/2003 16:09|06/22/2003 16:21|06/22/2003 19:27|5.0||NAD83|32.7212|-114.7175|1|0|0||07|Complete +120191|BLM|AZ|AZYUD|Wrench||C910|3|7|06/29/2003 00:58|06/29/2003 00:58|06/29/2003 10:39|0.3||NAD83|34.9250|-114.5711|1|0|0|B|02|Complete +115584|BLM|AZ|AZYUD|ADOT Asst||C913|1|6|07/02/2003 13:35|07/02/2003 14:20|07/02/2003 14:35|0.1|9|NAD83|32.6520|-114.1905|1|0|0|A|07|Complete +115904|BLM|AZ|AZYUD|Wood Iron||C912|1|6|07/02/2003 22:26|07/02/2003 22:45|07/02/2003 22:45|1.0|9|NAD83|32.7520|-114.5994|1|0|0|A|02|Complete +120192|BLM|AZ|AZYUD|Fisher||C911|3|7|07/03/2003 03:19|07/03/2003 03:19|07/04/2003 13:00|10.0||NAD83|34.0486|-114.3630|1|0|0|B|02|Complete +120202|BLM|AZ|AZYUD|Squaw||C916|3|7|07/04/2003 15:00|07/04/2003 15:00|07/15/2003 15:00|5.0||NAD83|34.1689|-114.2866|1|0|0|B|02|Complete +120193|BLM|AZ|AZYUD|Slough||C914|1|1|07/04/2003 16:38|07/04/2003 16:40|07/04/2003 16:40|0.1|9|NAD83|34.7528|-114.5361|1|0|0|B|01|Complete +120201|BLM|AZ|AZYUD|Indepndce||C915|3|7|07/04/2003 18:36|07/04/2003 18:45|07/08/2003 10:21|497.0||NAD83|34.9689|-114.6364|1|0|0|B|02|Complete +120206|BLM|AZ|AZYUD|Arrow||C917|3|7|07/10/2003 12:00|07/10/2003 12:00|07/20/2003|0.5||NAD83|34.0439|-114.3480|1|0|0|B|02|Complete +120207|BLM|AZ|AZYUD|Lightning||C918|3|7|07/16/2003 19:00|07/16/2003 20:10|07/25/2003 17:03|2180.0||NAD83|35.0058|-114.6614|1|0|0|B|08|Complete +120208|BLM|AZ|AZYUD|Monsoon||C919|3|7|07/18/2003 15:35|07/18/2003 15:35|07/18/2003 16:41|1.0||NAD83|34.1125|-114.3125|1|0|0|B|02|Complete +120214|BLM|AZ|AZYUD|Rk Quarry||C920|1|1|07/27/2003 15:16|07/27/2003 15:40|08/01/2003 10:35|0.1|9|NAD83|32.8025|-114.4949|1|0|0|B|01|Complete +120215|BLM|AZ|AZYUD|Chesapeake||C921|1|1|07/27/2003 20:26|07/27/2003 20:33|07/27/2003 21:26|0.3|9|NAD83|34.4500|-114.2675|1|0|0|B|01|Complete +120327|BLM|AZ|AZYUD|Organic||C923|3|7|08/04/2003|||||||||||||Incomplete +120216|BLM|AZ|AZYUD|Cactus||C922|3|7|08/04/2003 14:00|08/04/2003 14:02|08/05/2003 12:00|1.0||NAD83|32.7345|-114.6455|1|0|0|B|02|Complete +120328|BLM|AZ|AZYUD|Border||C924|1|6|08/07/2003 05:05|08/07/2003 06:31|08/08/2003 16:00|1.0|9|NAD83|32.5595|-114.7894|1|0|0|B|02|Complete +120329|BLM|AZ|AZYUD|Hide nSeek||C925|3|7|08/09/2003 21:30|08/09/2003 22:00|08/09/2003 23:00|0.3||NAD83|32.7520|-114.5986|1|0|0|B|02|Complete +120330|BLM|AZ|AZYUD|Macaroni||C926|3|7|08/12/2003 12:45|08/12/2003 12:56|08/15/2003 17:00|1.0||NAD83|34.7967|-114.5694|1|0|0|B|04|Complete +120334|BLM|AZ|AZYUD|Dead Dog||C927|3|7|08/12/2003 20:22|08/12/2003 20:34|08/13/2003 14:39|0.1||NAD83|32.7506|-114.5922|1|0|0|B|02|Complete +120335|BLM|AZ|AZYUD|Jose||C928|3|7|08/14/2003 20:47|08/14/2003 21:20|08/15/2003 10:42|0.1||NAD83|32.7292|-114.6052|1|0|0|B|02|Complete +120336|BLM|AZ|AZYUD|Brush||C929|3|7|08/14/2003 21:51|08/14/2003 22:15|08/15/2003 10:26|0.2||NAD83|32.7500|-114.5952|1|0|0|B|02|Complete +120337|BLM|AZ|AZYUD|Quail||C930|3|7|08/15/2003 18:26|08/15/2003 18:41||0.5||NAD83|32.7412|-114.5391|1|0|0|B|02|Complete +120439|BLM|AZ|AZYUD|2nd Alarm||C931|3|7|08/15/2003 18:30|08/15/2003 19:00|08/20/2003 16:26|0.1||NAD83|32.7900|-114.5336|1|0|0|B|02|Complete +120440|BLM|AZ|AZYUD|Sullivan||C932|1|1|08/17/2003 20:00|08/17/2003 20:30|08/18/2003 08:22|2.0|9|NAD83|34.7778|-114.5661|1|0|0|B|01|Complete +120441|BLM|AZ|AZYUD|Easter Day||C933|3|7|08/21/2003 19:35|08/21/2003 20:14|08/22/2003 16:00|0.5||NAD83|32.7350|-114.5816|1|0|0|B|07|Complete +120445|BLM|AZ|AZYUD|Antique||C934|3|7|08/22/2003 18:00|08/22/2003 18:28|08/27/2003 10:30|0.5||NAD83|32.7331|-114.5825|1|0|0|B|07|Complete +120447|BLM|AZ|AZYUD|Hiding||C935|1|1|08/22/2003 23:00|08/22/2003 23:06|08/23/2003 16:00|0.1|9|NAD83|32.7275|-114.5555|1|0|0|B|01|Complete +120449|BLM|AZ|AZYUD|Harvey||C936|3|7|08/23/2003 12:39|08/23/2003 13:57|08/24/2003 12:00|55.0||NAD83|34.5739|-114.4191|1|0|0|B|04|Complete +120452|BLM|AZ|AZYUD|Bl Wllms||C937|3|7|08/26/2003 00:01|08/26/2003 00:01|08/30/2003 15:00|50.0|1|NAD83|34.2925|-114.1044|1|0|0|B|04|Complete +120456|BLM|AZ|AZYUD|Arnold||C938|1|6|08/30/2003 18:00|08/30/2003 18:30|09/01/2003 14:47|2.0|9|NAD83|32.7531|-114.5902|1|0|0|B|02|Complete +120462|BLM|AZ|AZYUD|Knight||C939|3|7|09/04/2003 20:30|09/04/2003 21:00|09/05/2003 10:58|1.0|1|NAD83|34.7997|-114.5708|1|0|0|B|04|Complete +120463|BLM|AZ|AZYUD|Davis Lake||C940|3|7|09/06/2003 16:15|09/07/2003 11:00|09/08/2003 13:03|3.0||NAD83|33.2892|-114.7138|1|0|0|B|04|Complete +120464|BLM|AZ|AZYUD|Swick||C941|3|7|09/08/2003 14:53|09/08/2003 14:53|09/16/2003 13:38|0.3||NAD83|34.0456|-114.3647|1|0|0|B|02|Complete +120472|BLM|AZ|AZYUD|Pallet||C942|1|1|09/14/2003 15:05|09/14/2003 15:50||||NAD83|32.8025|-114.4972|1|0|0|B|01|Incomplete +120473|BLM|AZ|AZYUD|St George||C943|3|7|09/16/2003 15:00|09/16/2003 15:00|09/24/2003|150.0||NAD83|34.8636|-114.6155|1|0|0|B|02|Complete +120482|BLM|AZ|AZYUD|Patrick Rd||C944|3|7|09/17/2003 08:00|09/17/2003 08:30||||NAD83|34.0134|-114.3844|1|0|0|B|02|Complete +120483|BLM|AZ|AZYUD|Tractor||C945|3|7|09/17/2003 10:10|09/17/2003 10:16||||NAD83|32.7206|-114.5994|1|0|0|B|07|Complete +120484|BLM|AZ|AZYUD|Yuma Lakes||C946|1|1|09/20/2003 11:00|09/20/2003 11:51|09/21/2003 11:00|1.0|9|NAD83|32.7448|-114.4805|1|0|0|B|01|Complete +120485|BLM|AZ|AZYUD|Silva||C947|3|7|09/22/2003 18:45|09/22/2003 18:45|09/22/2003 22:45|10.0||NAD83|34.0245|-114.3725|1|0|0|B|02|Complete +121045|BLM|AZ|AZYUD|Mohawk||AWP3|3|7|10/03/2003 14:47|10/03/2003 16:04|10/05/2003 13:00|10.0||NAD83|32.7823|-114.8452|1|0|0|B|07|Complete +121046|BLM|AZ|AZYUD|Bass||AWP5|1|1|10/06/2003 20:50|10/06/2003 22:02|10/07/2003 16:00|0.2|9|NAD83|32.8195|-114.4822|1|0|0|B|01|Incomplete +121047|BLM|AZ|AZYUD|S 24||AWP6|1|1|10/06/2003 21:30|10/06/2003 22:28|10/07/2003 16:00|1.0|9|NAD83|32.8189|-114.4930|1|0|0|B|01|Incomplete +121048|BLM|AZ|AZYUD|Star||AWP8|3|7|10/10/2003 18:30|10/10/2003 19:31|10/11/2003 16:00|0.4||NAD83|32.8123|-114.5194|1|0|0|B|08|Complete +121049|BLM|AZ|AZYUD|Island||AWS1|3|7|10/15/2003 18:50|10/16/2003 10:20|10/18/2003 16:00|0.3||NAD83|34.4589|-114.3730|1|0|0|B|07|Complete +121050|BLM|AZ|AZYUD|Palmwood||AWV1|1|1|10/16/2003 13:38|10/16/2003 13:50|10/16/2003 15:45|0.1|9|NAD83|32.7231|-114.4524|1|0|0|B|01|Complete +125904|BLM|AZ|AZYUD|FIRE WORKS||AWZ9|3|7|10/18/2003 12:30|10/18/2003 13:57|10/19/2003 09:50|0.3||NAD83|35.0219|-114.6377|1|0|0|B|02|Complete +125905|BLM|AZ|AZYUD|PYRO||AW2D|3|7|10/19/2003 13:45|10/19/2003 14:00|10/19/2003 14:06|0.1||NAD83|35.0169|-114.6380|1|0|0|B|02|Complete +125906|BLM|AZ|AZYUD|FUSEE||AW2N|3|7|10/20/2003 10:09|10/20/2003 10:09|10/24/2003 15:30|0.1||NAD83|34.1500|-114.3052|1|0|0|B|02|Complete +121051|BLM|AZ|AZYUD|Chipper||AW5A|1|1|10/21/2003 10:40|10/21/2003 11:30|10/22/2003 16:00|0.1|9|NAD83|32.8214|-114.4874|1|0|0|B|01|Complete +125907|BLM|AZ|AZYUD|SHORELINE||AXV0|3|7|10/25/2003 20:37|10/26/2003 10:00|10/27/2003 13:38|0.3||NAD83|34.4317|-114.3333|1|0|0|B|02|Complete +121052|BLM|AZ|AZYUD|FalseAlarm||AX2X|5|5|10/29/2003 08:00|||||||||||||Complete +125908|BLM|AZ|AZYUD|LAFOON||AYM3|3|7|11/06/2003 11:54|11/06/2003 11:59|11/07/2003 12:00|0.1||NAD83|34.1247|-114.2983|1|0|0|B|02|Complete +121053|BLM|AZ|AZYUD|Pile||AY7U|3|7|11/28/2003 09:33|11/28/2003 09:36||0.1||NAD83|34.1531|-114.2888|1|0|0|B|08|Complete +121070|BLM|AZ|AZYUD|Bear Cnyn||AY9B|3|7|11/30/2003 16:00|12/01/2003 11:30|12/04/2003 16:00|0.5||NAD83|33.0287|-114.6263|1|0|0|B|07|Complete +121072|BLM|AZ|AZYUD|ASPEN ST||AZB1|3|7|12/05/2003 13:21|12/05/2003 13:29|12/05/2003 13:38|0.5||NAD83|34.9167|-114.6094|1|0|0|B|08|Complete +121073|BLM|AZ|AZYUD|CAR||AZB3|1|6|12/05/2003 13:38|12/05/2003 14:18|12/05/2003 15:30|0.1||NAD83|32.5959|-114.8002|1|0|0|B|02|Complete +121075|BLM|AZ|AZYUD|CANAL||AZB4|3|7|12/05/2003 13:52|12/05/2003 13:52|12/05/2003 14:39|1.0||NAD83|34.9403|-114.6164|1|0|0|B|02|Complete +121076|BLM|AZ|AZYUD|DECEMBER||AZH0|3|7|12/10/2003 21:00|12/10/2003 21:20|12/11/2003 18:00|5.0||NAD83|34.1036|-114.2994|1|0|0|B|02|Complete +121077|BLM|AZ|AZYUD|PALMER||AZL3|3|7|12/16/2003 16:15|12/16/2003 16:24|12/19/2003 11:00|3.0||NAD83|34.1042|-114.4011|1|0|0|B|02|Complete +121078|BLM|AZ|AZYUD|COTTON||AZ1B|3|7|01/07/2004 17:06|01/07/2004 17:30|01/07/2004 18:23|0.3||NAD83|34.9842|-114.1055|1|0|0|B|02|Complete +121079|BLM|AZ|AZYUD|IID||AZ1T|1|1|01/08/2004 19:13|01/08/2004 19:52|01/09/2004 16:00|0.1|9|NAD83|32.8689|-114.4816|1|0|0|B|01|Complete +121080|BLM|AZ|AZYUD|PIT||AZ1U|1|1|01/08/2004 20:39|01/08/2004 21:30|01/09/2004 16:00|0.5|9|NAD83|32.8792|-114.4749|1|0|0|B|01|Complete +121081|BLM|AZ|AZYUD|WATER ST||AZ3M|1|1|01/17/2004 17:41|01/17/2004 17:53|01/21/2004 18:00|0.5|9|NAD83|32.7317|-114.6522|1|0|0|B|01|Complete +121082|BLM|AZ|AZYUD|INDIAN||AZ3P|3|7|01/18/2004 19:58|01/18/2004 20:10|01/23/2004 15:47|0.5||NAD83|32.7653|-114.6469|1|0|0|B|02|Complete +121083|BLM|AZ|AZYUD|CEDAR||AZ39|3|7|01/21/2004 10:40|01/21/2004 11:20|01/21/2004 14:21|0.1||NAD83|32.4962|-114.8122|1|0|0|B|02|Complete +121084|BLM|AZ|AZYUD|AVENUE||AZ4U|3|7|01/23/2004 08:00|01/23/2004 08:05|01/25/2004 18:00|0.1||NAD83|32.7300|-114.6247|1|0|0|B|02|Complete +121085|BLM|AZ|AZYUD|LAME||AZ7R|1|1|02/02/2004 13:59|02/02/2004 14:16|02/03/2004 16:00|0.1|9|NAD83|33.7459|-114.4755|1|0|0|B|01|Complete +121186|BLM|AZ|AZYUD|BUREAU||AZ7S|3|7|02/02/2004 16:45|02/02/2004 16:54||10.0||NAD83|34.8328|-114.5914|1|0|0|B|08|Complete +121086|BLM|AZ|AZYUD|ISLAND||AZ77|3|7|02/04/2004 11:22|02/04/2004 11:25|02/09/2004 18:00|200.0||NAD83|33.0234|-114.6105|1|0|0|B|04|Complete +121087|BLM|AZ|AZYUD|TRANSIENT||AZ8C|1|1|02/05/2004 19:00|02/05/2004 19:35|04/28/2004 15:00|15.0|9|NAD83|32.7314|-114.6508|1|0|0|B|01|Complete +121088|BLM|AZ|AZYUD|WALTER||AZ9B|3|7|02/11/2004 13:13|02/11/2004 14:37|02/13/2004 18:00|40.0||NAD27|33.2261||1|0|0|B|08|Incomplete +121089|BLM|AZ|AZYUD|MLE PST 24||A0C9|1|1|02/20/2004 12:17|02/20/2004 13:25|02/20/2004 16:00|0.1|9|NAD83|32.6506|-114.2486|1|0|0|B|01|Complete +121090|BLM|AZ|AZYUD|LAST DAY||A0QH|1|1|03/15/2004 15:24|03/15/2004 15:52|03/18/2004 18:00|3.0|9|NAD83|32.6423|-114.7647|1|0|0|B|01|Complete +121091|BLM|AZ|AZYUD|RECLAMTION||A0RX|3|7|03/16/2004 19:35|03/16/2004 19:48|03/17/2004 10:00|2.0||NAD83|34.8328|-114.5914|1|0|0|B|08|Complete +121092|BLM|AZ|AZYUD|FENCE||A044|3|7|03/21/2004 14:13|03/21/2004 14:29|03/22/2004 10:00|1.0||NAD83|32.7195|-114.7213|1|0|0|B|02|Complete +121093|BLM|AZ|AZYUD|CO 8TH||A0VG|1|1|03/21/2004 14:56|03/21/2004 15:05|03/21/2004 17:34|0.5|9|NAD83|32.7178|-114.7205|1|0|0|B|01|Complete +121094|BLM|AZ|AZYUD|50 HOMES||A0ZR|3|7|03/24/2004 20:33|03/24/2004 21:00|03/25/2004 02:00|1.5||NAD83|33.9859|-114.3983|1|0|0|B|02|Complete +121095|BLM|AZ|AZYUD|FISH FARM||A02G|3|7|03/25/2004 11:03|03/25/2004 11:20|03/25/2004 18:00|10.0||NAD83|34.0353|-114.3347|1|0|0|B|02|Complete +121097|BLM|AZ|AZYUD|LAST NIGHT||A1JM|1|1|04/09/2004 08:04|04/09/2004 08:36|04/09/2004 16:00|0.5|9|NAD83|32.8184|-114.4777|1|0|0|B|01|Complete +123221|BLM|AZ|AZYUD|CAT||A1LW|1|1|04/11/2004 14:25|04/11/2004 15:26|06/15/2004 15:30|15.0|9|NAD83|32.7287|-114.7136|1|0|0|B|01|Complete +121096|BLM|AZ|AZYUD|BALE||A1L9|1|1|04/12/2004 08:16|04/12/2004 08:44|04/13/2004 16:00|0.1|9|NAD83|32.7623|-114.4105|1|0|0|B|01|Complete +123224|BLM|AZ|AZYUD|MP 45||A169|3|7|04/22/2004 15:25|04/22/2004 16:20|05/20/2004 15:30|0.1||NAD83|32.7025|-113.8919|1|0|0|B|08|Complete +123226|BLM|AZ|AZYUD|DEBRIS 2||A17A|3|7|04/22/2004 15:25|04/22/2004 15:52|04/23/2004 15:30|0.3||NAD83|32.6270|-114.7141|1|0|0|B|02|Complete +121106|BLM|AZ|AZYUD|DEBRIS2||A2HL|3|7|04/27/2004 15:25|04/27/2004 15:45|04/28/2004 16:00|2.0||NAD83|32.6256|-114.7144|1|0|0|B|02|Complete +123228|BLM|AZ|AZYUD|CRISTOBAL||A2PH|3|7|04/30/2004 13:44|04/30/2004 14:45|04/30/2004 15:00|0.1||NAD83|32.6970|-113.9280|1|0|0|B|07|Complete +123230|BLM|AZ|AZYUD|BEND||A2VP|3|7|05/03/2004 20:00|05/03/2004 21:08|05/08/2004 18:00|250.0||NAD83|32.7356|-114.6758|1|0|0|B|02|Complete +121105|BLM|AZ|AZYUD|SWAMP||A21R|3|7|05/06/2004 20:00|05/06/2004 20:30|05/06/2004 22:30|1.0||NAD83|32.7717|-114.6094|1|0|0|B|02|Complete +121104|BLM|AZ|AZYUD|BARD BEACH||A3B7|3|7|05/14/2004 07:10|05/14/2004 08:00|05/14/2004 09:30|1.0||NAD83|32.7964|-114.5333|1|0|0|B|02|Complete +121103|BLM|AZ|AZYUD|TRASH||A3D0|3|7|05/15/2004 04:30|05/15/2004 04:50|05/15/2004 06:30|0.1||NAD83|32.7312|-114.6050|1|0|0|B|02|Complete +123233|BLM|AZ|AZYUD|ROOKIE||A3PB|3|7|05/21/2004 11:26|05/21/2004 12:51|05/22/2004 15:30|10.0||NAD83|34.0983|-114.3536|1|0|0|B|02|Complete +123235|BLM|AZ|AZYUD|WILLOW||A3PV|3|7|05/21/2004 13:41|05/21/2004 13:45|05/21/2004 14:25|0.5||NAD83|34.9164|-114.5758|1|0|0|B|08|Complete +123237|BLM|AZ|AZYUD|FORTUNA||A3XB|3|7|05/27/2004 14:00|05/27/2004 14:29|06/01/2004 09:07|15.0||NAD83|32.7262|-114.5047|1|0|0|B|07|Complete +123238|BLM|AZ|AZYUD|TEXAS||A3XT|1|1|05/27/2004 14:35|05/27/2004 15:42|05/28/2004 20:08|80.0||NAD83|32.8512|-113.6238|1|0|0|B|01|Incomplete +121523|BLM|AZ|AZYUD|EXPLORER||A31E|1|1|05/30/2004 16:55|05/30/2004 17:05|06/02/2004 15:13|0.3||NAD83|32.8662|-114.4602|1|0|0|B|01|Incomplete +123240|BLM|AZ|AZYUD|MEMORIAL||A31H|3|7|05/30/2004 21:08|05/30/2004 21:11|05/31/2004 15:00|0.3||NAD83|35.0161|-114.6369|1|0|0|B|02|Complete +121522|BLM|AZ|AZYUD|BOOTH||A4AR|3|7|06/04/2004 06:50|06/04/2004 08:30|06/05/2004 13:01|0.1||NAD83|34.1145|-114.2927|1|0|0|B|02|Complete +121520|BLM|AZ|AZYUD|S DIKE 2||A4FA|3|7|06/06/2004 04:06|06/06/2004 04:46|06/07/2004 10:45|3.0||NAD83|34.7617|-114.5447|1|0|0|B|04|Complete +121521|BLM|AZ|AZYUD|TONY||A4LA|3|7|06/08/2004 15:17|06/08/2004 15:45|06/11/2004 18:00|17.0||NAD83|52.6384|-114.9366|1|0|0|B|02|Complete +121519|BLM|AZ|AZYUD|New Sub||A4LQ|3|7|06/08/2004 19:12|06/08/2004 19:39|06/11/2004 18:00|2.0||NAD83|34.7325|-114.5827|1|0|0|B|02|Complete +123242|BLM|AZ|AZYUD|BEACH||A4L9|3|7|06/09/2004 11:41|06/09/2004 12:29|06/21/2004 14:07|4.0||NAD83|34.5125|-114.3888|1|0|0|B|02|Complete +123244|BLM|AZ|AZYUD|CATTAIL||A4P7|3|7|06/12/2004 03:35|06/12/2004 06:39|06/21/2004 14:06|1.0||NAD83|34.5231|-114.3888|1|0|0|B|02|Complete +123246|BLM|AZ|AZYUD|COVE||A4R9|3|7|06/12/2004 15:59|06/12/2004 16:15|06/22/2004 08:58|3.0||NAD83|32.3631|-114.1958|1|0|0|B|07|Complete +123247|BLM|AZ|AZYUD|COLEY||A48M|3|7|06/19/2004 05:25|06/19/2004 05:45|06/20/2004 11:18|0.3||NAD83|32.7559|-114.5897|1|0|0|B|02|Complete +123248|BLM|AZ|AZYUD|MM 37||A49K|1|1|06/19/2004 13:29|06/19/2004 14:14|06/20/2004 10:08|0.3||NAD83|32.6773|-114.0413|1|0|0|B|01|Incomplete +125909|BLM|AZ|AZYUD|Semnleover||A5CH|3|7|06/21/2004 07:58|06/21/2004 08:34|06/25/2004 16:30|2.0||NAD83|32.7456|-114.7041|1|0|0|B|02|Complete +123250|BLM|AZ|AZYUD|AQUA VIEW||A5KJ|3|7|06/23/2004 11:37|06/23/2004 11:37|06/24/2004 15:30|0.5||NAD83|34.8489|-114.5861|1|0|0|B|08|Complete +123251|BLM|AZ|AZYUD|SAND BAR||A5R4|3|7|06/24/2004 15:58|06/24/2004 16:23|06/24/2004 16:23|0.1||NAD83|32.7262|-114.5844|1|0|0|B|08|Complete +123252|BLM|AZ|AZYUD|JERRY CAN||A505|1|1|06/26/2004 15:26|06/26/2004 16:14|06/29/2004 14:00|25.0||NAD83|32.4984|-114.8113|1|0|0|B|01|Incomplete +124524|BLM|AZ|AZYUD|Welch||A51R|3|7|06/26/2004 16:21|06/26/2004 18:02|07/05/2004 12:05|800.0||NAD83|33.7472|-114.4752|1|0|0|B|02|Complete +124527|BLM|AZ|AZYUD|WOODY||A55A|3|7|06/27/2004 12:16|06/27/2004 12:25|07/15/2004 15:00|0.1||NAD83|33.9881|-114.3997|1|0|0|B|02|Complete +125910|BLM|AZ|AZYUD|LINCOLN||A6FX|1|1|06/28/2004 20:45|06/28/2004 21:55|07/12/2004 17:00|40.0||NAD83|34.2100|-113.6822|1|0|0|B|01|Incomplete +123253|BLM|AZ|AZYUD|DERBY||A6Q5|3|7|07/01/2004 13:27|07/01/2004 13:34|07/01/2004 17:00|0.1||NAD83|32.7437|-114.6438|1|0|0|B|02|Complete +123254|BLM|AZ|AZYUD|TOBOKA||A6XP|3|7|07/02/2004 23:00|07/02/2004 23:09|07/03/2004 00:00|0.1||NAD83|32.7292|-114.6180|1|0|0|B|02|Complete +123256|BLM|AZ|AZYUD|HAYSTACK||A6ZC|3|7|07/03/2004 17:47|07/03/2004 18:00|07/04/2004 00:15|0.3||NAD83|35.0456|-114.6408|1|0|0|B|02|Complete +123257|BLM|AZ|AZYUD|SUMMER||A60K|3|7|07/04/2004 12:58|07/04/2004 13:03|07/07/2004 07:30|0.1||NAD83|35.0194|-114.6400|1|0|0|B|02|Complete +123258|BLM|AZ|AZYUD|EHRENBERG||A671|1|1|07/05/2004 18:30|07/05/2004 18:48|07/09/2004 14:52|0.1||NAD83|33.6086|-114.4883|1|0|0|B|01|Incomplete +123259|BLM|AZ|AZYUD|CIGARETTE||A7D7|3|7|07/08/2004 12:16|07/08/2004 12:25|07/08/2004 12:31|0.1||NAD83|34.9294|-114.5986|1|0|0|B|02|Complete +123801|BLM|AZ|AZYUD|LEE||BA68|1|1|07/11/2004 13:35|07/11/2004 13:35|07/11/2004 13:35|0.3||NAD83|32.4995|-114.7947|1|0|0|B|01|Incomplete +125911|BLM|AZ|AZYUD|BUCKHORN||A7N8|3|7|07/12/2004 05:25|07/12/2004 08:04|07/12/2004 08:18|0.1||NAD83|34.2683|-114.1249|1|0|0|B|07|Complete +123260|BLM|AZ|AZYUD|JUNGLE||A8Y2|3|7|07/23/2004 03:24|07/23/2004 04:02|07/25/2004 11:17|0.1||NAD83|32.7953|-114.6050|1|0|0|B|02|Complete +124607|BLM|AZ|AZYUD|3 Mile||A9A8|3|7|07/26/2004 08:44|07/26/2004 10:35|07/28/2004 06:47|10.0||NAD83|34.8217|-114.5397|1|0|0|B|02|Complete +125912|BLM|AZ|AZYUD|LAST CALL||A9N2|3|7|07/30/2004 04:36|07/30/2004 05:08|07/31/2004 15:00|0.1||NAD83|32.7656|-114.6130|1|0|0|B|02|Complete +123855|BLM|AZ|AZYUD|CNA||A9RQ|3|7|07/31/2004 11:38|07/31/2004 12:16|08/01/2004 15:30|0.1||NAD83|32.6978|-113.9235|1|0|0|B|07|Complete +124606|BLM|AZ|AZYUD|CAMP||A93V|1|1|08/04/2004 07:00|08/04/2004 10:08|08/20/2004 15:30|0.1||NAD83|32.7959|-114.4955|1|0|0|B|01|Incomplete +125914|BLM|AZ|AZYUD|MOABI||BB2M|1|1|08/13/2004 15:14|08/13/2004 16:19|08/13/2004 16:19|0.1||NAD83|34.7411|-114.5247|1|0|0|B|01|Incomplete +125913|BLM|AZ|AZYUD|NO CLAIM||BB77|3|7|08/16/2004 11:22|08/16/2004 11:38|08/17/2004 14:00|0.1||NAD83|32.6623|-114.7183|1|0|0|B|08|Complete +124528|BLM|AZ|AZYUD|SPOT||BB9R|1|1|08/16/2004 15:33|08/16/2004 16:00|08/18/2004 12:00|1.0||NAD83|32.8192|-114.4863|1|0|0|B|01|Incomplete +124608|BLM|AZ|AZYUD|BORDER||BDW4|3|7|08/26/2004 16:37|08/26/2004 16:59|08/26/2004 18:40|0.1||NAD83|32.6070|-114.8044|1|0|0|B|02|Complete +124529|BLM|AZ|AZYUD|COUNTY 12||BD07|1|1|08/28/2004 18:09|08/28/2004 19:04|09/01/2004 10:04|2.0||NAD83|32.6431|-114.7636|1|0|0|B|01|Incomplete +125915|BLM|AZ|AZYUD|HAYSTACK 2||BD2A|3|7|08/30/2004 02:52|08/30/2004 04:06|09/02/2004 15:00|0.1||NAD83|32.7598|-114.6322|1|0|0|B|02|Complete +125916|BLM|AZ|AZYUD|COORS LAND||BD7J|1|1|09/01/2004 11:30|09/01/2004 17:00|09/02/2004 15:00|0.5||NAD83|34.9664|-114.6577|1|0|0|B|01|Incomplete +125917|BLM|AZ|AZYUD|ARNOLD||BFS1|3|7|09/19/2004 11:38|09/19/2004 11:38|09/20/2004 16:00|0.3||NAD83|32.7525|-114.6177|1|0|0|B|02|Complete +125918|BLM|AZ|AZYUD|BLIND||BF1G|3|7|09/23/2004 14:04|09/23/2004 14:48|09/24/2004 16:00|0.1||NAD83|32.5831|-114.8025|1|0|0|B|02|Complete +125901|BLM|AZ|AZYUD|OUT||BGX1|3|7|10/04/2004 07:10|10/04/2004 07:34|10/05/2004 16:00|0.2||NAD83|32.7312|-114.6530|1|0|0|B|06|Complete +125902|BLM|AZ|AZYUD|POISON||BG1K|3|7|10/04/2004 17:10|10/04/2004 17:15|10/06/2004 12:21|0.5||NAD83|32.6917|-114.5858|1|0|0|B|08|Complete +509435|BLM|AZ|AZYUD|F A 1||B67R|5|6|10/08/2004|||||||||||||Complete +125919|BLM|AZ|AZYUD|BRIDGE||BG54|3|7|10/08/2004 16:36|10/08/2004 17:38|10/12/2004 13:00|0.1||NAD83|32.7320|-114.6286|1|0|0|B|02|Complete +125903|BLM|AZ|AZYUD|WILLOW||BG6Q|3|7|10/09/2004 16:30|10/09/2004 16:57|10/10/2004 18:00|0.5||NAD83|34.9119|-114.6280|1|0|0|B|02|Complete +509400|BLM|AZ|AZYUD|F A 2||B67S|5|1|10/13/2004|||||||||||||Complete +126119|BLM|AZ|AZYUD|LOG||BHU8|3|7|10/26/2004 15:05|10/26/2004 15:11||||NAD83|32.9117|-114.4861|1|0|0|B|08|Complete +125920|BLM|AZ|AZYUD|CREEK||BH81|3|7|11/23/2004 12:30|11/23/2004 12:32|11/29/2004 12:00|0.1||NAD83|32.7509|-114.6941|1|0|0|B|02|Complete +509406|BLM|AZ|AZYUD|F A 3||B67T|5|5|11/26/2004|||||||||||||Complete +509414|BLM|AZ|AZYUD|F A 4||B67U|5|5|11/26/2004|||||||||||||Complete +509418|BLM|AZ|AZYUD|F A 5||B67V|5|6|11/28/2004|||||||||||||Complete +509437|BLM|AZ|AZYUD|F A 6||B67W|5|1|11/29/2004|||||||||||||Complete +125922|BLM|AZ|AZYUD|13th AVE||BJM1|3|7|12/15/2004 13:15|12/15/2004 13:20|12/15/2004 13:39|0.1||NAD83|32.0426|-114.4169|1|0|0|B|02|Complete +514715|BLM|AZ|AZYUD|PIPE||BJM2|||12/15/2004 14:32|||||||||||||Incomplete +125923|BLM|AZ|AZYUD|RIVERA||BJN1|3|7|12/16/2004 13:44|12/16/2004 13:44|12/17/2004 10:13|1.0||NAD83|34.0753|-114.3258|1|0|0|B|02|Complete +510146|BLM|AZ|AZYUD|MOHAVE||BJR2|1|1|12/20/2004 12:41|12/20/2004 13:03|12/20/2004 15:50|1.0|4|NAD83|34.0328|-114.3897|1|0|0|B|02|Incomplete +510148|BLM|AZ|AZYUD|PILE||BJ00|1|6|01/03/2005 18:07|01/03/2005 19:06|01/05/2005 12:00|0.1|9|NAD83|32.7289|-114.6030|1|0|0|B|02|Complete +126120|BLM|AZ|AZYUD|Kitchen||BJ4Z|1|1|01/21/2005 08:32|01/21/2005 08:38|01/24/2005 09:29|0.1|2|NAD83|32.8195|-114.4863|1|0|0|B|01|Complete +510172|BLM|AZ|AZYUD|LOG||BJ47|3|7|01/21/2005 16:32|||||NAD83|32.7292|-114.6250|||||02|Complete +126121|BLM|AZ|AZYUD|Canal||BJ49|1|1|01/22/2005 09:57|01/22/2005 10:55|01/28/2005 11:19|0.3|2|NAD83|32.8184|-114.4891|1|0|0|B|01|Complete +514579|BLM|AZ|AZYUD|GUN RANGE||BJ5B|3|7|01/23/2005 06:40|||||NAD83|32.7664|-114.6677|||||02|Complete +126122|BLM|AZ|AZYUD|EMainCanal||BJ58|1|1|01/25/2005 11:52|01/25/2005 11:54|02/28/2005 16:00|0.1|2|NAD83|32.6470|-114.6388|1|0|0|B|01|Complete +126123|BLM|AZ|AZYUD|Gila||BJ8L|1|1|02/02/2005 21:17|02/02/2005 22:11|02/03/2005 14:49|0.3|1|NAD83|32.7617|-114.3933|1|0|0|B|01|Complete +514580|BLM|AZ|AZYUD|MOTORHOME||BJ8Q|3|7|02/03/2005 15:36|||||NAD83|32.7284|-114.6027|||||02|Complete +126124|BLM|AZ|AZYUD|Hidden||BKV6|1|1|02/26/2005 16:39|02/26/2005 16:49|03/03/2005 18:00|325.0|1|NAD83|32.8864|-114.4577|1|0|0|B|01|Complete +512121|BLM|AZ|AZYUD|FA 07||B8RY|5|6|02/26/2005 20:29|||||NAD83|32.8042|-114.5258|||||02|Complete +510179|BLM|AZ|AZYUD|BROADWAY||BK09|1|1|03/01/2005 19:26|03/01/2005 21:49|03/03/2005 18:00|0.7|9|NAD83|34.8244|-114.5833|1|0|0|B|08|Complete +509439|BLM|AZ|AZYUD|F A 8||B67X|5|6|03/02/2005|||||||||||||Complete +509441|BLM|AZ|AZYUD|F A 9||B67Y|5|1|03/04/2005|||||||||||||Complete +514686|BLM|AZ|AZYUD|AMERICAN||BK3H|3|7|03/05/2005 22:15|||||NAD83|32.7050|-114.9780|||||01|Incomplete +509447|BLM|AZ|AZYUD|F A 10||B67Z|5|1|03/08/2005|||||||||||||Complete +514582|BLM|AZ|AZYUD|NEW SUB||BK80|3|7|03/11/2005 10:41|||||NAD83|32.7595|-114.5936|||||02|Complete +515180|BLM|AZ|AZYUD|RIVER ONE||BLN2|3|7|03/15/2005 12:00|03/15/2005 12:00||1.0||NAD83|34.0733|-114.4388|1|0|0||02|Complete +510324|BLM|AZ|AZYUD|CO 12||BLQ9|1|1|03/16/2005 09:06|03/16/2005 09:07|03/17/2005 18:00|0.1|9|NAD83|32.6556|-114.7544|1|0|0|B|01|Complete +510312|BLM|AZ|AZYUD|WETLANDS||BLT6|1|1|03/16/2005 18:10|03/16/2005 18:49|03/17/2005 09:51|0.1|2|NAD83|32.7314|-114.6416|1|0|0|B|01|Complete +512126|BLM|AZ|AZYUD|FIELD||BLV7|3|7|03/17/2005 20:30|03/17/2005 21:02||||NAD83|32.7445|-114.6450|||||02|Complete +515194|BLM|AZ|AZYUD|AMIGO||BL18|3|7|03/22/2005 09:43|||||NAD83|32.6203|-114.7963|||||02|Complete +509746|BLM|AZ|AZYUD|CO 13th||BL2W|3|7|03/22/2005 16:07|||||NAD83|32.6370|-114.7716|||||02|Complete +509451|BLM|AZ|AZYUD|F A 12||B68A|5|1|03/26/2005|||||||||||||Complete +514583|BLM|AZ|AZYUD|COLORADO||BL4X|3|7|03/27/2005 00:51||03/30/2005 14:06|||NAD83|33.5506|-114.5280|||||07|Complete +510305|BLM|AZ|AZYUD|CAMP 1||BL5A|1|1|03/28/2005 10:14|03/28/2005 10:14|03/28/2005 13:47|0.1|2|NAD83|33.5159|-114.5613|1|0|0|B|01|Complete +510302|BLM|AZ|AZYUD|CAMP 2||BL5E|2|6|03/28/2005 13:20|03/28/2005 13:20|03/28/2005 14:00|0.1||NAD83|33.4453|-114.6230|1|0|0|B|07|Complete +510656|BLM|AZ|AZYUD|CAMP 3||BL5M|1|1|03/28/2005 13:36|03/28/2005 14:45|03/28/2005 15:00|0.1|2|NAD83|32.8184|-114.4566|1|0|0|B|01|Complete +515195|BLM|AZ|AZYUD|DUNE||BMA3|3|7|04/01/2005 21:00|||||NAD83|33.9467|-114.4219|||||02|Complete +515196|BLM|AZ|AZYUD|EDDY||BMB9|3|7|04/02/2005 12:24|||||NAD83|33.9842|-114.3247|||||02|Complete +514585|BLM|AZ|AZYUD|TRAILER PK||BMC4|3|7|04/02/2005 17:07||04/03/2005 18:14|||NAD83|33.9581|-114.3977|1|0|0|A|02|Complete +514587|BLM|AZ|AZYUD|BRKING DOG||BMC6|3|7|04/02/2005 23:45||04/04/2005 12:49|||NAD83|33.9806|-114.4061|1|0|0|A|02|Complete +512104|BLM|AZ|AZYUD|MCGUIRE||BMK3|3|7|04/04/2005 11:25||08/15/2005 12:00|8.0||NAD83|34.0736|-114.3753|1|0|0|B|02|Complete +515198|BLM|AZ|AZYUD|McGUIRE||BMK3|3|7|04/04/2005 11:25|||||NAD83|34.0428|-114.3577|||||02|Complete +509453|BLM|AZ|AZYUD|F A 13||B68C|5|6|04/05/2005|||||||||||||Complete +510234|BLM|AZ|AZYUD|QUAIL HOLL||BMV4|1|1|04/06/2005 13:49|04/06/2005 13:49|04/07/2005 09:29|0.3|9|NAD83|34.2595|-114.1555|1|0|0|B|01|Complete +514589|BLM|AZ|AZYUD|HOWARD||BM0E|3|7|04/07/2005 15:08||04/09/2005 14:00|||NAD83|34.0825|-114.3569|1|0|0|A|02|Complete +515197|BLM|AZ|AZYUD|YAZZIE||BM1M|3|7|04/08/2005 09:07|||||NAD83|34.8481|-114.5894|||||02|Complete +514590|BLM|AZ|AZYUD|RAILROAD||BM1P|3|7|04/08/2005 09:34||04/08/2005 10:00|||NAD83|32.7464|-114.6405|1|0|0||02|Complete +512309|BLM|AZ|AZYUD|OATMAN||BM4L|3|7|04/09/2005 03:20|||||NAD83|33.0784|-113.2402|||||01|Complete +510228|BLM|AZ|AZYUD|COTTONWOOD||BM6M|1|1|04/09/2005 16:51|04/09/2005 18:03|04/15/2005 12:00|2.0|9|NAD83|32.6401|-114.7672|1|0|0|B|02|Complete +509457|BLM|AZ|AZYUD|F A 14||B68D|5|6|04/11/2005|||||||||||||Complete +512310|BLM|AZ|AZYUD|YUMA||BNA0|3|7|04/11/2005 11:49|||||NAD83|32.7203|-114.5905|||||07|Complete +515199|BLM|AZ|AZYUD|STOP||BNK9|3|7|04/13/2005 09:46||04/13/2005 11:00|0.1||NAD83|34.0425|-114.4261|||||02|Complete +509460|BLM|AZ|AZYUD|F A 15||B68E|5|5|04/15/2005|||||||||||||Complete +510239|BLM|AZ|AZYUD|MAD DOG||BN5H|1|1|04/17/2005 12:36|04/17/2005 12:39|04/17/2005 12:49|0.3|9|NAD83|34.7372|-114.4583|1|0|0|B|01|Complete +510161|BLM|AZ|AZYUD|WINDMILL||BN78|1|1|04/17/2005 17:45|04/17/2005 17:45|04/18/2005 07:00|0.1|9|NAD83|34.2286|-114.1952|1|0|0|B|01|Complete +510251|BLM|AZ|AZYUD|WINDMILL||BN7B|1|1|04/17/2005 17:45|04/17/2005 17:45|04/18/2005 07:00|0.1|9|NAD83|34.2286|-114.1952|1|0|0|B|01|Complete +510193|BLM|AZ|AZYUD|LEVEE||BP05|1|6|04/18/2005 06:00|04/18/2005 08:29|04/18/2005 09:30|0.1|9|NAD83|32.6914|-114.7344|1|0|0|B|08|Complete +511054|BLM|AZ|AZYUD|HOUSE||BP04|3|7|04/19/2005 12:00|04/19/2005 12:50||1.0||NAD83|32.6645|-114.1763|||||08|Complete +515200|BLM|AZ|AZYUD|BALE 1||BPE4|3|7|04/19/2005 16:16||04/19/2005 16:30|0.1||NAD83|34.0886|-114.4258|||||02|Complete +509462|BLM|AZ|AZYUD|F A 16||B68F|5|1|04/21/2005|||||||||||||Complete +515201|BLM|AZ|AZYUD|CACTUS||BPQ6|3|7|04/21/2005 10:55||04/21/2005 12:21|0.1||NAD83|33.9586|-114.3822|||||02|Complete +514592|BLM|AZ|AZYUD|HAYSTACK 1||BPY9|3|7|04/21/2005 22:14||04/22/2005 18:00|0.2||NAD83|34.1339|-114.3039|1|0|0|A|02|Complete +514593|BLM|AZ|AZYUD|HAYSTACK 2||BPZ0|3|7|04/21/2005 22:27||04/22/2005 18:00|0.1||NAD83|34.0428|-114.3469|1|0|0|A|02|Complete +514594|BLM|AZ|AZYUD|HAYSTACK 3||BPZ2|3|7|04/21/2005 22:40||04/22/2005 19:00|0.1||NAD83|34.0861|-114.4167|1|0|0|A|02|Complete +514595|BLM|AZ|AZYUD|HAYSTACK 4||BPZ3|3|7|04/21/2005 22:53||04/22/2005 18:00|0.1||NAD83|34.0575|-114.4250|1|0|0|A|02|Complete +514596|BLM|AZ|AZYUD|HAYSTACK 6||BPZ4|3|7|04/21/2005 23:36||04/22/2005 18:00|0.1||NAD83|34.0425|-114.3536|1|0|0|A|02|Complete +510201|BLM|AZ|AZYUD|MP 35||BP6J|1|6|04/25/2005 14:44|04/25/2005 14:51|04/25/2005 16:00|0.1|9|NAD83|32.6748|-114.0710|1|0|0|B|06|Complete +509467|BLM|AZ|AZYUD|F A 19||B68G|5|6|04/27/2005|||||||||||||Complete +510640|BLM|AZ|AZYUD|CLAYTON WA||BQK9|3|7|04/29/2005 17:58|04/29/2005 19:25|04/30/2005 19:00|217.0||NAD83|32.9645|-113.3369|1|0|0|B|08|Complete +510486|BLM|AZ|AZYUD|SALOME||BQQ5|2|5|05/01/2005 18:00|05/01/2005 18:00|05/01/2005 22:10|20.0||NAD83|33.6870|-113.4477|1|0|0|B|07|Complete +514597|BLM|AZ|AZYUD|TAHBO||BQQ6|2|6|05/02/2005 10:00||05/02/2005 12:00|0.1||NAD83|34.1233|-114.2981|1|0|0|A|02|Complete +514599|BLM|AZ|AZYUD|PIT||BQ0M|3|7|05/04/2005 15:53||05/04/2005 16:28|0.1||NAD83|32.7367|-114.6133|1|0|0|B|02|Complete +515202|BLM|AZ|AZYUD|WEST||BQ2B|3|7|05/05/2005 12:58||05/16/2005 12:00|3.5||NAD83|34.0711|-114.4080|||||02|Complete +514601|BLM|AZ|AZYUD|WINTER||BRY8|3|7|05/05/2005 13:20||05/15/2005 15:24|0.3||NAD83|32.7369|-114.5905|1|0|0|B|02|Complete +509980|BLM|AZ|AZYUD|COUNTY 22||BQ2C|1|1|05/05/2005 14:35|05/05/2005 14:38|05/08/2005 16:00|0.3|9|NAD83|32.5103|-114.8038|1|0|0|B|01|Complete +514600|BLM|AZ|AZYUD|RIVERVIEW||BQ3L|3|7|05/06/2005 18:44||05/08/2005 17:00|1.0||NAD83|34.1681|-114.2933||1|1|B|02|Complete +510197|BLM|AZ|AZYUD|PARADISE||BQ4P|1|1|05/07/2005 16:31|05/07/2005 16:45|05/09/2005 12:37|0.3|9|NAD83|32.7317|-114.6569|1|0|0|B|01|Complete +515304|BLM|AZ|AZYUD|KING||BQ5L|3|7|05/09/2005 11:25||||||||||||02|Complete +515284|BLM|AZ|AZYUD|EDDY II||BQ55|3|7|05/09/2005 16:00|||||NAD83|34.0270|-114.3908|||||02|Complete +510579|BLM|AZ|AZYUD|PLANET||BRU6|3|7|05/13/2005 18:06|05/13/2005 20:18|05/17/2005 15:30|30.0||NAD83|34.1945|-113.6883|||||07|Complete +509911|BLM|AZ|AZYUD|GETTING||BR1D|1|6|05/16/2005 12:01|05/16/2005 12:43|05/22/2005 14:00|1309.0|9|NAD83|34.6975|-113.9236|1|0|0|B|08|Complete +509485|BLM|AZ|AZYUD|F A 21||B7AH|5|6|05/18/2005|||||||||||||Complete +512138|BLM|AZ|AZYUD|FA 20||B8R6|3|7|05/18/2005 10:12|05/18/2005 10:20||||NAD83|32.7250|-114.7077|||||02|Complete +509490|BLM|AZ|AZYUD|F A 28||B7AS|5|6|05/19/2005|||||||||||||Complete +512106|BLM|AZ|AZYUD|LAFOON||BR4X|3|7|05/19/2005 12:18|05/19/2005 12:28||25.0||NAD83|34.1217|-114.3002|||||02|Complete +514602|BLM|AZ|AZYUD|TAPPER||BR5D|3|7|05/19/2005 21:45||05/20/2005 13:15|0.1||NAD83|32.7653|-114.5878|1|0|0|B|02|Complete +510352|BLM|AZ|AZYUD|DODGE||BSF6|1|1|05/24/2005 13:59|05/24/2005 14:04|05/24/2005 15:08|0.1|9|NAD83|34.5295|-114.2622|1|0|0|B|01|Complete +510655|BLM|AZ|AZYUD|KOFA||BSF8|3|7|05/24/2005 15:15|||||NAD83|33.0064|-113.9005|||||07|Complete +514603|BLM|AZ|AZYUD|WELCH||BSJ7|3|7|05/25/2005 07:43||05/25/2005 10:30|0.3||NAD83|33.7786|-114.4464|1|0|3||02|Complete +510184|BLM|AZ|AZYUD|BRENDA||BSN1|1|1|05/25/2005 13:00|05/25/2005 13:10|05/26/2005 10:41|453.0|9|NAD83|33.7697|-113.9399|1|0|0|B|01|Complete +509486|BLM|AZ|AZYUD|F A 22||B7AJ|5|1|05/26/2005|||||||||||||Complete +514604|BLM|AZ|AZYUD|SCOTT||BSS6|3|7|05/26/2005 11:07||05/26/2005 12:33|0.1||NAD83|33.9995|-114.4044|1|0|3||02|Complete +512142|BLM|AZ|AZYUD|JEROME||BSY6|3|7|05/27/2005 11:20|05/27/2005 11:30||||NAD83|34.9531|-114.5716|||||02|Complete +512109|BLM|AZ|AZYUD|LA PAZ||BS0H|3|7|05/27/2005 17:05|05/27/2005 17:10|05/27/2005 17:45|0.8||NAD83|34.1378|-114.2883|||||02|Complete +514606|BLM|AZ|AZYUD|NELSON||BS0J|3|7|05/27/2005 17:05||05/27/2005 17:58|0.3||NAD83|34.1203|-114.3311|1|0|0||02|Complete +514607|BLM|AZ|AZYUD|4TH BURNS||BS1Z|3|7|05/27/2005 19:40||05/27/2005 20:26|0.1||NAD83|34.0733|-114.3350|1|0|0|A|02|Complete +509487|BLM|AZ|AZYUD|F A 23||B7AL|5|1|05/29/2005|||||||||||||Complete +515285|BLM|AZ|AZYUD|95||BS2H|3|7|05/29/2005 12:20|||||NAD83|34.9283|-114.5989|||||02|Complete +510653|BLM|AZ|AZYUD|WELL||B53E|3|7|05/29/2005 15:54|05/29/2005 16:26||0.1||NAD83|32.7064|-113.8669|||||07|Complete +515286|BLM|AZ|AZYUD|FIREWORKS||BS36|3|7|05/29/2005 21:05|||||NAD83|35.0189|-114.6366|||||02|Complete +514634|BLM|AZ|AZYUD|LITTLE||BS34|3|7|05/29/2005 23:36||05/30/2005 12:00|81.4||NAD83|34.0989|-114.3438|1|0|0|B|02|Complete +509488|BLM|AZ|AZYUD|F A 25||B7AN|5|6|05/30/2005|||||||||||||Complete +509489|BLM|AZ|AZYUD|F A 27||B7AQ|5|6|05/30/2005|||||||||||||Complete +515287|BLM|AZ|AZYUD|KING ST||BS5S|3|7|05/30/2005 17:16|||||NAD83|34.9222|-114.5636|||||02|Complete +509495|BLM|AZ|AZYUD|F A 29||B7AU|5|6|05/31/2005|||||||||||||Complete +509496|BLM|AZ|AZYUD|F A 30||B7AV|5|6|06/01/2005|||||||||||||Complete +510661|BLM|AZ|AZYUD|CATTAIL CO||BTD3|3|7|06/02/2005 12:59|06/02/2005 13:34|06/02/2005 14:18|0.1||NAD83|34.3514|-114.1733|||||07|Complete +514636|BLM|AZ|AZYUD|ROSEANNA||BTG0|3|7|06/03/2005 16:26||06/03/2005 17:00|0.1||NAD83|34.1389|-114.3022|1|0|0|B|02|Complete +515288|BLM|AZ|AZYUD|HOLLOW||BTP9|3|7|06/05/2005 16:40||||||||||||02|Complete +509504|BLM|AZ|AZYUD|F A 32||B7AX|5|1|06/07/2005|||||||||||||Complete +515301|BLM|AZ|AZYUD|SHIRT||BT1G|3|7|06/08/2005 15:37|||||NAD83|34.1336|-114.3130|||||02|Complete +510346|BLM|AZ|AZYUD|ECHO LODGE||BT4E|1|1|06/11/2005 08:10|06/11/2005 08:25|06/11/2005 17:25|75.0|9|NAD83|34.2545|-114.2030|1|0|0|B|01|Complete +512153|BLM|AZ|AZYUD|HULET||BT41|3|7|06/11/2005 15:43|06/11/2005 19:30||||NAD83|34.9239|-114.5808|||||02|Complete +510337|BLM|AZ|AZYUD|MP 33||BT6E|1|1|06/12/2005 12:52|06/12/2005 12:54|06/14/2005 12:55|3.0|9|NAD83|32.6692|-114.1110|1|0|0|B|01|Complete +509507|BLM|AZ|AZYUD|F A 33||B7A0|5|1|06/13/2005|||||||||||||Complete +515302|BLM|AZ|AZYUD|VETERANS||BT8Y|3|7|06/13/2005 16:43|||||NAD83|35.0008|-114.6305|||||02|Complete +514639|BLM|AZ|AZYUD|NEZ PERCE||BUB3|3|7|06/14/2005 14:52||06/15/2005 09:48|1.5||NAD83|32.7178|-114.6686|1|0|0|B|02|Complete +515303|BLM|AZ|AZYUD|233||BUA8|3|7|06/14/2005 16:00|||||NAD83|34.9431|-114.5933|||||02|Complete +510677|BLM|AZ|AZYUD|SUGARLOAF||BU1L|1|1|06/17/2005 15:49|06/17/2005 16:17|06/18/2005 15:00|0.1|9|NAD83|32.7459|-114.4763|1|0|0|B|01|Complete +509509|BLM|AZ|AZYUD|F A 34||B7A4|5|1|06/18/2005|||||||||||||Complete +514644|BLM|AZ|AZYUD|MILLER||BU6P|3|7|06/20/2005 09:50||06/26/2005 18:30|2.0||NAD83|34.0995|-114.3580|1|0|0|A|02|Complete +509513|BLM|AZ|AZYUD|F A 35||B7A6|5|1|06/23/2005|||||||||||||Complete +509521|BLM|AZ|AZYUD|F A 36||B7A7|5|6|06/24/2005|||||||||||||Complete +509865|BLM|AZ|AZYUD|WOMBAT||BWD0|1|5|06/26/2005 11:18|06/26/2005 11:19|06/26/2005 11:41|0.1|2|NAD83|32.7198|-114.5588|1|0|0|A|01|Complete +512154|BLM|AZ|AZYUD|FA 38||BG15|3|7|06/26/2005 15:50|||||NAD83|32.5917|-114.6675|||||02|Complete +510691|BLM|AZ|AZYUD|Fencepost||BWQ0|1|1|06/26/2005 19:16|06/27/2005 08:32|06/27/2005 08:32|0.1|9|NAD83|33.6486|-114.3561|1|0|0|A|01|Complete +510689|BLM|AZ|AZYUD|Waterfall||BWQ2|1|1|06/26/2005 19:58|06/27/2005 07:39|06/27/2005 12:00|1.0|9|NAD83|34.5436|-114.2219|1|0|0|B|01|Complete +514647|BLM|AZ|AZYUD|LICE||BWQ3|3|7|06/27/2005 11:59||07/02/2005 19:00|2.5||NAD83|33.9936|-114.4055|1|0|0|A|02|Complete +514762|BLM|AZ|AZYUD|DRAIN||BWV6|3|7|06/27/2005 22:30|06/27/2005 22:55|06/28/2005 01:30|0.3||NAD83|33.8942|-114.4244|1|0|0|A|02|Complete +510690|BLM|AZ|AZYUD|WIMMER||BWV8|1|1|06/27/2005 22:38|06/27/2005 22:53|06/28/2005 01:10|0.3|9|NAD83|33.8620|-113.3916|1|0|0|A|01|Complete +509525|BLM|AZ|AZYUD|F A 39||B7A9|5|6|06/28/2005|||||||||||||Complete +509532|BLM|AZ|AZYUD|F A 40||B7B7|5|1|06/28/2005|||||||||||||Complete +510664|BLM|AZ|AZYUD|TAC||BW08|3|7|06/28/2005 14:58|06/28/2005 15:58|06/28/2005 17:00|0.1||NAD83|32.6973|-113.9263|||||07|Complete +509814|BLM|AZ|AZYUD|PORRES||BW51|3|7|06/29/2005 13:59||07/12/2005 12:00|||NAD83|34.1072|-114.2908|||||02|Complete +509810|BLM|AZ|AZYUD|WHITELY||BW6E|3|7|06/29/2005 15:45|||||NAD83|34.1072|-114.2944|||||02|Complete +509536|BLM|AZ|AZYUD|F A 41||B7B8|5|1|06/30/2005|||||||||||||Complete +510040|BLM|AZ|AZYUD|COUNTY 14||BW71|1|1|06/30/2005 09:44|06/30/2005 09:44|07/06/2005 14:35|18.5|9|NAD83|32.6253|-114.6338|1|0|0|B|01|Complete +509542|BLM|AZ|AZYUD|F A 43||B7B9|5|1|07/01/2005|||||||||||||Complete +510670|BLM|AZ|AZYUD|FORTUNA WA||BXJ1|3|7|07/01/2005 16:02|07/01/2005 16:27|07/02/2005 14:54|||NAD83|32.7117|-114.4447|||||07|Complete +509850|BLM|AZ|AZYUD|DATELAND||BXY4|1|6|07/02/2005 11:34|07/02/2005 11:58|07/02/2005 14:15|0.1|9|NAD83|32.8978|-113.5641|1|0|0|B|08|Complete +514649|BLM|AZ|AZYUD|BIG RIVER||BXQ6|3|7|07/02/2005 13:04||07/07/2005 12:00|2.0||NAD83|34.1228|-114.3694|1|0|0|D|02|Complete +509982|BLM|AZ|AZYUD|EUREKA MIN||BXX4|1|1|07/02/2005 23:00|07/02/2005 23:20|07/03/2005 00:30|0.1|9|NAD83|34.5292|-114.2663|1|0|0|B|01|Complete +509545|BLM|AZ|AZYUD|F A 45||B7CA|5|6|07/04/2005|||||||||||||Complete +509552|BLM|AZ|AZYUD|F A 46||B7CC|5|1|07/04/2005|||||||||||||Complete +509555|BLM|AZ|AZYUD|F A 47||B7CK|5|1|07/04/2005|||||||||||||Complete +509560|BLM|AZ|AZYUD|F A 48||B7CL|5|1|07/04/2005|||||||||||||Complete +509984|BLM|AZ|AZYUD|MOABI||BX63|1|1|07/04/2005 12:10|07/04/2005 12:30|07/04/2005 13:30|0.1|2|NAD83|34.7917|-114.5711|1|0|1|B|01|Complete +510045|BLM|AZ|AZYUD|GRAVEL||BX64|1|1|07/04/2005 12:10|07/04/2005 12:30|07/04/2005 13:00|0.1|2|NAD83|34.7633|-114.5502|1|0|0|B|01|Complete +509983|BLM|AZ|AZYUD|COMBER 1||BX69|1|1|07/04/2005 15:30|07/04/2005 15:32|07/04/2005 18:30|2.0|9|NAD83|33.6167|-114.5250|1|0|0|B|01|Complete +509820|BLM|AZ|AZYUD|FIREWORK 1||BX9B|3|7|07/04/2005 21:44|||||NAD83|34.4681|-114.4041|||||02|Complete +509869|BLM|AZ|AZYUD|WHIRLYGIG||BX9D|1|1|07/04/2005 23:44|07/04/2005 23:48|07/04/2005 23:59|0.1|2|NAD83|32.7195|-114.5588|1|0|0|A|01|Complete +509816|BLM|AZ|AZYUD|COCOPAH||BYH8|3|7|07/05/2005 13:37|||||NAD83|32.6192|-114.7936|||||02|Complete +514651|BLM|AZ|AZYUD|GRASS||BY07|3|7|07/06/2005 14:20||07/06/2005 17:30|8.0||NAD83|33.8134|-114.4525|1|0|0|A|02|Complete +514653|BLM|AZ|AZYUD|BIG ROAD||BY1P|3|7|07/06/2005 16:31||07/06/2005 18:30|0.1||NAD83|33.9139|-114.4391|1|0|0|A|02|Complete +509564|BLM|AZ|AZYUD|F A 49||B7CM|5|6|07/07/2005|||||||||||||Complete +510176|BLM|AZ|AZYUD|SPARKLER||BY7J|1|6|07/07/2005 13:26|07/07/2005 13:33|07/07/2005 15:34|1.5|7|NAD83|33.9947|-114.1508|1|0|0|B|07|Complete +510046|BLM|AZ|AZYUD|MOTAC||BY81|1|6|07/07/2005 16:50|07/07/2005 16:52|07/08/2005 11:29|0.3|9|NAD83|32.6998|-113.9110|1|0|0|B|07|Complete +510037|BLM|AZ|AZYUD|BRENDA 2||BZS4|1|1|07/09/2005 10:42|07/09/2005 10:52|07/09/2005 13:23|0.1|9|NAD83|33.6675|-113.9947|1|0|0|B|01|Complete +509833|BLM|AZ|AZYUD|CAMP 8||BZV8|1|5|07/09/2005 15:00|07/09/2005 15:00|07/09/2005 15:00|0.1|9|NAD83|34.7314|-114.5100|1|0|0|A|08|Complete +510150|BLM|AZ|AZYUD|BOUSE||BZ3V|1|6|07/11/2005 11:49|07/11/2005 11:53|07/12/2005 18:00|5.0|9|NAD83|33.9275|-114.0083|1|0|0|B|08|Complete +510652|BLM|AZ|AZYUD|FERRA GULC||BZ7B|1|1|07/12/2005 16:24|07/12/2005 18:10|07/12/2005 18:59|1.0|9|NAD83|33.6309|-114.4080|1|0|0|B|01|Complete +509576|BLM|AZ|AZYUD|F A 50||B7CN|5|6|07/13/2005|||||||||||||Complete +509580|BLM|AZ|AZYUD|F A 51||B7CP|5|6|07/13/2005|||||||||||||Complete +509743|BLM|AZ|AZYUD|TOLL||BZ85|3|7|07/13/2005 13:24|||0.1||NAD83|32.6967|-113.9322|||||08|Complete +512112|BLM|AZ|AZYUD|ENAS||B0JS|3|7|07/15/2005 17:36|07/15/2005 19:40||||NAD83|34.1089|-114.3136|||||02|Complete +509807|BLM|AZ|AZYUD|HOLLA BACK||B0WC|3|7|07/17/2005 18:00|||||NAD83|32.5656|-114.7911|||||02|Complete +510648|BLM|AZ|AZYUD|DONTCHA||B02Q|1|1|07/19/2005 13:44|07/19/2005 14:37|07/22/2005 14:00|0.5|9|NAD83|32.7317|-113.7327|1|0|0|B|01|Complete +509887|BLM|AZ|AZYUD|RICHGIRL||B1H7|1|1|07/22/2005 09:30|07/22/2005 09:30|07/22/2005 10:08|1.0|9|NAD83|33.6425|-114.2277|1|0|0|B|01|Complete +509886|BLM|AZ|AZYUD|WANNABEE||B14Q|1|1|07/26/2005 14:45|07/26/2005 14:45|07/26/2005 14:55|0.1|2|NAD83|32.8170|-114.4516|1|0|0|A|01|Complete +509585|BLM|AZ|AZYUD|F A 52||B7CR|5|6|07/27/2005|||||||||||||Complete +509591|BLM|AZ|AZYUD|F A 53||B7CS|5|1|07/27/2005|||||||||||||Complete +509656|BLM|AZ|AZYUD|F A 54||B7CT|5|1|07/27/2005|||||||||||||Complete +509662|BLM|AZ|AZYUD|F A 55||B7CU|5|1|07/29/2005|||||||||||||Complete +509665|BLM|AZ|AZYUD|F A 56||B7CV|5|1|07/29/2005|||||||||||||Complete +514654|BLM|AZ|AZYUD|WAGN WHEEL||B2MP|3|7|07/30/2005 20:23||08/02/2005 17:30|2.4|1|NAD83|33.9306|-114.5186|1|0|0|L|02|Complete +509667|BLM|AZ|AZYUD|F A 58||B7CX|5|1|08/07/2005|||||||||||||Complete +509775|BLM|AZ|AZYUD|GAMER||B3N2|3|7|08/08/2005 13:20|||||NAD83|33.3556|-114.7002|||||04|Complete +510658|BLM|AZ|AZYUD|LEVEE||BT2J|3|7|08/09/2005 13:20|||50.0||NAD83|33.4992|-114.5811|||||07|Complete +514655|BLM|AZ|AZYUD|69 FIRE||B3SP|3|7|08/09/2005 14:56||08/12/2005 16:00|3.3|1|NAD83|34.1097|-114.2842|1|0|0|L|02|Complete +510147|BLM|AZ|AZYUD|BOTH ENDS||B3SX|2|1|08/09/2005 15:11|08/09/2005 15:44|08/09/2005 16:00|0.1||NAD83|32.7084|-114.7261|1|0|0|B|01|Complete +509671|BLM|AZ|AZYUD|F A 59||B7CY|5|6|08/12/2005|||||||||||||Complete +509673|BLM|AZ|AZYUD|F A 60||B7CZ|5|1|08/14/2005|||||||||||||Complete +509783|BLM|AZ|AZYUD|B ALPHA 2||B39S|3|7|08/14/2005 20:23|||||NAD83|33.9739|-114.4577|||||02|Complete +509677|BLM|AZ|AZYUD|F A 62||B7C0|5|1|08/19/2005|||||||||||||Complete +509876|BLM|AZ|AZYUD|CARONA||B4N8|1|1|08/20/2005 23:30|08/20/2005 23:35|08/20/2005 23:59|0.1|8|NAD83|34.5292|-114.2647|1|0|0|A|01|Complete +509681|BLM|AZ|AZYUD|F A 63||B7C1|5|1|08/26/2005|||||||||||||Complete +510163|BLM|AZ|AZYUD|AGUA CALIE||B5AG|1|6|08/26/2005 19:15|08/26/2005 19:50|08/27/2005 11:00|47.4|1|NAD83|32.9728|-113.4191|1|0|0|B|07|Complete +514656|BLM|AZ|AZYUD|KUDU||B5MU|3|7|08/31/2005 18:30||09/12/2005 08:00|15.0|1|NAD83|34.0672|-114.2956|1|0|0|T|02|Complete +509684|BLM|AZ|AZYUD|F A 64||B7C2|5|6|09/01/2005|||||||||||||Complete +509981|BLM|AZ|AZYUD|RAILROAD||B52J|1|1|09/07/2005 09:35|09/07/2005 09:38|09/07/2005 10:52|0.1|7|NAD83|32.7989|-113.8741|1|0|0|B|01|Complete +514657|BLM|AZ|AZYUD|MARIO||B54D|3|7|09/07/2005 16:48||09/08/2005 09:45|0.3||NAD83|34.1039|-114.2989|1|0|0|A|02|Complete +514659|BLM|AZ|AZYUD|LUIGI||B55V|3|7|09/08/2005 10:25||09/08/2005 10:30|0.1||NAD83|34.1222|-114.3033|1|0|0|A|02|Complete +509796|BLM|AZ|AZYUD|SECTION 14||B57T|3|7|09/08/2005 18:20|09/08/2005 18:36||||NAD83|34.9467|-114.5889|||||09|Complete +509793|BLM|AZ|AZYUD|CAMPBELL||B6A5|1|6|09/09/2005 16:13|09/09/2005 16:13|09/10/2005 15:57|5.0|9|NAD83|34.4961|-114.3613|1|0|0|B|07|Complete +509685|BLM|AZ|AZYUD|F A 66||B7C3|5|1|09/10/2005|||||||||||||Complete +509788|BLM|AZ|AZYUD|PIKACHU||B6EX|1|6|09/11/2005 13:56|09/11/2005 16:04|09/11/2005 18:57|1.0|4|NAD83|32.7409|-114.6122|1|0|0|B|02|Complete +512308|BLM|AZ|AZYUD|BASS BAY 1||B6EW|1|1|09/11/2005 15:22|09/11/2005 21:00|09/14/2005 11:45|0.1|9|NAD83|34.3117|-114.1399|1|0|7|A|01|Complete +509787|BLM|AZ|AZYUD|CANAL 2||B6E3|1|6|09/11/2005 20:15|09/11/2005 21:01|09/12/2005 01:40|0.3|9|NAD83|32.7464|-114.6286|1|0|0|B|02|Complete +509686|BLM|AZ|AZYUD|F A 67||B7C4|5|1|09/12/2005|||||||||||||Complete +509790|BLM|AZ|AZYUD|FIGUROA||B6GD|3|7|09/12/2005 16:08|||||NAD83|32.7287|-114.6755|||||08|Complete +510044|BLM|AZ|AZYUD|PALM FROND||B6HW|1|1|09/13/2005 12:37|09/13/2005 12:40|09/13/2005 13:01|0.1|9|NAD83|32.7328|-114.6586|1|0|0|B|01|Complete +509893|BLM|AZ|AZYUD|WALKING EA||B6LJ|1|1|09/15/2005 11:48|09/15/2005 11:49|09/16/2005 14:30|0.5|9|NAD83|32.7000|-114.7300|1|0|0|B|01|Complete +509693|BLM|AZ|AZYUD|F A 68||B7C5|5|1|09/16/2005|||||||||||||Complete +514660|BLM|AZ|AZYUD|FRAIZER||B6PV|3|7|09/17/2005 22:00||09/17/2005 23:36|0.1||NAD83|32.7342|-114.6258|1|0|0|B|02|Complete +512123|BLM|AZ|AZYUD|WINTERS||B6QT|3|7|09/18/2005 14:50|||||NAD83|33.9328|-114.0172|||||07|Complete +514661|BLM|AZ|AZYUD|MANCHESTER||B6W1|3|7|09/19/2005 14:25||09/30/2005 11:00|1.0||NAD83|34.0419|-114.3903|1|0|0|B|02|Complete +509861|BLM|AZ|AZYUD|40 MILE||B61X|1|1|09/21/2005 09:56|09/21/2005 12:05|09/22/2005 13:47|0.1|9|NAD83|32.9314|-113.4282|1|0|0|A|08|Complete +509979|BLM|AZ|AZYUD|RAMSEY||B61Z|2|6|09/21/2005 13:15||09/21/2005 13:15|58.7||NAD83|32.9773|-113.4163|1|0|0|B|07|Complete +514662|BLM|AZ|AZYUD|CHAPPY||B61H|3|7|09/21/2005 16:46||09/21/2005 19:15|0.1||NAD83|32.7308|-114.7025|1|0|0|I|02|Complete +509697|BLM|AZ|AZYUD|F A 71||B7C6|5|6|09/22/2005|||||||||||||Complete +510566|BLM|AZ|AZYUD|BLASEDELL||B7C8|2|5|09/22/2005 10:39||09/22/2005 10:39|0.1||NAD83|32.6962|-114.4266|1|0|0|B|07|Complete +510575|BLM|AZ|AZYUD|BLASEDELL2||B7C9|2|5|09/22/2005 10:39||09/22/2005 10:39|0.1||NAD83|32.6906|-114.4205|1|0|0|B|01|Complete +512133|BLM|AZ|AZYUD|FAR||B7C7|3|7|09/26/2005 13:57|09/26/2005 14:15||||NAD83|32.6167|-114.7880|||||02|Complete +512156|BLM|AZ|AZYUD|BORDER||B7DS|||09/27/2005 03:57|||||||||||||Incomplete +512157|BLM|AZ|AZYUD|BORDER 2||B7DS|3|7|09/27/2005 03:57|||||NAD83|32.7195|-114.7202|||||02|Complete +514663|BLM|AZ|AZYUD|2 PALM||B7ED|3|7|09/27/2005 12:03||10/03/2005|0.1||NAD83|34.1481|-114.3069|1|0|0|B|02|Complete +512311|BLM|AZ|AZYUD|LA POSA||B7H2|1|1|09/28/2005 19:59|09/28/2005 19:59|09/28/2005 20:30|0.3|2|NAD83|33.6481|-114.2152|1|0|0|A|01|Complete +510581|BLM|AZ|AZYUD|FA 75||B7J3|5|1|09/29/2005 14:15|||||NAD83|33.6536|-114.2866|||||01|Complete +511059|BLM|AZ|AZYUD|Guadalupe||B7L2|1|1|09/30/2005 14:04|09/30/2005 15:32|09/30/2005 16:30|0.1|9|NAD83|33.6664|-114.0361|1|1|5|A|01|Complete +510583|BLM|AZ|AZYUD|KING VALLE||B7S5|3|7|10/02/2005 09:06|10/02/2005 12:33||||NAD83|33.5623|-113.9172|||||04|Complete +513313|BLM|AZ|AZYUD|INTRSCTN||B7UR|3|7|10/03/2005 15:02|||||NAD83|34.1353|-114.2956|||||02|Complete +511076|BLM|AZ|AZYUD|Vidal Junc||B7U8|1|1|10/03/2005 17:30|10/03/2005 20:45|10/05/2005 18:01|1.0|9|NAD83|34.1211|-114.5111|1|0|0|A|01|Complete +510615|BLM|AZ|AZYUD|LEVI||B7WL|1|1|10/05/2005 07:58|10/05/2005 08:20|10/05/2005 11:50|0.8|9|NAD83|32.7328|-114.6600|1|0|0|B|01|Complete +510614|BLM|AZ|AZYUD|TRASH||B7XD|1|1|10/05/2005 15:01|10/05/2005 15:50|10/07/2005 10:00|0.1|4|NAD83|32.5484|-114.6986|1|0|0|A|01|Complete +512298|BLM|AZ|AZYUD|PLANET RNC||B7YL|3|7|10/06/2005 09:45|||||NAD83|34.2500|-113.9655|||||07|Complete +512160|BLM|AZ|AZYUD|BORDER 2||B7ZE|3|7|10/06/2005 15:03|10/06/2005 15:20||||NAD83|32.7189|-114.7216|||||02|Complete +511196|BLM|AZ|AZYUD|FA 77||B70A|5|1|10/07/2005 13:22|||||||||||||Complete +510612|BLM|AZ|AZYUD|T BOB||B7FB|1|1|10/07/2005 13:34|10/07/2005 14:10|10/07/2005 15:15|0.3|9|NAD83|32.5120|-114.8030|1|0|0|B|01|Complete +512161|BLM|AZ|AZYUD|FA 78||B70F|3|7|10/07/2005 16:12|10/07/2005 16:28||||NAD83|32.7573|-114.5816|||||02|Complete +512141|BLM|AZ|AZYUD|RANGE||B71C|1|1|10/08/2005 15:41|10/08/2005 16:12|10/24/2005 11:15|1.0|9|NAD83|32.3659|-114.2072|1|0|7|F|01|Complete +512134|BLM|AZ|AZYUD|SALINITY||B71K|1|1|10/08/2005 23:43|10/09/2005 09:12|10/10/2005 14:40|0.1|9|NAD83|32.4998|-114.8086|1|0|0|B|01|Complete +513314|BLM|AZ|AZYUD|PORT||B71L|3|7|10/09/2005 10:00|10/09/2005 10:20|10/09/2005 10:45|||NAD83|32.7181|-114.7311|||||02|Complete +510638|BLM|AZ|AZYUD|FA 79||B72C|5|1|10/09/2005 18:48|||||NAD83|32.6506|-114.2177||||||Complete +514665|BLM|AZ|AZYUD|5 1HALF||B76Y|1|1|10/12/2005 16:00|10/12/2005 16:00|10/12/2005 17:00|0.3|9|NAD83|34.7250|-114.5802|1|0|6|A|01|Complete +511191|BLM|AZ|AZYUD|SCADDON||B77R|1|1|10/12/2005 18:56|10/12/2005 18:56|10/13/2005 17:00|0.1|9|NAD83|33.6547|-114.1799|1|0|0|A|01|Complete +512129|BLM|AZ|AZYUD|BOUSE WASH||B8AR|3|7|10/15/2005 02:30|||||NAD83|33.6275|-113.7077|||||07|Complete +513300|BLM|AZ|AZYUD|CAROLINE||B8NE|3|7|10/26/2005 14:05|||||NAD83|32.8062|-114.4986|||||08|Complete +513315|BLM|AZ|AZYUD|MULCH||B8TV|1|1|11/02/2005 12:02|11/02/2005 12:02|11/07/2005 15:00|1.0|9|NAD83|32.6767|-114.6363|1|0|0|A|01|Complete +513155|BLM|AZ|AZYUD|FA 81||B8WL|5|1|11/04/2005 14:50|||||NAD83|33.6506|-113.9880||||||Complete +513309|BLM|AZ|AZYUD|COCOPAH 2||B8W1|3|7|11/04/2005 17:11|||||NAD83|32.7448|-114.7033|||||02|Complete +514666|BLM|AZ|AZYUD|PLANTATION||B8XF|1|1|11/06/2005 10:31|11/06/2005 10:31|11/07/2005 11:58|0.5|9|NAD83|34.8506|-114.5447|1|0|0|K|01|Complete +513346|BLM|AZ|AZYUD|5TH WHEEL||B83L|3|7|11/09/2005 07:40|11/09/2005 07:40|11/09/2005 07:40|0.1||NAD83|33.6528|-114.2199|1|0|0|A|01|Complete +513349|BLM|AZ|AZYUD|FORTUNA||B89F|1|1|11/12/2005 15:20|11/12/2005 15:20|11/12/2005 15:30|0.1|2|NAD83|32.7231|-114.4552|1|0|0|A|01|Complete +513147|BLM|AZ|AZYUD|PRIVATE||B9AE|1|5|11/15/2005 13:50|11/15/2005 13:50|11/15/2005 13:53|1.0|9|NAD83|32.7959|-114.5005|1|0|0|A|01|Complete +514667|BLM|AZ|AZYUD|ELEMENT||B89E|1|1|11/16/2005 17:12|11/16/2005 17:46|12/06/2005 15:48|20.0|9|NAD83|32.6756|-114.7438|1|0|0|B|01|Complete +514681|BLM|AZ|AZYUD|CHILE PEPR||B89K|1|1|11/17/2005 07:20|11/17/2005 08:00|12/02/2005 14:30|0.5|9|NAD83|32.4948|-114.8125|1|0|7|A|01|Complete +513297|BLM|AZ|AZYUD|FA 82||B9J2|5|6|11/23/2005 18:10|||||NAD83|34.0353|-114.4091||||||Complete +517090|BLM|AZ|AZYUD|UNION||B9HE|3|7|11/27/2005 07:52|||||NAD83|32.7348|-114.6469|||||02|Complete +514682|BLM|AZ|AZYUD|LOG 2||B9ZZ|3|7|11/27/2005 16:55|11/27/2005 16:55|11/27/2005 17:00|0.8||NAD83|32.7334|-114.6108|1|0|0|K|02|Complete +513298|BLM|AZ|AZYUD|TRM PLANT||B9HU|3|7|11/27/2005 23:50|||||NAD83|33.9450|-114.1936|||||08|Complete +514683|BLM|AZ|AZYUD|ARROW||B9JU|3|7|11/29/2005 16:50|11/29/2005 17:53|11/30/2005 09:02|0.5||NAD83|32.7667|-114.6625|3|0|0|B|02|Complete +514698|BLM|AZ|AZYUD|BARAGAN||B9QU|3|7|12/04/2005 15:23||||||||||||07|Complete +514684|BLM|AZ|AZYUD|ANDRADE||B9QL|3|7|12/07/2005 01:48|12/07/2005 01:48||||NAD83|32.7362|-114.7172|1|0|0|E|02|Complete +514745|BLM|AZ|AZYUD|HUNTERS||B9TD|1|1|12/10/2005 11:00|12/10/2005 11:00|12/10/2005 11:00|0.1|9|NAD83|33.0781|-113.4852|1|0|0|A|01|Complete +514685|BLM|AZ|AZYUD|JACK RABBT||B9TA|1|1|12/10/2005 12:00|12/10/2005 12:00|12/10/2005 12:00|0.1|9|NAD83|32.6467|-114.6347|1|0|0|E|01|Complete +515270|BLM|AZ|AZYUD|YE 025||B9TB|1|1|12/10/2005 13:00|12/10/2005 13:00|12/10/2005 13:00|0.1|9|NAD83|33.0767|-113.4855|1|0|0|A|01|Complete +515268|BLM|AZ|AZYUD|OVERNIGHT||B9TC|1|1|12/10/2005 14:00|12/10/2005 14:00|12/10/2005 14:00|0.1|9|NAD83|33.0781|-113.4852|1|0|0|A|01|Complete +514746|BLM|AZ|AZYUD|9TH AVE||B9T2|3|7|12/14/2005 14:49|12/14/2005 15:00|12/27/2005 09:00|0.5||NAD83|34.0286|-114.3839|1|0|0|B|02|Complete +514748|BLM|AZ|AZYUD|CANAL EDGE||B9YJ|1|1|12/22/2005 11:30|12/22/2005 11:30|12/22/2005 12:15|0.1|9|NAD83|32.6914|-114.5747|1|0|0|B|01|Complete +514747|BLM|AZ|AZYUD|WATERDOG||B9YG|1|1|12/22/2005 12:30|12/22/2005 12:30|12/22/2005 12:30|0.1|9|NAD83|32.7120|-114.5483|1|0|0|A|01|Complete +514749|BLM|AZ|AZYUD|FRWY VIEW||B9YK|1|1|12/22/2005 13:30|12/22/2005 13:45|12/22/2005 13:45|0.1|9|NAD83|32.6912|-114.5802|1|0|0|B|01|Complete +516711|BLM|AZ|AZYUD|CANAL 2||B9Z1|3|7|12/24/2005 23:37|12/24/2005 23:45|01/06/2006 15:30|0.5||NAD83|34.1631|-114.2897|1|0|0|J|09|Complete +516039|BLM|AZ|AZYUD|LTTLE SMKY||B99W|1|5|12/27/2005 09:30|12/27/2005 09:40|12/27/2005 11:05|0.1|9|NAD83|34.5292|-114.2550|1|0|1|A|07|Complete +514751|BLM|AZ|AZYUD|SPOUT||B9Z0|1|1|12/27/2005 13:15|12/27/2005 14:00|12/27/2005 14:00|0.1|9|NAD83|32.7167|-114.5527|1|0|0|B|01|Complete +514756|BLM|AZ|AZYUD|I 8||B9Z2|3|7|12/28/2005 09:18|12/28/2005 09:25|12/28/2005 10:00|0.1||NAD83|32.7325|-114.6261|1|0|0||02|Complete +515896|BLM|AZ|AZYUD|RED RCK RD||CA48|1|1|12/29/2005 09:00|12/29/2005 09:00|12/30/2005 12:00|0.1|9|NAD83|34.5286|-114.2733|1|0|1|A|01|Complete +516048|BLM|AZ|AZYUD|FAT KID||CA5A|1|1|12/31/2005 08:00|12/31/2005 08:00|12/31/2005 09:30|0.1|9|NAD83|34.5320|-114.2552|1|0|1|A|01|Complete +515903|BLM|AZ|AZYUD|CLIFF||CA5H|1|1|01/01/2006 08:00|01/01/2006 08:10|01/01/2006 15:00|0.1|9|NAD83|34.5292|-114.2652|1|0|1|A|01|Complete +516056|BLM|AZ|AZYUD|COUCH||CA5J|1|1|01/03/2006 14:00|01/03/2006 15:00|01/04/2006 10:00|0.1|9|NAD83|34.5331|-114.2525|1|1|0|A|01|Complete +515262|BLM|AZ|AZYUD|FA 01||B96N|5|1|01/04/2006 15:00|||||NAD83|32.7114|-114.7233||||||Complete +515263|BLM|AZ|AZYUD|WAKEY ASST||B97Y|3|7|01/05/2006 01:25|||5.0||NAD83|32.6392|-114.7688|||||02|Complete +516152|BLM|AZ|AZYUD|WHEEL||CA5K|1|1|01/05/2006 15:00|01/05/2006 16:30|01/05/2006 17:00|0.1|9|NAD83|34.5339|-114.2533|1|0|1|A|01|Complete +516157|BLM|AZ|AZYUD|BISON||CA5L|1|1|01/06/2006 13:00|01/06/2006 14:00|01/08/2006 08:00|0.1|9|NAD83|34.5322|-114.2552|1|0|0|A|01|Complete +515265|BLM|AZ|AZYUD|ANTONE ASST||CAM2|3|7|01/06/2006 15:25||01/13/2006 15:30|||NAD83|34.1020|-114.4041|||||02|Complete +515266|BLM|AZ|AZYUD|38||CAP1|1|1|01/09/2006 10:20|01/09/2006 12:30|01/09/2006 13:21|0.3|9|NAD83|33.6484|-113.8969|1|0|0|A|01|Complete +515307|BLM|AZ|AZYUD|2ND AVENUE ASST||CAX8|3|7|01/11/2006 13:01|01/11/2006 14:20||||NAD83|33.6934|-114.5483|||||02|Complete +516159|BLM|AZ|AZYUD|BISON CRSS||CA5M|1|1|01/13/2006 15:30|01/13/2006 16:30|01/13/2006 17:00|0.1|9|NAD83|34.5322|-114.2550|1|0|0|A|01|Complete +515395|BLM|AZ|AZYUD|TRSTL ASST||CA12|3|7|01/15/2006 02:28|||||NAD83|32.7042|-114.4322|||||07|Complete +516054|BLM|AZ|AZYUD|SLPY HLLOW||CA3M|3|7|01/16/2006 10:32||01/25/2006 09:48|||NAD83|33.7286|-114.7302|||||02|Complete +516024|BLM|AZ|AZYUD|FA 02||CA3L|5|1|01/16/2006 10:37|||||NAD83|32.8334|-113.6674|||||01|Complete +516170|BLM|AZ|AZYUD|WTR FALL 2||CA5N|1|1|01/17/2006 13:30|01/17/2006 15:00|01/19/2006 11:25|0.1|9|NAD83|34.5442|-114.2230|1|0|0|A|01|Complete +516175|BLM|AZ|AZYUD|PARADISE||CA7E|1|1|01/18/2006 16:37|01/18/2006 16:39|01/19/2006 11:00|0.1|9|NAD83|32.7331|-114.6652|1|0|0|B|01|Complete +516174|BLM|AZ|AZYUD|FA 03||CA7V|5|1|01/19/2006 12:58|||||NAD83|32.8334|-113.4174|||||01|Complete +516173|BLM|AZ|AZYUD|TACNA ASST||CA8P|3|7|01/19/2006 15:36|||||NAD83|32.6987|-113.9466|||||07|Complete +516171|BLM|AZ|AZYUD|FA 04||CA8S|5|1|01/19/2006 15:45|||||NAD83|34.1756|-113.7380|||||01|Complete +516172|BLM|AZ|AZYUD|BEALE ASST||CA8M|3|7|01/19/2006 19:44|||||NAD83|34.7525|-114.5358|||||04|Complete +516176|BLM|AZ|AZYUD|AMRCN ASST||CA9R|3|7|01/20/2006 15:38|01/20/2006 16:24||||NAD83|32.7192|-114.7427||0||B|01|Complete +516256|BLM|AZ|AZYUD|EMBRS ASST||CA96|3|7|01/21/2006 20:29|01/21/2006 21:32|01/22/2006 16:00|0.8||NAD83|34.5375|-114.2658|1|2|0||07|Complete +516257|BLM|AZ|AZYUD|ROOSTER ASST||CBA5|3|7|01/23/2006 06:07|01/23/2006 07:30||||NAD83|32.7406|-114.6236|||||02|Complete +516258|BLM|AZ|AZYUD|CONFUSION||CBC7|3|7|01/23/2006 15:00||01/27/2006 15:26|3.5||NAD83|33.8992|-113.9977|||||01|Complete +516413|BLM|AZ|AZYUD|BRIDGE||CBE4|1|1|01/24/2006 16:30|01/24/2006 17:00|01/29/2006 13:00|3.0|9|NAD83|32.6617|-114.7486|1|0|0|B|01|Complete +516909|BLM|AZ|AZYUD|CHASER ASST||CBH6|3|7|01/27/2006 08:30||01/30/2006 10:56|1.0||NAD83|34.0284|-114.3944|||||02|Complete +516917|BLM|AZ|AZYUD|BTTRFLD ST||CBN5|1|1|01/28/2006 21:52|01/29/2006 00:07|01/31/2006 19:55|3.0|9|NAD83|32.7625|-113.8116|1|0|0|B|01|Complete +516712|BLM|AZ|AZYUD|F A 04||CB2E|5|6|02/01/2006 11:54|||||NAD83|33.4778|-114.6994|||||07|Complete +516916|BLM|AZ|AZYUD|PUMP||CB3U|1|1|02/03/2006 09:25|02/03/2006 10:27|02/03/2006 12:15|0.3|9|NAD83|32.2023|-114.3222|1|0|5|B|01|Complete +516918|BLM|AZ|AZYUD|HILL||CB3X|1|1|02/03/2006 13:15|02/03/2006 13:15|02/03/2006 13:15|0.3|9|NAD83|32.7556|-113.8021|1|0|0|L|01|Complete +517044|BLM|AZ|AZYUD|RODEBAUGH ASST||CB6V|3|7|02/06/2006 17:37|02/06/2006 17:38|02/10/2006 12:00|9.0||NAD83|32.7417|-114.6419|||||02|Complete +517669|BLM|AZ|AZYUD|MESA ASST||CB7L|3|7|02/07/2006 14:34|||||NAD83|33.3742|-114.3702|||||02|Complete +516915|BLM|AZ|AZYUD|FA 6||CB8N|5|1|02/08/2006 09:08|||||NAD83|34.4425|-114.2188||||||Complete +517670|BLM|AZ|AZYUD|MICKEYS||CCF9|3|7|02/11/2006 19:00|||||NAD83|34.1361|-114.3033|||||02|Complete +517035|BLM|AZ|AZYUD|FA 08||CCY1|5|1|02/13/2006 17:57|||||NAD83|34.4533|-114.3600||||||Complete +517005|BLM|AZ|AZYUD|FA 10||CCV7|5|1|02/14/2006 13:00|||||NAD83|32.7517|-113.4207||||||Complete +517004|BLM|AZ|AZYUD|FA 09||CCR1|5|5|02/14/2006 13:04|||||NAD83|32.7473|-113.9941||||||Complete +517034|BLM|AZ|AZYUD|POOF||CCU1|1|1|02/14/2006 17:20|02/14/2006 17:20|02/14/2006 17:20|0.5|9|NAD83|32.7087|-113.8833|1|0|0|A|01|Complete +517006|BLM|AZ|AZYUD|FA 11||CC0C|5|1|02/16/2006 14:44|||||NAD83|32.7617|-113.4285||||||Complete +517668|BLM|AZ|AZYUD|CORNER ASST||CC05|3|7|02/17/2006 08:16|||||NAD83|34.0245|-114.4177|||||02|Complete +517498|BLM|AZ|AZYUD|HOPE ASST||CC1S|3|7|02/18/2006 19:15|||||NAD83|33.4836|-113.7674|||||04|Complete +517036|BLM|AZ|AZYUD|FA 12||CC11|5|1|02/19/2006 20:40|||||NAD83|32.6873|-114.5900||||||Complete +517222|BLM|AZ|AZYUD|DEL SOL||CC2P|1|1|02/20/2006 14:30|02/20/2006 14:31|02/20/2006 15:01|0.5|9|NAD83|32.6856|-114.4277|1|0|0|A|01|Complete +517039|BLM|AZ|AZYUD|FA 15||CC2V|5|1|02/21/2006 09:34|||||NAD83|34.6258|-114.3111||||||Complete +517487|BLM|AZ|AZYUD|SHADOW||CC3P|1|1|02/22/2006 13:48|02/22/2006 13:48|02/26/2006 13:16|41.0|9|NAD83|32.5423|-114.7977|1|0|0|B|01|Complete +517492|BLM|AZ|AZYUD|ROAD||CC39|3|7|02/23/2006 12:58|||||NAD83|32.5295|-114.7988|||||08|Complete +517224|BLM|AZ|AZYUD|FA 17||CC56|5|1|02/25/2006 22:45|||||NAD83|34.4161|-114.1863||||||Complete +517491|BLM|AZ|AZYUD|HIDDEN||CC8S|1|1|02/27/2006 12:46|02/27/2006 12:46|02/27/2006 15:00|20.0|9|NAD83|32.7150|-113.9210|1|0|0|A|01|Complete +517225|BLM|AZ|AZYUD|PALO VERDE||CDC3|1|1|02/27/2006 21:45|03/01/2006 15:00|03/01/2006 15:20|0.1|9|NAD83|32.6856|-114.4111|1|0|0|B|01|Complete +517495|BLM|AZ|AZYUD|FA 14||CC2Y|5|5|02/28/2006 12:21|||||NAD83|32.6903|-114.6772||||||Complete +517490|BLM|AZ|AZYUD|FA 18||CDG8|5|1|03/01/2006 18:02|||||NAD83|32.6184|-114.7838||||||Complete +517494|BLM|AZ|AZYUD|DITCH||CDS1|3|7|03/02/2006 20:00|||||NAD83|32.5259|-114.7994|||||08|Complete +517488|BLM|AZ|AZYUD|DITCH2||CDV7|1|1|03/03/2006 15:56|03/03/2006 15:56|03/06/2006 10:58|1.6|9|NAD83|32.5476|-114.7975|1|0|0|A|01|Complete +517497|BLM|AZ|AZYUD|BLK SPOT||CD10|2|1|03/05/2006 08:30||03/06/2006 08:30|0.1||NAD83|34.4328|-114.2838|||||01|Complete +517489|BLM|AZ|AZYUD|BERM||CD12|3|7|03/10/2006 08:02|||||NAD83|32.7320|-114.5600|||||08|Complete +517667|BLM|AZ|AZYUD|OSBORNE||CEG3|3|7|03/17/2006 18:45|||||NAD83|34.1581|-114.2105|||||08|Complete +518890|BLM|AZ|AZYUD|GORTA||CEJ9|1|1|03/19/2006 09:27|03/19/2006 09:27|03/21/2006 10:57|0.1|9|NAD83|32.7328|-114.6583|1|0|0|T|01|Complete +517763|BLM|AZ|AZYUD|KUDU ASST||CEK2|3|7|03/19/2006 13:00|||||NAD83|34.0370|-114.3266|||||02|Complete +517761|BLM|AZ|AZYUD|7TH AVE ASST||CEQ2|3|7|03/22/2006 16:10|||||NAD83|34.0467|-114.3652|||||02|Complete +517758|BLM|AZ|AZYUD|FA 20||CEU8|5|5|03/24/2006 10:00|||||||||||||Complete +517759|BLM|AZ|AZYUD|SQUAW||CEU9|2|1|03/24/2006 15:00||03/24/2006 15:00|0.1||NAD83|32.9012|-114.4774|||||01|Complete +518762|BLM|AZ|AZYUD|45 E||CEX7|1|1|03/25/2006 20:15|03/25/2006 22:10|03/29/2006 14:51|1.5|9|NAD83|34.7714|-113.8683|1|0|0|T|01|Complete +518878|BLM|AZ|AZYUD|FA 21||CE1P|5|1|03/27/2006 16:46|||||NAD83|33.6453|-114.3802|||||02|Complete +520039|BLM|AZ|AZYUD|RVRS EDGE ASST||CE6G|3|7|03/31/2006 17:49|03/31/2006 18:07|03/31/2006 18:32|0.1||NAD83|32.7350|-114.6467|1|0|0|B|02|Complete +518761|BLM|AZ|AZYUD|30 E||CFB6|1|5|04/03/2006 15:40|04/03/2006 16:36|04/07/2006 11:26|0.1|9|NAD83|32.7314|-114.1094|1|0|1|T|08|Complete +520035|BLM|AZ|AZYUD|TREE ASST||CFN6|3|7|04/05/2006 16:30|04/05/2006 16:35|04/05/2006 16:35|0.1||NAD83|32.7364|-114.6236|1|0|0|A|02|Complete +518760|BLM|AZ|AZYUD|SPILLWAY||CFU3|1|1|04/06/2006 14:30|04/06/2006 14:30|04/06/2006 14:40|0.1|2|NAD83|32.8528|-114.4444|1|0|0|A|01|Complete +520051|BLM|AZ|AZYUD|FA 22||CGL0|5|6|04/12/2006 09:45|||||NAD83|32.7411|-114.6953|||||02|Complete +518881|BLM|AZ|AZYUD|CO 11 ASST||CG23|3|7|04/14/2006 14:17|04/14/2006 14:26|04/27/2006 12:53|0.1|1|NAD83|32.6717|-114.7113|1|0|0|A|08|Complete +518889|BLM|AZ|AZYUD|WINDY||CG3G|1|5|04/14/2006 14:48|04/14/2006 16:21|04/22/2006 12:31|128.0|4|NAD83|32.8848|-113.5413|1|0|0|T|08|Complete +518887|BLM|AZ|AZYUD|OWLWSHASST||CG3H|3|7|04/14/2006 16:16|04/14/2006 16:51|04/27/2006 14:10|0.3||NAD83|32.7470|-113.8505|1|0|0|B|08|Complete +518888|BLM|AZ|AZYUD|WEST 2||CG7F|3|7|04/15/2006 11:38|04/15/2006 11:40|04/27/2006 18:30|5.5|1|NAD83|32.8839|-113.5624|1|0|0|B|08|Complete +518759|BLM|AZ|AZYUD|ANTELOPE||CG9B|1|6|04/16/2006 16:32|04/16/2006 18:00|04/17/2006 18:00|7.0|6|NAD83|32.6934|-114.0166|1|0|0|T|06|Complete +518880|BLM|AZ|AZYUD|CUTBANK||CH07|1|1|04/18/2006 14:43|04/18/2006 15:27|04/27/2006 13:15|1.5|9|NAD83|32.6517|-114.7625|1|0|0|B|01|Complete +534299|BLM|AZ|AZYUD|CONFLUENCE||CH3C|1|1|04/19/2006 14:22|04/19/2006 14:37|04/21/2006 18:00|37.0|9|NAD83|32.7103|-114.5494|1|0|0|B|01|Complete +518879|BLM|AZ|AZYUD|FA 24||CH3W|5|1|04/19/2006 16:49|||||NAD83|32.6592|-114.3522|||||01|Complete +525398|BLM|AZ|AZYUD|CASPER||CH3V|1|1|04/19/2006 17:24|04/19/2006 17:30|04/19/2006 21:00|0.1|9|NAD83|33.6564|-113.9661|1|1|0|A|01|Complete +521762|BLM|AZ|AZYUD|FA 23||CJM4|5|1|04/20/2006 09:51|||||NAD83|34.3395|-113.3910||||||Complete +522518|BLM|AZ|AZYUD|OLD LINE||CH9N|1|1|04/22/2006 16:52|04/22/2006 16:54|04/27/2006 12:42|5.5|9|NAD83|32.6692|-114.7452|1|0|0|A|01|Complete +518877|BLM|AZ|AZYUD|PICACHO ASST||CJC1|3|7|04/23/2006 17:16|04/23/2006 17:28|04/23/2006 21:33|0.2||NAD83|32.2581|-114.6094|1|0|0|B|02|Complete +518886|BLM|AZ|AZYUD|FA 25||CJM5|5|5|04/24/2006 17:31|||||NAD83|32.8000|-114.5766|||||08|Complete +518885|BLM|AZ|AZYUD|FA 26||CJN7|5|5|04/25/2006 07:19|||||NAD83|32.7267|-114.5136|||||08|Complete +518883|BLM|AZ|AZYUD|FA 27||CJQ7|5|1|04/25/2006 09:58|||||NAD83|32.7925|-114.5888|||||08|Complete +520050|BLM|AZ|AZYUD|FA 28||CJ2N|5|1|04/28/2006 03:16|||||NAD83|32.7289|-113.7388|||||01|Complete +520057|BLM|AZ|AZYUD|FA 31||CJ6V|5|5|04/28/2006 11:50|||||NAD83|32.7748|-114.5377|||||08|Complete +520054|BLM|AZ|AZYUD|FA 30||CJ4D|5|6|04/29/2006 09:07|||||NAD83|32.8008|-114.6192|||||02|Complete +520053|BLM|AZ|AZYUD|FA 29||CJ6S|5|1|04/30/2006 18:40|||||NAD83|33.6070|-113.6035||||||Complete +520049|BLM|AZ|AZYUD|CITRUSLEVY ASST||CJ6L|3|7|05/01/2006 12:28|05/01/2006 12:35|05/01/2006 15:48|0.1||NAD83|32.7694|-114.5339|1|0|0|B|02|Complete +520058|BLM|AZ|AZYUD|FA 32||CJ7J|5|6|05/02/2006 11:03|||||NAD83|33.6628|-114.2350||||||Complete +520048|BLM|AZ|AZYUD|TRAILER ASST||CJ9F|3|7|05/04/2006 10:34|05/04/2006 10:49|05/04/2006 11:10|0.1||NAD83|32.7419|-114.6233|1|0|0|K|02|Complete +522503|BLM|AZ|AZYUD|OXBOW||CKV5|1|5|05/05/2006 11:15|05/05/2006 13:00|05/05/2006 14:17|3.0|5|NAD83|33.3906|-114.6963|1|0|0|A|07|Complete +536566|BLM|AZ|AZYUD|MM 24||CKW5|1|1|05/10/2006 15:30|05/10/2006 17:33|05/10/2006 18:00|0.1|9|NAD83|33.6736|-114.1399|1|2|0|L|01|Complete +537692|BLM|AZ|AZYUD|The 45 Assist||CK1T|3|7|05/11/2006 09:37|05/11/2006 12:11|05/11/2006 12:46|0.1||NAD83|33.6334|-113.7841|||||07|Complete +537688|BLM|AZ|AZYUD|No Call||CKZ4|3|7|05/11/2006 14:25|||0.3||NAD83|34.4420|-114.2322|||||07|Complete +521764|BLM|AZ|AZYUD|FA 34||CL14|5|1|05/21/2006 14:14|||||||||||||Complete +522483|BLM|AZ|AZYUD|PLATE C||CL0N|1|5|05/21/2006 15:23|05/21/2006 15:30|05/21/2006 16:12|0.1|7|NAD83|32.6673|-114.1624|1|0|0|A|07|Complete +536568|BLM|AZ|AZYUD|DEL MONTE||CL0R|1|1|05/21/2006 17:00|05/21/2006 17:00|05/22/2006 17:47|300.0|9|NAD83|33.8770|-113.5358|1|2|0|B|01|Complete +521763|BLM|AZ|AZYUD|FA 33||CL0A|5|2|05/22/2006 12:08|||||||||||||Complete +521765|BLM|AZ|AZYUD|FA 35||CMS4|5|1|05/25/2006 12:56|||||||||||||Complete +526808|BLM|AZ|AZYUD|EAST TACNA ASST||CME2|1|6|05/26/2006 13:17|05/26/2006 13:40|05/26/2006 13:40|0.1|9|NAD83|32.7042|-113.8813|1|0|0|A|08|Complete +536570|BLM|AZ|AZYUD|BIG HORN||CM1K|1|1|05/27/2006 20:52|05/27/2006 21:56|05/28/2006 13:33|0.3|9|NAD83|34.3133|-114.1411|1|0|1|B|01|Complete +521766|BLM|AZ|AZYUD|FA 36||CM4X|5|1|05/30/2006 10:50|||||||||||||Complete +521767|BLM|AZ|AZYUD|FA 37||CNA2|5|2|06/02/2006 12:20|||||||||||||Complete +521768|BLM|AZ|AZYUD|FA 38||CNG5|5|5|06/03/2006 18:33|||||||||||||Complete +526802|BLM|AZ|AZYUD|LEVY ASST||CPA0|1|5|06/08/2006 11:40|06/08/2006 11:45|06/11/2006 11:40|130.0|4|NAD83|32.7175|-114.5750|1|0|0|B|08|Complete +526809|BLM|AZ|AZYUD|TACNA MOHWK ASST||CPG2|1|5|06/08/2006 18:06|06/08/2006 18:55|06/10/2006 18:00|143.0|9|NAD83|32.7075|-113.8855|1|0|0|A|08|Complete +521770|BLM|AZ|AZYUD|FA 41||CP5U|5|5|06/11/2006 17:50|||||||||||||Complete +521769|BLM|AZ|AZYUD|FA 40||CP5L|5|2|06/12/2006 13:00|||||||||||||Complete +521771|BLM|AZ|AZYUD|FA 42||CQD9|5|5|06/14/2006 18:20|||||||||||||Complete +522506|BLM|AZ|AZYUD|CULVERT WASH||CQH8|1|1|06/15/2006 13:20|06/15/2006 15:31|06/16/2006 16:07|0.5|9|NAD83|33.6492|-114.3116|1|0|0|A|01|Complete +536569|BLM|AZ|AZYUD|MP 169||CQN2|1|1|06/16/2006 08:48|06/16/2006 09:30|06/17/2006 11:02|0.1|9|NAD83|33.5448|-114.1655|1|1|0|L|01|Complete +522496|BLM|AZ|AZYUD|HOVATTER||CQU5|1|1|06/16/2006 18:30|06/16/2006 20:04|06/19/2006 21:55|0.3|9|NAD83|33.6109|-113.6358|1|0|0|A|01|Complete +525477|BLM|AZ|AZYUD|CHUCKWALLA||CRN3|1|1|06/22/2006 16:15|06/22/2006 17:53|06/23/2006 11:00|2.0|6|NAD83|33.6500|-113.9080|1|0|0|A|01|Complete +522501|BLM|AZ|AZYUD|FA 44||CR1Y|5|6|06/24/2006 20:14|||||NAD83|34.2959|-113.5655||||||Complete +522502|BLM|AZ|AZYUD|FA 45||CR3P|5|5|06/25/2006 14:00|||||NAD83|32.8192|-113.4844||||||Complete +526811|BLM|AZ|AZYUD|CABIN ASSIST||CST1|1|6|06/28/2006 07:00|06/28/2006 09:05|06/30/2006 13:00|1.5|1|NAD83|33.0339|-114.5622|1|0|0|A|04|Complete +522499|BLM|AZ|AZYUD|FA 46||CS0W|5|1|06/28/2006 13:21|||||||||||||Complete +537755|BLM|AZ|AZYUD|Lower Dike II||CS3P|1|6|06/28/2006 23:15||07/02/2006 08:33|||NAD83|34.1039|-114.1013||||||Incomplete +536563|BLM|AZ|AZYUD|ALTIMA||CUD2|1|1|07/01/2006 10:00|07/01/2006 14:00|07/01/2006 15:00|0.1|9|NAD83|34.8408|-114.5669|1|0|0|B|01|Complete +525482|BLM|AZ|AZYUD|POINT||CUK4|1|1|07/01/2006 21:14|07/01/2006 22:32|07/02/2006 01:16|0.1|2|NAD83|32.9087|-114.4922|1|0|3|A|01|Complete +536564|BLM|AZ|AZYUD|FORT||CUD9|1|1|07/02/2006 14:00|07/02/2006 14:15|07/02/2006 17:00|0.3|1|NAD83|34.8333|-114.5836|1|0|0|B|01|Complete +526292|BLM|AZ|AZYUD|DATELAND ASST||CU33|3|7|07/03/2006 17:22||||||||||||07|Complete +525458|BLM|AZ|AZYUD|IDAHO||CV49|1|1|07/05/2006 14:20|07/05/2006 15:08|07/05/2006 15:30|0.5|9|NAD83|33.6111|-113.6360|1|0|0|A|01|Complete +526265|BLM|AZ|AZYUD|SQUAW 2||CWZ0|2|1|07/07/2006 09:00|07/07/2006 09:00|07/07/2006 09:00|0.1|1|NAD83|32.9064|-114.4749|2|0|5|A|01|Complete +525473|BLM|AZ|AZYUD|FA 48||CXP4|5|1|07/09/2006 15:00|||||NAD83|33.6278|-114.2091|||||01|Complete +526804|BLM|AZ|AZYUD|QUARTZ ASST||CX8N|1|5|07/12/2006 08:35|07/12/2006 10:19|07/14/2006 08:00|0.2|9|NAD83|33.6461|-114.3780|1|0|0|A|02|Complete +536565|BLM|AZ|AZYUD|MARSHALL||CYM4|1|1|07/13/2006 15:39|07/13/2006 16:59|07/17/2006 14:46|14.0|9|NAD83|33.6409|-113.8388|1|2|0|L|01|Complete +525476|BLM|AZ|AZYUD|FA 49||CY83|5|1|07/16/2006 21:26|||||NAD83|33.6742|-114.0583|||||01|Complete +527521|BLM|AZ|AZYUD|CIBOLA ASST||CY55|3|7|07/17/2006 06:20||||1||||||||04|Complete +526288|BLM|AZ|AZYUD|TREE ASST||C0X4|3|7|07/23/2006 15:15|07/23/2006 16:42|07/23/2006 16:42|0.1||NAD83|32.8162|-113.5041|||||08|Complete +527523|BLM|AZ|AZYUD|SEMI ASST||C1YH|3|7|07/28/2006 15:41|||||NAD83|34.3011|-114.0899|||||04|Complete +526271|BLM|AZ|AZYUD|FA 52||C10Q|5|1|07/28/2006 22:37|||||NAD83|33.6728|-114.0480|||||01|Complete +534289|BLM|AZ|AZYUD|PHANTOM||C2HT|1|1|07/31/2006 15:20|08/02/2006 08:35|08/02/2006 15:31|0.2|1|NAD83|32.8359|-114.4622|1|0|0|B|01|Complete +536562|BLM|AZ|AZYUD|STUCK||C2SY|1|1|08/05/2006 08:25|08/05/2006 10:00|08/05/2006 12:00|0.1|9|NAD83|32.4845|-114.2224|1|1|0|B|01|Complete +527520|BLM|AZ|AZYUD|FA 54||C24A|5|5|08/06/2006 13:45|||||NAD83|32.9720|-113.4969|1|0|0||08|Complete +534290|BLM|AZ|AZYUD|LONG DRIVE ASSIST||C3JP|3|7|08/10/2006 00:37|08/10/2006 08:02|08/11/2006 12:00|0.2||NAD83|32.8337|-114.5450|1|0|0|B|01|Complete +537690|BLM|AZ|AZYUD|I 10||C36R|3|7|08/15/2006 11:56|08/15/2006 13:30|08/15/2006 13:39|0.1||NAD83|33.6192|-114.4536|||||07|Complete +534292|BLM|AZ|AZYUD|CANAL||C44Q|1|1|08/23/2006 22:00|08/24/2006 12:06|08/24/2006 15:00|0.2|1|NAD83|32.6723|-114.2711|1|0|0|L|01|Complete +536624|BLM|AZ|AZYUD|HAVASU 1||C5AY|3|7|08/31/2006 17:00|||||NAD83|34.7986|-114.4761|||||04|Complete +534293|BLM|AZ|AZYUD|SUGARLOAF ASSIST||C5QJ|3|7|09/01/2006 01:00|09/01/2006 08:00|09/01/2006 13:20|0.3||NAD83|32.7767|-114.5072|1|0|0|B|08|Complete +536623|BLM|AZ|AZYUD|CUNNINGHAM ASST||C5UN|3|7|09/02/2006 18:30|||||NAD83|33.8884|-113.9572|||||08|Complete +534294|BLM|AZ|AZYUD|FA 56||C58L|5|1|09/06/2006 08:30|||||NAD83|34.2603|-114.1433|||||01|Complete +536567|BLM|AZ|AZYUD|PLAMOSA||C6JZ|1|1|09/12/2006 08:38|09/12/2006 09:48|09/13/2006 11:20|0.1|1|NAD83|33.8206|-114.0627|1|2|0|B|01|Complete +537754|BLM|AZ|AZYUD|Wedding Day||C6QW|||09/16/2006 11:00|09/16/2006 11:01|09/18/2006 15:30|3.4||NAD83|34.1036|-114.3444|||||02|Incomplete +537751|BLM|AZ|AZYUD|Fatman||C6X1|3|7|09/20/2006 17:30|09/20/2006 17:45|09/27/2006 15:30|10.0||NAD83|34.1153|-114.3033||1|1|B|02|Complete +534296|BLM|AZ|AZYUD|FA 58||C69P|5|5|09/24/2006 09:03|||||NAD83|33.5878|-113.4996|||||08|Complete +534295|BLM|AZ|AZYUD|FA 57||C61B|5|1|09/24/2006 09:04|||||NAD83|33.6167|-113.6377|||||01|Complete +534298|BLM|AZ|AZYUD|EXTINGUISHER||C61D|1|1|09/24/2006 09:39|09/24/2006 10:30|09/24/2006 14:22|0.1|9|NAD83|33.6503|-114.3097|1|0|3|A|01|Complete +534297|BLM|AZ|AZYUD|FA 59||C69W|5|1|09/27/2006 13:36|||||NAD83|33.6167|-113.6552|||||01|Complete +537712|BLM|AZ|AZYUD|Bounder||C7KV|1|1|10/02/2006 13:42|10/02/2006 13:42|10/05/2006 18:00|0.1|9|NAD83|32.8967|-114.5024|1|0|0|A|01|Complete +537722|BLM|AZ|AZYUD|Gravel Pit||C7M7|1|1|10/04/2006 10:18|10/04/2006 10:41|10/04/2006 13:30|0.1|9|NAD83|32.8175|-114.4877|1|0|0|A|01|Complete +537727|BLM|AZ|AZYUD|Fishing||C7R0|1|1|10/06/2006 11:15|10/06/2006 11:30|10/06/2006 13:30|0.3|2|NAD83|32.7459|-114.4655|2|0|1|A|01|Complete +537724|BLM|AZ|AZYUD|Bonfire||C7R3|1|1|10/06/2006 11:30|10/06/2006 12:00|10/09/2006 13:30|0.1|9|NAD83|32.7467|-114.4649|1|0|0|A|01|Complete +537726|BLM|AZ|AZYUD|Yuma Lakes||C7U9|1|1|10/08/2006 14:01|10/08/2006 17:21|10/09/2006 13:30|0.1|9|NAD83|32.7464|-114.4638|1|0|0|A|01|Complete +537729|BLM|AZ|AZYUD|Fall||C7VQ|1|1|10/08/2006 23:30|10/09/2006 00:32|10/09/2006 12:43|0.3|9|NAD83|32.7770|-114.4141|1|0|0|B|01|Complete +537728|BLM|AZ|AZYUD|Bumper||C7X4|1|1|10/11/2006 10:06|10/11/2006 10:06|10/11/2006 10:07|0.1|9|NAD83|32.8139|-114.4769|1|0|0|B|01|Complete +537723|BLM|AZ|AZYUD|N Shore||C71N|1|1|10/14/2006 13:25|10/14/2006 15:28|10/14/2006 16:30|0.1|9|NAD83|32.9148|-114.4849|1|0|0|A|01|Complete +538641|BLM|AZ|AZYUD|CHARMIN||C77P|1|5|10/19/2006 18:00|10/19/2006 18:57|10/20/2006 16:00|0.1|9|NAD83|32.7181|-114.5583|1|0|0|A|08|Complete +537703|BLM|AZ|AZYUD|Confluence II||C77Y|1|1|10/21/2006 08:15|10/21/2006 08:30|10/21/2006 09:45|0.1|9|NAD83|32.7170|-114.5525|1|0|0|A|01|Complete +537693|BLM|AZ|AZYUD|4E Levy||C79A|3|7|10/22/2006 08:03|10/22/2006 08:03||||NAD83|32.7217|-114.5655|||||07|Complete +537698|BLM|AZ|AZYUD|Fun||C8EX|1|1|10/29/2006 11:20|10/29/2006 11:29|10/29/2006 11:29|0.1|9|NAD83|32.7234|-114.4558|1|0|0|A|01|Complete +537696|BLM|AZ|AZYUD|Herman||C8EV|1|1|10/29/2006 11:22|10/29/2006 11:22|10/29/2006 11:27|0.1|9|NAD83|32.7431|-114.4419|1|0|0|A|01|Complete +537699|BLM|AZ|AZYUD|Vampire||C8GL|1|1|10/31/2006 10:10|10/31/2006 10:10|10/31/2006 10:40|0.1|9|NAD83|32.9123|-114.4883|1|0|0|A|01|Complete +537707|BLM|AZ|AZYUD|Big Horn II||C8L5|1|1|11/07/2006 11:00|11/08/2006 11:00|11/09/2006 18:00|40.0||NAD83|34.0089|-113.4994|4|4|8||01|Incomplete +537697|BLM|AZ|AZYUD|Bettys Campfire||C8RR|3|7|11/17/2006 14:00|11/17/2006 14:45|11/17/2006 15:00|0.1||NAD83|32.8195|-114.4888|1|0|0|A|07|Complete +537753|BLM|AZ|AZYUD|Gravel Pit II||C8VU|1|6|11/26/2006 15:45|11/26/2006 15:50|11/28/2006 15:00|0.3|||34.9331|-114.6331||||||Incomplete +537888|BLM|AZ|AZYUD|Christmas Dinner||C86D|1|1|12/25/2006 14:49|12/25/2006 18:32|12/26/2006 12:00|0.5|2|NAD83|34.1706|-113.8414|1|1|0||01|Incomplete +538642|BLM|AZ|AZYUD|UNTND CPFIRE||C88D|1|1|12/30/2006 12:52|12/30/2006 12:52|12/30/2006 12:52|0.1|9|NAD83|32.7439|-114.4836|1|0|0|A|01|Complete +541408|BLM|AZ|AZYUD|DIAZ ASST||C9AE|3|7|01/04/2007 14:00||||||||||||02|Complete +541399|BLM|AZ|AZYUD|WINDY ASST||C9DP|3|7|01/11/2007 13:30||||||||||||02|Complete +539096|BLM|AZ|AZYUD|MM 34||C9EB|1|1|01/16/2007 16:20|01/16/2007 18:36|01/16/2007 18:45|0.1|9|NAD83|33.6548|-113.9505|1|0|0|A|01|Complete +539098|BLM|AZ|AZYUD|FA 01||C9F8|5|1|01/24/2007 21:30|||||NAD83|33.6489|-113.9035|||||01|Complete +541400|BLM|AZ|AZYUD|COPPER ASST||C9F9|3|7|01/25/2007 07:10||||||||||||07|Complete +541413|BLM|AZ|AZYUD|RAILROAD ASST||C9JW|3|7|02/07/2007 01:00||||||||||||02|Complete +539125|BLM|AZ|AZYUD|7E||C9J7|3|7|02/07/2007 18:15|02/07/2007 18:30|02/08/2007 12:00|0.1||NAD83|32.7236|-114.5147|1|0|0|B|08|Complete +539100|BLM|AZ|AZYUD|COUNTY 9||C9MN|1|1|02/14/2007 12:54|02/14/2007 13:41|02/20/2007 17:00|16.6|9|NAD83|32.6922|-114.2792|1|0|0|B|01|Complete +539094|BLM|AZ|AZYUD|SPOT ROAD ASSIST||C9QT|3|7|02/22/2007 16:30|||||NAD83|32.8334|-113.3516|||||08|Complete +541414|BLM|AZ|AZYUD|CLUNKER ASST||C9UE|3|7|02/27/2007 21:30||||||||||||02|Incomplete +541418|BLM|AZ|AZYUD|NEW START||C9U3|3|7|03/01/2007 00:01||||||||||||02|Incomplete +539095|BLM|AZ|AZYUD|FA 02||C9YF|5|5|03/02/2007 12:00|||||NAD83|32.8414|-113.6613||||||Complete +541218|BLM|AZ|AZYUD|MILE 25||DAY3|1|1|03/17/2007 10:10|03/17/2007 16:49|03/17/2007 17:02|0.1|9|NAD83|33.67831|-114.10656|1|0|5|A|01|Complete +541410|BLM|AZ|AZYUD|FA 03||DA21|5|1|03/19/2007 15:00|||||||||||||Complete +541222|BLM|AZ|AZYUD|PRETTY WATER||DA5M|1|1|03/22/2007 16:10|03/22/2007 18:23|03/22/2007 18:30|0.1|9|NAD83|33.33258|-114.72206|1|0|5|B|01|Complete +541411|BLM|AZ|AZYUD|FA 04||C9F8|5|1|04/14/2007 22:30|||||||||||||Complete +541420|BLM|AZ|AZYUD|MEDIAN ASST||DC6W|3|7|04/22/2007 13:15||||||||||||07|Complete +541412|BLM|AZ|AZYUD|FA 05||C9F8|5|1|04/22/2007 16:00|||||||||||||Complete +541417|BLM|AZ|AZYUD|RIVERBEND ASST||DC97|3|7|04/23/2007 22:54||||||||||||02|Incomplete +541421|BLM|AZ|AZYUD|HIGHWAY||DDD7|1|1|04/24/2007 15:00|04/24/2007 15:50|04/24/2007 16:17|0.1|9|NAD83|32.67081|-114.10531|1|0|0|A|01|Complete +541415|BLM|AZ|AZYUD|50 CANAL ASST||DDX5|3|7|04/26/2007 17:15||||||||||||02|Incomplete +541409|BLM|AZ|AZYUD|ORANGE ASST||DD1C|3|7|04/27/2007 17:00||||||||||||07|Complete +541403|BLM|AZ|AZYUD|GILA RIVER||DD8C|1|1|05/01/2007 16:21|05/01/2007 18:11|05/05/2007 18:00|426.0|1|NAD83|32.81819|-113.7131|1|0|0|B|01|Complete +541402|BLM|AZ|AZYUD|37||DFC3|1|1|05/08/2007 14:42|05/08/2007 15:18|05/08/2007 15:59|0.2|9|NAD83|32.67808|-114.03800|1|0|0|A|01|Complete +541223|BLM|AZ|AZYUD|FA 06||C9F8|5|1|05/21/2007 13:39|||||||||||||Complete +541401|BLM|AZ|AZYUD|COUNTY 10||DF6D|5|1|05/22/2007 12:36|||||||||||||Complete +541404|BLM|AZ|AZYUD|53||DGB5|1|1|05/26/2007 11:00|05/26/2007 11:20|05/26/2007 13:00|0.1|9|NAD83|33.61078|-113.63258|1|1|0|L|01|Complete +541406|BLM|AZ|AZYUD|BOYSCOUT||DGC5|1|1|05/26/2007 19:47|05/26/2007 20:25|07/10/2007 12:00|0.1|9|NAD83|32.8183|-114.4558|1|0|0|B|01|Complete +541407|BLM|AZ|AZYUD|POND||DGC7|1|1|05/26/2007 21:29|05/26/2007 21:33|05/26/2007 21:40|0.1|9|NAD83|32.72314|-114.45264|1|0|0|B|01|Complete +541405|BLM|AZ|AZYUD|CAMPFIRE 01||DGF0|1|1|05/27/2007 13:00|05/27/2007 13:00|05/27/2007 13:30|0.1|9|NAD83|34.74008|-114.52053|1|1|0|B|01|Complete +544130|BLM|AZ|AZYUD|SENATOR||DGF8|1|1|05/27/2007 15:59|05/27/2007 15:59|05/27/2007 16:30|0.1|9|NAD83|32.9128|-114.4867|1|0|0|B|01|Complete +544131|BLM|AZ|AZYUD|COTTONWOOD||DGK1|1|1|05/28/2007 11:09|05/28/2007 11:45|07/10/2007 12:30|14.0|9|NAD83|32.5378|-114.8006|1|0|0|A|01|Complete +541225|BLM|AZ|AZYUD|FA 07||C9F8|5|1|05/28/2007 17:42|||||||||||||Complete +541235|BLM|AZ|AZYUD|MARINE ASST||DG6L|3|7|06/02/2007 15:01|||||NAD83|32.9889|-114.4742|||||07|Complete +541419|BLM|AZ|AZYUD|5 MILE ASST||DHH3|3|7|06/05/2007 14:13||||||||||||02|Incomplete +541226|BLM|AZ|AZYUD|FA 08||C9F8|5|1|06/05/2007 17:20|||||||||||||Complete +541227|BLM|AZ|AZYUD|FA 09||C9F8|5|1|06/06/2007 15:25|||||||||||||Complete +541229|BLM|AZ|AZYUD|MM 59 ASST||DHQ2|3|7|06/06/2007 16:20|||||NAD83|32.74658|-113.67169|||||07|Complete +544128|BLM|AZ|AZYUD|SOUTH MESA||DH1U|1|1|06/10/2007 14:40|06/10/2007 14:40|06/10/2007 15:00|0.1|9|NAD83|32.9025|-114.4953|1|0|0|A|01|Complete +542845|BLM|AZ|AZYUD|FA 10||C9F8|5|1|06/18/2007 12:08|||||||||||||Complete +542854|BLM|AZ|AZYUD|COUNTY 9 ASST||DJ63|||06/21/2007 12:44|||||||||||||Incomplete +544125|BLM|AZ|AZYUD|NORTON||DJ52|1|1|06/21/2007 13:40|06/21/2007 15:10|06/24/2007 18:00|66.0|9|NAD83|32.7881|-113.7939|1|0|0|B|01|Complete +542853|BLM|AZ|AZYUD|FA 11||C9F8|5|1|06/28/2007 09:41|||||||||||||Complete +544132|BLM|AZ|AZYUD|SPIDER ASST||DN3A|3|7|07/07/2007||||||||||||08|Complete +544135|BLM|AZ|AZYUD|TRASH||DP2V|1|1|07/11/2007 14:30|07/11/2007 14:30|07/11/2007 14:50|0.1|9|NAD83|32.8483|-114.7586|1|0|0|A|01|Complete +544134|BLM|AZ|AZYUD|FA 11||C9F8|5|1|07/15/2007|||||||||||||Complete +544138|BLM|AZ|AZYUD|RIVER EDGE ASST||DQ7J|5|1|07/16/2007|||||||||||||Complete +544133|BLM|AZ|AZYUD|COLFRED ASST||DR7A|3|7|07/19/2007||||||||||||07|Complete +544139|BLM|AZ|AZYUD|FALSE ALARM 12||C9F8|5|6|07/19/2007|||||||||||||Complete diff --git a/office/regression/000_000098.txt b/office/regression/000_000098.txt new file mode 100644 index 0000000..bc4dcf5 --- /dev/null +++ b/office/regression/000_000098.txt @@ -0,0 +1,19753 @@ +AFA01,2,2042.160 ,39.03530 ,-104.8442,AFA , , Aardvark , +AFA02,2,1978.152 ,38.93500 ,-104.8250,AFA , , Airfield , +AFA03,2,2179.320 ,39.01030 ,-104.8864,AFA , , Command Post , +AFA04,2,2185.416 ,38.98250 ,-104.8747,AFA , , Community Center , +AFA05,2,2132.076 ,39.08000 ,-104.8544,AFA , , Lewis Palmer , +AFA06,2,2183.892 ,39.02580 ,-104.8786,AFA , , North Ridge , +AFA07,2,2125.980 ,38.98670 ,-104.7633,AFA , , Pine Creek , +AFA08,2,2026.920 ,38.97030 ,-104.8603,AFA , , Pine Valley , +AFA09,2,2840.736 ,38.98690 ,-104.9206,AFA , , Rampart , +AFA10,2,1953.768 ,38.94890 ,-104.8153,AFA , , South Gate , +AFA11,2,2036.064 ,38.95690 ,-104.8475,AFA , , South Ridge , +AFA12,2,2084.832 ,38.99750 ,-104.8486,AFA , , Stadium , +SPGA2,3,20.00000 ,60.81956 ,-148.9738,AKDOT , ,Seward Highway @ Portage Glacier Road , +SBPA2,3,19.00000 ,60.94496 ,-149.3708,AKDOT , ,Seward Highway @ Bird Point MP 96.3 , +SHRA2,3,59.00000 ,61.10918 ,-149.8485,AKDOT , ,Seward Highway @ Huffman Road , +GWSA2,3,91.00000 ,61.31096 ,-149.5749,AKDOT , ,Glenn Highway @ Eagle River Br. MP 12.8 , +HRHA2,3,310.0000 ,61.10917 ,-149.7423,AKDOT , ,Hillside Road @ Upper Huffman Road , +SMCA2,3,26.00000 ,61.01144 ,-149.7003,AKDOT , ,Seward Highway @ McHugh Creek MP 111.8 , +GERA2,3,125.0000 ,61.25695 ,-149.6493,AKDOT , ,Glenn Highway @ S Curves MP 9.9 , +GKRA2,3,23.00000 ,61.49387 ,-149.2422,AKDOT , ,Glenn Highway @ 2nd Knik River Bridge , +HKLA2,3,71.00000 ,61.57795 ,-149.7254,AKDOT , ,Parks Highway @ Hawk Lane MP 53.2 , +TKPA2,3,126.0000 ,62.13362 ,-150.0366,AKDOT , ,Parks Hwy @ Talkeetna Road MP 98.3 , +SOLA2,3,56.00000 ,60.43128 ,-151.1286,AKDOT , ,Sterling Hwy @ DOT Soldotna MS - MP 9 , +FTSA2,3,411.0000 ,60.64045 ,-149.5007,AKDOT , ,Seward Hwy @ Summit Lake Lodge MP 45.8 , +RUFA2,3,108.0000 ,60.48723 ,-150.0021,AKDOT , ,Sterling Hwy @ Russian R. Ferry MP 54.8 , +NRBA2,3,27.00000 ,60.04784 ,-151.6589,AKDOT , ,Sterling Hwy @ Ninilchik River Bridge , +EGNA2,3,5.000000 ,58.32441 ,-134.4577,AKDOT , ,Glacier Highway/Egan Drive @ MP 3 , +GOAA2,3,34.00000 ,58.39726 ,-134.6082,AKDOT , ,Mendenhall Loop Road @ Goat Hill - bot , +COHA2,3,65.00000 ,58.46404 ,-134.7776,AKDOT , ,Glacier Highway @ Cohen Drive MP 22 , +HHWA2,3,50.00000 ,59.41558 ,-135.9309,AKDOT , ,Haines Highway @ Chilkat R. Br. MP 23.8 , +GMTA2,3,983.0000 ,61.83365 ,-147.4085,AKDOT , ,Glenn Hwy @ Gunsight Mountain MP 117 , +BRPA2,3,743.0000 ,63.32781 ,-149.1292,AKDOT , ,Parks Hwy @ Broad Pass Summit MP 201 , +RHVA2,3,282.0000 ,61.07975 ,-145.8962,AKDOT , ,Richardson Hwy @ Valdez MP 18.6 , +EGHA2,3,447.0000 ,61.70854 ,-145.1624,AKDOT , ,Edgerton Hwy @ Richardson Highway MP 83 , +BCHA2,3,270.0000 ,64.31640 ,-146.6910,AKDOT , ,Richardson Highway @ Birch Lake MP 307 , +MNPA2,3,732.0000 ,62.90266 ,-143.6689,AKDOT , ,Tok Cutoff @ Mentasta Pass MP 79.2 , +TRDA2,3,755.0000 ,63.41605 ,-145.7493,AKDOT , ,Richardson Hwy @ Trims DOT MS MP 218.2 , +DTLA2,3,449.0000 ,63.65038 ,-144.0483,AKDOT , ,Alaska Highway @ Dot Lake MP 1360.4 , +RHRA2,3,884.0000 ,61.12986 ,-145.7339,AKDOT , ,Richardson Hwy @ Thompson Pass MP 25.7 , +AK027,3,147.0000 ,64.80821 ,-147.5785,AKDOT , ,Richardson Highway @ Badger Interchang , +AK028,3,159.0000 ,64.84193 ,-147.8124,AKDOT , ,University Avenue Fairbanks @ Chena Ri , +CLRA2,3,660.0000 ,65.05027 ,-147.4465,AKDOT , ,Steese Highway @ Cleary Summit MP 20.9 , +HHKA2,3,67.00000 ,59.43774 ,-136.2730,AKDOT , ,Haines Highway @ Klehini MP 36.6 , +PLCA2,3,406.0000 ,62.88931 ,-149.7647,AKDOT , ,Parks Hwy @ Little Coal Creek MP 163.2 , +KLNA2,3,1002.000 ,59.62964 ,-135.1642,AKDOT , ,Klondike Highway @ US/Canada Border , +WRTA2,3,51.00000 ,60.79017 ,-148.8150,AKDOT , ,Whittier Access Road @ Tunnel MP 1.35 , +NHDA2,3,27.00000 ,58.32767 ,-134.4912,AKDOT , ,North Douglas Highway MP 4 , +AK035,3,411.0000 ,61.26084 ,-145.2838,AKDOT , ,Richardson Highway @ Stuart Cr. MP 45.7 , +TFTA2,3,416.0000 ,64.28361 ,-146.2815,AKDOT , ,Richardson Hwy @ Tenderfoot MP 292.6 , +ALCA2,3,602.0000 ,62.62054 ,-141.0075,AKDOT , ,Alaska Hwy @ Canadian Border MP 1221.8 , +NHPA2,3,426.0000 ,64.70963 ,-148.6270,AKDOT , ,Parks Highway @ Nenana Hills MP 325.4 , +ACRA2,3,462.0000 ,63.80962 ,-148.9646,AKDOT , ,Parks Highway @ Antler Creek MP 244 , +GHYA2,3,658.0000 ,62.10636 ,-145.8657,AKDOT , ,Glenn Highway @ MP 176 , +SRPA2,3,311.0000 ,60.80353 ,-149.1862,AKDOT , ,Seward Highway @ Turnagain Pass MP 69.9 , +SHDA2,3,216.0000 ,60.25128 ,-149.3529,AKDOT , ,Seward Highway @ Divide MP 11.7 , +SRNA2,3,209.0000 ,60.53209 ,-149.5557,AKDOT , ,Sterling Highway @ Tern Lake MP 37 , +TBFA2,3,82.00000 ,61.43879 ,-149.3957,AKDOT , ,Glenn Highway @ Thunderbird Falls MP 24 , +PSGA2,3,40.00000 ,57.54940 ,-152.4595,AKDOT , ,Pasagshak Road Kodiak @ MP 2.1 , +SJLA2,3,192.0000 ,60.52376 ,-150.2103,AKDOT , ,Sterling Highway@Jean Lake Hill MP 62.3 , +BQPA2,3,20.00000 ,56.58383 ,-132.5419,AKDOT , ,Blaquiere Point , +MAPA2,3,398.0000 ,63.97390 ,-145.7022,AK-Meso , ,Main Post Fort Greely, +GEOA2,3,377.0000 ,63.96940 ,-145.7673,AK-Meso , ,Georgia Fort Greely, +BKCA2,3,854.0000 ,63.52090 ,-145.8410,AK-Meso , ,Black Rapids Chalet Fort Greely, +MISA2,3,473.0000 ,63.88880 ,-145.8695,AK-Meso , ,Mississippi Fort Greely, +BOLA2,3,423.0000 ,63.88680 ,-145.8465,AK-Meso , ,Bolio Fort Greely, +TEXA2,3,488.0000 ,63.83910 ,-145.9143,AK-Meso , ,Texas Range Fort Greely, +TCOA2,3,590.0000 ,63.81610 ,-145.8787,AK-Meso , ,Texas Condo Fort Greely, +WSHA2,3,473.0000 ,63.78940 ,-145.9530,AK-Meso , ,Washington Range Fort Greely, +OPSA2,3,488.0000 ,63.80230 ,-145.9417,AK-Meso , ,OP10A Fort Greely, +NTTA2,3,459.0000 ,63.93610 ,-145.7452,AK-Meso , ,North Test Track Fort Greely, +APG1 ,2,5.000000 ,39.47000 ,-76.07000,APG , , Station 1 , +APG3 ,2,6.371000 ,39.43191 ,-76.17829,APG , , Station 3 , +APG4 ,2,6.000000 ,39.44000 ,-76.11000,APG , , Station 4 , +APG6 ,2,5.000000 ,39.38330 ,-76.23330,APG , , Station 6 , +APG7 ,2,17.00000 ,39.45000 ,-76.17000,APG , , Station 7 , +APG9 ,2,5.000000 ,39.35500 ,-76.29330,APG , , Station 9 , +ABDA2,3,15.00000 ,61.14400 ,-149.9060,APRSWXNET , ,ABDA2 Dimond and Minnesota AK US , +AP001,3,1582.000 ,40.05438 ,-105.2075,APRSWXNET , ,KB0TVJ-5 Boulder CO US , +AP002,3,2.000000 ,24.66111 ,-81.48250,APRSWXNET , ,K4HG Cudjoe Key FL US , +AP004,3,7.000000 ,37.10050 ,-76.54500,APRSWXNET , ,KF4HJW Tide VA US , +AP005,3,335.3000 ,39.01517 ,-96.28883,APRSWXNET , ,W0MAF-1 Alma KS US , +AP006,3,247.0000 ,38.62950 ,-92.34417,APRSWXNET , ,WN0X-2 NW Cole County MO US , +AP008,3,34.00000 ,28.56267 ,-81.27083,APRSWXNET , ,KD4MRL Orlando FL US , +AP009,3,88.00000 ,30.60548 ,-96.28387,APRSWXNET , ,N5JXS College Station TX US , +AP012,3,192.0000 ,41.70236 ,-86.87868,APRSWXNET , ,N9ZIP Michigan City IN US , +AP014,3,46.00000 ,40.72717 ,-73.69083,APRSWXNET , ,WA2GUG New Hyde Park NY US , +AP016,3,320.0000 ,35.38550 ,-86.20067,APRSWXNET , ,KB4JHU-15 Tullahoma TN US , +AP017,3,1996.000 ,41.77967 ,-107.1167,APRSWXNET , ,N7ZEF Sinclair WY US , +AP019,3,402.0000 ,42.19717 ,-79.42433,APRSWXNET , ,N3HPR Bemus Point NY US , +AP020,3,2725.000 ,32.44183 ,-110.7800,APRSWXNET , ,LEMMON NE of Tucson AZ US , +AP021,3,1505.000 ,40.57000 ,-105.0505,APRSWXNET , ,K0UT Ft Collins CO US , +AP022,3,6.100000 ,26.12750 ,-81.76600,APRSWXNET , ,WB2WPA-4 Naples FL US , +AP023,3,720.9000 ,35.99533 ,-115.0697,APRSWXNET , ,WA4PDM Henderson SCMR NV US , +AP024,3,425.0000 ,42.60100 ,-74.92717,APRSWXNET , ,N2KGC Milford NY US , +AP032,3,380.0000 ,42.55717 ,-96.40233,APRSWXNET , ,WB0WNX Sioux City IA US , +AP034,3,371.0000 ,41.92067 ,-80.23850,APRSWXNET , ,N3EOY Franklin Center PA US , +AP035,3,139.0000 ,47.46933 ,-122.6122,APRSWXNET , ,N7GME Seattle WA US , +AP036,3,180.0000 ,47.55333 ,-122.8813,APRSWXNET , ,N7YT Bremerton WA US , +AP037,3,2.000000 ,27.81450 ,-82.70500,APRSWXNET , ,KF4KUL St. Petersburg FL US , +AP039,3,3.000000 ,27.86400 ,-82.72467,APRSWXNET , ,N4GD Pinellas Park FL US , +AP044,3,350.0000 ,34.95167 ,-82.25933,APRSWXNET , ,KD4SFD Greer SC US , +AP046,3,295.7000 ,39.47417 ,-94.57583,APRSWXNET , ,WA5RRN Trimble MO US , +AP048,3,21.00000 ,41.71467 ,-72.72717,APRSWXNET , ,W1AW Hartford CT US , +AP051,3,92.00000 ,34.27500 ,-88.41333,APRSWXNET , ,KB5NMB-3 Fulton MS US , +AP053,3,204.0000 ,31.06383 ,-97.49250,APRSWXNET , ,W5VEX-1 Belton TX US , +AP056,3,791.0000 ,32.36487 ,-110.9725,APRSWXNET , ,W9JIU Tucson AZ US , +AP058,3,402.0000 ,41.34283 ,-94.31717,APRSWXNET , ,N0BKB Greenfield IA US , +AP059,3,79.20000 ,45.80333 ,-122.7022,APRSWXNET , ,N7OFW Ridgefield WA US , +AP061,3,15.00000 ,38.54217 ,-121.3705,APRSWXNET , ,KG6TQ Sacramento CA US , +AP062,3,329.0000 ,44.08333 ,-92.52500,APRSWXNET , ,AA0SM Rochester MN US , +AP063,3,30.00000 ,28.56600 ,-81.34917,APRSWXNET , ,N4JCV Orlando FL US , +AP064,3,122.0000 ,43.13117 ,-77.51150,APRSWXNET , ,AA2YS Penfield NY US , +AP066,3,2.000000 ,39.56667 ,-75.87217,APRSWXNET , ,N3ZLL Elkton MD US , +AP069,3,137.0000 ,40.15750 ,-75.39750,APRSWXNET , ,WX3I Eagleville PA US , +AP071,3,90.00000 ,34.00050 ,-81.07267,APRSWXNET , ,N5CWH Columbia SC US , +AP072,3,354.0000 ,41.53767 ,-81.18000,APRSWXNET , ,KB8ROP Chardon OH US , +AP074,3,244.0000 ,44.78350 ,-93.49133,APRSWXNET , ,KF0ZH Shakopee MN US , +AP075,3,1084.000 ,51.01750 ,-113.9955,APRSWXNET , ,VE6DJJ Calgary AB CA , +AP076,3,206.5000 ,33.22883 ,-97.12750,APRSWXNET , ,W5NGU-3 Denton TX US , +AP079,3,163.1000 ,38.22440 ,-85.70350,APRSWXNET , ,KF4ERV-4 Louisville KY US , +AP080,3,241.0000 ,44.14500 ,-122.5885,APRSWXNET , ,K9AZZ-10 Vida OR US , +AP081,3,150.0000 ,62.24933 ,25.80900 ,APRSWXNET , ,OH6GHF Jyvaskla FI , +AP086,3,226.0000 ,29.67267 ,-98.11567,APRSWXNET , ,N5SNT-2 New Braunfels TX US , +AP089,3,45.00000 ,60.40800 ,25.05967 ,APRSWXNET , ,OH2GAX Tuusula FI , +AP090,3,323.0000 ,43.02317 ,-89.49917,APRSWXNET , ,WJ9H Madison WI US , +AP091,3,244.0000 ,42.59333 ,-89.37767,APRSWXNET , ,KB9SPA Brodhead WI US , +AP093,3,400.0000 ,41.32000 ,-96.36583,APRSWXNET , ,W0NWS Valley NE US , +AP096,3,201.0000 ,33.26733 ,-96.53267,APRSWXNET , ,AE5PL Melissa TX US , +AP098,3,112.0000 ,35.96850 ,-78.68850,APRSWXNET , ,WX4MMM Raleigh NC US , +AP101,3,312.0000 ,42.61050 ,-77.87667,APRSWXNET , ,W2FAR Nunda NY US , +AP105,3,10.00000 ,26.54133 ,-80.06967,APRSWXNET , ,KD4LXB-3 Boynton Beach FL US , +AP106,3,249.0000 ,38.22741 ,-84.55081,APRSWXNET , ,N9QGS Georgetown KY US , +AP110,3,244.0000 ,40.03517 ,-82.99133,APRSWXNET , ,KB8SSH Columbus OH US , +AP114,3,2.000000 ,25.74333 ,-80.21500,APRSWXNET , ,K4TCV-1 Miami FL US , +AP115,3,1590.000 ,40.04333 ,-105.2775,APRSWXNET , ,AB0MY-2 Boulder CO US , +AP117,3,1200.000 ,31.78600 ,-106.3818,APRSWXNET , ,N5FAZ-2 El Paso TX US , +AP118,3,42.00000 ,37.50590 ,-77.16523,APRSWXNET , ,WB4PGT-1 Quinton VA US , +AP120,3,192.0000 ,43.05633 ,-86.24183,APRSWXNET , ,KC8LCP-10 Grand Haven MI US , +AP121,3,202.0000 ,42.97083 ,-86.22083,APRSWXNET , ,KC8LCP-11 Grand Haven MI US , +AP122,3,202.0000 ,42.85550 ,-86.21167,APRSWXNET , ,KC8LCP-12 Holland MI US , +AP125,3,202.0000 ,42.94100 ,-86.08767,APRSWXNET , ,KC8LCP-15 West Olive MI US , +AP126,3,187.0000 ,42.93583 ,-85.80500,APRSWXNET , ,K08C Jenison MI US , +AP127,3,222.0000 ,42.53100 ,-85.82517,APRSWXNET , ,K35D Allegan MI US , +AP132,3,282.0000 ,43.55983 ,-85.77417,APRSWXNET , ,K42C White Cloud MI US , +AP133,3,352.0000 ,44.05283 ,-84.81250,APRSWXNET , ,K80D Harrison MI US , +AP136,3,282.0000 ,43.64167 ,-86.32933,APRSWXNET , ,KC04 Oceana MI US , +AP138,3,290.0000 ,39.88467 ,-94.72583,APRSWXNET , ,WA0RTU Avenue City MO US , +AP142,3,141.0000 ,32.81683 ,-96.70383,APRSWXNET , ,N5CSU Dallas TX US , +AP143,3,176.0000 ,33.16340 ,-96.57270,APRSWXNET , ,K5BL McKinney TX US , +AP146,3,3.000000 ,28.37717 ,-80.71300,APRSWXNET , ,K4PIG-1 Merritt Island FL US , +AP150,3,8.000000 ,28.22500 ,-82.66933,APRSWXNET , ,N9EE-1 New Port Richey FL US , +AP151,3,83.00000 ,42.17550 ,-72.68583,APRSWXNET , ,N1WLC Westfield MA US , +AP152,3,287.0000 ,45.34517 ,-93.59167,APRSWXNET , ,N0OQA Elk River MN US , +AP154,3,258.0000 ,39.10600 ,-84.88050,APRSWXNET , ,K9GPS Lawerenceburg IN US , +AP155,3,140.5000 ,33.56300 ,-95.29683,APRSWXNET , ,W5GWH Deport TX US , +AP156,3,715.0000 ,34.86350 ,-118.1728,APRSWXNET , ,WA6TK Rosamond CA US , +AP157,3,20.00000 ,40.63217 ,22.95117 ,APRSWXNET , ,SV2BBO-2 Thessaloniki GR , +AP158,3,50.00000 ,34.99883 ,-79.12467,APRSWXNET , ,K4SHF Raeford NC US , +AP159,3,68.00000 ,35.10383 ,-78.98717,APRSWXNET , ,WB7OND Fayetteville NC US , +AP163,3,279.0000 ,45.04017 ,-92.86117,APRSWXNET , ,KC5LXC Stillwater MN US , +AP164,3,73.00000 ,45.58783 ,-122.1582,APRSWXNET , ,WB7UVH Washougal WA US , +AP165,3,225.0000 ,41.71517 ,-86.43850,APRSWXNET , ,K9TMV New Carlisle IN US , +AP167,3,522.4000 ,40.73350 ,-78.91717,APRSWXNET , ,N3DXC Commodore PA US , +AP171,3,397.0000 ,46.60333 ,-120.6905,APRSWXNET , ,N7NAT Yakima WA US , +AP172,3,87.20000 ,46.98333 ,-123.8275,APRSWXNET , ,KD7FBT Aberdeen WA US , +AP176,3,2634.000 ,40.85900 ,-105.6367,APRSWXNET , ,KG0HM-2 Crystal Lakes CO US , +AP184,3,235.0000 ,35.99300 ,-80.31077,APRSWXNET , ,WD4LSS Winston-Salem NC US , +AP185,3,14.00000 ,27.94350 ,-82.75933,APRSWXNET , ,N4BSA Clearwater FL US , +AP187,3,189.0000 ,36.08540 ,-86.93840,APRSWXNET , ,KD4PMP Nashville TN US , +AP189,3,23.00000 ,28.26050 ,-81.14433,APRSWXNET , ,N4ZIQ St. Cloud FL US , +AP190,3,1677.000 ,39.63400 ,-105.0475,APRSWXNET , ,K0ANI Denver CO US , +AP191,3,367.0000 ,37.10217 ,-121.9463,APRSWXNET , ,WA6MWI Soquel CA US , +AP192,3,250.0000 ,36.14500 ,-79.84500,APRSWXNET , ,KE4FCW Greensboro NC US , +AP194,3,178.0000 ,39.42967 ,-87.65417,APRSWXNET , ,WD9EKA Marshall IL US , +AP200,3,35.00000 ,36.70823 ,-121.6128,APRSWXNET , ,N6TBQ Salinas CA US , +AP201,3,26.00000 ,37.40683 ,-120.8485,APRSWXNET , ,KE6FOA-3 Hilmer CA US , +AP203,3,82.00000 ,36.51133 ,-119.6817,APRSWXNET , ,KF6HJO Selma CA US , +AP204,3,74.00000 ,35.26368 ,-120.7110,APRSWXNET , ,KD6DSI San Luis Obispo CA US , +AP205,3,138.0000 ,44.47350 ,-70.04250,APRSWXNET , ,K1PIG Kent's Hill ME US , +AP206,3,238.0000 ,44.57500 ,-70.00500,APRSWXNET , ,K1PIG-4 Kent's Hill ME US , +AP207,3,224.0000 ,44.47800 ,-69.34383,APRSWXNET , ,KD1KE Freedom ME US , +AP209,3,17.00000 ,32.99383 ,-80.27000,APRSWXNET , ,WA4USN-3 Summerville SC US , +AP210,3,135.0000 ,44.63299 ,-69.89330,APRSWXNET , ,WA1DLZ Mercer ME US , +AP213,3,2073.000 ,41.78750 ,-107.2427,APRSWXNET , ,KJ7AZ Rawlins WY US , +AP215,3,741.0000 ,46.84267 ,-102.1690,APRSWXNET , ,W0BIS-2 Antelope ND US , +AP216,3,674.0000 ,46.58700 ,-100.8000,APRSWXNET , ,W0BIS-8 St. Anthony ND US , +AP217,3,599.0000 ,46.45817 ,-101.2332,APRSWXNET , ,W0BIS-4 Flasher ND US , +AP218,3,627.0000 ,46.16083 ,-100.9612,APRSWXNET , ,W0BIS-5 Selfridge ND US , +AP219,3,607.0000 ,47.10717 ,-101.2898,APRSWXNET , ,W0BIS-6 Center ND US , +AP221,3,239.0000 ,49.40167 ,-97.30333,APRSWXNET , ,VE4GLS Emerson MB CA , +AP223,3,2195.000 ,35.62533 ,-105.4325,APRSWXNET , ,W0RAT-2 Mineral Hill NM US , +AP224,3,1554.000 ,39.14133 ,-111.8197,APRSWXNET , ,WB7REL Centerfield UT US , +AP225,3,302.0000 ,38.92000 ,-95.45383,APRSWXNET , ,N0LRF Berryton KS US , +AP227,3,385.0000 ,35.45250 ,-97.69683,APRSWXNET , ,KC5UNC W.Oklahoma City OK US , +AP228,3,180.0000 ,36.06817 ,-95.61750,APRSWXNET , ,KM5HG-3 Claremore OK US , +AP234,3,260.0000 ,38.98517 ,-84.38683,APRSWXNET , ,K4BRI Alexandria KY US , +AP235,3,277.0000 ,38.94872 ,-84.66257,APRSWXNET , ,KD4PYR Union KY US , +AP238,3,211.0000 ,45.31667 ,-68.98333,APRSWXNET , ,W1XR Stickney Hill ME US , +AP241,3,89.00000 ,44.92710 ,-72.98210,APRSWXNET , ,N1PGS Highgate Center VT US , +AP243,3,10.00000 ,45.50833 ,-73.56250,APRSWXNET , ,VE2REQ Varennes QC CA , +AP244,3,84.00000 ,46.74267 ,-71.43883,APRSWXNET , ,VE2MGJ Quebec City QC CA , +AP245,3,58.00000 ,42.24600 ,-72.67633,APRSWXNET , ,W1SEM Easthampton MA US , +AP247,3,101.0000 ,-43.30950,172.4802 ,APRSWXNET , ,ZL3AD N. Canterbury NZ , +AP248,3,142.0000 ,42.91083 ,-76.90833,APRSWXNET , ,N2QJU Waterloo NY US , +AP250,3,1138.000 ,46.63800 ,-111.9430,APRSWXNET , ,K7MT Helena MT US , +AP254,3,14.00000 ,27.87333 ,-82.24783,APRSWXNET , ,WX4DAN Valrico FL US , +AP255,3,1219.000 ,31.82867 ,-106.4488,APRSWXNET , ,K5WPH El Paso TX US , +AP256,3,49.00000 ,38.92800 ,-77.04000,APRSWXNET , ,KM6LJ Washington DC US , +AP258,3,64.00000 ,38.57967 ,-76.99633,APRSWXNET , ,K3GJ-1 La Plata MD US , +AP259,3,4.000000 ,38.97467 ,-76.33417,APRSWXNET , ,N8ADN Stevensville MD US , +AP260,3,31.00000 ,39.57283 ,-76.07133,APRSWXNET , ,N3OBQ Perryville MD US , +AP266,3,868.0000 ,37.98917 ,-100.8893,APRSWXNET , ,N0KQX Garden City KS US , +AP267,3,152.0000 ,18.19433 ,-65.92114,APRSWXNET , ,KP3G Juncos PR US , +AP268,3,160.0000 ,47.61950 ,-122.0455,APRSWXNET , ,N7QNM Sammamish WA US , +AP271,3,700.0000 ,46.80000 ,-101.4083,APRSWXNET , ,W0BIS-7 New Salem ND US , +AP273,3,33.00000 ,41.56550 ,-71.49433,APRSWXNET , ,N1HRK N.Kingstown RI US , +AP274,3,1212.000 ,31.80917 ,-106.4523,APRSWXNET , ,WX5ELP-1 El Paso TX US , +AP279,3,17.00000 ,43.84917 ,-69.81500,APRSWXNET , ,KA1SNP Phippsburg ME US , +AP282,3,40.00000 ,41.45117 ,-72.11200,APRSWXNET , ,W1TYL-15 Oakdale CT US , +AP284,3,82.00000 ,41.49100 ,-72.84050,APRSWXNET , ,WY1U-1 Wallingford CT US , +AP286,3,208.0000 ,40.40000 ,-75.83333,APRSWXNET , ,N3YMW Fleetwood PA US , +AP291,3,80.00000 ,40.73717 ,-74.42533,APRSWXNET , ,KC2RLM-1 Chatham NJ US , +AP294,3,15.00000 ,39.88467 ,-74.17383,APRSWXNET , ,WX2NJ Pinewald NJ US , +AP296,3,19.00000 ,38.97667 ,-76.55050,APRSWXNET , ,W3ZH Annapolis MD US , +AP302,3,18.00000 ,18.39550 ,-66.08100,APRSWXNET , ,N1TKK-1 San Juan PR US , +AP304,3,550.0000 ,31.44050 ,-100.3892,APRSWXNET , ,KC5EZZ San Angelo TX US , +AP307,3,135.0000 ,39.98509 ,-75.37942,APRSWXNET , ,WA3NNA Newtown Square PA US , +AP315,3,180.0000 ,43.01053 ,-79.01967,APRSWXNET , ,K2NV Grand Isle NY US , +AP316,3,97.00000 ,44.24417 ,-76.95983,APRSWXNET , ,VE3GSI Napanee ON CA , +AP320,3,251.1000 ,42.99383 ,-80.31717,APRSWXNET , ,VE3EYR Nanticoke ON CA , +AP321,3,380.4000 ,43.40433 ,-80.63350,APRSWXNET , ,VE3KSR Kitchner ON CA , +AP323,3,177.0000 ,47.44550 ,-122.1405,APRSWXNET , ,KD7OTV Renton WA US , +AP326,3,217.0000 ,38.34667 ,-81.72750,APRSWXNET , ,WA8SIE Spring Hill WV US , +AP329,3,122.0000 ,36.73000 ,-78.36083,APRSWXNET , ,KB2AHZ Boydton VA US , +AP330,3,429.8000 ,46.03967 ,-98.38550,APRSWXNET , ,W0BIS-9 Guelph ND US , +AP340,3,339.0000 ,36.13500 ,-81.17333,APRSWXNET , ,W4HF-1 Wilkesboro NC US , +AP341,3,1363.000 ,36.09917 ,-81.88967,APRSWXNET , ,W4SSP-2 Linville NC US , +AP343,3,365.0000 ,41.44167 ,-81.46433,APRSWXNET , ,N8FGR Orange OH US , +AP346,3,259.0000 ,40.02083 ,-83.05433,APRSWXNET , ,AB8KN-2 Upper Arlington OH US , +AP347,3,298.0000 ,39.91083 ,-84.34000,APRSWXNET , ,WA8ZWJ Union OH US , +AP350,3,275.0000 ,39.62717 ,-84.27933,APRSWXNET , ,W8DYY Miamisburg OH US , +AP352,3,257.0000 ,39.52583 ,-84.34467,APRSWXNET , ,N8NQF Middletown OH US , +AP355,3,177.0000 ,42.52349 ,-82.87741,APRSWXNET , ,KB8SGF Detroit MI US , +AP360,3,177.0000 ,40.46683 ,-86.83667,APRSWXNET , ,N9GKE Lafayette IN US , +AP364,3,83.00000 ,32.34581 ,-90.12427,APRSWXNET , ,KM5GE Jackson MS US , +AP366,3,4.000000 ,30.29800 ,-81.64500,APRSWXNET , ,AA4QI Jacksonville FL US , +AP370,3,3.000000 ,26.99633 ,-82.39667,APRSWXNET , ,WL7CKY Manasota FL US , +AP373,3,2.000000 ,28.24567 ,-80.61450,APRSWXNET , ,KE4OZD-1 Cocoa Beach FL US , +AP375,3,10.00000 ,27.58500 ,-80.43433,APRSWXNET , ,WA4ASJ Vero Beach FL US , +AP377,3,234.8000 ,42.37625 ,-87.99108,APRSWXNET , ,W9QL Druce Lake IL US , +AP385,3,362.0000 ,34.08438 ,-83.94722,APRSWXNET , ,N1IP-4 Hog Mountain GA US , +AP386,3,333.0000 ,34.08850 ,-84.37433,APRSWXNET , ,WA4DSY Mountain Park GA US , +AP388,3,260.0000 ,33.86335 ,-84.09166,APRSWXNET , ,W4EPI-4 Snellville GA US , +AP390,3,520.0000 ,33.40450 ,-111.5732,APRSWXNET , ,KB7ZHE Apache Junction AZ US , +AP392,3,311.0000 ,33.70217 ,-84.73300,APRSWXNET , ,KG4EYO Douglasville GA US , +AP395,3,264.0000 ,33.34500 ,-84.44567,APRSWXNET , ,AB4KN Fayetteville GA US , +AP398,3,366.0000 ,44.94467 ,-89.64217,APRSWXNET , ,N9NMH West Wausau WI US , +AP400,3,269.0000 ,43.14383 ,-88.59300,APRSWXNET , ,WA9YVE Ixonia WI US , +AP401,3,236.0000 ,42.68483 ,-87.99483,APRSWXNET , ,N9OIG Union Grove WI US , +AP407,3,10.00000 ,39.18467 ,-74.75017,APRSWXNET , ,KB2M Ocean View NJ US , +AP409,3,1690.000 ,39.60383 ,-104.9468,APRSWXNET , ,AC0GJ Centennial CO US , +AP414,3,58.00000 ,44.73500 ,-67.50183,APRSWXNET , ,W1LH-12 Marshfield ME US , +AP415,3,180.0000 ,44.20350 ,-70.69000,APRSWXNET , ,N1NYW E.Waterford ME US , +AP422,3,40.00000 ,44.29167 ,-68.34200,APRSWXNET , ,W1JOB Southwest Harbor ME US , +AP430,3,226.0000 ,38.95217 ,-92.33000,APRSWXNET , ,WX0BC Columbia MO US , +AP431,3,129.5000 ,38.67167 ,-90.53917,APRSWXNET , ,K0STL-15 Manchester MO US , +AP433,3,128.0000 ,43.02599 ,-72.43085,APRSWXNET , ,WK1P Walpole NH US , +AP446,3,378.0000 ,43.96917 ,-92.48017,APRSWXNET , ,KC0FOW Rochester MN US , +AP453,3,115.8000 ,33.03806 ,-83.07083,APRSWXNET , ,KD4NGC Milledgeville GA US , +AP455,3,381.0000 ,41.28617 ,-96.15000,APRSWXNET , ,W0NSA Omaha NE US , +AP456,3,14.00000 ,36.71667 ,-76.26750,APRSWXNET , ,KE8YN Chesapeake VA US , +AP458,3,363.0000 ,41.44883 ,-96.48467,APRSWXNET , ,N5RIG Fremont NE US , +AP462,3,30.00000 ,51.16817 ,0.624000 ,APRSWXNET , ,MB7UIK Maidstone UK , +AP463,3,244.0000 ,34.79417 ,-86.73350,APRSWXNET , ,K4RVH Madison AL US , +AP464,3,351.0000 ,36.19083 ,-83.92850,APRSWXNET , ,KU4ME Andersonville TN US , +AP469,3,85.00000 ,47.73550 ,-122.2008,APRSWXNET , ,WA7QFR-11 Bothell WA US , +AP473,3,62.00000 ,48.55417 ,-123.4485,APRSWXNET , ,VE7SDJ-1 Victoria BC CA , +AP474,3,73.20000 ,46.18125 ,-123.8399,APRSWXNET , ,AA7OA Astoria OR US , +AP476,3,281.0000 ,46.18267 ,-122.9583,APRSWXNET , ,W7DG Longview WA US , +AP477,3,46.60000 ,45.41233 ,-122.6375,APRSWXNET , ,KC7ZPO Milwaukie OR US , +AP478,3,747.0000 ,47.63583 ,-117.6963,APRSWXNET , ,WA7RVV Medical Lake WA US , +AP483,3,32.00000 ,30.47300 ,-87.23517,APRSWXNET , ,N9OSQ-7 Pensacola FL US , +AP488,3,30.00000 ,52.86667 ,13.66667 ,APRSWXNET , ,DC7VS Berlin DE , +AP491,3,5.000000 ,25.65167 ,-80.35833,APRSWXNET , ,K4AG-2 Miami FL US , +AP493,3,42.00000 ,41.65833 ,-70.36800,APRSWXNET , ,N1HOQ Centerville MA US , +AP494,3,72.00000 ,42.91817 ,-70.95583,APRSWXNET , ,KA1GJU-3 Hampton Falls NH US , +AP495,3,22.00000 ,26.21433 ,-97.99800,APRSWXNET , ,KC5WBG Weslaco TX US , +AP499,3,26.00000 ,30.45250 ,-87.21683,APRSWXNET , ,KD4YJJ-2 Pensacola FL US , +AP500,3,220.0000 ,43.15750 ,-71.89500,APRSWXNET , ,N1SKZ Hillsboro NH US , +AP503,3,3.000000 ,36.68871 ,-76.33317,APRSWXNET , ,WA4HHG-5 Chesapeake VA US , +AP504,3,457.0000 ,37.25000 ,-79.93000,APRSWXNET , ,N4BHM Roanoke VA US , +AP505,3,9.000000 ,30.66500 ,-81.53883,APRSWXNET , ,WK1F-2 Yulee FL US , +AP506,3,269.0000 ,38.93330 ,-95.20680,APRSWXNET , ,NK0Z Lawrence KS US , +AP509,3,10.00000 ,41.27350 ,-70.10633,APRSWXNET , ,N1NBQ Nantucket MA US , +AP513,3,1.000000 ,30.52383 ,-88.08683,APRSWXNET , ,WB4QEV-4 Hollingers Is. AL US , +AP516,3,92.00000 ,36.22367 ,-119.3192,APRSWXNET , ,K6YDW Tulare CA US , +AP517,3,514.2000 ,47.54800 ,-122.8075,APRSWXNET , ,WW7RA Gold Mountain WA US , +AP519,3,317.0000 ,40.76000 ,-74.84633,APRSWXNET , ,W2KB Lebanon Twp. NJ US , +AP520,3,33.50000 ,28.57633 ,-81.44417,APRSWXNET , ,WA4LZC Orlando FL US , +AP521,3,347.0000 ,34.14583 ,-84.10583,APRSWXNET , ,KD4K Cumming GA US , +AP522,3,163.0000 ,39.24306 ,-76.99833,APRSWXNET , ,K3CHZ Dayton MD US , +AP523,3,811.0000 ,43.64685 ,-116.3158,APRSWXNET , ,WA9UKW Boise ID US , +AP525,3,131.0000 ,40.43900 ,-122.2395,APRSWXNET , ,N6RZR-2 Anderson CA US , +AP526,3,512.0000 ,34.71221 ,-83.43987,APRSWXNET , ,KG4CVZ Tallulah Falls GA US , +AP534,3,22.60000 ,40.71156 ,-73.64170,APRSWXNET , ,W2MJD Hempstead NY US , +AP535,3,30.00000 ,41.99290 ,-71.16690,APRSWXNET , ,N1LTP Norton MA US , +AP536,3,296.0000 ,38.91000 ,-94.32410,APRSWXNET , ,WX2CHS 3E Lee's Summit MO US , +AP537,3,10.00000 ,28.48450 ,-80.80283,APRSWXNET , ,N9JY Port St. John FL US , +AP538,3,566.0000 ,41.21580 ,-75.60170,APRSWXNET , ,WA3YML Thornhurst PA US , +AP541,3,60.70000 ,33.84983 ,-117.8798,APRSWXNET , ,AD6NH Anaheim CA US , +AP542,3,1573.000 ,40.34467 ,-105.0997,APRSWXNET , ,WM0F Berthoud CO US , +AP548,3,195.0000 ,36.17383 ,-95.54883,APRSWXNET , ,N5XIH Inola OK US , +AP551,3,415.0000 ,43.45217 ,-96.17983,APRSWXNET , ,KB0WJQ-1 Rock Rapids IA US , +AP555,3,278.0000 ,41.63000 ,-72.94517,APRSWXNET , ,WA1LOU Wolcott CT US , +AP556,3,137.0000 ,43.55203 ,-79.67354,APRSWXNET , ,VE3PEW Mississauga ON CA , +AP559,3,205.7000 ,38.74033 ,-86.47219,APRSWXNET , ,N9LYA-3 Mitchell IN US , +AP561,3,144.0000 ,38.42900 ,-87.77800,APRSWXNET , ,AI9H-6 Mount Carmel IL US , +AP563,3,108.0000 ,33.98633 ,-81.14867,APRSWXNET , ,KG4TXZ Lexington SC US , +AP564,3,49.00000 ,42.45800 ,-71.19550,APRSWXNET , ,N1OTX Woburn MA US , +AP565,3,4.000000 ,29.88017 ,-85.21417,APRSWXNET , ,KQ4YD White City FL US , +AP566,3,38.00000 ,27.99467 ,-81.92600,APRSWXNET , ,KQ4KX Lakeland FL US , +AP567,3,183.0000 ,42.48250 ,-79.34267,APRSWXNET , ,WB7SWW Dunkirk NY US , +AP570,3,167.0000 ,40.94667 ,-76.45217,APRSWXNET , ,KF3BH Catawissa PA US , +AP571,3,2.900000 ,38.11579 ,-122.2683,APRSWXNET , ,KF6YAP Vallejo CA US , +AP573,3,55.00000 ,29.66300 ,-82.33467,APRSWXNET , ,KC4MHH-1 Gainesville FL US , +AP574,3,616.0000 ,38.87537 ,-99.31108,APRSWXNET , ,K0JJV Hays KS US , +AP575,3,1116.000 ,35.15250 ,-101.8758,APRSWXNET , ,KB5WIO Amarillo TX US , +AP577,3,45.00000 ,29.12333 ,-81.89083,APRSWXNET , ,K4MG Ocala FL US , +AP578,3,433.0000 ,44.01083 ,-72.48333,APRSWXNET , ,W1ZCJ Chelsea VT US , +AP580,3,153.0000 ,38.65583 ,-87.17217,APRSWXNET , ,WA9IN-2 Washington IN US , +AP581,3,204.0000 ,40.99200 ,-89.45717,APRSWXNET , ,AA9VT-15 Hopewell Village IL US , +AP583,3,201.0000 ,40.77800 ,-89.75467,APRSWXNET , ,W9HOI Kickapoo IL US , +AP584,3,223.0000 ,44.50300 ,-87.90100,APRSWXNET , ,WX9GRB-1 Green Bay Harbor WI US , +AP586,3,25.00000 ,42.30290 ,-71.11586,APRSWXNET , ,N1EPX Jamaica Plain MA US , +AP587,3,258.4000 ,34.68883 ,-82.19750,APRSWXNET , ,KG4POE Fountain Inn SC US , +AP590,3,179.2000 ,32.85102 ,-97.27486,APRSWXNET , ,KD5RXP Ft.Worth TX US , +AP593,3,1124.600 ,35.17217 ,-101.9330,APRSWXNET , ,KC5JIF Amarillo TX US , +AP594,3,99.00000 ,30.65117 ,-96.32833,APRSWXNET , ,W5GC-2 Bryan TX US , +AP596,3,8.000000 ,39.36632 ,-75.87998,APRSWXNET , ,W3BW-5 Fredericktown MD US , +AP599,3,5.000000 ,30.19550 ,-85.67417,APRSWXNET , ,N1HQ Panama City FL US , +AP600,3,20.00000 ,42.96167 ,17.13500 ,APRSWXNET , ,9A2OX Korcula HR , +AP601,3,20.00000 ,27.21517 ,-81.85833,APRSWXNET , ,W4MIN Arcadia FL US , +AP605,3,509.0000 ,42.52836 ,-72.98703,APRSWXNET , ,KB1EHS Windsor MA US , +AP609,3,285.0000 ,40.09917 ,-83.26467,APRSWXNET , ,KB8PVI Plain City OH US , +AP611,3,1290.000 ,40.98083 ,-111.9042,APRSWXNET , ,KJ7NO-2 Farmington UT US , +AP612,3,1326.000 ,41.11417 ,-112.0618,APRSWXNET , ,K7UHP-3 West Point UT US , +AP614,3,5.000000 ,51.20783 ,3.014330 ,APRSWXNET , ,ON4BDW Vaartdijk BE , +AP618,3,36.00000 ,38.20750 ,15.55617 ,APRSWXNET , ,IT9OBK Messina IT , +AP624,3,139.0000 ,53.35757 ,-1.496200,APRSWXNET , ,M0ADS Sheffield UK , +AP625,3,70.00000 ,53.59650 ,-1.278170,APRSWXNET , ,G8HRA W.Yorkshire UK , +AP626,3,100.0000 ,51.36967 ,0.521500 ,APRSWXNET , ,G1YXH Kent UK , +AP627,3,230.0000 ,50.14939 ,-96.88905,APRSWXNET , ,VE4UB Selkirk MB CA , +AP628,3,240.0000 ,-36.72750,144.2563 ,APRSWXNET , ,VK3BUS Bendigo AU , +AP630,3,165.0000 ,-37.85923,145.3047 ,APRSWXNET , ,VK3MY Knox City AU , +AP640,3,525.0000 ,46.77167 ,-100.6617,APRSWXNET , ,KC7MRW-1 Lincoln ND US , +AP641,3,561.0000 ,46.89117 ,-100.7778,APRSWXNET , ,KB0WBM-2 Arnold ND US , +AP647,3,275.0000 ,29.55300 ,-98.62467,APRSWXNET , ,K5ZZT-5 San Antonio TX US , +AP650,3,116.0000 ,35.63883 ,-78.86300,APRSWXNET , ,KH2PM Holly Springs NC US , +AP654,3,238.0000 ,32.41500 ,-97.79917,APRSWXNET , ,W5XI Granbury TX US , +AP656,3,220.0000 ,32.56767 ,-97.26567,APRSWXNET , ,KC5TIL Rendon TX US , +AP657,3,1193.000 ,41.81530 ,-103.6728,APRSWXNET , ,KC4WTI Gering NE US , +AP669,3,1.000000 ,52.49969 ,4.747540 ,APRSWXNET , ,PA0OKE Amsterdam NL , +AP677,3,496.0000 ,42.03683 ,-97.45250,APRSWXNET , ,NR0A-4 Norfolk NE US , +AP680,3,58.00000 ,42.72896 ,-71.47692,APRSWXNET , ,KA1GOZ Nashua NH US , +AP682,3,27.00000 ,45.01081 ,-124.0061,APRSWXNET , ,W7KKE-3 Road's End OR US , +AP685,3,92.00000 ,45.66050 ,-122.6042,APRSWXNET , ,KD7CTY Vancouver WA US , +AP689,3,202.0000 ,34.72450 ,-86.64533,APRSWXNET , ,KF4TTB-2 Huntsville AL US , +AP690,3,183.0000 ,34.65367 ,-86.58167,APRSWXNET , ,KF4TTB-1 Huntsville AL US , +AP693,3,30.00000 ,-37.66167,176.1682 ,APRSWXNET , ,ZL1RED-2 Tauranga NZ , +AP695,3,100.0000 ,-43.86267,171.7052 ,APRSWXNET , ,ZL3AQ Ashburton NZ , +AP696,3,11.00000 ,37.27283 ,-76.67614,APRSWXNET , ,WC4R Williamsburg VA US , +AP697,3,211.0000 ,43.94067 ,-71.12917,APRSWXNET , ,N1NLX Madison NH US , +AP703,3,548.7000 ,36.58833 ,-82.81800,APRSWXNET , ,KQ4E Surgoinsville TN US , +AP705,3,390.0000 ,36.52383 ,-82.50717,APRSWXNET , ,K4VVN Kingsport TN US , +AP706,3,564.0000 ,40.92533 ,-98.40033,APRSWXNET , ,N0PJH Grand Island NE US , +AP710,3,153.0000 ,47.43933 ,-122.1808,APRSWXNET , ,N7XRD Renton WA US , +AP711,3,2873.000 ,38.90067 ,-105.2075,APRSWXNET , ,W0DVM Divide CO US , +AP713,3,1890.000 ,39.58383 ,-105.1708,APRSWXNET , ,N0LNE Littleton CO US , +AP715,3,77.00000 ,35.62533 ,-78.32883,APRSWXNET , ,K4DNM Clayton NC US , +AP722,3,30.00000 ,28.35117 ,-82.19117,APRSWXNET , ,KF4ORW-2 Dade City FL US , +AP723,3,20.00000 ,28.60100 ,-81.16850,APRSWXNET , ,KB2RC Orlando FL US , +AP724,3,8.000000 ,28.02567 ,-80.68367,APRSWXNET , ,KE4OZD-2 Rockledge FL US , +AP727,3,110.0000 ,63.43367 ,10.61917 ,APRSWXNET , ,LA9QFA Trondheim NO , +AP732,3,274.0000 ,43.31950 ,-88.16833,APRSWXNET , ,KC9AVZ Jackson WI US , +AP733,3,140.0000 ,32.89000 ,-95.92550,APRSWXNET , ,K0YCN East Tawakoni TX US , +AP734,3,1082.000 ,39.52471 ,-101.6681,APRSWXNET , ,KB0ZXY Goodland KS US , +AP736,3,20.00000 ,-34.79333,138.6335 ,APRSWXNET , ,VK5RR Adelaide AU , +AP738,3,2736.000 ,39.62550 ,-106.0590,APRSWXNET , ,KB0VBZ Idaho Springs CO US , +AP740,3,299.0000 ,45.02641 ,-93.00670,APRSWXNET , ,WX0MAN North St.Paul MN US , +AP742,3,226.0000 ,33.59167 ,-84.05017,APRSWXNET , ,KC4ELV Honey Creek GA US , +AP744,3,1631.000 ,39.87600 ,-105.0955,APRSWXNET , ,K0RM Westminster CO US , +AP747,3,314.6000 ,33.68461 ,-86.59715,APRSWXNET , ,KC4ANB Clay AL US , +AP748,3,204.0000 ,44.05433 ,-91.66850,APRSWXNET , ,N0QK Winona MN US , +AP749,3,339.0000 ,41.10300 ,-75.99800,APRSWXNET , ,N3FJA Mountain Top PA US , +AP750,3,16.00000 ,41.36733 ,-72.21600,APRSWXNET , ,W1OEM Flanders CT US , +AP752,3,153.0000 ,40.98917 ,-74.34717,APRSWXNET , ,WB2FTX Butler NJ US , +AP754,3,33.50000 ,40.93367 ,-72.88333,APRSWXNET , ,KB2COP Shoreham NY US , +AP758,3,17.00000 ,43.97736 ,-124.0985,APRSWXNET , ,KC7BWK Florence OR US , +AP760,3,1778.000 ,38.72717 ,-104.7017,APRSWXNET , ,WB0BLV Security/Widefield CO US , +AP763,3,287.0000 ,67.01167 ,-50.72950,APRSWXNET , ,OX3HI Kangerlussuaq GL , +AP765,3,58.00000 ,41.92860 ,-74.01951,APRSWXNET , ,N3EYQ Kingston NY US , +AP766,3,55.00000 ,40.83717 ,-73.06417,APRSWXNET , ,WB2CMF Farmingville NY US , +AP767,3,227.0000 ,40.86350 ,-74.67167,APRSWXNET , ,N2XP Flanders NJ US , +AP769,3,36.00000 ,27.87983 ,-81.81600,APRSWXNET , ,WC4PEM-10 Bartow FL US , +AP771,3,277.0000 ,44.45479 ,-93.16370,APRSWXNET , ,WD9HDQ-2 Northfield MN US , +AP772,3,348.0000 ,33.88800 ,-84.58717,APRSWXNET , ,K4KAL Marietta GA US , +AP773,3,2.000000 ,35.89967 ,-76.34767,APRSWXNET , ,KB4TOH-3 Columbia NC US , +AP774,3,10.00000 ,30.05100 ,-91.81800,APRSWXNET , ,N8OVD St.Martinsville LA US , +AP777,3,586.0000 ,36.62767 ,-82.17500,APRSWXNET , ,KD4CCO Bristol VA US , +AP779,3,52.00000 ,34.69067 ,-79.89967,APRSWXNET , ,K4CCC-9 Cheraw SC US , +AP782,3,211.0000 ,33.24767 ,-97.14267,APRSWXNET , ,WB5NZV-8 N.Denton TX US , +AP785,3,335.0000 ,30.89100 ,-98.42650,APRSWXNET , ,WB5FMZ-9 Lake Buchanan TX US , +AP786,3,36.00000 ,29.86450 ,-95.63333,APRSWXNET , ,K5EBQ Houston TX US , +AP788,3,1183.000 ,31.87083 ,-106.4208,APRSWXNET , ,WB5LJO-13 El Paso TX US , +AP790,3,1.000000 ,19.27333 ,-81.38500,APRSWXNET , ,ZF1RC George Town KY , +AP795,3,150.0000 ,48.08717 ,-122.0628,APRSWXNET , ,KD7TTL Lake Stevens WA US , +AP801,3,5.000000 ,30.36717 ,-89.21950,APRSWXNET , ,W8JE Pass Christian MS US , +AP803,3,27.00000 ,36.98217 ,-122.0153,APRSWXNET , ,KE6AFE Santa Cruz CA US , +AP806,3,7.000000 ,46.15167 ,-122.9800,APRSWXNET , ,N3EG Longview WA US , +AP807,3,0.000000 ,39.06483 ,-74.77917,APRSWXNET , ,N2LTQ Stone Harbor NJ US , +AP811,3,20.00000 ,40.74800 ,-73.76550,APRSWXNET , ,KG2V Bayside Hills NY US , +AP812,3,204.5000 ,44.42067 ,-80.07817,APRSWXNET , ,VE3XF Stayner ON CA , +AP814,3,394.6000 ,43.76717 ,-80.05267,APRSWXNET , ,VA3GY Erin ON CA , +AP818,3,131.0000 ,45.08683 ,-76.00433,APRSWXNET , ,VA3MWK Ashton ON CA , +AP819,3,100.0000 ,45.31667 ,-75.66667,APRSWXNET , ,VE3TEN Ottawa ON CA , +AP823,3,229.8000 ,64.87317 ,-147.1742,APRSWXNET , ,AD4BL Fairbanks AK US , +AP828,3,235.0000 ,42.98445 ,-83.69492,APRSWXNET , ,N8VDS Flint MI US , +AP830,3,324.0000 ,39.03572 ,-94.71622,APRSWXNET , ,KA2FNK Shawnee KS US , +AP831,3,247.0000 ,41.22667 ,-85.84000,APRSWXNET , ,N9NJK Warsaw IN US , +AP832,3,290.0000 ,39.06783 ,-86.62750,APRSWXNET , ,WB9TLH-11 Bloomington IN US , +AP834,3,497.1000 ,20.85517 ,-156.3148,APRSWXNET , ,KH6HHG Makawao HI US , +AP837,3,38.00000 ,27.95183 ,-81.78050,APRSWXNET , ,WC4PEM Bartow Airport FL US , +AP838,3,415.0000 ,29.68617 ,-98.51583,APRSWXNET , ,W5MAI San Antonio TX US , +AP841,3,2105.000 ,39.03201 ,-104.8121,APRSWXNET , ,WE1A Colorado Springs CO US , +AP844,3,1266.400 ,31.72762 ,-109.7280,APRSWXNET , ,KD5WCQ Elfrida AZ US , +AP845,3,568.0000 ,36.22132 ,-115.0851,APRSWXNET , ,K2TCO Las Vegas NV US , +AP846,3,189.0000 ,32.98383 ,-96.81893,APRSWXNET , ,WN5PFI N.Dallas TX US , +AP847,3,59.00000 ,42.43083 ,-71.39533,APRSWXNET , ,KB1JKP Concord MA US , +AP851,3,22.00000 ,39.35850 ,-76.06117,APRSWXNET , ,N3DOU-1 Still Pond MD US , +AP852,3,945.0000 ,36.76967 ,-80.40150,APRSWXNET , ,WG4R Meadows of Dan VA US , +AP856,3,10.00000 ,25.98733 ,-80.12650,APRSWXNET , ,N4HHP-3 Hallandale Beach FL US , +AP859,3,6.000000 ,27.30500 ,-82.51683,APRSWXNET , ,KF4LQQ Sarasota FL US , +AP860,3,122.0000 ,32.33050 ,-89.97783,APRSWXNET , ,AA5ED-10 Brandon MS US , +AP861,3,81.00000 ,42.00767 ,-71.33367,APRSWXNET , ,N1IV Plainville MA US , +AP863,3,951.0000 ,39.38967 ,-101.0452,APRSWXNET , ,K0FJ-1 Colby KS US , +AP864,3,596.0000 ,38.36923 ,-99.01515,APRSWXNET , ,AB0XM-1 Great Bend KS US , +AP866,3,274.0000 ,41.52775 ,-93.94744,APRSWXNET , ,KA0HJZ Van Meter IA US , +AP871,3,291.0000 ,44.56850 ,-93.13000,APRSWXNET , ,N0PFY Northfield MN US , +AP874,3,30.00000 ,-32.19633,152.5200 ,APRSWXNET , ,VK2AAK Forster AU , +AP875,3,340.0000 ,39.94172 ,-84.93795,APRSWXNET , ,K9APR-5 Williamsburg IN US , +AP877,3,305.0000 ,41.13517 ,-81.60417,APRSWXNET , ,KA8OAD-1 Fairlawn OH US , +AP878,3,189.0000 ,41.71509 ,-87.72820,APRSWXNET , ,AB9FX Oak Lawn IL US , +AP879,3,235.0000 ,40.95133 ,-90.38967,APRSWXNET , ,N9VPV Galesburg IL US , +AP881,3,161.0000 ,36.66882 ,-88.33102,APRSWXNET , ,KJ4W Murray KY US , +AP884,3,10.00000 ,49.01917 ,-123.0867,APRSWXNET , ,VE7IMD-1 Delta BC CA , +AP886,3,82.50000 ,47.29083 ,-123.0453,APRSWXNET , ,WB7OXJ Shelton WA US , +AP887,3,8.000000 ,46.48817 ,-124.0455,APRSWXNET , ,KD7PYN Ocean Park WA US , +AP890,3,1214.300 ,45.38950 ,-117.2375,APRSWXNET , ,KB7DZR Joseph OR US , +AP893,3,762.0000 ,37.85833 ,-120.2125,APRSWXNET , ,KE6KYI Groveland CA US , +AP894,3,45.00000 ,37.32417 ,-120.5918,APRSWXNET , ,K6IMN Atwater CA US , +AP895,3,6.700000 ,37.63574 ,-122.1259,APRSWXNET , ,KF6JJP Hayward CA US , +AP898,3,98.00000 ,36.28183 ,-119.3058,APRSWXNET , ,WA6YLB-6 Visalia CA US , +AP899,3,659.0000 ,36.56883 ,-120.9613,APRSWXNET , ,AC6E-3 Moody Canyon CA US , +AP900,3,1193.900 ,35.04920 ,-120.0400,APRSWXNET , ,KE6ZPS-1 Plowshare Mt Peak CA US , +AP901,3,183.0000 ,34.60217 ,-120.0947,APRSWXNET , ,KB6OQJ Santa Ynez CA US , +AP902,3,823.0000 ,34.56483 ,-118.1077,APRSWXNET , ,N6HGA-1 Palmdale CA US , +AP904,3,1213.000 ,34.36833 ,-117.4082,APRSWXNET , ,W6MAF Hesperia CA US , +AP907,3,113.0000 ,32.89000 ,-117.2500,APRSWXNET , ,W9IF-4 Torry Pines CA US , +AP908,3,620.0000 ,30.17817 ,-99.15333,APRSWXNET , ,K3NXF-6 Kerrville TX US , +AP911,3,326.0000 ,34.40500 ,-86.80033,APRSWXNET , ,K4GIG-7 Brindley Mtn. AL US , +AP912,3,1490.000 ,40.53990 ,-104.7839,APRSWXNET , ,WB2JSH Eaton CO US , +AP913,3,402.0000 ,34.36883 ,-84.32617,APRSWXNET , ,WB5SLA Ball Ground GA US , +AP918,3,323.1000 ,37.92117 ,-91.43783,APRSWXNET , ,KB0YUP Steelville MO US , +AP921,3,7.000000 ,55.94505 ,11.76532 ,APRSWXNET , ,OZ6GX-5 Roervig DK , +AP922,3,35.00000 ,55.84231 ,11.98354 ,APRSWXNET , ,OZ1IEP-5 Jaegerspris DK , +AP928,3,70.00000 ,51.89464 ,-2.089360,APRSWXNET , ,G4GVZ-4 Cheltenham UK , +AP930,3,128.0000 ,50.22333 ,-3.747000,APRSWXNET , ,G8TQH Devon UK , +AP933,3,209.0000 ,51.77917 ,-0.640000,APRSWXNET , ,G4PMG-6 Hertfordshire UK , +AP936,3,100.0000 ,51.56850 ,0.268500 ,APRSWXNET , ,G3RJI Essex UK , +AP937,3,10.00000 ,51.35767 ,1.098000 ,APRSWXNET , ,MB7UEK Herne Bay UK , +AP945,3,25.00000 ,48.99100 ,1.719170 ,APRSWXNET , ,F1IKD Mantes la Joile FR , +AP949,3,77.00000 ,48.55583 ,2.679670 ,APRSWXNET , ,F4CEP-12 Rubelles FR , +AP950,3,100.0000 ,47.02317 ,5.724500 ,APRSWXNET , ,F1TIV-5 Chissey FR , +AP952,3,116.0000 ,43.22550 ,-71.70467,APRSWXNET , ,N1NSI Contoocook NH US , +AP953,3,3.000000 ,19.27130 ,-81.29550,APRSWXNET , ,ZF1EJ Savannah KY , +AP957,3,28.00000 ,30.38600 ,-84.23133,APRSWXNET , ,KA4EOC Tallahassee FL US , +AP959,3,757.0000 ,45.81717 ,-121.3520,APRSWXNET , ,K7NPS Snowden WA US , +AP960,3,900.0000 ,46.70767 ,6.369670 ,APRSWXNET , ,HB9TJM-1 Vallorbe CH , +AP963,3,711.0000 ,42.40917 ,1.133000 ,APRSWXNET , ,EA3AUC Sobira ES , +AP967,3,100.0000 ,42.18767 ,2.908000 ,APRSWXNET , ,EA3AYP-1 Girona ES , +AP968,3,100.0000 ,41.97383 ,2.793330 ,APRSWXNET , ,EA3FAJ-1 Girona ES , +AP971,3,240.0000 ,41.78917 ,0.816670 ,APRSWXNET , ,EB3GGU Balaguer ES , +AP973,3,2.000000 ,52.62583 ,4.896830 ,APRSWXNET , ,PE1NAT-1 Ursem NL , +AP974,3,433.0000 ,50.12717 ,7.015830 ,APRSWXNET , ,DO6PA-5 Ahrweiler DE , +AP976,3,276.0000 ,49.38450 ,7.206500 ,APRSWXNET , ,DO7VLR-5 Zweibruecken DE , +AP977,3,40.00000 ,-36.85616,174.8529 ,APRSWXNET , ,ZL1TRE Auckland NZ , +AP979,3,180.0000 ,45.20133 ,-87.11917,APRSWXNET , ,WX9GRB-3 Sister Bay WI US , +AP983,3,1768.000 ,39.58883 ,-104.8853,APRSWXNET , ,KB6CC Centennial CO US , +AP984,3,256.0000 ,39.21468 ,-84.55100,APRSWXNET , ,N8QQ Cincinnati OH US , +AP986,3,264.8000 ,40.33333 ,-86.01667,APRSWXNET , ,KB9QJM-12 Atlanta IN US , +AP989,3,461.0000 ,46.16933 ,-90.98083,APRSWXNET , ,K9JWM Clam Lake WI US , +AP990,3,8.000000 ,37.39033 ,-122.0245,APRSWXNET , ,KG6MOZ Sunnyvale CA US , +AP991,3,698.0000 ,47.35417 ,-102.7532,APRSWXNET , ,W0BIS-3 Killdeer ND US , +AP993,3,100.0000 ,29.85450 ,-96.52717,APRSWXNET , ,F6CNB Frelsburg TX US , +AP995,3,230.0000 ,41.88517 ,-88.10300,APRSWXNET , ,KI4BUM-1 Wheaton IL US , +AP996,3,354.0000 ,31.07167 ,-98.20667,APRSWXNET , ,KC5YVU Copperas Cove TX US , +AP998,3,175.0000 ,50.50900 ,6.984500 ,APRSWXNET , ,DK1PR-5 Altenahr DE , +AP999,3,54.00000 ,52.63600 ,10.09333 ,APRSWXNET , ,DB5OY-15 Celle DE , +AR003,3,520.0000 ,48.23450 ,9.926670 ,APRSWXNET , ,DL9GJ-6 Burgrieden DE , +AR005,3,506.0000 ,47.07050 ,7.539670 ,APRSWXNET , ,HB9BA-8 Solothurn CH , +AR006,3,249.0000 ,46.16917 ,9.007500 ,APRSWXNET , ,HB9MZI Giubiasco CH , +AR011,3,270.0000 ,45.09700 ,7.654830 ,APRSWXNET , ,IK1ZQJ Torino IT , +AR013,3,217.0000 ,44.92533 ,7.999670 ,APRSWXNET , ,IK1ZYQ Dusino IT , +AR017,3,30.00000 ,44.63850 ,11.19200 ,APRSWXNET , ,IK4UPW S.Giovanni IT , +AR020,3,18.00000 ,45.67700 ,12.20867 ,APRSWXNET , ,IK3SVW-3 Treviso IT , +AR021,3,4.000000 ,45.45933 ,12.06917 ,APRSWXNET , ,I3OVD Scaltenigo IT , +AR022,3,25.00000 ,43.85950 ,10.52183 ,APRSWXNET , ,IW5BFZ Lucca IT , +AR023,3,7.000000 ,44.05983 ,12.55067 ,APRSWXNET , ,I4GOS-3 Rimini IT , +AR025,3,325.0000 ,38.25750 ,15.54450 ,APRSWXNET , ,IT9IPQ-2 Messina IT , +AR026,3,160.0000 ,38.25583 ,15.70267 ,APRSWXNET , ,IK8ERL-2 Scilla IT , +AR027,3,30.00000 ,38.11267 ,15.64800 ,APRSWXNET , ,IZ8GMP-2 Reggio Calabria IT , +AR028,3,1310.000 ,38.16717 ,15.83633 ,APRSWXNET , ,IW8PCP-2 Gambarie d'Aspromonte IT , +AR031,3,60.00000 ,40.58324 ,22.95498 ,APRSWXNET , ,SV2BNL-2 Thessaloniki GR , +AR032,3,260.0000 ,40.75033 ,22.87500 ,APRSWXNET , ,SV2BZQ-3 Thessaloniki GR , +AR033,3,100.0000 ,39.62317 ,22.39567 ,APRSWXNET , ,SV4BHA-2 Larisa GR , +AR034,3,104.0000 ,38.63397 ,21.40832 ,APRSWXNET , ,SV1CIF-2 Aitoloakarnania GR , +AR035,3,8.000000 ,38.27200 ,21.74483 ,APRSWXNET , ,SV3AQN-2 Patra GR , +AR036,3,845.0000 ,37.72049 ,22.25074 ,APRSWXNET , ,SV3BEF-2 Vlaherna GR , +AR039,3,59.00000 ,-27.39650,152.9552 ,APRSWXNET , ,VK4TMK Arana Hills AU , +AR040,3,366.0000 ,40.30467 ,-80.07133,APRSWXNET , ,N3BSQ Bethel Park PA US , +AR042,3,780.0000 ,-35.19006,149.3351 ,APRSWXNET , ,VK1AC Bywong NSW AU , +AR043,3,2.000000 ,27.27283 ,-80.27333,APRSWXNET , ,K4ZZR Port St. Lucie FL US , +AR045,3,20.00000 ,37.82700 ,15.25833 ,APRSWXNET , ,IW9ETI-2 Taormina IT , +AR047,3,857.0000 ,46.05833 ,12.30167 ,APRSWXNET , ,IR3CV Belluno IT , +AR051,3,433.0000 ,33.43250 ,-111.7033,APRSWXNET , ,KE7TR-8 Mesa AZ US , +AR053,3,2.000000 ,-38.18333,147.2602 ,APRSWXNET , ,VK3AWA Paradise Beach AU , +AR056,3,100.0000 ,-35.79667,145.5797 ,APRSWXNET , ,VK2RO Tocumwal AU , +AR057,3,100.0000 ,-35.79667,145.5797 ,APRSWXNET , ,VK3XJB Shepparton AU , +AR058,3,525.0000 ,-37.25267,144.4590 ,APRSWXNET , ,VK3YWY-1 Kyneton AU , +AR060,3,305.0000 ,-37.29083,142.9397 ,APRSWXNET , ,VK3JTM-3 Ararat AU , +AR061,3,126.0000 ,-36.72433,142.1905 ,APRSWXNET , ,VK3YLV Horsham AU , +AR063,3,264.0000 ,-35.01975,138.6132 ,APRSWXNET , ,VK5ZIK Adelaide Hills AU , +AR065,3,465.0000 ,-43.31817,171.3773 ,APRSWXNET , ,ZL3ND Upper Rakiva NZ , +AR066,3,2073.000 ,38.94567 ,-104.7388,APRSWXNET , ,KC0IVW Colorado Springs CO US , +AR070,3,1490.000 ,40.51800 ,-104.8373,APRSWXNET , ,KI0BJ-2 Severance CO US , +AR072,3,14.00000 ,40.74333 ,-73.33755,APRSWXNET , ,KB2KMM N. Babylon NY US , +AR073,3,7.600000 ,43.68167 ,-70.17017,APRSWXNET , ,N1XUK-4 Long Island ME US , +AR074,3,256.0000 ,40.84267 ,-74.65833,APRSWXNET , ,K3JF Succasunna NJ US , +AR075,3,70.00000 ,40.15000 ,-75.23717,APRSWXNET , ,W3UGI Ambler PA US , +AR076,3,220.0000 ,42.09017 ,-80.17283,APRSWXNET , ,N3BXL Erie PA US , +AR079,3,198.0000 ,36.09533 ,-79.43767,APRSWXNET , ,WX4BUY Elon NC US , +AR082,3,290.0000 ,33.95633 ,-84.46067,APRSWXNET , ,WA2EIU Marietta GA US , +AR091,3,695.0000 ,47.58250 ,7.960170 ,APRSWXNET , ,DB0SAC-6 Bad Sackingen DE , +AR092,3,370.0000 ,48.52500 ,9.224170 ,APRSWXNET , ,DB0XHI Reutlingen DE , +AR094,3,470.0000 ,47.71917 ,12.85617 ,APRSWXNET , ,DL2MAX Bad Reichenhall DE , +AR097,3,188.0000 ,41.65100 ,0.690170 ,APRSWXNET , ,EA3AGQ Lleida ES , +AR098,3,1670.000 ,42.03967 ,0.787170 ,APRSWXNET , ,EA3AGQ-1 Montsec d'Ares ES , +AR100,3,50.00000 ,42.53867 ,-70.98017,APRSWXNET , ,WX1PBD Peabody MA US , +AR103,3,417.0000 ,34.57625 ,-86.00834,APRSWXNET , ,W4SBO-7 Section AL US , +AR104,3,158.0000 ,36.12550 ,-78.55117,APRSWXNET , ,W4UTA Franklinton NC US , +AR105,3,2.100000 ,27.89612 ,-97.13945,APRSWXNET , ,K5BV Aransas Pass TX US , +AR106,3,1344.200 ,37.07719 ,-119.4293,APRSWXNET , ,N6FKW Auberry CA US , +AR110,3,210.0000 ,41.40883 ,2.110500 ,APRSWXNET , ,EA3CNO-1 Barcelona ES , +AR112,3,210.0000 ,41.67300 ,0.818000 ,APRSWXNET , ,EB3DMC-1 Belvis ES , +AR118,3,522.0000 ,42.99333 ,1.287330 ,APRSWXNET , ,F6DEV-5 Rimont FR , +AR119,3,100.0000 ,54.61667 ,-1.600000,APRSWXNET , ,G1ZEU Aycliffe UK , +AR126,3,10.00000 ,36.75283 ,-76.02750,APRSWXNET , ,KG4EUF Virginia Beach VA US , +AR130,3,64.00000 ,44.68850 ,10.63250 ,APRSWXNET , ,IW4BMA Reggio Emilia IT , +AR134,3,3.000000 ,25.73483 ,-80.42183,APRSWXNET , ,K4JRG Miami FL US , +AR135,3,2027.000 ,35.10067 ,-106.3403,APRSWXNET , ,K5MJE-1 Tijeras NM US , +AR136,3,79.00000 ,45.01443 ,-122.7747,APRSWXNET , ,N6TW Silverton OR US , +AR138,3,165.0000 ,34.45117 ,-114.3723,APRSWXNET , ,K7LHC-1 Lake Havasu AZ US , +AR145,3,215.0000 ,43.87583 ,-91.22217,APRSWXNET , ,KB9KTD-1 Onalaska WI US , +AR146,3,2829.000 ,39.67467 ,-105.4183,APRSWXNET , ,KC0GCU Evergreen CO US , +AR147,3,380.0000 ,41.35117 ,-96.57550,APRSWXNET , ,W0NWS-4 Colon NE US , +AR148,3,1542.300 ,38.74028 ,-108.0908,APRSWXNET , ,K6DYC Delta CO US , +AR150,3,147.0000 ,36.26033 ,-86.59550,APRSWXNET , ,KC4WPS Hendersonville TN US , +AR152,3,30.00000 ,30.51750 ,-87.81833,APRSWXNET , ,KC5LIO Fairhope AL US , +AR157,3,50.00000 ,28.49683 ,-81.50383,APRSWXNET , ,KD4WLI Orlando FL US , +AR159,3,851.0000 ,32.21850 ,-110.7677,APRSWXNET , ,KD6VLN-14 Tucson AZ US , +AR160,3,312.0000 ,44.75616 ,-124.0499,APRSWXNET , ,NEWPRT Cape Foulweather OR US , +AR161,3,2392.700 ,33.28232 ,-110.8212,APRSWXNET , ,KD7DR-3 Pinal Peak AZ US , +AR162,3,199.3000 ,36.08617 ,-79.27933,APRSWXNET , ,KF4VTT Mebane NC US , +AR164,3,717.0000 ,38.18383 ,-120.5400,APRSWXNET , ,KF6NY Mtn. Ranch CA US , +AR165,3,1968.500 ,34.34933 ,-111.1430,APRSWXNET , ,KF6YU-2 Payson AZ US , +AR166,3,3.000000 ,25.61183 ,-80.42483,APRSWXNET , ,KG4LXH-2 Miami FL US , +AR167,3,1531.000 ,40.29950 ,-105.0825,APRSWXNET , ,KI0IO-2 Berthoud CO US , +AR168,3,43.00000 ,30.07800 ,-95.47333,APRSWXNET , ,KK5CA-2 Spring TX US , +AR170,3,197.0000 ,33.27050 ,-96.99250,APRSWXNET , ,KO5Z Denton TX US , +AR172,3,120.0000 ,37.00233 ,-121.9363,APRSWXNET , ,W6TQP Soquel CA US , +AR173,3,10.00000 ,60.45217 ,5.135000 ,APRSWXNET , ,LA2YEA Hauglandshella NO , +AR175,3,150.0000 ,59.94783 ,10.65167 ,APRSWXNET , ,LA3RIA-7 Oslo NO , +AR176,3,34.10000 ,52.18283 ,0.993830 ,APRSWXNET , ,M3NIC Stowmarket UK , +AR177,3,1728.200 ,39.66067 ,-104.7548,APRSWXNET , ,K7UGT Aurora CO US , +AR178,3,299.0000 ,42.11617 ,-80.00700,APRSWXNET , ,KJ3L Erie PA US , +AR179,3,229.0000 ,43.79950 ,-88.47550,APRSWXNET , ,KC9AAG Fond Du Lac WI US , +AR180,3,512.0000 ,34.20400 ,-118.1380,APRSWXNET , ,WB6YPF Altadena CA US , +AR181,3,179.0000 ,34.14276 ,-117.9458,APRSWXNET , ,KE6ONT Duarte CA US , +AR183,3,76.00000 ,47.89750 ,-122.5297,APRSWXNET , ,N7LUF Hansville WA US , +AR184,3,887.0000 ,46.31683 ,-106.7042,APRSWXNET , ,W7PG-10 Forsyth MT US , +AR189,3,239.0000 ,30.38800 ,-98.08133,APRSWXNET , ,N5JEI-8 Spicewood TX US , +AR190,3,1040.000 ,34.22390 ,-116.4098,APRSWXNET , ,N6GIW Landers CA US , +AR191,3,488.0000 ,34.74333 ,-86.53217,APRSWXNET , ,WA4BPS Huntsville AL US , +AR193,3,138.7000 ,47.29250 ,-122.2725,APRSWXNET , ,WA6MVG Federal Way WA US , +AR194,3,284.0000 ,33.00933 ,-97.69767,APRSWXNET , ,N0JY-4 Springtown TX US , +AR195,3,365.0000 ,33.60317 ,-112.1963,APRSWXNET , ,N7BIV Glendale AZ US , +AR196,3,1112.500 ,31.96350 ,-110.2968,APRSWXNET , ,N7CK Benson AZ US , +AR198,3,217.0000 ,47.24333 ,-68.09750,APRSWXNET , ,N7GLR Grand Isle ME US , +AR200,3,119.0000 ,47.14300 ,-122.4208,APRSWXNET , ,N7TQZ Tacoma WA US , +AR201,3,257.0000 ,39.50050 ,-84.36350,APRSWXNET , ,N8NQF-1 Middletown OH US , +AR202,3,71.00000 ,42.68083 ,-71.56650,APRSWXNET , ,N8VIM Pepperell MA US , +AR203,3,310.8000 ,43.48883 ,-89.72417,APRSWXNET , ,N9UDO Baraboo WI US , +AR205,3,460.0000 ,47.26283 ,9.599670 ,APRSWXNET , ,OE9FWV Feldkirch AT , +AR207,3,320.0000 ,50.00400 ,16.27917 ,APRSWXNET , ,OK1TBF-5 Chocen CZ , +AR208,3,729.0000 ,46.40717 ,-105.8447,APRSWXNET , ,KD7WIS Miles City MT US , +AR209,3,290.0000 ,44.44659 ,-93.16757,APRSWXNET , ,K0OQ Northfield MN US , +AR210,3,295.0000 ,34.40783 ,-87.39367,APRSWXNET , ,N4IDX-7 Youngtown AL US , +AR212,3,170.0000 ,32.50533 ,-85.01917,APRSWXNET , ,WX4MAP Phenix City AL US , +AR213,3,229.0000 ,34.75617 ,-86.67800,APRSWXNET , ,W4HSV Huntsville AL US , +AR215,3,20.00000 ,65.29317 ,21.51317 ,APRSWXNET , ,SM2JQV Pitea SE , +AR216,3,1342.000 ,45.60200 ,-105.9370,APRSWXNET , ,W7PG-12 Home Creek MT US , +AR220,3,473.0000 ,46.99233 ,-120.5140,APRSWXNET , ,KB6KJX Ellensburg WA US , +AR225,3,647.0000 ,40.47631 ,-121.9884,APRSWXNET , ,KG6QHS Shingletown CA US , +AR226,3,23.00000 ,30.51350 ,-87.17600,APRSWXNET , ,W4NWF-2 Pensacola FL US , +AR227,3,1936.000 ,35.17533 ,-106.4808,APRSWXNET , ,WA5SJW-10 E.Albuquerque NM US , +AR228,3,1658.000 ,39.62500 ,-104.9795,APRSWXNET , ,N0ERG Littleton CO US , +AR229,3,1.000000 ,27.98717 ,-82.57950,APRSWXNET , ,N9RLR Tampa FL US , +AR231,3,1553.000 ,35.18500 ,-106.5975,APRSWXNET , ,KB5GAS-1 Balloon Fiesta NM US , +AR232,3,126.5000 ,44.10777 ,-123.1492,APRSWXNET , ,KC7RJK Eugene OR US , +AR235,3,985.0000 ,34.30683 ,-117.2932,APRSWXNET , ,K6SUD Hesperia CA US , +AR237,3,239.6000 ,32.37617 ,-97.30117,APRSWXNET , ,KC5PWQ Keene TX US , +AR240,3,366.0000 ,45.29967 ,-94.96633,APRSWXNET , ,K0CQW New London MN US , +AR241,3,107.0000 ,41.15867 ,-73.77700,APRSWXNET , ,K2LCA-1 Chappaqua NY US , +AR242,3,189.0000 ,42.97883 ,-78.87300,APRSWXNET , ,K2LGJ Buffalo NY US , +AR243,3,35.00000 ,30.78450 ,-84.86967,APRSWXNET , ,K4TPD-5 Donalsonville GA US , +AR244,3,3.000000 ,29.38867 ,-94.93550,APRSWXNET , ,K5ZXZ Texas City TX US , +AR245,3,707.0000 ,47.61467 ,-117.1835,APRSWXNET , ,K7HRT Greenacres WA US , +AR247,3,4.000000 ,28.55447 ,-96.52547,APRSWXNET , ,KC2JUS Port Lavaca TX US , +AR250,3,70.10000 ,42.61008 ,-71.46698,APRSWXNET , ,KA8SCP Westford MA US , +AR251,3,404.0000 ,37.01250 ,-98.48550,APRSWXNET , ,KB5MDH Kiowa KS US , +AR255,3,201.0000 ,36.14917 ,-79.18750,APRSWXNET , ,KC4YLE Efland NC US , +AR256,3,250.0000 ,29.59160 ,-98.26633,APRSWXNET , ,W5HKR Schertz TX US , +AR258,3,187.0000 ,43.96417 ,-86.45450,APRSWXNET , ,KC8HJN Ludington MI US , +AR259,3,207.3000 ,34.74617 ,-86.87117,APRSWXNET , ,KD5CUW-1 Madison AL US , +AR260,3,277.0000 ,33.16450 ,-97.89467,APRSWXNET , ,KY5B-1 Runaway Bay TX US , +AR263,3,738.0000 ,37.77667 ,-81.17300,APRSWXNET , ,WB8YUE Beckley WV US , +AR264,3,526.0000 ,33.72117 ,-111.9918,APRSWXNET , ,K0JDN Phoenix AZ US , +AR266,3,500.0000 ,46.75800 ,-122.0652,APRSWXNET , ,KJ7XE Ashford WA US , +AR268,3,56.00000 ,58.50500 ,-6.266670,APRSWXNET , ,GM7PBB Stonoway UK , +AR269,3,408.0000 ,46.47267 ,-116.2473,APRSWXNET , ,KC7PHC Orofino ID US , +AR270,3,9.000000 ,36.09550 ,-75.73283,APRSWXNET , ,KF4UXI Southern Shores NC US , +AR272,3,2.000000 ,28.42967 ,-82.60567,APRSWXNET , ,KG4JPL Hudson FL US , +AR273,3,71.00000 ,41.61617 ,-72.92217,APRSWXNET , ,N1JJX Southington CT US , +AR274,3,7.000000 ,28.02800 ,-80.66700,APRSWXNET , ,W4RP Palm Bay FL US , +AR276,3,67.00000 ,41.09475 ,-73.81420,APRSWXNET , ,W2RZS Hawthorne NY US , +AR277,3,26.20000 ,45.61633 ,-72.95417,APRSWXNET , ,VE2GAT-2 St.Hyacinthe QC CA , +AR279,3,198.0000 ,44.18883 ,-81.63667,APRSWXNET , ,VE3COE Kincardine ON CA , +AR280,3,203.9000 ,44.07950 ,-81.70417,APRSWXNET , ,VE3JON Kincardine ON CA , +AR282,3,39.00000 ,49.01917 ,-123.0867,APRSWXNET , ,VE7IMD-2 Delta BC CA , +AR283,3,11.00000 ,49.10754 ,-122.7452,APRSWXNET , ,VE7MKF-3 Surry BC CA , +AR284,3,1111.000 ,49.88217 ,-119.7102,APRSWXNET , ,VE7MMG-1 Crystal Mt. BC CA , +AR285,3,622.0000 ,-35.42267,149.0992 ,APRSWXNET , ,VK1NPW Chisholm ACT AU , +AR286,3,381.0000 ,41.28617 ,-96.15000,APRSWXNET , ,K0NSA Omaha NE US , +AR287,3,2995.000 ,32.87450 ,-105.7743,APRSWXNET , ,BENRDG BensonRidge NM US , +AR288,3,371.0000 ,30.30550 ,-98.39667,APRSWXNET , ,K5MCL Johnson City TX US , +AR297,3,270.0000 ,43.34283 ,-81.48333,APRSWXNET , ,VA3HRA Exeter ON CA , +AR300,3,249.0000 ,39.91765 ,-83.15263,APRSWXNET , ,KB8GQ Galloway OH US , +AR301,3,371.0000 ,35.22083 ,-97.41417,APRSWXNET , ,N5KUK Norman OK US , +AR302,3,101.5000 ,38.46083 ,-77.46283,APRSWXNET , ,N4NW Stafford County VA US , +AR303,3,5.000000 ,53.54717 ,7.955000 ,APRSWXNET , ,DL1BLU Schortens DE , +AR304,3,134.0000 ,33.84900 ,-116.4808,APRSWXNET , ,AA6HF-5 Cathedral City CA US , +AR307,3,172.2000 ,34.17000 ,-118.3330,APRSWXNET , ,W6KL Burbank CA US , +AR310,3,23.80000 ,35.55283 ,-77.60167,APRSWXNET , ,K4ROK-10 Farmville NC US , +AR312,3,137.5000 ,37.00217 ,-121.9363,APRSWXNET , ,WA6BAY-1 Soquel CA US , +AR313,3,81.40000 ,37.21833 ,-121.8517,APRSWXNET , ,WB6AHC-1 San Jose CA US , +AR315,3,12.00000 ,63.66833 ,22.70667 ,APRSWXNET , ,OH6GPB-1 Pietarsaari FI , +AR316,3,757.4000 ,48.08533 ,-117.4318,APRSWXNET , ,N7OKG Deer Park WA US , +AR317,3,243.8000 ,41.15950 ,-85.13217,APRSWXNET , ,KV4EE Fort Wayne IN US , +AR319,3,41.00000 ,-42.74783,147.2672 ,APRSWXNET , ,VK7HDM-5 Hobart TAS AU , +AR320,3,757.1000 ,34.02957 ,-119.7861,APRSWXNET , ,K6TZ Diablo Peak CA US , +AR321,3,35.10000 ,37.43467 ,-122.2063,APRSWXNET , ,K6DJR W.Menlo Park CA US , +AR323,3,70.10000 ,38.38031 ,-122.8242,APRSWXNET , ,KF6YUA Sebastopol CA US , +AR326,3,393.0000 ,41.03817 ,-74.57750,APRSWXNET , ,N2KTO Sparta NJ US , +AR327,3,162.0000 ,43.60683 ,-71.44700,APRSWXNET , ,AA1EO Weirs Beach NH US , +AR328,3,252.4000 ,43.69833 ,-71.48550,APRSWXNET , ,N1EO Center Harbor NH US , +AR329,3,54.60000 ,43.06167 ,-71.06200,APRSWXNET , ,KA1RVR Epping NH US , +AR330,3,97.50000 ,42.78333 ,-71.59617,APRSWXNET , ,KC1EO Hollis NH US , +AR333,3,576.1000 ,35.91850 ,-85.07350,APRSWXNET , ,WO4U-10 Crossville TN US , +AR335,3,199.3000 ,39.18300 ,-121.3200,APRSWXNET , ,KB0RF Smartville CA US , +AR338,3,38.10000 ,39.24030 ,-76.64970,APRSWXNET , ,N3WKE Baltimore/Lansdowne MD US , +AR343,3,94.50000 ,41.83017 ,-72.86567,APRSWXNET , ,WA1OUI West Simsbury CT US , +AR346,3,1913.000 ,14.53330 ,-90.44999,APRSWXNET , ,TG9RB Guatemala City GT , +AR347,3,235.0000 ,34.72691 ,-86.74546,APRSWXNET , ,KC5ZJO-1 Madison AL US , +AR348,3,137.0000 ,33.28300 ,-86.84533,APRSWXNET , ,KG4VVU Helena AL US , +AR351,3,15.00000 ,51.09100 ,3.169000 ,APRSWXNET , ,ON7EQ-5 Brugge BE , +AR352,3,1934.000 ,40.96533 ,-115.8667,APRSWXNET , ,KD7ATL Elko NV US , +AR354,3,1360.900 ,46.81100 ,-113.9367,APRSWXNET , ,W7PAQ Missoula MT US , +AR357,3,64.00000 ,42.01108 ,-71.30758,APRSWXNET , ,WB1ETW Plainville MA US , +AR358,3,435.0000 ,42.84938 ,-71.89295,APRSWXNET , ,N1MZX Peterborough NH US , +AR360,3,185.0000 ,38.26820 ,-78.42970,APRSWXNET , ,N7IVV Stanardsville VA US , +AR363,3,299.0000 ,46.96650 ,-91.78400,APRSWXNET , ,KNFRVR Knife River MN US , +AR365,3,2512.000 ,40.18033 ,-105.4775,APRSWXNET , ,KM6GE Allenspark CO US , +AR367,3,430.0000 ,46.99417 ,-92.29883,APRSWXNET , ,KB0KQA Duluth MN US , +AR369,3,277.7000 ,50.14748 ,-95.89047,APRSWXNET , ,VA4GD Pinawa MB CA , +AR371,3,802.0000 ,46.50100 ,-104.7932,APRSWXNET , ,W7PG-9 Ismay MT US , +AR372,3,274.0000 ,33.86583 ,-84.42500,APRSWXNET , ,KF4OVF Atlanta GA US , +AR374,3,181.4000 ,43.41320 ,-84.05350,APRSWXNET , ,N8AVR Shields MI US , +AR375,3,59.00000 ,33.45220 ,-81.03650,APRSWXNET , ,W4OSC Cope SC US , +AR377,3,190.5000 ,42.81750 ,-87.81580,APRSWXNET , ,N9WWR Racine WI US , +AR382,3,289.6000 ,42.45183 ,-85.24250,APRSWXNET , ,K8SWR Battle Creek MI US , +AR385,3,74.70000 ,42.84661 ,-71.42794,APRSWXNET , ,N1NAZ-1 Londonderry NH US , +AR388,3,191.0000 ,43.36750 ,-86.24283,APRSWXNET , ,KB8UNF Twin Lake MI US , +AR390,3,6.000000 ,33.79218 ,-118.1075,APRSWXNET , ,KE6JDC Long Beach CA US , +AR391,3,19.80000 ,27.28170 ,-81.83400,APRSWXNET , ,N8JE Arcadia FL US , +AR392,3,202.4000 ,44.06017 ,-91.69217,APRSWXNET , ,K0NY-2 Winona MN US , +AR400,3,198.0000 ,36.25933 ,-95.70333,APRSWXNET , ,KM5HG Claremore OK US , +AR402,3,199.0000 ,34.50689 ,-87.24147,APRSWXNET , ,KN4CI-1 Moulton AL US , +AR406,3,10.00000 ,39.56833 ,-75.98783,APRSWXNET , ,N3ZLL-2 Charlestown MD US , +AR409,3,152.0000 ,40.33150 ,-76.72817,APRSWXNET , ,KQ3F Harrisburg PA US , +AR410,3,211.0000 ,40.67917 ,-75.60550,APRSWXNET , ,WB3W-11 Schnecksville PA US , +AR412,3,420.6000 ,63.87450 ,-148.9958,APRSWXNET , ,KL1SF-7 Healy AK US , +AR413,3,46.30000 ,33.97117 ,-90.36700,APRSWXNET , ,W5JWW Sumner MS US , +AR415,3,50.00000 ,42.31050 ,-71.24750,APRSWXNET , ,K1HU Wellesley MA US , +AR418,3,390.0000 ,36.26283 ,-93.14600,APRSWXNET , ,AJ5C Harrison AR US , +AR420,3,194.0000 ,51.97550 ,9.841670 ,APRSWXNET , ,DB0GZX Alfeld DE , +AR421,3,37.00000 ,53.56483 ,9.825000 ,APRSWXNET , ,DB9AZ-10 Hamburg DE , +AR423,3,300.0000 ,53.55883 ,8.098670 ,APRSWXNET , ,DG2KB Wilhelmshaven DE , +AR426,3,554.5000 ,34.55700 ,-84.29217,APRSWXNET , ,K4BS Dahlonega GA US , +AR427,3,264.6000 ,20.87783 ,-156.5187,APRSWXNET , ,AH6GR Maui HI US , +AR428,3,5.500000 ,27.88983 ,-82.73217,APRSWXNET , ,KF4YYH Largo FL US , +AR429,3,230.1000 ,32.49383 ,-96.96300,APRSWXNET , ,KD5NFW Midlothian TX US , +AR430,3,212.0000 ,34.43965 ,-87.38087,APRSWXNET , ,N4JDB-1 Youngtown AL US , +AR435,3,184.4000 ,39.16417 ,-84.49583,APRSWXNET , ,KB8UBG Saint Bernard OH US , +AR436,3,381.0000 ,37.47767 ,-97.24017,APRSWXNET , ,N0KTA-2 Mulvane KS US , +AR437,3,445.6000 ,43.08367 ,-96.16700,APRSWXNET , ,N0OHO-1 Sioux Center IA US , +AR438,3,454.8000 ,43.44433 ,-96.83733,APRSWXNET , ,N0RGA-2 Tea SD US , +AR441,3,44.00000 ,41.68461 ,-72.74026,APRSWXNET , ,N1CNV-1 Newington CT US , +AR445,3,122.0000 ,37.88800 ,-87.54367,APRSWXNET , ,N4XI-9 Henderson KY US , +AR446,3,118.0000 ,38.03200 ,-87.57900,APRSWXNET , ,N4XI-3 Evansville IN US , +AR448,3,67.00000 ,36.47583 ,-77.92633,APRSWXNET , ,KA4NES Littleton NC US , +AR449,3,45.70000 ,34.70417 ,-79.89950,APRSWXNET , ,N4ZOI Cheraw SC US , +AR450,3,312.2000 ,44.93983 ,-95.71567,APRSWXNET , ,WB0RXX Montevideo MN US , +AR451,3,14.60000 ,27.87665 ,-82.78588,APRSWXNET , ,WA4ROX Largo FL US , +AR455,3,1385.300 ,41.71800 ,-111.8202,APRSWXNET , ,N7UWX-4 River Heights UT US , +AR456,3,1374.600 ,31.54633 ,-110.2630,APRSWXNET , ,N7ZGO Sierra Vista AZ US , +AR458,3,231.6000 ,41.12680 ,-83.18350,APRSWXNET , ,N8XHZ-4 Tiffin OH US , +AR459,3,239.0000 ,40.60383 ,-89.53283,APRSWXNET , ,N9SVO-1 East Peoria IL US , +AR461,3,390.1000 ,37.09500 ,-83.88600,APRSWXNET , ,KF4ZUX-4 London KY US , +AR464,3,313.0000 ,33.35200 ,-112.4303,APRSWXNET , ,KD7YAT-3 Goodyear AZ US , +AR466,3,164.0000 ,39.30171 ,-77.86723,APRSWXNET , ,AB3BE Hagerstown MD US , +AR467,3,94.20000 ,43.43718 ,-79.68277,APRSWXNET , ,VE3WXR Oakville ON CA , +AR468,3,259.0000 ,42.41833 ,-90.32950,APRSWXNET , ,KA9QVW Galena IL US , +AR470,3,251.0000 ,39.87250 ,-86.20133,APRSWXNET , ,K9DC Indianapolis IN US , +AR471,3,135.6000 ,33.51133 ,-82.13689,APRSWXNET , ,WA4PHY Martinez GA US , +AR473,3,274.0000 ,43.07283 ,-74.31333,APRSWXNET , ,KC2EUS Gloversville NY US , +AR474,3,36.60000 ,38.63783 ,-76.62383,APRSWXNET , ,N3IDX-11 Huntingtown MD US , +AR475,3,100.0000 ,41.87333 ,-71.91583,APRSWXNET , ,N1MD-3 Putnam CT US , +AR476,3,195.0000 ,32.65417 ,-97.17033,APRSWXNET , ,N5ZPR Arlington TX US , +AR477,3,205.0000 ,32.56267 ,-97.18783,APRSWXNET , ,KD5FHA-1 Mansfield TX US , +AR479,3,422.0000 ,47.64883 ,-95.01550,APRSWXNET , ,KC0RSG Pinewood MN US , +AR481,3,40.00000 ,42.18658 ,-71.00438,APRSWXNET , ,KA1TOX Braintree MA US , +AR484,3,201.3000 ,41.70000 ,-83.60000,APRSWXNET , ,K8RKS Toledo OH US , +AR485,3,300.0000 ,39.71967 ,-85.93733,APRSWXNET , ,W9IFW New Palestine IN US , +AR487,3,450.0000 ,36.92217 ,-93.83167,APRSWXNET , ,K0SQS Monett MO US , +AR488,3,6.700000 ,27.86667 ,-80.63333,APRSWXNET , ,AG4OX Palm Bay FL US , +AR489,3,71.60000 ,39.13217 ,-76.72783,APRSWXNET , ,W0NQW Fort Meade MD US , +AR490,3,93.00000 ,44.25800 ,-69.85600,APRSWXNET , ,KB1ITS Hallowell ME US , +AR492,3,7.000000 ,30.25450 ,-89.78600,APRSWXNET , ,AD5DP Slidell LA US , +AR495,3,54.60000 ,41.02317 ,-74.03367,APRSWXNET , ,KW2DIO-1 Woodcliff Lake NJ US , +AR498,3,256.0000 ,42.33364 ,-71.81660,APRSWXNET , ,W1PA Holden MA US , +AR501,3,91.00000 ,37.83111 ,-77.62334,APRSWXNET , ,KC4ASF Montpeiler VA US , +AR503,3,94.50000 ,38.79133 ,-77.25467,APRSWXNET , ,N4TVC Burke VA US , +AR506,3,97.50000 ,39.79833 ,-75.67567,APRSWXNET , ,N3PL Hockessin DE US , +AR509,3,2.000000 ,36.45416 ,-76.30069,APRSWXNET , ,WA1TSS South Mills NC US , +AR510,3,22.00000 ,41.84750 ,-71.05333,APRSWXNET , ,N1IER Berkley MA US , +AR511,3,32.00000 ,42.14583 ,-70.86967,APRSWXNET , ,WA1ENO Hanover MA US , +AR513,3,238.0000 ,37.66783 ,-121.6745,APRSWXNET , ,K6CSI Livermore CA US , +AR514,3,2.400000 ,41.26203 ,-72.80846,APRSWXNET , ,N1HUI Branford CT US , +AR515,3,294.0000 ,37.72366 ,-93.48889,APRSWXNET , ,W0BCF Humansville MO US , +AR517,3,79.20000 ,35.05033 ,-79.05167,APRSWXNET , ,N4TKD Fayetteville NC US , +AR524,3,100.0000 ,51.32117 ,12.33517 ,APRSWXNET , ,DG3SMA-4 Leipzig DE , +AR525,3,20.00000 ,28.29500 ,-81.41017,APRSWXNET , ,KG4FZO-7 Kissimmee FL US , +AR530,3,331.0000 ,42.75649 ,-72.27043,APRSWXNET , ,WA1NHP Richmond NH US , +AR531,3,32.00000 ,46.17167 ,-123.5800,APRSWXNET , ,N7HAE Knappa OR US , +AR532,3,10.00000 ,22.51167 ,114.1250 ,APRSWXNET , ,HKSSPW Sheung Shui HK CN , +AR534,3,2468.900 ,37.72735 ,-119.5842,APRSWXNET , ,K6IXA-2 Yosemite Park CA US , +AR536,3,1989.000 ,35.04250 ,-106.1645,APRSWXNET , ,N5KJT Edgewood NM US , +AR537,3,704.0000 ,35.64373 ,-117.6951,APRSWXNET , ,KK6PA Ridgecrest CA US , +AR541,3,1554.500 ,36.93450 ,-112.8853,APRSWXNET , ,N6LRG Cane Beds AZ US , +AR542,3,46.20000 ,52.59517 ,13.37717 ,APRSWXNET , ,DK7IN-5 Berlin DE , +AR543,3,57.90000 ,28.51767 ,-81.71517,APRSWXNET , ,KC2BRB-1 Clermont FL US , +AR545,3,313.0000 ,40.79733 ,22.04450 ,APRSWXNET , ,SV2CSV-2 Edessa GR , +AR546,3,594.4000 ,63.83867 ,-149.0683,APRSWXNET , ,KL8DX-7 Healy AK US , +AR547,3,6.100000 ,26.85667 ,-80.09383,APRSWXNET , ,AC4MO Palm Beach Gardens FL US , +AR549,3,2109.200 ,39.08367 ,-104.8712,APRSWXNET , ,KC0LNO Monument CO US , +AR550,3,1898.000 ,20.63150 ,-100.4107,APRSWXNET , ,XE1ZVO-5 Queretaro QRO MX , +AR551,3,1378.000 ,41.74017 ,-111.9752,APRSWXNET , ,KG7EW Mendon UT US , +AR552,3,220.0000 ,41.00833 ,-8.552500,APRSWXNET , ,CT1BXX-9 Lourosa PT , +AR553,3,265.2000 ,42.22917 ,-88.08800,APRSWXNET , ,KA4JMC Hawthorn Woods IL US , +AR554,3,978.4000 ,35.63667 ,-101.4542,APRSWXNET , ,AA5AW Borger TX US , +AR558,3,103.6000 ,33.43147 ,-88.80168,APRSWXNET , ,AC5MR-1 Starkville MS US , +AR561,3,299.0000 ,49.56628 ,10.88749 ,APRSWXNET , ,DL1NER Herzogenaurach DE , +AR563,3,356.9000 ,35.57567 ,-97.62983,APRSWXNET , ,W1DY Oklahoma City OK US , +AR565,3,75.00000 ,-43.50250,172.6833 ,APRSWXNET , ,ZL3GP Christchurch NZ , +AR566,3,1485.000 ,43.70376 ,-111.8861,APRSWXNET , ,KD7YVX Rigby ID US , +AR568,3,73.20000 ,32.94533 ,-117.2450,APRSWXNET , ,N6NKF Del Mar CA US , +AR569,3,249.0000 ,36.11140 ,-87.21389,APRSWXNET , ,AG4FW White Bluff TN US , +AR570,3,1335.000 ,40.64820 ,-111.9483,APRSWXNET , ,NN7RM Taylorsville UT US , +AR571,3,310.0000 ,42.15500 ,-72.20850,APRSWXNET , ,KK1W Brimfield MA US , +AR572,3,8.000000 ,42.46517 ,-70.96583,APRSWXNET , ,N1EVH Lynn MA US , +AR573,3,94.00000 ,41.61786 ,-73.92452,APRSWXNET , ,N2EYH Wappingers Falls NY US , +AR575,3,13.00000 ,39.94004 ,-74.14513,APRSWXNET , ,W2QO Island Heights NJ US , +AR578,3,77.40000 ,35.15967 ,-89.91617,APRSWXNET , ,KI4AUK Memphis TN US , +AR579,3,207.3000 ,35.99000 ,-86.78717,APRSWXNET , ,W4EMS Brentwood TN US , +AR580,3,632.5000 ,36.26088 ,-82.20374,APRSWXNET , ,KD4NH Hampton TN US , +AR581,3,88.40000 ,33.13633 ,-87.53217,APRSWXNET , ,KC4ZMP-1 Tuscaloosa AL US , +AR583,3,733.1000 ,33.48500 ,-85.80883,APRSWXNET , ,WB4GNA-8 Cheaha Mtn AL US , +AR585,3,243.8000 ,33.18450 ,-85.40217,APRSWXNET , ,WD4KTY-3 Wedowee AL US , +AR587,3,14.00000 ,30.33183 ,-92.05167,APRSWXNET , ,W5MLE Carencro LA US , +AR588,3,24.40000 ,32.54463 ,-92.00425,APRSWXNET , ,KD5MWL-2 Monroe LA US , +AR589,3,10.00000 ,27.45672 ,-80.67378,APRSWXNET , ,K9FHP Fort Pierce FL US , +AR590,3,853.4000 ,46.92067 ,-105.1577,APRSWXNET , ,W7PG-11 Fallon MT US , +AR591,3,182.9000 ,43.81967 ,-91.31833,APRSWXNET , ,KC0IKU La Crescent MN US , +AR594,3,300.8000 ,40.19667 ,-85.38967,APRSWXNET , ,KB9ZYI Muncie IN US , +AR595,3,278.9000 ,40.45550 ,-85.37517,APRSWXNET , ,WB9HLA-1 Hartford City IN US , +AR596,3,217.9000 ,39.24333 ,-86.63283,APRSWXNET , ,KB9YVI-11 Elletsville IN US , +AR597,3,245.7000 ,41.65933 ,-93.69867,APRSWXNET , ,N0VPR Johnston IA US , +AR598,3,292.6000 ,36.13300 ,-97.08167,APRSWXNET , ,ASTRO Stillwater OK US , +AR602,3,317.0000 ,39.90417 ,-83.87000,APRSWXNET , ,W8LCZ Springfield OH US , +AR604,3,210.3000 ,41.30917 ,-82.97900,APRSWXNET , ,W8DAG Clyde OH US , +AR605,3,193.5000 ,41.54643 ,-83.63490,APRSWXNET , ,N8XSF-1 Perrysburg OH US , +AR608,3,317.0000 ,41.73017 ,-84.94667,APRSWXNET , ,KB9NNR Fremont IN US , +AR610,3,6.900000 ,28.00833 ,-82.78300,APRSWXNET , ,W8RD Dunedin FL US , +AR612,3,239.9000 ,42.34967 ,-88.01633,APRSWXNET , ,W9DG Grayslake IL US , +AR613,3,213.4000 ,42.13333 ,-87.96617,APRSWXNET , ,WA9INF Buffalo Grove IL US , +AR615,3,187.5000 ,41.61533 ,-88.20000,APRSWXNET , ,WW9AE-12 Plainfield IL US , +AR616,3,230.7000 ,41.43450 ,-87.11240,APRSWXNET , ,W9EWA Valparaiso/Cobbs Corn IN US , +AR618,3,192.0000 ,44.43733 ,-88.05233,APRSWXNET , ,KE9LZ De Pere WI US , +AR619,3,268.2000 ,43.82233 ,-88.62417,APRSWXNET , ,N9QBW Eldorado WI US , +AR621,3,282.2000 ,45.53950 ,-92.97800,APRSWXNET , ,K0DMF N. Branch MN US , +AR622,3,259.0000 ,46.36001 ,-120.5964,APRSWXNET , ,KD7YTJ White Swan WA US , +AR623,3,1296.900 ,41.07900 ,-112.0681,APRSWXNET , ,NG7M Syracuse UT US , +AR624,3,7.000000 ,30.11750 ,-81.80350,APRSWXNET , ,KB7MSC Orange Park FL US , +AR625,3,237.0000 ,32.48383 ,-97.81500,APRSWXNET , ,KD5WMB Granbury TX US , +AR626,3,134.0000 ,44.30300 ,-69.79633,APRSWXNET , ,K1ADM Augusta ME US , +AR627,3,230.7000 ,32.81967 ,-97.40583,APRSWXNET , ,KE5BCC Lake Worth TX US , +AR628,3,87.20000 ,37.28333 ,-122.0027,APRSWXNET , ,WB6DHP Saratoga CA US , +AR631,3,128.6000 ,43.13218 ,-76.30401,APRSWXNET , ,N2RHS Baldwinsville NY US , +AR635,3,47.00000 ,35.18567 ,-77.83950,APRSWXNET , ,KC4JY Seven Springs NC US , +AR636,3,76.20000 ,36.07167 ,-78.68133,APRSWXNET , ,KE4U Creedmoor NC US , +AR638,3,35.00000 ,37.91583 ,-122.0358,APRSWXNET , ,K6BMD-9 Walnut Creek CA US , +AR639,3,425.2000 ,42.61367 ,-75.55950,APRSWXNET , ,KA2MYD Plymouth NY US , +AR641,3,450.0000 ,34.63442 ,-86.51211,APRSWXNET , ,W4GPS-7 Huntsville AL US , +AR645,3,1748.000 ,39.58478 ,-104.9002,APRSWXNET , ,WB0WUZ Centennial CO US , +AR647,3,39.00000 ,41.03490 ,-71.95901,APRSWXNET , ,N2GYI-4 Montauk NY US , +AR648,3,3.000000 ,26.47400 ,-81.84967,APRSWXNET , ,KD4VRZ Fort Myers FL US , +AR649,3,377.0000 ,34.02133 ,-83.98033,APRSWXNET , ,KG4PAN-1 Lawrenceville GA US , +AR651,3,57.90000 ,41.75652 ,-72.55832,APRSWXNET , ,N1PRS-9 Manchester CT US , +AR652,3,78.30000 ,47.95550 ,-122.3538,APRSWXNET , ,KE4KIB Clinton WA US , +AR653,3,99.00000 ,35.98167 ,-78.55417,APRSWXNET , ,KR4TA Wake Forest NC US , +AR654,3,178.0000 ,34.58466 ,-86.94394,APRSWXNET , ,WB4YPW Decatur AL US , +AR657,3,6.000000 ,52.24417 ,0.165170 ,APRSWXNET , ,M1HWB Milton Cam UK , +AR658,3,963.2000 ,45.21483 ,-123.7548,APRSWXNET , ,HEBOWX Mt. Hebo OR US , +AR659,3,57.00000 ,44.97700 ,-124.0090,APRSWXNET , ,LINCON Lincoln City OR US , +AR660,3,71.90000 ,45.02233 ,-123.8568,APRSWXNET , ,ROSLDG Rose Lodge OR US , +AR662,3,368.8000 ,44.61350 ,-123.6503,APRSWXNET , ,PATSY Eddyville/Claine Hill OR US , +AR663,3,46.00000 ,27.74867 ,-81.89217,APRSWXNET , ,WC4PEM-11 Welcome FL US , +AR664,3,41.00000 ,27.75667 ,-81.56867,APRSWXNET , ,WC4PEM-12 Frostproof FL US , +AR665,3,37.00000 ,27.78750 ,-81.32767,APRSWXNET , ,WC4PEM-13 Indian Lake Estates FL US , +AR666,3,69.00000 ,28.00967 ,-81.59950,APRSWXNET , ,WC4PEM-15 Dundee FL US , +AR668,3,70.00000 ,33.24917 ,-87.57833,APRSWXNET , ,KS4Z Northport AL US , +AR671,3,594.0000 ,42.73500 ,-74.80583,APRSWXNET , ,KW2U Cooperstown NY US , +AR672,3,39.00000 ,38.34950 ,-121.9688,APRSWXNET , ,W6BUL-5 Vacaville CA US , +AR674,3,1036.320 ,45.78200 ,-108.7197,APRSWXNET , ,K7GMS Billings MT US , +AR675,3,18.60000 ,41.79050 ,-72.61300,APRSWXNET , ,W1FJM-1 E.Hartford CT US , +AR676,3,46.00000 ,-37.97467,145.2460 ,APRSWXNET , ,VK3TI-1 Endeavour Hills AU , +AR679,3,135.6000 ,40.56967 ,-75.58917,APRSWXNET , ,W3BI Allentown PA US , +AR680,3,107.0000 ,35.17717 ,-89.77800,APRSWXNET , ,AG4KM Cordova TN US , +AR681,3,237.7000 ,36.67417 ,-93.21100,APRSWXNET , ,KC0LKE-11 Branson MO US , +AR683,3,100.6000 ,45.40167 ,-122.6003,APRSWXNET , ,W7FAA Gladstone OR US , +AR684,3,3.000000 ,33.70762 ,-118.0301,APRSWXNET , ,WD6AWP Huntington Beach CA US , +AR686,3,538.0000 ,34.52283 ,-85.62367,APRSWXNET , ,KB4BSA-8 Mentone AL US , +AR688,3,180.0000 ,34.36283 ,-86.34368,APRSWXNET , ,KB4VCA-1 Guntersville AL US , +AR690,3,464.0000 ,47.56075 ,-98.34357,APRSWXNET , ,N0VKI Binford ND US , +AR692,3,66.40000 ,27.95738 ,-81.94630,APRSWXNET , ,KN4LF Lakeland FL US , +AR693,3,6.000000 ,42.08260 ,-70.68513,APRSWXNET , ,KB1CHU Marshfield MA US , +AR695,3,30.00000 ,-23.09807,150.7415 ,APRSWXNET , ,VK4AKM Yeppoon AU , +AR697,3,3.300000 ,26.61939 ,-81.95040,APRSWXNET , ,N4CRO Cape Coral FL US , +AR698,3,292.6000 ,45.39633 ,-88.12417,APRSWXNET , ,KE9LZ-9 Athelstane WI US , +AR699,3,3.000000 ,13.74917 ,100.6963 ,APRSWXNET , ,E20EHQ-1 Bangkok TH , +AR701,3,1239.300 ,33.57550 ,-112.5787,APRSWXNET , ,WTMWX White Tank Mountain AZ US , +AR702,3,271.0000 ,38.60572 ,-93.85028,APRSWXNET , ,W0WFX Chilhowee MO US , +AR705,3,225.0000 ,38.97600 ,-92.47267,APRSWXNET , ,KM0R-4 Midway MO US , +AR707,3,472.4000 ,35.13315 ,-82.33019,APRSWXNET , ,N4JVU Tigerville SC US , +AR709,3,145.0000 ,38.80267 ,-90.54500,APRSWXNET , ,N0PTN-1 St. Charles MO US , +AR710,3,365.5000 ,33.63383 ,-112.3245,APRSWXNET , ,K0HJH Surprise AZ US , +AR711,3,246.9000 ,39.10350 ,-92.47660,APRSWXNET , ,N0OLS Harrisburg MO US , +AR714,3,160.0000 ,47.63444 ,19.15438 ,APRSWXNET , ,HA5CBW Dunakeszi HU , +AR715,3,11.30000 ,27.71417 ,-82.36217,APRSWXNET , ,N1ZK Ruskin FL US , +AR716,3,426.7000 ,33.67617 ,-117.3958,APRSWXNET , ,KG6BAO-1 Lake Elsinore CA US , +AR717,3,6.400000 ,28.01050 ,-80.65200,APRSWXNET , ,W4TEJ Palm Bay FL US , +AR718,3,1286.900 ,41.24592 ,-112.1992,APRSWXNET , ,KE7CXV W. Ogden UT US , +AR719,3,347.5000 ,41.52555 ,-75.01861,APRSWXNET , ,WB2QYR Lackawaxen PA US , +AR720,3,1529.200 ,40.19417 ,-105.0673,APRSWXNET , ,K0FCC Longmont CO US , +AR722,3,122.0000 ,37.88900 ,-122.1083,APRSWXNET , ,KF6IIU Lafayette CA US , +AR723,3,426.7000 ,44.92867 ,-71.46300,APRSWXNET , ,W1HJF Colebrook NH US , +AR724,3,98.80000 ,31.34003 ,-89.40417,APRSWXNET , ,WZ5Y-2 Hattiesburg MS US , +AR725,3,1741.900 ,34.24367 ,-117.2445,APRSWXNET , ,N6WZZ Twin Peaks CA US , +AR726,3,328.0000 ,38.80723 ,-94.90681,APRSWXNET , ,KD7BJG Gardner KS US , +AR727,3,4.300000 ,36.16867 ,-76.46783,APRSWXNET , ,N4QLD Hertford NC US , +AR728,3,3365.000 ,39.23633 ,-106.1075,APRSWXNET , ,WA5BGT Fairplay CO US , +AR729,3,1813.600 ,39.52867 ,-104.9153,APRSWXNET , ,K0LPM Littleton CO US , +AR731,3,126.0000 ,40.52667 ,-75.62783,APRSWXNET , ,KC5YIL Mertztown PA US , +AR732,3,222.5000 ,41.38333 ,-82.20000,APRSWXNET , ,N8NCK Amherst OH US , +AR735,3,215.0000 ,33.54270 ,-86.57450,APRSWXNET , ,N4OGP Leeds AL US , +AR736,3,2.000000 ,27.83807 ,-82.62776,APRSWXNET , ,NP3R St. Petersburg FL US , +AR738,3,1243.600 ,38.24233 ,-120.3700,APRSWXNET , ,K6NFL Arnold CA US , +AR739,3,26.80000 ,30.42617 ,-87.28383,APRSWXNET , ,KF4YEP-7 Pensacola FL US , +AR740,3,265.0000 ,34.45714 ,-87.86509,APRSWXNET , ,WX4FC Belgreen AL US , +AR743,3,1082.000 ,40.11883 ,-120.9045,APRSWXNET , ,K6WPR Greenville CA US , +AR744,3,38.10000 ,32.71867 ,-114.6477,APRSWXNET , ,K7ACS Yuma AZ US , +AR745,3,908.3000 ,34.49883 ,-117.3210,APRSWXNET , ,K7GIL Victorville CA US , +AR746,3,731.5000 ,47.66670 ,-117.6540,APRSWXNET , ,K7GPS-15 Medical Lake WA US , +AR747,3,7.000000 ,27.01167 ,-82.03467,APRSWXNET , ,K8TT Punta Gorda FL US , +AR748,3,359.7000 ,44.82917 ,-89.17100,APRSWXNET , ,K9AEG Wittenberg WI US , +AR749,3,2255.500 ,37.21867 ,-107.1025,APRSWXNET , ,K9NRG Pagosa Springs CO US , +AR750,3,6.000000 ,30.05717 ,-81.50000,APRSWXNET , ,W4LGH St.Augustine FL US , +AR751,3,309.0000 ,34.45533 ,-85.70283,APRSWXNET , ,KE4SXD Ft. Payne AL US , +AR753,3,166.1000 ,46.20800 ,-119.1952,APRSWXNET , ,KA7SSB Kennewick WA US , +AR754,3,76.20000 ,44.59700 ,-123.2540,APRSWXNET , ,KA8ZGM Corvallis OR US , +AR758,3,3.000000 ,45.56033 ,-123.9075,APRSWXNET , ,KB7QWZ Garibaldi OR US , +AR761,3,280.4000 ,39.19783 ,-94.54633,APRSWXNET , ,KC0PKX Gladstone MO US , +AR763,3,201.1000 ,33.03550 ,-97.09333,APRSWXNET , ,KC5AMA Flower Mound TX US , +AR764,3,182.3000 ,32.71733 ,-97.13883,APRSWXNET , ,KC5TXI Arlington TX US , +AR765,3,2248.200 ,39.08530 ,-104.5856,APRSWXNET , ,KC7VX Elbert CO US , +AR767,3,143.3000 ,36.48550 ,-87.80767,APRSWXNET , ,KD4MPL Dover TN US , +AR768,3,211.8000 ,32.88533 ,-97.23617,APRSWXNET , ,KD5LEN North Richland Hills TX US , +AR769,3,789.4000 ,34.64800 ,-118.2567,APRSWXNET , ,KD6LAY Quartz Hill CA US , +AR770,3,1603.200 ,44.06883 ,-111.4487,APRSWXNET , ,KD6LFT Ashton ID US , +AR771,3,429.8000 ,33.02033 ,-116.8890,APRSWXNET , ,KD6RSQ Ramona CA US , +AR773,3,454.0000 ,33.34089 ,-111.5861,APRSWXNET , ,KD7DR-5 Mesa AZ US , +AR777,3,142.0000 ,31.51910 ,-97.14299,APRSWXNET , ,KE5EGI Waco TX US , +AR778,3,624.0000 ,37.10133 ,-121.9037,APRSWXNET , ,N2RDT Los Gatos CA US , +AR779,3,586.0000 ,37.06217 ,-122.1220,APRSWXNET , ,K6HJU-2 Felton CA US , +AR781,3,163.0000 ,43.13833 ,-71.54267,APRSWXNET , ,N1IIC-4 Bow NH US , +AR782,3,15.00000 ,35.59650 ,-77.34600,APRSWXNET , ,KE4TZN Greenville NC US , +AR783,3,372.0000 ,39.88917 ,-79.76100,APRSWXNET , ,KD3XC-15 Uniontown PA US , +AR784,3,265.0000 ,34.95383 ,-82.00967,APRSWXNET , ,K4XP Spartanburg SC US , +AR786,3,23.00000 ,33.83800 ,-118.3142,APRSWXNET , ,W6AHM Torrance CA US , +AR788,3,233.2000 ,36.05050 ,-95.90300,APRSWXNET , ,KA5J Tulsa OK US , +AR789,3,199.6000 ,38.61950 ,-92.22955,APRSWXNET , ,N0TKN Jefferson City MO US , +AR793,3,145.0000 ,38.33883 ,-87.35417,APRSWXNET , ,KD9JB Oakland City IN US , +AR794,3,159.7000 ,41.34167 ,-88.29783,APRSWXNET , ,KC9DNQ-3 Coal City IL US , +AR795,3,2020.000 ,42.58667 ,-111.9745,APRSWXNET , ,KF7IS Lava Hot Springs ID US , +AR797,3,1511.800 ,40.11667 ,-104.9372,APRSWXNET , ,W0LTA Firestone CO US , +AR798,3,18.90000 ,38.51167 ,-122.9988,APRSWXNET , ,KF6TYS Guerneville CA US , +AR800,3,170.7000 ,38.03053 ,-85.65978,APRSWXNET , ,KA4TEV-1 Shepherdsville KY US , +AR801,3,116.0000 ,44.92817 ,-75.75783,APRSWXNET , ,VE3BSM Newmanville ON CA , +AR802,3,129.0000 ,44.08167 ,-123.0642,APRSWXNET , ,AC7TK-2 Eugene OR US , +AR804,3,259.0000 ,44.27250 ,-72.48883,APRSWXNET , ,N1BRT E Montpelier VT US , +AR807,3,1146.100 ,38.75467 ,-120.5918,APRSWXNET , ,K6GER Pollock Pines CA US , +AR808,3,31.40000 ,37.05867 ,-120.8080,APRSWXNET , ,K6TJS Los Banos CA US , +AR809,3,34.80000 ,37.06700 ,-120.8533,APRSWXNET , ,KG6NUO-1 Los Banos CA US , +AR810,3,242.0000 ,38.26504 ,-81.88472,APRSWXNET , ,WB8LKT Sod WV US , +AR811,3,195.4000 ,42.32250 ,-83.46033,APRSWXNET , ,KB8WLN Canton MI US , +AR813,3,354.0000 ,42.05617 ,-93.86233,APRSWXNET , ,N0YKX Boone IA US , +AR814,3,272.5000 ,40.19100 ,-85.68591,APRSWXNET , ,KB9VE Linwood IN US , +AR815,3,666.0000 ,53.53017 ,-113.4455,APRSWXNET , ,VE6RHS Edmonton AB CA , +AR816,3,54.00000 ,28.33605 ,-82.25670,APRSWXNET , ,K4EX Saint Leo FL US , +AR817,3,376.0000 ,35.57717 ,-97.67083,APRSWXNET , ,K5WTX Oklahoma City OK US , +AR818,3,1.500000 ,26.51358 ,-81.95395,APRSWXNET , ,KA4TEV Fort Meyers FL US , +AR819,3,260.0000 ,40.09620 ,-82.90628,APRSWXNET , ,W1RRD-3 Westerville OH US , +AR820,3,204.2000 ,41.95950 ,-87.79883,APRSWXNET , ,W9OL Harwood Heights IL US , +AR821,3,56.10000 ,41.44122 ,-71.65525,APRSWXNET , ,KA1GEU Charlestown RI US , +AR823,3,350.5000 ,37.06999 ,-97.03677,APRSWXNET , ,KA0RUX Arkansas City KS US , +AR824,3,220.0000 ,42.12972 ,-72.09694,APRSWXNET , ,K3GM Sturbridge MA US , +AR825,3,275.0000 ,43.92259 ,-89.93723,APRSWXNET , ,N9OEW Friendship WI US , +AR826,3,777.0000 ,32.23867 ,-110.7873,APRSWXNET , ,KR7RK Tucson AZ US , +AR828,3,39.00000 ,27.59967 ,-81.50417,APRSWXNET , ,W4HEM-13 Sebring FL US , +AR829,3,45.00000 ,31.28450 ,-94.31783,APRSWXNET , ,WA5SKH Broaddus TX US , +AR831,3,131.1000 ,40.55346 ,-75.60316,APRSWXNET , ,N3OUC-1 Trexlertown PA US , +AR833,3,718.4000 ,36.00133 ,-115.0830,APRSWXNET , ,KA7GOO Henderson NV US , +AR834,3,95.00000 ,38.64450 ,-122.8822,APRSWXNET , ,W6HN Healdsburg CA US , +AR835,3,262.0000 ,41.18674 ,-85.17522,APRSWXNET , ,K9BEP Fort Wayne IN US , +AR836,3,561.0000 ,36.81600 ,-114.1043,APRSWXNET , ,K0QMS Mesquite NV US , +AR838,3,255.0000 ,42.88217 ,-84.22717,APRSWXNET , ,KC5DUO Perry MI US , +AR839,3,245.0000 ,30.53453 ,-97.75768,APRSWXNET , ,WB5FMZ-1 Round Rock TX US , +AR840,3,433.0000 ,30.80600 ,-98.95900,APRSWXNET , ,WB5FMZ-7 Pontotoc TX US , +AR841,3,577.3000 ,42.46717 ,-73.02250,APRSWXNET , ,K1TTT Peru MA US , +AR845,3,198.1000 ,35.13133 ,-80.76750,APRSWXNET , ,KI4KKD Charlotte NC US , +AR846,3,230.0000 ,43.60317 ,-84.76450,APRSWXNET , ,KG4ULP Mt. Pleasant MI US , +AR850,3,420.0000 ,36.21160 ,-83.22253,APRSWXNET , ,K4CHT-2 Morristown TN US , +AR853,3,213.4000 ,32.68583 ,-97.39233,APRSWXNET , ,KC5TIL-3 Burleson TX US , +AR854,3,944.9000 ,34.42483 ,-116.8798,APRSWXNET , ,KC6JTN-3 Lucerne Valley CA US , +AR857,3,594.3000 ,36.18367 ,-115.0208,APRSWXNET , ,KD7LVX-13 Las Vegas NV US , +AR863,3,250.0000 ,33.71167 ,-96.65300,APRSWXNET , ,K8CYJ-5 Denison/Sherman TX US , +AR864,3,1865.400 ,39.41093 ,-104.2391,APRSWXNET , ,K0GS-6 Kiowa CO US , +AR866,3,15.00000 ,38.41935 ,-121.3603,APRSWXNET , ,KJ6MC Elk Grove CA US , +AR867,3,2.000000 ,39.84319 ,-74.15292,APRSWXNET , ,KU2C Forked River NJ US , +AR868,3,243.8000 ,44.75717 ,-93.34350,APRSWXNET , ,N0BHC Savage MN US , +AR871,3,15.20000 ,28.07800 ,-82.46550,APRSWXNET , ,N4WEB Tampa FL US , +AR874,3,44.00000 ,53.45550 ,14.54033 ,APRSWXNET , ,SR1WXZ Szczecin PL , +AR878,3,142.0000 ,45.27667 ,-76.09333,APRSWXNET , ,VA3KA Carp CA , +AR880,3,673.0000 ,53.55167 ,-113.6018,APRSWXNET , ,VE6BCA-1 Edmonton CA , +AR881,3,153.0000 ,-36.41467,146.3048 ,APRSWXNET , ,VK3BYD-6 Wangaratta AU , +AR882,3,54.00000 ,-34.23033,142.0868 ,APRSWXNET , ,VK3WRM-7 Mildura AR , +AR883,3,7.900000 ,37.07250 ,-76.48600,APRSWXNET , ,W4FLS Newport News VA US , +AR884,3,76.20000 ,35.23800 ,-89.94017,APRSWXNET , ,W4GMM Memphis TN US , +AR886,3,1.500000 ,27.70633 ,-82.73100,APRSWXNET , ,WA3RRK St. Pete Beach FL US , +AR887,3,865.6000 ,32.31083 ,-110.8575,APRSWXNET , ,WB6RAO Tucson AZ US , +AR889,3,283.5000 ,40.02283 ,-83.14900,APRSWXNET , ,WX8U-15 Hilliard OH US , +AR890,3,5.000000 ,52.77057 ,0.422210 ,APRSWXNET , ,G1KLP Kings Lynn UK , +AR893,3,1660.600 ,39.80683 ,-105.1278,APRSWXNET , ,N0PSJ-1 Arvada CO US , +AR896,3,711.0000 ,53.54550 ,-113.9183,APRSWXNET , ,VE6HU Edmonton AB CA , +AR898,3,724.5000 ,35.33652 ,-82.61572,APRSWXNET , ,W4DK Etowah NC US , +AR900,3,369.1000 ,41.30300 ,-96.15133,APRSWXNET , ,N0MEQ NW Omaha NE US , +AR901,3,23.00000 ,30.72000 ,-86.59378,APRSWXNET , ,N8PXE Crestview FL US , +AR903,3,90.30000 ,38.99700 ,-77.27583,APRSWXNET , ,K4AA Great Falls VA US , +AR904,3,174.3000 ,38.75567 ,-77.73400,APRSWXNET , ,W4IFI Warrenton VA US , +AR905,3,387.0000 ,39.45860 ,-80.12408,APRSWXNET , ,N8TJD Fairmont WV US , +AR906,3,500.8000 ,39.42600 ,-80.08933,APRSWXNET , ,W8SP Fairmont WV US , +AR908,3,42.70000 ,30.71967 ,-86.58467,APRSWXNET , ,N4GXX Crestview FL US , +AR909,3,2.000000 ,28.42617 ,-80.71167,APRSWXNET , ,KG4ZVW Merritt Island FL US , +AR910,3,4.000000 ,28.40830 ,-96.63134,APRSWXNET , ,N5JNG Port O'Connor TX US , +AR911,3,8.200000 ,30.24446 ,-81.74570,APRSWXNET , ,N6EIV W.Jacksonville FL US , +AR912,3,65.00000 ,-37.86383,176.4905 ,APRSWXNET , ,ZL1TQN Te Puke NZ , +AR914,3,3.000000 ,27.23750 ,-80.83667,APRSWXNET , ,K4JHI Okeechobee FL US , +AR916,3,33.00000 ,26.05383 ,-81.69583,APRSWXNET , ,AA4GT Naples FL US , +AR917,3,871.7000 ,32.04833 ,-102.1667,APRSWXNET , ,KK5MV-5 Midland TX US , +AR918,3,30.00000 ,29.63967 ,-82.34533,APRSWXNET , ,W4DFU Gainesville FL US , +AR919,3,2.000000 ,30.17952 ,-81.58844,APRSWXNET , ,W4EDP Jacksonville FL US , +AR920,3,3.000000 ,36.28432 ,-76.24581,APRSWXNET , ,NO4Y Elizabeth City NC US , +AR922,3,4.000000 ,28.95450 ,-80.89883,APRSWXNET , ,N4PLT Edgewater FL US , +AR929,3,77.70000 ,44.85383 ,-74.90183,APRSWXNET , ,W2NVW-3 Norfolk NY US , +AR931,3,28.70000 ,45.35517 ,-63.29900,APRSWXNET , ,VE1ER-4 Truro NS CA , +AR932,3,33.00000 ,46.20100 ,-63.22983,APRSWXNET , ,VE1AIC-4 Cornwall PE CA , +AR933,3,321.0000 ,43.93033 ,-75.65767,APRSWXNET , ,KC2HGK-4 Carthage NY US , +AR934,3,146.3000 ,40.29783 ,-76.57550,APRSWXNET , ,WI3X Palmyra PA US , +AR936,3,167.6000 ,40.90200 ,-75.13450,APRSWXNET , ,KA3ODJ Bangor PA US , +AR937,3,231.0000 ,40.62367 ,-75.07283,APRSWXNET , ,KD2GO Milford NJ US , +AR939,3,39.60000 ,40.15608 ,-74.91696,APRSWXNET , ,K3QV Penndel PA US , +AR941,3,335.3000 ,38.54967 ,-94.67550,APRSWXNET , ,K0IY Louisburg KS US , +AR943,3,141.0000 ,45.89383 ,-77.28333,APRSWXNET , ,VE3YF Petawawa ON CA , +AR944,3,39.00000 ,38.80867 ,-121.2855,APRSWXNET , ,K6ALF Rocklin CA US , +AR946,3,30.00000 ,52.15117 ,-0.404500,APRSWXNET , ,M1TLK Bedford UK , +AR951,3,51.00000 ,45.26117 ,12.11783 ,APRSWXNET , ,IW3IOY-2 Treviso IT , +AR953,3,207.0000 ,30.63117 ,-97.60583,APRSWXNET , ,N5THP Georgetown TX US , +AR956,3,820.0000 ,34.98168 ,-83.40186,APRSWXNET , ,KI4AKT Rabun Gap GA US , +AR957,3,100.0000 ,34.82400 ,137.7473 ,APRSWXNET , ,JQ2GLP Hamamatsu JP , +AR958,3,19.00000 ,35.42800 ,139.3840 ,APRSWXNET , ,JA1RBY Ebina-city JP , +AR960,3,3.400000 ,26.06750 ,-97.20500,APRSWXNET , ,KI0G-3 Port Isabel TX US , +AR961,3,123.4000 ,37.79967 ,-88.97367,APRSWXNET , ,K9UH-5 Carbondale IL US , +AR962,3,21.30000 ,39.61533 ,-75.70917,APRSWXNET , ,WB3CVN Newark DE US , +AR963,3,250.0000 ,39.79437 ,-86.31562,APRSWXNET , ,K8VGL Clermont IN US , +AR964,3,269.1000 ,36.02494 ,-79.89622,APRSWXNET , ,N4GVK Greensboro NC US , +AR968,3,21.00000 ,28.19450 ,-82.36667,APRSWXNET , ,KB1ATL Wesley Chapel FL US , +AR969,3,137.0000 ,45.47867 ,-122.3867,APRSWXNET , ,KB7PGV Gresham OR US , +AR970,3,579.1000 ,42.33633 ,-98.45667,APRSWXNET , ,WA0SOP Inman NE US , +AR971,3,27.60000 ,41.00843 ,-73.65263,APRSWXNET , ,N1TKS Greenwich CT US , +AR972,3,304.0000 ,37.99017 ,-84.54783,APRSWXNET , ,KD4SN Lexington KY US , +AR973,3,320.0000 ,38.14637 ,-94.81051,APRSWXNET , ,W0PT Mound City KS US , +AR974,3,1481.000 ,10.35531 ,-66.96192,APRSWXNET , ,YV5FIH Altos Mirandinos MI VE , +AR975,3,101.2000 ,42.47268 ,-73.64394,APRSWXNET , ,W2CS North Chatham NY US , +AR976,3,241.0000 ,42.89183 ,-88.14233,APRSWXNET , ,NO9B Muskego WI US , +AR978,3,13.10000 ,26.56646 ,-80.10376,APRSWXNET , ,W2CLM Boynton Beach FL US , +AR979,3,201.0000 ,40.60894 ,-122.3388,APRSWXNET , ,KG6QHS-1 Redding Vineyard CA US , +AR980,3,308.5000 ,33.95133 ,-84.42167,APRSWXNET , ,K4MET Sandy Springs GA US , +AR981,3,180.0000 ,34.14947 ,-78.09442,APRSWXNET , ,KF4PAJ Winnabow NC US , +AR982,3,221.0000 ,41.45033 ,-87.36717,APRSWXNET , ,W9EMA Crown Point IN US , +AR983,3,712.3000 ,35.63633 ,-117.7023,APRSWXNET , ,KE6IFK Ridgecrest CA US , +AR984,3,282.0000 ,43.33980 ,-5.852300,APRSWXNET , ,EA1WS Oviedo ES , +AR985,3,4.000000 ,28.36917 ,-80.61300,APRSWXNET , ,W4MFJ Cocoa Beach FL US , +AR986,3,158.0000 ,40.50961 ,-75.54399,APRSWXNET , ,N3OUC-2 Macungie PA US , +AR987,3,42.70000 ,37.69917 ,-121.4437,APRSWXNET , ,N5FDL Tracy CA US , +AR989,3,153.3000 ,53.58122 ,-1.770540,APRSWXNET , ,G4LED Holmfirth WYK UK , +AR990,3,22.30000 ,29.64317 ,-81.65267,APRSWXNET , ,N7WWK-1 Palatka FL US , +AR991,3,25.60000 ,51.37766 ,1.309760 ,APRSWXNET , ,G1JEH Birchington UK , +AR992,3,428.2000 ,46.85850 ,-92.21883,APRSWXNET , ,KA0TMW Hermantown MN US , +AR994,3,257.0000 ,33.86917 ,-86.84350,APRSWXNET , ,N4XWC Hayden AL US , +AR995,3,80.00000 ,48.72830 ,2.252300 ,APRSWXNET , ,F1HCI Massy FR , +AR998,3,251.5000 ,47.25017 ,-68.35033,APRSWXNET , ,K1FTK St. Agatha ME US , +AR999,3,1356.000 ,40.57950 ,-111.8835,APRSWXNET , ,K2NWS Sandy UT US , +AS012,3,237.7000 ,38.01636 ,-84.90568,APRSWXNET , ,KE4AIE Lawrenceburg KY US , +AS014,3,1527.000 ,40.04023 ,-104.7921,APRSWXNET , ,KC0TDR Ft Lupton CO US , +AS015,3,2180.000 ,38.44140 ,-120.0715,APRSWXNET , ,KG6PPD-9 Tamarack CA US , +AS016,3,404.0000 ,41.46212 ,-74.81119,APRSWXNET , ,NY2PO Glen Spey NY US , +AS017,3,288.0000 ,39.93050 ,-86.62950,APRSWXNET , ,KB9RDO Jamestown IN US , +AS018,3,248.4000 ,40.60633 ,-85.68333,APRSWXNET , ,W9JED Marion IN US , +AS019,3,1100.000 ,9.919670 ,-84.09433,APRSWXNET , ,TI2YO-12 San Jose CR , +AS020,3,280.4000 ,40.89033 ,-74.67250,APRSWXNET , ,K2RFH Ledgewood NJ US , +AS021,3,338.0000 ,35.71117 ,-81.75050,APRSWXNET , ,KI4LTA Morganton NC US , +AS022,3,296.0000 ,44.13233 ,-93.98967,APRSWXNET , ,N0QV Mankato MN US , +AS023,3,296.0000 ,50.91000 ,8.004170 ,APRSWXNET , ,DH5DY Koblenz DE , +AS024,3,108.0000 ,48.82722 ,2.576110 ,APRSWXNET , ,F1GMA Noisy le Grand FR , +AS025,3,10.00000 ,64.00800 ,23.48683 ,APRSWXNET , ,OH6HFX Lohtaja FI , +AS027,3,20.10000 ,29.77085 ,-95.50322,APRSWXNET , ,K5LOT Hunters Creek TX US , +AS028,3,182.9000 ,46.91517 ,-122.3567,APRSWXNET , ,AC7KP Eatonville WA US , +AS031,3,13.00000 ,28.01350 ,-82.72100,APRSWXNET , ,AB4EZ-1 Clearwater FL US , +AS032,3,155.4000 ,36.61900 ,-87.30400,APRSWXNET , ,AC4RS Clarksville TN US , +AS035,3,1804.400 ,34.37750 ,-111.2237,APRSWXNET , ,AI7R Payson AZ US , +AS037,3,237.0000 ,49.88400 ,-97.22783,APRSWXNET , ,VE4TJR Winnipeg MB CA , +AS039,3,210.0000 ,47.00200 ,-71.34333,APRSWXNET , ,VA2RC Stoneham QC CA , +AS041,3,164.3000 ,43.57100 ,-70.88767,APRSWXNET , ,K1DLM-12 Square Pond ME US , +AS043,3,107.0000 ,42.77200 ,-71.60333,APRSWXNET , ,WB1AS Hollis NH US , +AS044,3,92.90000 ,35.58800 ,-78.60083,APRSWXNET , ,K4JDR Raleigh NC US , +AS045,3,39.00000 ,34.24744 ,-79.70407,APRSWXNET , ,KD4VH Quinby SC US , +AS046,3,209.1000 ,39.66133 ,-86.18835,APRSWXNET , ,K9HL Indianapolis IN US , +AS048,3,161.0000 ,32.91545 ,-96.62330,APRSWXNET , ,AD5AZ-1 Garland TX US , +AS049,3,1600.000 ,47.62500 ,13.08983 ,APRSWXNET , ,DO1MSR-3 Salsburg AT , +AS050,3,265.5000 ,32.67400 ,-97.62167,APRSWXNET , ,KC5TIL-4 Aledo TX US , +AS052,3,10.00000 ,27.85717 ,-82.80433,APRSWXNET , ,NA4AR Seminole FL US , +AS053,3,395.0000 ,44.27546 ,-71.71278,APRSWXNET , ,KC1FX Bethlehem NH US , +AS054,3,280.0000 ,34.09228 ,-83.68139,APRSWXNET , ,W4ALE Jefferson GA US , +AS056,3,7.000000 ,27.49268 ,-82.59333,APRSWXNET , ,KB4SYV Bradenton FL US , +AS057,3,67.00000 ,50.40858 ,-3.563640,APRSWXNET , ,G6UIM Paignton UK , +AS059,3,865.0000 ,-36.36167,148.8278 ,APRSWXNET , ,VK2KV Berridale NSW AU , +AS061,3,1463.300 ,39.03846 ,-119.7209,APRSWXNET , ,W3DRM Minden NV US , +AS062,3,1798.000 ,39.56317 ,-107.3353,APRSWXNET , ,K9MWM-1 Glenwood Springs CO US , +AS064,3,44.20000 ,27.51817 ,-81.53300,APRSWXNET , ,KG4INU Sebring FL US , +AS065,3,4.600000 ,36.95217 ,-76.25783,APRSWXNET , ,N4WFP-15 Norfolk VA US , +AS067,3,109.7000 ,38.64117 ,-77.47533,APRSWXNET , ,KF4UQS-15 Nokesville VA US , +AS069,3,684.0000 ,13.71380 ,-89.19585,APRSWXNET , ,YS1JBL San Salvador SV , +AS070,3,419.1000 ,46.04083 ,-118.2213,APRSWXNET , ,KE7FQA Walla Walla WA US , +AS071,3,300.0000 ,43.82200 ,-85.41050,APRSWXNET , ,N8YZF Hersey MI US , +AS072,3,177.0000 ,37.70520 ,-122.4296,APRSWXNET , ,KA6TGI Daly City CA US , +AS073,3,180.0000 ,33.15000 ,-96.00000,APRSWXNET , ,WW9W Allen TX US , +AS076,3,125.0000 ,37.89867 ,-88.91750,APRSWXNET , ,N9AZZ W.Frankfort IL US , +AS077,3,1.000000 ,34.44800 ,-77.57117,APRSWXNET , ,W4TSI Surf City NC US , +AS079,3,6.000000 ,50.98800 ,4.573330 ,APRSWXNET , ,ON5GQ-5 Boortmeerbeek BE , +AS080,3,170.7000 ,33.34761 ,-86.81272,APRSWXNET , ,N1YZ Hoover AL US , +AS082,3,280.0000 ,49.97033 ,-98.31167,APRSWXNET , ,VE4ALW Portage La Prairie MB CA , +AS087,3,390.0000 ,43.42135 ,-72.01029,APRSWXNET , ,N1ZGF New London NH US , +AS088,3,1479.000 ,40.30767 ,-111.6722,APRSWXNET , ,KB7TPO Orem UT US , +AS089,3,61.00000 ,42.66467 ,-73.70817,APRSWXNET , ,N2EKS Rensselaer NY US , +AS091,3,153.0000 ,43.84319 ,-71.21239,APRSWXNET , ,KB1TX Chocorua NH US , +AS093,3,320.0000 ,46.08000 ,14.46833 ,APRSWXNET , ,S56ZAB-6 Ljubljana SI , +AS096,3,201.0000 ,33.58050 ,-84.04533,APRSWXNET , ,KA4BYP Conyers GA US , +AS097,3,371.9000 ,37.08383 ,-83.91650,APRSWXNET , ,KG4LKY-5 London KY US , +AS098,3,400.0000 ,45.83750 ,-94.61800,APRSWXNET , ,N0MY Burtrum MN US , +AS099,3,195.0000 ,43.81417 ,-91.25217,APRSWXNET , ,WX9EP-9 La Crosse WI US , +AS100,3,270.0000 ,30.11000 ,-97.91050,APRSWXNET , ,N0EZZ Buda TX US , +AS102,3,16.00000 ,38.72783 ,-77.04600,APRSWXNET , ,KA6AKH Alexandria VA US , +AS103,3,278.6000 ,38.67867 ,-94.41783,APRSWXNET , ,N6TDM-5 Peculiar MO US , +AS104,3,349.0000 ,46.81070 ,-90.84807,APRSWXNET , ,W9PPN Bayfield WI US , +AS105,3,1185.700 ,44.37533 ,-108.0403,APRSWXNET , ,N7YGN Basin WY US , +AS106,3,294.0000 ,37.90830 ,-122.5757,APRSWXNET , ,KE6FWD Mill Valley CA US , +AS107,3,70.00000 ,42.66929 ,-73.79754,APRSWXNET , ,N2QDK-1 Albany NY US , +AS108,3,143.0000 ,43.20383 ,-77.43050,APRSWXNET , ,N2QDK-2 Webster NY US , +AS109,3,60.00000 ,36.94033 ,-121.3983,APRSWXNET , ,WA5CUY Hollister CA US , +AS110,3,60.00000 ,42.34050 ,-71.42067,APRSWXNET , ,W1CCE Framingham MA US , +AS114,3,284.1000 ,43.91867 ,-73.63467,APRSWXNET , ,KC2NAZ-6 Paradox NY US , +AS115,3,152.0000 ,64.87890 ,-147.8240,APRSWXNET , ,WL7ZY Fairbanks AK US , +AS116,3,427.0000 ,65.48500 ,-144.6850,APRSWXNET , ,WL7ZY-6 Circle Hot Springs AK US , +AS119,3,55.00000 ,42.98715 ,-71.12762,APRSWXNET , ,N1EDU Fremont NH US , +AS120,3,560.0000 ,37.77567 ,-3.791000,APRSWXNET , ,EA7AZH Jaen ES , +AS122,3,123.4000 ,39.56667 ,-77.16667,APRSWXNET , ,W3ALF Union Bridge MD US , +AS123,3,143.4000 ,34.93250 ,-88.50980,APRSWXNET , ,WB5CON Corinth MS US , +AS124,3,1548.000 ,39.29467 ,-119.7787,APRSWXNET , ,K7SFN Washoe Valley NV US , +AS125,3,192.0000 ,33.00750 ,-97.22333,APRSWXNET , ,KE5AIM Roanoke TX US , +AS126,3,146.3000 ,36.24617 ,-86.57750,APRSWXNET , ,WB0NOO Old Hickory TN US , +AS127,3,205.7000 ,32.97190 ,-97.52670,APRSWXNET , ,K5ANR Azle TX US , +AS130,3,122.0000 ,40.19865 ,-76.20604,APRSWXNET , ,WA3RMS Ephrata PA US , +AS132,3,210.3000 ,35.08344 ,-80.75276,APRSWXNET , ,KF6WAX-3 Charlotte NC US , +AS135,3,205.0000 ,33.43000 ,-86.78100,APRSWXNET , ,WB4FAY-5 Vestavia Hills AL US , +AS137,3,327.6000 ,41.12883 ,-81.64667,APRSWXNET , ,WD8BMP-4 Copley OH US , +AS138,3,248.0000 ,42.97667 ,-85.17350,APRSWXNET , ,N8FAU-4 Saranac MI US , +AS139,3,1185.000 ,32.26283 ,-106.7475,APRSWXNET , ,AC5RI Las Cruces NM US , +AS140,3,33.50000 ,28.60866 ,-81.31367,APRSWXNET , ,WA4IKQ Winter Park FL US , +AS142,3,2384.000 ,39.23917 ,-105.2727,APRSWXNET , ,KA0MWA-1 Westcreek CO US , +AS143,3,680.0000 ,35.31867 ,-82.46117,APRSWXNET , ,AI4GR Hendersonville NC US , +AS144,3,1018.000 ,45.23707 ,-120.2986,APRSWXNET , ,N7GSU Condon OR US , +AS145,3,893.0000 ,43.42000 ,-102.1847,APRSWXNET , ,N0MN Kyle SD US , +AS146,3,303.0000 ,41.82519 ,-85.10258,APRSWXNET , ,K8BPD Bronson MI US , +AS147,3,69.00000 ,47.59133 ,-52.70717,APRSWXNET , ,VO1ST-5 St. John's NF CA , +AS148,3,3.500000 ,39.16617 ,-76.25617,APRSWXNET , ,K3WKM Rock Hall MD US , +AS149,3,212.0000 ,46.17347 ,8.944690 ,APRSWXNET , ,HB9DNU Locarno CH , +AS150,3,238.0000 ,39.86500 ,-86.09700,APRSWXNET , ,N9CXI Indianapolis IN US , +AS152,3,160.0000 ,42.56633 ,-71.74033,APRSWXNET , ,N1MGO Leominster MA US , +AS154,3,186.0000 ,43.44283 ,-84.02433,APRSWXNET , ,KC8YVF-1 Saginaw MI US , +AS155,3,8.000000 ,26.08334 ,-80.33841,APRSWXNET , ,KC4VFP Davie FL US , +AS157,3,179.8000 ,44.47967 ,-70.06450,APRSWXNET , ,AA1XD Fayette ME US , +AS158,3,82.60000 ,30.97336 ,-95.82640,APRSWXNET , ,K5PNV Madisonville TX US , +AS160,3,1.100000 ,65.09250 ,25.41250 ,APRSWXNET , ,OH8GEJ-6 Oulu FI , +AS161,3,300.0000 ,39.10093 ,-94.42016,APRSWXNET , ,K0EJC-1 Independence MO US , +AS162,3,282.0000 ,39.05050 ,-94.40650,APRSWXNET , ,K0EJC-2 Independence MO US , +AS165,3,292.0000 ,39.05817 ,-94.44433,APRSWXNET , ,K0EJC-5 Independence MO US , +AS167,3,279.0000 ,39.07917 ,-94.38217,APRSWXNET , ,K0EJC-7 Independence MO US , +AS175,3,285.0000 ,39.09283 ,-94.40217,APRSWXNET , ,K0EJC-15 Independence MO US , +AS176,3,365.8000 ,33.75752 ,-118.3669,APRSWXNET , ,WA6MEM Palos Verdes CA US , +AS177,3,93.00000 ,35.53430 ,-78.57411,APRSWXNET , ,W4RJF Benson NC US , +AS178,3,182.6000 ,43.06211 ,-86.16684,APRSWXNET , ,AB8XS Spring Lake MI US , +AS180,3,45.00000 ,42.77817 ,-71.10317,APRSWXNET , ,KB1DZZ Haverhill MA US , +AS183,3,321.6000 ,42.04533 ,-84.75300,APRSWXNET , ,KQ8R Litchfield MI US , +AS184,3,7.600000 ,41.70165 ,-70.76076,APRSWXNET , ,WA1ONB Sippican Harbor MA US , +AS186,3,1463.000 ,41.09150 ,-111.9260,APRSWXNET , ,K7RFW Layton UT US , +AS187,3,66.00000 ,50.96300 ,7.097830 ,APRSWXNET , ,DL6KL Koeln DE , +AS188,3,289.6000 ,35.13325 ,-85.20032,APRSWXNET , ,N4DRV Hixson TN US , +AS189,3,869.0000 ,48.46583 ,-118.1032,APRSWXNET , ,N7DRK-4 Rice WA US , +AS191,3,77.00000 ,45.18363 ,-123.9346,APRSWXNET , ,PACCTY Pacific City OR US , +AS192,3,24.10000 ,45.85432 ,-122.8189,APRSWXNET , ,WH6KO St Helens OR US , +AS193,3,3.000000 ,56.64493 ,16.46376 ,APRSWXNET , ,SM7GXQ Farjestaden SE , +AS195,3,207.6000 ,41.79234 ,-83.65040,APRSWXNET , ,WD8ABZ Temperance MI US , +AS196,3,185.9000 ,41.63133 ,-83.45133,APRSWXNET , ,WZ8H Oregon OH US , +AS197,3,23.00000 ,39.36267 ,-76.06267,APRSWXNET , ,K3ARS-5 Betterton MD US , +AS198,3,315.5000 ,34.28950 ,-118.7438,APRSWXNET , ,WD6CGF Simi Valley CA US , +AS199,3,149.0000 ,36.76500 ,-78.92917,APRSWXNET , ,AC4MB-5 Halifax VA US , +AS200,3,2.000000 ,39.20817 ,-74.87450,APRSWXNET , ,KC2DUX Eldora NJ US , +AS201,3,1558.000 ,39.85250 ,-104.9095,APRSWXNET , ,N0TZL Dupont CO US , +AS202,3,16.80000 ,26.10947 ,-80.15564,APRSWXNET , ,W4AKE Ft Lauderdale FL US , +AS203,3,2.000000 ,50.81120 ,0.032200 ,APRSWXNET , ,G1AAR Newhaven UK , +AS204,3,68.00000 ,51.64717 ,7.199000 ,APRSWXNET , ,DB0WXR Recklinghausen DE , +AS208,3,1295.400 ,32.12384 ,-107.7688,APRSWXNET , ,N5IHE Deming NM US , +AS209,3,41.20000 ,28.09929 ,-81.61556,APRSWXNET , ,KG4JSZ Haines City FL US , +AS211,3,245.0000 ,44.37691 ,-79.72952,APRSWXNET , ,VA3TWP Barrie ON CA , +AS212,3,110.0000 ,44.63300 ,-73.11383,APRSWXNET , ,KE1FO Milton VT US , +AS214,3,310.9000 ,33.64333 ,-85.60950,APRSWXNET , ,K4KM-1 Heflin AL US , +AS215,3,277.1000 ,45.15800 ,-93.13450,APRSWXNET , ,KC0OPD Lino Lakes MN US , +AS216,3,533.0000 ,44.23173 ,-96.47954,APRSWXNET , ,KC0OFZ Elkton SD US , +AS218,3,442.0000 ,43.54200 ,-96.75104,APRSWXNET , ,N6SLN Sioux Falls SD US , +AS219,3,208.0000 ,36.49320 ,-86.91048,APRSWXNET , ,N4LB Springfield TN US , +AS220,3,108.8000 ,64.55750 ,-149.0920,APRSWXNET , ,KL1YC Nenana AK US , +AS221,3,24.00000 ,42.97967 ,-70.94200,APRSWXNET , ,W1JAB Exeter NH US , +AS222,3,10.00000 ,27.25183 ,-80.38117,APRSWXNET , ,KC8NZJ-1 Port St Lucie FL US , +AS223,3,642.0000 ,37.44229 ,-119.8627,APRSWXNET , ,NM6G Mariposa CA US , +AS224,3,106.7000 ,37.88633 ,-122.5317,APRSWXNET , ,AD6WX Mill Valley CA US , +AS225,3,1545.300 ,40.48867 ,-112.0238,APRSWXNET , ,KG6GRF Herriman UT US , +AS226,3,557.0000 ,32.31383 ,-99.68783,APRSWXNET , ,KD5SMN Abilene TX US , +AS227,3,132.9000 ,10.72083 ,-61.50617,APRSWXNET , ,9Z4CT Maraval TT , +AS228,3,400.0000 ,60.02533 ,13.67867 ,APRSWXNET , ,SM4WDQ Hagfors SE , +AS229,3,12.00000 ,29.85883 ,-81.33483,APRSWXNET , ,KD4QOF St. Augustine FL US , +AS230,3,1406.700 ,40.73067 ,-111.8267,APRSWXNET , ,K7PB Salt Lake City UT US , +AS231,3,213.4000 ,38.92167 ,-92.34917,APRSWXNET , ,AE0S Columbia MO US , +AS233,3,176.8000 ,34.38583 ,-86.98550,APRSWXNET , ,N4BK Hartselle AL US , +AS234,3,246.0000 ,48.05667 ,-123.3265,APRSWXNET , ,WA7EBH-15 Port Angeles WA US , +AS235,3,248.0000 ,29.18400 ,-98.96933,APRSWXNET , ,WB5LJZ-5 Devine TX US , +AS236,3,33.00000 ,26.16850 ,-98.19550,APRSWXNET , ,WB5QOR-3 McAllen TX US , +AS237,3,42.00000 ,26.28400 ,-98.25750,APRSWXNET , ,WB5QOR-4 McAllen TX US , +AS238,3,61.00000 ,33.53100 ,-81.82000,APRSWXNET , ,WX4BB-1 Warrenville SC US , +AS239,3,190.0000 ,33.02950 ,-97.14833,APRSWXNET , ,K7PW Flower Mound TX US , +AS240,3,680.0000 ,49.19220 ,-117.2992,APRSWXNET , ,VE7KNL Salmo BC CA , +AS241,3,31.10000 ,31.13383 ,-92.06833,APRSWXNET , ,KD5JZC Marksville LA US , +AS242,3,145.0000 ,36.36233 ,-88.28367,APRSWXNET , ,W4WYD Paris TN US , +AS244,3,225.0000 ,41.48037 ,-89.22186,APRSWXNET , ,K9ZQ Arlington IL US , +AS245,3,7.000000 ,29.86882 ,-81.28497,APRSWXNET , ,KD4QOF-1 St.Augustine FL US , +AS247,3,212.6000 ,35.37083 ,-92.41450,APRSWXNET , ,KD5GMX Damascus AR US , +AS248,3,204.2000 ,41.95223 ,-83.64489,APRSWXNET , ,N2WAI Dundee MI US , +AS249,3,40.00000 ,37.27417 ,-121.9433,APRSWXNET , ,K9GVF Campbell CA US , +AS250,3,9.000000 ,29.13220 ,-95.64670,APRSWXNET , ,K5MBH-2 West Columbia TX US , +AS256,3,9.100000 ,30.66812 ,-88.11454,APRSWXNET , ,KF4IRC Mobile AL US , +AS258,3,345.0000 ,40.38417 ,-80.71783,APRSWXNET , ,N8GD Wintersville OH US , +AS259,3,326.0000 ,41.16804 ,-96.02597,APRSWXNET , ,KE6IGA Papillion NE US , +AS260,3,249.0000 ,40.81600 ,-85.41167,APRSWXNET , ,K9AS Markle IN US , +AS261,3,49.00000 ,41.71701 ,-71.08887,APRSWXNET , ,N1LTV-2 Fall River MA US , +AS262,3,262.1000 ,41.18567 ,-85.49067,APRSWXNET , ,WB9DLC Columbia City IN US , +AS263,3,30.00000 ,30.51350 ,-87.17600,APRSWXNET , ,W4NWF-3 Pensacola FL US , +AS264,3,50.00000 ,38.43117 ,-122.7917,APRSWXNET , ,KD6VUM Santa Rosa CA US , +AS265,3,158.0000 ,43.33033 ,-73.69467,APRSWXNET , ,K2RRT-3 Queensbury NY US , +AS267,3,365.2000 ,35.62020 ,-97.47030,APRSWXNET , ,KD5UWL Edmond OK US , +AS268,3,1100.300 ,34.76830 ,-112.0617,APRSWXNET , ,K7BUC Clarkdale AZ US , +AS269,3,328.0000 ,42.25300 ,-93.74167,APRSWXNET , ,KC0SXP Stanhope IA US , +AS271,3,202.0000 ,40.04600 ,-87.63433,APRSWXNET , ,N9UWE-5 Westville IL US , +AS272,3,139.0000 ,42.61833 ,-73.96633,APRSWXNET , ,WA3AFS Voorheesville NY US , +AS273,3,306.0000 ,40.32866 ,-94.02882,APRSWXNET , ,N0SWP-3 Bethany MO US , +AS275,3,117.0000 ,47.82609 ,-122.3379,APRSWXNET , ,N7NEI-4 Edmonds WA US , +AS276,3,353.0000 ,43.05900 ,-89.59533,APRSWXNET , ,N9DRW Middleton WI US , +AS277,3,231.6000 ,35.21567 ,-81.08033,APRSWXNET , ,KA4YMY Gastonia NC US , +AS278,3,650.0000 ,42.76883 ,1.751500 ,APRSWXNET , ,F6GZM-5 Luzenac FR , +AS279,3,71.60000 ,35.67967 ,-91.41033,APRSWXNET , ,KB5FNN Newark AR US , +AS281,3,500.0000 ,49.64050 ,11.22550 ,APRSWXNET , ,DL5NAM Guttenburg DE , +AS282,3,397.0000 ,47.24033 ,-93.59433,APRSWXNET , ,KB0BK Cohasset MN US , +AS283,3,100.7000 ,32.02300 ,-93.68867,APRSWXNET , ,AA5HY Mansfield LA US , +AS284,3,42.70000 ,41.75640 ,-72.74860,APRSWXNET , ,N1PSJ West Hartford CT US , +AS285,3,105.0000 ,49.96890 ,8.570060 ,APRSWXNET , ,DG3FBL Frankfurt DE , +AS288,3,210.3000 ,34.77800 ,-86.48883,APRSWXNET , ,KE4GMY Huntsville AL US , +AS289,3,6.100000 ,30.27450 ,-81.45667,APRSWXNET , ,K4GDX Jacksonville Beach FL US , +AS290,3,1589.000 ,40.41683 ,-109.4792,APRSWXNET , ,KB7QYH-1 Vernal UT US , +AS291,3,37.00000 ,28.19650 ,-81.78567,APRSWXNET , ,WC4PEM-9 Polk City FL US , +AS292,3,53.00000 ,28.25450 ,-81.65467,APRSWXNET , ,WC4PEM-14 Davenport FL US , +AS294,3,288.0000 ,39.27917 ,-80.95600,APRSWXNET , ,KD8AMN-5 Pennsboro WV US , +AS295,3,155.0000 ,52.23783 ,9.234830 ,APRSWXNET , ,DG3OBU Rehren/Auetal DE , +AS296,3,112.8000 ,35.93417 ,-78.92117,APRSWXNET , ,KF4YSO Durham NC US , +AS297,3,91.40000 ,40.80000 ,-73.61667,APRSWXNET , ,N2MEW East Hills NY US , +AS300,3,264.9000 ,41.37233 ,-85.05550,APRSWXNET , ,W9VKW Auburn IN US , +AS302,3,305.0000 ,38.80990 ,-94.26470,APRSWXNET , ,KC0SKY Pleasant Hill MO US , +AS303,3,1204.000 ,34.50033 ,-119.7212,APRSWXNET , ,K6TZ-11 La Cambre Peak CA US , +AS304,3,367.0000 ,33.59784 ,-112.1922,APRSWXNET , ,KC7FQC Phoenix AZ US , +AS305,3,603.0000 ,35.43350 ,-85.79167,APRSWXNET , ,N4HMB Altmont TN US , +AS307,3,70.00000 ,30.65417 ,-95.14867,APRSWXNET , ,WB5HZM Coldspring TX US , +AS309,3,325.0000 ,41.62500 ,-76.27417,APRSWXNET , ,W3GWM-1 Wyalusing PA US , +AS310,3,349.0000 ,40.72657 ,-82.79763,APRSWXNET , ,KA8UPW Galion OH US , +AS311,3,28.00000 ,30.08250 ,-95.14250,APRSWXNET , ,N5SRF Huffman TX US , +AS312,3,1341.100 ,43.67567 ,-116.0428,APRSWXNET , ,N9YT-9 Boise ID US , +AS313,3,109.7000 ,31.72500 ,-88.62000,APRSWXNET , ,KB5AAB-1 Waynesboro MS US , +AS315,3,947.0000 ,45.60450 ,11.02350 ,APRSWXNET , ,I3VZB-3 Verona IT , +AS316,3,181.0000 ,33.23550 ,-116.3678,APRSWXNET , ,KJ6NJ Borrego Springs CA US , +AS317,3,25.00000 ,32.98717 ,-80.19883,APRSWXNET , ,W4HNK-11 Summerville SC US , +AS318,3,84.00000 ,30.84846 ,-86.52680,APRSWXNET , ,W4RLR Crestview FL US , +AS319,3,1314.000 ,40.76650 ,-111.8878,APRSWXNET , ,K2NWS-1 Salt Lake City UT US , +AS320,3,76.20000 ,34.08050 ,-118.3378,APRSWXNET , ,N1CBS Los Angeles CA US , +AS322,3,14.00000 ,44.12500 ,8.254500 ,APRSWXNET , ,IW1PPB-3 Loano IT , +AS323,3,243.8000 ,39.65811 ,-78.81066,APRSWXNET , ,N3LJS LaVale MD US , +AS324,3,1181.000 ,34.81967 ,-111.9167,APRSWXNET , ,K7NRA Sedona AZ US , +AS325,3,113.0000 ,37.42000 ,-122.2488,APRSWXNET , ,N6TTO Woodside CA US , +AS326,3,1691.600 ,41.03950 ,-115.5683,APRSWXNET , ,N7NNV Coal Mine Canyon NV US , +AS327,3,327.0000 ,42.07320 ,-74.22436,APRSWXNET , ,N2NET Willow NY US , +AS329,3,300.0000 ,34.95700 ,-82.12700,APRSWXNET , ,NO4D Lyman SC US , +AS330,3,264.0000 ,35.12367 ,-85.11550,APRSWXNET , ,KG4GJX Harrison TN US , +AS331,3,216.0000 ,41.56750 ,-88.02367,APRSWXNET , ,KB9CRY Lockport IL US , +AS335,3,161.5000 ,33.89167 ,-117.7837,APRSWXNET , ,W0PE-3 Yorba Linda CA US , +AS336,3,128.9000 ,32.63233 ,-114.3805,APRSWXNET , ,W7SRC-1 Yuma Foothills AZ US , +AS337,3,244.0000 ,32.95283 ,-97.62600,APRSWXNET , ,K3LGM Springtown TX US , +AS338,3,134.0000 ,51.43783 ,7.545330 ,APRSWXNET , ,DF1VB-1 Dortmund DE , +AS339,3,962.6000 ,32.43200 ,-104.2537,APRSWXNET , ,KE5WLM Carlsbad NM US , +AS340,3,305.7000 ,45.00550 ,-93.51067,APRSWXNET , ,WA0FW-1 Plymouth MN US , +AS341,3,1713.000 ,35.12117 ,-106.5217,APRSWXNET , ,KC5TY Albuquerque NM US , +AS342,3,192.0000 ,43.74000 ,-87.72483,APRSWXNET , ,AB9FT-10 Sheboygan WI US , +AS345,3,275.0000 ,39.01100 ,-7.069330,APRSWXNET , ,CT1FZC-11 Badajoz ES , +AS346,3,27.00000 ,53.87283 ,9.884330 ,APRSWXNET , ,DD4OS Lentfoehrden DE , +AS347,3,20.10000 ,18.39000 ,-66.20550,APRSWXNET , ,KP4IA Toa Alta PR US , +AS348,3,213.5000 ,33.87967 ,-83.38167,APRSWXNET , ,K4GZX Watkinsville GA US , +AS349,3,30.00000 ,47.31333 ,-122.2188,APRSWXNET , ,KC7LWU Auburn WA US , +AS350,3,10.00000 ,26.30367 ,-80.13950,APRSWXNET , ,KA4EPS Deerfield Beach FL US , +AS351,3,865.0000 ,47.90050 ,8.146670 ,APRSWXNET , ,DG2GG Titisee-Neustadt DE , +AS352,3,139.0000 ,49.13775 ,8.124130 ,APRSWXNET , ,DL2IAN Rohrbach DE , +AS353,3,17.00000 ,43.53698 ,-5.625400,APRSWXNET , ,EA1QW Gijon ES , +AS354,3,82.00000 ,38.79050 ,0.039170 ,APRSWXNET , ,EA5DFV Alicante ES , +AS355,3,153.0000 ,51.10117 ,1.215170 ,APRSWXNET , ,G3OJZ Kent UK , +AS357,3,600.0000 ,32.34033 ,-111.3698,APRSWXNET , ,WA0RTO Marana AZ US , +AS359,3,253.0000 ,42.09150 ,-80.08100,APRSWXNET , ,N3YPS Erie PA US , +AS361,3,505.0000 ,46.26150 ,-89.71767,APRSWXNET , ,KC9AMX Marensico MI US , +AS363,3,887.0000 ,32.83583 ,-109.7513,APRSWXNET , ,KC7DT Thatcher AZ US , +AS364,3,89.90000 ,32.53083 ,-82.93783,APRSWXNET , ,KD4IEZ Dublin GA US , +AS365,3,119.0000 ,38.89550 ,-77.14450,APRSWXNET , ,AG4JW Arlington VA US , +AS366,3,90.00000 ,49.53717 ,8.378330 ,APRSWXNET , ,DB0FTH-6 Frankenthal DE , +AS367,3,245.0000 ,50.45300 ,7.985830 ,APRSWXNET , ,DK9PM Hundsangen DE , +AS368,3,323.0000 ,51.31233 ,7.387170 ,APRSWXNET , ,DL3DCW Ennepetal DE , +AS370,3,2.000000 ,28.06300 ,-16.73300,APRSWXNET , ,EA8AJC-9 Arona ES , +AS371,3,9.000000 ,52.71633 ,0.409500 ,APRSWXNET , ,G4RKN King's Lynn UK , +AS373,3,2012.000 ,46.36006 ,7.001070 ,APRSWXNET , ,HB9AS-8 La Berneuse CH , +AS374,3,436.0000 ,47.23817 ,8.734670 ,APRSWXNET , ,HB9MTL-8 Staefa CH , +AS375,3,18.00000 ,43.81700 ,10.68450 ,APRSWXNET , ,I5NOD Altopascio Lu IT , +AS376,3,75.00000 ,45.35717 ,9.685500 ,APRSWXNET , ,IK2CHZ Crema CR IT , +AS377,3,338.0000 ,45.71867 ,8.986170 ,APRSWXNET , ,IK2JYT-3 Bulgarograsso IT , +AS379,3,274.3000 ,46.82501 ,-96.79621,APRSWXNET , ,ND0DX Fargo ND US , +AS381,3,220.0000 ,48.45269 ,-89.20969,APRSWXNET , ,VA3ROM Thunder Bay ON CA , +AS382,3,100.0000 ,38.76267 ,-77.25783,APRSWXNET , ,KE4MLT Springfield VA US , +AS383,3,2.000000 ,27.53783 ,-82.48917,APRSWXNET , ,KI4FH Ellenton FL US , +AS384,3,85.00000 ,38.76467 ,-77.24417,APRSWXNET , ,K7BC Springfield VA US , +AS385,3,95.00000 ,35.09000 ,-89.79583,APRSWXNET , ,KI4PCT Germantown TN US , +AS386,3,20.10000 ,48.07917 ,-122.1467,APRSWXNET , ,WA7HYD Marysville WA US , +AS389,3,59.00000 ,35.83717 ,139.6615 ,APRSWXNET , ,JA1OGS Urawa-city JP , +AS390,3,6.000000 ,43.14767 ,141.2975 ,APRSWXNET , ,JA8DKJ Ishikari City JP , +AS391,3,43.00000 ,43.03050 ,141.3440 ,APRSWXNET , ,JA8EFI Chuo-Ku Sapporo JP , +AS392,3,12.00000 ,35.84450 ,139.8017 ,APRSWXNET , ,JH4XSY-1 Soka City JP , +AS393,3,22.00000 ,31.64700 ,130.5702 ,APRSWXNET , ,JA6NKA Kagoshima City JP , +AS394,3,801.6000 ,37.76600 ,-100.0345,APRSWXNET , ,K0SUN-14 Dodge City KS US , +AS395,3,283.0000 ,42.09187 ,-75.97728,APRSWXNET , ,K2DLB Vestal NY US , +AS396,3,37.00000 ,29.82967 ,-95.68417,APRSWXNET , ,K5CNN Houston TX US , +AS399,3,1453.000 ,39.60000 ,-119.7788,APRSWXNET , ,N7TGB Sun Valley NV US , +AS400,3,77.00000 ,51.85308 ,-8.289970,APRSWXNET , ,EI4HQ Cork IE , +AS401,3,729.0000 ,47.64179 ,10.03944 ,APRSWXNET , ,DL9GJ-4 Burgrieden DE , +AS402,3,312.0000 ,40.86583 ,-76.39967,APRSWXNET , ,K3BZG-3 Numidia PA US , +AS404,3,206.0000 ,42.20700 ,-72.19150,APRSWXNET , ,KB1JID Warren MA US , +AS405,3,134.1000 ,45.04933 ,-123.4947,APRSWXNET , ,KD7MPG-2 Sheridan OR US , +AS406,3,91.00000 ,30.79117 ,-95.90450,APRSWXNET , ,KD5HWU Bedias TX US , +AS407,3,9.000000 ,29.05933 ,-95.44683,APRSWXNET , ,N5KV-14 Lake Jackson TX US , +AS408,3,838.5000 ,32.17426 ,-110.8025,APRSWXNET , ,KB0BYV Tucson AZ US , +AS409,3,190.0000 ,52.97533 ,16.84883 ,APRSWXNET , ,SR3DGT Poznan PL , +AS410,3,85.00000 ,52.41300 ,16.89200 ,APRSWXNET , ,SR3WXA Poznan PL , +AS411,3,176.0000 ,51.37033 ,21.15033 ,APRSWXNET , ,SQ5DCP-1 Radom PL , +AS413,3,393.0000 ,-27.50217,152.5917 ,APRSWXNET , ,VK4RAI-3 Ipswich QLD AU , +AS414,3,2.000000 ,32.67217 ,-117.1710,APRSWXNET , ,W3NRG-1 Coronado CA US , +AS418,3,956.0000 ,40.92533 ,-121.6603,APRSWXNET , ,WD6FGE Burney CA US , +AS419,3,1832.000 ,38.77533 ,-119.5937,APRSWXNET , ,KB7PUX-1 Gardnerville NV US , +AS420,3,461.0000 ,45.93400 ,-90.46350,APRSWXNET , ,KB9VSQ-3 Park Falls WI US , +AS421,3,286.0000 ,44.73658 ,-93.43649,APRSWXNET , ,KB9ZI Prior Lake MN US , +AS422,3,212.0000 ,41.39667 ,-93.00117,APRSWXNET , ,KC0KDS-10 Lake Red Rock IA US , +AS424,3,176.0000 ,41.08932 ,-74.11264,APRSWXNET , ,KC2LLW Mahwah NJ US , +AS425,3,230.0000 ,30.35583 ,-97.71250,APRSWXNET , ,KC5MUJ-1 Austin TX US , +AS428,3,202.0000 ,38.85883 ,-86.50467,APRSWXNET , ,KC9AXB Bedford IN US , +AS429,3,205.0000 ,40.93917 ,-87.14567,APRSWXNET , ,KC9ENG-4 Rensselaer IN US , +AS430,3,192.0000 ,40.79367 ,-87.75467,APRSWXNET , ,KC9GNH Watseka IL US , +AS431,3,215.0000 ,36.05417 ,-79.47617,APRSWXNET , ,W4RSE Burlington NC US , +AS436,3,61.00000 ,45.54151 ,-123.1319,APRSWXNET , ,N7NKE Forest Grove OR US , +AS438,3,10.00000 ,14.62783 ,-61.10483,APRSWXNET , ,FM5BW Schoelcher FR , +AS439,3,117.0000 ,49.32383 ,-122.9578,APRSWXNET , ,VA7IS N.Vancouver BC CA , +AS440,3,31.00000 ,45.61267 ,-72.94867,APRSWXNET , ,VE2GAT St.Hyacinthe PQ CA , +AS441,3,193.0000 ,43.56217 ,-79.76550,APRSWXNET , ,VE3GOP Mississauga ON CA , +AS442,3,271.0000 ,42.93650 ,-81.24050,APRSWXNET , ,VE3TEJ London ON CA , +AS443,3,267.0000 ,49.67266 ,-96.58134,APRSWXNET , ,VE4VID Winnipeg MB CA , +AS444,3,10.00000 ,40.65717 ,-73.69183,APRSWXNET , ,W2DSX Valley Stream NY US , +AS446,3,23.00000 ,48.42050 ,-123.3277,APRSWXNET , ,VE7OVY-1 Victoria BC CA , +AS447,3,10.00000 ,-32.73133,151.9980 ,APRSWXNET , ,VK2CZZ Tanilba Bay NSW AU , +AS448,3,10.00000 ,-33.74450,151.2808 ,APRSWXNET , ,VK2HL Dee Why NSW AU , +AS449,3,141.0000 ,37.93167 ,23.74917 ,APRSWXNET , ,SV1DAY Athens GR , +AS450,3,98.00000 ,38.90100 ,22.43600 ,APRSWXNET , ,SV1EYY-2 Lamia GR , +AS451,3,351.0000 ,38.05517 ,23.84967 ,APRSWXNET , ,SV1LH-1 Melissia GR , +AS453,3,15.00000 ,40.69133 ,22.84717 ,APRSWXNET , ,SV2BZQ-2 Thessalonik GR , +AS454,3,721.0000 ,40.30183 ,21.78400 ,APRSWXNET , ,SV2ESB-2 Kozani GR , +AS455,3,1465.000 ,41.74693 ,-111.8002,APRSWXNET , ,WA7MXZ Logan UT US , +AS457,3,392.6000 ,33.64182 ,-112.4273,APRSWXNET , ,K7PB-1 Surprise AZ US , +AS458,3,568.0000 ,36.58700 ,-82.31333,APRSWXNET , ,KG4QWI Blountville TN US , +AS459,3,64.00000 ,37.35550 ,-122.0813,APRSWXNET , ,KG6PPD-8 Los Altos CA US , +AS460,3,45.10000 ,54.84425 ,-5.123010,APRSWXNET , ,GM4BES Portpatrick SCT UK , +AS461,3,210.0000 ,47.66725 ,-122.9286,APRSWXNET , ,OIDAR Pleasant Harbor WA US , +AS463,3,731.0000 ,45.33612 ,-120.7912,APRSWXNET , ,KB7CPC Grass Valley OR US , +AS464,3,320.0000 ,34.09433 ,-83.87450,APRSWXNET , ,K4HRG Buford GA US , +AS465,3,255.0000 ,42.42450 ,-83.88717,APRSWXNET , ,K8MZO Ann Arbor MI US , +AS466,3,159.0000 ,42.85417 ,-72.34250,APRSWXNET , ,KA1MTM Swanzey NH US , +AS467,3,13.00000 ,42.78739 ,11.10954 ,APRSWXNET , ,IZ5BYH Grosseto IT , +AS468,3,100.0000 ,60.15883 ,24.55017 ,APRSWXNET , ,OH2TH Parola FI , +AS469,3,137.2000 ,45.60683 ,-123.9350,APRSWXNET , ,ROCKWY Rockaway Beach OR US , +AS470,3,1124.000 ,39.33617 ,-101.7970,APRSWXNET , ,N5DBZ Goodland KS US , +AS471,3,249.0000 ,45.67467 ,9.219830 ,APRSWXNET , ,IK2CMN Verano Brianza IT , +AS472,3,335.0000 ,45.67659 ,-118.7814,APRSWXNET , ,AC7WN Pendleton OR US , +AS473,3,320.0000 ,39.75067 ,-94.34917,APRSWXNET , ,N0SWP-7 Osborn MO US , +AS474,3,63.00000 ,47.65210 ,-122.1222,APRSWXNET , ,W7YED Redmond WA US , +AS475,3,545.0000 ,46.97600 ,7.423830 ,APRSWXNET , ,HB9MCY-8 Bremgarten CH , +AS476,3,226.0000 ,40.07983 ,-88.29150,APRSWXNET , ,K9MLT Champaign IL US , +AS477,3,296.0000 ,34.76667 ,-82.59083,APRSWXNET , ,KS4XQ Easley SC US , +AS478,3,1328.000 ,32.38783 ,-106.7233,APRSWXNET , ,KC5VVK Las Cruces NM US , +AS480,3,40.00000 ,59.94333 ,17.38883 ,APRSWXNET , ,SM5EZN-5 Uppsala SE , +AS483,3,188.0000 ,39.29433 ,-84.77317,APRSWXNET , ,N8ASV Harrison OH US , +AS485,3,1961.000 ,39.23933 ,-111.0227,APRSWXNET , ,K7YI-4 Castledale UT US , +AS486,3,120.0912 ,37.73500 ,-89.20967,APRSWXNET , ,KC9JMW Carbondale IL US , +AS487,3,10.00000 ,38.72917 ,-76.20833,APRSWXNET , ,K3CB Royal Oak MD US , +AS488,3,469.5000 ,33.02133 ,-116.9402,APRSWXNET , ,NG6B Ramona CA US , +AS489,3,175.0000 ,38.80617 ,-85.80967,APRSWXNET , ,W9BS Crothersville IN US , +AS490,3,2164.100 ,40.73233 ,-111.5880,APRSWXNET , ,KC7GGQ-4 Park City UT US , +AS491,3,284.0000 ,30.46950 ,-97.98250,APRSWXNET , ,KE5CPD Lago Vista TX US , +AS492,3,89.20000 ,39.94667 ,-75.63667,APRSWXNET , ,K3JV-2 West Chester PA US , +AS493,3,93.90000 ,32.64633 ,-114.4000,APRSWXNET , ,KD7GXW Yuma AZ US , +AS494,3,71.00000 ,42.37633 ,-71.33783,APRSWXNET , ,W1EQX Wayland MA US , +AS495,3,54.00000 ,30.31140 ,-95.28127,APRSWXNET , ,W5KJE Cut And Shoot TX US , +AS497,3,449.0000 ,43.42167 ,-95.10283,APRSWXNET , ,KC0RIG Spirit Lake IA US , +AS498,3,244.0000 ,37.81867 ,-121.9083,APRSWXNET , ,W6SAS Blackhawk CA US , +AS499,3,10.00000 ,38.65000 ,-27.21667,APRSWXNET , ,CU3AA Heroismo PT , +AS500,3,1605.700 ,42.60738 ,-112.0335,APRSWXNET , ,K7FLY-9 Lava Hot Springs ID US , +AS501,3,30.00000 ,-34.88929,-56.13106,APRSWXNET , ,CX4AE-7 Montevideo UY , +AS502,3,434.0000 ,47.66500 ,9.448330 ,APRSWXNET , ,DK0TE Friedrichshafen DE , +AS503,3,17.40000 ,41.57870 ,-70.60150,APRSWXNET , ,KA1IOR E. Falmouth MA US , +AS504,3,50.00000 ,45.51417 ,-122.9818,APRSWXNET , ,KB7IVK Hillsboro OR US , +AS507,3,491.0000 ,45.67750 ,-89.54917,APRSWXNET , ,W9ZBD Rhinelander WI US , +AS509,3,793.0000 ,32.61688 ,-116.4693,APRSWXNET , ,KA6DAC-11 Campo CA US , +AS510,3,39.00000 ,30.51417 ,-87.22967,APRSWXNET , ,KI4FCY-4 Penscola FL US , +AS511,3,122.0000 ,43.04699 ,-76.15521,APRSWXNET , ,KC2APG Syracuse NY US , +AS512,3,39.00000 ,44.64167 ,-124.0560,APRSWXNET , ,WA7ZVY-4 Newport OR US , +AS513,3,2.000000 ,41.18767 ,-71.59267,APRSWXNET , ,K2LCA-14 Block Island RI US , +AS514,3,1980.000 ,39.36883 ,-119.6620,APRSWXNET , ,K5RC Virginia City NV US , +AS515,3,1748.000 ,41.12967 ,-104.5098,APRSWXNET , ,KA6VRW Carpenter WY US , +AS516,3,22.00000 ,49.69983 ,-123.1353,APRSWXNET , ,VE7OTD Squamish BC CA , +AS517,3,1333.500 ,34.89722 ,-118.6528,APRSWXNET , ,KD6CNX Rosamond CA US , +AS519,3,1451.500 ,41.04771 ,-111.9068,APRSWXNET , ,WB7TJI Fruit Heights UT US , +AS520,3,1711.500 ,34.57050 ,-112.5147,APRSWXNET , ,N7CW Prescott AZ US , +AS521,3,170.0000 ,36.85967 ,-87.51100,APRSWXNET , ,KG4CKR Hopkinsville KY US , +AS522,3,50.00000 ,45.25668 ,-122.6847,APRSWXNET , ,W7OBH Canby OR US , +AS523,3,1.000000 ,13.77867 ,100.5758 ,APRSWXNET , ,HS2WAQ Bangkok TH , +AS524,3,349.0000 ,34.08566 ,-117.6819,APRSWXNET , ,KG6KTC Ontario CA US , +AS527,3,306.0000 ,38.71700 ,-94.46250,APRSWXNET , ,N6TDM-4 Peculiar MO US , +AS528,3,323.0000 ,36.00017 ,-84.09533,APRSWXNET , ,KW1ND Knoxville TN US , +AS529,3,276.0000 ,29.46504 ,-98.67203,APRSWXNET , ,K5LEH San Antonio TX US , +AS530,3,101.0000 ,37.68017 ,-121.8888,APRSWXNET , ,KK6ZL Pleasanton CA US , +AS531,3,24.00000 ,44.34289 ,-124.0921,APRSWXNET , ,YACHTS Yachts OR US , +AS532,3,1021.100 ,41.06383 ,-121.4925,APRSWXNET , ,W6OLF Glenburn CA US , +AS533,3,1356.000 ,42.90383 ,-112.5887,APRSWXNET , ,KC7FFI Pocatello ID US , +AS534,3,23.50000 ,37.32850 ,-77.32683,APRSWXNET , ,KE4KLD Chester VA US , +AS535,3,295.7000 ,39.47417 ,-94.57583,APRSWXNET , ,WA5RRN-1 Trimble MO US , +AS536,3,92.00000 ,47.76833 ,-122.2870,APRSWXNET , ,WB7QAL Lake Forest Park WA US , +AS537,3,33.00000 ,54.57383 ,9.620000 ,APRSWXNET , ,DJ3LE Schleswig DE , +AS538,3,3.100000 ,37.92883 ,-121.2893,APRSWXNET , ,KD6NIG Stockton CA US , +AS539,3,2286.000 ,41.14700 ,-106.0020,APRSWXNET , ,WB7BKM Laramie WY US , +AS540,3,235.0000 ,-41.28067,174.7315 ,APRSWXNET , ,ZL2THM-5 Wellington NZ , +AS541,3,525.0000 ,36.55833 ,-82.15667,APRSWXNET , ,KF4MSV Bristol TN US , +AS542,3,530.0000 ,36.19450 ,-82.55300,APRSWXNET , ,K9RGI Telford TN US , +AS544,3,191.0000 ,37.53017 ,15.06317 ,APRSWXNET , ,IT9UCS Catania IT , +AS546,3,233.0000 ,33.37537 ,-96.55777,APRSWXNET , ,KE5FUH Anna TX US , +AS547,3,254.5000 ,34.87000 ,-86.72417,APRSWXNET , ,K4TD Harvest AL US , +AS549,3,30.00000 ,28.35085 ,-82.19033,APRSWXNET , ,KF4ORW-3 Dade City FL US , +AS551,3,30.00000 ,29.78167 ,-95.53167,APRSWXNET , ,KA5YYD Houston TX US , +AS552,3,236.0000 ,41.43383 ,-73.74233,APRSWXNET , ,WT4Q-15 Carmel NY US , +AS553,3,2230.800 ,37.18611 ,-106.9742,APRSWXNET , ,W7FXH Pagosa Springs CO US , +AS554,3,363.9000 ,34.62288 ,-97.97140,APRSWXNET , ,AC5AN Marlow OK US , +AS555,3,3.000000 ,26.01950 ,-80.19000,APRSWXNET , ,WD4CLZ Hollywood FL US , +AS556,3,388.0000 ,43.82241 ,-91.19201,APRSWXNET , ,WX9ARX La Crosse WI US , +AS557,3,1416.000 ,31.50228 ,-110.2604,APRSWXNET , ,N0NBH Sierra Vista AZ US , +AS558,3,52.00000 ,47.65717 ,-122.6545,APRSWXNET , ,N7NVP Silverdale WA US , +AS560,3,362.7000 ,38.66447 ,-80.73926,APRSWXNET , ,N5PCE Gassaway WV US , +AS561,3,269.0000 ,38.66200 ,-80.74750,APRSWXNET , ,WB8MZI Gassaway WV US , +AS562,3,3.000000 ,37.77550 ,-122.2655,APRSWXNET , ,W6CQZ-10 Alameda CA US , +AS563,3,2.000000 ,36.83295 ,-76.05434,APRSWXNET , ,W4ADI Virginia Beach VA US , +AS566,3,1379.000 ,39.63100 ,-119.7282,APRSWXNET , ,KE7FYF-5 Sparks NV US , +AS567,3,167.0000 ,54.62950 ,-2.490830,APRSWXNET , ,G7ITT Appleby-in-Westmorland UK , +AS569,3,228.6000 ,38.88619 ,-81.39500,APRSWXNET , ,KF4YYH-2 Reedy WV US , +AS570,3,6.700000 ,29.58667 ,-95.11000,APRSWXNET , ,KC7EHF Houston TX US , +AS571,3,101.0000 ,39.76190 ,-75.70991,APRSWXNET , ,KB3ONZ Hockessin DE US , +AS572,3,16.80000 ,39.38700 ,-75.07967,APRSWXNET , ,K2MFW Millville NJ US , +AS573,3,310.0000 ,39.37417 ,-94.20950,APRSWXNET , ,K0BSJ Excelsior Springs MO US , +AS574,3,12.00000 ,26.92833 ,-80.24300,APRSWXNET , ,W4JKJ-2 Jupiter FL US , +AS575,3,11.00000 ,44.84194 ,11.48987 ,APRSWXNET , ,IW0DEG Vigarano Mainarda IT , +AS576,3,193.9000 ,29.27260 ,-98.32420,APRSWXNET , ,N5VRP-3 San Antonio TX US , +AS577,3,195.0000 ,39.59087 ,-77.07314,APRSWXNET , ,K3YJP-4 Westminster MD US , +AS578,3,106.0000 ,41.70167 ,-71.87750,APRSWXNET , ,N1SXL-1 Moosup CT US , +AS579,3,50.00000 ,51.63933 ,-2.663330,APRSWXNET , ,GW7ERI Chepstow UK , +AS580,3,64.00000 ,41.39367 ,-71.81467,APRSWXNET , ,N1LMA Westerly RI US , +AS582,3,10.00000 ,41.32517 ,-71.99333,APRSWXNET , ,KB1CJP Noank CT US , +AS583,3,258.0000 ,34.29083 ,-87.70533,APRSWXNET , ,KG4PID-15 Bear Creek AL US , +AS584,3,98.00000 ,43.39519 ,-76.47179,APRSWXNET , ,KC2RCU Minetto NY US , +AS585,3,129.5000 ,31.43583 ,-85.66667,APRSWXNET , ,AA4BP Ozark AL US , +AS586,3,209.0000 ,38.86283 ,-86.48250,APRSWXNET , ,LCSD Bedford IN US , +AS587,3,2085.000 ,35.82100 ,-105.9152,APRSWXNET , ,K2SKR Santa Fe NM US , +AS588,3,164.0000 ,36.92133 ,-87.56633,APRSWXNET , ,KY4KEN Hopkinsville KY US , +AS589,3,216.4000 ,35.27133 ,-93.17317,APRSWXNET , ,N5OPT Russellville AR US , +AS590,3,16.00000 ,38.77217 ,-76.04550,APRSWXNET , ,WB3IGR Easton MD US , +AS591,3,40.20000 ,29.85112 ,-81.89426,APRSWXNET , ,KS4KP Keystone Heights FL US , +AS592,3,173.0000 ,43.26121 ,2.352450 ,APRSWXNET , ,F5YN-5 Carcassonne FR , +AS593,3,36.00000 ,34.60233 ,-78.82217,APRSWXNET , ,N4DBM-2 Bladenboro NC US , +AS594,3,25.00000 ,52.24750 ,-7.134670,APRSWXNET , ,EI2WRC Waterford IE , +AS595,3,551.0000 ,45.60983 ,8.055500 ,APRSWXNET , ,IK1ZXB Andorno Micca IT , +AS596,3,10.00000 ,-37.60367,149.7237 ,APRSWXNET , ,VK3VHF-6 Bairnsdale AU , +AS597,3,385.6000 ,36.64617 ,-93.43002,APRSWXNET , ,K0JGS Kimberling City MO US , +AS598,3,1899.000 ,34.21567 ,-117.1215,APRSWXNET , ,W0PE-4 Running Springs CA US , +AS599,3,180.0000 ,46.82250 ,-68.16750,APRSWXNET , ,KB1ELT Washburn ME US , +AS601,3,609.0000 ,41.42213 ,-76.49419,APRSWXNET , ,K3BM LaPorte PA US , +AS602,3,281.0000 ,41.62918 ,-93.53452,APRSWXNET , ,WL7CLI Des Moines IA US , +AS603,3,275.7000 ,44.89317 ,-93.37150,APRSWXNET , ,K0BEN Edina MN US , +AS605,3,250.0000 ,39.19450 ,-84.36583,APRSWXNET , ,K9JVA Cincinnati OH US , +AS606,3,365.0000 ,35.80667 ,-81.50617,APRSWXNET , ,KI4RPM Granite Falls NC US , +AS607,3,114.0000 ,48.16476 ,-122.2679,APRSWXNET , ,AC7SG Lake Goodwin WA US , +AS608,3,1535.600 ,38.38867 ,-104.6687,APRSWXNET , ,KB0DWT Pueblo West CO US , +AS609,3,600.5000 ,40.11533 ,-79.09667,APRSWXNET , ,K3DAD-1 Sipesville PA US , +AS611,3,367.0000 ,47.54867 ,-121.9397,APRSWXNET , ,K7MCR Issaquah WA US , +AS612,3,433.0000 ,45.46607 ,-123.9210,APRSWXNET , ,MEARES Cape Meares OR US , +AS614,3,228.0000 ,45.36127 ,-84.95110,APRSWXNET , ,KB5DPX Petoskey MI US , +AS615,3,188.0000 ,51.70250 ,19.47950 ,APRSWXNET , ,SR7WXC Lodz PL , +AS616,3,186.0000 ,51.54633 ,19.27617 ,APRSWXNET , ,SR7WXD Dlutow PL , +AS617,3,310.0000 ,39.87317 ,-84.20883,APRSWXNET , ,W8GUC Vandalia OH US , +AS618,3,226.0000 ,35.26033 ,-80.42250,APRSWXNET , ,W4DEX-2 Locust NC US , +AS619,3,440.0000 ,38.04175 ,-97.34559,APRSWXNET , ,KB0FRI Newton KS US , +AS620,3,22.90000 ,33.04200 ,-80.21033,APRSWXNET , ,KX4DOR-11 Summerville SC US , +AS621,3,431.0000 ,34.29932 ,-118.5124,APRSWXNET , ,K6TGT Granada Hills CA US , +AS622,3,486.0000 ,47.57550 ,-99.41683,APRSWXNET , ,WB0VHW-1 Cathay ND US , +AS623,3,139.0000 ,40.01617 ,-75.50583,APRSWXNET , ,W3JY-2 Malvern PA US , +AS624,3,1926.000 ,42.32004 ,-111.2897,APRSWXNET , ,KF6RAL-2 M Hill ID US , +AS625,3,1841.000 ,42.02417 ,-111.2550,APRSWXNET , ,KF6RAL-5 Chokecherry Hollow ID US , +AS626,3,130.0000 ,39.81717 ,-75.83313,APRSWXNET , ,K3WIL-2 West Chester PA US , +AS627,3,128.0000 ,39.97800 ,-75.63633,APRSWXNET , ,W3QA-2 West Chester PA US , +AS628,3,226.0000 ,47.19450 ,-121.9872,APRSWXNET , ,K9SCH Enumclaw WA US , +AS629,3,331.0000 ,33.52868 ,-112.3531,APRSWXNET , ,W7PLZ-3 Litchfield Park AZ US , +AS630,3,219.0000 ,32.94800 ,-97.20950,APRSWXNET , ,N5UWP-3 Keller TX US , +AS631,3,446.0000 ,50.27300 ,5.848830 ,APRSWXNET , ,ON7BE-5 Lierneux BE , +AS632,3,299.0000 ,37.75986 ,21.43793 ,APRSWXNET , ,SV3BEF-4 Korifi GR , +AS633,3,100.0000 ,62.45333 ,-114.4177,APRSWXNET , ,VE8WD-1 Yellowknife NT CA , +AS635,3,209.0000 ,-40.19897,176.1100 ,APRSWXNET , ,ZL1UBE Dannevirke NZ , +AS636,3,245.0000 ,39.34050 ,-84.30833,APRSWXNET , ,KA8MXN Mason OH US , +AS637,3,2274.000 ,34.62631 ,-108.5179,APRSWXNET , ,WS5N Fence Lake NM US , +AS638,3,51.00000 ,54.00059 ,-1.454450,APRSWXNET , ,G4KIV Knaresborough NYK UK , +AS640,3,90.00000 ,42.54583 ,-71.50450,APRSWXNET , ,N1JKL Littleton MA US , +AS641,3,105.0000 ,39.95111 ,-75.51046,APRSWXNET , ,W3JBS-2 Westtown PA US , +AS642,3,286.5000 ,33.94767 ,-84.84400,APRSWXNET , ,WD4LUQ Dallas GA US , +AS643,3,203.0000 ,38.20859 ,-86.11199,APRSWXNET , ,K9SET Corydon IN US , +AS644,3,184.0000 ,39.78517 ,-89.65333,APRSWXNET , ,AB9HN Springfield IL US , +AS647,3,930.0000 ,41.83667 ,1.537330 ,APRSWXNET , ,EA3DGI-1 Cardona ES , +AS648,3,439.0000 ,41.81150 ,1.407170 ,APRSWXNET , ,EB3EBM-1 Tora ES , +AS649,3,262.0000 ,39.02267 ,-94.29950,APRSWXNET , ,KC0PCQ Blue Springs MO US , +AS651,3,18.00000 ,28.65781 ,-81.28567,APRSWXNET , ,KE4LOJ Casselberry FL US , +AS652,3,92.00000 ,42.54833 ,-71.56083,APRSWXNET , ,KB1MTS Ayer MA US , +AS653,3,83.00000 ,51.41378 ,11.94521 ,APRSWXNET , ,DG1HVV-3 Oebles-Schlechtewitz DE , +AS654,3,201.0000 ,33.14725 ,-117.1316,APRSWXNET , ,KI6AOK San Marcos CA US , +AS655,3,74.00000 ,40.22500 ,-75.65450,APRSWXNET , ,KE3HG-2 Pottstown PA US , +AS656,3,528.2000 ,44.27683 ,-96.12983,APRSWXNET , ,KB0NLY-3 Tyler MN US , +AS657,3,3.000000 ,27.12132 ,-80.19619,APRSWXNET , ,WA7OBH Stuart FL US , +AS659,3,31.00000 ,28.66433 ,-81.35900,APRSWXNET , ,N4APD-1 Altamonte Springs FL US , +AS660,3,716.3000 ,37.27783 ,-80.43250,APRSWXNET , ,N3AO-2 Blacksburg VA US , +AS661,3,751.0000 ,34.77700 ,-118.2775,APRSWXNET , ,WW6RY Lancaster CA US , +AS663,3,152.4000 ,41.84133 ,-72.09717,APRSWXNET , ,KB1JDX Eastford CT US , +AS664,3,213.4000 ,41.76750 ,-86.17283,APRSWXNET , ,KD8FWV Niles MI US , +AS666,3,109.0000 ,42.57378 ,-71.44859,APRSWXNET , ,W1APS Westford MA US , +AS667,3,50.00000 ,48.82683 ,2.328830 ,APRSWXNET , ,F1BIV-3 Paris FR , +AS669,3,100.0000 ,52.62033 ,18.05200 ,APRSWXNET , ,SQ2FRG-1 Kwieciszewo PL , +AS670,3,100.0000 ,40.30283 ,21.79017 ,APRSWXNET , ,SV2CPH-2 Triantafilidi GR , +AS671,3,53.00000 ,49.25193 ,-124.7892,APRSWXNET , ,VA7NIC-10 Port Alberni BC CA , +AS672,3,98.00000 ,43.21934 ,-79.15098,APRSWXNET , ,VE3XO Niagara-on-the-Lake ON CA , +AS673,3,6.000000 ,27.77833 ,-82.41383,APRSWXNET , ,N3FU Apollo Beach FL US , +AS674,3,193.5000 ,43.52067 ,-84.11217,APRSWXNET , ,N8XD Freeland MI US , +AS675,3,570.0000 ,-37.47917,144.4717 ,APRSWXNET , ,VK3XIL-1 Bullengarook VIC AU , +AS676,3,74.00000 ,30.02450 ,-95.93250,APRSWXNET , ,KE5LRL Waller TX US , +AS677,3,292.0000 ,36.47521 ,-97.42169,APRSWXNET , ,W5YDW Billings OK US , +AS678,3,228.0000 ,33.40050 ,-117.2453,APRSWXNET , ,K6DLV-2 Fallbrook CA US , +AS679,3,1458.800 ,39.43100 ,-119.8043,APRSWXNET , ,WA7ITP Reno NV US , +AS680,3,164.0000 ,40.00833 ,-75.62250,APRSWXNET , ,WA3NOA-2 W.Whiteland Tnsp PA US , +AS683,3,3.000000 ,30.37217 ,-87.82900,APRSWXNET , ,WA4VSH-3 Magnolia Springs AL US , +AS685,3,10.00000 ,32.86250 ,-17.18783,APRSWXNET , ,CT3FQ-9 Madeira Is. PT , +AS686,3,609.0000 ,45.73455 ,7.290720 ,APRSWXNET , ,IX1ESM Aosta IT , +AS687,3,177.0000 ,53.44117 ,-1.933330,APRSWXNET , ,G4TJC Glossop UK , +AS688,3,31.00000 ,37.24167 ,-77.43333,APRSWXNET , ,KI4BWJ-11 Petersburg VA US , +AS690,3,33.00000 ,40.39583 ,-74.20867,APRSWXNET , ,K2DLS Aberdeen NJ US , +AS691,3,148.0000 ,39.98333 ,-75.62583,APRSWXNET , ,W3AHL-2 West Chester PA US , +AS692,3,890.0000 ,38.25600 ,-100.8868,APRSWXNET , ,N0YK Scott City KS US , +AS693,3,12.00000 ,38.90967 ,-76.51883,APRSWXNET , ,N3UJJ-1 Edgewater MD US , +AS694,3,76.20000 ,37.60117 ,-77.57667,APRSWXNET , ,N4DWK Richmond VA US , +AS695,3,110.0000 ,35.73667 ,139.4012 ,APRSWXNET , ,JF1AJE-1 Tokyo JP , +AS696,3,10.00000 ,-32.77050,152.1133 ,APRSWXNET , ,VK2GWK Port Stephens NSW AU , +AS697,3,389.0000 ,44.02450 ,-92.70817,APRSWXNET , ,N0FDH-1 Kasson MN US , +AS698,3,363.0000 ,33.37283 ,-111.9160,APRSWXNET , ,NU7B Tempe AZ US , +AS699,3,1596.850 ,34.10300 ,-110.9933,APRSWXNET , ,KC7KGF Young AZ US , +AS700,3,1005.000 ,36.36472 ,-81.50861,APRSWXNET , ,W4MLN-2 West Jefferson NC US , +AS701,3,883.0000 ,36.41083 ,-81.49617,APRSWXNET , ,W4MLN-3 West Jefferson NC US , +AS702,3,1783.000 ,38.08567 ,-117.2518,APRSWXNET , ,KE7GDS Tonopah NV US , +AS703,3,2072.640 ,39.30217 ,-104.6887,APRSWXNET , ,KC0D-6 Franktown CO US , +AS704,3,31.00000 ,40.82959 ,-72.97536,APRSWXNET , ,N2ZUL Medford NY US , +AS707,3,48.00000 ,45.34867 ,-73.30283,APRSWXNET , ,VA2DG St-Jean-sur-Richelieu PQ CA , +AS709,3,870.0000 ,-25.43917,-49.27383,APRSWXNET , ,PY5CAM-1 Curitiba BR , +AS710,3,95.00000 ,43.22157 ,5.534160 ,APRSWXNET , ,F2FT Cassis FR , +AS712,3,126.5000 ,47.35266 ,-122.1712,APRSWXNET , ,KC7GR Kent WA US , +AS713,3,132.6000 ,39.76617 ,-75.94033,APRSWXNET , ,N3TR-2 Oxford PA US , +AS714,3,143.0000 ,34.40567 ,-119.7152,APRSWXNET , ,K6TZ-10 Santa Barbra CA US , +AS715,3,334.0000 ,34.38633 ,-84.07117,APRSWXNET , ,KJ4P Dawsonville GA US , +AS716,3,1175.000 ,44.98860 ,-105.2017,APRSWXNET , ,K7WIZ Weston WY US , +AS717,3,428.0000 ,34.41800 ,-84.11417,APRSWXNET , ,WX4ZZ Dawsonville GA US , +AS719,3,1822.000 ,42.32013 ,-111.3009,APRSWXNET , ,AE7RS Montpelier ID US , +AS720,3,36.00000 ,30.14943 ,-82.78381,APRSWXNET , ,KI4ZBO Lake City FL US , +AS721,3,127.0000 ,39.73333 ,-75.79633,APRSWXNET , ,K5HAL-2 Landenberg PA US , +AS722,3,156.0000 ,48.69217 ,2.146000 ,APRSWXNET , ,F6CNB-5 Paris FR , +AS725,3,24.00000 ,38.32930 ,-122.3188,APRSWXNET , ,AA6AV-10 Napa CA US , +AS726,3,354.0000 ,47.03940 ,15.40220 ,APRSWXNET , ,OE6CUD Graz AT , +AS727,3,370.0000 ,41.91950 ,-80.22367,APRSWXNET , ,N3EOY-3 Franklin Center PA US , +AS728,3,1630.000 ,38.19483 ,-120.0165,APRSWXNET , ,KG6QPT Pinecrest CA US , +AS730,3,214.9000 ,34.76083 ,-86.77700,APRSWXNET , ,N8WJE Madison AL US , +AS731,3,444.0000 ,47.98117 ,-98.72433,APRSWXNET , ,WB0VHW-8 Warwick ND US , +AS732,3,806.0000 ,35.97325 ,-115.0802,APRSWXNET , ,W7MFA Henderson NV US , +AS733,3,170.0000 ,47.50367 ,-122.1408,APRSWXNET , ,AC7NM-1 Renton WA US , +AS734,3,228.0000 ,40.03000 ,-75.67467,APRSWXNET , ,W3AHR-2 Dowingtown PA US , +AS735,3,390.0000 ,34.17600 ,-115.7842,APRSWXNET , ,KE6TV Twentynine Palms CA US , +AS736,3,343.0000 ,41.16216 ,-81.27758,APRSWXNET , ,KB8TUY Ravenna OH US , +AS737,3,318.0000 ,39.89502 ,-83.45273,APRSWXNET , ,N8MNI London OH US , +AS738,3,277.4000 ,45.17133 ,-93.29033,APRSWXNET , ,KA0QOK Coon Rapids MN US , +AS740,3,412.0000 ,34.45551 ,-83.86178,APRSWXNET , ,AB4GS Murrayville GA US , +AS741,3,153.0000 ,46.21750 ,-119.2375,APRSWXNET , ,AD7CQ Kennewick WA US , +AS742,3,108.0000 ,34.14939 ,-80.91630,APRSWXNET , ,AE4BP-4 Columbia SC US , +AS743,3,25.00000 ,40.34133 ,-8.588330,APRSWXNET , ,CT2JAY-11 Buarcos PT , +AS744,3,23.00000 ,47.65053 ,-122.3215,APRSWXNET , ,K6TKU Seattle WA US , +AS746,3,100.0000 ,48.08450 ,-93.23367,APRSWXNET , ,KB2TYG Nett Lake MN US , +AS748,3,200.0000 ,21.44452 ,-158.0243,APRSWXNET , ,KH6DAD Mililani HI US , +AS749,3,22.00000 ,29.16183 ,-82.18000,APRSWXNET , ,K4OZS-11 Ocala FL US , +AS750,3,249.0000 ,45.28753 ,-69.49172,APRSWXNET , ,KC1AU Monson ME US , +AS751,3,101.0000 ,32.98417 ,-117.1787,APRSWXNET , ,KA6IQA Rancho Santa Fe CA US , +AS752,3,137.2000 ,43.12750 ,-72.45200,APRSWXNET , ,N1HOS Bellows Falls VT US , +AS753,3,450.0000 ,48.03507 ,-123.1853,APRSWXNET , ,KI7ZC Sequim WA US , +AS754,3,12.00000 ,35.58267 ,139.6723 ,APRSWXNET , ,7N4TWL-12 Tokyo JP , +AS755,3,331.0000 ,39.86580 ,-95.52739,APRSWXNET , ,W0MSC Hiawatha KS US , +AS756,3,62.00000 ,50.40706 ,-4.189940,APRSWXNET , ,G3YJQ Plymouth Devon UK , +AS757,3,100.0000 ,52.22083 ,1.488830 ,APRSWXNET , ,G4ZJH Beaminster UK , +AS759,3,9.000000 ,28.06080 ,-82.81600,APRSWXNET , ,K7CSO Dunedin FL US , +AS761,3,307.8000 ,39.08024 ,-94.40483,APRSWXNET , ,KA0SOD Independence MO US , +AS762,3,205.7000 ,41.54802 ,-72.96317,APRSWXNET , ,W1HSR Waterbury CT US , +AS764,3,2072.600 ,40.09011 ,-111.8220,APRSWXNET , ,WA7FFM-3 West Mountain UT US , +AS765,3,93.00000 ,34.22300 ,-80.71250,APRSWXNET , ,N2XD Lugoff SC US , +AS766,3,198.0000 ,41.71867 ,-88.34217,APRSWXNET , ,AG9D Montgomery IL US , +AS767,3,274.3000 ,46.86550 ,-88.64783,APRSWXNET , ,W8KQB Pelkie MI US , +AS768,3,1282.000 ,40.73380 ,-112.2109,APRSWXNET , ,KF6RAL-6 Great Salt Lake Marina UT US , +AS769,3,2180.000 ,33.39367 ,-105.6455,APRSWXNET , ,KE5QGG Alto NM US , +AS770,3,63.00000 ,52.93533 ,-1.436500,APRSWXNET , ,G7NPW Chaddesden; Derby UK , +AS771,3,21.00000 ,40.40633 ,-74.10967,APRSWXNET , ,KC2QPO Middletown NJ US , +AS772,3,320.0000 ,39.27750 ,-94.66350,APRSWXNET , ,KC0NWS Kansas City MO US , +AS773,3,1862.300 ,45.86304 ,-116.1227,APRSWXNET , ,KC7MGR High Camp ID US , +AS774,3,280.0000 ,34.18267 ,-84.77667,APRSWXNET , ,K4TQL Cartersville GA US , +AS775,3,82.00000 ,18.35869 ,-66.02778,APRSWXNET , ,KP4LA Trujillo Alto PR US , +AS776,3,737.0000 ,34.86867 ,-118.2092,APRSWXNET , ,KK6KU Rosamond CA US , +AS777,3,58.00000 ,40.78897 ,-73.50640,APRSWXNET , ,K2YYD Syosset NY US , +AS778,3,137.2000 ,40.01107 ,-75.44222,APRSWXNET , ,W3HOA-2 Berwyn PA US , +AS779,3,335.0000 ,41.68833 ,-93.96717,APRSWXNET , ,KB0JUL Dallas Center IA US , +AS780,3,30.00000 ,45.52050 ,-73.80083,APRSWXNET , ,VE2DX Laval PQ CA , +AS782,3,64.60000 ,48.04076 ,-122.2535,APRSWXNET , ,KB7HFS Tulalip WA US , +AS783,3,73.00000 ,42.84450 ,-71.20533,APRSWXNET , ,K1KKY Mystery Hill NH US , +AS784,3,280.0000 ,39.13550 ,-82.32217,APRSWXNET , ,KD8DJE-1 Albany OH US , +AS786,3,237.0000 ,40.78158 ,-85.84152,APRSWXNET , ,N9UAX Wabash IN US , +AS787,3,97.00000 ,39.15224 ,-77.26788,APRSWXNET , ,KB3HHA Germantown MD US , +AS789,3,324.0000 ,34.09914 ,-117.7636,APRSWXNET , ,W6SZE-9 La Verne CA US , +AS790,3,66.00000 ,38.65800 ,-121.2655,APRSWXNET , ,N6OIM Fair Oaks CA US , +AS791,3,190.0000 ,39.99588 ,-75.85418,APRSWXNET , ,KB3MJD-2 Coatesville PA US , +AS792,3,131.0000 ,42.24117 ,-71.65800,APRSWXNET , ,W1REH North Grafton MA US , +AS793,3,40.00000 ,36.72917 ,-121.6317,APRSWXNET , ,WB6YAM Salinas CA US , +AS794,3,582.8000 ,31.46034 ,-100.4771,APRSWXNET , ,KD5HIA San Angelo TX US , +AS795,3,331.0000 ,40.37850 ,-80.07917,APRSWXNET , ,NU3S-7 Pittsburgh PA US , +AS796,3,990.0000 ,14.08131 ,-87.19919,APRSWXNET , ,HR1CP Tegucigalpa HN , +AS797,3,70.00000 ,32.43617 ,-88.36917,APRSWXNET , ,KI4ETO Cuba AL US , +AS798,3,40.00000 ,45.24316 ,-73.80553,APRSWXNET , ,VE2GVB Ste-Martine PQ CA , +AS799,3,63.00000 ,37.75287 ,-77.48421,APRSWXNET , ,N4MRV-1 Ashland VA US , +AS801,3,2399.000 ,32.44270 ,-110.7614,APRSWXNET , ,KI7WV Summerhaven AZ US , +AS802,3,1109.500 ,32.73983 ,-103.1538,APRSWXNET , ,KM5BS Hobbs NM US , +AS803,3,1872.000 ,33.02917 ,-108.1703,APRSWXNET , ,KC6WFU-5 Silver City NM US , +AS804,3,288.0000 ,35.04873 ,-86.98240,APRSWXNET , ,KD7YEE-7 Prospect TN US , +AS805,3,120.0000 ,22.28417 ,70.76833 ,APRSWXNET , ,VU2FD Rajkot IN , +AS806,3,296.0000 ,46.38250 ,-120.7317,APRSWXNET , ,KA7IJU White Swan WA US , +AS807,3,2002.500 ,34.26250 ,-110.1770,APRSWXNET , ,NA6NA Show Low AZ US , +AS808,3,254.2000 ,34.94750 ,-86.47333,APRSWXNET , ,K4BHH New Market AL US , +AS809,3,19.80000 ,46.07417 ,-123.9283,APRSWXNET , ,WA7RCQ Surf Pines OR US , +AS810,3,395.0000 ,37.77283 ,-83.63050,APRSWXNET , ,K4BHR-4 Pine Ridge KY US , +AS811,3,853.0000 ,35.98333 ,-82.11667,APRSWXNET , ,KC4TVO Bakersville NC US , +AS812,3,174.0000 ,33.90083 ,-86.72750,APRSWXNET , ,AE4TX Hayden AL US , +AS813,3,81.00000 ,59.56600 ,10.74483 ,APRSWXNET , ,LA5HJA Vestby NO , +AS814,3,166.0000 ,35.22514 ,-94.25097,APRSWXNET , ,K5KEE Greenwood AR US , +AS816,3,13.00000 ,26.57450 ,-80.07800,APRSWXNET , ,K9EE Lantana FL US , +AS817,3,98.00000 ,42.62615 ,-71.65756,APRSWXNET , ,K9MR Shirley MA US , +AS818,3,2.000000 ,33.76133 ,-118.1868,APRSWXNET , ,K6SYC Long Beach CA US , +AS819,3,342.0000 ,41.16295 ,-95.95438,APRSWXNET , ,W0TVS Bellevue NE US , +AS820,3,177.4000 ,35.86300 ,-86.48417,APRSWXNET , ,KC4VQU Murfreeboro TN US , +AS821,3,370.0000 ,50.34900 ,11.18117 ,APRSWXNET , ,DL5ARK Sonneberg DE , +AS822,3,8.000000 ,45.45557 ,-123.8527,APRSWXNET , ,WX7EM Tillamook OR US , +AS823,3,48.00000 ,29.99333 ,-95.58717,APRSWXNET , ,KA5FVT Houston TX US , +AS824,3,156.0000 ,38.78133 ,-90.58550,APRSWXNET , ,WS0Z Saint Peters MO US , +AS825,3,245.0000 ,34.22417 ,-84.87433,APRSWXNET , ,AJ4FJ-3 Cartersville GA US , +AS826,3,1392.000 ,35.17237 ,-118.6093,APRSWXNET , ,KB6PRZ Tehachapi CA US , +AS827,3,53.00000 ,52.47717 ,13.32167 ,APRSWXNET , ,DK0RBY Berlin DE , +AS829,3,126.0000 ,30.87033 ,-96.97417,APRSWXNET , ,KA5AIE Cameron TX US , +AS830,3,1248.200 ,48.09547 ,-114.6429,APRSWXNET , ,KA7AUV Marion MT US , +AS831,3,168.0000 ,44.34783 ,-77.78100,APRSWXNET , ,VE3KHV Campbellford ON CA , +AS832,3,970.0000 ,37.16017 ,-121.9082,APRSWXNET , ,N0ARY-12 Tomita Hill CA US , +AS833,3,768.0000 ,37.49967 ,-121.8720,APRSWXNET , ,N0ARY-13 Mt Allison CA US , +AS834,3,222.0000 ,37.38767 ,-122.2048,APRSWXNET , ,N0ARY-14 Portola Valley CA US , +AS835,3,31.00000 ,37.36150 ,-122.0150,APRSWXNET , ,N0ARY-15 Sunnyvale CA US , +AS836,3,427.0000 ,49.84700 ,-119.5590,APRSWXNET , ,VE7THZ Westbank/Kelowna BC CA , +AS837,3,139.0000 ,38.73882 ,-9.288890,APRSWXNET , ,CT1OY Oeiras PT , +AS838,3,10.70000 ,41.26700 ,-70.10917,APRSWXNET , ,W1ACK Nantucket MA US , +AS839,3,131.1000 ,21.29467 ,-157.7047,APRSWXNET , ,AH6IX Honolulu HI US , +AS840,3,15.00000 ,54.78000 ,11.49867 ,APRSWXNET , ,OZ1DSY Maribo DK , +AS841,3,592.0000 ,49.51167 ,-117.2917,APRSWXNET , ,VE7BVT-1 Nelson BC CA , +AS842,3,110.0000 ,44.23567 ,-77.41567,APRSWXNET , ,VE3MHZ Belleville ON CA , +AS843,3,324.0000 ,33.96050 ,-84.64800,APRSWXNET , ,WA7QED Kennesaw GA US , +AS844,3,3.000000 ,38.74133 ,-76.17967,APRSWXNET , ,N5LKJ Royal Oak MD US , +AS845,3,58.20000 ,34.70133 ,-79.92500,APRSWXNET , ,KE4QPN Cheraw SC US , +AS846,3,102.0000 ,36.78550 ,-121.6452,APRSWXNET , ,WB9VXY Prunedale CA US , +AS847,3,157.0000 ,49.13967 ,8.058830 ,APRSWXNET , ,DL3BAA-6 Heuchelheim DE , +AS848,3,26.80000 ,29.84463 ,-95.49915,APRSWXNET , ,K5PNV-2 Houston TX US , +AS849,3,254.5000 ,40.07071 ,-93.61127,APRSWXNET , ,KB0RPJ Trenton MO US , +AS850,3,960.0000 ,45.77933 ,-108.5293,APRSWXNET , ,N7VR-2 Billings MT US , +AS851,3,27.00000 ,41.34783 ,-71.81883,APRSWXNET , ,KB1MAO Westerly RI US , +AS852,3,524.0000 ,40.61160 ,23.09490 ,APRSWXNET , ,SV0XAW Hortiatis GR , +AS853,3,123.0000 ,39.96200 ,-75.50667,APRSWXNET , ,W3JEF-2 West Chester PA US , +AS854,3,292.6000 ,41.89100 ,-73.03500,APRSWXNET , ,N1ZLE Barkhamsted CT US , +AS855,3,1652.000 ,40.00817 ,-111.6763,APRSWXNET , ,N7ZDS Elk Ridge UT US , +AS856,3,760.0000 ,39.21933 ,-121.0700,APRSWXNET , ,WA3ELA Grass Valley CA US , +AS857,3,1676.000 ,34.57367 ,-112.4680,APRSWXNET , ,KD6DUR Prescott AZ US , +AS858,3,7.000000 ,41.34467 ,-72.13650,APRSWXNET , ,W1HAF-2 Waterford EOC CT US , +AS859,3,1326.000 ,43.84217 ,-115.8127,APRSWXNET , ,KD7UIU Idaho City ID US , +AS860,3,239.9000 ,40.85150 ,-84.48033,APRSWXNET , ,N1ICS Van Wert OH US , +AS861,3,97.50000 ,32.84917 ,-117.2082,APRSWXNET , ,K6SKM San Diego CA US , +AS862,3,173.0000 ,32.71855 ,-86.18487,APRSWXNET , ,K4GDW Wetumpka AL US , +AS863,3,96.00000 ,-33.72585,151.2919 ,APRSWXNET , ,VK2TMF Sydney AU , +AS864,3,67.00000 ,45.49200 ,-122.5125,APRSWXNET , ,N4AEN Portland OR US , +AS865,3,238.0000 ,41.32823 ,-81.60216,APRSWXNET , ,KB8QHJ Brecksville OH US , +AS868,3,426.7000 ,40.56667 ,-78.41667,APRSWXNET , ,KB3FMK Altoona PA US , +AS869,3,655.3000 ,39.99395 ,-79.09211,APRSWXNET , ,NN3A-3 Somerset PA US , +AS870,3,10.00000 ,30.50367 ,-90.09950,APRSWXNET , ,W5VQG Covington LA US , +AS871,3,382.0000 ,35.10375 ,-98.31854,APRSWXNET , ,KD5SZ Anadarko OK US , +AS872,3,140.0000 ,32.64900 ,-83.65567,APRSWXNET , ,WA4ORT Warner Robins GA US , +AS873,3,177.4000 ,35.94740 ,-86.54141,APRSWXNET , ,KF4KFQ Smyrna TN US , +AS874,3,122.0000 ,39.28349 ,-76.85344,APRSWXNET , ,N3BDS Ellicott City MD US , +AS875,3,7.000000 ,43.70835 ,10.45831 ,APRSWXNET , ,IW5AKT-5 Musigliano PI IT , +AS876,3,85.30000 ,31.25461 ,-86.27958,APRSWXNET , ,KI4LFI Opp AL US , +AS877,3,1161.300 ,35.71450 ,-114.3738,APRSWXNET , ,K7AC-13 White Hills AZ US , +AS878,3,275.0000 ,38.58333 ,-93.68333,APRSWXNET , ,KC0VXM Leeton MO US , +AS879,3,227.1000 ,39.96283 ,-86.97050,APRSWXNET , ,KA8MAV Lake Holiday IN US , +AS880,3,250.0000 ,51.75450 ,-2.143000,APRSWXNET , ,G6PKG Bisley Stroud UK , +AS881,3,472.4000 ,45.68117 ,-118.5813,APRSWXNET , ,WB7CYS Pendleton OR US , +AS882,3,449.0000 ,33.64556 ,-112.0070,APRSWXNET , ,W7JKG Phoenix AZ US , +AS883,3,49.00000 ,42.66883 ,-73.79783,APRSWXNET , ,N2QDK-3 Albany NY US , +AS884,3,347.1000 ,42.70355 ,-72.19033,APRSWXNET , ,KB1QCF Royalston MA US , +AS885,3,696.0000 ,31.83833 ,-100.9828,APRSWXNET , ,N5FTL Sterling City TX US , +AS886,3,197.5000 ,43.05200 ,-77.59117,APRSWXNET , ,KC2HTM Henrietta NY US , +AS887,3,603.5000 ,33.84783 ,-113.5703,APRSWXNET , ,KC9KZ-1 Wenden AZ US , +AS888,3,212.0000 ,40.18550 ,-88.39871,APRSWXNET , ,W9LLC Mahomet IL US , +AS889,3,695.0000 ,47.84283 ,-116.8693,APRSWXNET , ,NO7E Rathdrum ID US , +as890,3,24.00000 ,-34.78434,-58.20102,APRSWXNET , ,LW4DBE Ranelagh AR , +AS891,3,10.00000 ,37.75050 ,-122.5078,APRSWXNET , ,KI6BSW San Francisco CA US , +AS892,3,85.60000 ,31.73167 ,-89.12817,APRSWXNET , ,WV5V-1 Laurel MS US , +AS893,3,239.0000 ,44.32102 ,-88.92867,APRSWXNET , ,W9SBU Weyauwega WI US , +AS894,3,605.0000 ,-37.09503,145.3912 ,APRSWXNET , ,VK3BZA Highlands AU , +AS895,3,734.6000 ,34.84950 ,-118.2642,APRSWXNET , ,KC0IGH Rosamond CA US , +AS896,3,39.00000 ,28.06750 ,-82.21167,APRSWXNET , ,KI4FTM Tampa FL US , +AS897,3,180.0000 ,40.04117 ,-75.78083,APRSWXNET , ,K3JSE-2 Downingtown PA US , +AS898,3,257.0000 ,43.18371 ,-82.86205,APRSWXNET , ,KD8HZC Melvin MI US , +AS899,3,43.70000 ,34.44002 ,-119.8869,APRSWXNET , ,WB6KDH Goleta CA US , +AS900,3,298.0000 ,39.88286 ,-84.13342,APRSWXNET , ,N7SXG Huber Heights OH US , +AS901,3,44.00000 ,27.98500 ,-82.02450,APRSWXNET , ,KI4EFL-2 Lakeland FL US , +AS902,3,6.000000 ,38.77906 ,-75.16325,APRSWXNET , ,WB3CVN-3 Lewes DE US , +AS903,3,350.0000 ,34.43141 ,-118.4095,APRSWXNET , ,W6NR Canyon Country CA US , +AS904,3,406.0000 ,37.18333 ,-92.55200,APRSWXNET , ,K5HEZ Mansfield MO US , +AS905,3,1154.000 ,39.22667 ,-101.8010,APRSWXNET , ,KC0KOP-1 Goodland KS US , +AS906,3,81.00000 ,42.90426 ,-71.55750,APRSWXNET , ,W1WSQ Bedford NH US , +AS907,3,27.50000 ,38.71667 ,-77.20133,APRSWXNET , ,W4ABQ Lorton VA US , +AS909,3,35.00000 ,40.09233 ,-74.21483,APRSWXNET , ,N2ZRC-2 Lakewood NJ US , +AS910,3,267.5000 ,41.28851 ,-81.89452,APRSWXNET , ,KA1QHH Columbia Station OH US , +AS912,3,141.0000 ,43.15033 ,-77.49033,APRSWXNET , ,W2ER Penfield NY US , +AS913,3,61.00000 ,46.89383 ,-122.9503,APRSWXNET , ,K7VOX Tenino WA US , +AS915,3,14.00000 ,-41.50317,173.9423 ,APRSWXNET , ,ZL2TZE-1 Blenheim NZ , +AS916,3,5.000000 ,30.02800 ,-90.05650,APRSWXNET , ,WB5CCO New Orleans LA US , +AS917,3,11.00000 ,28.81667 ,-96.95000,APRSWXNET , ,KD5PMU Victoria TX US , +AS918,3,67.10000 ,42.71450 ,-71.48617,APRSWXNET , ,K1ABC Nashua NH US , +AS919,3,902.0000 ,36.40000 ,-100.8000,APRSWXNET , ,AB5NS Perryton TX US , +AS921,3,2026.000 ,39.36987 ,-104.8199,APRSWXNET , ,NQ0R Castle Rock CO US , +AS922,3,386.0000 ,40.44633 ,-79.59167,APRSWXNET , ,N3YDF Export PA US , +AS923,3,834.2000 ,36.12200 ,-115.9213,APRSWXNET , ,W7LAS Pahrump NV US , +AS924,3,349.0000 ,47.25743 ,-88.40406,APRSWXNET , ,KD8ABP Kearsarge MI US , +AS925,3,336.0000 ,42.32133 ,-77.65067,APRSWXNET , ,K2TJW Hornell NY US , +AS926,3,20.00000 ,59.28217 ,18.62467 ,APRSWXNET , ,SM0HXB Stockholm SE , +AS927,3,213.0000 ,46.58300 ,-90.87917,APRSWXNET , ,KC0MCP Ashland WI US , +AS928,3,565.0000 ,38.36950 ,-98.75983,APRSWXNET , ,KI0DJ-1 Great Bend KS US , +AS929,3,3.000000 ,43.16880 ,-70.61720,APRSWXNET , ,KB1PKF York Beach ME US , +AS930,3,220.0000 ,42.46883 ,-85.64367,APRSWXNET , ,N8ZUZ Plainwell MI US , +AS931,3,813.2000 ,32.19117 ,-110.8133,APRSWXNET , ,KB7LMI-1 Tucson AZ US , +AS932,3,45.70000 ,30.68500 ,-95.16033,APRSWXNET , ,KE5GLK Coldspring TX US , +AS933,3,93.00000 ,41.16407 ,-8.631090,APRSWXNET , ,CT1HND Porto PT , +AS934,3,29.00000 ,66.30500 ,13.95250 ,APRSWXNET , ,LA4GY-1 Mo I Rana NO , +AS935,3,195.1000 ,42.12419 ,-87.78660,APRSWXNET , ,AA9VI Northbrook IL US , +AS936,3,29.00000 ,34.13339 ,-78.96551,APRSWXNET , ,K4SHP-2 Green Sea SC US , +AS937,3,191.0000 ,41.84117 ,-87.78933,APRSWXNET , ,KB9DIM Berwyn IL US , +AS938,3,133.0000 ,33.14915 ,-116.1824,APRSWXNET , ,KD6RSQ-5 Ocotillo Wells CA US , +AS939,3,169.0000 ,48.37383 ,7.888670 ,APRSWXNET , ,DL1GHN-6 Friesenheim DE , +AS942,3,465.7000 ,43.41618 ,-95.23415,APRSWXNET , ,WB0WOE Spirit Lake IA US , +AS943,3,1.000000 ,51.33500 ,3.248670 ,APRSWXNET , ,ON7DKE Heist aan Zee BE , +AS944,3,103.0000 ,38.14651 ,-122.1756,APRSWXNET , ,WB5VUL Vallejo CA US , +AS945,3,349.0000 ,42.44167 ,-73.19250,APRSWXNET , ,KB1EAA Dalton MA US , +AS946,3,631.0000 ,41.79638 ,2.248310 ,APRSWXNET , ,EA3EDD Seva ES , +AS947,3,40.00000 ,45.55417 ,-73.67033,APRSWXNET , ,VE2YMM Montreal PQ CA , +AS948,3,1482.000 ,40.44071 ,-111.7993,APRSWXNET , ,N7HRX Highland UT US , +AS951,3,280.0000 ,40.41350 ,-75.83133,APRSWXNET , ,WE3C Fleetwood PA US , +AS952,3,180.0000 ,37.28600 ,-122.0495,APRSWXNET , ,KQ6QV Saratoga CA US , +AS954,3,320.0000 ,53.25783 ,-1.900000,APRSWXNET , ,2E0LIB Buxton UK , +AS955,3,27.00000 ,39.16069 ,-76.62883,APRSWXNET , ,N3YVY Glen Burnie MD US , +AS957,3,389.0000 ,36.66667 ,-98.18333,APRSWXNET , ,W5PDB Jet OK US , +AS958,3,279.0000 ,42.15185 ,-84.03024,APRSWXNET , ,K9HBI Manchester MI US , +AS959,3,12.00000 ,36.70383 ,-121.6158,APRSWXNET , ,AC6DF Salinas CA US , +AS960,3,195.1000 ,41.57272 ,-83.63693,APRSWXNET , ,WD8PNZ Maumee OH US , +AS961,3,125.0000 ,35.82867 ,-88.89917,APRSWXNET , ,K4MRR Humboldt TN US , +AS962,3,10.00000 ,47.60300 ,-52.71967,APRSWXNET , ,VO1UM-5 St John's NF CA , +AS963,3,3.000000 ,10.68550 ,-61.55717,APRSWXNET , ,9Z4CP Diego Martin TT , +AS964,3,202.0000 ,40.76573 ,-75.55183,APRSWXNET , ,KW3K Walnutport PA US , +AS965,3,28.00000 ,47.58300 ,-53.54483,APRSWXNET , ,VO1BIL-5 New Harbour NF CA , +AS967,3,290.0000 ,33.45950 ,-84.63617,APRSWXNET , ,K4KZY Sharpsburg GA US , +AS968,3,71.90000 ,39.41283 ,-76.48417,APRSWXNET , ,N3VEJ-1 Perry Hall MD US , +AS969,3,4.000000 ,30.12350 ,-85.58633,APRSWXNET , ,KF4MOU Panama City FL US , +AS970,3,21.00000 ,29.44125 ,-82.50304,APRSWXNET , ,WM3B Williston FL US , +AS972,3,360.0000 ,35.74470 ,-81.75260,APRSWXNET , ,W4CLT Morganton NC US , +AS973,3,182.0000 ,44.21667 ,-72.78333,APRSWXNET , ,WA1LIE Waitsfield VT US , +AS975,3,82.00000 ,30.86133 ,-89.13867,APRSWXNET , ,N5UDK-5 Wiggins MS US , +AS976,3,190.0000 ,41.60457 ,-83.59646,APRSWXNET , ,KD8BIN Toledo OH US , +AS977,3,175.6000 ,41.29467 ,-88.32300,APRSWXNET , ,K9EEW Coal City IL US , +AS978,3,600.0000 ,47.28483 ,11.52083 ,APRSWXNET , ,OE7AAI Hall in Tirol AT , +AS979,3,1350.000 ,32.38333 ,-106.7000,APRSWXNET , ,K5ILF Las Cruces NM US , +AS980,3,273.0000 ,42.15400 ,-88.40317,APRSWXNET , ,N0LTM Huntley IL US , +AS981,3,198.1000 ,33.13167 ,-96.74533,APRSWXNET , ,KE5VBO Frisco TX US , +AS982,3,20.00000 ,30.50783 ,-86.49217,APRSWXNET , ,KD4QBO Valparaiso FL US , +AS983,3,5.000000 ,27.06079 ,-82.17138,APRSWXNET , ,AJ4AN North Port FL US , +AS984,3,493.2000 ,25.73900 ,-100.2710,APRSWXNET , ,XE2NS-3 Monterrey MX , +AS985,3,375.8000 ,35.70932 ,-81.73396,APRSWXNET , ,W4JRD-1 Morganton NC US , +AS986,3,20.00000 ,57.83833 ,-4.176330,APRSWXNET , ,GM4SUF Edderton UK , +AS987,3,383.0000 ,42.14633 ,-75.96300,APRSWXNET , ,KC2PLQ Johnson City NY US , +AS989,3,261.0000 ,43.05712 ,-83.35974,APRSWXNET , ,KB8PKV Lapeer MI US , +AS990,3,-4.000000,52.71717 ,5.728830 ,APRSWXNET , ,PA5W Emmeloord NL , +AS991,3,207.0000 ,45.81350 ,10.07017 ,APRSWXNET , ,IW2EJH Lovere IT , +AS992,3,320.0000 ,46.81372 ,-92.08299,APRSWXNET , ,N0EXP Duluth MN US , +AS993,3,1914.000 ,35.30154 ,-106.4116,APRSWXNET , ,KB5SMY Placitas NM US , +AS994,3,99.10000 ,38.33800 ,-77.66550,APRSWXNET , ,KB4MOX Fredericksburg VA US , +AS995,3,38.00000 ,28.03550 ,-82.11550,APRSWXNET , ,W4CLL Plant City FL US , +AS996,3,85.30000 ,38.94483 ,-77.15800,APRSWXNET , ,KN4TD McLean VA US , +AS997,3,140.8000 ,41.35733 ,-88.44533,APRSWXNET , ,KC9KKO Morris IL US , +AS998,3,2.000000 ,51.84100 ,4.951500 ,APRSWXNET , ,PA2JOK Gorinchem NL , +AT001,3,11.00000 ,30.24220 ,-85.91770,APRSWXNET , ,W4OA-3 Panama City Beach FL US , +AT002,3,71.00000 ,34.02583 ,-118.1322,APRSWXNET , ,KE6JPV Montebello CA US , +AT003,3,1872.000 ,41.15583 ,-104.8163,APRSWXNET , ,KE7RQW Cheyenne Airport WY US , +AT004,3,24.00000 ,37.43550 ,-6.047170,APRSWXNET , ,EA8CHC Sevilla ES , +AT005,3,222.5000 ,41.13200 ,-76.29883,APRSWXNET , ,KB3ICM Stillwater PA US , +at006,3,1189.000 ,32.31783 ,-106.8217,APRSWXNET , ,WM5Z-15 Las Cruces NM US , +AT007,3,1217.700 ,31.76567 ,-106.2920,APRSWXNET , ,AE5HE-10 El Paso TX US , +AT008,3,646.2000 ,37.26113 ,-80.44902,APRSWXNET , ,N3PB Blacksburg VA US , +AT009,3,242.0000 ,32.67100 ,-97.47633,APRSWXNET , ,WB5MTX Benbrook TX US , +AT011,3,20.00000 ,44.36267 ,8.576670 ,APRSWXNET , ,IK1NAF-3 Varazze IT , +AT012,3,384.8000 ,35.37233 ,-97.46033,APRSWXNET , ,KN7I Moore OK US , +AT013,3,9.000000 ,30.09350 ,-81.59317,APRSWXNET , ,KE6EJS St Johns FL US , +AT014,3,129.0000 ,39.97583 ,-75.51033,APRSWXNET , ,N3NTP-2 West Chester PA US , +AT015,3,257.0000 ,38.91808 ,-92.12751,APRSWXNET , ,KD2ZO Millersburg MO US , +AT016,3,1832.500 ,38.82877 ,-104.3981,APRSWXNET , ,KC5KTI Ellicott CO US , +AT017,3,50.00000 ,47.36167 ,0.809170 ,APRSWXNET , ,F6HBW Veretz FR , +AT018,3,35.00000 ,42.13076 ,-70.71643,APRSWXNET , ,WB1FWS Marshfield Hills MA US , +AT019,3,50.00000 ,27.96250 ,-81.66533,APRSWXNET , ,KI4CFC Winter Haven FL US , +AT020,3,328.0000 ,46.07050 ,-118.3075,APRSWXNET , ,KE7FPZ Walla Walla WA US , +AT021,3,890.0000 ,32.33050 ,-110.9120,APRSWXNET , ,NK7E Tucson AZ US , +AT022,3,6.000000 ,51.52694 ,-3.696770,APRSWXNET , ,MW0AGE Pyle WAL UK , +AT023,3,751.0000 ,48.79420 ,-105.0622,APRSWXNET , ,K7SAM Flaxville MT US , +AT024,3,276.0000 ,42.04667 ,-91.67050,APRSWXNET , ,KE0MS Cedar Rapids IA US , +AT025,3,275.8000 ,34.26379 ,-87.69454,APRSWXNET , ,KE8BP Bear Creek AL US , +AT026,3,264.0000 ,42.99351 ,-81.05151,APRSWXNET , ,VE3NMV Dorchester ON CA , +AT027,3,24.00000 ,51.56633 ,0.664670 ,APRSWXNET , ,G6HHP Southend on Sea UK , +AT028,3,1328.000 ,35.16506 ,-83.21219,APRSWXNET , ,W4OA-4 Glenville NC US , +AT029,3,23.00000 ,30.60633 ,-88.22750,APRSWXNET , ,K4VW Mobile AL US , +AT030,3,205.0000 ,39.28032 ,-81.54080,APRSWXNET , ,N8DSN Parkersburg WV US , +AT031,3,74.40000 ,33.47889 ,-81.24338,APRSWXNET , ,KI4UEM Springfield SC US , +AT032,3,70.60000 ,45.56207 ,-73.31836,APRSWXNET , ,VA2SOB Ste-Julie PQ CA , +AT034,3,16.80000 ,42.67935 ,-70.65804,APRSWXNET , ,W4HIX Gloucester MA US , +AT035,3,720.0000 ,25.74355 ,-100.4133,APRSWXNET , ,XE2WR-3 Monterrey NL MX , +AT037,3,89.00000 ,35.25883 ,-80.11333,APRSWXNET , ,WB4ZIQ Norwood NC US , +AT038,3,9.400000 ,29.92367 ,-81.39050,APRSWXNET , ,N4TDS St. Augustine FL US , +AT040,3,157.6000 ,38.16615 ,-90.53255,APRSWXNET , ,KD0FHZ DeSoto MO US , +AT041,3,10.00000 ,10.41827 ,-61.47126,APRSWXNET , ,9Y4VF Trinidad TT , +AT042,3,122.0000 ,40.22650 ,-76.88100,APRSWXNET , ,N3SW New Cumberland PA US , +AT043,3,503.0000 ,34.61133 ,-83.83083,APRSWXNET , ,KR4AE Cleveland GA US , +AT044,3,159.0000 ,-33.97367,25.51117 ,APRSWXNET , ,ZR2XTC Port Elizabeth ZA , +AT046,3,871.0000 ,39.00533 ,-120.8697,APRSWXNET , ,N6ZQK Foresthill CA US , +AT047,3,1440.000 ,43.18200 ,-105.2517,APRSWXNET , ,KI0IN-11 Bill WY US , +AT048,3,22.00000 ,53.83014 ,-3.040810,APRSWXNET , ,G7HEJ Blackpool UK , +AT049,3,10.00000 ,33.73227 ,-78.95553,APRSWXNET , ,N4XML-1 Myrtle Beach SC US , +AT050,3,183.5000 ,41.50283 ,-82.04550,APRSWXNET , ,KC8MCA Avon Lake OH US , +AT051,3,117.0000 ,51.20533 ,-0.752000,APRSWXNET , ,G3ZSS Farnham UK , +AT052,3,255.0000 ,42.79083 ,-84.07500,APRSWXNET , ,WB7CJQ Byron MI US , +AT053,3,8.000000 ,10.43017 ,-61.47250,APRSWXNET , ,9Z4BJ Couva TT , +AT054,3,325.0000 ,49.42250 ,-94.08333,APRSWXNET , ,VE3JJA-1 Sioux Narrows ON CA , +AT055,3,94.50000 ,51.67267 ,0.306500 ,APRSWXNET , ,M0XDC Brentwood UK , +AT056,3,14.00000 ,32.95897 ,-80.18134,APRSWXNET , ,KQ4G Summerville SC US , +AT057,3,105.0000 ,32.79433 ,-117.0765,APRSWXNET , ,KI6HZS San Diego CA US , +AT058,3,27.10000 ,40.76233 ,-73.49200,APRSWXNET , ,NY3H-6 Bethpage NY US , +AT059,3,1462.700 ,40.47347 ,-104.8924,APRSWXNET , ,N7DQ Windsor CO US , +AT060,3,124.0000 ,44.16731 ,-123.7521,APRSWXNET , ,KC7RJK-3 Deadwood OR US , +AT061,3,7.000000 ,31.98336 ,-81.07953,APRSWXNET , ,K4GTM Savannah GA US , +AT062,3,214.0000 ,41.73200 ,-87.84633,APRSWXNET , ,WD9EPF Hickory Hills IL US , +AT063,3,33.50000 ,40.75117 ,-73.61333,APRSWXNET , ,W2KFV-2 Carle Place NY US , +AT064,3,157.0000 ,40.72750 ,-75.47783,APRSWXNET , ,KB3CTX Northampton PA US , +AT065,3,1453.000 ,38.27133 ,-104.6755,APRSWXNET , ,KC0OCA-2 Pueblo CO US , +AT066,3,342.9000 ,39.90407 ,-79.70520,APRSWXNET , ,K3JAE Uniontown PA US , +AT067,3,6.700000 ,33.65383 ,-117.8755,APRSWXNET , ,N6OXA Newport Beach CA US , +AT068,3,290.0000 ,38.35217 ,-122.2333,APRSWXNET , ,KI6DBJ Napa CA US , +AT069,3,70.10000 ,44.30550 ,-69.76000,APRSWXNET , ,KG1ZR Augusta ME US , +AT071,3,107.0000 ,38.75517 ,-77.31800,APRSWXNET , ,W4JHU Fairfax Station VA US , +AT072,3,55.20000 ,30.82667 ,-95.32633,APRSWXNET , ,WA5KMA Oakhurst TX US , +AT073,3,130.0000 ,-33.92867,18.86533 ,APRSWXNET , ,ZS1JPM Stellenbosch ZA , +AT074,3,28.00000 ,51.84500 ,0.691000 ,APRSWXNET , ,M3UMW Kelvedon Essex UK , +AT075,3,43.00000 ,35.37244 ,-77.89842,APRSWXNET , ,W4DNA Goldsboro NC US , +AT076,3,64.00000 ,50.74866 ,-3.282840,APRSWXNET , ,M1VPN Ottery St Mary UK , +AT077,3,1486.500 ,38.88352 ,-119.7370,APRSWXNET , ,KJ6IX Gardnerville NV US , +AT078,3,1622.100 ,38.65483 ,-112.1393,APRSWXNET , ,NK7C Monroe UT US , +AT079,3,270.0000 ,64.75605 ,18.15843 ,APRSWXNET , ,SM2GSR-2 Lycksele SE , +AT080,3,314.0000 ,35.24525 ,-82.23520,APRSWXNET , ,K4RKM Lynn NC US , +AT081,3,183.0000 ,41.64800 ,-83.46800,APRSWXNET , ,KC8NNO Oregon OH US , +AT082,3,70.00000 ,52.08633 ,-0.737670,APRSWXNET , ,G4GJR Newport Pagnell UK , +AT083,3,267.9000 ,43.07033 ,-89.33967,APRSWXNET , ,KA7CFM Monona WI US , +AT084,3,1417.000 ,34.90133 ,-118.6520,APRSWXNET , ,WA6TK-3 Rosamond CA US , +AT085,3,18.00000 ,36.70250 ,-121.6198,APRSWXNET , ,KI6LUC Salinas CA US , +AT086,3,130.4000 ,-32.97183,27.87533 ,APRSWXNET , ,ZS2AP East London ZA , +AT087,3,11.60000 ,30.19178 ,-84.30994,APRSWXNET , ,K4GKJ Crawfordville FL US , +AT088,3,5.500000 ,30.78043 ,-81.59071,APRSWXNET , ,N3EAY St. Marys GA US , +AT089,3,2.000000 ,39.56349 ,-74.38614,APRSWXNET , ,KD5PVW Mystic Island NJ US , +AT090,3,225.9000 ,34.93083 ,-92.80283,APRSWXNET , ,N5XON-2 Thornburg AR US , +AT091,3,85.00000 ,35.74633 ,79.10917 ,APRSWXNET , ,KI4QXK Pittsboro NC US , +AT092,3,177.0000 ,35.93033 ,-86.49717,APRSWXNET , ,KJ4FFM Smyrna TN US , +AT093,3,10.00000 ,37.46283 ,-122.4407,APRSWXNET , ,KC6PUN Half Moon Bay CA US , +AT094,3,1367.600 ,33.06156 ,-116.5736,APRSWXNET , ,KF6ILA Julian CA US , +AT095,3,605.0000 ,46.71100 ,-120.7195,APRSWXNET , ,W7YKM-3 Tieton WA US , +AT096,3,508.0000 ,33.72333 ,-112.0173,APRSWXNET , ,SVFLIR Phoenix AZ US , +AT097,3,1345.000 ,41.04400 ,-111.9352,APRSWXNET , ,KN7D Kaysville UT US , +AT098,3,440.0000 ,-37.51718,143.7077 ,APRSWXNET , ,VK3ZRF Ballarat AU , +AT099,3,70.00000 ,44.84367 ,-123.2133,APRSWXNET , ,K7FU Monmouth OR US , +AT100,3,230.4000 ,40.10233 ,-88.19317,APRSWXNET , ,KB9ZGZ Urbana IL US , +AT101,3,140.0000 ,39.77380 ,-75.92862,APRSWXNET , ,N3XRV-2 Oxford PA US , +AT102,3,255.0000 ,39.28517 ,-94.93617,APRSWXNET , ,AD7MI-3 Leavenworth KS US , +AT103,3,2.500000 ,36.85033 ,-76.33617,APRSWXNET , ,N4AOL Portsmouth VA US , +AT104,3,419.0000 ,47.30850 ,-92.33567,APRSWXNET , ,K0BBC Makinen MN US , +AT105,3,89.00000 ,42.23883 ,-71.42550,APRSWXNET , ,KA1PFC Ashland MA US , +AT106,3,165.0000 ,45.36733 ,-68.32583,APRSWXNET , ,KB1GEP Lee ME US , +AT107,3,624.0000 ,33.41633 ,-117.1330,APRSWXNET , ,KG6YVD-10 Rainbow CA US , +AT108,3,423.0000 ,49.92833 ,-119.4420,APRSWXNET , ,VE7PMC North Glenmore BC CA , +AT109,3,276.0000 ,33.08459 ,-97.42488,APRSWXNET , ,WD5M Rhome TX US , +AT110,3,75.00000 ,53.55333 ,-2.906330,APRSWXNET , ,G4UVB Ormskirk UK , +AT112,3,39.60000 ,28.46550 ,-81.76350,APRSWXNET , ,WD4IXD Clermont FL US , +AT113,3,20.00000 ,36.95232 ,-25.10258,APRSWXNET , ,CU1AG Santa Maria PT , +AT114,3,183.0000 ,38.43893 ,-82.22477,APRSWXNET , ,N8USD Ona WV US , +AT115,3,66.80000 ,32.68317 ,-114.4585,APRSWXNET , ,KC2LGR Yuma/foothills AZ US , +AT116,3,362.7000 ,36.29100 ,-97.93783,APRSWXNET , ,KC5SII-4 Waukomis OK US , +AT117,3,313.0000 ,37.09209 ,-94.53583,APRSWXNET , ,N0ALE Joplin MO US , +AT118,3,1524.000 ,40.41467 ,-105.1163,APRSWXNET , ,N0AOL-1 Loveland CO US , +AT119,3,78.00000 ,47.14732 ,-122.5502,APRSWXNET , ,K7IBC Lakewood WA US , +AT120,3,281.0000 ,43.63179 ,-89.76892,APRSWXNET , ,WD9HXC Wisconsin Dells WI US , +AT121,3,81.00000 ,48.78550 ,1.361670 ,APRSWXNET , ,F8AEJ Saint Georges Motel FR , +AT122,3,2289.000 ,37.39483 ,-107.8662,APRSWXNET , ,N6PTL Durango CO US , +AT123,3,200.0000 ,39.44817 ,16.26083 ,APRSWXNET , ,IW8RPQ-3 Luzzi IT , +AT124,3,1366.700 ,40.29167 ,-120.5833,APRSWXNET , ,K6ME-6 Janesville CA US , +AT125,3,67.70000 ,33.24633 ,-117.2533,APRSWXNET , ,AF6GL Oceanside CA US , +AT127,3,33.00000 ,53.28543 ,9.290460 ,APRSWXNET , ,DL2BCZ-6 Zeven DE , +AT128,3,283.0000 ,40.11383 ,-75.94433,APRSWXNET , ,CCDES-7 Honey Brook PA US , +AT129,3,126.0000 ,40.16467 ,-75.72617,APRSWXNET , ,CCDES-6 Elverson PA US , +AT130,3,204.0000 ,39.92317 ,-75.98800,APRSWXNET , ,CCDES-9 Atglen PA US , +AT131,3,104.0000 ,39.94283 ,-75.71700,APRSWXNET , ,CCDES-8 West Chester PA US , +AT132,3,129.0000 ,39.95567 ,-75.58450,APRSWXNET , ,CCDES-1 West Chester PA US , +AT133,3,129.0000 ,39.73817 ,-76.04083,APRSWXNET , ,CCDES-2 Nottingham PA US , +AT134,3,170.0000 ,41.62133 ,0.617500 ,APRSWXNET , ,EB3BYO Lleida ES , +AT135,3,104.5000 ,47.26000 ,-122.4750,APRSWXNET , ,KE7NXF Tacoma WA US , +BMSA2,3,6.100000 ,65.33360 ,-166.4853,APRSWXNET , ,BMSA2 Brevig Mission School AK US , +CDFA2,3,320.0000 ,67.25530 ,-150.1839,APRSWXNET , ,CDFA2 Coldfoot DOT AK US , +CDSA2,3,990.6000 ,68.07810 ,-149.5795,APRSWXNET , ,CDSA2 Chandler Shelf DOT AK US , +CDTA2,3,287.0000 ,65.57330 ,-144.7922,APRSWXNET , ,CDTA2 Central DOT AK US , +CLGA2,3,229.0000 ,64.89167 ,-147.8453,APRSWXNET , ,CLGA2 Fairbanks AK US , +CNRA2,3,361.0000 ,65.05280 ,-146.0561,APRSWXNET , ,CNRA2 Chena Hot Springs AK US , +C0001,3,125.9000 ,37.97597 ,-87.56822,APRSWXNET , ,CW0001 Evansville IN US , +C0003,3,61.00000 ,42.54450 ,-71.37350,APRSWXNET , ,CW0003 Carlisle MA US , +C0004,3,1615.000 ,39.72570 ,-104.9590,APRSWXNET , ,CW0004 Denver CO US , +C0005,3,287.0000 ,41.60651 ,-93.69564,APRSWXNET , ,CW0005 Des Moines IA US , +C0007,3,2.000000 ,52.51833 ,4.973330 ,APRSWXNET , ,CW0007 Amsterdam NL , +C0008,3,677.0000 ,35.20033 ,-83.41917,APRSWXNET , ,CW0008 Franklin NC US , +C0009,3,32.00000 ,51.13950 ,4.484830 ,APRSWXNET , ,CW0009 Antwerp BE , +C0013,3,289.6000 ,38.07338 ,-122.8438,APRSWXNET , ,CW0013 Inverness CA US , +C0016,3,83.00000 ,-34.47220,138.6785 ,APRSWXNET , ,CW0016 Wasleys AU , +C0018,3,140.0000 ,29.98500 ,-97.30333,APRSWXNET , ,CW0018 Smithville TX US , +C0020,3,215.0000 ,63.42402 ,10.75459 ,APRSWXNET , ,CW0020 Trondheim NO , +C0025,3,40.00000 ,51.45483 ,5.389170 ,APRSWXNET , ,CW0025 Eindhoven NL , +C0028,3,46.90000 ,40.82662 ,-73.56199,APRSWXNET , ,CW0028 Muttontown NY US , +C0041,3,4.600000 ,31.23733 ,-81.49517,APRSWXNET , ,CW0041 Brunswick GA US , +C0045,3,10.00000 ,39.36750 ,-74.54833,APRSWXNET , ,CW0045 Northfield NJ US , +C0046,3,119.0000 ,38.89150 ,-77.29400,APRSWXNET , ,CW0046 Vienna VA US , +C0052,3,10.00000 ,43.84917 ,-69.81500,APRSWXNET , ,CW0052 Bath ME US , +C0053,3,694.5000 ,45.21846 ,-121.3974,APRSWXNET , ,CW0053 Wamic OR US , +C0060,3,270.0000 ,49.80583 ,9.654670 ,APRSWXNET , ,CW0060 Wurzburg DE , +C0062,3,249.9000 ,33.26342 ,-97.66513,APRSWXNET , ,CW0062 Decatur TX US , +C0065,3,116.0000 ,34.88050 ,-89.83077,APRSWXNET , ,CW0065 Olive Branch MS US , +C0066,3,253.0000 ,42.05829 ,-88.12915,APRSWXNET , ,CW0066 Hoffman Estates IL US , +C0069,3,155.4000 ,32.82080 ,-96.46620,APRSWXNET , ,CW0069 Heath TX US , +C0080,3,132.1000 ,45.46324 ,-67.12402,APRSWXNET , ,CW0080 Lawrence Sta - SWSWC NB CA , +C0082,3,1768.000 ,35.04648 ,-106.4921,APRSWXNET , ,CW0082 Albuquerque NM US , +C0099,3,146.0000 ,38.54958 ,-90.31689,APRSWXNET , ,CW0099 Affton MO US , +C0104,3,49.00000 ,42.24336 ,-71.19785,APRSWXNET , ,CW0104 Dedham MA US , +C0115,3,204.0000 ,29.97131 ,-97.84920,APRSWXNET , ,CW0115 Kyle TX US , +C0117,3,16.00000 ,-32.05700,115.9533 ,APRSWXNET , ,CW0117 Thornlie AU , +C0118,3,12.00000 ,42.17943 ,-70.71956,APRSWXNET , ,CW0118 Scituate MA US , +C0120,3,1579.000 ,40.54278 ,-111.8117,APRSWXNET , ,CW0120 Sandy UT US , +C0121,3,401.0000 ,45.44083 ,-98.09217,APRSWXNET , ,CW0121 Groton SD US , +C0126,3,92.00000 ,52.66883 ,-3.809170,APRSWXNET , ,CW0126 Machynlleth UK , +C0133,3,235.0000 ,30.18115 ,-97.86115,APRSWXNET , ,CW0133 Austin TX US , +C0134,3,5.000000 ,65.10100 ,25.40467 ,APRSWXNET , ,CW0134 Oulu FI , +C0136,3,12.50000 ,38.03317 ,-121.3473,APRSWXNET , ,CW0136 Stockton CA US , +C0138,3,103.6000 ,47.78220 ,-122.2687,APRSWXNET , ,CW0138 Brier WA US , +C0146,3,216.0000 ,30.54861 ,-97.62608,APRSWXNET , ,CW0146 Round Rock TX US , +C0149,3,332.0000 ,45.43900 ,-94.50850,APRSWXNET , ,CW0149 Richmond MN US , +C0150,3,94.20000 ,42.75164 ,-73.87899,APRSWXNET , ,CW0150 Colonie NY US , +C0153,3,31.40000 ,40.73048 ,-73.70502,APRSWXNET , ,CW0153 Floral Park NY US , +C0154,3,104.0000 ,40.82583 ,-74.45450,APRSWXNET , ,CW0154 Cedar Knolls NJ US , +C0156,3,97.00000 ,43.20417 ,-79.57350,APRSWXNET , ,CW0156 Grimsby ON CA , +C0157,3,336.0000 ,40.87717 ,-82.64717,APRSWXNET , ,CW0157 Shelby OH US , +C0158,3,275.0000 ,42.40300 ,-85.50567,APRSWXNET , ,CW0158 Richland MI US , +C0160,3,200.0000 ,42.90400 ,-74.52267,APRSWXNET , ,CW0160 Palatine Bridge NY US , +C0162,3,1067.000 ,34.38768 ,-101.7597,APRSWXNET , ,CW0162 Kress TX US , +C0166,3,763.0000 ,34.88133 ,-83.86917,APRSWXNET , ,CW0166 Blairsville GA US , +C0168,3,161.0000 ,34.79481 ,-87.67477,APRSWXNET , ,CW0168 Florence AL US , +C0169,3,15.00000 ,42.56201 ,-70.84952,APRSWXNET , ,CW0169 Beverly MA US , +C0172,3,257.0000 ,40.87050 ,-74.60217,APRSWXNET , ,CW0172 Mine Hill NJ US , +C0176,3,245.0000 ,39.24083 ,-84.49950,APRSWXNET , ,CW0176 Cincinnati OH US , +C0180,3,321.0000 ,37.38917 ,-94.08733,APRSWXNET , ,CW0180 Golden City MO US , +C0181,3,2.000000 ,33.74763 ,-118.1117,APRSWXNET , ,CW0181 Seal Beach CA US , +C0187,3,1169.000 ,36.09063 ,-82.17512,APRSWXNET , ,CW0187 Bakersville NC US , +C0189,3,131.0000 ,43.13485 ,-76.14542,APRSWXNET , ,CW0189 N. Syracuse NY US , +C0193,3,228.6000 ,34.54347 ,-87.08386,APRSWXNET , ,CW0193 Decatur AL US , +C0198,3,115.0000 ,36.30950 ,-77.83217,APRSWXNET , ,CW0198 Enfield NC US , +C0205,3,11.00000 ,40.72000 ,-73.30567,APRSWXNET , ,CW0205 West Islip NY US , +C0212,3,262.0000 ,35.20166 ,-84.79798,APRSWXNET , ,CW0212 Cleveland TN US , +C0213,3,107.0000 ,48.86909 ,-122.6229,APRSWXNET , ,CW0213 Ferndale WA US , +C0214,3,152.0000 ,39.46224 ,-8.200390,APRSWXNET , ,CW0214 Abrantes PT , +C0216,3,251.0000 ,42.09200 ,-89.97300,APRSWXNET , ,CW0216 Mt. Carroll IL US , +C0217,3,266.0000 ,45.23139 ,-93.42111,APRSWXNET , ,CW0217 Ramsey MN US , +C0222,3,1552.000 ,38.62783 ,-103.5755,APRSWXNET , ,CW0222 Karval CO US , +C0228,3,1080.800 ,47.49555 ,-110.8578,APRSWXNET , ,CW0228 Highwood MT US , +C0230,3,70.00000 ,50.94933 ,-2.626830,APRSWXNET , ,CW0230 Yeovil UK , +C0234,3,58.20000 ,42.72448 ,-71.55771,APRSWXNET , ,CW0234 Hollis NH US , +C0237,3,95.00000 ,42.13950 ,-71.22950,APRSWXNET , ,CW0237 Walpole MA US , +C0241,3,259.7000 ,42.32478 ,-85.54864,APRSWXNET , ,CW0241 Kalamazoo MI US , +C0256,3,9.000000 ,36.77917 ,-121.7243,APRSWXNET , ,CW0256 Castroville CA US , +C0262,3,3.000000 ,27.27917 ,-80.32967,APRSWXNET , ,CW0262 Port St. Lucie FL US , +C0265,3,46.00000 ,39.67050 ,-74.98300,APRSWXNET , ,CW0265 Williamstown NJ US , +C0267,3,352.0000 ,44.08550 ,-93.49800,APRSWXNET , ,CW0267 Waseca MN US , +C0272,3,60.00000 ,41.91350 ,12.57433 ,APRSWXNET , ,CW0272 Rome IT , +C0275,3,0.000000 ,52.48617 ,5.493000 ,APRSWXNET , ,CW0275 Lelystad NL , +C0288,3,393.2000 ,45.90184 ,-93.85043,APRSWXNET , ,CW0288 Hillman MN US , +C0294,3,3.000000 ,26.13533 ,-80.40383,APRSWXNET , ,CW0294 Weston FL US , +C0297,3,110.0000 ,40.09383 ,-76.35667,APRSWXNET , ,CW0297 East Petersburg PA US , +C0310,3,415.0000 ,35.04717 ,-114.5802,APRSWXNET , ,CW0310 Bullhead City AZ US , +C0311,3,290.0000 ,42.23967 ,-71.89050,APRSWXNET , ,CW0311 Leicester MA US , +C0315,3,844.0000 ,48.75333 ,13.82000 ,APRSWXNET , ,CW0315 Passau DE , +C0318,3,225.0000 ,36.08720 ,-95.80870,APRSWXNET , ,CW0318 Broken Arrow OK US , +C0325,3,78.00000 ,47.73990 ,-122.2603,APRSWXNET , ,CW0325 Kenmore WA US , +C0327,3,141.0000 ,43.98014 ,-71.11821,APRSWXNET , ,CW0327 Conway NH US , +C0328,3,2.000000 ,26.18179 ,-80.15788,APRSWXNET , ,CW0328 Ft Lauderdale FL US , +C0329,3,10.00000 ,26.45109 ,-80.11825,APRSWXNET , ,CW0329 Delray Beach FL US , +C0333,3,22.00000 ,43.08183 ,-70.71350,APRSWXNET , ,CW0333 Kittery Point ME US , +C0334,3,600.0000 ,47.75700 ,11.36800 ,APRSWXNET , ,CW0334 Penzberg DE , +C0343,3,400.0000 ,-17.01986,145.3410 ,APRSWXNET , ,CW0343 Mareeba AU , +C0350,3,2.000000 ,37.38639 ,-76.46272,APRSWXNET , ,CW0350 Bailey's Wharf VA US , +C0351,3,147.0000 ,39.16717 ,-77.06750,APRSWXNET , ,CW0351 Brookeville MD US , +C0352,3,972.0000 ,39.39905 ,-101.0596,APRSWXNET , ,CW0352 Colby KS US , +C0354,3,1.000000 ,40.69033 ,-73.27950,APRSWXNET , ,CW0354 West Islip NY US , +C0356,3,4.000000 ,46.01083 ,-123.9153,APRSWXNET , ,CW0356 Seaside OR US , +C0360,3,0.000000 ,52.07633 ,4.549000 ,APRSWXNET , ,CW0360 Benthuizen NL , +C0364,3,170.0000 ,35.28450 ,-92.39617,APRSWXNET , ,CW0364 Greenbrier AR US , +C0374,3,40.00000 ,29.78700 ,-95.58133,APRSWXNET , ,CW0374 Houston TX US , +C0386,3,1222.000 ,33.24206 ,-103.3360,APRSWXNET , ,CW0386 Tatum NM US , +C0387,3,24.00000 ,28.78533 ,-81.33883,APRSWXNET , ,CW0387 Lake Mary FL US , +C0394,3,137.0000 ,61.61950 ,-149.1292,APRSWXNET , ,CW0394 Palmer AK US , +C0405,3,5.000000 ,42.86367 ,-70.90017,APRSWXNET , ,CW0405 Salisbury MA US , +C0406,3,1310.000 ,43.50233 ,-115.3140,APRSWXNET , ,CW0406 Pine ID US , +C0407,3,95.00000 ,47.72933 ,-122.6182,APRSWXNET , ,CW0407 Silverdale WA US , +C0415,3,96.00000 ,39.15417 ,-76.82800,APRSWXNET , ,CW0415 Savage MD US , +C0416,3,29.00000 ,40.67183 ,-73.97723,APRSWXNET , ,CW0416 Brooklyn NY US , +C0425,3,125.0000 ,37.25417 ,-121.9995,APRSWXNET , ,CW0425 Saratoga CA US , +C0433,3,106.0000 ,39.16283 ,-77.19867,APRSWXNET , ,CW0433 Montgomery Village MD US , +C0443,3,14.00000 ,38.60867 ,-121.4123,APRSWXNET , ,CW0443 Sacramento CA US , +C0444,3,145.0000 ,41.63383 ,-72.43917,APRSWXNET , ,CW0444 Marlborough CT US , +C0445,3,8.000000 ,26.72867 ,-81.89383,APRSWXNET , ,CW0445 N. Ft. Myers FL US , +C0449,3,-1.000000,52.43733 ,4.880830 ,APRSWXNET , ,CW0449 Amsterdam NL , +C0451,3,15.20000 ,41.89883 ,-71.13850,APRSWXNET , ,CW0451 Taunton MA US , +C0453,3,378.0000 ,41.15856 ,-96.19223,APRSWXNET , ,CW0453 Gretna NE US , +C0454,3,23.00000 ,39.14300 ,-76.55267,APRSWXNET , ,CW0454 Pasadena MD US , +C0456,3,96.60000 ,32.35950 ,-89.97133,APRSWXNET , ,CW0456 Brandon MS US , +C0458,3,23.00000 ,38.58700 ,-121.3162,APRSWXNET , ,CW0458 Rancho Cordova CA US , +C0464,3,1280.000 ,35.15050 ,-118.5167,APRSWXNET , ,CW0464 Tehachapi CA US , +C0465,3,208.0000 ,41.57705 ,-73.47327,APRSWXNET , ,CW0465 Sherman CT US , +C0467,3,20.00000 ,42.04815 ,-70.69035,APRSWXNET , ,CW0467 Duxbury MA US , +C0472,3,230.0000 ,41.87867 ,-88.09200,APRSWXNET , ,CW0472 Wheaton IL US , +C0475,3,90.00000 ,42.08700 ,-71.59917,APRSWXNET , ,CW0475 Uxbridge MA US , +C0476,3,305.0000 ,40.32617 ,-83.90000,APRSWXNET , ,CW0476 De Graff OH US , +C0479,3,41.00000 ,40.43767 ,-74.39000,APRSWXNET , ,CW0479 E. Brunswick NJ US , +C0493,3,96.00000 ,45.49633 ,-122.4270,APRSWXNET , ,CW0493 Gresham OR US , +C0497,3,77.00000 ,38.95759 ,-77.03522,APRSWXNET , ,CW0497 Washington DC US , +C0498,3,300.0000 ,33.88517 ,-84.67300,APRSWXNET , ,CW0498 Powder Springs GA US , +C0499,3,413.9000 ,47.25475 ,-93.59430,APRSWXNET , ,CW0499 Grand Rapids MN US , +C0500,3,352.0000 ,42.68033 ,-71.96633,APRSWXNET , ,CW0500 Ashburnham MA US , +C0506,3,112.8000 ,41.82888 ,-72.90915,APRSWXNET , ,CW0506 Canton CT US , +C0508,3,12.00000 ,42.74517 ,-73.68383,APRSWXNET , ,CW0508 Troy NY US , +C0521,3,18.00000 ,54.06467 ,-2.858000,APRSWXNET , ,CW0521 Morecambe UK , +C0525,3,168.0000 ,53.04033 ,-2.252830,APRSWXNET , ,CW0525 Chesterton UK , +C0527,3,331.0000 ,37.81450 ,-79.40700,APRSWXNET , ,CW0527 Lexington VA US , +C0528,3,342.0000 ,40.74533 ,-95.64083,APRSWXNET , ,CW0528 Sidney IA US , +C0529,3,43.00000 ,40.89484 ,-74.20933,APRSWXNET , ,CW0529 West Paterson NJ US , +C0531,3,189.1000 ,41.55300 ,-88.23550,APRSWXNET , ,CW0531 Plainfield IL US , +C0537,3,99.10000 ,39.50120 ,-76.32170,APRSWXNET , ,CW0537 Bel Air MD US , +C0538,3,0.000000 ,37.63583 ,-122.1230,APRSWXNET , ,CW0538 Hayward CA US , +C0539,3,80.00000 ,50.95800 ,6.762500 ,APRSWXNET , ,CW0539 Dansweiler DE , +C0547,3,270.0000 ,40.01883 ,-86.13283,APRSWXNET , ,CW0547 Westfield IN US , +C0549,3,1646.000 ,40.00267 ,-105.1408,APRSWXNET , ,CW0549 Lafayette CO US , +C0556,3,71.00000 ,42.40583 ,-71.52700,APRSWXNET , ,CW0556 Stow MA US , +C0561,3,274.0000 ,45.15867 ,-93.27150,APRSWXNET , ,CW0561 Coon Rapids MN US , +C0562,3,183.0000 ,40.07367 ,-76.38667,APRSWXNET , ,CW0562 Lancaster PA US , +C0565,3,55.00000 ,58.27517 ,7.976670 ,APRSWXNET , ,CW0565 Kristiansand NO , +C0566,3,25.00000 ,39.71667 ,-75.21667,APRSWXNET , ,CW0566 Mullica Hill NJ US , +C0567,3,102.0000 ,62.09885 ,25.64607 ,APRSWXNET , ,CW0567 Jyvaskyla FI , +C0569,3,12.00000 ,30.36133 ,-81.55967,APRSWXNET , ,CW0569 Jacksonville FL US , +C0570,3,183.0000 ,41.04207 ,-123.8756,APRSWXNET , ,CW0570 Blue Lake CA US , +C0571,3,235.0000 ,41.84817 ,-88.31433,APRSWXNET , ,CW0571 Batavia IL US , +C0572,3,35.00000 ,28.54450 ,-81.29800,APRSWXNET , ,CW0572 Orlando FL US , +C0577,3,107.0000 ,39.20800 ,-76.76867,APRSWXNET , ,CW0577 Elkridge MD US , +C0578,3,1142.000 ,40.83088 ,-84.09127,APRSWXNET , ,CW0578 Cairo OH US , +C0587,3,2.000000 ,28.42633 ,-80.71467,APRSWXNET , ,CW0587 Merritt Island FL US , +C0596,3,100.0000 ,41.80667 ,-89.70100,APRSWXNET , ,CW0596 Sterling IL US , +C0597,3,1176.000 ,35.14816 ,-118.5035,APRSWXNET , ,CW0597 Tehachapi CA US , +C0605,3,50.00000 ,43.90196 ,10.94817 ,APRSWXNET , ,CW0605 Pistoia IT , +C0607,3,594.0000 ,33.70500 ,-111.9103,APRSWXNET , ,CW0607 North Scottsdale AZ US , +C0608,3,84.00000 ,39.41800 ,-76.49033,APRSWXNET , ,CW0608 Perry Hall MD US , +C0609,3,76.20000 ,37.34114 ,-77.63589,APRSWXNET , ,CW0609 Winterpock VA US , +C0615,3,17.00000 ,43.61533 ,-70.31217,APRSWXNET , ,CW0615 South Portland ME US , +C0616,3,308.0000 ,33.94883 ,-84.36050,APRSWXNET , ,CW0616 Sandy Springs GA US , +C0617,3,330.0000 ,44.44241 ,-89.54728,APRSWXNET , ,CW0617 Plover WI US , +C0621,3,314.0000 ,41.66367 ,-85.01800,APRSWXNET , ,CW0621 Angola IN US , +C0622,3,635.0000 ,38.95612 ,-123.5450,APRSWXNET , ,CW0622 Manchester CA US , +C0623,3,300.0000 ,34.17700 ,-118.5988,APRSWXNET , ,CW0623 Woodland Hills CA US , +C0626,3,451.0000 ,41.14851 ,-79.31541,APRSWXNET , ,CW0626 Limestone Twp PA US , +C0630,3,95.00000 ,37.65540 ,-77.56930,APRSWXNET , ,CW0630 Glen Allen VA US , +C0636,3,1051.600 ,43.89867 ,-103.1558,APRSWXNET , ,CW0636 Hermosa SD US , +C0637,3,60.00000 ,39.52418 ,-76.16500,APRSWXNET , ,CW0637 Aberdeen MD US , +C0639,3,4.000000 ,30.25583 ,-81.70417,APRSWXNET , ,CW0639 Jacksonville FL US , +C0641,3,820.0000 ,31.73833 ,35.18750 ,APRSWXNET , ,CW0641 Jerusalem IL , +C0645,3,57.00000 ,33.92101 ,-118.0544,APRSWXNET , ,CW0645 Whittier CA US , +EQPA2,3,19.00000 ,61.19583 ,-149.9613,APRSWXNET , ,CW0650 Anchorage AK US , +C0653,3,425.2000 ,44.23118 ,-95.60917,APRSWXNET , ,CW0653 Tracy MN US , +C0655,3,47.10000 ,42.79050 ,-71.23000,APRSWXNET , ,CW0655 Salem NH US , +C0657,3,45.00000 ,49.60400 ,-124.0447,APRSWXNET , ,CW0657 Madeira Park BC CA , +C0666,3,116.0000 ,38.99132 ,-77.33286,APRSWXNET , ,CW0666 Reston VA US , +C0672,3,193.9000 ,47.20050 ,-122.1845,APRSWXNET , ,CW0672 Bonney Lake WA US , +C0676,3,1.000000 ,38.28367 ,-75.74567,APRSWXNET , ,CW0676 Salisbury MD US , +C0677,3,32.00000 ,38.45150 ,-122.7577,APRSWXNET , ,CW0677 Santa Rosa CA US , +C0681,3,220.0000 ,43.41076 ,-84.45509,APRSWXNET , ,CW0681 Breckenridge MI US , +C0682,3,578.0000 ,45.89217 ,-118.6570,APRSWXNET , ,CW0682 Helix OR US , +C0686,3,486.0000 ,36.79967 ,-114.0788,APRSWXNET , ,CW0686 Mesquite NV US , +C0692,3,1056.000 ,35.84600 ,-82.09720,APRSWXNET , ,CW0692 Little Switzerland NC US , +C0694,3,4.000000 ,29.89667 ,-84.36000,APRSWXNET , ,CW0694 Alligator Point FL US , +C0698,3,343.0000 ,44.76250 ,-93.22450,APRSWXNET , ,CW0698 Apple Valley MN US , +C0699,3,256.9000 ,33.37932 ,-84.70673,APRSWXNET , ,CW0699 Newnan GA US , +C0704,3,1150.000 ,44.71367 ,-119.0995,APRSWXNET , ,CW0704 Long Creek OR US , +C0706,3,584.0000 ,45.81250 ,-118.4222,APRSWXNET , ,CW0706 Athena OR US , +C0707,3,496.0000 ,46.31667 ,-117.9748,APRSWXNET , ,CW0707 Dayton WA US , +C0710,3,66.00000 ,53.50161 ,-2.307050,APRSWXNET , ,CW0710 Salford UK , +C0713,3,498.0000 ,39.01617 ,-121.0428,APRSWXNET , ,CW0713 Auburn CA US , +C0714,3,218.0000 ,42.35500 ,-83.46050,APRSWXNET , ,CW0714 Plymouth MI US , +C0720,3,19.50000 ,33.87450 ,-118.1318,APRSWXNET , ,CW0720 Bellflower CA US , +C0725,3,327.0000 ,29.98024 ,-98.08736,APRSWXNET , ,CW0725 Wimberley TX US , +C0728,3,129.0000 ,41.77617 ,-72.87133,APRSWXNET , ,CW0728 Avon CT US , +C0732,3,1422.000 ,44.13467 ,-118.9705,APRSWXNET , ,CW0732 Seneca OR US , +C0734,3,15.00000 ,41.91500 ,-70.92633,APRSWXNET , ,CW0734 Middleboro MA US , +C0736,3,124.0000 ,43.21297 ,-77.64531,APRSWXNET , ,CW0736 Rochester NY US , +C0745,3,120.0000 ,35.13617 ,-79.43250,APRSWXNET , ,CW0745 Aberdeen NC US , +C0752,3,366.0000 ,35.25633 ,-97.49717,APRSWXNET , ,CW0752 Norman OK US , +C0755,3,200.9000 ,35.25200 ,-80.64583,APRSWXNET , ,CW0755 Charlotte NC US , +C0757,3,110.0000 ,34.14717 ,-81.21533,APRSWXNET , ,CW0757 Irmo SC US , +C0762,3,197.0000 ,33.05617 ,-97.07033,APRSWXNET , ,CW0762 Flower Mound TX US , +C0773,3,353.6000 ,37.77105 ,-92.65190,APRSWXNET , ,CW0773 Dove MO US , +C0774,3,13.00000 ,43.87417 ,-69.85983,APRSWXNET , ,CW0774 Brunswick ME US , +C0775,3,221.0000 ,49.79533 ,7.691670 ,APRSWXNET , ,CW0775 Waldbockelheim DE , +C0777,3,5.000000 ,30.49291 ,-81.60544,APRSWXNET , ,CW0777 Jacksonville FL US , +C0783,3,213.0000 ,41.41683 ,-87.15350,APRSWXNET , ,CW0783 Valparaiso IN US , +C0790,3,2.000000 ,38.68633 ,-76.34583,APRSWXNET , ,CW0790 Fairbank MD US , +C0791,3,233.0000 ,37.50300 ,-122.3070,APRSWXNET , ,CW0791 Belmont CA US , +C0795,3,290.0000 ,40.68488 ,-80.28584,APRSWXNET , ,CW0795 Monaca PA US , +C0796,3,271.0000 ,44.75712 ,-93.34351,APRSWXNET , ,CW0796 Savage MN US , +C0799,3,11.00000 ,46.47783 ,-124.0505,APRSWXNET , ,CW0799 Ocean Park WA US , +C0801,3,25.00000 ,43.64170 ,-70.23120,APRSWXNET , ,CW0801 South Portland ME US , +C0803,3,14.30000 ,33.91581 ,-78.50001,APRSWXNET , ,CW0803 Sunset Beach NC US , +C0804,3,30.00000 ,58.29451 ,-134.4310,APRSWXNET , ,CW0804 Juneau AK US , +C0809,3,20.00000 ,37.58300 ,-121.9903,APRSWXNET , ,CW0809 Fremont CA US , +C0810,3,1030.000 ,44.11728 ,-115.9900,APRSWXNET , ,CW0810 Garden Valley ID US , +C0811,3,98.50000 ,41.72833 ,-72.78083,APRSWXNET , ,CW0811 Farmington CT US , +C0812,3,121.0000 ,32.36471 ,-96.09266,APRSWXNET , ,CW0812 Mabank TX US , +C0814,3,866.0000 ,34.51117 ,-84.34083,APRSWXNET , ,CW0814 Jasper GA US , +C0815,3,234.7000 ,36.10016 ,-87.03679,APRSWXNET , ,CW0815 Pegram TN US , +C0817,3,172.0000 ,33.15533 ,-97.13200,APRSWXNET , ,CW0817 Denton TX US , +C0825,3,183.0000 ,44.39567 ,-122.7022,APRSWXNET , ,CW0825 Sweet Home OR US , +C0834,3,595.0000 ,46.62767 ,-99.14200,APRSWXNET , ,CW0834 Gackle ND US , +C0835,3,300.0000 ,47.47617 ,5.135830 ,APRSWXNET , ,CW0835 Dijon FR , +C0845,3,64.00000 ,42.24600 ,-72.67633,APRSWXNET , ,CW0845 Easthampton MA US , +C0856,3,26.00000 ,30.06617 ,-95.19850,APRSWXNET , ,CW0856 Kingwood TX US , +C0857,3,430.0000 ,42.99700 ,-72.01200,APRSWXNET , ,CW0857 Hancock NH US , +C0858,3,16.00000 ,40.84200 ,-74.08300,APRSWXNET , ,CW0858 Wood Ridge NJ US , +C0861,3,42.70000 ,40.49782 ,-74.65404,APRSWXNET , ,CW0861 Hillsborough NJ US , +C0863,3,129.5000 ,42.09383 ,-71.57033,APRSWXNET , ,CW0863 Mendon MA US , +C0865,3,183.0000 ,32.74917 ,-97.19133,APRSWXNET , ,CW0865 Fort Worth TX US , +C0866,3,24.00000 ,31.27117 ,-92.49633,APRSWXNET , ,CW0866 Alexandria LA US , +C0870,3,56.00000 ,48.46909 ,-123.3895,APRSWXNET , ,CW0870 Victoria BC CA , +C0875,3,201.0000 ,21.29967 ,-157.7978,APRSWXNET , ,CW0875 Honolulu HI US , +C0877,3,171.0000 ,35.75867 ,-79.10033,APRSWXNET , ,CW0877 Bynum NC US , +C0887,3,442.0000 ,38.07235 ,-120.5657,APRSWXNET , ,CW0887 Angels Camp CA US , +C0893,3,2180.000 ,39.86000 ,-105.2713,APRSWXNET , ,CW0893 Coal Creek Canyon CO US , +C0900,3,51.00000 ,30.44591 ,-84.29937,APRSWXNET , ,FSUMET Tallahassee FL US , +C0915,3,4.000000 ,25.71667 ,-80.27083,APRSWXNET , ,PONCE Coral Gables FL US , +C0921,3,15.00000 ,24.95809 ,-80.57163,APRSWXNET , ,CW0921 Islamorada FL US , +C0922,3,15.00000 ,24.83978 ,-80.79163,APRSWXNET , ,CW0922 FKAA-LongKey FL US , +C0923,3,5.200000 ,24.77059 ,-80.90732,APRSWXNET , ,CW0923 Duck Key FL US , +C0924,3,15.00000 ,24.66066 ,-81.41114,APRSWXNET , ,CW0924 FKAA-Ramrod FL US , +C0925,3,5.000000 ,24.64775 ,-81.48120,APRSWXNET , ,CW0925 Cudjoe Key FL US , +C0927,3,35.00000 ,28.68450 ,-81.46617,APRSWXNET , ,CW0927 Apopka FL US , +C0929,3,133.0000 ,48.90383 ,1.718330 ,APRSWXNET , ,CW0929 Arouville les mantes FR , +C0930,3,1277.100 ,35.08673 ,-83.17904,APRSWXNET , ,CW0930 Highlands NC US , +C0933,3,63.00000 ,31.91028 ,34.79246 ,APRSWXNET , ,CW0933 Nes Tziona IL , +C0934,3,17.00000 ,42.48083 ,-70.94917,APRSWXNET , ,CW0934 Lynn MA US , +C0937,3,69.00000 ,51.09883 ,5.586670 ,APRSWXNET , ,CW0937 Bree BE , +C0947,3,32.00000 ,37.16920 ,-76.47130,APRSWXNET , ,CW0947 Yorktown VA US , +C0949,3,15.00000 ,51.07083 ,4.703670 ,APRSWXNET , ,CW0949 Heist-op-den-Berg BE , +C0956,3,325.5000 ,39.44889 ,-80.16333,APRSWXNET , ,CW0956 Fairmont WV US , +C0957,3,731.5000 ,38.92028 ,-79.52222,APRSWXNET , ,CW0957 Harman WV US , +C0958,3,1236.000 ,31.91750 ,-106.4380,APRSWXNET , ,CW0958 El Paso TX US , +C0962,3,41.00000 ,41.94195 ,-70.66290,APRSWXNET , ,CW0962 Plymouth MA US , +C0963,3,153.0000 ,37.66717 ,-122.4878,APRSWXNET , ,CW0963 Daly City CA US , +C0964,3,210.0000 ,30.62330 ,-97.58367,APRSWXNET , ,CW0964 Georgetown TX US , +C0965,3,586.0000 ,40.59567 ,-98.39783,APRSWXNET , ,CW0965 Hastings NE US , +C0987,3,230.0000 ,33.95417 ,-117.7088,APRSWXNET , ,CW0987 Chino Hills CA US , +C0988,3,221.0000 ,46.19867 ,-119.9643,APRSWXNET , ,CW0988 Mabton WA US , +C0990,3,192.0000 ,39.63673 ,141.0963 ,APRSWXNET , ,CW0990 Morioka JP , +C1000,3,129.0000 ,36.08890 ,-119.0576,APRSWXNET , ,CW1000 Porterville CA US , +C1002,3,65.00000 ,47.29617 ,-122.5208,APRSWXNET , ,CW1002 Tacoma WA US , +C1014,3,272.0000 ,42.20783 ,-88.35433,APRSWXNET , ,CW1014 Crystal Lake IL US , +C1017,3,14.00000 ,42.41450 ,-71.14967,APRSWXNET , ,CW1017 Arlington MA US , +C1018,3,9.100000 ,28.06200 ,-82.43450,APRSWXNET , ,CW1018 Tampa FL US , +C1019,3,1553.000 ,34.61367 ,-112.3330,APRSWXNET , ,CW1019 Prescott Valley AZ US , +C1020,3,1190.200 ,35.16500 ,-118.5040,APRSWXNET , ,CW1020 Tehachapi CA US , +C1022,3,158.5000 ,37.92700 ,-121.9262,APRSWXNET , ,CW1022 Clayton CA US , +C1028,3,6.000000 ,29.46667 ,-95.22283,APRSWXNET , ,CW1028 Friendswood TX US , +C1032,3,110.0000 ,39.43000 ,-76.63300,APRSWXNET , ,CW1032 Timonium MD US , +C1033,3,185.9000 ,36.23470 ,-86.38170,APRSWXNET , ,CW1033 Lebanon TN US , +C1034,3,515.0000 ,47.44533 ,9.141170 ,APRSWXNET , ,CW1034 Niederuzwil CH , +C1035,3,71.00000 ,48.12499 ,-122.7620,APRSWXNET , ,CW1035 Port Townsend WA US , +C1043,3,1281.000 ,43.64583 ,-121.5695,APRSWXNET , ,CW1043 La Pine OR US , +C1050,3,232.0000 ,35.48750 ,-80.86283,APRSWXNET , ,CW1050 Cornelius NC US , +C1052,3,169.0000 ,32.35200 ,-96.62083,APRSWXNET , ,CW1052 Ennis TX US , +C1053,3,9.500000 ,40.37292 ,-74.38190,APRSWXNET , ,CW1053 Monroe Twp NJ US , +C1057,3,205.0000 ,42.75517 ,-87.81733,APRSWXNET , ,CW1057 Racine WI US , +C1059,3,260.0000 ,50.56667 ,9.566670 ,APRSWXNET , ,CW1059 Frankfurt DE , +C1060,3,88.00000 ,49.71967 ,8.469670 ,APRSWXNET , ,CW1060 Mannheim DE , +C1064,3,408.0000 ,43.40050 ,-72.12533,APRSWXNET , ,CW1064 Newport NH US , +C1066,3,20.00000 ,53.80350 ,-3.021330,APRSWXNET , ,CW1066 Blackpool UK , +C1068,3,3.000000 ,19.34000 ,-81.38500,APRSWXNET , ,CW1068 Georgetown KY , +KNGA2,3,140.0000 ,61.61917 ,-149.3687,APRSWXNET , ,CW1074 Wasilla AK US , +C1075,3,98.00000 ,45.83950 ,-119.7070,APRSWXNET , ,CW1075 Boardman OR US , +C1084,3,35.10000 ,38.37450 ,-76.40533,APRSWXNET , ,CW1084 Lusby MD US , +C1085,3,175.0000 ,40.91911 ,-77.04743,APRSWXNET , ,CW1085 Mifflinburg PA US , +C1091,3,10.00000 ,39.96617 ,-74.11700,APRSWXNET , ,CW1091 Toms River NJ US , +C1096,3,205.0000 ,42.98133 ,-87.88667,APRSWXNET , ,CW1096 Bay View WI US , +C1097,3,107.0000 ,42.54000 ,-71.26967,APRSWXNET , ,CW1097 Billerica MA US , +C1099,3,7.000000 ,40.74817 ,-74.15183,APRSWXNET , ,HSNN4 Harrison NJ US , +C1100,3,576.0000 ,50.49926 ,-104.6789,APRSWXNET , ,CW1100 Regina SK CA , +C1102,3,898.0000 ,45.57000 ,-117.5300,APRSWXNET , ,CW1102 Wallowa OR US , +C1104,3,170.0000 ,32.32617 ,-96.62667,APRSWXNET , ,CW1104 Ennis TX US , +C1108,3,382.0000 ,38.78567 ,-97.62233,APRSWXNET , ,CW1108 Salina KS US , +C1110,3,10.00000 ,-19.29972,146.8192 ,APRSWXNET , ,CW1110 Townsville AU , +C1111,3,222.0000 ,41.36050 ,-82.41450,APRSWXNET , ,CW1111 Vermilion Twnp OH US , +C1112,3,136.0000 ,47.22929 ,-122.2604,APRSWXNET , ,CW1112 Edgewood WA US , +C1115,3,70.00000 ,51.36183 ,-0.148500,APRSWXNET , ,CW1115 Wallington UK , +C1118,3,23.20000 ,29.06089 ,-81.97588,APRSWXNET , ,CW1118 Candler FL US , +C1120,3,12.00000 ,58.01450 ,11.58633 ,APRSWXNET , ,CW1120 Goteborg SE , +C1122,3,1280.000 ,36.90483 ,-111.4732,APRSWXNET , ,CW1122 Page AZ US , +C1123,3,122.1000 ,37.97550 ,-87.42667,APRSWXNET , ,CW1123 Newburgh IN US , +C1125,3,154.0000 ,39.44467 ,-87.36667,APRSWXNET , ,CW1125 Terre Haute IN US , +C1129,3,65.00000 ,42.59283 ,-71.38667,APRSWXNET , ,CW1129 Chelmsford MA US , +C1130,3,1585.000 ,37.02867 ,-112.4312,APRSWXNET , ,CW1130 Kanab UT US , +C1134,3,457.0000 ,42.14750 ,-97.44950,APRSWXNET , ,CW1134 Pierce NE US , +C1136,3,34.00000 ,60.19033 ,21.89533 ,APRSWXNET , ,CW1136 Nagu/Nauvo FI , +C1138,3,629.0000 ,47.70133 ,-117.1013,APRSWXNET , ,CW1138 Otis Orchards WA US , +C1139,3,249.0000 ,41.45533 ,-74.51750,APRSWXNET , ,CW1139 Middletown NY US , +C1141,3,6.000000 ,30.40917 ,-87.39133,APRSWXNET , ,CW1141 Pensacola FL US , +C1151,3,491.0000 ,48.08501 ,-90.74970,APRSWXNET , ,CW1151 Grand Marais MN US , +C1157,3,221.0000 ,52.78666 ,-1.575000,APRSWXNET , ,CW1157 Swadlincote UK , +C1160,3,14.00000 ,51.96667 ,6.283330 ,APRSWXNET , ,CW1160 Doetinchem NL , +C1161,3,272.3000 ,42.74217 ,-74.09267,APRSWXNET , ,CW1161 Duanesburg NY US , +C1162,3,423.3000 ,47.90344 ,-91.83713,APRSWXNET , ,CW1162 Ely MN US , +C1169,3,2243.000 ,39.09940 ,-104.7640,APRSWXNET , ,CW1169 Monument CO US , +C1172,3,68.00000 ,58.21454 ,11.92798 ,APRSWXNET , ,CW1172 Uddevalla SE , +C1173,3,1060.700 ,35.11370 ,-83.10360,APRSWXNET , ,CW1173 Cashiers NC US , +C1187,3,316.0000 ,39.50717 ,-85.24533,APRSWXNET , ,CW1187 Laurel IN US , +C1188,3,184.0000 ,33.14533 ,-96.87700,APRSWXNET , ,CW1188 Frisco TX US , +C1190,3,42.10000 ,29.90200 ,-95.67467,APRSWXNET , ,CW1190 Katy TX US , +C1196,3,40.00000 ,-33.93062,150.9455 ,APRSWXNET , ,CW1196 Moorebank AU , +C1200,3,281.9000 ,43.06950 ,-89.42833,APRSWXNET , ,CW1200 Madison WI US , +C1203,3,723.0000 ,35.20000 ,-82.36617,APRSWXNET , ,CW1203 Saluda NC US , +C1204,3,188.1000 ,31.07833 ,-97.38950,APRSWXNET , ,CW1204 Temple TX US , +C1209,3,37.00000 ,30.45700 ,-84.28583,APRSWXNET , ,CW1209 Tallahassee FL US , +C1216,3,375.0000 ,42.27083 ,-94.73033,APRSWXNET , ,CW1216 Lake City IA US , +C1217,3,769.0000 ,44.31117 ,10.76500 ,APRSWXNET , ,CW1217 Pavullo nel Frignano IT , +C1219,3,419.0000 ,44.38083 ,-72.58300,APRSWXNET , ,CW1219 Worcester VT US , +C1226,3,469.4000 ,34.13667 ,-117.5938,APRSWXNET , ,CW1226 Alta Loma CA US , +C1227,3,311.4000 ,42.39583 ,-72.14250,APRSWXNET , ,CW1227 Barre MA US , +C1231,3,11.00000 ,30.37633 ,-87.47667,APRSWXNET , ,CW1231 Lillian AL US , +C1234,3,444.0000 ,48.63217 ,9.047500 ,APRSWXNET , ,CW1234 Breitenstein DE , +C1235,3,106.0000 ,44.48633 ,-73.10050,APRSWXNET , ,CW1235 Essex Junction VT US , +C1238,3,349.0000 ,43.38172 ,-92.92341,APRSWXNET , ,CW1238 St.Ansgar IA US , +C1241,3,289.6000 ,36.11250 ,-80.27300,APRSWXNET , ,CW1241 Winston-Salem NC US , +C1245,3,70.00000 ,60.24250 ,24.07250 ,APRSWXNET , ,CW1245 Lohja FI , +C1246,3,189.0000 ,34.45883 ,-86.96950,APRSWXNET , ,CW1246 Hartselle AL US , +C1247,3,1325.000 ,46.53917 ,-111.9558,APRSWXNET , ,CW1247 Helena MT US , +C1248,3,390.0000 ,37.11867 ,-93.36417,APRSWXNET , ,CW1248 Battlefield MO US , +C1254,3,153.9000 ,-38.19300,142.9265 ,APRSWXNET , ,CW1254 Noorat VIC AU , +C1258,3,10.70000 ,30.52182 ,-87.46558,APRSWXNET , ,CW1258 Seminole AL US , +C1259,3,173.0000 ,44.00700 ,-70.36250,APRSWXNET , ,CW1259 Poland ME US , +C1260,3,46.00000 ,51.00950 ,5.841330 ,APRSWXNET , ,CW1260 Limbricht NL , +C1264,3,295.0000 ,-38.13333,176.2000 ,APRSWXNET , ,CW1264 Rotorua NZ , +C1268,3,79.00000 ,45.36833 ,-122.7663,APRSWXNET , ,CW1268 Tualatin OR US , +C1273,3,16.00000 ,54.84667 ,11.17233 ,APRSWXNET , ,CW1273 Nakskov DK , +C1274,3,356.6000 ,37.99600 ,-92.09380,APRSWXNET , ,CW1274 Dixon MO US , +C1275,3,166.1000 ,32.96898 ,-96.33896,APRSWXNET , ,CW1275 Royse City TX US , +C1276,3,189.0000 ,42.35833 ,-83.28617,APRSWXNET , ,CW1276 Redford Twp MI US , +C1278,3,20.00000 ,51.08950 ,3.285500 ,APRSWXNET , ,CW1278 Brugge BE , +C1282,3,341.4000 ,45.39950 ,-91.85360,APRSWXNET , ,CW1282 Barron WI US , +C1283,3,40.20000 ,42.10799 ,-70.92440,APRSWXNET , ,CW1283 Abington MA US , +C1285,3,245.4000 ,33.65300 ,-83.74720,APRSWXNET , ,CW1285 Social Circle GA US , +C1287,3,826.0000 ,32.26250 ,-110.7245,APRSWXNET , ,CW1287 Tucson AZ US , +C1291,3,172.0000 ,43.12633 ,-77.69717,APRSWXNET , ,CW1291 Rochester NY US , +C1292,3,160.0000 ,48.74867 ,1.931670 ,APRSWXNET , ,CW1292 Coignieres FR , +C1300,3,280.0000 ,45.32800 ,7.723670 ,APRSWXNET , ,CW1300 Rivarolo C.se IT , +C1307,3,55.00000 ,-16.56750,145.4128 ,APRSWXNET , ,CW1307 Cairns AU , +C1309,3,121.9000 ,29.68000 ,-97.65000,APRSWXNET , ,CW1309 Luling TX US , +C1311,3,152.0000 ,33.51167 ,-117.7125,APRSWXNET , ,CW1311 Laguna Niguel CA US , +C1317,3,60.40000 ,39.55750 ,-75.89750,APRSWXNET , ,CW1317 Elkton MD US , +C1320,3,15.00000 ,55.49583 ,9.754170 ,APRSWXNET , ,CW1320 Middlefart DK , +C1321,3,31.00000 ,41.74550 ,-70.08167,APRSWXNET , ,CW1321 Brewster MA US , +C1322,3,181.0000 ,42.61422 ,-82.91094,APRSWXNET , ,CW1322 Clinton Tnsp. MI US , +C1323,3,165.0000 ,39.64025 ,-77.69814,APRSWXNET , ,CW1323 Hagerstown MD US , +C1324,3,119.0000 ,-33.75298,151.0256 ,APRSWXNET , ,CW1324 Sydney Hills AU , +C1327,3,27.30000 ,28.94172 ,-82.41675,APRSWXNET , ,CW1327 Holder FL US , +C1328,3,410.0000 ,42.51367 ,-72.85083,APRSWXNET , ,CW1328 Ashfield MA US , +C1330,3,2.000000 ,54.98333 ,11.88333 ,APRSWXNET , ,CW1330 Vordingborg DK , +C1331,3,186.0000 ,32.71200 ,-96.89750,APRSWXNET , ,CW1331 Dallas TX US , +C1334,3,963.0000 ,48.51250 ,-110.9637,APRSWXNET , ,CW1334 Chester MT US , +C1335,3,303.0000 ,43.40200 ,-88.36700,APRSWXNET , ,CW1335 Allenton WI US , +C1336,3,1083.600 ,35.26717 ,-114.0438,APRSWXNET , ,CW1336 Kingman AZ US , +C1340,3,610.0000 ,-23.21399,-45.91366,APRSWXNET , ,CW1340 Sao Jose Campos BR , +C1341,3,19.00000 ,40.11083 ,-74.14333,APRSWXNET , ,CW1341 South Howell NJ US , +C1344,3,120.0000 ,41.97244 ,-71.92943,APRSWXNET , ,CW1344 Thompson CT US , +C1351,3,1574.000 ,30.27660 ,-103.5800,APRSWXNET , ,CW1351 Alpine TX US , +C1353,3,46.00000 ,30.60797 ,-88.25854,APRSWXNET , ,CW1353 Mobile AL US , +C1355,3,312.0000 ,39.83620 ,-84.42087,APRSWXNET , ,CW1355 Brookville OH US , +C1356,3,379.5000 ,33.55367 ,-112.0597,APRSWXNET , ,CW1356 Phoenix AZ US , +C1357,3,595.3000 ,41.24450 ,-75.44300,APRSWXNET , ,CW1357 Gouldsboro PA US , +C1362,3,10.00000 ,37.60250 ,-122.1228,APRSWXNET , ,CW1362 Hayward CA US , +C1370,3,165.0000 ,43.03750 ,-77.10783,APRSWXNET , ,CW1370 Newark NY US , +C1377,3,358.0000 ,35.22218 ,-97.32708,APRSWXNET , ,CW1377 Norman OK US , +C1378,3,40.00000 ,42.23517 ,-71.02750,APRSWXNET , ,CW1378 Boston MA US , +C1390,3,22.00000 ,41.28583 ,-72.87250,APRSWXNET , ,CW1390 East Haven CT US , +C1393,3,395.0000 ,37.21050 ,-121.9580,APRSWXNET , ,CW1393 Los Gatos CA US , +C1394,3,3.000000 ,48.80090 ,-122.7075,APRSWXNET , ,CW1394 Sandy Pt. Shores WA US , +C1395,3,323.0000 ,45.49833 ,-119.8288,APRSWXNET , ,CW1395 Ione OR US , +C1397,3,999.7000 ,39.23080 ,-120.9840,APRSWXNET , ,CW1397 Nevada City CA US , +C1399,3,6.100000 ,30.62000 ,-88.09917,APRSWXNET , ,CW1399 Mobile/Dog River AL US , +C1403,3,1124.000 ,44.13167 ,-119.9663,APRSWXNET , ,CW1403 Paulina OR US , +C1404,3,320.0000 ,45.55750 ,-69.56533,APRSWXNET , ,CW1404 Beaver Cove ME US , +C1407,3,20.00000 ,27.55967 ,-80.38917,APRSWXNET , ,CW1407 Vero Beach FL US , +C1411,3,65.50000 ,42.79533 ,-73.82283,APRSWXNET , ,CW1411 Vischer Ferry NY US , +C1415,3,1336.000 ,40.68583 ,-112.0105,APRSWXNET , ,CW1415 West Valley City UT US , +C1417,3,242.0000 ,40.64500 ,-88.78050,APRSWXNET , ,CW1417 Lexington IL US , +C1419,3,300.0000 ,43.03724 ,-88.22178,APRSWXNET , ,CW1419 Pewaukee WI US , +C1423,3,260.0000 ,39.90200 ,-85.92367,APRSWXNET , ,CW1423 McCordsville IN US , +C1428,3,2352.000 ,38.54950 ,-106.9283,APRSWXNET , ,CW1428 Gunnison CO US , +C1430,3,1177.000 ,45.42700 ,-117.2922,APRSWXNET , ,CW1430 Enterprise OR US , +C1434,3,1500.000 ,-26.04550,28.10617 ,APRSWXNET , ,CW1434 Buccleuch ZA , +C1439,3,131.9000 ,40.40450 ,-76.47533,APRSWXNET , ,CW1439 Jonestown PA US , +C1440,3,225.1000 ,40.10795 ,-88.29537,APRSWXNET , ,CW1440 Champaign IL US , +C1450,3,26.50000 ,29.67320 ,-82.70120,APRSWXNET , ,CW1450 Trenton FL US , +C1454,3,252.0000 ,39.96833 ,-86.13667,APRSWXNET , ,CW1454 Indianapolis IN US , +C1456,3,545.0000 ,47.04000 ,-120.5172,APRSWXNET , ,CW1456 Ellensburg WA US , +C1459,3,213.0000 ,39.63333 ,-77.60000,APRSWXNET , ,CW1459 Smithsburg MD US , +C1461,3,20.00000 ,54.58882 ,-1.290300,APRSWXNET , ,CW1461 Billingham UK , +C1464,3,430.0000 ,50.12717 ,7.015830 ,APRSWXNET , ,CW1464 Lutzerath DE , +C1466,3,293.0000 ,33.44917 ,-112.4092,APRSWXNET , ,CW1466 Goodyear AZ US , +C1469,3,137.2000 ,42.34700 ,-71.54467,APRSWXNET , ,CW1469 Marlborough MA US , +C1470,3,97.00000 ,35.98783 ,-78.82917,APRSWXNET , ,CW1470 Durham NC US , +C1473,3,610.0000 ,41.90550 ,-79.04383,APRSWXNET , ,CW1473 Russell PA US , +C1475,3,210.0000 ,29.45500 ,-98.53917,APRSWXNET , ,CW1475 San Antonio TX US , +C1478,3,9.000000 ,30.13368 ,-92.06572,APRSWXNET , ,CW1478 Lafayette LA US , +EADA2,3,101.5000 ,61.29883 ,-149.5272,APRSWXNET , ,CW1480 Eagle River AK US , +C1484,3,82.00000 ,34.27678 ,-119.1833,APRSWXNET , ,CW1484 Ventura CA US , +C1485,3,80.00000 ,41.67333 ,-71.61732,APRSWXNET , ,CW1485 Coventry RI US , +C1487,3,317.0000 ,39.94200 ,-83.80500,APRSWXNET , ,CW1487 Springfield OH US , +C1490,3,98.00000 ,42.93583 ,-72.53450,APRSWXNET , ,CW1490 E.Dummerston VT US , +C1492,3,335.0000 ,42.91083 ,-72.38533,APRSWXNET , ,CW1492 Spofford NH US , +C1497,3,262.0000 ,41.26083 ,-85.98167,APRSWXNET , ,CW1497 Atwood IN US , +C1500,3,223.0000 ,39.10033 ,-78.18033,APRSWXNET , ,CW1500 Winchester VA US , +C1502,3,186.0000 ,42.89750 ,-85.77883,APRSWXNET , ,CW1502 Grandville MI US , +C1505,3,2673.000 ,38.95417 ,-105.2664,APRSWXNET , ,CW1505 Florissant CO US , +C1507,3,312.0000 ,39.25633 ,-94.54050,APRSWXNET , ,CW1507 Kansas City MO US , +C1509,3,211.0000 ,41.82991 ,-86.25397,APRSWXNET , ,CW1509 Niles MI US , +LAGA2,3,8.000000 ,56.30929 ,-158.5366,APRSWXNET , ,CW1514 Chignik Lagoon AK US , +C1517,3,799.0000 ,43.66946 ,-116.2653,APRSWXNET , ,CW1517 Boise ID US , +C1521,3,5.000000 ,33.67200 ,-117.9712,APRSWXNET , ,CW1521 Huntington Beach CA US , +C1522,3,838.0000 ,37.42917 ,-119.8283,APRSWXNET , ,CW1522 Mariposa CA US , +C1523,3,380.0000 ,30.28250 ,-98.06717,APRSWXNET , ,CW1523 Dripping Springs TX US , +C1525,3,61.00000 ,43.78164 ,11.28884 ,APRSWXNET , ,CW1525 Firenze IT , +C1527,3,165.0000 ,34.50400 ,-93.05500,APRSWXNET , ,CW1527 Hot Springs AR US , +C1529,3,40.00000 ,-27.62283,152.7563 ,APRSWXNET , ,CW1529 Ipswich AU , +C1532,3,19.00000 ,41.34600 ,-72.13208,APRSWXNET , ,CW1532 New London CT US , +C1542,3,20.00000 ,-43.04867,173.0758 ,APRSWXNET , ,CW1542 Motunau Beach NZ , +C1544,3,4.600000 ,29.50608 ,-81.25245,APRSWXNET , ,CW1544 Palmcoast FL US , +C1546,3,1189.200 ,33.39750 ,-110.7730,APRSWXNET , ,CW1546 Globe AZ US , +C1550,3,26.00000 ,39.23667 ,-76.69700,APRSWXNET , ,CW1550 Halethorpe MD US , +C1555,3,1.000000 ,53.15948 ,5.668090 ,APRSWXNET , ,CW1555 Huins NL , +C1558,3,197.0000 ,47.06055 ,-122.1816,APRSWXNET , ,CW1558 Orting WA US , +C1562,3,94.00000 ,52.59332 ,-1.085030,APRSWXNET , ,CW1562 Leicester UK , +C1567,3,440.0000 ,-44.48917,169.9647 ,APRSWXNET , ,CW1567 Omarama NZ , +C1569,3,219.0000 ,42.32667 ,-88.01683,APRSWXNET , ,CW1569 Grayslake IL US , +C1575,3,1624.000 ,39.75283 ,-105.0405,APRSWXNET , ,CW1575 Denver CO US , +C1580,3,237.1000 ,29.47282 ,-98.63937,APRSWXNET , ,CW1580 San Antonio TX US , +C1588,3,880.9000 ,39.24233 ,-121.0546,APRSWXNET , ,CW1588 Nevada City CA US , +C1595,3,2100.000 ,38.96200 ,-104.7703,APRSWXNET , ,CW1595 ColoradoSprings CO US , +C1601,3,1409.000 ,34.07083 ,-106.9097,APRSWXNET , ,CW1601 Socorro NM US , +C1602,3,69.00000 ,39.74083 ,-75.72083,APRSWXNET , ,CW1602 Newark DE US , +C1605,3,189.0000 ,39.46700 ,-76.72800,APRSWXNET , ,CW1605 Reisterstown MD US , +C1607,3,146.0000 ,35.77717 ,-78.77467,APRSWXNET , ,CW1607 Cary NC US , +C1614,3,925.7000 ,34.48500 ,-117.3145,APRSWXNET , ,CW1614 Victorville CA US , +C1615,3,13.00000 ,30.21250 ,-92.05967,APRSWXNET , ,CW1615 Lafayette LA US , +C1616,3,294.0000 ,38.96550 ,-95.29217,APRSWXNET , ,CW1616 Lawrence KS US , +C1617,3,2266.000 ,38.95000 ,-104.6003,APRSWXNET , ,CW1617 Falcon CO US , +C1619,3,59.40000 ,38.29333 ,-77.41700,APRSWXNET , ,CW1619 Falmouth VA US , +C1620,3,40.00000 ,39.48367 ,-76.30133,APRSWXNET , ,CW1620 Abingdon MD US , +C1621,3,1061.000 ,46.35417 ,-116.5317,APRSWXNET , ,CW1621 Reubens ID US , +C1625,3,48.20000 ,48.30667 ,-122.6772,APRSWXNET , ,CW1625 Oak Harbor WA US , +C1627,3,360.0000 ,29.64050 ,-98.49700,APRSWXNET , ,CW1627 San Antonio TX US , +C1629,3,92.00000 ,31.84349 ,-94.96844,APRSWXNET , ,CW1629 Reklaw TX US , +C1630,3,67.00000 ,34.30000 ,-91.30000,APRSWXNET , ,CW1630 DeWitt AR US , +C1631,3,285.0000 ,42.30288 ,-75.78885,APRSWXNET , ,CW1631 Greene NY US , +C1634,3,110.0000 ,37.85600 ,-122.2437,APRSWXNET , ,CW1634 Berkeley CA US , +C1648,3,71.00000 ,40.20100 ,-75.35750,APRSWXNET , ,CW1648 Worcester PA US , +C1650,3,1700.500 ,40.32333 ,-105.1817,APRSWXNET , ,CW1650 Berthoud CO US , +C1652,3,7.000000 ,52.06550 ,5.382830 ,APRSWXNET , ,CW1652 Maarn NL , +C1656,3,204.2000 ,43.14028 ,-77.85306,APRSWXNET , ,CW1656 Brockport NY US , +C1658,3,304.0000 ,41.55417 ,-96.13200,APRSWXNET , ,CW1658 Blair NE US , +C1662,3,172.0000 ,39.68669 ,-77.75758,APRSWXNET , ,CW1662 Hagerstown MD US , +C1663,3,192.0000 ,51.05000 ,0.168830 ,APRSWXNET , ,CW1663 Crowborough UK , +C1667,3,6.000000 ,38.72433 ,-75.10133,APRSWXNET , ,CW1667 Rehoboth Beach DE US , +C1672,3,165.0000 ,39.46717 ,-78.00744,APRSWXNET , ,CW1672 Martinsburg WV US , +C1675,3,217.0000 ,50.60754 ,5.962450 ,APRSWXNET , ,CW1675 Spa BE , +C1676,3,143.0000 ,39.17755 ,-76.96466,APRSWXNET , ,CW1676 Highland MD US , +C1683,3,132.0000 ,41.34197 ,-73.03942,APRSWXNET , ,CW1683 Woodbridge CT US , +C1697,3,228.6000 ,41.64250 ,-86.04117,APRSWXNET , ,CW1697 Jamestown IN US , +C1700,3,60.00000 ,60.18383 ,24.00300 ,APRSWXNET , ,CW1700 Lohja FI , +C1701,3,2.000000 ,38.31700 ,-76.45133,APRSWXNET , ,CW1701 Solomons MD US , +C1704,3,1423.400 ,31.91833 ,-109.9075,APRSWXNET , ,CW1704 Pearce AZ US , +C1706,3,7.700000 ,38.55500 ,-76.01117,APRSWXNET , ,CW1706 Cambridge MD US , +C1707,3,297.2000 ,39.47410 ,-94.57555,APRSWXNET , ,CW1707 Trimble MO US , +C1708,3,125.0000 ,40.25200 ,-75.12500,APRSWXNET , ,CW1708 Warrington PA US , +C1709,3,254.4000 ,41.23715 ,-89.93478,APRSWXNET , ,CW1709 Kewanee IL US , +C1710,3,84.00000 ,-41.26000,173.3000 ,APRSWXNET , ,CW1710 Nelson NZ , +C1712,3,353.6000 ,40.89930 ,-77.45920,APRSWXNET , ,CW1712 Aaronsburg PA US , +C1713,3,50.00000 ,52.75633 ,-1.554830,APRSWXNET , ,CW1713 Church Gresley UK , +C1719,3,3.000000 ,25.11917 ,-80.41883,APRSWXNET , ,CW1719 Key Largo FL US , +C1720,3,1556.000 ,40.26450 ,-104.9978,APRSWXNET , ,CW1720 Mead CO US , +C1721,3,1.000000 ,27.83333 ,-82.65000,APRSWXNET , ,CW1721 St. Petersburg FL US , +C1723,3,287.0000 ,42.31217 ,-88.44867,APRSWXNET , ,CW1723 Woodstock IL US , +C1724,3,1417.000 ,39.51667 ,-119.9167,APRSWXNET , ,CW1724 Reno NV US , +C1725,3,360.0000 ,30.21200 ,-98.04033,APRSWXNET , ,CW1725 Dripping Springs TX US , +C1727,3,114.3000 ,41.62100 ,-72.44667,APRSWXNET , ,CW1727 Marlborough CT US , +C1729,3,6.700000 ,38.58033 ,-76.09383,APRSWXNET , ,CW1729 Cambridge MD US , +C1731,3,299.0000 ,38.96883 ,-94.76367,APRSWXNET , ,CW1731 Lenexa KS US , +C1732,3,68.00000 ,41.98333 ,-71.47967,APRSWXNET , ,CW1732 Woonsocket Oak Grove RI US , +C1733,3,4.900000 ,25.70417 ,-80.32867,APRSWXNET , ,CW1733 S. Miami FL US , +C1734,3,15.00000 ,50.72033 ,-1.270330,APRSWXNET , ,CW1734 Newport UK , +C1735,3,219.0000 ,40.86750 ,-74.63000,APRSWXNET , ,CW1735 Succasunna NJ US , +C1738,3,543.0000 ,48.10633 ,11.70833 ,APRSWXNET , ,CW1738 Munich DE , +C1740,3,228.9000 ,40.73083 ,-89.26967,APRSWXNET , ,CW1740 Eureka IL US , +C1744,3,195.1000 ,34.70017 ,-82.30017,APRSWXNET , ,CW1744 Simpsonville SC US , +C1745,3,301.4000 ,34.09783 ,-98.57333,APRSWXNET , ,CW1745 Burkburnett TX US , +C1749,3,468.0000 ,33.02000 ,-99.87200,APRSWXNET , ,CW1749 Stamford TX US , +C1752,3,33.00000 ,-32.39050,115.9500 ,APRSWXNET , ,CW1752 Serpentine AU , +C1753,3,240.0000 ,45.50750 ,-122.7312,APRSWXNET , ,CW1753 Portland OR US , +C1756,3,440.4000 ,39.13300 ,-79.14910,APRSWXNET , ,CW1756 Maysville WV US , +C1763,3,2042.200 ,38.90558 ,-104.6865,APRSWXNET , ,CW1763 Colorado Springs CO US , +C1766,3,231.6000 ,38.53417 ,-122.6828,APRSWXNET , ,CW1766 Santa Rosa CA US , +C1767,3,11.00000 ,38.37231 ,-75.66286,APRSWXNET , ,CW1767 Salisbury MD US , +C1768,3,177.0000 ,43.56417 ,-70.94083,APRSWXNET , ,CW1768 Acton ME US , +C1773,3,184.4000 ,44.21200 ,-71.91633,APRSWXNET , ,CW1773 Lisbon NH US , +C1775,3,210.0000 ,38.21833 ,-92.71283,APRSWXNET , ,CW1775 Lake Ozark MO US , +C1777,3,2.000000 ,26.05967 ,-80.18667,APRSWXNET , ,CW1777 Dania Beach FL US , +C1780,3,694.9000 ,36.92250 ,-81.17283,APRSWXNET , ,CW1780 Wytheville VA US , +C1784,3,752.0000 ,40.69897 ,-3.449200,APRSWXNET , ,CW1784 Guadalajara ES , +C1787,3,530.0000 ,50.98433 ,8.252170 ,APRSWXNET , ,CW1787 Erndtebruck DE , +C1789,3,399.0000 ,39.28833 ,-121.3362,APRSWXNET , ,CW1789 Browns Valley CA US , +C1792,3,114.3000 ,37.27471 ,-122.0229,APRSWXNET , ,CW1792 Saratoga CA US , +C1793,3,1981.200 ,39.39467 ,-104.8055,APRSWXNET , ,CW1793 Castle Rock CO US , +C1794,3,4.000000 ,26.87367 ,-80.06967,APRSWXNET , ,CW1794 Juno Beach FL US , +C1795,3,1337.000 ,44.75847 ,-108.7768,APRSWXNET , ,CW1795 Powell WY US , +C1798,3,17.00000 ,-27.76000,153.1430 ,APRSWXNET , ,CW1798 Logan Village AU , +C1799,3,2026.900 ,38.92583 ,-104.7687,APRSWXNET , ,CW1799 Colorado Springs CO US , +C1800,3,1180.000 ,44.37912 ,-108.0456,APRSWXNET , ,CW1800 Basin WY US , +C1811,3,14.00000 ,42.39004 ,-71.14736,APRSWXNET , ,CW1811 CambridgeCitysense003 MA US , +C1812,3,14.00000 ,42.38975 ,-71.14708,APRSWXNET , ,CW1812 CambridgeCitysenseROS MA US , +C1813,3,15.00000 ,42.39054 ,-71.14773,APRSWXNET , ,CW1813 CambridgeCitysense010 MA US , +C1814,3,15.00000 ,42.39208 ,-71.14872,APRSWXNET , ,CW1814 CambridgeCitysense015 MA US , +C1817,3,5.000000 ,39.58391 ,-75.84270,APRSWXNET , ,CW1817 Elkton MD US , +C1819,3,10.00000 ,28.20133 ,-80.60067,APRSWXNET , ,CW1819 Satellite Beach FL US , +C1821,3,439.0000 ,33.59300 ,-117.0913,APRSWXNET , ,CW1821 Winchester CA US , +C1823,3,60.00000 ,47.70300 ,-122.2380,APRSWXNET , ,CW1823 Kirkland WA US , +C1824,3,20.00000 ,47.99667 ,-122.4800,APRSWXNET , ,CW1824 Langley WA US , +C1826,3,106.7000 ,39.04300 ,-77.01200,APRSWXNET , ,CW1826 Silver Spring MD US , +C1828,3,1036.000 ,34.09533 ,-116.3178,APRSWXNET , ,CW1828 Joshua Tree CA US , +C1831,3,300.0000 ,37.54856 ,15.05564 ,APRSWXNET , ,CW1831 Catania IT , +C1832,3,1289.000 ,46.71425 ,-111.7335,APRSWXNET , ,CW1832 Helena MT US , +C1834,3,26.00000 ,43.39133 ,10.44950 ,APRSWXNET , ,CW1834 Livorno IT , +C1835,3,224.0000 ,41.76300 ,-84.02533,APRSWXNET , ,CW1835 Jasper MI US , +C1837,3,109.7000 ,43.90783 ,-78.92883,APRSWXNET , ,CW1837 Whitby ON CA , +C1839,3,242.0000 ,37.54750 ,15.08417 ,APRSWXNET , ,CW1839 Catania IT , +C1840,3,396.0000 ,35.13460 ,-97.67820,APRSWXNET , ,CW1840 Blanchard OK US , +C1841,3,1700.000 ,43.06467 ,-108.4767,APRSWXNET , ,CW1841 Riverton WY US , +C1842,3,157.9000 ,37.18373 ,-78.13478,APRSWXNET , ,CW1842 Crewe VA US , +C1844,3,210.0000 ,37.13962 ,-122.1267,APRSWXNET , ,CW1844 Boulder Creek CA US , +C1845,3,266.0000 ,38.94074 ,-95.27791,APRSWXNET , ,CW1845 Lawrence KS US , +C1849,3,143.0000 ,34.95250 ,-88.50300,APRSWXNET , ,CW1849 Corinth MS US , +C1851,3,323.0000 ,34.17167 ,-84.22417,APRSWXNET , ,CW1851 Cumming GA US , +C1852,3,20.00000 ,43.87600 ,-69.49433,APRSWXNET , ,CW1852 New Harbor ME US , +C1855,3,81.70000 ,45.18600 ,-122.5873,APRSWXNET , ,CW1855 Liberal OR US , +C1859,3,164.6000 ,39.37230 ,-76.91560,APRSWXNET , ,CW1859 Sykesville MD US , +C1861,3,274.3000 ,34.17550 ,-118.8930,APRSWXNET , ,CW1861 Thousand Oaks CA US , +C1864,3,392.0000 ,35.05200 ,-98.26417,APRSWXNET , ,CW1864 Anadarko OK US , +C1874,3,966.2000 ,44.10000 ,-103.0667,APRSWXNET , ,CW1874 Box Elder SD US , +C1877,3,154.0000 ,36.27833 ,-86.54667,APRSWXNET , ,CW1877 Mt. Juliet TN US , +C1880,3,3.000000 ,52.63633 ,4.737500 ,APRSWXNET , ,CW1880 Alkmaar NL , +C1882,3,17.00000 ,59.26200 ,5.183830 ,APRSWXNET , ,CW1882 aakrehamn NO , +C1890,3,335.0000 ,48.61200 ,-93.41467,APRSWXNET , ,CW1890 Ft. Frances CA , +C1892,3,19.80000 ,37.73217 ,-121.4297,APRSWXNET , ,CW1892 Tracy CA US , +C1893,3,991.0000 ,44.28033 ,-120.9013,APRSWXNET , ,CW1893 Prineville Airpt. OR US , +C1897,3,534.0000 ,39.15383 ,-121.1350,APRSWXNET , ,CW1897 Grass Valley CA US , +C1898,3,277.0000 ,44.99054 ,-93.07657,APRSWXNET , ,CW1898 St. Paul MN US , +C1903,3,33.00000 ,41.61667 ,-71.25000,APRSWXNET , ,CW1903 Portsmouth RI US , +C1904,3,1388.000 ,46.95167 ,-112.6880,APRSWXNET , ,CW1904 Lincoln MT US , +C1906,3,244.0000 ,38.79090 ,-91.11600,APRSWXNET , ,CW1906 Warrenton MO US , +C1909,3,553.8000 ,39.75917 ,-121.6113,APRSWXNET , ,CW1909 Paradise CA US , +C1912,3,12.00000 ,27.86965 ,-82.24850,APRSWXNET , ,CW1912 Valrico FL US , +C1913,3,28.00000 ,28.91855 ,-81.94625,APRSWXNET , ,CW1913 The Villages FL US , +C1914,3,72.00000 ,-41.33353,174.8210 ,APRSWXNET , ,CW1914 Wellington NZ , +C1921,3,36.60000 ,28.48867 ,-81.77950,APRSWXNET , ,CW1921 Clermont FL US , +C1923,3,15.00000 ,50.93977 ,4.066310 ,APRSWXNET , ,CW1923 Aalst BE , +C1930,3,323.0000 ,43.79392 ,-90.37279,APRSWXNET , ,CW1930 Kendall WI US , +C1931,3,111.3000 ,40.79167 ,-74.51883,APRSWXNET , ,CW1931 Morristown NJ US , +C1933,3,220.0000 ,51.15633 ,7.067170 ,APRSWXNET , ,CW1933 Solingen DE , +C1937,3,198.0000 ,34.76117 ,-87.11217,APRSWXNET , ,CW1937 Athens AL US , +C1943,3,70.00000 ,47.67400 ,-122.2882,APRSWXNET , ,CW1943 Seattle WA US , +C1950,3,182.9000 ,37.17130 ,-122.1382,APRSWXNET , ,CW1950 Boulder Creek CA US , +C1952,3,130.5000 ,34.99102 ,-92.61250,APRSWXNET , ,CW1952 Bigelow AR US , +C1961,3,247.2000 ,36.69500 ,-95.82717,APRSWXNET , ,CW1961 Bartlesville OK US , +C1965,3,1.000000 ,27.83550 ,-82.66067,APRSWXNET , ,CW1965 St.Petersburg FL US , +C1968,3,228.0000 ,40.88562 ,-85.48234,APRSWXNET , ,CW1968 Huntington IN US , +C1982,3,2.000000 ,40.66467 ,-73.37783,APRSWXNET , ,CW1982 Lindenhurst NY US , +C1984,3,131.0000 ,42.91154 ,-71.21707,APRSWXNET , ,CW1984 Hampstead NH US , +C1986,3,258.2000 ,39.69000 ,-86.06450,APRSWXNET , ,CW1986 Indianapolis IN US , +C1988,3,256.9000 ,43.08567 ,-88.15350,APRSWXNET , ,CW1988 Brookfield WI US , +C1989,3,1.300000 ,26.10000 ,-80.21667,APRSWXNET , ,CW1989 Ft.Lauderdale FL US , +C1992,3,201.2000 ,35.65155 ,-80.17917,APRSWXNET , ,CW1992 Denton NC US , +C1995,3,105.0000 ,-35.11450,138.5245 ,APRSWXNET , ,CW1995 Adelaide AU , +C1999,3,106.0000 ,36.87167 ,-121.6555,APRSWXNET , ,CW1999 Aromas CA US , +C2001,3,305.0000 ,41.87167 ,-93.81283,APRSWXNET , ,CW2001 Madrid IA US , +C2003,3,317.3000 ,42.86450 ,-74.72083,APRSWXNET , ,CW2003 Hessville NY US , +C2005,3,16.00000 ,18.40368 ,-66.04185,APRSWXNET , ,CW2005 Rio Piedras PR US , +C2007,3,1514.000 ,14.60026 ,-90.52127,APRSWXNET , ,CW2007 Guatemala City GT , +C2012,3,102.0000 ,49.44833 ,-2.540000,APRSWXNET , ,CW2012 Guernsey UK , +C2014,3,402.0000 ,33.42633 ,-111.7487,APRSWXNET , ,CW2014 Mesa AZ US , +C2017,3,500.0000 ,33.38450 ,-111.7090,APRSWXNET , ,CW2017 Mesa AZ US , +C2024,3,1875.000 ,37.62467 ,-104.7795,APRSWXNET , ,CW2024 Walsenburg CO US , +C2026,3,79.90000 ,45.20530 ,-67.53590,APRSWXNET , ,CW2026 Princeton ME US , +C2028,3,244.0000 ,39.21083 ,-93.52033,APRSWXNET , ,CW2028 Waverly MO US , +C2033,3,240.0000 ,40.94800 ,-90.34400,APRSWXNET , ,CW2033 Galesburg IL US , +C2037,3,17.00000 ,39.88367 ,-75.01583,APRSWXNET , ,CW2037 Cherry Hill NJ US , +C2046,3,185.0000 ,35.99044 ,-79.23049,APRSWXNET , ,CW2046 Mebane NC US , +C2049,3,603.0000 ,45.55950 ,-116.8350,APRSWXNET , ,CW2049 Imnaha OR US , +C2052,3,18.50000 ,28.64328 ,-81.29288,APRSWXNET , ,CW2052 Casselberry FL US , +C2055,3,15.30000 ,33.86217 ,-78.79899,APRSWXNET , ,CW2055 Longs SC US , +C2056,3,1602.000 ,40.52499 ,-105.1291,APRSWXNET , ,CW2056 Ft. Collins CO US , +C2057,3,137.5000 ,39.09409 ,-77.16204,APRSWXNET , ,CW2057 Rockville MD US , +C2059,3,579.1000 ,46.90217 ,-100.7846,APRSWXNET , ,CW2059 Bismarck ND US , +C2060,3,15.10000 ,38.14883 ,-121.2895,APRSWXNET , ,CW2060 Lodi CA US , +C2066,3,76.00000 ,41.65383 ,-71.18450,APRSWXNET , ,CW2066 Tiverton RI US , +C2067,3,82.00000 ,28.90000 ,-81.90000,APRSWXNET , ,CW2067 Lady Lake FL US , +C2069,3,347.0000 ,33.51474 ,-112.1475,APRSWXNET , ,CW2069 Phoenix AZ US , +C2071,3,445.9000 ,41.43580 ,-97.45030,APRSWXNET , ,CW2071 Duncan NE US , +C2073,3,100.0000 ,41.01967 ,-74.12167,APRSWXNET , ,CW2073 Waldwick NJ US , +C2074,3,222.0000 ,33.87085 ,-83.11319,APRSWXNET , ,CW2074 Lexington GA US , +C2075,3,30.00000 ,47.48783 ,-3.114170,APRSWXNET , ,CW2075 Quiberon FR , +C2077,3,274.3000 ,42.56883 ,-84.67500,APRSWXNET , ,CW2077 Eaton Rapids MI US , +C2080,3,283.5000 ,39.18200 ,-78.24967,APRSWXNET , ,CW2080 Winchester VA US , +C2086,3,282.2000 ,43.18850 ,-89.45780,APRSWXNET , ,CW2086 Waunakee WI US , +C2091,3,96.00000 ,49.46300 ,8.557170 ,APRSWXNET , ,CW2091 Mannheim DE , +C2092,3,206.7000 ,43.06830 ,-87.89930,APRSWXNET , ,CW2092 Milwaukee WI US , +C2093,3,274.0000 ,41.39583 ,-85.05500,APRSWXNET , ,CW2093 Auburn IN US , +C2094,3,85.30000 ,35.83800 ,-78.55967,APRSWXNET , ,CW2094 Raleigh NC US , +C2096,3,234.0000 ,35.35626 ,-80.78406,APRSWXNET , ,CW2096 Charlotte NC US , +C2098,3,28.00000 ,30.38333 ,-81.51667,APRSWXNET , ,CW2098 Jacksonville FL US , +C2099,3,505.0000 ,45.51625 ,-88.84848,APRSWXNET , ,CW2099 Crandon WI US , +C2101,3,222.5000 ,40.21612 ,-88.35930,APRSWXNET , ,CW2101 Mahomet IL US , +C2103,3,105.0000 ,46.03800 ,13.25117 ,APRSWXNET , ,CW2103 Udine IT , +C2106,3,330.1000 ,44.51130 ,-89.57320,APRSWXNET , ,CW2106 Stevens Point WI US , +C2108,3,44.20000 ,42.05333 ,-124.2787,APRSWXNET , ,CW2108 Brookings OR US , +C2110,3,199.0000 ,34.07283 ,-96.39117,APRSWXNET , ,CW2110 Durant OK US , +C2112,3,95.00000 ,40.62987 ,-75.38258,APRSWXNET , ,CW2112 Bethlehem PA US , +C2115,3,1278.300 ,31.95912 ,-110.4450,APRSWXNET , ,CW2115 Benson AZ US , +C2124,3,1626.000 ,42.83283 ,-106.3062,APRSWXNET , ,CW2124 Casper WY US , +C2125,3,266.8000 ,43.10050 ,-84.33617,APRSWXNET , ,CW2125 Elsie MI US , +C2127,3,1062.200 ,35.11436 ,-83.09815,APRSWXNET , ,CW2127 Cashiers NC US , +C2128,3,1527.000 ,35.17050 ,-106.6663,APRSWXNET , ,CW2128 Rio Rancho NM US , +C2139,3,266.0000 ,40.88967 ,-85.49783,APRSWXNET , ,CW2139 Huntington IN US , +C2140,3,25.00000 ,45.15414 ,-61.61905,APRSWXNET , ,CW2140 Drum Head NS CA , +C2147,3,318.2000 ,38.80967 ,-94.46750,APRSWXNET , ,CW2147 Raymore MO US , +C2148,3,16.00000 ,41.42729 ,-72.08104,APRSWXNET , ,CW2148 Gales Ferry CT US , +C2157,3,3.000000 ,38.78217 ,-76.25250,APRSWXNET , ,CW2157 Saint Michaels MD US , +C2158,3,200.0000 ,44.83065 ,-87.34193,APRSWXNET , ,CW2158 Sturgeon Bay WI US , +C2160,3,158.5000 ,32.98083 ,-96.88333,APRSWXNET , ,CW2160 Carrollton TX US , +C2187,3,1966.000 ,35.60000 ,-105.2278,APRSWXNET , ,CW2187 Las Vegas NM US , +C2192,3,34.10000 ,40.15583 ,-74.26867,APRSWXNET , ,CW2192 Jackson NJ US , +C2194,3,8.000000 ,49.09413 ,-123.0611,APRSWXNET , ,CW2194 Ladner BC CA , +C2195,3,365.0000 ,37.35367 ,-79.97817,APRSWXNET , ,CW2195 Roanoke VA US , +C2197,3,1524.000 ,40.50117 ,-112.0217,APRSWXNET , ,CW2197 Herriman UT US , +C2202,3,200.0000 ,44.53645 ,-72.00657,APRSWXNET , ,CW2202 Lyndonville VT US , +C2205,3,210.0000 ,39.25274 ,-90.67883,APRSWXNET , ,CW2205 Hamburg IL US , +C2209,3,819.0000 ,44.52347 ,-121.2044,APRSWXNET , ,CW2209 Culver OR US , +C2212,3,203.0000 ,39.19451 ,-81.76461,APRSWXNET , ,CW2212 Hockingport OH US , +C2213,3,298.7000 ,39.01500 ,-95.75283,APRSWXNET , ,CW2213 Topeka KS US , +C2217,3,233.0000 ,42.02569 ,-88.28856,APRSWXNET , ,CW2217 Elgin IL US , +C2218,3,215.0000 ,32.88433 ,-97.21717,APRSWXNET , ,CW2218 North Richland Hills TX US , +C2220,3,3.700000 ,29.98143 ,-92.27408,APRSWXNET , ,CW2220 Kaplan LA US , +C2224,3,63.00000 ,47.47522 ,-122.2020,APRSWXNET , ,CW2224 Renton WA US , +C2225,3,29.90000 ,37.80868 ,-122.4093,APRSWXNET , ,CW2225 San Francisco CA US , +C2227,3,1.000000 ,30.37835 ,-87.06295,APRSWXNET , ,CW2227 Gulf Breeze FL US , +C2230,3,138.7000 ,41.60450 ,-74.34500,APRSWXNET , ,CW2230 Pine Bush NY US , +C2233,3,24.00000 ,43.70103 ,-70.27896,APRSWXNET , ,CW2233 Portland ME US , +C2235,3,10.00000 ,58.08627 ,8.015470 ,APRSWXNET , ,CW2235 Kristiansand NO , +C2236,3,194.0000 ,42.21217 ,-71.11467,APRSWXNET , ,CW2236 Milton MA US , +C2247,3,1465.800 ,42.03333 ,-111.9833,APRSWXNET , ,CW2247 Weston ID US , +C2248,3,60.00000 ,50.91883 ,6.911330 ,APRSWXNET , ,CW2248 Koeln DE , +C2258,3,163.0000 ,36.73617 ,-87.59867,APRSWXNET , ,CW2258 Herndon KY US , +C2259,3,634.0000 ,-29.20750,-51.39533,APRSWXNET , ,CW2259 Caxias do Sul BR , +C2260,3,112.0000 ,40.24333 ,-75.29550,APRSWXNET , ,CW2260 Lansdale PA US , +C2265,3,91.00000 ,43.17625 ,-79.47225,APRSWXNET , ,CW2265 Beamsville ON CA , +C2267,3,53.30000 ,44.08550 ,-70.21917,APRSWXNET , ,CW2267 Auburn ME US , +C2268,3,457.2000 ,40.82383 ,-75.87283,APRSWXNET , ,CW2268 Summit Hill PA US , +C2269,3,284.0000 ,41.41667 ,-78.19417,APRSWXNET , ,CW2269 Sterling Run PA US , +C2275,3,138.0000 ,48.96323 ,1.649800 ,APRSWXNET , ,CW2275 Mantes la Jolie FR , +C2277,3,226.8000 ,38.97083 ,-92.76033,APRSWXNET , ,CW2277 Boonville MO US , +C2280,3,31.00000 ,40.49299 ,-74.51750,APRSWXNET , ,CW2280 Somerset NJ US , +C2283,3,152.0000 ,37.95083 ,-78.46283,APRSWXNET , ,CW2283 Albemarle Co. VA US , +C2284,3,44.00000 ,30.38500 ,-84.22367,APRSWXNET , ,CW2284 Tallahassee FL US , +C2285,3,83.80000 ,33.82417 ,-116.3962,APRSWXNET , ,CW2285 Thousand Palms CA US , +C2286,3,616.0000 ,44.82117 ,-119.4188,APRSWXNET , ,CW2286 Monument OR US , +C2288,3,297.0000 ,34.16050 ,-118.6192,APRSWXNET , ,CW2288 Woodland Hills CA US , +C2293,3,55.00000 ,42.32750 ,-71.30583,APRSWXNET , ,CW2293 Weston MA US , +C2295,3,1126.800 ,44.49083 ,-103.8733,APRSWXNET , ,CW2295 Spearfish SD US , +C2296,3,132.8000 ,42.11333 ,-72.31467,APRSWXNET , ,CW2296 Monson MA US , +C2300,3,260.0000 ,49.51733 ,8.051170 ,APRSWXNET , ,CW2300 Ludwigshafen DE , +C2303,3,415.0000 ,37.37000 ,-92.92417,APRSWXNET , ,CW2303 Marshfield MO US , +C2305,3,170.0000 ,52.39000 ,-1.794500,APRSWXNET , ,CW2305 Solihull UK , +C2306,3,7.000000 ,28.26003 ,-80.70755,APRSWXNET , ,CW2306 Rockledge FL US , +C2307,3,6.000000 ,39.72117 ,-74.12800,APRSWXNET , ,CW2307 Loveladies NJ US , +C2308,3,150.0000 ,34.40867 ,-118.9455,APRSWXNET , ,CW2308 Fillmore CA US , +C2312,3,233.0000 ,39.69128 ,-84.20603,APRSWXNET , ,CW2312 Moraine OH US , +C2313,3,1547.000 ,45.78550 ,-118.1087,APRSWXNET , ,CW2313 Tollgate OR US , +C2314,3,1643.000 ,39.93074 ,-105.1078,APRSWXNET , ,CW2314 Broomfield CO US , +C2316,3,130.0000 ,52.30000 ,-2.500000,APRSWXNET , ,CW2316 Bristol UK , +C2319,3,19.00000 ,28.94250 ,-81.99750,APRSWXNET , ,CW2319 The Villages FL US , +C2321,3,115.0000 ,51.99022 ,-0.768270,APRSWXNET , ,CW2321 Milton Keynes UK , +C2322,3,14.30000 ,42.60700 ,-70.87917,APRSWXNET , ,CW2322 Hamilton MA US , +C2323,3,1815.000 ,39.52383 ,-104.9283,APRSWXNET , ,CW2323 Highlands Ranch CO US , +C2325,3,343.0000 ,40.66383 ,-96.17500,APRSWXNET , ,CW2325 Syracuse NE US , +C2327,3,282.2000 ,39.02617 ,-95.70900,APRSWXNET , ,CW2327 Topeka KS US , +C2329,3,55.00000 ,35.83333 ,14.41667 ,APRSWXNET , ,CW2329 Balzan MT , +C2333,3,212.0000 ,41.35399 ,-83.65496,APRSWXNET , ,CW2333 Bowling Green OH US , +C2334,3,334.0000 ,41.44315 ,-81.44335,APRSWXNET , ,CW2334 Moreland Hills OH US , +C2340,3,163.1000 ,41.85750 ,-72.43617,APRSWXNET , ,CW2340 Vernon-Rockville CT US , +C2342,3,880.3000 ,37.06117 ,-100.9322,APRSWXNET , ,CW2342 Liberal KS US , +C2347,3,3.000000 ,30.04761 ,-90.68974,APRSWXNET , ,CW2347 Gramercy LA US , +C2352,3,170.4000 ,43.15800 ,-75.46217,APRSWXNET , ,CW2352 Westmoreland NY US , +C2358,3,413.0000 ,35.10500 ,-98.60617,APRSWXNET , ,CW2358 Carnegie OK US , +C2375,3,228.0000 ,45.37133 ,-84.92167,APRSWXNET , ,CW2375 Petoskey MI US , +C2377,3,265.0000 ,42.21050 ,-88.09167,APRSWXNET , ,CW2377 Lake Zurich IL US , +C2378,3,2.000000 ,29.96917 ,-90.21817,APRSWXNET , ,CW2378 New Orleans LA US , +C2379,3,280.0000 ,44.93617 ,-93.17883,APRSWXNET , ,CW2379 Saint Paul MN US , +C2380,3,841.3000 ,32.45170 ,-111.0730,APRSWXNET , ,CW2380 Marana AZ US , +C2383,3,35.00000 ,56.82000 ,24.48000 ,APRSWXNET , ,CW2383 Riga LV , +C2387,3,238.0000 ,43.09366 ,-85.23206,APRSWXNET , ,CW2387 Belding MI US , +C2389,3,203.0000 ,43.01467 ,-85.68467,APRSWXNET , ,CW2389 Walker MI US , +C2391,3,205.0000 ,35.02849 ,-81.02056,APRSWXNET , ,CW2391 Tega Cay SC US , +C2392,3,54.90000 ,41.58750 ,-72.76450,APRSWXNET , ,CW2392 Berlin CT US , +C2394,3,19.00000 ,36.99367 ,-76.60117,APRSWXNET , ,CW2394 Smithfield VA US , +C2396,3,12.20000 ,39.14367 ,-75.98517,APRSWXNET , ,CW2396 Church Hill MD US , +C2398,3,30.00000 ,40.16667 ,-74.68350,APRSWXNET , ,CW2398 Bordentown NJ US , +C2399,3,1778.500 ,39.48483 ,-111.4933,APRSWXNET , ,CW2399 Spring City UT US , +C2401,3,140.2000 ,35.99783 ,-79.05283,APRSWXNET , ,CW2401 Chapel Hill NC US , +C2403,3,1085.100 ,36.12050 ,-81.73617,APRSWXNET , ,CW2403 Blowing Rock NC US , +C2404,3,20.00000 ,42.30734 ,-70.88888,APRSWXNET , ,CW2404 Hull MA US , +C2405,3,249.9000 ,42.17383 ,-88.05533,APRSWXNET , ,CW2405 Kildeer IL US , +C2407,3,224.3000 ,44.26867 ,-88.33550,APRSWXNET , ,CW2407 Kimberly WI US , +C2411,3,2.000000 ,39.60467 ,-76.11500,APRSWXNET , ,CW2411 Port Deposit MD US , +C2412,3,7.000000 ,27.92383 ,-82.82133,APRSWXNET , ,CW2412 Bellair FL US , +C2414,3,31.00000 ,45.11883 ,-67.50250,APRSWXNET , ,CW2414 Baring ME US , +C2420,3,283.5000 ,35.62617 ,-81.19217,APRSWXNET , ,CW2420 Newton NC US , +C2421,3,685.2000 ,39.87367 ,-121.6775,APRSWXNET , ,CW2421 Forest Ranch CA US , +C2422,3,531.6000 ,39.75867 ,-121.6225,APRSWXNET , ,CW2422 Paradise CA US , +C2423,3,1981.000 ,39.26383 ,-105.2195,APRSWXNET , ,CW2423 Trumbull CO US , +C2426,3,479.0000 ,44.76467 ,-121.2720,APRSWXNET , ,CW2426 Warmsprings OR US , +C2428,3,2.000000 ,37.99314 ,-76.50892,APRSWXNET , ,CW2428 Lottsburg VA US , +C2433,3,299.0000 ,41.29033 ,-95.91617,APRSWXNET , ,CW2433 Carter Lake IA US , +C2434,3,202.0000 ,41.68450 ,-73.72033,APRSWXNET , ,CW2434 Lagrangeville NY US , +C2439,3,11.00000 ,42.65833 ,-70.61250,APRSWXNET , ,CW2439 Rockport MA US , +C2440,3,271.3000 ,35.25550 ,-85.01033,APRSWXNET , ,CW2440 Georgetown TN US , +C2444,3,220.0000 ,45.71283 ,-119.3600,APRSWXNET , ,CW2444 Echo OR US , +C2449,3,109.5000 ,34.34450 ,-88.79717,APRSWXNET , ,CW2449 Sherman MS US , +C2450,3,8.000000 ,36.72827 ,-76.06039,APRSWXNET , ,CW2450 Virginia Beach VA US , +C2451,3,3.000000 ,38.79500 ,-76.55633,APRSWXNET , ,CW2451 Deale MD US , +C2461,3,241.1000 ,41.44283 ,-81.86733,APRSWXNET , ,CW2461 Fairview Park OH US , +C2463,3,182.0000 ,39.20500 ,-77.13117,APRSWXNET , ,CW2463 Laytonsville MD US , +C2467,3,232.0000 ,44.94901 ,-72.19141,APRSWXNET , ,CW2467 Newport VT US , +C2470,3,106.0000 ,34.19674 ,-80.80970,APRSWXNET , ,CW2470 Elgin SC US , +C2474,3,1654.000 ,39.98450 ,-105.1417,APRSWXNET , ,CW2474 Louisville CO US , +C2483,3,25.00000 ,-43.02656,147.2589 ,APRSWXNET , ,CW2483 Margate TAS AU , +C2484,3,6.000000 ,36.77500 ,-76.07133,APRSWXNET , ,CW2484 Virginia Beach VA US , +C2486,3,0.000000 ,-38.20112,145.4841 ,APRSWXNET , ,CW2486 Koo Wee Rup VIC AU , +C2493,3,332.2000 ,42.73315 ,-73.07234,APRSWXNET , ,CW2493 Clarksburg MA US , +C2505,3,1635.000 ,18.95050 ,-99.22300,APRSWXNET , ,CW2505 Cuernavaca MR , +C2506,3,638.0000 ,33.82102 ,-117.3742,APRSWXNET , ,CW2506 Lake Mathews CA US , +C2512,3,64.00000 ,47.56500 ,-122.6692,APRSWXNET , ,CW2512 Bremerton WA US , +C2514,3,20.00000 ,26.26717 ,-81.71583,APRSWXNET , ,CW2514 Naples FL US , +C2515,3,2.400000 ,29.81550 ,-85.30783,APRSWXNET , ,CW2515 Port St. Joe FL US , +C2516,3,181.4000 ,41.50220 ,-88.15970,APRSWXNET , ,CW2516 Joliet IL US , +C2517,3,25.00000 ,43.37361 ,-70.46806,APRSWXNET , ,CW2517 Kennebunkport ME US , +C2522,3,374.0000 ,41.79727 ,-73.17105,APRSWXNET , ,CW2522 Torrington CT US , +C2527,3,14.00000 ,43.98000 ,-124.0950,APRSWXNET , ,CW2527 Florence OR US , +C2528,3,329.0000 ,34.02933 ,-84.44650,APRSWXNET , ,CW2528 Marietta GA US , +C2530,3,3.700000 ,39.57633 ,-74.23167,APRSWXNET , ,CW2530 North Beach Haven NJ US , +C2534,3,120.0000 ,42.93167 ,-74.62967,APRSWXNET , ,CW2534 Fort Plain NY US , +C2536,3,25.90000 ,42.55000 ,-70.89230,APRSWXNET , ,CW2536 Beverly MA US , +C2539,3,277.4000 ,42.61950 ,-83.21767,APRSWXNET , ,CW2539 Bloomfield Hills MI US , +C2541,3,8.000000 ,34.72534 ,-76.76101,APRSWXNET , ,CW2541 Morehead City NC US , +C2542,3,7.000000 ,34.72717 ,-76.94374,APRSWXNET , ,CW2542 Newport NC US , +C2545,3,480.0000 ,36.39217 ,-82.41783,APRSWXNET , ,CW2545 Johnson City TN US , +C2546,3,15.00000 ,51.36667 ,1.133330 ,APRSWXNET , ,CW2546 Herne Bay Kent UK , +C2548,3,260.0000 ,29.01133 ,-110.9445,APRSWXNET , ,CW2548 Hermosillo MX , +C2550,3,299.3000 ,44.46633 ,-93.20867,APRSWXNET , ,CW2550 Northfield MN US , +C2551,3,454.5000 ,42.30804 ,-122.8987,APRSWXNET , ,CW2551 Medford OR US , +C2553,3,75.00000 ,36.36283 ,-119.6328,APRSWXNET , ,CW2553 Hanford CA US , +C2559,3,265.2000 ,41.55833 ,-75.77783,APRSWXNET , ,CW2559 La Plume PA US , +C2561,3,107.0000 ,21.34750 ,-158.0833,APRSWXNET , ,CW2561 Kapolei HI US , +C2562,3,6.000000 ,27.09583 ,-82.44117,APRSWXNET , ,CW2562 Venice FL US , +C2564,3,204.2000 ,33.34083 ,-96.48783,APRSWXNET , ,CW2564 Anna TX US , +C2568,3,145.0000 ,47.31283 ,-123.1283,APRSWXNET , ,CW2568 Union WA US , +C2570,3,206.0000 ,35.95000 ,-95.72700,APRSWXNET , ,CW2570 Coweta OK US , +C2571,3,2.100000 ,26.13217 ,-80.41533,APRSWXNET , ,CW2571 Weston FL US , +C2572,3,145.7000 ,43.48883 ,-71.50750,APRSWXNET , ,CW2572 Belmont NH US , +C2574,3,2.000000 ,28.09117 ,-82.77783,APRSWXNET , ,CW2574 Crystal Beach FL US , +C2576,3,7.300000 ,30.44920 ,-87.86887,APRSWXNET , ,CW2576 Fairhope AL US , +C2578,3,225.6000 ,41.64597 ,-86.12906,APRSWXNET , ,CW2578 Mishawaka IN US , +C2582,3,381.0000 ,33.40250 ,-111.8830,APRSWXNET , ,CW2582 Mesa AZ US , +C2583,3,312.4000 ,34.91893 ,-82.36212,APRSWXNET , ,CW2583 Greenville SC US , +C2584,3,233.2000 ,35.56533 ,-80.97250,APRSWXNET , ,CW2584 Sherrills Ford NC US , +C2586,3,257.0000 ,47.56928 ,19.28163 ,APRSWXNET , ,CW2586 Kerepes HU , +C2597,3,32.00000 ,52.66260 ,8.206370 ,APRSWXNET , ,CW2597 Osnabruek DE , +C2599,3,108.2000 ,34.08500 ,-118.1003,APRSWXNET , ,CW2599 San Gabriel CA US , +C2600,3,8.000000 ,55.66114 ,11.10531 ,APRSWXNET , ,CW2600 Kalundborg DK , +C2602,3,500.5000 ,45.91500 ,-89.24333,APRSWXNET , ,CW2602 Eagle River WI US , +C2607,3,65.00000 ,41.91775 ,-73.90498,APRSWXNET , ,CW2607 Rhinebeck NY US , +C2610,3,207.3000 ,36.14950 ,-120.3667,APRSWXNET , ,CW2610 Coalinga CA US , +C2611,3,36.60000 ,28.70283 ,-81.50917,APRSWXNET , ,CW2611 Apopka FL US , +C2613,3,7.000000 ,27.13667 ,-80.33133,APRSWXNET , ,CW2613 Palm City FL US , +C2615,3,215.0000 ,45.18083 ,-85.19800,APRSWXNET , ,CW2615 East Jordan MI US , +C2616,3,225.5000 ,45.18000 ,-85.19972,APRSWXNET , ,CW2616 East Jordan MI US , +C2620,3,444.0000 ,42.70367 ,-72.88883,APRSWXNET , ,CW2620 Rowe MA US , +C2621,3,258.0000 ,41.89567 ,-72.36501,APRSWXNET , ,CW2621 Tolland CT US , +C2627,3,461.0000 ,45.69167 ,-118.8525,APRSWXNET , ,CW2627 Pendleton OR US , +C2628,3,196.0000 ,48.49073 ,16.65871 ,APRSWXNET , ,CW2628 Nexing AT , +C2635,3,131.1000 ,33.15033 ,-117.2450,APRSWXNET , ,CW2635 Vista CA US , +C2640,3,146.3000 ,33.86167 ,-87.24300,APRSWXNET , ,CW2640 Jasper AL US , +C2641,3,40.00000 ,18.48164 ,-69.94350,APRSWXNET , ,CW2641 Santo Domingo DO , +C2645,3,156.0000 ,44.03733 ,-123.0660,APRSWXNET , ,CW2645 Eugene OR US , +C2646,3,9.000000 ,-33.86424,151.1141 ,APRSWXNET , ,CW2646 Canada Bay NSW AU , +C2647,3,149.3000 ,32.55450 ,-84.09667,APRSWXNET , ,CW2647 Reynolds GA US , +C2651,3,11.00000 ,51.88333 ,6.000000 ,APRSWXNET , ,CW2651 Arnhem NL , +C2654,3,320.0000 ,45.51667 ,-122.2167,APRSWXNET , ,CW2654 Corbett OR US , +C2655,3,38.10000 ,37.92133 ,-122.0727,APRSWXNET , ,CW2655 Walnut Creek CA US , +C2659,3,90.00000 ,47.55750 ,-122.1767,APRSWXNET , ,CW2659 Bellevue WA US , +C2664,3,201.0000 ,45.53133 ,-122.2917,APRSWXNET , ,CW2664 Corbett OR US , +C2670,3,192.3000 ,38.86883 ,-86.56583,APRSWXNET , ,CW2670 Bedford IN US , +C2671,3,17.00000 ,39.97964 ,-74.99125,APRSWXNET , ,CW2671 Cinnaminson NJ US , +C2673,3,100.0000 ,41.74317 ,-73.81683,APRSWXNET , ,CW2673 Pleasant Valley NY US , +C2674,3,348.0000 ,33.56982 ,-112.3082,APRSWXNET , ,CW2674 Youngtown AZ US , +C2678,3,301.0000 ,43.19000 ,-75.08667,APRSWXNET , ,CW2678 Poland NY US , +C2681,3,200.0000 ,53.08750 ,-1.380500,APRSWXNET , ,CW2681 Alfreton UK , +C2683,3,209.0000 ,33.02000 ,-96.73883,APRSWXNET , ,CW2683 Plano TX US , +C2690,3,498.0000 ,32.83383 ,-116.8350,APRSWXNET , ,CW2690 Crest CA US , +C2692,3,423.4000 ,47.66433 ,-94.98417,APRSWXNET , ,CW2692 Bemidji MN US , +C2693,3,8.000000 ,28.03433 ,-80.54233,APRSWXNET , ,CW2693 Melbourne Beach FL US , +C2694,3,183.5000 ,33.04950 ,-97.01750,APRSWXNET , ,CW2694 Lewisville TX US , +C2698,3,390.0000 ,36.05775 ,-83.91075,APRSWXNET , ,CW2698 Knoxville TN US , +C2702,3,313.0000 ,39.83033 ,-84.41533,APRSWXNET , ,CW2702 Brookville OH US , +C2703,3,3.700000 ,30.30483 ,-81.73483,APRSWXNET , ,CW2703 Jacksonville FL US , +C2707,3,2872.100 ,39.66367 ,-106.0670,APRSWXNET , ,CW2707 Silverthorne CO US , +C2708,3,204.8000 ,43.20283 ,-87.96533,APRSWXNET , ,CW2708 Mequon WI US , +C2710,3,317.0000 ,45.17633 ,-121.0788,APRSWXNET , ,CW2710 Maupin OR US , +C2712,3,213.4000 ,35.99833 ,-96.10705,APRSWXNET , ,CW2712 Sapulpa OK US , +C2715,3,1575.800 ,40.72339 ,-104.5226,APRSWXNET , ,CW2715 Ault CO US , +C2718,3,110.0000 ,40.27517 ,-75.30267,APRSWXNET , ,CW2718 Hatfield PA US , +C2725,3,1228.300 ,44.47383 ,-103.8637,APRSWXNET , ,CW2725 Spearfish SD US , +C2726,3,50.00000 ,38.11133 ,-0.868000,APRSWXNET , ,CW2726 Elche ES , +C2732,3,82.00000 ,38.25667 ,-0.702830,APRSWXNET , ,CW2732 Elche ES , +C2735,3,191.0000 ,32.83750 ,-117.0803,APRSWXNET , ,CW2735 San Diego CA US , +C2740,3,90.50000 ,35.15617 ,-89.82867,APRSWXNET , ,CW2740 Cordova TN US , +C2741,3,189.9000 ,41.73683 ,-87.71217,APRSWXNET , ,CW2741 Chicago IL US , +C2748,3,270.0000 ,46.05550 ,-118.3588,APRSWXNET , ,CW2748 Walla Walla WA US , +C2749,3,1530.000 ,40.45367 ,-105.0667,APRSWXNET , ,CW2749 Loveland CO US , +C2750,3,51.80000 ,37.29643 ,-121.9555,APRSWXNET , ,CW2750 San Jose CA US , +C2751,3,1125.000 ,39.35417 ,-101.6995,APRSWXNET , ,CW2751 Goodland KS US , +C2752,3,232.0000 ,42.33333 ,-88.26867,APRSWXNET , ,CW2752 McHenry IL US , +C2755,3,87.20000 ,29.29660 ,-81.06690,APRSWXNET , ,CW2755 Ormond Beach FL US , +C2758,3,219.5000 ,41.20839 ,-90.75880,APRSWXNET , ,CW2758 Aledo IL US , +C2763,3,16.00000 ,27.07617 ,-82.20000,APRSWXNET , ,CW2763 North Port FL US , +C2766,3,30.00000 ,50.80950 ,0.283830 ,APRSWXNET , ,CW2766 Eastbourne UK , +C2768,3,72.00000 ,45.55973 ,-122.8501,APRSWXNET , ,CW2768 Beaverton OR US , +C2775,3,30.00000 ,40.16550 ,-74.84883,APRSWXNET , ,CW2775 Fairless Hills PA US , +C2779,3,114.3000 ,32.85917 ,-83.66033,APRSWXNET , ,CW2779 Macon GA US , +C2780,3,365.8000 ,36.08667 ,-83.96950,APRSWXNET , ,CW2780 Knoxville TN US , +C2787,3,213.4000 ,39.07933 ,-81.97500,APRSWXNET , ,CW2787 Pomeroy OH US , +C2789,3,146.0000 ,37.20446 ,-121.8721,APRSWXNET , ,CW2789 San Jose CA US , +C2791,3,7.600000 ,28.02417 ,-80.65867,APRSWXNET , ,CW2791 Palm Bay FL US , +C2795,3,271.3000 ,39.12033 ,-95.06250,APRSWXNET , ,CW2795 Tonganoxie KS US , +C2796,3,329.2000 ,34.52383 ,-114.3138,APRSWXNET , ,CW2796 Lake Havasu City AZ US , +C2798,3,20.00000 ,38.79333 ,0.180330 ,APRSWXNET , ,CW2798 Aduanas ES , +C2804,3,220.0000 ,-44.08533,171.2212 ,APRSWXNET , ,CW2804 Geraldine NZ , +C2807,3,76.00000 ,46.64467 ,0.366170 ,APRSWXNET , ,CW2807 Chasseneuil du poitou FR , +C2809,3,1603.200 ,39.98200 ,-105.1128,APRSWXNET , ,CW2809 Lafayette CO US , +C2811,3,8.000000 ,51.79450 ,5.648000 ,APRSWXNET , ,CW2811 Ravenstein NL , +C2813,3,255.0000 ,40.12472 ,-86.02777,APRSWXNET , ,CW2813 Cicero IN US , +C2817,3,93.30000 ,42.31023 ,-71.51933,APRSWXNET , ,CW2817 Southborough MA US , +C2820,3,37.00000 ,49.16583 ,-122.6230,APRSWXNET , ,CW2820 Langley BC CA , +C2821,3,11.00000 ,33.96783 ,-118.4463,APRSWXNET , ,CW2821 Marina del Rey CA US , +C2830,3,115.0000 ,51.16117 ,0.257500 ,APRSWXNET , ,CW2830 Tunbridge Wells UK , +C2840,3,42.70000 ,30.16583 ,-95.44283,APRSWXNET , ,CW2840 Houston TX US , +C2841,3,342.0000 ,43.21844 ,-88.27013,APRSWXNET , ,CW2841 Richfield WI US , +C2844,3,153.0000 ,40.04367 ,-75.49883,APRSWXNET , ,CW2844 Paoli PA US , +C2847,3,40.00000 ,42.79440 ,-71.46570,APRSWXNET , ,CW2847 Nashua NH US , +C2849,3,1427.000 ,42.17600 ,-120.4587,APRSWXNET , ,CW2849 Lakeview OR US , +C2856,3,297.0000 ,37.54450 ,-94.66550,APRSWXNET , ,CW2856 Arma KS US , +C2857,3,1297.000 ,39.59821 ,-119.2741,APRSWXNET , ,CW2857 Fernley NV US , +C2864,3,189.0000 ,42.28117 ,-83.21917,APRSWXNET , ,CW2864 Dearborn MI US , +C2865,3,341.4000 ,42.44950 ,-93.80533,APRSWXNET , ,CW2865 Webster City IA US , +C2867,3,11.60000 ,30.14217 ,-92.05700,APRSWXNET , ,CW2867 Lafayette LA US , +C2876,3,194.0000 ,37.27100 ,-121.7588,APRSWXNET , ,CW2876 San Jose CA US , +C2877,3,436.0000 ,43.65283 ,-96.23117,APRSWXNET , ,CW2877 Luverne MN US , +C2880,3,173.0000 ,42.70950 ,-71.69500,APRSWXNET , ,CW2880 Brookline NH US , +C2882,3,70.00000 ,48.50133 ,-122.6635,APRSWXNET , ,CW2882 Anacortes WA US , +C2884,3,304.8000 ,33.99033 ,-84.43509,APRSWXNET , ,CW2884 Sandy Plains GA US , +C2885,3,808.0000 ,39.29113 ,-121.0235,APRSWXNET , ,CW2885 Nevada City CA US , +C2887,3,40.00000 ,29.99250 ,-95.61833,APRSWXNET , ,CW2887 Cypress TX US , +C2888,3,85.00000 ,51.50000 ,-2.576400,APRSWXNET , ,CW2888 Bristol UK , +C2894,3,45.70000 ,44.63333 ,-124.0368,APRSWXNET , ,CW2894 Newport OR US , +C2897,3,2325.000 ,39.66367 ,-105.3322,APRSWXNET , ,CW2897 Evergreen CO US , +C2900,3,1100.000 ,34.19417 ,-116.4000,APRSWXNET , ,CW2900 Yucca Valley CA US , +C2901,3,1440.000 ,42.08783 ,-111.7403,APRSWXNET , ,CW2901 Preston ID US , +C2903,3,87.00000 ,43.68124 ,7.214390 ,APRSWXNET , ,CW2903 Nice FR , +C2910,3,51.80000 ,32.34283 ,-86.43300,APRSWXNET , ,CW2910 Montgomery AL US , +C2911,3,68.60000 ,32.38783 ,-86.17717,APRSWXNET , ,CW2911 Montgomery AL US , +C2912,3,2258.000 ,41.28283 ,-105.5308,APRSWXNET , ,CW2912 Laramie WY US , +C2916,3,36.60000 ,29.92083 ,-95.56700,APRSWXNET , ,CW2916 Houston TX US , +C2920,3,535.0000 ,45.85050 ,-118.6542,APRSWXNET , ,CW2920 Helix OR US , +C2921,3,1552.000 ,37.01208 ,-112.9600,APRSWXNET , ,CW2921 Hildale UT US , +C2924,3,46.00000 ,43.86006 ,-70.15011,APRSWXNET , ,CW2924 Freeport ME US , +C2926,3,87.00000 ,48.53917 ,-121.7738,APRSWXNET , ,CW2926 Concrete WA US , +C2927,3,89.00000 ,45.86850 ,-72.51050,APRSWXNET , ,CW2927 Drummondville CA , +C2931,3,184.4000 ,42.22750 ,-83.22967,APRSWXNET , ,CW2931 Taylor MI US , +C2932,3,3.100000 ,28.04717 ,-82.69867,APRSWXNET , ,CW2932 Oldsmar FL US , +C2935,3,265.0000 ,45.22833 ,-93.52550,APRSWXNET , ,CW2935 Dayton MN US , +C2936,3,37.00000 ,45.50300 ,-122.5233,APRSWXNET , ,CW2936 Portland OR US , +C2939,3,285.0000 ,36.86500 ,-4.145830,APRSWXNET , ,CW2939 Malaga ES , +C2943,3,285.0000 ,35.63422 ,-91.80241,APRSWXNET , ,CW2943 Banner AR US , +C2947,3,7.600000 ,28.02800 ,-82.75500,APRSWXNET , ,CW2947 Clearwater FL US , +C2951,3,11.00000 ,34.75783 ,-77.38250,APRSWXNET , ,CW2951 Jacksonville NC US , +C2953,3,107.0000 ,10.30000 ,-85.00000,APRSWXNET , ,CW2953 Liberia CR , +C2965,3,5.500000 ,28.30717 ,-80.68383,APRSWXNET , ,CW2965 Merritt Island FL US , +C2967,3,2.000000 ,36.45417 ,-76.08083,APRSWXNET , ,CW2967 Moyock NC US , +C2969,3,272.8000 ,30.43883 ,-97.79700,APRSWXNET , ,CW2969 Austin TX US , +C2971,3,4.900000 ,36.76471 ,-76.14596,APRSWXNET , ,CW2971 Virginia Beach VA US , +C2972,3,200.0000 ,35.78000 ,-86.92000,APRSWXNET , ,CW2972 Spring Hill TN US , +C2973,3,61.00000 ,47.05783 ,-122.8563,APRSWXNET , ,CW2973 Olympia WA US , +C2974,3,406.9000 ,42.56967 ,-122.9972,APRSWXNET , ,CW2974 Medford OR US , +C2976,3,9.000000 ,27.36217 ,-82.49117,APRSWXNET , ,CW2976 Sarasota FL US , +C2978,3,85.00000 ,37.07533 ,-121.6167,APRSWXNET , ,CW2978 San Martin CA US , +C2979,3,18.30000 ,27.95583 ,-82.26717,APRSWXNET , ,CW2979 Valrico FL US , +C2980,3,166.1000 ,46.86750 ,-68.00750,APRSWXNET , ,CW2980 Limestone ME US , +C2984,3,3.000000 ,27.88750 ,-97.20167,APRSWXNET , ,CW2984 Ingleside TX US , +C2988,3,255.1000 ,42.15415 ,-92.03328,APRSWXNET , ,CW2988 Vinton IA US , +C2989,3,264.9000 ,30.50700 ,-97.73450,APRSWXNET , ,CW2989 Round Rock TX US , +C2995,3,30.80000 ,33.86330 ,-118.3646,APRSWXNET , ,CW2995 Redondo Beach CA US , +C2997,3,504.4000 ,34.72917 ,-86.53633,APRSWXNET , ,CW2997 Huntsville AL US , +C2998,3,2500.000 ,37.65117 ,-118.9762,APRSWXNET , ,CW2998 Mammoth Lakes CA US , +C3001,3,22.00000 ,51.33167 ,4.790000 ,APRSWXNET , ,CW3001 Rijkevorsel BE , +C3005,3,390.0000 ,21.29950 ,-157.7747,APRSWXNET , ,CW3005 Honolulu HI US , +C3006,3,117.0000 ,42.76167 ,-71.52700,APRSWXNET , ,CW3006 Hollis NH US , +C3007,3,220.0000 ,30.60633 ,-97.58667,APRSWXNET , ,CW3007 Hutto TX US , +C3008,3,3.000000 ,42.63717 ,-70.67950,APRSWXNET , ,CW3008 Gloucester MA US , +C3011,3,238.4000 ,29.58333 ,-98.26133,APRSWXNET , ,CW3011 Cibolo TX US , +C3015,3,1399.000 ,41.03217 ,-111.9105,APRSWXNET , ,CW3015 Fruit Heights UT US , +UHSA2,3,420.0000 ,61.11667 ,-149.7167,APRSWXNET , ,CW3017 Anchorage AK US , +C3019,3,25.90000 ,29.27000 ,-95.94583,APRSWXNET , ,CW3019 Boling TX US , +C3024,3,146.0000 ,60.24133 ,11.67900 ,APRSWXNET , ,CW3024 Skarnes NO , +C3033,3,382.0000 ,42.67600 ,-71.96550,APRSWXNET , ,CW3033 Ashburnham MA US , +C3035,3,167.6000 ,32.31169 ,-97.01595,APRSWXNET , ,CW3035 Maypearl TX US , +C3036,3,35.00000 ,40.69667 ,22.83967 ,APRSWXNET , ,CW3036 Thessaloniki GR , +C3046,3,201.0000 ,37.10417 ,-122.0505,APRSWXNET , ,CW3046 Felton CA US , +C3052,3,18.30000 ,40.16833 ,-74.67417,APRSWXNET , ,CW3052 Groveville NJ US , +C3053,3,40.00000 ,42.62186 ,-71.26012,APRSWXNET , ,CW3053 Tewksbury MA US , +C3056,3,950.7000 ,32.43995 ,-104.2447,APRSWXNET , ,CW3056 Carlsbad NM US , +C3057,3,13.70000 ,13.64967 ,123.2167 ,APRSWXNET , ,CW3057 Naga City PH , +C3059,3,182.0000 ,38.70713 ,-88.90498,APRSWXNET , ,CW3059 Alma IL US , +C3062,3,122.0000 ,39.04200 ,-77.02750,APRSWXNET , ,CW3062 Silver Spring MD US , +C3063,3,109.7000 ,32.47839 ,-86.45025,APRSWXNET , ,CW3063 Prattville AL US , +C3064,3,2072.600 ,38.91950 ,-104.7333,APRSWXNET , ,CW3064 Colorado Springs CO US , +C3065,3,2347.000 ,40.38333 ,-105.4833,APRSWXNET , ,CW3065 Estes Park CO US , +C3066,3,240.0000 ,35.28617 ,-80.74333,APRSWXNET , ,CW3066 Charlotte NC US , +C3067,3,130.2000 ,44.06783 ,-123.0595,APRSWXNET , ,CW3067 Eugene OR US , +C3070,3,248.4000 ,34.22867 ,-118.5030,APRSWXNET , ,CW3070 Northridge CA US , +C3071,3,1505.000 ,43.40867 ,-106.2725,APRSWXNET , ,CW3071 Midwest WY US , +C3072,3,1130.000 ,39.00235 ,-79.46846,APRSWXNET , ,CW3072 Canaan Valley WV US , +C3075,3,359.7000 ,40.12133 ,-83.60050,APRSWXNET , ,CW3075 Mechanicsburg OH US , +C3077,3,259.4000 ,30.61450 ,-97.70667,APRSWXNET , ,CW3077 Georgetown TX US , +C3081,3,208.8000 ,36.06633 ,-87.15450,APRSWXNET , ,CW3081 Kingston Springs TN US , +C3083,3,28.00000 ,48.61966 ,-123.1282,APRSWXNET , ,CW3083 Friday Harbor WA US , +UPHA2,3,401.0000 ,61.11500 ,-149.7200,APRSWXNET , ,CW3084 Anchorage AK US , +C3085,3,155.8000 ,31.04117 ,-97.46417,APRSWXNET , ,CW3085 Belton TX US , +C3087,3,245.0000 ,35.59867 ,-80.88883,APRSWXNET , ,CW3087 Mooresville NC US , +C3090,3,859.6000 ,32.42517 ,-110.9928,APRSWXNET , ,CW3090 Oro Valley AZ US , +C3092,3,182.0000 ,31.97970 ,-97.44280,APRSWXNET , ,CW3092 Whitney TX US , +C3094,3,323.0000 ,41.87184 ,-73.01471,APRSWXNET , ,CW3094 New Hartford CT US , +C3101,3,39.00000 ,41.73433 ,-71.46633,APRSWXNET , ,CW3101 Cranston RI US , +C3106,3,78.00000 ,54.02083 ,-1.500330,APRSWXNET , ,CW3106 Knaresborough UK , +C3109,3,3.100000 ,37.59633 ,-122.0697,APRSWXNET , ,CW3109 Union City CA US , +C3111,3,420.6000 ,39.75367 ,-123.2072,APRSWXNET , ,CW3111 Covelo CA US , +C3114,3,16.00000 ,51.26867 ,4.785330 ,APRSWXNET , ,CW3114 Wechel BE , +C3115,3,677.3000 ,37.93400 ,-80.16000,APRSWXNET , ,CW3115 Neola WV US , +C3116,3,114.0000 ,35.55583 ,-78.72757,APRSWXNET , ,CW3116 Willow Springs NC US , +C3118,3,363.6000 ,35.73467 ,-81.59450,APRSWXNET , ,CW3118 Valdese NC US , +C3125,3,303.3000 ,39.81217 ,-94.81783,APRSWXNET , ,CW3125 St.Joseph MO US , +C3132,3,108.2000 ,47.61367 ,-122.0458,APRSWXNET , ,CW3132 Sammamish WA US , +C3134,3,122.0000 ,45.09417 ,-76.11800,APRSWXNET , ,CW3134 Carleton Place CA , +C3141,3,65.00000 ,15.12620 ,145.7235 ,APRSWXNET , ,CW3141 Saipan Airport MP US , +C3147,3,25.00000 ,54.06800 ,-0.218830,APRSWXNET , ,CW3147 Bridlington UK , +C3151,3,716.0000 ,35.26740 ,-82.44560,APRSWXNET , ,CW3151 Flat Rock NC US , +C3154,3,271.3000 ,42.07133 ,-76.79917,APRSWXNET , ,CW3154 Elmira NY US , +C3156,3,72.90000 ,42.78700 ,-71.34950,APRSWXNET , ,CW3156 Windham NH US , +C3157,3,210.3000 ,40.34300 ,-75.68333,APRSWXNET , ,CW3157 Boyertown PA US , +C3160,3,131.0000 ,43.29889 ,-76.14238,APRSWXNET , ,CW3160 Central Square NY US , +C3161,3,732.0000 ,37.91633 ,-120.2830,APRSWXNET , ,CW3161 Sonora CA US , +C3164,3,275.8000 ,39.97833 ,-83.12200,APRSWXNET , ,CW3164 Hilliard OH US , +C3168,3,280.0000 ,36.63300 ,-79.86633,APRSWXNET , ,CW3168 Martinsville VA US , +C3169,3,165.0000 ,38.15524 ,-85.47991,APRSWXNET , ,CW3169 Jeffersontown KY US , +C3171,3,379.5000 ,48.43300 ,-119.5212,APRSWXNET , ,CW3171 Omak WA US , +C3172,3,47.70000 ,26.21617 ,-98.30167,APRSWXNET , ,CW3172 Mission TX US , +C3174,3,195.1000 ,20.23667 ,-155.8303,APRSWXNET , ,CW3174 Hawi HI US , +C3175,3,198.0000 ,41.83383 ,-87.63967,APRSWXNET , ,CW3175 Chicago IL US , +C3179,3,111.0000 ,47.59583 ,-52.87283,APRSWXNET , ,CW3179 St. Phillips CA , +C3181,3,2.000000 ,26.49533 ,-82.08217,APRSWXNET , ,CW3181 St. James City FL US , +C3183,3,16.00000 ,38.49397 ,-121.3752,APRSWXNET , ,CW3183 Florin CA US , +C3185,3,42.00000 ,56.38892 ,-3.267830,APRSWXNET , ,CW3185 Errol UK , +C3186,3,93.60000 ,47.69117 ,-122.2827,APRSWXNET , ,CW3186 Seattle WA US , +C3189,3,352.4000 ,41.46201 ,-80.50121,APRSWXNET , ,CW3189 Jamestown PA US , +C3191,3,452.0000 ,18.35667 ,-64.97000,APRSWXNET , ,CW3191 St. Thomas VI US , +C3194,3,290.5000 ,33.91867 ,-114.0103,APRSWXNET , ,CW3194 Bouse AZ US , +C3195,3,2098.000 ,37.69318 ,-108.7935,APRSWXNET , ,CW3195 Cahone CO US , +C3196,3,1686.000 ,34.85633 ,-119.1805,APRSWXNET , ,CW3196 Pine Mountain Club CA US , +C3200,3,1335.900 ,34.43467 ,-103.3188,APRSWXNET , ,CW3200 Clovis NM US , +C3201,3,1652.000 ,42.92050 ,-105.8463,APRSWXNET , ,CW3201 Rolling Hills WY US , +C3205,3,155.4000 ,33.04033 ,-96.91700,APRSWXNET , ,CW3205 Lewisville TX US , +C3206,3,15.00000 ,51.70133 ,-5.033830,APRSWXNET , ,CW3206 Milford Haven UK , +C3207,3,7.000000 ,51.70000 ,-5.000000,APRSWXNET , ,CW3207 Pembroke Dock UK , +C3212,3,932.1000 ,36.83830 ,-80.45330,APRSWXNET , ,CW3212 Buffalo Mountain VA US , +C3213,3,73.50000 ,33.37550 ,-88.01500,APRSWXNET , ,CW3213 Reform AL US , +C3217,3,186.2000 ,41.26250 ,-76.97550,APRSWXNET , ,CW3217 Williamsport PA US , +C3219,3,200.0000 ,53.10333 ,-2.103330,APRSWXNET , ,CW3219 Walsden UK , +C3220,3,160.0000 ,43.22667 ,-8.289500,APRSWXNET , ,CW3220 Abegondo ES , +C3223,3,152.4000 ,39.19636 ,-84.77370,APRSWXNET , ,CW3223 Cleves OH US , +C3224,3,68.00000 ,42.52880 ,-71.28410,APRSWXNET , ,CW3224 Billerica MA US , +C3227,3,268.2000 ,37.75450 ,-85.88233,APRSWXNET , ,CW3227 Elizabethtown KY US , +C3229,3,1144.500 ,34.06250 ,-102.5355,APRSWXNET , ,CW3229 Sudan TX US , +C3232,3,240.8000 ,35.77599 ,-86.92464,APRSWXNET , ,CW3232 Spring Hill TN US , +C3234,3,1816.600 ,38.88783 ,-107.9528,APRSWXNET , ,CW3234 Cedaredge CO US , +C3235,3,10.70000 ,27.96133 ,-82.80083,APRSWXNET , ,CW3235 Pinellas Co FL US , +C3236,3,1200.900 ,34.46011 ,-117.8423,APRSWXNET , ,CW3236 Llano CA US , +C3243,3,197.8000 ,41.00417 ,-92.43833,APRSWXNET , ,CW3243 Ottumwa IA US , +C3247,3,64.00000 ,33.71167 ,-118.2930,APRSWXNET , ,CW3247 San Pedro CA US , +C3250,3,1360.900 ,42.92470 ,-112.4670,APRSWXNET , ,CW3250 Chubbuck ID US , +C3253,3,695.0000 ,40.42950 ,-3.665000,APRSWXNET , ,CW3253 Madrid ES , +C3255,3,744.0000 ,44.46633 ,-119.5395,APRSWXNET , ,CW3255 Dayville OR US , +C3257,3,372.2000 ,39.00167 ,-97.61650,APRSWXNET , ,CW3257 Bennington KS US , +C3260,3,1136.900 ,34.20000 ,-102.8000,APRSWXNET , ,CW3260 Muleshoe TX US , +C3261,3,1963.000 ,43.60665 ,-110.7529,APRSWXNET , ,CW3261 Jackson WY US , +C3266,3,23.80000 ,27.48473 ,-81.73862,APRSWXNET , ,CW3266 Zolfo Springs FL US , +C3274,3,295.0000 ,42.55030 ,-83.55188,APRSWXNET , ,CW3274 Wixom MI US , +C3276,3,46.00000 ,53.62000 ,10.39880 ,APRSWXNET , ,CW3276 Trittau DE , +WLLA2,3,77.00000 ,61.72140 ,-150.0691,APRSWXNET , ,CW3281 Willow AK US , +C3282,3,5.000000 ,32.34806 ,-80.89298,APRSWXNET , ,CW3282 Okatie SC US , +C3284,3,370.0000 ,45.64267 ,13.86383 ,APRSWXNET , ,CW3284 Trieste IT , +C3285,3,100.0000 ,35.06667 ,138.1500 ,APRSWXNET , ,CW3285 Yokosuka JP , +C3286,3,19.00000 ,41.65875 ,-70.40497,APRSWXNET , ,CW3286 Marstons Mills MA US , +C3287,3,109.7000 ,32.81480 ,-117.0531,APRSWXNET , ,CW3287 San Diego CA US , +C3290,3,143.0000 ,32.83033 ,-96.75117,APRSWXNET , ,CW3290 Dallas TX US , +C3292,3,915.0000 ,45.99900 ,-120.2927,APRSWXNET , ,CW3292 Bickleton WA US , +C3294,3,1370.000 ,51.37500 ,-114.6667,APRSWXNET , ,CW3294 Cochrane AB CA , +C3295,3,18.00000 ,37.51133 ,-122.4873,APRSWXNET , ,CW3295 Half Moon Bay CA US , +C3299,3,9.100000 ,39.93383 ,-74.92817,APRSWXNET , ,CW3299 Mount Laurel NJ US , +C3301,3,731.5000 ,35.63283 ,-117.6908,APRSWXNET , ,CW3301 Ridgecrest CA US , +C3302,3,20.00000 ,27.83733 ,-82.23200,APRSWXNET , ,CW3302 Lithia FL US , +C3303,3,122.0000 ,41.84724 ,-123.9772,APRSWXNET , ,CW3303 Gasquet CA US , +C3305,3,10.00000 ,53.25000 ,6.066670 ,APRSWXNET , ,CW3305 Kollumerzwaag NL , +C3306,3,256.0000 ,35.46404 ,-87.04144,APRSWXNET , ,CW3306 Culleoka TN US , +C3313,3,286.0000 ,42.52867 ,-83.79550,APRSWXNET , ,CW3313 Brighton MI US , +C3315,3,701.1000 ,42.21283 ,-74.48450,APRSWXNET , ,CW3315 Halcott Center NY US , +C3318,3,353.5000 ,41.09967 ,-95.96117,APRSWXNET , ,CW3318 Bellevue NE US , +C3319,3,310.9000 ,44.88833 ,-92.96483,APRSWXNET , ,CW3319 Woodbury MN US , +C3322,3,203.0000 ,49.23538 ,6.823630 ,APRSWXNET , ,CW3322 Geislautern DE , +C3323,3,62.50000 ,30.11025 ,-95.64391,APRSWXNET , ,CW3323 Tomball TX US , +C3325,3,141.7000 ,33.76942 ,-87.27001,APRSWXNET , ,CW3325 Parrish AL US , +C3326,3,50.00000 ,58.90000 ,5.700000 ,APRSWXNET , ,CW3326 Stavanger NO , +C3330,3,12.00000 ,54.32040 ,9.664100 ,APRSWXNET , ,CW3330 Buedelsdorf DE , +C3332,3,216.0000 ,41.70200 ,-87.68500,APRSWXNET , ,CW3332 Chicago IL US , +C3335,3,15.20000 ,40.74083 ,-73.27333,APRSWXNET , ,CW3335 Bay Shore NY US , +C3338,3,1597.000 ,40.69200 ,-105.0138,APRSWXNET , ,CW3338 Wellington CO US , +C3340,3,6.700000 ,40.65117 ,-73.69383,APRSWXNET , ,CW3340 Valley Stream NY US , +C3352,3,50.00000 ,55.71967 ,9.664170 ,APRSWXNET , ,CW3352 Vejle DK , +C3353,3,260.0000 ,45.10700 ,-93.37550,APRSWXNET , ,CW3353 Brooklyn Park MN US , +C3356,3,1707.000 ,34.49790 ,-110.0745,APRSWXNET , ,CW3356 Snowflake AZ US , +C3358,3,3.000000 ,27.72624 ,-82.34724,APRSWXNET , ,CW3358 Sun City Center FL US , +C3363,3,46.00000 ,29.94821 ,-95.63967,APRSWXNET , ,CW3363 Cypress TX US , +C3366,3,132.6000 ,35.91133 ,-78.60633,APRSWXNET , ,CW3366 Raleigh NC US , +C3367,3,31.00000 ,27.91267 ,-82.22583,APRSWXNET , ,CW3367 Valrico FL US , +C3375,3,32.30000 ,48.85920 ,-122.5940,APRSWXNET , ,CW3375 Ferndale WA US , +C3376,3,1014.400 ,48.51720 ,-111.8554,APRSWXNET , ,CW3376 Shelby MT US , +C3379,3,310.0000 ,40.47050 ,-88.95867,APRSWXNET , ,CW3379 Bloomington IL US , +C3380,3,18.00000 ,68.20083 ,14.38583 ,APRSWXNET , ,CW3380 Kabelvag NO , +C3388,3,222.0000 ,39.90521 ,-76.04635,APRSWXNET , ,CW3388 Nine Points PA US , +C3389,3,518.0000 ,34.87083 ,-84.27800,APRSWXNET , ,CW3389 Blue Ridge GA US , +C3391,3,509.0000 ,33.75000 ,-116.9413,APRSWXNET , ,CW3391 Hemet CA US , +C3394,3,146.0000 ,52.53000 ,-2.001170,APRSWXNET , ,CW3394 West Bromwich UK , +C3398,3,655.0000 ,30.19667 ,-99.30383,APRSWXNET , ,CW3398 Mountain Home TX US , +C3400,3,996.7000 ,41.12700 ,-101.7150,APRSWXNET , ,CW3400 Ogallala NE US , +C3402,3,316.0000 ,41.73722 ,-73.18777,APRSWXNET , ,CW3402 Litchfield CT US , +C3403,3,298.7000 ,39.75367 ,-82.56833,APRSWXNET , ,CW3403 Lancaster OH US , +C3407,3,243.8000 ,42.00594 ,-88.22052,APRSWXNET , ,CW3407 Bartlett IL US , +C3409,3,170.0000 ,47.08767 ,-122.3185,APRSWXNET , ,CW3409 Puyallup WA US , +C3410,3,495.0000 ,40.02666 ,-98.06920,APRSWXNET , ,CW3410 Superior NE US , +C3413,3,54.90000 ,45.62633 ,-121.2222,APRSWXNET , ,CW3413 The Dalles OR US , +C3414,3,120.0000 ,42.14865 ,-71.52513,APRSWXNET , ,CW3414 Milford MA US , +C3416,3,249.9000 ,39.34217 ,-78.75667,APRSWXNET , ,CW3416 Romney WV US , +C3418,3,10.00000 ,52.55867 ,-0.240830,APRSWXNET , ,CW3418 Peterborough UK , +C3421,3,219.6000 ,47.32237 ,-91.21836,APRSWXNET , ,CW3421 Silver Bay MN US , +C3422,3,6.000000 ,38.96417 ,-74.92500,APRSWXNET , ,CW3422 N.Cape May NJ US , +C3424,3,1524.400 ,34.23367 ,-111.3013,APRSWXNET , ,CW3424 Payson AZ US , +C3427,3,27.00000 ,37.99250 ,-121.8253,APRSWXNET , ,CW3427 Antioch CA US , +C3428,3,1444.000 ,39.33717 ,-112.4683,APRSWXNET , ,CW3428 Delta UT US , +C3429,3,237.7000 ,39.60250 ,-86.21633,APRSWXNET , ,CW3429 Greenwood IN US , +C3430,3,1340.000 ,40.49100 ,-111.9210,APRSWXNET , ,CW3430 Murray UT US , +C3438,3,10.00000 ,38.63531 ,-77.10993,APRSWXNET , ,CW3438 Hollis Point MD US , +C3440,3,30.00000 ,46.16867 ,-122.9672,APRSWXNET , ,CW3440 Longview WA US , +C3441,3,256.0000 ,29.61033 ,-98.24167,APRSWXNET , ,CW3441 Cibolo TX US , +C3442,3,31.00000 ,45.56324 ,-73.83362,APRSWXNET , ,CW3442 Laval QC CA , +C3444,3,2037.000 ,45.67002 ,-111.9367,APRSWXNET , ,CW3444 Pony MT US , +C3448,3,83.50000 ,38.64967 ,-121.1478,APRSWXNET , ,CW3448 Folsom CA US , +C3450,3,111.0000 ,35.36603 ,-119.1228,APRSWXNET , ,CW3450 Bakersfield CA US , +C3452,3,3.100000 ,38.87070 ,-76.36402,APRSWXNET , ,CW3452 Stevensville MD US , +C3453,3,77.00000 ,45.54533 ,-122.8528,APRSWXNET , ,CW3453 Beaverton OR US , +C3456,3,91.40000 ,35.63850 ,-89.54217,APRSWXNET , ,CW3456 Henning TN US , +C3459,3,1267.000 ,40.11967 ,-102.7558,APRSWXNET , ,CW3459 Yuma CO US , +C3462,3,305.0000 ,35.04700 ,-82.18333,APRSWXNET , ,CW3462 Inman SC US , +C3464,3,9.000000 ,30.58094 ,-88.07156,APRSWXNET , ,CW3464 Mobile AL US , +C3465,3,160.0000 ,52.28848 ,-1.946370,APRSWXNET , ,CW3465 Redditch UK , +C3467,3,650.0000 ,42.22503 ,0.990140 ,APRSWXNET , ,CW3467 Sant Marti de Canals ES , +C3468,3,289.0000 ,30.19703 ,-97.90421,APRSWXNET , ,CW3468 Austin TX US , +C3471,3,0.000000 ,53.20967 ,6.280000 ,APRSWXNET , ,CW3471 Grootegast NL , +C3474,3,2316.500 ,39.06438 ,-104.7486,APRSWXNET , ,CW3474 Black Forest CO US , +C3477,3,180.0000 ,54.50033 ,-2.491670,APRSWXNET , ,CW3477 Appleby in Westmoreland UK , +C3482,3,104.2000 ,47.78250 ,-122.2792,APRSWXNET , ,CW3482 Brier WA US , +C3483,3,153.9000 ,30.17867 ,-97.25367,APRSWXNET , ,CW3483 Bastrop TX US , +C3484,3,270.0000 ,35.10400 ,-81.77400,APRSWXNET , ,CW3484 Gaffney SC US , +C3485,3,121.9000 ,42.65833 ,-124.4083,APRSWXNET , ,CW3485 Port Orford OR US , +C3488,3,36.00000 ,35.69793 ,139.7302 ,APRSWXNET , ,CW3488 Tokyo JP , +C3490,3,2118.400 ,34.12250 ,-109.9333,APRSWXNET , ,CW3490 Lakeside AZ US , +C3491,3,1011.000 ,37.48333 ,-119.8333,APRSWXNET , ,CW3491 Mariposa CA US , +C3494,3,291.1000 ,44.87783 ,-93.45450,APRSWXNET , ,CW3494 Eden Prairie MN US , +C3500,3,10.00000 ,33.94089 ,-78.20356,APRSWXNET , ,CW3500 Sunset Harbor NC US , +C3501,3,98.00000 ,45.14600 ,-123.1333,APRSWXNET , ,CW3501 Amity OR US , +C3502,3,9.000000 ,27.86767 ,-82.24083,APRSWXNET , ,CW3502 Valrico FL US , +C3504,3,391.7000 ,39.30560 ,-78.62720,APRSWXNET , ,CW3504 Augusta WV US , +C3505,3,10.00000 ,55.68450 ,11.65000 ,APRSWXNET , ,CW3505 Holbak DK , +C3507,3,7.600000 ,46.82367 ,-124.1008,APRSWXNET , ,CW3507 Grayland WA US , +C3508,3,146.3000 ,33.34320 ,-86.82010,APRSWXNET , ,CW3508 Riverchase AL US , +C3509,3,25.00000 ,53.44944 ,-2.387770,APRSWXNET , ,CW3509 Manchester UK , +C3510,3,103.6000 ,40.28828 ,-75.25709,APRSWXNET , ,CW3510 Line Lexington PA US , +C3511,3,9.000000 ,55.75000 ,11.37650 ,APRSWXNET , ,CW3511 Starreklinte DK , +C3512,3,14.00000 ,37.38783 ,-122.0195,APRSWXNET , ,CW3512 Sunnyvale CA US , +C3514,3,243.0000 ,49.10470 ,6.400800 ,APRSWXNET , ,CW3514 Courcelles-Chaussy FR , +C3516,3,160.0000 ,40.26685 ,-76.79774,APRSWXNET , ,CW3516 Harrisburg PA US , +C3517,3,80.00000 ,50.88423 ,-3.373560,APRSWXNET , ,CW3517 Cullompton UK , +C3518,3,265.0000 ,33.34143 ,-97.30844,APRSWXNET , ,CW3518 Sanger TX US , +C3521,3,161.5000 ,43.39044 ,-70.77886,APRSWXNET , ,CW3521 North Berwick ME US , +C3522,3,34.00000 ,53.73972 ,-2.714140,APRSWXNET , ,CW3522 Preston UK , +C3524,3,116.0000 ,47.47050 ,7.783670 ,APRSWXNET , ,CW3524 Avignon FR , +C3525,3,300.2000 ,38.58250 ,-95.38056,APRSWXNET , ,CW3525 Ottawa KS US , +C3527,3,103.0000 ,42.56920 ,-71.45220,APRSWXNET , ,CW3527 Westford MA US , +C3529,3,1477.000 ,31.43333 ,-110.2355,APRSWXNET , ,CW3529 Hereford AZ US , +C3537,3,15.00000 ,38.08367 ,-122.5685,APRSWXNET , ,CW3537 Novato CA US , +C3538,3,539.0000 ,48.19837 ,-101.3075,APRSWXNET , ,CW3538 Minot ND US , +C3539,3,474.0000 ,33.76049 ,-116.9838,APRSWXNET , ,CW3539 Hemet CA US , +C3540,3,14.00000 ,55.72750 ,12.40284 ,APRSWXNET , ,CW3540 Copenhagen DK , +C3546,3,63.00000 ,53.14800 ,-2.371670,APRSWXNET , ,CW3546 Crewe UK , +C3547,3,200.0000 ,54.41667 ,-6.100000,APRSWXNET , ,CW3547 Dromore N.Ire UK , +C3550,3,1935.600 ,34.23083 ,-110.0375,APRSWXNET , ,CW3550 Show Low AZ US , +C3551,3,301.0000 ,42.30898 ,-85.67000,APRSWXNET , ,CW3551 Kalamazoo MI US , +C3552,3,33.00000 ,60.16450 ,24.52833 ,APRSWXNET , ,CW3552 Espoo FI , +C3556,3,181.0000 ,38.83883 ,-90.72867,APRSWXNET , ,CW3556 Ofallon MO US , +C3558,3,269.0000 ,39.36792 ,-93.99358,APRSWXNET , ,CW3558 Richmond MO US , +C3565,3,0.000000 ,44.00000 ,12.65000 ,APRSWXNET , ,CW3565 Riccione IT , +C3577,3,45.00000 ,42.70500 ,-71.41533,APRSWXNET , ,CW3577 Hudson NH US , +C3581,3,1727.600 ,39.55717 ,-104.9747,APRSWXNET , ,CW3581 Highlands Ranch CO US , +C3582,3,12.00000 ,50.69783 ,-1.301330,APRSWXNET , ,CW3582 Newport Isle of Wight UK , +C3583,3,14.00000 ,43.47000 ,-3.779670,APRSWXNET , ,CW3583 Santander ES , +C3586,3,253.9000 ,42.86950 ,-73.40817,APRSWXNET , ,CW3586 Hoosick Falls NY US , +C3590,3,167.0000 ,32.29515 ,-95.24273,APRSWXNET , ,CW3590 Tyler TX US , +C3591,3,27.50000 ,51.83083 ,-2.257170,APRSWXNET , ,CW3591 Gloucester UK , +C3595,3,15.00000 ,51.38883 ,-3.291670,APRSWXNET , ,CW3595 Barry UK , +C3596,3,240.0000 ,50.56550 ,15.06583 ,APRSWXNET , ,CW3596 Mlada Boleslav CZ , +C3597,3,189.0000 ,41.99574 ,-71.88217,APRSWXNET , ,CW3597 North Grosvenor Dale CT US , +C3603,3,366.0000 ,40.69133 ,-80.07950,APRSWXNET , ,CW3603 Cranberry Twp PA US , +C3606,3,285.6000 ,40.45833 ,-83.08167,APRSWXNET , ,CW3606 Waldo OH US , +C3607,3,62.00000 ,36.64517 ,-120.2537,APRSWXNET , ,CW3607 Tranquillity CA US , +C3609,3,4.000000 ,26.55000 ,-82.01000,APRSWXNET , ,CW3609 Cape Coral FL US , +C3615,3,10.00000 ,40.73117 ,-73.32367,APRSWXNET , ,CW3615 North Babylon NY US , +C3616,3,83.00000 ,17.72300 ,-64.86500,APRSWXNET , ,CW3616 Frederiksted VI US , +C3617,3,33.00000 ,26.18700 ,-98.27050,APRSWXNET , ,CW3617 McAllen TX US , +C3618,3,200.0000 ,33.32644 ,-117.2479,APRSWXNET , ,CW3618 Fallbrook CA US , +C3619,3,450.0000 ,47.50000 ,8.600000 ,APRSWXNET , ,CW3619 Winterthur CH , +C3621,3,192.0000 ,38.02867 ,-85.56133,APRSWXNET , ,CW3621 Mt. Washington KY US , +C3624,3,146.0000 ,51.73197 ,-2.244390,APRSWXNET , ,CW3624 Stroud UK , +C3625,3,201.0000 ,42.29333 ,-83.26867,APRSWXNET , ,CW3625 Dearborn MI US , +C3626,3,256.0000 ,39.94529 ,-81.99670,APRSWXNET , ,CW3626 Zanesville OH US , +C3627,3,44.20000 ,38.40200 ,-122.8283,APRSWXNET , ,CW3627 Sabastopol CA US , +C3628,3,60.00000 ,38.44496 ,-122.6889,APRSWXNET , ,CW3628 Santa Rosa CA US , +C3631,3,91.10000 ,40.24852 ,-124.1645,APRSWXNET , ,CW3631 Honeydew CA US , +C3633,3,85.00000 ,52.60917 ,-1.665500,APRSWXNET , ,CW3633 Tamworth UK , +C3636,3,9.000000 ,56.78550 ,8.468330 ,APRSWXNET , ,CW3636 Thisted DK , +C3639,3,258.5000 ,34.89450 ,-82.13217,APRSWXNET , ,CW3639 Duncan SC US , +C3640,3,192.0000 ,30.62717 ,-97.57283,APRSWXNET , ,CW3640 Georgetown TX US , +C3642,3,229.8000 ,45.23783 ,-85.31883,APRSWXNET , ,CW3642 Charlevoix MI US , +C3643,3,105.0000 ,38.78167 ,-9.114500,APRSWXNET , ,CW3643 Lisbon PT , +C3644,3,378.0000 ,20.21383 ,-155.8380,APRSWXNET , ,CW3644 Hawi HI US , +C3645,3,139.0000 ,41.93000 ,12.44783 ,APRSWXNET , ,CW3645 Roma IT , +C3646,3,33.00000 ,50.63602 ,-2.442480,APRSWXNET , ,CW3646 Weymouth UK , +C3648,3,123.0000 ,39.01750 ,-77.13133,APRSWXNET , ,CW3648 Bethesda MD US , +C3655,3,250.0000 ,34.61282 ,-82.13363,APRSWXNET , ,CW3655 Gray Court SC US , +C3656,3,132.6000 ,38.27580 ,-87.99890,APRSWXNET , ,CW3656 Grayville IL US , +C3658,3,316.0000 ,38.97433 ,-94.66851,APRSWXNET , ,CW3658 Overland Park KS US , +C3659,3,373.4000 ,34.29050 ,-118.6830,APRSWXNET , ,CW3659 Simi Valley CA US , +C3660,3,55.00000 ,42.62576 ,-71.33702,APRSWXNET , ,CW3660 Lowell MA US , +C3662,3,4.000000 ,40.32867 ,-73.97550,APRSWXNET , ,CW3662 Monmouth Beach NJ US , +C3663,3,226.0000 ,41.80383 ,-88.10083,APRSWXNET , ,CW3663 Lisle IL US , +C3666,3,9.000000 ,29.50000 ,-81.23333,APRSWXNET , ,CW3666 Palm Coast FL US , +C3667,3,209.1000 ,39.45367 ,-88.20333,APRSWXNET , ,CW3667 Charleston IL US , +C3668,3,2280.800 ,39.09333 ,-104.6612,APRSWXNET , ,CW3668 Black Forest CO US , +C3669,3,272.8000 ,33.29383 ,-84.66250,APRSWXNET , ,CW3669 Sharpsburg GA US , +C3670,3,1097.000 ,48.12950 ,-111.7687,APRSWXNET , ,CW3670 Conrad MT US , +C3672,3,24.40000 ,-27.40383,-48.41700,APRSWXNET , ,CW3672 Florianopolis BR , +C3677,3,5.000000 ,39.11271 ,-75.74528,APRSWXNET , ,CW3677 Marydel DE US , +C3681,3,53.00000 ,42.60967 ,-71.40750,APRSWXNET , ,CW3681 Westford MA US , +C3683,3,129.0000 ,47.69944 ,-122.3158,APRSWXNET , ,CW3683 Seattle WA US , +JCTA2,3,503.0000 ,62.29305 ,-145.3353,APRSWXNET , ,CW3684 Gulkana AK US , +C3685,3,20.00000 ,58.48833 ,16.94133 ,APRSWXNET , ,CW3685 Norrkaping SE , +C3686,3,210.3000 ,42.71550 ,-87.82550,APRSWXNET , ,CW3686 Racine WI US , +C3690,3,32.00000 ,42.66409 ,-70.99775,APRSWXNET , ,CW3690 Boxford MA US , +C3691,3,87.50000 ,32.59967 ,-89.99200,APRSWXNET , ,CW3691 Canton MS US , +C3698,3,225.0000 ,32.53211 ,-97.29494,APRSWXNET , ,CW3698 Burlesen TX US , +C3699,3,381.9000 ,44.30883 ,-85.26250,APRSWXNET , ,CW3699 Lake City MI US , +C3702,3,2225.000 ,39.11717 ,-104.6917,APRSWXNET , ,CW3702 Black Forest CO US , +C3705,3,653.0000 ,42.19767 ,-122.7220,APRSWXNET , ,CW3705 Ashland OR US , +C3708,3,119.5000 ,41.03650 ,-74.23100,APRSWXNET , ,CW3708 Oakland NJ US , +C3709,3,253.0000 ,40.70583 ,-84.14783,APRSWXNET , ,CW3709 Lima OH US , +C3710,3,21.00000 ,28.24750 ,-82.48117,APRSWXNET , ,CW3710 Land O Lakes FL US , +C3711,3,15.00000 ,36.69533 ,-76.26950,APRSWXNET , ,CW3711 Chesapeake VA US , +C3712,3,12.50000 ,40.68033 ,-74.23383,APRSWXNET , ,CW3712 Union NJ US , +C3713,3,10.00000 ,53.52917 ,-1.105500,APRSWXNET , ,CW3713 Doncaster UK , +C3717,3,194.8000 ,41.55467 ,-91.53383,APRSWXNET , ,CW3717 Hills IA US , +C3721,3,365.0000 ,25.16383 ,121.4750 ,APRSWXNET , ,CW3721 Taipei TW , +C3722,3,182.0000 ,39.66967 ,-89.68783,APRSWXNET , ,CW3722 Chatham IL US , +C3724,3,56.40000 ,38.41133 ,-122.8417,APRSWXNET , ,CW3724 Sebastopol CA US , +C3725,3,65.00000 ,42.79533 ,-73.82283,APRSWXNET , ,CW3725 Vischer Ferry NY US , +C3728,3,246.9000 ,29.87050 ,-98.16083,APRSWXNET , ,CW3728 Sattler TX US , +C3730,3,18.00000 ,-36.87500,174.8083 ,APRSWXNET , ,CW3730 Auckland NZ , +C3732,3,485.0000 ,34.89183 ,-85.57017,APRSWXNET , ,CW3732 Trenton GA US , +C3736,3,1539.000 ,45.42133 ,-110.6983,APRSWXNET , ,CW3736 Livingston MT US , +C3739,3,1769.400 ,35.05883 ,-106.4650,APRSWXNET , ,CW3739 Carnuel NM US , +C3742,3,243.8000 ,40.98000 ,-91.33333,APRSWXNET , ,CW3742 New London IA US , +C3744,3,1731.300 ,39.66967 ,-104.8218,APRSWXNET , ,CW3744 Aurora CO US , +C3746,3,515.0000 ,36.11262 ,-115.0544,APRSWXNET , ,CW3746 Las Vegas NV US , +C3747,3,240.0000 ,35.43663 ,-86.79004,APRSWXNET , ,CW3747 Lewisburg TN US , +C3748,3,345.0000 ,41.24238 ,-95.92511,APRSWXNET , ,CW3748 Omaha NE US , +C3749,3,533.0000 ,33.39467 ,-111.4800,APRSWXNET , ,CW3749 Apache Junction AZ US , +C3750,3,69.00000 ,42.87470 ,-71.17540,APRSWXNET , ,CW3750 Hampstead NH US , +C3753,3,64.00000 ,50.83050 ,6.904170 ,APRSWXNET , ,CW3753 Bruehl DE , +C3754,3,39.00000 ,38.35133 ,-76.62500,APRSWXNET , ,CW3754 Leonardtown MD US , +C3755,3,32.00000 ,51.51617 ,7.000330 ,APRSWXNET , ,CW3755 Essen DE , +C3761,3,32.00000 ,56.56667 ,9.166670 ,APRSWXNET , ,CW3761 Skive DK , +C3762,3,414.5000 ,31.58050 ,-98.22117,APRSWXNET , ,CW3762 Hamilton TX US , +C3765,3,393.3000 ,33.46750 ,-111.9592,APRSWXNET , ,CW3765 Phoenix AZ US , +C3766,3,81.00000 ,38.84467 ,-77.45500,APRSWXNET , ,CW3766 Centreville VA US , +C3767,3,4.000000 ,25.54374 ,-76.75067,APRSWXNET , ,CW3767 The Bluff BS , +C3768,3,180.4000 ,45.89813 ,-86.54862,APRSWXNET , ,CW3768 Garden Corners MI US , +C3771,3,3.000000 ,28.10083 ,-82.72950,APRSWXNET , ,CW3771 Palm Harbor FL US , +C3773,3,282.0000 ,43.11370 ,-88.44250,APRSWXNET , ,CW3773 Okauchee WI US , +C3774,3,112.0000 ,39.09790 ,-77.58721,APRSWXNET , ,CW3774 Leesburg VA US , +C3776,3,30.20000 ,34.06739 ,-78.86906,APRSWXNET , ,CW3776 Loris SC US , +C3777,3,3.300000 ,37.08867 ,-76.42067,APRSWXNET , ,CW3777 Hampton VA US , +C3778,3,278.0000 ,41.96010 ,-88.42280,APRSWXNET , ,CW3778 St. Charles IL US , +C3780,3,145.0000 ,51.36100 ,7.568830 ,APRSWXNET , ,CW3780 Hohenlimburg DE , +C3782,3,121.0000 ,35.61667 ,-78.80133,APRSWXNET , ,CW3782 Fuquay Varina NC US , +C3783,3,67.00000 ,39.23950 ,-76.70783,APRSWXNET , ,CW3783 Relay MD US , +C3784,3,1.000000 ,34.71117 ,-76.74573,APRSWXNET , ,CW3784 Atlantic Beach NC US , +C3786,3,182.9000 ,33.78167 ,-118.3613,APRSWXNET , ,CW3786 Rolling Hills Estates CA US , +C3789,3,119.0000 ,38.74375 ,-9.221350,APRSWXNET , ,CW3789 Damaia PT , +C3790,3,20.00000 ,43.66750 ,-70.35117,APRSWXNET , ,CW3790 Westbrook ME US , +C3791,3,146.9000 ,39.19133 ,-77.27700,APRSWXNET , ,CW3791 Germantown MD US , +C3793,3,4.000000 ,28.12865 ,-82.77090,APRSWXNET , ,CW3793 Tarpon Springs FL US , +C3794,3,447.8000 ,33.65300 ,-112.0278,APRSWXNET , ,CW3794 Phoenix AZ US , +C3796,3,1044.000 ,37.32083 ,-119.5627,APRSWXNET , ,CW3796 Bass Lake CA US , +C3799,3,603.5000 ,34.23383 ,-118.2312,APRSWXNET , ,CW3799 La Crescenta CA US , +C3800,3,220.0000 ,42.40700 ,-83.42883,APRSWXNET , ,CW3800 Livonia MI US , +C3802,3,26.50000 ,30.47139 ,-89.18903,APRSWXNET , ,CW3802 Gulfport MS US , +C3803,3,24.70000 ,42.26689 ,-70.83116,APRSWXNET , ,CW3803 Hull MA US , +C3806,3,506.0000 ,42.15016 ,-76.65374,APRSWXNET , ,CW3806 Erin NY US , +C3807,3,1403.000 ,41.83800 ,-111.8320,APRSWXNET , ,CW3807 Smithfield UT US , +C3808,3,1197.000 ,45.42617 ,-117.2678,APRSWXNET , ,CW3808 Enterprise OR US , +C3813,3,199.6000 ,42.27117 ,-83.35750,APRSWXNET , ,CW3813 Wayne MI US , +C3815,3,292.0000 ,40.91600 ,-74.68250,APRSWXNET , ,CW3815 Hopatcong NJ US , +C3816,3,91.40000 ,38.93753 ,-77.31249,APRSWXNET , ,CW3816 Reston VA US , +C3817,3,175.0000 ,46.33883 ,-67.88600,APRSWXNET , ,CW3817 Monticello ME US , +C3819,3,590.2000 ,50.53220 ,-103.6720,APRSWXNET , ,CW3819 Indian Head SK CA , +C3821,3,1659.200 ,39.73467 ,-105.0792,APRSWXNET , ,CW3821 Lakewood CO US , +C3822,3,192.3000 ,39.13317 ,-89.49717,APRSWXNET , ,CW3822 Taylor springs IL US , +C3827,3,1835.000 ,33.60750 ,-105.7717,APRSWXNET , ,CW3827 Carrizozo NM US , +C3829,3,3.000000 ,25.74317 ,-80.32567,APRSWXNET , ,CW3829 Miami FL US , +C3831,3,120.0000 ,48.54667 ,-71.67155,APRSWXNET , ,CW3831 Alma PQ CA , +C3833,3,372.0000 ,42.87467 ,-77.44083,APRSWXNET , ,CW3833 East Bloomfield NY US , +C3837,3,46.60000 ,30.24700 ,-82.12000,APRSWXNET , ,CW3837 Macclenny FL US , +C3842,3,32.00000 ,27.81617 ,-81.80450,APRSWXNET , ,CW3842 Homeland FL US , +C3846,3,345.9000 ,33.33333 ,-112.4167,APRSWXNET , ,CW3846 Goodyear AZ US , +C3847,3,448.0000 ,28.38583 ,-16.52367,APRSWXNET , ,CW3847 La Orotava ES , +C3848,3,772.7000 ,43.29800 ,-100.6220,APRSWXNET , ,CW3848 Mission SD US , +C3859,3,-4.000000,52.50917 ,4.973830 ,APRSWXNET , ,CW3859 Purmerend NL , +C3862,3,346.9000 ,33.53182 ,-117.1440,APRSWXNET , ,CW3862 Temecula CA US , +C3863,3,44.80000 ,29.80550 ,-95.82833,APRSWXNET , ,CW3863 Katy TX US , +C3867,3,437.7000 ,38.14250 ,-97.46583,APRSWXNET , ,CW3867 Hesston KS US , +C3868,3,35.00000 ,42.72517 ,-71.20133,APRSWXNET , ,CW3868 Methuen MA US , +C3870,3,4.000000 ,34.06269 ,-77.91342,APRSWXNET , ,CW3870 Wilmington NC US , +C3873,3,1598.700 ,35.11050 ,-106.7370,APRSWXNET , ,CW3873 Albuquerque NM US , +C3879,3,99.00000 ,37.97633 ,-122.3050,APRSWXNET , ,CW3879 El Sobrante CA US , +C3881,3,194.0000 ,46.45000 ,-86.71667,APRSWXNET , ,CW3881 Christmas MI US , +C3882,3,266.0000 ,43.80050 ,-90.07333,APRSWXNET , ,CW3882 Mauston WI US , +C3884,3,43.60000 ,37.96200 ,-122.0078,APRSWXNET , ,CW3884 Concord CA US , +C3887,3,16.80000 ,29.92650 ,-95.17000,APRSWXNET , ,CW3887 Houston TX US , +C3889,3,30.00000 ,64.90000 ,-23.70000,APRSWXNET , ,CW3889 Olafsvik IS , +C3893,3,500.2000 ,41.02585 ,-75.61055,APRSWXNET , ,CW3893 Albrightsville PA US , +C3904,3,263.0000 ,41.66500 ,-86.50617,APRSWXNET , ,CW3904 New Carlisle IN US , +C3907,3,218.8000 ,40.91383 ,-85.92383,APRSWXNET , ,CW3907 Roann IN US , +C3908,3,415.7000 ,34.45325 ,-84.52863,APRSWXNET , ,CW3908 Hillcity GA US , +C3909,3,24.00000 ,27.84050 ,-82.22583,APRSWXNET , ,CW3909 Lithia FL US , +C3911,3,240.8000 ,39.35250 ,-94.35611,APRSWXNET , ,CW3911 Kearney MO US , +C3916,3,1.000000 ,29.83401 ,-90.00317,APRSWXNET , ,CW3916 Belle Chasse LA US , +C3917,3,315.0000 ,33.90766 ,-117.7837,APRSWXNET , ,CW3917 Yorba Linda CA US , +C3918,3,350.0000 ,49.32033 ,11.13083 ,APRSWXNET , ,CW3918 Nuremberg DE , +C3920,3,1402.100 ,39.57117 ,-119.7162,APRSWXNET , ,CW3920 Sparks NV US , +C3921,3,124.0000 ,42.69783 ,-83.05050,APRSWXNET , ,CW3921 Shelby Twp. MI US , +C3923,3,800.0000 ,40.40283 ,-7.538000,APRSWXNET , ,CW3923 Manteigas PT , +C3924,3,32.00000 ,28.65072 ,-81.33895,APRSWXNET , ,CW3924 Orlando FL US , +C3925,3,57.00000 ,42.52917 ,-71.22367,APRSWXNET , ,CW3925 Billerica MA US , +C3926,3,434.2000 ,43.26383 ,-74.98050,APRSWXNET , ,CW3926 Cold Brook NY US , +C3927,3,404.0000 ,36.15717 ,-94.12050,APRSWXNET , ,CW3927 Springdale AR US , +C3930,3,523.0000 ,37.88961 ,-81.17286,APRSWXNET , ,CW3930 Mt. Hope WV US , +C3931,3,421.0000 ,39.03252 ,-122.9223,APRSWXNET , ,CW3931 Lakeport CA US , +C3932,3,393.2000 ,42.36570 ,-122.9058,APRSWXNET , ,CW3932 Central Point OR US , +C3934,3,134.1000 ,29.05869 ,-97.59118,APRSWXNET , ,CW3934 Yorktown TX US , +C3940,3,147.0000 ,39.78985 ,-75.87341,APRSWXNET , ,CW3940 West Grove PA US , +C3941,3,25.30000 ,29.61667 ,-95.73950,APRSWXNET , ,CW3941 Richmond TX US , +C3945,3,427.6000 ,42.79283 ,-77.43643,APRSWXNET , ,CW3945 Bristol NY US , +C3947,3,64.90000 ,31.53917 ,-87.92750,APRSWXNET , ,CW3947 Jackson AL US , +C3951,3,44.00000 ,30.40467 ,-84.26950,APRSWXNET , ,CW3951 Tallahassee FL US , +C3952,3,25.00000 ,30.38508 ,-84.22382,APRSWXNET , ,CW3952 Tallahassee FL US , +C3953,3,268.0000 ,42.17793 ,-88.10226,APRSWXNET , ,CW3953 Lake Zurich IL US , +C3954,3,235.0000 ,41.69617 ,-88.22883,APRSWXNET , ,CW3954 Naperville IL US , +C3961,3,2.000000 ,30.15967 ,-85.66283,APRSWXNET , ,CW3961 Panama City FL US , +C3962,3,44.00000 ,30.42200 ,-84.98133,APRSWXNET , ,CW3962 Bristol FL US , +C3964,3,38.00000 ,30.54217 ,-87.29917,APRSWXNET , ,CW3964 Cantonment FL US , +C3965,3,19.00000 ,30.66300 ,-87.05550,APRSWXNET , ,CW3965 Milton FL US , +C3966,3,37.00000 ,30.76500 ,-85.25550,APRSWXNET , ,CW3966 Mariana FL US , +C3973,3,223.4000 ,41.43700 ,-74.25160,APRSWXNET , ,CW3973 Campbell Hall NY US , +C3976,3,30.00000 ,45.72033 ,-123.9337,APRSWXNET , ,CW3976 Manzanita OR US , +C3977,3,227.0000 ,39.02711 ,-78.27596,APRSWXNET , ,CW3977 Middletown VA US , +C3980,3,230.4000 ,35.11894 ,-86.56430,APRSWXNET , ,CW3980 Fayetteville TN US , +C3982,3,153.9000 ,33.27133 ,-86.85583,APRSWXNET , ,CW3982 Helena AL US , +C3984,3,4.500000 ,25.70967 ,-80.25250,APRSWXNET , ,CW3984 Miami FL US , +C3985,3,175.0000 ,35.92300 ,-78.64417,APRSWXNET , ,CW3985 Raleigh NC US , +C3992,3,287.0000 ,38.22033 ,-95.01500,APRSWXNET , ,CW3992 Centerville KS US , +C3993,3,2563.000 ,38.54333 ,-106.1925,APRSWXNET , ,CW3993 Poncha Springs CO US , +C3995,3,25.00000 ,32.22083 ,-81.32050,APRSWXNET , ,CW3995 Guyton GA US , +C3996,3,1565.200 ,39.37217 ,-112.3338,APRSWXNET , ,CW3996 Oak City UT US , +C4000,3,262.0000 ,43.10367 ,-85.51617,APRSWXNET , ,CW4000 Rockford MI US , +C4006,3,13.00000 ,56.69133 ,12.69300 ,APRSWXNET , ,CW4006 Halmstad SE , +C4009,3,148.4000 ,43.97250 ,-75.92000,APRSWXNET , ,CW4009 Watertown NY US , +C4011,3,210.3000 ,43.35367 ,-73.83333,APRSWXNET , ,CW4011 Lake Luzerne NY US , +C4012,3,891.0000 ,44.56417 ,-120.1472,APRSWXNET , ,CW4012 Mitchell OR US , +C4013,3,40.00000 ,28.00891 ,-82.07204,APRSWXNET , ,CW4013 Plant City FL US , +C4014,3,25.00000 ,40.91800 ,-74.14450,APRSWXNET , ,CW4014 Paterson NJ US , +C4017,3,34.00000 ,34.01667 ,-118.4317,APRSWXNET , ,CW4017 Los Angeles CA US , +C4018,3,10.00000 ,28.20099 ,-80.70558,APRSWXNET , ,CW4018 Melbourne FL US , +C4020,3,28.50000 ,41.69667 ,-70.92450,APRSWXNET , ,CW4020 Acushnet MA US , +C4023,3,76.20000 ,41.02167 ,-74.29950,APRSWXNET , ,CW4023 Haskell NJ US , +C4024,3,210.0000 ,38.38450 ,-91.23050,APRSWXNET , ,CW4024 Leslie MO US , +C4026,3,255.4000 ,44.52283 ,-92.93383,APRSWXNET , ,CW4026 Cannon Falls MN US , +CGKA2,3,91.40000 ,61.42300 ,-149.4450,APRSWXNET , ,CW4027 Chugiak AK US , +C4029,3,107.6000 ,42.32277 ,-71.45126,APRSWXNET , ,CW4029 Framingham MA US , +C4030,3,125.0000 ,27.76033 ,-15.60967,APRSWXNET , ,CW4030 Las Palmas ES , +C4032,3,1827.600 ,39.52700 ,-104.9510,APRSWXNET , ,CW4032 Highlands Ranch CO US , +C4037,3,4.000000 ,28.20100 ,-82.70783,APRSWXNET , ,CW4037 New Port Richey FL US , +C4038,3,128.0000 ,35.38817 ,-119.1002,APRSWXNET , ,CW4038 Bakersfield CA US , +C4042,3,5.000000 ,26.57917 ,-80.05633,APRSWXNET , ,CW4042 Lantana FL US , +C4043,3,2.000000 ,53.32533 ,6.899670 ,APRSWXNET , ,CW4043 Delfzijl NL , +C4046,3,175.3000 ,41.94283 ,-83.26517,APRSWXNET , ,CW4046 Stoney Point MI US , +C4052,3,45.00000 ,51.20300 ,-4.130500,APRSWXNET , ,CW4052 Ilfracombe UK , +C4054,3,171.0000 ,39.39467 ,-76.93800,APRSWXNET , ,CW4054 Eldersburg MD US , +C4060,3,156.7000 ,42.31733 ,-83.25883,APRSWXNET , ,CW4060 Dearborn MI US , +C4066,3,237.7000 ,41.92350 ,-88.21900,APRSWXNET , ,CW4066 West Chicago IL US , +C4070,3,849.0000 ,35.05700 ,-118.1513,APRSWXNET , ,CW4070 Mojave NTPS CA US , +C4083,3,9.000000 ,28.14833 ,-80.67800,APRSWXNET , ,CW4083 Melbourne FL US , +C4086,3,620.6000 ,33.73344 ,-116.8803,APRSWXNET , ,CW4086 Hemet CA US , +C4090,3,37.00000 ,52.27075 ,-9.701200,APRSWXNET , ,CW4090 Tralee IE , +C4093,3,317.0000 ,40.95783 ,-75.51250,APRSWXNET , ,CW4093 Jonus PA US , +C4097,3,227.0000 ,33.56282 ,-96.90195,APRSWXNET , ,CW4097 Collinsville TX US , +C4098,3,879.0000 ,32.32333 ,-110.8437,APRSWXNET , ,CW4098 Tucson AZ US , +C4099,3,365.8000 ,38.36024 ,-78.64429,APRSWXNET , ,CW4099 Elkton VA US , +C4103,3,2.000000 ,29.91570 ,-84.51120,APRSWXNET , ,CW4103 St. Teresa FL US , +C4104,3,1406.000 ,39.33083 ,-112.6053,APRSWXNET , ,CW4104 Delta UT US , +C4105,3,2432.300 ,38.13300 ,-105.4487,APRSWXNET , ,CW4105 Silver Cliff CO US , +C4108,3,974.1000 ,31.94967 ,-110.7950,APRSWXNET , ,CW4108 Vail AZ US , +C4111,3,3.000000 ,39.71083 ,-74.13133,APRSWXNET , ,CW4111 Harvey Cedars NJ US , +C4113,3,139.0000 ,40.31114 ,-76.00989,APRSWXNET , ,CW4113 Sinking Spring PA US , +C4114,3,220.0000 ,42.41583 ,-83.40017,APRSWXNET , ,CW4114 Livonia MI US , +C4115,3,41.80000 ,37.32415 ,-121.9806,APRSWXNET , ,CW4115 Santa Clara CA US , +C4117,3,1402.100 ,40.33767 ,-111.7287,APRSWXNET , ,CW4117 Lindon UT US , +C4120,3,103.6000 ,38.80963 ,-77.29571,APRSWXNET , ,CW4120 Fairfax VA US , +C4123,3,412.0000 ,46.79083 ,-95.80867,APRSWXNET , ,CW4123 Detroit Lakes MN US , +C4126,3,749.0000 ,-23.45210,-46.53355,APRSWXNET , ,CW4126 Guarulhos BR , +C4129,3,12.00000 ,55.66033 ,12.45167 ,APRSWXNET , ,CW4129 Broendby DK , +C4132,3,141.0000 ,36.04467 ,-78.45583,APRSWXNET , ,CW4132 Youngsville NC US , +C4135,3,1496.600 ,30.37004 ,-103.7809,APRSWXNET , ,CW4135 Alpine 7 WNW TX US , +C4138,3,44.00000 ,48.24300 ,-69.54300,APRSWXNET , ,CW4138 Les Bergeronnes CA , +C4141,3,348.1000 ,33.48700 ,-117.0630,APRSWXNET , ,CW4141 Temecula CA US , +C4143,3,402.0000 ,44.99778 ,-84.65306,APRSWXNET , ,CW4143 Gaylord MI US , +C4149,3,320.0000 ,35.06130 ,-82.25924,APRSWXNET , ,CW4149 Greer SC US , +C4150,3,215.0000 ,49.33669 ,8.902970 ,APRSWXNET , ,CW4150 Epfenbach DE , +C4155,3,1073.000 ,40.08050 ,-102.2163,APRSWXNET , ,CW4155 Wray CO US , +C4160,3,275.0000 ,41.68667 ,-73.10417,APRSWXNET , ,CW4160 Thomaston CT US , +C4162,3,25.00000 ,40.22968 ,-8.523550,APRSWXNET , ,CW4162 Coimbra PT , +C4163,3,15.00000 ,30.40156 ,-86.95353,APRSWXNET , ,CW4163 Gulf Breeze FL US , +C4164,3,31.00000 ,52.33667 ,-0.089500,APRSWXNET , ,CW4164 St Ives UK , +C4167,3,39.00000 ,55.64967 ,11.81300 ,APRSWXNET , ,CW4167 Holbaek DK , +C4171,3,35.00000 ,38.98620 ,1.300000 ,APRSWXNET , ,CW4171 Ibiza ES , +C4173,3,426.7000 ,36.10000 ,-82.85000,APRSWXNET , ,CW4173 Greenville TN US , +C4174,3,8.000000 ,28.33207 ,-80.73679,APRSWXNET , ,CW4174 Rockledge FL US , +C4175,3,2.000000 ,35.45957 ,-76.88134,APRSWXNET , ,CW4175 Washington NC US , +C4176,3,64.00000 ,45.48050 ,-122.8728,APRSWXNET , ,CW4176 Aloha OR US , +C4177,3,378.0000 ,36.47750 ,-118.8445,APRSWXNET , ,CW4177 Three Rivers CA US , +C4179,3,77.00000 ,45.18533 ,9.162170 ,APRSWXNET , ,CW4179 Pavia IT , +C4181,3,100.0000 ,34.02633 ,-118.7953,APRSWXNET , ,CW4181 Malibu CA US , +C4183,3,66.00000 ,27.82303 ,-81.53237,APRSWXNET , ,CW4183 Hillcrest Heights FL US , +C4184,3,295.7000 ,33.47217 ,-84.66300,APRSWXNET , ,CW4184 Newnan GA US , +C4185,3,3.000000 ,29.95050 ,-90.19917,APRSWXNET , ,CW4185 New Orleans LA US , +C4189,3,81.70000 ,34.11950 ,-80.82750,APRSWXNET , ,CW4189 Elgin SC US , +C4190,3,157.0000 ,37.72500 ,-121.8683,APRSWXNET , ,CW4190 Dublin CA US , +C4191,3,1551.000 ,45.75133 ,-111.0117,APRSWXNET , ,CW4191 Bozeman MT US , +C4192,3,366.0000 ,33.49900 ,-111.9817,APRSWXNET , ,CW4192 Phoenix AZ US , +C4197,3,16.80000 ,38.48630 ,-75.53325,APRSWXNET , ,CW4197 Delmar DE US , +C4198,3,300.0000 ,39.51400 ,-7.644000,APRSWXNET , ,CW4198 Nisa PT , +C4199,3,131.1000 ,35.71044 ,-88.82270,APRSWXNET , ,CW4199 Jackson TN US , +C4204,3,5.000000 ,27.65233 ,-97.29717,APRSWXNET , ,CW4204 Corpus Christi TX US , +C4205,3,215.0000 ,42.73306 ,-73.19734,APRSWXNET , ,CW4205 Williamstown MA US , +C4206,3,61.00000 ,36.78883 ,-77.57217,APRSWXNET , ,CW4206 Purdy VA US , +C4207,3,100.0000 ,42.56667 ,-87.90000,APRSWXNET , ,CW4207 Kenosha WI US , +C4208,3,240.0000 ,44.33697 ,-88.63459,APRSWXNET , ,CW4208 Hortonville WI US , +C4210,3,350.5000 ,44.16117 ,-72.81533,APRSWXNET , ,CW4210 Waitsfield VT US , +C4214,3,1187.000 ,40.59417 ,-1.907330,APRSWXNET , ,CW4214 Peralejos de las Truchas ES , +C4218,3,82.30000 ,35.12967 ,-89.80367,APRSWXNET , ,CW4218 Memphis TN US , +C4221,3,671.0000 ,36.24433 ,-115.2052,APRSWXNET , ,CW4221 North Las Vegas NV US , +C4223,3,152.4000 ,32.97883 ,-96.56700,APRSWXNET , ,CW4223 Sachse TX US , +C4224,3,17.00000 ,28.11048 ,-82.44605,APRSWXNET , ,CW4224 Lutz FL US , +C4227,3,242.9000 ,44.60431 ,-88.44281,APRSWXNET , ,CW4227 Navarino WI US , +C4228,3,1524.000 ,40.44250 ,-104.9480,APRSWXNET , ,CW4228 Windsor CO US , +C4232,3,1271.000 ,31.50145 ,-110.7730,APRSWXNET , ,CW4232 Patagonia AZ US , +C4233,3,842.8000 ,40.34848 ,-101.1058,APRSWXNET , ,CW4233 Palisade NE US , +C4234,3,1020.000 ,35.25482 ,-113.9785,APRSWXNET , ,CW4234 Kingman AZ US , +C4235,3,-1.000000,52.68950 ,5.239420 ,APRSWXNET , ,CW4235 Bovenkarspel NL , +C4237,3,85.00000 ,37.65600 ,-77.58250,APRSWXNET , ,CW4237 Glen Allen VA US , +C4240,3,1317.000 ,32.37678 ,-106.7439,APRSWXNET , ,CW4240 Las Cruces NM US , +C4241,3,42.00000 ,50.80000 ,-3.525330,APRSWXNET , ,CW4241 Exeter UK , +C4244,3,130.0000 ,50.99033 ,-0.576670,APRSWXNET , ,CW4244 Petworth UK , +C4248,3,164.6000 ,38.13833 ,-78.51617,APRSWXNET , ,CW4248 Earlysville VA US , +C4250,3,608.1000 ,45.10583 ,-71.29000,APRSWXNET , ,CW4250 First Connecticut Lake NH US , +C4253,3,2195.000 ,38.46800 ,-120.0470,APRSWXNET , ,CW4253 Bear Valley CA US , +C4255,3,251.0000 ,32.35967 ,-97.42500,APRSWXNET , ,CW4255 Cleburne TX US , +C4262,3,21.00000 ,28.52336 ,-81.16348,APRSWXNET , ,CW4262 Orlando FL US , +C4264,3,161.5000 ,39.43717 ,-77.54883,APRSWXNET , ,CW4264 Middletown MD US , +C4265,3,4.000000 ,26.67117 ,-81.80250,APRSWXNET , ,CW4265 Fort Myers FL US , +C4266,3,4.000000 ,57.91667 ,19.13333 ,APRSWXNET , ,CW4266 Favrasund SE , +C4269,3,226.0000 ,42.77424 ,-72.61337,APRSWXNET , ,CW4269 Guilford VT US , +C4274,3,67.00000 ,33.25000 ,-87.61723,APRSWXNET , ,CW4274 Northport AL US , +C4277,3,183.0000 ,33.17333 ,-96.88083,APRSWXNET , ,CW4277 Frisco TX US , +C4279,3,269.7000 ,45.55417 ,-92.79800,APRSWXNET , ,CW4279 Almelund MN US , +C4281,3,755.3000 ,35.62533 ,-117.7670,APRSWXNET , ,CW4281 Inyokern CA US , +C4284,3,137.2000 ,41.12383 ,-73.75117,APRSWXNET , ,CW4284 Pleasantville NY US , +C4288,3,301.8000 ,40.57133 ,-79.57533,APRSWXNET , ,CW4288 Paulton PA US , +C4289,3,1067.000 ,38.49767 ,-120.5628,APRSWXNET , ,CW4289 Lockwood CA US , +C4290,3,91.40000 ,32.91000 ,-93.69883,APRSWXNET , ,CW4290 Plain Dealing LA US , +C4294,3,262.0000 ,37.57300 ,-83.40880,APRSWXNET , ,CW4294 Jackson KY US , +C4296,3,333.0000 ,33.86117 ,-84.33917,APRSWXNET , ,CW4296 Atlanta GA US , +C4298,3,1603.200 ,39.92383 ,-104.9403,APRSWXNET , ,CW4298 Thornton CO US , +C4299,3,2.000000 ,27.77050 ,-82.76800,APRSWXNET , ,CW4299 Treasure Island FL US , +C4301,3,2143.000 ,38.95450 ,-104.6053,APRSWXNET , ,CW4301 Falcon CO US , +C4302,3,97.20000 ,35.81883 ,-78.56642,APRSWXNET , ,CW4302 Raleigh NC US , +C4316,3,685.0000 ,45.71467 ,7.286170 ,APRSWXNET , ,CW4316 Aosta IT , +C4320,3,40.00000 ,43.44405 ,-3.884260,APRSWXNET , ,CW4320 Penacastillo ES , +C4321,3,1378.000 ,34.86967 ,-111.8008,APRSWXNET , ,CW4321 Sedona AZ US , +C4325,3,92.00000 ,45.30467 ,9.496170 ,APRSWXNET , ,CW4325 Lodi IT , +C4326,3,16.00000 ,52.64333 ,1.236670 ,APRSWXNET , ,CW4326 Norwich UK , +C4327,3,115.0000 ,48.99117 ,8.460330 ,APRSWXNET , ,CW4327 Karlsruhe DE , +C4329,3,767.0000 ,39.69467 ,-121.4720,APRSWXNET , ,CW4329 Yankee Hill CA US , +C4331,3,430.2000 ,46.53117 ,-87.54833,APRSWXNET , ,CW4331 Negaunee MI US , +C4332,3,675.0000 ,40.54447 ,-78.78345,APRSWXNET , ,CW4332 Colver PA US , +C4333,3,206.0000 ,34.12633 ,-117.8775,APRSWXNET , ,CW4333 Glendora CA US , +C4335,3,866.2000 ,32.15700 ,-110.7703,APRSWXNET , ,CW4335 Tucson AZ US , +C4340,3,26.10000 ,30.38280 ,-94.16672,APRSWXNET , ,CW4340 Silsbee TX US , +C4341,3,26.00000 ,51.48633 ,6.603330 ,APRSWXNET , ,CW4341 Moers DE , +C4342,3,115.5000 ,47.68467 ,-122.3113,APRSWXNET , ,CW4342 Ravenna WA US , +C4343,3,1481.000 ,10.35531 ,-66.96192,APRSWXNET , ,CW4343 Altos Mirandinos MI VE , +C4345,3,182.9000 ,39.07250 ,-86.56750,APRSWXNET , ,CW4345 Harrodsburg IN US , +C4347,3,31.20000 ,38.62950 ,-121.3153,APRSWXNET , ,CW4347 Carmichael CA US , +C4349,3,123.0000 ,40.36851 ,-75.30977,APRSWXNET , ,CW4349 Sellersville PA US , +C4352,3,216.0000 ,44.54000 ,10.74550 ,APRSWXNET , ,CW4352 Castellarano IT , +C4354,3,76.20000 ,40.65867 ,-74.90167,APRSWXNET , ,CW4354 High Bridge NJ US , +C4358,3,119.0000 ,35.87295 ,-78.66048,APRSWXNET , ,CW4358 Raleigh NC US , +C4359,3,10.00000 ,41.73640 ,-70.74230,APRSWXNET , ,CW4359 Wareham MA US , +C4362,3,200.6000 ,39.74133 ,-77.72450,APRSWXNET , ,CW4362 Greencastle PA US , +C4365,3,920.0000 ,10.51500 ,-66.90050,APRSWXNET , ,CW4365 Caracas VE , +C4366,3,247.0000 ,-35.02090,138.6324 ,APRSWXNET , ,CW4366 Hawthorndene SA AU , +C4367,3,365.2000 ,35.18847 ,-114.5213,APRSWXNET , ,CW4367 Bullhead City AZ US , +C4369,3,235.6000 ,39.25117 ,-84.26083,APRSWXNET , ,CW4369 Loveland OH US , +C4371,3,98.00000 ,52.41667 ,-1.450000,APRSWXNET , ,CW4371 Coventry UK , +C4372,3,100.0000 ,-33.98671,151.0788 ,APRSWXNET , ,CW4372 Oatley AU , +C4376,3,370.0000 ,50.49371 ,-121.7046,APRSWXNET , ,CW4376 Askom Valley BC CA , +C4378,3,125.0000 ,33.50583 ,-94.61729,APRSWXNET , ,CW4378 De Kalb TX US , +C4380,3,37.00000 ,-27.59612,-48.58791,APRSWXNET , ,CW4380 Florianopolis BR , +C4381,3,27.50000 ,41.35333 ,-72.93333,APRSWXNET , ,CW4381 Hamden CT US , +C4382,3,6.100000 ,27.33515 ,-82.48311,APRSWXNET , ,CW4382 Sarasota FL US , +C4384,3,132.0000 ,39.16591 ,-77.27326,APRSWXNET , ,CW4384 Germantown MD US , +C4386,3,140.0000 ,53.10700 ,-1.342500,APRSWXNET , ,CW4386 South Normanton UK , +C4392,3,3.000000 ,26.90950 ,-80.15133,APRSWXNET , ,CW4392 Jupiter FL US , +C4396,3,352.0000 ,42.72250 ,-94.20283,APRSWXNET , ,CW4396 Dakota City IA US , +C4403,3,115.8000 ,39.89117 ,-75.58800,APRSWXNET , ,CW4403 Chadds Ford PA US , +C4407,3,117.0000 ,35.47202 ,-93.49772,APRSWXNET , ,CW4407 Clarksville AR US , +C4408,3,190.8000 ,29.62383 ,-98.04700,APRSWXNET , ,CW4408 Sequin TX US , +C4409,3,775.7000 ,43.74867 ,-116.5883,APRSWXNET , ,CW4409 Middleton ID US , +C4411,3,100.0000 ,47.29634 ,-122.5266,APRSWXNET , ,CW4411 Tacoma WA US , +C4416,3,4.900000 ,27.50722 ,-82.50861,APRSWXNET , ,CW4416 Bradenton FL US , +C4417,3,-6.000000,52.01250 ,4.545500 ,APRSWXNET , ,CW4417 Rotterdam NL , +ERDA2,3,101.0000 ,61.29867 ,-149.5272,APRSWXNET , ,CW4419 Eagle River AK US , +C4420,3,421.0000 ,47.51383 ,-93.39450,APRSWXNET , ,CW4420 Balsam Township MN US , +C4421,3,509.0000 ,38.09083 ,-98.21633,APRSWXNET , ,CW4421 Abbyville KS US , +C4423,3,150.0000 ,-41.16702,175.0215 ,APRSWXNET , ,CW4423 Pinehaven NZ , +C4426,3,549.0000 ,41.34339 ,-75.45965,APRSWXNET , ,CW4426 Madisonville PA US , +C4427,3,79.00000 ,35.26740 ,-89.83714,APRSWXNET , ,CW4427 Arlington TN US , +C4428,3,177.4000 ,35.47217 ,-93.78250,APRSWXNET , ,CW4428 Ozark/Altus AR US , +C4431,3,46.00000 ,18.02367 ,-66.86683,APRSWXNET , ,CW4431 Yauco PR US , +C4434,3,277.4000 ,34.46917 ,-114.2875,APRSWXNET , ,CW4434 Lake Havasu City AZ US , +C4435,3,1957.000 ,38.68000 ,-104.8637,APRSWXNET , ,CW4435 Colorado Springs CO US , +C4436,3,1314.000 ,38.76667 ,-102.7925,APRSWXNET , ,CW4436 Kit Carson CO US , +C4438,3,391.0000 ,36.38619 ,-94.14483,APRSWXNET , ,CW4438 Little Flock AR US , +C4443,3,218.0000 ,36.06397 ,-95.84559,APRSWXNET , ,CW4443 Broken Arrow OK US , +C4444,3,39.00000 ,32.72085 ,-114.6607,APRSWXNET , ,CW4444 Yuma AZ US , +C4445,3,292.6000 ,43.44333 ,-88.20450,APRSWXNET , ,CW4445 West Bend WI US , +C4448,3,1524.000 ,42.14550 ,-111.8717,APRSWXNET , ,CW4448 Preston ID US , +C4453,3,22.30000 ,36.97167 ,-121.9593,APRSWXNET , ,CW4453 Capitola CA US , +C4456,3,50.00000 ,40.95800 ,17.26600 ,APRSWXNET , ,CW4456 Monopoli IT , +C4463,3,346.0000 ,44.56574 ,-93.34156,APRSWXNET , ,CW4463 New Market MN US , +C4465,3,138.0000 ,52.34800 ,-1.934670,APRSWXNET , ,CW4465 Birmingham UK , +C4473,3,16.00000 ,60.24167 ,24.87017 ,APRSWXNET , ,CW4473 Helsinki FI , +C4477,3,181.4000 ,41.99567 ,-87.69200,APRSWXNET , ,CW4477 Chicago IL US , +C4480,3,168.6000 ,38.80667 ,-91.47717,APRSWXNET , ,CW4480 Big Spring MO US , +C4481,3,13.00000 ,53.02500 ,-6.074170,APRSWXNET , ,CW4481 Wicklow IE UK , +C4482,3,10.00000 ,29.92833 ,-95.18917,APRSWXNET , ,CW4482 Humble TX US , +C4488,3,18.00000 ,34.20700 ,-119.1381,APRSWXNET , ,CW4488 Oxnard CA US , +C4490,3,280.4000 ,30.56915 ,-97.94579,APRSWXNET , ,CW4490 Leander TX US , +C4494,3,1140.000 ,44.05833 ,-121.3495,APRSWXNET , ,CW4494 Bend OR US , +C4495,3,3.000000 ,25.66500 ,-80.43950,APRSWXNET , ,CW4495 The Hammocks FL US , +C4498,3,2133.000 ,38.92207 ,-104.8799,APRSWXNET , ,CW4498 Colorado Springs CO US , +C4503,3,73.00000 ,36.97239 ,-121.8681,APRSWXNET , ,CW4503 Aptos CA US , +C4505,3,26.20000 ,32.98750 ,-80.19467,APRSWXNET , ,CW4505 Summerville SC US , +C4507,3,119.0000 ,41.67500 ,-72.45620,APRSWXNET , ,CW4507 Marlborough CT US , +C4510,3,43.00000 ,40.13117 ,-75.50983,APRSWXNET , ,CW4510 Phoneixville PA US , +C4511,3,135.0000 ,51.67250 ,-0.567000,APRSWXNET , ,CW4511 Amersham UK , +C4512,3,499.9000 ,46.21015 ,-89.79078,APRSWXNET , ,CW4512 Presque Isle WI US , +C4513,3,7.600000 ,30.28117 ,-81.48217,APRSWXNET , ,CW4513 Jacksonville FL US , +C4517,3,232.0000 ,41.49538 ,-87.84539,APRSWXNET , ,CW4517 Frankfort IL US , +NILA2,3,423.7000 ,60.05761 ,-151.2527,APRSWXNET , ,CW4522 Ninilchik AK US , +C4525,3,226.0000 ,42.98950 ,-71.65300,APRSWXNET , ,CW4525 New Boston NH US , +C4531,3,10.00000 ,34.53154 ,-77.43320,APRSWXNET , ,CW4531 Sneads Ferry NC US , +C4534,3,990.6000 ,34.55700 ,-111.8712,APRSWXNET , ,CW4534 Camp Verde AZ US , +C4535,3,188.0000 ,36.15659 ,-95.87421,APRSWXNET , ,CW4535 Tulsa OK US , +C4541,3,2194.600 ,38.02750 ,-109.1225,APRSWXNET , ,CW4541 Monticello UT US , +C4542,3,219.5000 ,40.56010 ,-90.67110,APRSWXNET , ,CW4542 Good Hope IL US , +C4548,3,3.000000 ,53.44217 ,10.35117 ,APRSWXNET , ,CW4548 Geesthacht DE , +C4549,3,243.8000 ,39.17767 ,-84.69633,APRSWXNET , ,CW4549 Cleves OH US , +C4552,3,80.00000 ,-43.62900,172.7412 ,APRSWXNET , ,CW4552 Diamond Harbour NZ , +C4556,3,396.5000 ,39.67050 ,-96.95583,APRSWXNET , ,CW4556 Greenleaf KS US , +C4557,3,4.600000 ,26.61667 ,-80.08333,APRSWXNET , ,CW4557 Palm Springs FL US , +C4558,3,259.0000 ,41.41217 ,-81.74167,APRSWXNET , ,CW4558 Cleveland OH US , +C4561,3,10.00000 ,30.04633 ,-81.55450,APRSWXNET , ,CW4561 St Augustine FL US , +C4564,3,209.0000 ,40.78723 ,-75.54288,APRSWXNET , ,CW4564 Walnutport PA US , +C4565,3,714.8000 ,39.81883 ,-121.6032,APRSWXNET , ,CW4565 Magalia CA US , +C4566,3,11.00000 ,36.32450 ,-75.80970,APRSWXNET , ,CW4566 Corolla NC US , +C4568,3,10.00000 ,52.25133 ,0.387830 ,APRSWXNET , ,CW4568 Newmarket UK , +C4569,3,28.00000 ,55.72617 ,11.54583 ,APRSWXNET , ,CW4569 Holbaek DK , +C4575,3,825.7000 ,34.43933 ,-118.9013,APRSWXNET , ,CW4575 Fillmore CA US , +C4577,3,256.0000 ,45.98217 ,-122.7930,APRSWXNET , ,CW4577 Kalama WA US , +C4581,3,6.000000 ,21.38300 ,-157.7392,APRSWXNET , ,CW4581 Kailua HI US , +C4584,3,157.0000 ,52.71830 ,-1.347700,APRSWXNET , ,CW4584 Coalville UK , +C4586,3,30.00000 ,39.64367 ,-74.80383,APRSWXNET , ,CW4586 Hammonton NJ US , +C4588,3,51.00000 ,62.78513 ,22.81360 ,APRSWXNET , ,CW4588 Seinajoki FI , +C4589,3,120.4000 ,34.08117 ,-81.37917,APRSWXNET , ,CW4589 Lake Murray SC US , +C4591,3,498.3000 ,63.31704 ,-143.0053,APRSWXNET , ,CW4591 Tok AK US , +C4592,3,533.0000 ,42.13267 ,-98.02983,APRSWXNET , ,CW4592 Neligh NE US , +C4593,3,219.0000 ,42.96133 ,-88.00017,APRSWXNET , ,CW4593 Greenfield WI US , +C4594,3,822.0000 ,48.46120 ,14.31120 ,APRSWXNET , ,CW4594 Sonnberg AT , +C4598,3,1414.000 ,39.35950 ,-112.5722,APRSWXNET , ,CW4598 Delta Bus Garage UT US , +C4599,3,143.0000 ,41.37200 ,-74.68217,APRSWXNET , ,CW4599 Port Jervis NY US , +C4604,3,1356.400 ,41.30300 ,-111.9600,APRSWXNET , ,CW4604 Ogden UT US , +C4605,3,1739.000 ,41.42779 ,-104.4409,APRSWXNET , ,CW4605 Cheyenne WY US , +C4607,3,30.00000 ,55.77250 ,12.16200 ,APRSWXNET , ,CW4607 lstykke DK , +C4610,3,35.00000 ,49.24614 ,-124.8037,APRSWXNET , ,CW4610 Port Alberni BC CA , +C4611,3,2298.000 ,40.79450 ,-111.1337,APRSWXNET , ,CW4611 Aspen Mtn UT US , +C4612,3,45.00000 ,55.33100 ,11.50867 ,APRSWXNET , ,CW4612 Hoeng DK , +C4614,3,902.2000 ,34.79667 ,-118.5853,APRSWXNET , ,CW4614 Neenach CA US , +C4621,3,33.10000 ,39.85350 ,-74.98583,APRSWXNET , ,CW4621 Voorhees NJ US , +C4622,3,260.0000 ,37.85000 ,-121.9528,APRSWXNET , ,CW4622 Diablo CA US , +C4629,3,329.2000 ,41.13024 ,-81.36317,APRSWXNET , ,CW4629 Kent OH US , +C4635,3,52.00000 ,48.41994 ,-123.4792,APRSWXNET , ,CW4635 Victoria BC CA , +C4637,3,40.00000 ,54.55867 ,-1.361330,APRSWXNET , ,CW4637 Stockton-on-Tees UK , +C4643,3,2164.000 ,38.03367 ,-119.1697,APRSWXNET , ,CW4643 Lee Vining CA US , +C4644,3,182.9000 ,43.05050 ,-86.19567,APRSWXNET , ,CW4644 Grand Haven MI US , +C4645,3,118.3000 ,34.16117 ,-81.02550,APRSWXNET , ,CW4645 Blythwood SC US , +C4646,3,148.0000 ,39.69676 ,-76.36189,APRSWXNET , ,CW4646 Whiteford MD US , +C4647,3,36.00000 ,13.50321 ,144.7767 ,APRSWXNET , ,CW4647 Tamuning GU US , +C4651,3,22.00000 ,-39.63283,176.7528 ,APRSWXNET , ,CW4651 Hastings NZ , +SCUA2,3,175.0000 ,61.73600 ,-148.7738,APRSWXNET , ,CW4652 Sutton AK US , +C4653,3,35.00000 ,8.050330 ,98.84083 ,APRSWXNET , ,CW4653 Krabi TH , +C4654,3,130.0000 ,53.23367 ,-1.413330,APRSWXNET , ,CW4654 Chesterfield UK , +C4655,3,15.20000 ,42.37800 ,-71.22767,APRSWXNET , ,CW4655 Waltham MA US , +C4657,3,1534.000 ,-25.83867,28.29367 ,APRSWXNET , ,CW4657 Pretoria ZA , +C4658,3,165.5000 ,35.78574 ,-95.31674,APRSWXNET , ,CW4658 Muskogee OK US , +C4659,3,286.0000 ,44.85426 ,-93.07214,APRSWXNET , ,CW4659 Inver Grove Hts MN US , +C4660,3,598.0000 ,46.29533 ,13.94533 ,APRSWXNET , ,CW4660 Bohinjska Cesnjica SI , +C4661,3,113.0000 ,37.39637 ,-121.8326,APRSWXNET , ,CW4661 San Jose CA US , +C4663,3,973.0000 ,40.91810 ,-121.5514,APRSWXNET , ,CW4663 Cassel CA US , +C4665,3,370.0000 ,-36.73283,147.1522 ,APRSWXNET , ,CW4665 Mount Beauty VIC AU , +C4666,3,94.00000 ,40.17417 ,-8.838330,APRSWXNET , ,CW4666 Figueira PT , +C4668,3,297.5000 ,38.02164 ,-84.56440,APRSWXNET , ,CW4668 Lexington KY US , +C4669,3,1790.700 ,45.71977 ,-110.9350,APRSWXNET , ,CW4669 Bozeman MT US , +C4671,3,1621.500 ,40.35083 ,-105.1713,APRSWXNET , ,CW4671 Loveland CO US , +C4672,3,96.00000 ,46.62133 ,-122.8042,APRSWXNET , ,CW4672 Chehalis WA US , +C4674,3,66.00000 ,59.40417 ,13.58883 ,APRSWXNET , ,CW4674 Karlstad SE , +C4677,3,278.0000 ,46.54633 ,15.63633 ,APRSWXNET , ,CW4677 Maribor SI , +C4678,3,240.0000 ,30.18667 ,-97.85867,APRSWXNET , ,CW4678 Austin TX US , +C4679,3,23.00000 ,26.60633 ,-81.75700,APRSWXNET , ,CW4679 Lehigh Acres FL US , +C4687,3,82.00000 ,54.61867 ,-3.309670,APRSWXNET , ,CW4687 Cockermouth UK , +C4688,3,35.00000 ,44.20000 ,12.24717 ,APRSWXNET , ,CW4688 Cesena IT , +C4691,3,1861.000 ,32.77500 ,-108.2588,APRSWXNET , ,CW4691 Silver City NM US , +C4693,3,0.000000 ,50.79167 ,0.326330 ,APRSWXNET , ,CW4693 Eastbourne UK , +C4699,3,20.00000 ,39.86983 ,-74.67183,APRSWXNET , ,CW4699 Tabernacle NJ US , +C4708,3,239.3000 ,42.53117 ,-89.21117,APRSWXNET , ,CW4708 Beloit WI US , +C4709,3,451.1000 ,36.23739 ,-93.19735,APRSWXNET , ,CW4709 Capps AR US , +C4711,3,6.000000 ,38.99133 ,-76.16083,APRSWXNET , ,CW4711 Queenstown MD US , +NEDA2,3,90.00000 ,61.20434 ,-149.7278,APRSWXNET , ,CW4713 Anchorage AK US , +C4714,3,646.0000 ,47.11963 ,-104.7031,APRSWXNET , ,CW4714 Glendive MT US , +C4715,3,288.0000 ,37.02583 ,-94.51667,APRSWXNET , ,CW4715 Joplin MO US , +C4717,3,40.00000 ,51.91250 ,0.911330 ,APRSWXNET , ,CW4717 Colchester UK , +C4718,3,30.00000 ,52.53333 ,1.413330 ,APRSWXNET , ,CW4718 Norwich UK , +C4719,3,8.000000 ,38.42403 ,-121.4423,APRSWXNET , ,CW4719 Elk Grove CA US , +C4721,3,920.5000 ,33.97750 ,-116.9592,APRSWXNET , ,CW4721 Beaumont CA US , +C4722,3,83.00000 ,37.51500 ,-77.67333,APRSWXNET , ,CW4722 Midlothian VA US , +C4725,3,40.00000 ,51.36333 ,1.440330 ,APRSWXNET , ,CW4725 Broadstairs UK , +C4727,3,290.0000 ,41.94833 ,-91.71250,APRSWXNET , ,CW4727 Cedar Rapids IA US , +C4730,3,15.00000 ,52.09741 ,1.530380 ,APRSWXNET , ,CW4730 Woodridge UK , +C4731,3,219.5000 ,43.42084 ,-91.19198,APRSWXNET , ,CW4731 De Soto WI US , +C4733,3,194.0000 ,41.27726 ,-74.34051,APRSWXNET , ,CW4733 Warwick NY US , +C4735,3,182.9000 ,34.85370 ,-87.64930,APRSWXNET , ,CW4735 Florence AL US , +C4738,3,314.8000 ,44.15610 ,-93.88270,APRSWXNET , ,CW4738 Eagle Lake MN US , +C4740,3,9.000000 ,26.53117 ,-80.07867,APRSWXNET , ,CW4740 Boynton Beach FL US , +C4741,3,214.9000 ,32.43633 ,-97.78333,APRSWXNET , ,CW4741 Granbury TX US , +C4742,3,400.0000 ,42.05833 ,13.90417 ,APRSWXNET , ,CW4742 Sulmona IT , +C4744,3,881.0000 ,32.28833 ,-110.8437,APRSWXNET , ,CW4744 Tucson AZ US , +C4745,3,0.000000 ,52.73780 ,4.752000 ,APRSWXNET , ,CW4745 Tuitjenhorn NL , +C4750,3,296.0000 ,44.94917 ,-93.84250,APRSWXNET , ,CW4750 Watertown MN US , +C4751,3,109.0000 ,37.51667 ,-122.3092,APRSWXNET , ,CW4751 Belmont CA US , +C4752,3,107.0000 ,51.70700 ,0.115000 ,APRSWXNET , ,CW4752 Epping UK , +C4753,3,600.0000 ,30.06270 ,-99.10440,APRSWXNET , ,CW4753 Kerrville TX US , +C4759,3,1634.800 ,38.63867 ,-112.1162,APRSWXNET , ,CW4759 Monroe UT US , +C4760,3,6.400000 ,41.26883 ,-72.69117,APRSWXNET , ,CW4760 Guilford CT US , +C4766,3,2167.000 ,37.87867 ,-109.3403,APRSWXNET , ,CW4766 Monticello UT US , +C4767,3,202.7000 ,40.62668 ,-86.81486,APRSWXNET , ,CW4767 Brookston IN US , +C4769,3,100.0000 ,34.53267 ,136.6280 ,APRSWXNET , ,CW4769 Meiwa-Cho Mie JP , +C4771,3,132.0000 ,52.53333 ,-1.040330,APRSWXNET , ,CW4771 Fleckney UK , +C4772,3,614.0000 ,49.25967 ,15.23867 ,APRSWXNET , ,CW4772 Pocatky-Vysocina CZ , +C4778,3,46.00000 ,-36.86295,174.7388 ,APRSWXNET , ,CW4778 Auckland NZ , +C4779,3,43.00000 ,42.76200 ,-71.08000,APRSWXNET , ,CW4779 Haverhill MA US , +C4784,3,1716.000 ,39.56497 ,-105.0979,APRSWXNET , ,CW4784 Littleton CO US , +C4787,3,277.0000 ,37.15550 ,-121.6133,APRSWXNET , ,CW4787 Morgan Hill CA US , +C4788,3,300.5000 ,39.20338 ,-78.60222,APRSWXNET , ,CW4788 Delray WV US , +C4793,3,122.0000 ,33.75533 ,-118.4083,APRSWXNET , ,CW4793 Rancho Palos Verdes CA US , +C4794,3,289.9000 ,42.23800 ,-85.67700,APRSWXNET , ,CW4794 Kalamazoo MI US , +C4795,3,74.00000 ,55.92531 ,13.53318 ,APRSWXNET , ,CW4795 Hapapr SE , +C4796,3,15.20000 ,52.74767 ,6.877400 ,APRSWXNET , ,CW4796 Emmen NL , +C4799,3,10.00000 ,50.96905 ,3.972250 ,APRSWXNET , ,CW4799 Lede BE , +C4802,3,107.0000 ,32.26500 ,-96.15450,APRSWXNET , ,CW4802 Tool TX US , +C4803,3,225.6000 ,33.97217 ,-117.7195,APRSWXNET , ,CW4803 Chino Hills CA US , +C4805,3,7.600000 ,32.24150 ,-80.87577,APRSWXNET , ,CW4805 Bluffton SC US , +C4808,3,114.6000 ,32.88760 ,-117.1829,APRSWXNET , ,CW4808 San Diego CA US , +C4812,3,239.9000 ,44.17615 ,-88.27721,APRSWXNET , ,CW4812 Sherwood WI US , +C4814,3,20.00000 ,29.94800 ,-95.11133,APRSWXNET , ,CW4814 Crosby TX US , +C4819,3,330.0000 ,49.54000 ,6.260000 ,APRSWXNET , ,CW4819 Dalheim LU , +C4820,3,287.0000 ,41.37350 ,-85.38517,APRSWXNET , ,CW4820 Albion IN US , +C4821,3,64.00000 ,44.03700 ,-73.25500,APRSWXNET , ,CW4821 Weybridge VT US , +C4824,3,239.0000 ,41.13380 ,-85.03070,APRSWXNET , ,CW4824 Fort Wayne IN US , +C4827,3,1.500000 ,26.09896 ,-97.16832,APRSWXNET , ,CW4827 S. Padre Island TX US , +C4828,3,34.40000 ,28.75032 ,-81.76227,APRSWXNET , ,CW4828 Tavares FL US , +C4829,3,285.0000 ,40.20417 ,-83.08633,APRSWXNET , ,CW4829 Powell OH US , +C4835,3,1984.000 ,41.40516 ,-111.0216,APRSWXNET , ,CW4835 Bear River WY US , +C4838,3,280.4000 ,40.78907 ,-80.14301,APRSWXNET , ,CW4838 Zelienople PA US , +C4840,3,3.000000 ,30.38800 ,-81.64950,APRSWXNET , ,CW4840 Jacksonville FL US , +C4841,3,6.000000 ,30.40167 ,-88.77083,APRSWXNET , ,CW4841 Ocean Springs MS US , +C4844,3,268.0000 ,34.81867 ,-86.75283,APRSWXNET , ,CW4844 Harvest AL US , +C4845,3,24.90000 ,40.48138 ,-74.62145,APRSWXNET , ,CW4845 Hillsborough NJ US , +C4848,3,72.00000 ,43.14750 ,2.729500 ,APRSWXNET , ,CW4848 Ferrals les Corbiares FR , +C4850,3,1325.900 ,39.25000 ,-119.5588,APRSWXNET , ,CW4850 Dayton NV US , +C4852,3,301.8000 ,33.40617 ,-86.85233,APRSWXNET , ,CW4852 Bluff Park AL US , +C4855,3,53.30000 ,42.50583 ,-73.74467,APRSWXNET , ,CW4855 Schodack Landing NY US , +C4856,3,404.8000 ,37.54500 ,-91.69867,APRSWXNET , ,CW4856 Salem MO US , +C4859,3,19.00000 ,40.25080 ,-74.68300,APRSWXNET , ,CW4859 Mercerville NJ US , +C4862,3,76.20000 ,37.24086 ,-77.53892,APRSWXNET , ,CW4862 Matoaca VA US , +C4865,3,245.0000 ,46.82285 ,-88.64975,APRSWXNET , ,CW4865 Pelkie MI US , +C4868,3,128.0000 ,39.18528 ,-77.31639,APRSWXNET , ,CW4868 Boyds MD US , +C4869,3,182.3000 ,43.91033 ,-83.38417,APRSWXNET , ,CW4869 Caseville MI US , +C4870,3,301.7500 ,35.50333 ,-84.38183,APRSWXNET , ,CW4870 Madisonville TN US , +PLMA2,3,51.00000 ,61.57679 ,-149.1538,APRSWXNET , ,CW4871 Palmer South AK US , +C4872,3,225.0000 ,34.97133 ,-81.84250,APRSWXNET , ,CW4872 Converse SC US , +C4873,3,35.00000 ,59.47617 ,18.35050 ,APRSWXNET , ,CW4873 Stockholm SE , +C4874,3,272.8000 ,42.30500 ,-83.73333,APRSWXNET , ,CW4874 Ann Arbor MI US , +C4875,3,295.0000 ,35.01617 ,-86.77117,APRSWXNET , ,CW4875 Taft TN US , +C4877,3,680.0000 ,13.71367 ,-89.19833,APRSWXNET , ,CW4877 San Salvador SV , +C4878,3,1928.000 ,33.76319 ,-116.7351,APRSWXNET , ,CW4878 Idyllwild CA US , +C4879,3,2214.900 ,42.80933 ,-109.7597,APRSWXNET , ,CW4879 Boulder WY US , +C4880,3,396.0000 ,45.79033 ,-87.87033,APRSWXNET , ,CW4880 Norway MI US , +C4884,3,1036.000 ,46.89423 ,-113.9615,APRSWXNET , ,CW4884 Missoula MT US , +C4885,3,197.2000 ,43.75617 ,-79.45533,APRSWXNET , ,CW4885 North York ON CA , +C4887,3,588.0000 ,46.00633 ,-121.5272,APRSWXNET , ,CW4887 Trout Lake WA US , +C4888,3,325.0000 ,45.67017 ,-118.7967,APRSWXNET , ,CW4888 Pendleton OR US , +C4892,3,35.00000 ,52.40533 ,-0.170500,APRSWXNET , ,CW4892 London UK , +C4893,3,27.40000 ,38.61109 ,-77.26121,APRSWXNET , ,CW4893 Woodbridge VA US , +C4896,3,175.0000 ,44.07000 ,-122.8322,APRSWXNET , ,CW4896 Walterville OR US , +C4897,3,33.50000 ,38.31917 ,-122.3247,APRSWXNET , ,CW4897 Napa CA US , +C4898,3,5.000000 ,30.25214 ,-87.78548,APRSWXNET , ,CW4898 Gulf Shores AL US , +C4899,3,1618.500 ,40.04617 ,-105.2455,APRSWXNET , ,CW4899 Boulder CO US , +C4900,3,834.0000 ,39.96417 ,-100.6672,APRSWXNET , ,CW4900 Oberlin KS US , +C4903,3,6.000000 ,26.67541 ,-82.04662,APRSWXNET , ,CW4903 Cape Coral FL US , +C4906,3,106.7000 ,35.07610 ,-89.74300,APRSWXNET , ,CW4906 Germantown TN US , +C4908,3,97.50000 ,31.94867 ,-96.15633,APRSWXNET , ,CW4908 Streetman TX US , +C4909,3,289.6000 ,36.45167 ,-80.04783,APRSWXNET , ,CW4909 Madison NC US , +C4910,3,123.0000 ,46.01417 ,-122.8413,APRSWXNET , ,CW4910 Kalama WA US , +C4915,3,908.3000 ,37.15367 ,-113.6757,APRSWXNET , ,CW4915 Ivins UT US , +C4921,3,27.40000 ,31.78837 ,-81.68563,APRSWXNET , ,CW4921 Walthourville GA US , +C4923,3,360.9000 ,35.19367 ,-97.40333,APRSWXNET , ,CW4923 Norman OK US , +C4924,3,481.6000 ,42.26333 ,-75.30700,APRSWXNET , ,CW4924 Masonville NY US , +C4925,3,3.000000 ,32.18943 ,-80.70123,APRSWXNET , ,CW4925 Hilton Head SC US , +C4926,3,114.6000 ,34.82967 ,-89.99717,APRSWXNET , ,CW4926 Hernando MS US , +C4927,3,33.00000 ,40.16475 ,-74.59788,APRSWXNET , ,CW4927 Allentown NJ US , +C4929,3,330.0000 ,40.70450 ,-82.09333,APRSWXNET , ,CW4929 Shreve OH US , +C4936,3,452.0000 ,45.38815 ,-89.75699,APRSWXNET , ,CW4936 Tomahawk WI US , +C4937,3,225.0000 ,37.85142 ,-122.1681,APRSWXNET , ,CW4937 Orinda CA US , +C4939,3,253.0000 ,38.94917 ,-83.39717,APRSWXNET , ,CW4939 Peebles OH US , +C4943,3,1719.000 ,39.65117 ,-104.7838,APRSWXNET , ,CW4943 Aurora CO US , +C4950,3,293.5000 ,32.81083 ,-98.14583,APRSWXNET , ,CW4950 Mineral Wells TX US , +C4952,3,9.100000 ,30.21333 ,-81.60167,APRSWXNET , ,CW4952 Jacksonville FL US , +C4953,3,185.6000 ,39.29420 ,-89.64074,APRSWXNET , ,CW4953 Raymond IL US , +C4954,3,288.0000 ,42.94279 ,-78.08962,APRSWXNET , ,CW4954 E. Bethany NY US , +C4956,3,0.000000 ,38.81867 ,-75.20167,APRSWXNET , ,CW4956 Broadkill Beach DE US , +C4957,3,4.000000 ,26.37883 ,-80.07800,APRSWXNET , ,CW4957 Boca Raton FL US , +C4961,3,182.0000 ,44.63083 ,-87.81833,APRSWXNET , ,CW4961 Green Bay WI US , +C4966,3,146.3000 ,39.33973 ,-77.78906,APRSWXNET , ,CW4966 Halltown WV US , +C4967,3,3.500000 ,35.11297 ,-75.97323,APRSWXNET , ,CW4967 Ocracoke NC US , +C4970,3,396.4000 ,42.75450 ,-71.87617,APRSWXNET , ,CW4970 New Ipswich NH US , +C4971,3,1138.700 ,46.65917 ,-112.0308,APRSWXNET , ,CW4971 Helena MT US , +C4972,3,289.6000 ,38.56533 ,-80.96217,APRSWXNET , ,CW4972 Duck WV US , +C4977,3,126.8000 ,38.68000 ,-77.75200,APRSWXNET , ,CW4977 Warrenton VA US , +C4978,3,357.5000 ,34.28783 ,-84.19967,APRSWXNET , ,CW4978 Cumming GA US , +C4979,3,100.6000 ,41.45450 ,-72.72450,APRSWXNET , ,CW4979 Durham Center CT US , +C4981,3,99.10000 ,39.10800 ,-77.24167,APRSWXNET , ,CW4981 N.Potomac MD US , +C4984,3,152.0000 ,36.05667 ,-78.55200,APRSWXNET , ,CW4984 Wake Forest NC US , +C4987,3,63.10000 ,42.57599 ,-71.36350,APRSWXNET , ,CW4987 Chelmsford MA US , +C4989,3,74.00000 ,37.38833 ,-77.62450,APRSWXNET , ,CW4989 Chesterfield VA US , +C4992,3,27.40000 ,29.60750 ,-82.42750,APRSWXNET , ,CW4992 Gainesville FL US , +C4993,3,295.7000 ,30.48833 ,-97.84417,APRSWXNET , ,CW4993 Cedar Park TX US , +C4995,3,1013.800 ,42.94583 ,-115.0142,APRSWXNET , ,CW4995 Bliss ID US , +C4999,3,76.00000 ,32.34050 ,-86.14033,APRSWXNET , ,CW4999 Montgomery AL US , +C5002,3,-2.000000,52.73057 ,5.151170 ,APRSWXNET , ,CW5002 Wervershoof NL , +C5008,3,146.0000 ,38.68557 ,-88.08533,APRSWXNET , ,CW5008 Olney IL US , +C5010,3,86.60000 ,37.08567 ,-121.6070,APRSWXNET , ,CW5010 San Martin CA US , +C5011,3,1700.000 ,40.21933 ,-105.0572,APRSWXNET , ,CW5011 Longmont CO US , +C5015,3,503.0000 ,34.32867 ,-118.4270,APRSWXNET , ,CW5015 Sylmar CA US , +C5018,3,594.0000 ,45.99700 ,-121.5383,APRSWXNET , ,CW5018 Troutlake WA US , +C5019,3,200.0000 ,33.09150 ,-96.69167,APRSWXNET , ,CW5019 Allen TX US , +C5020,3,241.0000 ,41.87980 ,-88.08610,APRSWXNET , ,CW5020 Wheaton IL US , +C5021,3,110.0000 ,39.83667 ,-75.70917,APRSWXNET , ,CW5021 Kennett Square PA US , +C5022,3,80.00000 ,47.69000 ,-122.1808,APRSWXNET , ,CW5022 Kirkland WA US , +C5023,3,51.00000 ,34.17084 ,-84.47165,APRSWXNET , ,CW5023 Roswell GA US , +C5029,3,222.5000 ,37.89550 ,-122.1358,APRSWXNET , ,CW5029 Lafayette CA US , +C5036,3,24.50000 ,30.13913 ,-81.87777,APRSWXNET , ,CW5036 Middleburg FL US , +C5037,3,713.0000 ,39.33190 ,-121.0781,APRSWXNET , ,CW5037 Nevada City CA US , +C5038,3,2808.400 ,40.08110 ,-105.4932,APRSWXNET , ,CW5038 Ward CO US , +C5039,3,48.00000 ,-37.80225,175.2979 ,APRSWXNET , ,CW5039 Hamilton NZ , +C5040,3,1536.000 ,40.75883 ,-104.2830,APRSWXNET , ,CW5040 Briggsdale CO US , +C5042,3,58.00000 ,40.08910 ,-75.21200,APRSWXNET , ,CW5042 Erdenheim PA US , +C5043,3,58.00000 ,52.33133 ,-0.565000,APRSWXNET , ,CW5043 Rushden UK , +C5045,3,317.0000 ,35.92050 ,-83.49000,APRSWXNET , ,CW5045 Sevierville TN US , +C5049,3,227.0000 ,47.20764 ,-122.0000,APRSWXNET , ,CW5049 Enumclaw WA US , +C5053,3,228.9000 ,45.81800 ,-122.4638,APRSWXNET , ,CW5053 Heisson WA US , +C5061,3,56.40000 ,40.56667 ,-124.1272,APRSWXNET , ,CW5061 Fortuna CA US , +C5066,3,2856.000 ,39.82952 ,-105.4801,APRSWXNET , ,CW5066 Gilpin Co. CO US , +C5070,3,304.8000 ,33.61550 ,-85.08433,APRSWXNET , ,CW5070 Carrollton GA US , +C5071,3,385.6000 ,37.08467 ,-93.23550,APRSWXNET , ,CW5071 Ozark MO US , +C5072,3,12.80000 ,28.08633 ,-82.71883,APRSWXNET , ,CW5072 Palm Harbor FL US , +C5074,3,205.0000 ,43.22912 ,-79.86629,APRSWXNET , ,CW5074 Hamilton CA , +C5076,3,201.2000 ,42.00617 ,-87.80800,APRSWXNET , ,CW5076 Chicago IL US , +C5078,3,57.00000 ,32.41526 ,-93.78150,APRSWXNET , ,CW5078 Shreveport LA US , +C5082,3,62.50000 ,42.28280 ,-72.70420,APRSWXNET , ,CW5082 Easthampton MA US , +C5083,3,1542.000 ,39.88833 ,-105.0422,APRSWXNET , ,CW5083 Westminster CO US , +C5084,3,415.0000 ,42.80900 ,-76.10950,APRSWXNET , ,CW5084 Tully NY US , +C5086,3,68.00000 ,40.87083 ,-73.35250,APRSWXNET , ,CW5086 Greenlawn NY US , +C5088,3,76.20000 ,45.54778 ,-122.8581,APRSWXNET , ,CW5088 Bethany OR US , +C5091,3,1435.600 ,39.16583 ,-119.7742,APRSWXNET , ,CW5091 Carson City NV US , +C5092,3,71.60000 ,44.16399 ,-69.87119,APRSWXNET , ,CW5092 Litchfield ME US , +C5098,3,295.7000 ,30.33990 ,-97.97830,APRSWXNET , ,CW5098 The Hills TX US , +C5099,3,131.1000 ,45.70453 ,-121.5402,APRSWXNET , ,CW5099 Hood River OR US , +C5100,3,1497.200 ,40.16866 ,-105.0126,APRSWXNET , ,CW5100 Longmont CO US , +C5101,3,158.0000 ,47.15733 ,-122.1917,APRSWXNET , ,CW5101 Bonney Lake WA US , +C5102,3,304.8000 ,44.92550 ,-93.47500,APRSWXNET , ,CW5102 Minnetonka MN US , +C5103,3,222.8000 ,38.82250 ,-82.40083,APRSWXNET , ,CW5103 Rio Grande OH US , +C5106,3,890.0000 ,35.47522 ,-82.91968,APRSWXNET , ,CW5106 Waynesville NC US , +C5108,3,131.0000 ,48.63967 ,-72.47200,APRSWXNET , ,CW5108 St.Felicien QC CA , +C5109,3,207.0000 ,33.19488 ,-96.67077,APRSWXNET , ,CW5109 McKinney TX US , +C5110,3,243.8000 ,38.83749 ,-78.06688,APRSWXNET , ,CW5110 Hume VA US , +C5111,3,151.0000 ,52.40850 ,-1.868830,APRSWXNET , ,CW5111 Warstock UK , +C5112,3,417.6000 ,37.47957 ,-79.70666,APRSWXNET , ,CW5112 Buchanan VA US , +C5113,3,36.00000 ,52.25500 ,7.002500 ,APRSWXNET , ,CW5113 Losser NL , +C5115,3,1721.000 ,38.70566 ,-104.6883,APRSWXNET , ,CW5115 Fountain CO US , +C5119,3,1516.000 ,39.99567 ,-104.8163,APRSWXNET , ,CW5119 Brighton CO US , +C5121,3,670.0000 ,38.71617 ,-120.7563,APRSWXNET , ,CW5121 Placerville CA US , +C5122,3,184.4000 ,41.48910 ,-82.11507,APRSWXNET , ,CW5122 Sheffield Lake OH US , +C5123,3,3.000000 ,39.56533 ,-74.38750,APRSWXNET , ,CW5123 Tuckerton NJ US , +C5126,3,383.0000 ,36.14525 ,-94.14988,APRSWXNET , ,CW5126 Springdale AR US , +C5127,3,54.80000 ,38.79550 ,-77.12117,APRSWXNET , ,CW5127 Alexandria VA US , +C5128,3,1685.500 ,42.75454 ,-111.8312,APRSWXNET , ,CW5128 Chesterfield ID US , +C5129,3,54.90000 ,40.22750 ,-74.92533,APRSWXNET , ,CW5129 Newtown PA US , +C5130,3,387.0000 ,41.24217 ,-96.26283,APRSWXNET , ,CW5130 Elkhorn NE US , +C5139,3,128.0000 ,47.47452 ,-122.1266,APRSWXNET , ,CW5139 Renton WA US , +C5141,3,487.7000 ,31.78167 ,-99.08950,APRSWXNET , ,CW5141 Brownwood TX US , +C5145,3,270.0000 ,39.34250 ,-94.40800,APRSWXNET , ,CW5145 Kearney MO US , +C5153,3,315.0000 ,40.44633 ,-83.81000,APRSWXNET , ,CW5153 Huntsville OH US , +C5156,3,6.000000 ,26.45133 ,-80.13050,APRSWXNET , ,CW5156 Delray Beach FL US , +C5158,3,269.5000 ,39.06583 ,-78.96050,APRSWXNET , ,CW5158 Moorefield WV US , +C5159,3,3.300000 ,26.00862 ,-80.40151,APRSWXNET , ,CW5159 Pembroke Pines FL US , +C5163,3,15.00000 ,51.56883 ,0.674670 ,APRSWXNET , ,CW5163 Southend-on-Sea ESX UK , +C5165,3,21.00000 ,35.53883 ,-77.43167,APRSWXNET , ,CW5165 Winterville NC US , +C5167,3,80.50000 ,38.66867 ,-77.58550,APRSWXNET , ,CW5167 Nokesville VA US , +C5168,3,56.40000 ,30.00200 ,-95.75083,APRSWXNET , ,CW5168 Cypress TX US , +C5171,3,2026.900 ,38.92818 ,-104.8676,APRSWXNET , ,CW5171 Colorado Springs CO US , +C5172,3,1554.500 ,35.15833 ,-106.6897,APRSWXNET , ,CW5172 Albuquerque NM US , +C5174,3,138.0000 ,48.04489 ,-121.9548,APRSWXNET , ,CW5174 Granite Falls WA US , +C5175,3,3.000000 ,19.28783 ,-81.36267,APRSWXNET , ,CW5175 George Town KY , +C5180,3,232.9000 ,38.27180 ,-85.29560,APRSWXNET , ,CW5180 Shelbyville KY US , +C5183,3,210.3000 ,41.47033 ,-87.99217,APRSWXNET , ,CW5183 New Lenox IL US , +C5186,3,46.00000 ,46.85270 ,-123.1047,APRSWXNET , ,CW5186 Rochester WA US , +C5188,3,1242.100 ,35.11617 ,-118.4483,APRSWXNET , ,CW5188 Tehachapi CA US , +C5191,3,246.0000 ,44.96783 ,-72.18133,APRSWXNET , ,CW5191 Newport VT US , +C5193,3,13.00000 ,48.02816 ,-53.21882,APRSWXNET , ,CW5193 New Chelsea NF CA , +C5194,3,331.0000 ,39.90750 ,-85.14317,APRSWXNET , ,CW5194 Hagerstown IN US , +C5196,3,1123.200 ,39.34383 ,-101.7063,APRSWXNET , ,CW5196 Goodland KS US , +C5197,3,184.0000 ,39.14850 ,-88.55333,APRSWXNET , ,CW5197 Effingham IL US , +C5198,3,1740.000 ,39.61400 ,-105.1203,APRSWXNET , ,CW5198 Littleton CO US , +C5201,3,8.000000 ,49.10000 ,-122.0617,APRSWXNET , ,CW5201 Chilliwack CA , +C5202,3,49.00000 ,40.92500 ,-73.01700,APRSWXNET , ,CW5202 Mount Sinai NY US , +NLHA2,3,15.00000 ,61.19167 ,-149.9595,APRSWXNET , ,CW5203 Anchorage AK US , +C5204,3,131.0000 ,39.33856 ,-77.78821,APRSWXNET , ,CW5204 Harpers Ferry WV US , +C5205,3,22.00000 ,55.35817 ,10.65400 ,APRSWXNET , ,CW5205 Ullerslev DK , +C5207,3,29.00000 ,37.31727 ,-76.75079,APRSWXNET , ,CW5207 Williamsburg VA US , +C5209,3,237.0000 ,36.06983 ,-87.13333,APRSWXNET , ,CW5209 Kingston Springs TN US , +C5210,3,1288.000 ,40.98733 ,-111.9287,APRSWXNET , ,CW5210 Farmington UT US , +C5211,3,194.7000 ,38.46667 ,-85.58333,APRSWXNET , ,CW5211 Charlestown IN US , +C5212,3,1871.500 ,42.87258 ,-112.3380,APRSWXNET , ,CW5212 Pocatello ID US , +C5214,3,306.0000 ,41.09151 ,-80.70306,APRSWXNET , ,CW5214 Youngstown OH US , +C5217,3,286.5000 ,40.75500 ,-75.03967,APRSWXNET , ,CW5217 Broadway NJ US , +C5218,3,62.50000 ,46.98167 ,-122.8533,APRSWXNET , ,CW5218 Olympia WA US , +C5225,3,15.25000 ,29.72333 ,-95.41467,APRSWXNET , ,CW5225 Houston TX US , +C5227,3,388.0000 ,30.26367 ,-98.14950,APRSWXNET , ,CW5227 Dripping Springs TX US , +C5229,3,189.1000 ,41.54054 ,-87.58856,APRSWXNET , ,CW5229 Glenwood IL US , +C5231,3,5.000000 ,19.38367 ,-81.38183,APRSWXNET , ,CW5231 West Bay KY , +C5232,3,7.900000 ,29.52167 ,-95.15750,APRSWXNET , ,CW5232 Friendswood TX US , +C5234,3,76.00000 ,40.32500 ,-75.03400,APRSWXNET , ,CW5234 Buckingham PA US , +C5235,3,198.0000 ,41.48833 ,-87.50933,APRSWXNET , ,CW5235 Dyer IN US , +C5240,3,243.0000 ,43.34550 ,-72.54617,APRSWXNET , ,CW5240 Baltimore VT US , +C5244,3,94.50000 ,35.21050 ,-89.82300,APRSWXNET , ,CW5244 Bartlett TN US , +C5246,3,156.0000 ,44.59807 ,-70.16999,APRSWXNET , ,CW5246 Wilton ME US , +C5247,3,195.1000 ,41.85000 ,-87.86667,APRSWXNET , ,CW5247 Westchester IL US , +C5248,3,2543.300 ,39.04867 ,-105.0570,APRSWXNET , ,CW5248 Woodland Park CO US , +C5249,3,204.7000 ,40.96133 ,-74.97033,APRSWXNET , ,CW5249 Blairstown NJ US , +C5250,3,147.8000 ,41.18250 ,-73.81300,APRSWXNET , ,CW5250 Millwood NY US , +C5252,3,250.0000 ,32.91033 ,-117.0597,APRSWXNET , ,CW5252 San Diego CA US , +C5254,3,399.3000 ,36.53800 ,-82.72883,APRSWXNET , ,CW5254 Church Hill TN US , +C5255,3,274.3000 ,39.22467 ,-78.25500,APRSWXNET , ,CW5255 Winchester VA US , +C5257,3,280.4000 ,37.64990 ,-84.72320,APRSWXNET , ,CW5257 Danville KY US , +C5260,3,301.8000 ,40.89036 ,-76.51697,APRSWXNET , ,CW5260 Elysburg PA US , +C5262,3,188.0000 ,40.01883 ,-89.19117,APRSWXNET , ,CW5262 Chestnut IL US , +C5263,3,3.000000 ,51.95717 ,4.615500 ,APRSWXNET , ,CW5263 Nieuwerkerk ann Ijssel NL , +C5264,3,27.00000 ,57.64690 ,-3.328430,APRSWXNET , ,CW5264 Elgin UK , +C5268,3,419.4000 ,34.33334 ,-83.98805,APRSWXNET , ,CW5268 Dawsonville GA US , +C5270,3,128.0000 ,37.66580 ,-88.57830,APRSWXNET , ,CW5270 Harrisburg IL US , +C5272,3,382.5000 ,37.08833 ,-122.0347,APRSWXNET , ,CW5272 Scotts Valley CA US , +C5273,3,287.0000 ,34.12930 ,-118.7632,APRSWXNET , ,CW5273 Agoura Hills CA US , +C5277,3,3.000000 ,26.51829 ,-81.95390,APRSWXNET , ,CW5277 Fort Myers FL US , +C5278,3,381.0000 ,41.44167 ,-96.11967,APRSWXNET , ,CW5278 Blair NE US , +C5281,3,480.0000 ,64.91383 ,-148.2697,APRSWXNET , ,CW5281 Fairbanks AK US , +C5282,3,45.00000 ,48.35363 ,-64.68523,APRSWXNET , ,CW5282 Chandler CA , +C5283,3,295.6000 ,33.68500 ,-117.6558,APRSWXNET , ,CW5283 Foothill Ranch CA US , +C5284,3,213.0000 ,39.37833 ,-84.46833,APRSWXNET , ,CW5284 Hamilton OH US , +C5285,3,1777.000 ,39.60600 ,-105.1348,APRSWXNET , ,CW5285 Littleton CO US , +C5286,3,317.0000 ,38.93617 ,-78.51633,APRSWXNET , ,CW5286 Maurertown VA US , +C5288,3,100.6000 ,35.21200 ,-92.43883,APRSWXNET , ,CW5288 Wooster AR US , +C5289,3,59.30000 ,32.59000 ,-114.6560,APRSWXNET , ,CW5289 Somerton AZ US , +C5290,3,179.0000 ,32.28565 ,-97.05843,APRSWXNET , ,CW5290 Maypearl TX US , +C5292,3,40.00000 ,40.96005 ,-72.99646,APRSWXNET , ,CW5292 Miller Place NY US , +C5295,3,848.0000 ,48.80140 ,-105.2451,APRSWXNET , ,CW5295 Flaxville MT US , +C5298,3,135.3000 ,46.58500 ,-122.9045,APRSWXNET , ,CW5298 Napavine WA US , +C5300,3,200.0000 ,-41.20333,174.7997 ,APRSWXNET , ,CW5300 Wellington NZ , +C5301,3,156.4000 ,43.21333 ,-77.97133,APRSWXNET , ,CW5301 Brockport NY US , +C5302,3,125.0000 ,43.22500 ,-123.3813,APRSWXNET , ,CW5302 Roseburg OR US , +C5306,3,1336.000 ,40.93300 ,-111.8740,APRSWXNET , ,CW5306 Centerville UT US , +C5307,3,100.6000 ,39.19600 ,-76.79567,APRSWXNET , ,CW5307 Columbia MD US , +C5312,3,29.50000 ,18.42167 ,-66.05667,APRSWXNET , ,CW5312 Hato Rey PR US , +C5315,3,37.00000 ,41.40900 ,-70.63450,APRSWXNET , ,CW5315 West Tisbury MA US , +C5316,3,307.9000 ,47.44250 ,-121.7683,APRSWXNET , ,CW5316 North Bend WA US , +C5321,3,55.00000 ,42.27617 ,-71.28867,APRSWXNET , ,CW5321 Needham MA US , +C5322,3,3.000000 ,51.62450 ,0.822830 ,APRSWXNET , ,CW5322 Burnham-on-Crouch ESX UK , +C5323,3,231.6000 ,39.11580 ,-93.19470,APRSWXNET , ,CW5323 Marshall MO US , +C5327,3,191.0000 ,43.16700 ,-86.25800,APRSWXNET , ,CW5327 Muskegon MI US , +C5328,3,806.2000 ,38.95633 ,-100.4838,APRSWXNET , ,CW5328 Gove City KS US , +C5329,3,956.0000 ,46.50000 ,5.900000 ,APRSWXNET , ,CW5329 Chaus-des-Pres FR , +C5330,3,230.0000 ,41.77117 ,-88.09600,APRSWXNET , ,CW5330 Lisle IL US , +C5332,3,2005.000 ,39.34866 ,-104.7550,APRSWXNET , ,CW5332 Castlewood Canyon CO US , +C5333,3,277.1000 ,38.08133 ,-94.76517,APRSWXNET , ,CW5333 Prescott KS US , +C5334,3,131.1000 ,43.07533 ,-71.48600,APRSWXNET , ,CW5334 Hooksett NH US , +C5335,3,207.0000 ,42.93967 ,-85.78200,APRSWXNET , ,CW5335 Walker MI US , +C5338,3,324.6000 ,64.06547 ,-149.2077,APRSWXNET , ,CW5338 Healy AK US , +C5339,3,0.000000 ,43.53250 ,4.147000 ,APRSWXNET , ,CW5339 Le Grau-Du-Roi FR , +C5340,3,134.1000 ,38.00167 ,-87.84033,APRSWXNET , ,CW5340 Mt. Vernon IN US , +C5341,3,26.00000 ,45.70000 ,-0.206170,APRSWXNET , ,CW5341 Jarnac FR , +C5342,3,26.00000 ,30.38239 ,-89.35515,APRSWXNET , ,CW5342 Diamonhead MS US , +C5344,3,40.00000 ,38.80333 ,-121.3163,APRSWXNET , ,CW5344 Roseville CA US , +C5345,3,2085.000 ,39.23000 ,-104.6833,APRSWXNET , ,CW5345 Franktown CO US , +C5346,3,80.00000 ,41.04115 ,-74.23107,APRSWXNET , ,CW5346 Oakland NJ US , +C5347,3,289.6000 ,42.45183 ,-85.24250,APRSWXNET , ,CW5347 Battle Creek MI US , +C5356,3,20.00000 ,44.53433 ,-124.0743,APRSWXNET , ,CW5356 South Beach OR US , +C5360,3,3.400000 ,27.90804 ,-82.70295,APRSWXNET , ,CW5360 Clearwater FL US , +C5361,3,625.0000 ,50.28583 ,11.79117 ,APRSWXNET , ,CW5361 Leupoldsgran DE , +C5363,3,763.2000 ,35.25533 ,-82.73533,APRSWXNET , ,CW5363 Brevard NC US , +C5367,3,207.3000 ,40.98102 ,-75.04641,APRSWXNET , ,CW5367 Blairstown NJ US , +C5368,3,222.5000 ,39.47633 ,-77.03167,APRSWXNET , ,CW5368 Westminster MD US , +C5370,3,214.0000 ,39.48250 ,-88.17617,APRSWXNET , ,CW5370 Charleston IL US , +C5375,3,875.0000 ,40.88050 ,-74.59450,APRSWXNET , ,CW5375 Mine Hill NJ US , +C5376,3,106.0000 ,39.11914 ,-77.55587,APRSWXNET , ,CW5376 Leesburg VA US , +C5383,3,203.0000 ,34.64696 ,-86.55304,APRSWXNET , ,CW5383 Huntsville AL US , +C5385,3,6.100000 ,25.65917 ,-80.29700,APRSWXNET , ,CW5385 Pinecrest FL US , +C5386,3,253.5000 ,34.10320 ,-118.4347,APRSWXNET , ,CW5386 Los Angeles CA US , +C5387,3,228.0000 ,41.78850 ,-87.95567,APRSWXNET , ,CW5387 Clarendon Hills IL US , +C5389,3,10.00000 ,26.09858 ,-80.22365,APRSWXNET , ,CW5389 Plantation FL US , +C5390,3,383.0000 ,35.13346 ,-97.62415,APRSWXNET , ,CW5390 Blanchard OK US , +C5391,3,225.0000 ,43.34033 ,-73.23200,APRSWXNET , ,CW5391 West Pawlet VT US , +C5392,3,30.50000 ,45.60083 ,-121.1778,APRSWXNET , ,CW5392 The Dalles OR US , +C5395,3,386.0000 ,47.88833 ,-120.1522,APRSWXNET , ,CW5395 Manson WA US , +C5396,3,60.00000 ,43.65633 ,-79.46417,APRSWXNET , ,CW5396 Toronto ON CA , +C5397,3,625.0000 ,37.08467 ,-80.42500,APRSWXNET , ,CW5397 Christiansburg VA US , +C5398,3,79.00000 ,48.04250 ,-122.9725,APRSWXNET , ,CW5398 Sequim WA US , +C5400,3,82.00000 ,36.23384 ,-89.74586,APRSWXNET , ,CW5400 Hayti MO US , +C5402,3,30.00000 ,58.93918 ,5.592150 ,APRSWXNET , ,CW5402 Stavanger NO , +C5404,3,86.00000 ,44.91800 ,-123.2958,APRSWXNET , ,CW5404 Dallas OR US , +C5406,3,161.5000 ,39.15783 ,-77.69917,APRSWXNET , ,CW5406 Purcellville VA US , +C5409,3,57.90000 ,53.53817 ,-2.576640,APRSWXNET , ,CW5409 Wigan UK , +C5410,3,1293.000 ,42.20389 ,13.51306 ,APRSWXNET , ,CW5410 RoccaDiMezzo IT , +C5411,3,20.00000 ,56.37950 ,10.49283 ,APRSWXNET , ,CW5411 Ryomgaard DK , +C5412,3,225.6000 ,44.00950 ,-88.51833,APRSWXNET , ,CW5412 Oshkosh WI US , +C5416,3,30.50000 ,45.27967 ,-122.6877,APRSWXNET , ,CW5416 Canby OR US , +C5425,3,24.80000 ,40.91467 ,-73.97750,APRSWXNET , ,CW5425 Tenafly NJ US , +C5426,3,209.0000 ,43.42167 ,-86.35833,APRSWXNET , ,CW5426 Montague MI US , +C5427,3,1095.800 ,43.74917 ,-103.2438,APRSWXNET , ,CW5427 Hermosa SD US , +C5430,3,87.00000 ,40.11621 ,-75.16533,APRSWXNET , ,CW5430 North Hills PA US , +C5435,3,427.0000 ,64.94083 ,-147.4907,APRSWXNET , ,CW5435 Fairbanks AK US , +C5436,3,8.000000 ,58.92317 ,-3.214270,APRSWXNET , ,CW5436 Stromness UK , +C5437,3,404.0000 ,42.09831 ,-79.29617,APRSWXNET , ,CW5437 Lakewood NY US , +C5439,3,129.0000 ,56.13000 ,-3.317170,APRSWXNET , ,CW5439 Lochgelly UK , +C5443,3,140.0000 ,43.59487 ,-71.74143,APRSWXNET , ,CW5443 Bristol NH US , +C5444,3,652.2000 ,36.78597 ,-81.78428,APRSWXNET , ,CW5444 Glade Spring VA US , +C5447,3,3.000000 ,-39.50250,176.9105 ,APRSWXNET , ,CW5447 Napier NZ , +C5451,3,25.00000 ,56.78367 ,-2.513670,APRSWXNET , ,CW5451 Laurencekirk UK , +C5455,3,548.0000 ,47.26528 ,8.870560 ,APRSWXNET , ,CW5455 Zurich CH , +C5456,3,15.00000 ,47.92000 ,-122.5850,APRSWXNET , ,CW5456 Hansville WA US , +C5458,3,106.0000 ,35.57550 ,-78.79717,APRSWXNET , ,CW5458 Fuquay Varina NC US , +C5462,3,356.0000 ,35.60664 ,-97.64490,APRSWXNET , ,CW5462 Oklahoma City OK US , +C5464,3,15.20000 ,35.39400 ,-120.8590,APRSWXNET , ,CW5464 Morro Bay CA US , +C5466,3,320.0000 ,39.81167 ,-95.35300,APRSWXNET , ,CW5466 Robinson KS US , +C5467,3,225.0000 ,42.63833 ,-85.67933,APRSWXNET , ,CW5467 Hopkins MI US , +C5468,3,177.0000 ,47.65500 ,19.29117 ,APRSWXNET , ,CW5468 Veresegyhaz HU , +C5469,3,2684.000 ,40.00684 ,-105.8864,APRSWXNET , ,CW5469 Tabernash CO US , +C5471,3,237.0000 ,35.15082 ,-81.56075,APRSWXNET , ,CW5471 Blacksburg SC US , +C5474,3,279.0000 ,42.42867 ,-123.3863,APRSWXNET , ,CW5474 Grants Pass OR US , +C5478,3,1859.300 ,39.45000 ,-104.7333,APRSWXNET , ,CW5478 Parker CO US , +C5480,3,10.00000 ,43.87890 ,-69.82320,APRSWXNET , ,CW5480 Bath ME US , +C5482,3,2139.700 ,37.60150 ,-104.9580,APRSWXNET , ,CW5482 Walsenburg CO US , +C5484,3,243.0000 ,42.24131 ,-72.00087,APRSWXNET , ,CW5484 Spencer MA US , +C5485,3,198.1000 ,41.53833 ,-75.94750,APRSWXNET , ,CW5485 Tunkhannock PA US , +C5488,3,610.0000 ,39.07372 ,-121.0282,APRSWXNET , ,CW5488 Grass Valley CA US , +C5490,3,38.10000 ,47.13117 ,-122.2412,APRSWXNET , ,CW5490 Orting WA US , +C5491,3,121.9000 ,39.82935 ,-75.51472,APRSWXNET , ,CW5491 Wilmington DE US , +C5494,3,138.4000 ,43.20617 ,-77.41433,APRSWXNET , ,CW5494 Webster NY US , +C5495,3,42.00000 ,38.68867 ,0.137000 ,APRSWXNET , ,CW5495 Moraira-Teulada ES , +C5496,3,1848.000 ,39.40867 ,-104.8739,APRSWXNET , ,CW5496 Castle Rock CO US , +C5497,3,20.00000 ,38.60883 ,-121.2897,APRSWXNET , ,CW5497 Rancho Cordova CA US , +C5498,3,132.6000 ,39.26367 ,-77.58383,APRSWXNET , ,CW5498 Lovettsville VA US , +C5502,3,1941.600 ,34.29258 ,-110.1693,APRSWXNET , ,CW5502 Linden AZ US , +C5504,3,24.40000 ,32.33500 ,-81.37333,APRSWXNET , ,CW5504 Sprintfield GA US , +C5505,3,1456.900 ,41.15491 ,-111.9485,APRSWXNET , ,CW5505 South Ogden UT US , +C5506,3,231.0000 ,42.97044 ,-85.71938,APRSWXNET , ,CW5506 Grand Rapids MI US , +C5507,3,920.5000 ,44.43700 ,-121.6550,APRSWXNET , ,CW5507 Camp Sherman OR US , +C5508,3,153.0000 ,46.21333 ,-119.2610,APRSWXNET , ,CW5508 Richland WA US , +C5515,3,10.00000 ,44.30217 ,8.476170 ,APRSWXNET , ,CW5515 Savona IT , +C5516,3,111.0000 ,43.26274 ,-71.57558,APRSWXNET , ,CW5516 Penacook NH US , +C5517,3,656.0000 ,41.73807 ,-77.97169,APRSWXNET , ,CW5517 Coudersport PA US , +C5519,3,568.0000 ,41.00197 ,-98.26413,APRSWXNET , ,CW5519 Grand Island NE US , +C5520,3,45.70000 ,33.72255 ,-118.2920,APRSWXNET , ,CW5520 San Pedro CA US , +C5521,3,247.5000 ,40.82000 ,-89.62100,APRSWXNET , ,CW5521 Peoria IL US , +C5523,3,15.00000 ,64.59970 ,-165.3000,APRSWXNET , ,CW5523 Nome AK US , +C5525,3,213.4000 ,33.52083 ,-84.10250,APRSWXNET , ,CW5525 McDonough GA US , +C5527,3,385.0000 ,40.29542 ,-78.90602,APRSWXNET , ,CW5527 Johnstown PA US , +C5530,3,118.9000 ,42.45083 ,-76.50283,APRSWXNET , ,CW5530 Ithaca NY US , +C5532,3,400.0000 ,41.74300 ,1.712830 ,APRSWXNET , ,CW5532 Fals ES , +C5533,3,175.0000 ,33.61933 ,-117.6620,APRSWXNET , ,CW5533 Mission Viejo CA US , +C5536,3,63.40000 ,43.63300 ,-70.49450,APRSWXNET , ,CW5536 Buxton ME US , +C5539,3,193.7000 ,41.40195 ,-82.23535,APRSWXNET , ,CW5539 Amherst OH US , +C5542,3,304.8000 ,42.25733 ,-84.44150,APRSWXNET , ,CW5542 Jackson MI US , +C5543,3,2203.000 ,39.68383 ,-105.2887,APRSWXNET , ,CW5543 Golden CO US , +C5549,3,335.3000 ,42.07383 ,-75.90383,APRSWXNET , ,CW5549 Binghamton NY US , +C5550,3,31.00000 ,54.02967 ,-0.345000,APRSWXNET , ,CW5550 Driffield UK , +C5551,3,1050.000 ,34.65883 ,-118.3883,APRSWXNET , ,CW5551 Elizabeth Lake CA US , +C5552,3,109.0000 ,42.03417 ,-71.44217,APRSWXNET , ,CW5552 Wrentham MA US , +C5554,3,82.50000 ,51.40800 ,-1.276830,APRSWXNET , ,CW5554 Thatcham UK , +C5557,3,1481.000 ,10.35531 ,-66.96193,APRSWXNET , ,CW5557 Parque El Retiro VE , +C5559,3,1520.000 ,45.02570 ,6.855700 ,APRSWXNET , ,CW5559 Turin IT , +C5560,3,244.0000 ,44.93833 ,-93.11500,APRSWXNET , ,CW5560 Saint Paul MN US , +C5564,3,16.00000 ,56.07267 ,12.52700 ,APRSWXNET , ,CW5564 Helsingar DK , +C5570,3,19.00000 ,50.91533 ,-1.530330,APRSWXNET , ,CW5570 Southampton UK , +C5573,3,7.300000 ,40.77850 ,-72.83933,APRSWXNET , ,CW5573 Mastic Beach NY US , +C5574,3,49.00000 ,42.59361 ,-73.81444,APRSWXNET , ,CW5574 Glenmont NY US , +C5575,3,144.0000 ,32.84956 ,-96.48502,APRSWXNET , ,CW5575 Heath TX US , +C5579,3,472.4000 ,42.04433 ,-123.7137,APRSWXNET , ,CW5579 O'Brien OR US , +C5581,3,225.5000 ,47.01650 ,-122.3138,APRSWXNET , ,CW5581 Graham WA US , +C5582,3,10.00000 ,56.82333 ,-5.084500,APRSWXNET , ,CW5582 Fort William UK , +C5586,3,50.00000 ,57.78283 ,12.24883 ,APRSWXNET , ,CW5586 Lerum SE , +C5590,3,253.0000 ,38.77261 ,-93.50267,APRSWXNET , ,CW5590 Knob Noster MO US , +C5591,3,266.0000 ,37.71044 ,-84.07086,APRSWXNET , ,CW5591 Irvine KY US , +C5598,3,392.0000 ,40.72550 ,-79.79383,APRSWXNET , ,CW5598 Saxonburg PA US , +C5599,3,202.0000 ,40.60400 ,-122.3324,APRSWXNET , ,CW5599 Redding CA US , +C5600,3,6.500000 ,30.03933 ,-90.71467,APRSWXNET , ,CW5600 Paulina LA US , +C5602,3,1028.000 ,35.44510 ,-83.03355,APRSWXNET , ,CW5602 Waynesville NC US , +C5603,3,351.1000 ,41.08250 ,-96.12800,APRSWXNET , ,CW5603 Springfield NE US , +C5605,3,283.5000 ,34.13943 ,-83.89776,APRSWXNET , ,CW5605 Looper Lake GA US , +C5606,3,277.4000 ,41.42848 ,-73.51665,APRSWXNET , ,CW5606 Danbury CT US , +C5607,3,90.00000 ,22.05950 ,-159.3695,APRSWXNET , ,CW5607 Wailua Homesteads HI US , +C5608,3,2075.000 ,38.94417 ,-104.8713,APRSWXNET , ,CW5608 Colorado Springs CO US , +C5612,3,75.00000 ,37.42645 ,-77.64264,APRSWXNET , ,CW5612 Midlothian VA US , +C5614,3,169.0000 ,32.87283 ,-96.43550,APRSWXNET , ,CW5614 Rockwall TX US , +C5616,3,38.10000 ,36.18083 ,-77.68283,APRSWXNET , ,CW5616 Enfield NC US , +C5617,3,0.000000 ,24.50000 ,-78.20000,APRSWXNET , ,CW5617 Fresh Creek BS , +C5618,3,274.0000 ,42.59790 ,-71.84998,APRSWXNET , ,CW5618 Fitchburg MA US , +C5619,3,760.0000 ,32.38717 ,-111.0413,APRSWXNET , ,CW5619 Tucson AZ US , +C5621,3,1623.000 ,39.89967 ,-105.0333,APRSWXNET , ,CW5621 Westminster CO US , +C5622,3,62.50000 ,42.11617 ,-72.64283,APRSWXNET , ,CW5622 West Springfield MA US , +C5627,3,341.4000 ,36.16367 ,-94.01050,APRSWXNET , ,CW5627 Springdale AR US , +C5631,3,655.3000 ,35.30217 ,-82.46383,APRSWXNET , ,CW5631 Hendersonville NC US , +C5632,3,1276.000 ,39.65833 ,-102.5733,APRSWXNET , ,CW5632 Kirk CO US , +C5634,3,2195.000 ,36.10383 ,-118.5238,APRSWXNET , ,CW5634 Camp Nelson CA US , +C5638,3,147.0000 ,33.27300 ,-86.84583,APRSWXNET , ,CW5638 Helena AL US , +C5642,3,34.70000 ,29.70833 ,-95.38117,APRSWXNET , ,CW5642 Houston TX US , +C5643,3,50.00000 ,59.52800 ,13.18717 ,APRSWXNET , ,CW5643 Fageravs SE , +C5646,3,200.0000 ,45.44217 ,-122.7188,APRSWXNET , ,CW5646 Portland OR US , +C5648,3,154.0000 ,38.90000 ,-86.97883,APRSWXNET , ,CW5648 Odon IN US , +C5652,3,10.00000 ,33.44500 ,-118.4833,APRSWXNET , ,CW5652 Two Harbors CA US , +C5654,3,368.0000 ,35.86867 ,-98.19867,APRSWXNET , ,CW5654 Omega OK US , +C5655,3,1417.000 ,46.51517 ,-111.9207,APRSWXNET , ,CW5655 Helena MT US , +C5657,3,521.0000 ,32.65683 ,-99.84417,APRSWXNET , ,CW5657 Hawley TX US , +C5665,3,271.0000 ,30.35883 ,-98.04783,APRSWXNET , ,CW5665 Spicewood TX US , +KDTA2,3,35.00000 ,57.79400 ,-152.3880,APRSWXNET , ,CW5666 Kodiak AK US , +C5670,3,1529.200 ,40.05517 ,-105.0975,APRSWXNET , ,CW5670 Lafayette CO US , +C5671,3,152.4000 ,38.70217 ,-122.3863,APRSWXNET , ,CW5671 Pope Valley CA US , +C5674,3,120.0000 ,35.63256 ,-78.73665,APRSWXNET , ,CW5674 Fuquay-Varina NC US , +C5675,3,4.000000 ,56.00133 ,12.58450 ,APRSWXNET , ,CW5675 Copenhagen DK , +C5676,3,1905.000 ,38.85500 ,-104.7453,APRSWXNET , ,CW5676 Colorado Springs CO US , +C5678,3,1511.000 ,40.44267 ,-105.0250,APRSWXNET , ,CW5678 Loveland CO US , +C5682,3,30.00000 ,51.86950 ,-2.218330,APRSWXNET , ,CW5682 Gloucester UK , +C5688,3,1955.000 ,41.59982 ,-109.2510,APRSWXNET , ,CW5688 Rock Springs WY US , +C5689,3,216.4000 ,44.92516 ,-92.76559,APRSWXNET , ,CW5689 Lakeland MN US , +C5693,3,898.2000 ,34.50000 ,-117.1970,APRSWXNET , ,CW5693 Apple Valley CA US , +C5694,3,1346.300 ,36.13917 ,-118.6288,APRSWXNET , ,CW5694 Camp Nelson CA US , +C5698,3,91.10000 ,39.03650 ,-77.48083,APRSWXNET , ,CW5698 Ashburn VA US , +C5699,3,1499.600 ,40.57633 ,-105.0217,APRSWXNET , ,CW5699 Ft. Collins CO US , +C5702,3,106.7000 ,35.03433 ,-120.4970,APRSWXNET , ,CW5702 Nipomo CA US , +C5708,3,106.5000 ,42.57663 ,-71.83767,APRSWXNET , ,CW5708 Fitchburg MA US , +C5709,3,72.80000 ,44.55133 ,-123.2912,APRSWXNET , ,CW5709 Corvallis OR US , +C5711,3,452.0000 ,42.81533 ,-1.644500,APRSWXNET , ,CW5711 Pamplona ES , +C5715,3,300.0000 ,33.98750 ,-84.21550,APRSWXNET , ,CW5715 Norcross GA US , +C5719,3,868.0000 ,38.09349 ,-100.8876,APRSWXNET , ,CW5719 Garden City KS US , +C5727,3,347.5000 ,44.09821 ,-92.47268,APRSWXNET , ,CW5727 Rochester MN US , +C5729,3,260.0000 ,40.50920 ,-79.83870,APRSWXNET , ,CW5729 Verona PA US , +C5732,3,7.000000 ,40.08767 ,-74.90369,APRSWXNET , ,CW5732 Croydon PA US , +C5733,3,10.80000 ,45.90467 ,-122.7462,APRSWXNET , ,CW5733 Woodland WA US , +C5735,3,152.0000 ,60.35183 ,15.75083 ,APRSWXNET , ,CW5735 Sater SE , +C5738,3,2100.000 ,32.94033 ,-105.8420,APRSWXNET , ,CW5738 High Rolls NM US , +C5740,3,4.000000 ,26.97367 ,-82.22567,APRSWXNET , ,CW5740 Port Charlotte FL US , +C5741,3,192.0000 ,39.16083 ,-77.98883,APRSWXNET , ,CW5741 Berryville VA US , +C5742,3,190.5000 ,41.66550 ,-86.86783,APRSWXNET , ,CW5742 Michigan City IN US , +C5749,3,230.1000 ,41.64908 ,-91.49035,APRSWXNET , ,CW5749 Iowa City IA US , +C5752,3,120.4000 ,37.87500 ,-89.13700,APRSWXNET , ,CW5752 Royalton IL US , +C5753,3,230.1000 ,41.47083 ,-84.53167,APRSWXNET , ,CW5753 Bryan OH US , +C5757,3,207.0000 ,34.16717 ,-83.11417,APRSWXNET , ,CW5757 Royston GA US , +C5759,3,54.00000 ,42.16680 ,-71.35700,APRSWXNET , ,CW5759 Millis MA US , +C5761,3,91.00000 ,40.30117 ,-75.20050,APRSWXNET , ,CW5761 Chalfont PA US , +C5762,3,9.000000 ,40.08867 ,-74.08467,APRSWXNET , ,CW5762 Point Pleasant NJ US , +C5763,3,38.00000 ,50.66117 ,-1.200830,APRSWXNET , ,CW5763 Sandown UK , +C5766,3,46.00000 ,44.80000 ,-63.60000,APRSWXNET , ,CW5766 Waverley NS CA , +C5768,3,369.0000 ,34.47383 ,-114.2628,APRSWXNET , ,CW5768 Lake Havasu City AZ US , +C5770,3,147.0000 ,43.25200 ,-72.41283,APRSWXNET , ,CW5770 Charlestown NH US , +C5771,3,6.000000 ,52.92789 ,4.986160 ,APRSWXNET , ,CW5771 Den Oever NL , +C5772,3,10.00000 ,27.59800 ,-97.23533,APRSWXNET , ,CW5772 Corpus Christi TX US , +C5773,3,300.0000 ,44.70050 ,-93.21930,APRSWXNET , ,CW5773 Lakeville MN US , +C5775,3,47.50000 ,39.73495 ,-75.02984,APRSWXNET , ,CW5775 Washington Township NJ US , +C5776,3,291.1000 ,44.92600 ,-93.54100,APRSWXNET , ,CW5776 Deephaven MN US , +C5778,3,570.0000 ,33.41500 ,-111.5490,APRSWXNET , ,CW5778 Apache Junction AZ US , +C5780,3,2066.600 ,37.95650 ,-119.1195,APRSWXNET , ,CW5780 Lee Vining CA US , +C5781,3,475.0000 ,45.64000 ,-89.39325,APRSWXNET , ,CW5781 Rhinelander WI US , +C5786,3,40.00000 ,38.41917 ,-122.7517,APRSWXNET , ,CW5786 Santa Rosa CA US , +C5790,3,221.0000 ,43.05633 ,-85.61533,APRSWXNET , ,CW5790 Grand Rapids MI US , +C5791,3,299.0000 ,44.92549 ,-93.48511,APRSWXNET , ,CW5791 Minnetonka MN US , +C5795,3,92.00000 ,44.05000 ,1.216670 ,APRSWXNET , ,CW5795 Montauban FR , +C5798,3,1250.000 ,37.06278 ,-111.6444,APRSWXNET , ,CW5798 Big Water UT US , +C5799,3,3.000000 ,51.88333 ,5.350000 ,APRSWXNET , ,CW5799 Buren NL , +C5801,3,22.00000 ,40.72633 ,-73.45833,APRSWXNET , ,CW5801 Farmingdale NY US , +C5803,3,227.5000 ,35.74126 ,-80.68928,APRSWXNET , ,CW5803 Cleveland NC US , +C5804,3,25.00000 ,36.88750 ,-76.91167,APRSWXNET , ,CW5804 Ivor VA US , +C5811,3,298.0000 ,38.63601 ,-94.83605,APRSWXNET , ,CW5811 Paola KS US , +C5812,3,1617.600 ,39.96633 ,-105.0517,APRSWXNET , ,CW5812 Broomfield CO US , +C5817,3,1263.000 ,34.21542 ,-103.5687,APRSWXNET , ,CW5817 Floyd NM US , +C5818,3,175.0000 ,43.59750 ,-71.45633,APRSWXNET , ,CW5818 Laconia NH US , +C5822,3,295.0000 ,38.03750 ,23.94033 ,APRSWXNET , ,CW5822 Athens GR , +C5826,3,35.00000 ,30.66708 ,-87.90517,APRSWXNET , ,CW5826 Spanish Fort AL US , +C5827,3,178.9000 ,41.95050 ,-87.64500,APRSWXNET , ,CW5827 Chicago IL US , +C5833,3,70.00000 ,42.14700 ,-71.41000,APRSWXNET , ,CW5833 Medway MA US , +C5834,3,442.0000 ,36.28642 ,-83.61490,APRSWXNET , ,CW5834 Washburn TN US , +C5837,3,847.0000 ,32.01160 ,-102.1106,APRSWXNET , ,CW5837 Midland TX US , +C5839,3,72.00000 ,48.46200 ,-2.060830,APRSWXNET , ,CW5839 Dinan FR , +C5841,3,151.0000 ,53.06750 ,-2.042500,APRSWXNET , ,CW5841 Leek UK , +C5842,3,235.0000 ,32.25433 ,-97.83033,APRSWXNET , ,CW5842 Glen Rose TX US , +C5843,3,267.0000 ,41.01150 ,-76.68050,APRSWXNET , ,CW5843 Danville PA US , +C5844,3,73.70000 ,41.79917 ,-71.88250,APRSWXNET , ,CW5844 Danielson CT US , +C5845,3,11.00000 ,33.93717 ,-78.05833,APRSWXNET , ,CW5845 Southport NC US , +C5849,3,68.00000 ,36.44083 ,-78.06800,APRSWXNET , ,CW5849 Macon NC US , +C5851,3,72.60000 ,42.89614 ,-71.16859,APRSWXNET , ,CW5851 Hampstead NH US , +C5853,3,184.4000 ,38.80000 ,-90.90000,APRSWXNET , ,CW5853 Wentzville MO US , +C5854,3,160.0000 ,50.33883 ,8.744170 ,APRSWXNET , ,CW5854 Frankfurt DE , +C5855,3,235.0000 ,41.94832 ,-88.29920,APRSWXNET , ,CW5855 St. Charles IL US , +C5858,3,953.0000 ,32.05397 ,-110.7023,APRSWXNET , ,CW5858 Vail AZ US , +C5862,3,121.9000 ,36.15367 ,-88.78800,APRSWXNET , ,CW5862 Greenfield TN US , +C5863,3,10.00000 ,26.64528 ,-81.58209,APRSWXNET , ,CW5863 Lehigh Acres FL US , +C5870,3,83.00000 ,-38.11622,144.3222 ,APRSWXNET , ,CW5870 North Geelong AU , +C5875,3,480.0000 ,42.33200 ,13.90667 ,APRSWXNET , ,CW5875 Civitaquana IT , +KBHA2,3,3.000000 ,57.78583 ,-152.4163,APRSWXNET , ,CW5876 Kodiak AK US , +C5877,3,169.0000 ,33.19633 ,-96.44550,APRSWXNET , ,CW5877 Princeton TX US , +C5878,3,944.9000 ,36.45617 ,-81.52200,APRSWXNET , ,CW5878 Warrensville NC US , +C5880,3,2082.000 ,31.96400 ,-111.5995,APRSWXNET , ,CW5880 Kitt Peak Observatory AZ US , +C5881,3,99.90000 ,32.41900 ,-88.74500,APRSWXNET , ,CW5881 Meridian MS US , +C5882,3,274.3000 ,40.60000 ,-79.70000,APRSWXNET , ,CW5882 Pittsburgh PA US , +C5885,3,28.00000 ,40.92858 ,-74.11422,APRSWXNET , ,CW5885 Fair Lawn NJ US , +C5890,3,20.00000 ,-19.25367,146.6750 ,APRSWXNET , ,CW5890 Townsville AU , +C5892,3,279.0000 ,47.87800 ,16.23033 ,APRSWXNET , ,CW5892 Felixdorf AT , +C5896,3,50.00000 ,40.35033 ,-74.60250,APRSWXNET , ,CW5896 Princeton NJ US , +C5897,3,216.0000 ,42.21800 ,-71.81450,APRSWXNET , ,CW5897 Auburn MA US , +C5899,3,87.00000 ,35.06316 ,-92.44982,APRSWXNET , ,CW5899 Conway AR US , +C5905,3,1460.000 ,44.22550 ,-105.7497,APRSWXNET , ,CW5905 Gillette WY US , +C5906,3,289.0000 ,-37.10083,146.0097 ,APRSWXNET , ,CW5906 Mansfield AU , +C5907,3,14.00000 ,52.55200 ,4.686670 ,APRSWXNET , ,CW5907 Castricum NL , +C5909,3,6.000000 ,28.46155 ,-80.81385,APRSWXNET , ,CW5909 Port St. John FL US , +C5913,3,1292.000 ,34.45167 ,-117.9483,APRSWXNET , ,CW5913 Littlerock CA US , +C5915,3,97.50000 ,47.95740 ,-124.3794,APRSWXNET , ,CW5915 Forks WA US , +C5917,3,297.0000 ,42.92117 ,-89.38550,APRSWXNET , ,CW5917 Oregon WI US , +C5918,3,6.000000 ,40.63833 ,-73.18400,APRSWXNET , ,CW5918 Fair Harbor NY US , +C5920,3,261.0000 ,32.56400 ,-97.41150,APRSWXNET , ,CW5920 Crowley TX US , +C5921,3,772.7000 ,32.28050 ,-101.5147,APRSWXNET , ,CW5921 Big Spring TX US , +C5923,3,40.00000 ,51.57300 ,6.745000 ,APRSWXNET , ,CW5923 Dinslaken DE , +C5924,3,4.500000 ,27.62000 ,-80.57283,APRSWXNET , ,CW5924 Vero Beach FL US , +C5925,3,15.00000 ,43.31333 ,-124.1653,APRSWXNET , ,CW5925 Coos Bay OR US , +C5927,3,9.000000 ,51.44133 ,5.041330 ,APRSWXNET , ,CW5927 Poppel BE , +C5928,3,21.00000 ,30.06033 ,-95.50583,APRSWXNET , ,CW5928 Spring TX US , +C5929,3,184.1000 ,41.53450 ,-87.48667,APRSWXNET , ,CW5929 Munster IN US , +C5931,3,5.000000 ,48.26633 ,-124.2997,APRSWXNET , ,CW5931 Sekiu WA US , +C5932,3,1489.000 ,34.63417 ,-106.8350,APRSWXNET , ,CW5932 Belen NM US , +C5933,3,338.3000 ,34.02283 ,-84.43083,APRSWXNET , ,CW5933 Marietta GA US , +C5934,3,1200.000 ,51.43283 ,-114.0263,APRSWXNET , ,CW5934 Crossfield AB US , +C5935,3,110.3000 ,37.96033 ,-121.9467,APRSWXNET , ,CW5935 Concord CA US , +C5936,3,184.1000 ,43.25417 ,-86.33200,APRSWXNET , ,CW5936 N. Muskegon MI US , +C5937,3,221.0000 ,44.82633 ,-87.36500,APRSWXNET , ,CW5937 Sturgeon Bay WI US , +C5938,3,140.0000 ,37.67830 ,-87.91637,APRSWXNET , ,CW5938 Morganfield KY US , +C5950,3,1816.600 ,39.37200 ,-120.0830,APRSWXNET , ,CW5950 Truckee CA US , +C5951,3,43.90000 ,39.74800 ,-74.96950,APRSWXNET , ,CW5951 Sicklerville NJ US , +C5952,3,89.00000 ,52.29000 ,9.336330 ,APRSWXNET , ,CW5952 Hannover DE , +C5953,3,359.0000 ,49.36283 ,7.061670 ,APRSWXNET , ,CW5953 Saarbeacken DE , +C5955,3,100.0000 ,40.20533 ,-75.63917,APRSWXNET , ,CW5955 East Coventry PA US , +C5956,3,163.0000 ,51.75000 ,14.75000 ,APRSWXNET , ,CW5956 Goerlitz DE , +C5960,3,53.00000 ,47.65583 ,-122.3550,APRSWXNET , ,CW5960 Seattle WA US , +C5964,3,150.0000 ,47.51633 ,-52.81367,APRSWXNET , ,CW5964 Mount Pearl NF CA , +C5970,3,513.0000 ,45.82850 ,-120.8025,APRSWXNET , ,CW5970 Goldendale WA US , +C5972,3,526.0000 ,45.80383 ,-120.8153,APRSWXNET , ,CW5972 Goldendale WA US , +C5973,3,181.6000 ,38.36717 ,-81.83150,APRSWXNET , ,CW5973 Saint Albans WV US , +C5974,3,40.00000 ,43.07583 ,-92.33700,APRSWXNET , ,CW5974 New Hampton IA US , +C5975,3,204.0000 ,50.31000 ,9.468670 ,APRSWXNET , ,CW5975 Fulda DE , +C5976,3,10.00000 ,65.67500 ,24.58800 ,APRSWXNET , ,CW5976 Lappi FI , +C5978,3,985.0000 ,47.15050 ,9.148670 ,APRSWXNET , ,CW5978 Amden CH , +C5983,3,15.20000 ,29.33950 ,48.06133 ,APRSWXNET , ,CW5983 Salmiya KW , +C5984,3,533.0000 ,45.46583 ,-118.8317,APRSWXNET , ,CW5984 Pilot Rock OR US , +C5985,3,165.8000 ,41.17200 ,-74.07167,APRSWXNET , ,CW5985 Pomona NY US , +C5986,3,68.00000 ,35.27667 ,-120.6563,APRSWXNET , ,CW5986 San Luis Obispo CA US , +C5988,3,57.30000 ,37.75967 ,-122.4317,APRSWXNET , ,CW5988 San Francisco CA US , +C5991,3,1487.000 ,40.58833 ,-111.8200,APRSWXNET , ,CW5991 Sandy UT US , +C5995,3,438.0000 ,45.71750 ,-118.6863,APRSWXNET , ,CW5995 Pendleton OR US , +C6004,3,545.0000 ,41.56105 ,-98.14833,APRSWXNET , ,CW6004 Cedar Rapids NE US , +C6005,3,42.00000 ,33.51733 ,-80.49950,APRSWXNET , ,CW6005 Santee SC US , +C6007,3,123.0000 ,48.64848 ,-123.6397,APRSWXNET , ,CW6007 Shawnigan Lake BC CA , +C6010,3,432.0000 ,47.04033 ,7.100500 ,APRSWXNET , ,CW6010 Erlach CH , +C6012,3,45.00000 ,29.94862 ,-95.70749,APRSWXNET , ,CW6012 Cypress TX US , +C6014,3,10.00000 ,44.23933 ,-68.52707,APRSWXNET , ,CW6014 Brooklin-Naskeag1 ME US , +C6017,3,325.0000 ,42.85252 ,-90.18379,APRSWXNET , ,CW6017 Mineral Point WI US , +C6018,3,195.0000 ,43.18943 ,-86.16478,APRSWXNET , ,CW6018 Muskegon MI US , +C6020,3,157.0000 ,38.74112 ,0.096850 ,APRSWXNET , ,CW6020 Teulada ES , +C6022,3,261.0000 ,33.28850 ,-84.45217,APRSWXNET , ,CW6022 Brooks GA US , +C6023,3,317.0000 ,34.08167 ,-117.7658,APRSWXNET , ,CW6023 Pomona CA US , +C6025,3,31.00000 ,48.96467 ,-122.6162,APRSWXNET , ,CW6025 Bellingham WA US , +C6026,3,317.0000 ,36.05250 ,-83.36617,APRSWXNET , ,CW6026 Dandridge TN US , +C6027,3,269.0000 ,35.83834 ,-80.89379,APRSWXNET , ,CW6027 Statesville NC US , +C6028,3,1899.000 ,43.79133 ,-120.9425,APRSWXNET , ,CW6028 Pine Mtn Observatory OR US , +C6029,3,52.70000 ,32.57667 ,-93.72533,APRSWXNET , ,CW6029 Bossier City LA US , +C6032,3,418.0000 ,38.30250 ,-97.20700,APRSWXNET , ,CW6032 Hillsboro KS US , +C6033,3,18.00000 ,52.62000 ,10.15300 ,APRSWXNET , ,CW6033 Hamburg DE , +C6034,3,60.00000 ,52.39081 ,-0.533510,APRSWXNET , ,CW6034 Thrapston UK , +C6037,3,296.0000 ,41.52000 ,-75.54717,APRSWXNET , ,CW6037 Jermyn PA US , +C6038,3,131.0000 ,31.52700 ,-87.32417,APRSWXNET , ,CW6038 Monroeville AL US , +C6040,3,10.00000 ,38.91050 ,-76.51717,APRSWXNET , ,CW6040 Mayo MD US , +C6043,3,260.6000 ,32.94178 ,-97.40962,APRSWXNET , ,CW6043 Haslet TX US , +C6044,3,1015.000 ,37.17300 ,-113.3303,APRSWXNET , ,CW6044 Hurricane UT US , +C6054,3,48.00000 ,52.93667 ,9.309590 ,APRSWXNET , ,CW6054 Kirchlinteln DE , +C6056,3,1260.000 ,34.36867 ,-83.70250,APRSWXNET , ,CW6056 Lula GA US , +C6057,3,56.70000 ,33.94050 ,-118.0025,APRSWXNET , ,CW6057 Whittier CA US , +C6059,3,185.0000 ,36.50750 ,-4.727500,APRSWXNET , ,CW6059 Mijas-Costa ES , +C6062,3,1119.000 ,25.52567 ,-103.3610,APRSWXNET , ,CW6062 Torreon MX , +BRFA2,3,16.50000 ,58.55530 ,-155.7780,APRSWXNET , ,CW6065 Brooks Camp AK US , +C6069,3,10.00000 ,33.59307 ,-79.05765,APRSWXNET , ,CW6069 Murrells Inlet SC US , +C6073,3,0.000000 ,19.74617 ,-79.76800,APRSWXNET , ,CW6073 Westend KY , +C6076,3,11.00000 ,51.64232 ,-3.818320,APRSWXNET , ,CW6076 Neath UK , +C6077,3,78.00000 ,52.03833 ,8.135000 ,APRSWXNET , ,CW6077 Versmold DE , +C6081,3,231.6000 ,37.65500 ,-82.82930,APRSWXNET , ,CW6081 Prestonsburg KY US , +C6083,3,729.0000 ,-22.69367,117.7886 ,APRSWXNET , ,CW6083 Tom Price AU , +C6086,3,215.0000 ,33.16350 ,-96.66017,APRSWXNET , ,CW6086 McKinney TX US , +C6087,3,1529.000 ,40.08700 ,-104.9250,APRSWXNET , ,CW6087 Dacono CO US , +C6091,3,190.0000 ,41.71833 ,-87.77867,APRSWXNET , ,CW6091 Oak Lawn IL US , +C6094,3,253.0000 ,43.84481 ,-91.30819,APRSWXNET , ,CW6094 La Crescent MN US , +C6095,3,7.000000 ,26.43722 ,-82.12649,APRSWXNET , ,CW6095 Sanibel FL US , +C6097,3,241.1000 ,37.15250 ,-79.67800,APRSWXNET , ,CW6097 Moneta VA US , +C6099,3,1105.000 ,38.77117 ,-101.6772,APRSWXNET , ,CW6099 Sharon Springs KS US , +C6102,3,220.0000 ,51.09667 ,14.39133 ,APRSWXNET , ,CW6102 Dresden DE , +C6104,3,293.0000 ,41.59578 ,-93.66662,APRSWXNET , ,CW6104 Des Moines IA US , +C6105,3,437.4000 ,46.40974 ,-116.9109,APRSWXNET , ,CW6105 Lewiston ID US , +C6106,3,47.00000 ,34.59650 ,-79.63450,APRSWXNET , ,CW6106 Bennettsville SC US , +C6107,3,7.500000 ,28.33950 ,-80.73600,APRSWXNET , ,CW6107 Rockledge FL US , +C6108,3,1521.000 ,40.49613 ,-112.0293,APRSWXNET , ,CW6108 Herriman UT US , +C6110,3,172.0000 ,39.21769 ,-78.06846,APRSWXNET , ,CW6110 Stephenson VA US , +C6111,3,1901.000 ,20.97034 ,-100.7918,APRSWXNET , ,CW6111 San Miguel de Allende MX , +C6113,3,1.000000 ,31.92717 ,-81.09783,APRSWXNET , ,CW6113 Savannah GA US , +C6115,3,80.00000 ,30.41300 ,-95.66000,APRSWXNET , ,CW6115 Montgomery TX US , +C6118,3,80.70000 ,37.59848 ,-121.9192,APRSWXNET , ,CW6118 Sunol CA US , +C6120,3,1566.700 ,39.61200 ,-119.8133,APRSWXNET , ,CW6120 Reno NV US , +SLDA2,3,38.10000 ,60.48667 ,-151.0822,APRSWXNET , ,CW6122 Soldotna AK US , +C6126,3,296.0000 ,33.88699 ,-83.90441,APRSWXNET , ,CW6126 Loganville GA US , +C6129,3,517.0000 ,38.69527 ,-120.8490,APRSWXNET , ,CW6129 Placerville CA US , +C6132,3,15.20000 ,29.73617 ,-95.38717,APRSWXNET , ,CW6132 Houston TX US , +C6134,3,264.0000 ,45.70750 ,9.679170 ,APRSWXNET , ,CW6134 Bergamo IT , +C6135,3,2127.000 ,37.21166 ,-107.5361,APRSWXNET , ,CW6135 Bayfield CO US , +C6136,3,1209.000 ,48.07401 ,-114.4020,APRSWXNET , ,CW6136 Kila MT US , +C6143,3,335.0000 ,36.17540 ,-85.54703,APRSWXNET , ,CW6143 Cookeville TN US , +C6144,3,46.20000 ,30.06167 ,-95.52917,APRSWXNET , ,CW6144 Spring TX US , +C6145,3,10.00000 ,28.04033 ,-82.67417,APRSWXNET , ,CW6145 Oldsmar FL US , +C6147,3,18.80000 ,33.77050 ,-118.1507,APRSWXNET , ,CW6147 Long Beach CA US , +C6149,3,7.000000 ,30.62083 ,-87.02083,APRSWXNET , ,CW6149 Milton FL US , +C6151,3,7.000000 ,42.80633 ,-70.89967,APRSWXNET , ,CW6151 Newburyport MA US , +C6152,3,258.2000 ,40.06000 ,-85.80617,APRSWXNET , ,CW6152 Lapel IN US , +C6153,3,160.0000 ,32.84510 ,-96.62382,APRSWXNET , ,CW6153 Mesquite TX US , +C6155,3,229.2000 ,30.35750 ,-97.72333,APRSWXNET , ,CW6155 Austin TX US , +C6156,3,15.00000 ,55.99867 ,12.74000 ,APRSWXNET , ,CW6156 Helsingborg SE , +C6157,3,750.0000 ,42.00000 ,-5.683330,APRSWXNET , ,CW6157 Benavente ES , +C6158,3,33.00000 ,37.71000 ,-76.52583,APRSWXNET , ,CW6158 Mollusk VA US , +C6159,3,830.9000 ,35.78117 ,-118.4438,APRSWXNET , ,CW6159 Kernville CA US , +C6162,3,4.000000 ,26.34275 ,-80.21323,APRSWXNET , ,CW6162 Boca Raton FL US , +C6163,3,1981.200 ,35.71033 ,-118.5600,APRSWXNET , ,CW6163 Wofford Heights CA US , +C6164,3,259.0000 ,39.68752 ,-86.02515,APRSWXNET , ,CW6164 Indianapolis IN US , +C6171,3,1418.800 ,40.36662 ,-111.9387,APRSWXNET , ,CW6171 Saratoga Springs UT US , +C6175,3,151.0000 ,50.86875 ,6.025720 ,APRSWXNET , ,CW6175 Kerkrade NL , +C6182,3,203.0000 ,45.84150 ,-122.3900,APRSWXNET , ,CW6182 Yacolt WA US , +C6185,3,90.00000 ,49.59333 ,8.357670 ,APRSWXNET , ,CW6185 Bobenheim-Roxheim DE , +C6192,3,149.0000 ,37.89942 ,-122.1227,APRSWXNET , ,CW6192 Lafayette CA US , +C6197,3,1535.000 ,34.82643 ,-118.9549,APRSWXNET , ,CW6197 Frazier Park CA US , +C6204,3,158.0000 ,30.08881 ,-97.28708,APRSWXNET , ,CW6204 Bastrop TX US , +C6205,3,190.0000 ,41.55883 ,-88.24250,APRSWXNET , ,CW6205 Plainfield IL US , +C6207,3,106.7000 ,39.76133 ,-121.7842,APRSWXNET , ,CW6207 Chico CA US , +C6208,3,3.000000 ,46.44344 ,-124.0532,APRSWXNET , ,CW6208 Long Beach WA US , +C6213,3,213.4000 ,38.44917 ,-82.63283,APRSWXNET , ,CW6213 Ashland KY US , +C6214,3,31.00000 ,38.68950 ,-76.63667,APRSWXNET , ,CW6214 Owings MD US , +C6224,3,3.000000 ,38.98633 ,-74.82200,APRSWXNET , ,CW6224 Wildwood NJ US , +C6225,3,30.00000 ,48.43586 ,-122.8879,APRSWXNET , ,CW6225 Lopez Village WA US , +C6229,3,313.0000 ,45.26367 ,-94.12467,APRSWXNET , ,CW6229 Annandale MN US , +C6232,3,548.6000 ,39.35133 ,-79.01333,APRSWXNET , ,CW6232 Keyser WV US , +C6235,3,1329.000 ,42.20278 ,13.52306 ,APRSWXNET , ,CW6235 Rocca di Mezzo IT , +C6238,3,-3.000000,52.56667 ,4.983330 ,APRSWXNET , ,CW6238 Beemster NL , +C6245,3,2709.000 ,31.04559 ,-115.4670,APRSWXNET , ,CW6245 Ensenada MX , +C6247,3,84.40000 ,49.16700 ,-122.8640,APRSWXNET , ,CW6247 Surrey CA , +C6253,3,7.600000 ,38.54167 ,-121.4437,APRSWXNET , ,CW6253 Sacramento CA US , +C6257,3,513.0000 ,38.18000 ,-79.07633,APRSWXNET , ,CW6257 Staunton VA US , +C6259,3,138.0000 ,47.69417 ,-122.3138,APRSWXNET , ,CW6259 Seattle WA US , +C6261,3,267.0000 ,30.55317 ,-97.73517,APRSWXNET , ,CW6261 Round Rock TX US , +C6262,3,213.4000 ,45.71250 ,-122.4293,APRSWXNET , ,CW6262 Hockinson WA US , +C6265,3,198.0000 ,42.46395 ,-83.13311,APRSWXNET , ,CW6265 Ferndale MI US , +C6266,3,2098.000 ,35.77974 ,-105.9276,APRSWXNET , ,CW6266 Tesuque NM US , +C6267,3,1380.700 ,46.39750 ,-112.7433,APRSWXNET , ,CW6267 Deer Lodge MT US , +C6268,3,324.0000 ,35.69967 ,-81.20950,APRSWXNET , ,CW6268 Conover NC US , +C6269,3,220.0000 ,43.02800 ,-76.10217,APRSWXNET , ,CW6269 Dewitt NY US , +C6277,3,141.0000 ,40.31767 ,-76.44500,APRSWXNET , ,CW6277 Lebanon PA US , +C6278,3,1308.000 ,46.44040 ,-109.8415,APRSWXNET , ,CW6278 Harlowton MT US , +C6282,3,5.200000 ,43.07300 ,-70.71633,APRSWXNET , ,CW6282 New Castle NH US , +C6284,3,2701.700 ,41.00000 ,-106.0333,APRSWXNET , ,CW6284 Mountain Home WY US , +C6285,3,128.0000 ,45.40000 ,8.916670 ,APRSWXNET , ,CW6285 Abbiategrasso IT , +C6286,3,370.3000 ,37.02250 ,-93.34850,APRSWXNET , ,CW6286 Nixa MO US , +C6287,3,129.5000 ,33.53264 ,-117.6397,APRSWXNET , ,CW6287 Ladera Ranch CA US , +C6288,3,45.70000 ,30.78033 ,-86.53550,APRSWXNET , ,CW6288 Crestview FL US , +C6289,3,568.0000 ,48.07883 ,11.96533 ,APRSWXNET , ,CW6289 Munich DE , +C6292,3,104.5000 ,61.57667 ,-149.5578,APRSWXNET , ,MLKA2 Wasilla AK US , +C6293,3,2274.400 ,42.98633 ,-110.0897,APRSWXNET , ,CW6293 Daniel WY US , +C6297,3,273.0000 ,44.28761 ,-88.51666,APRSWXNET , ,CW6297 Greenville WI US , +C6298,3,11.00000 ,41.26750 ,-70.11983,APRSWXNET , ,CW6298 Nantucket MA US , +C6299,3,586.0000 ,49.07467 ,19.63500 ,APRSWXNET , ,CW6299 Liptovsky Mikulas SK , +C6301,3,323.0000 ,43.59021 ,-88.37497,APRSWXNET , ,CW6301 Campbellsport WI US , +C6302,3,372.5000 ,46.60298 ,-120.5559,APRSWXNET , ,CW6302 Yakima WA US , +C6304,3,196.6000 ,42.62452 ,-73.64546,APRSWXNET , ,CW6304 East Greenbush NY US , +C6305,3,100.0000 ,-33.75033,151.1153 ,APRSWXNET , ,CW6305 South Turramurra AU , +C6307,3,18.00000 ,-46.29794,168.1641 ,APRSWXNET , ,CW6307 Riverton NZ , +C6310,3,184.1000 ,42.29794 ,-83.25397,APRSWXNET , ,CW6310 Dearborn MI US , +C6311,3,21.90000 ,33.23302 ,-79.96794,APRSWXNET , ,CW6311 Moncks Corner SC US , +C6316,3,225.0000 ,44.61033 ,-88.15000,APRSWXNET , ,CW6316 Green Bay WI US , +C6318,3,391.0000 ,45.35583 ,-121.9677,APRSWXNET , ,CW6318 Welches OR US , +C6323,3,161.5000 ,43.16917 ,-77.41217,APRSWXNET , ,CW6323 Penfield NY US , +C6327,3,4.000000 ,40.07583 ,-74.07933,APRSWXNET , ,CW6327 Point Pleasant NJ US , +C6328,3,15.00000 ,37.77333 ,-122.4178,APRSWXNET , ,CW6328 San Francisco CA US , +C6329,3,1560.000 ,46.79750 ,9.825330 ,APRSWXNET , ,CW6329 Davos CH , +C6333,3,966.0000 ,46.83333 ,-114.0295,APRSWXNET , ,CW6333 Missoula MT US , +C6337,3,99.90000 ,39.63667 ,-76.20167,APRSWXNET , ,CW6337 Darlington MD US , +C6338,3,207.0000 ,40.74171 ,-90.91304,APRSWXNET , ,CW6338 Stronghurst IL US , +C6339,3,250.0000 ,30.41700 ,-98.01500,APRSWXNET , ,CW6339 Lago Vista TX US , +C6341,3,174.9950 ,38.12200 ,-78.52250,APRSWXNET , ,CW6341 Charlottesville VA US , +C6342,3,128.0000 ,44.35749 ,-68.61364,APRSWXNET , ,CW6342 Sedgwick Ridge ME US , +C6343,3,1109.000 ,38.64500 ,34.82800 ,APRSWXNET , ,CW6343 Goreme TR , +C6344,3,32.00000 ,38.29728 ,-76.48228,APRSWXNET , ,CW6344 Lexington Park MD US , +C6345,3,2.200000 ,26.07467 ,-80.33283,APRSWXNET , ,CW6345 Davie FL US , +C6347,3,404.0000 ,49.33583 ,10.79222 ,APRSWXNET , ,CW6347 Heilsbronn DE , +C6350,3,183.5000 ,42.45867 ,-82.94383,APRSWXNET , ,CW6350 Eastpointe MI US , +C6351,3,339.9000 ,45.80667 ,-93.60917,APRSWXNET , ,CW6351 Milaca MN US , +C6353,3,225.0000 ,32.96122 ,-86.66924,APRSWXNET , ,CW6353 Union Grove AL US , +C6356,3,960.0000 ,39.36667 ,-101.3805,APRSWXNET , ,CW6356 Brewster KS US , +C6357,3,382.2000 ,43.56667 ,-90.86667,APRSWXNET , ,CW6357 Viroqua WI US , +C6359,3,580.0000 ,50.40422 ,-100.3972,APRSWXNET , ,CW6359 Strathclair MB CA , +C6361,3,341.0000 ,36.17469 ,-85.46340,APRSWXNET , ,CW6361 Cookeville TN US , +C6362,3,1555.000 ,34.60205 ,-112.3471,APRSWXNET , ,CW6362 Prescott Valley AZ US , +C6363,3,14.00000 ,60.38426 ,23.06889 ,APRSWXNET , ,CW6363 Salo FI , +C6364,3,580.6000 ,34.44467 ,-84.29667,APRSWXNET , ,CW6364 Jasper GA US , +C6369,3,80.00000 ,52.10200 ,0.789500 ,APRSWXNET , ,CW6369 Lavenham UK , +C6371,3,882.0000 ,-33.27250,149.7300 ,APRSWXNET , ,CW6371 Bathurst AU , +C6384,3,1262.000 ,39.62200 ,-102.5972,APRSWXNET , ,CW6384 Kirk CO US , +C6385,3,7.920000 ,27.85633 ,-82.73667,APRSWXNET , ,CW6385 Pinellas Park FL US , +C6387,3,174.0000 ,43.03467 ,-77.50952,APRSWXNET , ,CW6387 Pittsford NY US , +C6391,3,339.0000 ,49.94762 ,11.57330 ,APRSWXNET , ,CW6391 Bayreuth DE , +C6395,3,3.000000 ,36.15883 ,-76.32250,APRSWXNET , ,CW6395 Hertford NC US , +C6398,3,561.0000 ,48.14300 ,10.75283 ,APRSWXNET , ,CW6398 Augsburg DE , +C6399,3,624.0000 ,34.80194 ,-114.0930,APRSWXNET , ,CW6399 Yucca AZ US , +C6400,3,132.0000 ,64.85717 ,-147.8028,APRSWXNET , ,CW6400 Fairbanks AK US , +C6401,3,393.2000 ,41.41567 ,-80.12100,APRSWXNET , ,CW6401 Sandy Lake PA US , +C6402,3,501.0000 ,45.00600 ,4.775670 ,APRSWXNET , ,CW6402 Plats FR , +C6404,3,10.00000 ,39.16583 ,-75.60083,APRSWXNET , ,CW6404 Dover DE US , +C6406,3,119.5000 ,38.03967 ,-78.00617,APRSWXNET , ,CW6406 Louisa VA US , +C6407,3,515.0000 ,49.88283 ,12.34167 ,APRSWXNET , ,CW6407 Tirschenreuth DE , +C6410,3,12.00000 ,35.02633 ,-76.82700,APRSWXNET , ,CW6410 Arapahoe NC US , +C6411,3,227.0000 ,33.63310 ,-96.58229,APRSWXNET , ,CW6411 Sherman TX US , +C6412,3,721.0000 ,48.10451 ,-116.6134,APRSWXNET , ,CW6412 Cocolalla ID US , +C6413,3,238.7000 ,38.30926 ,-78.47625,APRSWXNET , ,CW6413 Stanardsville VA US , +C6416,3,160.0000 ,59.93500 ,10.46800 ,APRSWXNET , ,CW6416 Oslo NO , +C6417,3,54.00000 ,42.45850 ,-71.24117,APRSWXNET , ,CW6417 Lexington MA US , +C6419,3,125.0000 ,44.76667 ,-74.97300,APRSWXNET , ,CW6419 Norwood NY US , +C6421,3,80.00000 ,52.53300 ,13.42500 ,APRSWXNET , ,CW6421 Berlin DE , +C6422,3,800.0000 ,36.68867 ,-5.176670,APRSWXNET , ,CW6422 Ronda ES , +C6424,3,68.00000 ,59.26558 ,17.98748 ,APRSWXNET , ,CW6424 Stockholm SE , +C6425,3,2160.100 ,35.54975 ,-105.8881,APRSWXNET , ,CW6425 Santa Fe NM US , +C6426,3,188.0000 ,49.99707 ,8.767500 ,APRSWXNET , ,CW6426 Offenbach DE , +C6429,3,984.0000 ,39.39222 ,-101.1324,APRSWXNET , ,CW6429 Colby KS US , +C6433,3,779.0000 ,36.06667 ,-115.9703,APRSWXNET , ,CW6433 Pahrump NV US , +C6434,3,1481.000 ,40.40217 ,-104.6983,APRSWXNET , ,CW6434 Greeley CO US , +C6436,3,21.00000 ,28.34533 ,-81.22633,APRSWXNET , ,CW6436 Saint Cloud FL US , +C6438,3,39.00000 ,37.34900 ,-122.0263,APRSWXNET , ,CW6438 Sunnyvale CA US , +C6440,3,33.50000 ,41.31383 ,-72.79250,APRSWXNET , ,CW6440 Branford CT US , +C6445,3,13.00000 ,33.86812 ,-78.00808,APRSWXNET , ,CW6445 Bald Head Island NC US , +C6448,3,68.00000 ,58.23700 ,11.66583 ,APRSWXNET , ,CW6448 Henan SE , +C6451,3,29.60000 ,41.53046 ,-71.30022,APRSWXNET , ,CW6451 Middletown RI US , +C6453,3,72.00000 ,54.67117 ,-5.913830,APRSWXNET , ,CW6453 Newtownabbey UK , +C6455,3,12.00000 ,51.27833 ,1.285000 ,APRSWXNET , ,CW6455 Sandwich UK , +C6457,3,9.000000 ,55.01967 ,8.695830 ,APRSWXNET , ,CW6457 Hajer DK , +C6458,3,1.000000 ,19.71267 ,-79.83167,APRSWXNET , ,CW6458 Stake Bay KY , +C6459,3,955.0000 ,37.23551 ,-119.5197,APRSWXNET , ,CW6459 North Fork CA US , +C6460,3,3.000000 ,41.70167 ,-69.97200,APRSWXNET , ,CW6460 North Chatham MA US , +C6461,3,346.0000 ,48.84050 ,12.52867 ,APRSWXNET , ,CW6461 Straubing DE , +C6462,3,4.000000 ,31.97233 ,-81.16000,APRSWXNET , ,CW6462 Savannah GA US , +C6467,3,265.0000 ,42.01266 ,-88.68967,APRSWXNET , ,CW6467 Sycamore IL US , +C6468,3,710.0000 ,-35.01500,149.3105 ,APRSWXNET , ,CW6468 Gundaroo AU , +C6469,3,33.00000 ,29.14550 ,-82.39700,APRSWXNET , ,CW6469 Ocala FL US , +C6470,3,161.0000 ,32.64967 ,-97.01074,APRSWXNET , ,CW6470 Grand Prairie TX US , +C6471,3,95.00000 ,51.23386 ,-0.779970,APRSWXNET , ,CW6471 Farnham UK , +C6473,3,200.0000 ,40.60967 ,-89.27367,APRSWXNET , ,CW6473 Goodfield IL US , +C6477,3,6.000000 ,31.95778 ,-81.01096,APRSWXNET , ,CW6477 Savannah GA US , +C6478,3,174.0000 ,46.68653 ,-119.9199,APRSWXNET , ,CW6478 Desert Aire WA US , +C6479,3,1189.600 ,34.40217 ,-117.4592,APRSWXNET , ,CW6479 Phelan CA US , +C6480,3,102.1000 ,42.68883 ,-71.72333,APRSWXNET , ,CW6480 Townsend MA US , +C6483,3,47.00000 ,42.50949 ,-71.18464,APRSWXNET , ,CW6483 Burlington MA US , +C6488,3,2.000000 ,29.94200 ,-90.20867,APRSWXNET , ,CW6488 Harahan LA US , +C6490,3,371.8000 ,33.37200 ,-111.8117,APRSWXNET , ,CW6490 Gilbert AZ US , +C6492,3,1790.000 ,37.15207 ,-119.2984,APRSWXNET , ,CW6492 Shaver Lake CA US , +C6499,3,45.00000 ,34.47583 ,-120.2045,APRSWXNET , ,CW6499 Gaviota CA US , +C6500,3,52.00000 ,34.61810 ,-79.68385,APRSWXNET , ,CW6500 Bennettsville SC US , +C6502,3,3.000000 ,27.19844 ,-80.30022,APRSWXNET , ,CW6502 Palm City FL US , +C6504,3,213.0000 ,37.65417 ,-122.4728,APRSWXNET , ,CW6504 Pacifica CA US , +C6511,3,30.00000 ,27.72283 ,-82.24417,APRSWXNET , ,CW6511 Wimauma FL US , +C6513,3,268.0000 ,41.92083 ,-88.75867,APRSWXNET , ,CW6513 DeKalb IL US , +C6516,3,1756.000 ,39.62883 ,-105.1187,APRSWXNET , ,CW6516 Littleton CO US , +C6517,3,139.0000 ,38.62879 ,-77.80767,APRSWXNET , ,CW6517 Opal VA US , +C6519,3,6.000000 ,25.75467 ,-80.28083,APRSWXNET , ,CW6519 Coral Gables FL US , +C6521,3,1030.000 ,34.72872 ,-111.9700,APRSWXNET , ,CW6521 Cornville AZ US , +C6523,3,30.00000 ,21.33133 ,-158.0225,APRSWXNET , ,CW6523 Ewa Beach HI US , +C6527,3,483.7000 ,40.95217 ,-75.64417,APRSWXNET , ,CW6527 Jim Thorpe PA US , +C6529,3,633.2000 ,32.04400 ,-100.1075,APRSWXNET , ,CW6529 Wingate TX US , +C6531,3,1493.000 ,40.20833 ,-104.9367,APRSWXNET , ,CW6531 Mead CO US , +C6532,3,927.0000 ,32.18667 ,-110.7392,APRSWXNET , ,CW6532 Tucson AZ US , +C6533,3,4.000000 ,28.47450 ,-82.65200,APRSWXNET , ,CW6533 Hernando Beach FL US , +C6538,3,20.00000 ,43.96667 ,12.73333 ,APRSWXNET , ,CW6538 Cattolica IT , +C6540,3,1168.990 ,31.79217 ,-106.4372,APRSWXNET , ,CW6540 El Paso TX US , +C6551,3,111.0000 ,43.24981 ,-77.27934,APRSWXNET , ,CW6551 Ontario NY US , +C6552,3,1667.000 ,40.00467 ,-111.6817,APRSWXNET , ,CW6552 Elk Ridge UT US , +C6555,3,156.0000 ,38.50839 ,-85.77327,APRSWXNET , ,CW6555 Henryville IN US , +C6556,3,56.10000 ,48.70833 ,-122.5083,APRSWXNET , ,CW6556 Bellingham WA US , +C6558,3,2.000000 ,36.44033 ,-76.29233,APRSWXNET , ,CW6558 South Mills NC US , +C6561,3,193.5000 ,41.95083 ,-87.82667,APRSWXNET , ,CW6561 Chicago IL US , +C6562,3,181.4000 ,44.46785 ,-88.02160,APRSWXNET , ,CW6562 Green Bay WI US , +C6563,3,866.0000 ,39.24167 ,-94.44733,APRSWXNET , ,CW6563 Liberty MO US , +C6564,3,70.00000 ,51.75250 ,14.29467 ,APRSWXNET , ,CW6564 Cottbus DE , +C6565,3,237.7000 ,46.42083 ,-117.0300,APRSWXNET , ,CW6565 Lewiston ID US , +C6566,3,146.0000 ,41.53717 ,-74.33383,APRSWXNET , ,CW6566 Bullville NY US , +C6567,3,80.00000 ,36.45067 ,-89.92112,APRSWXNET , ,CW6567 Gideon MO US , +C6568,3,11.60000 ,43.31740 ,-124.3069,APRSWXNET , ,CW6568 Charleston OR US , +C6570,3,40.00000 ,-40.03333,175.2167 ,APRSWXNET , ,CW6570 Wanganui NZ , +C6571,3,140.0000 ,34.65867 ,-88.60833,APRSWXNET , ,CW6571 Booneville MS US , +C6575,3,231.6000 ,41.46217 ,-73.52883,APRSWXNET , ,CW6575 New Fairfield CT US , +C6576,3,23.00000 ,38.31832 ,-122.3094,APRSWXNET , ,CW6576 Napa CA US , +C6578,3,639.0000 ,36.01915 ,-114.9665,APRSWXNET , ,CW6578 Henderson NV US , +C6580,3,127.0000 ,41.78333 ,-71.40000,APRSWXNET , ,CW6580 Providence RI US , +C6581,3,40.00000 ,42.40783 ,-71.09633,APRSWXNET , ,CW6581 Medford MA US , +C6582,3,42.70000 ,28.11417 ,-82.01000,APRSWXNET , ,CW6582 Lakeland FL US , +C6585,3,244.0000 ,44.43333 ,-80.52083,APRSWXNET , ,CW6585 Kimberley ON CA , +C6588,3,2000.000 ,39.25400 ,-104.9910,APRSWXNET , ,CW6588 Larkspur CO US , +C6590,3,1112.500 ,38.04174 ,-120.2448,APRSWXNET , ,CW6590 Twain Harte CA US , +C6593,3,17.00000 ,39.91659 ,-75.02073,APRSWXNET , ,CW6593 Cherry Hill NJ US , +C6594,3,500.0000 ,51.37617 ,8.591670 ,APRSWXNET , ,CW6594 Brilon DE , +C6596,3,46.00000 ,44.27172 ,-68.56928,APRSWXNET , ,CW6596 Brooklin School ME US , +C6601,3,216.4000 ,34.41208 ,-118.7924,APRSWXNET , ,CW6601 Piru CA US , +C6605,3,50.00000 ,-27.98800,153.3933 ,APRSWXNET , ,CW6605 Surfers Paradise QLD AU , +C6609,3,97.00000 ,42.43183 ,-71.17158,APRSWXNET , ,CW6609 Arlington MA US , +C6610,3,1514.000 ,39.67600 ,-120.2430,APRSWXNET , ,CW6610 Loyalton CA US , +C6611,3,97.50000 ,40.19229 ,-75.12989,APRSWXNET , ,CW6611 Horsham PA US , +C6612,3,94.00000 ,42.36030 ,-71.08936,APRSWXNET , ,CW6612 Cambridge MA US , +C6614,3,694.0000 ,53.42533 ,-113.4650,APRSWXNET , ,CW6614 Edmonton AB CA , +C6617,3,83.00000 ,51.35217 ,-0.773830,APRSWXNET , ,CW6617 Sandhurst UK , +C6621,3,329.1000 ,33.04560 ,-112.0570,APRSWXNET , ,CW6621 Maricopa AZ US , +C6622,3,186.0000 ,33.08633 ,-96.59083,APRSWXNET , ,CW6622 Lucas TX US , +C6623,3,19.00000 ,37.36950 ,-122.1658,APRSWXNET , ,CW6623 Los Altos Hills CA US , +C6625,3,317.0000 ,35.96700 ,-84.02117,APRSWXNET , ,CW6625 Knoxville TN US , +C6626,3,259.0000 ,51.05545 ,13.29857 ,APRSWXNET , ,CW6626 Nossen DE , +C6627,3,15.70000 ,46.11500 ,-123.9314,APRSWXNET , ,CW6627 Warrenton OR US , +C6633,3,857.0000 ,43.23371 ,-100.8601,APRSWXNET , ,CW6633 Rosebud SD US , +C6635,3,334.4000 ,38.80000 ,-94.83167,APRSWXNET , ,CW6635 Olathe KS US , +C6636,3,41.50000 ,-5.170330,-80.63867,APRSWXNET , ,CW6636 Piura PE , +C6641,3,120.0000 ,37.95295 ,-87.39241,APRSWXNET , ,CW6641 Newburgh IN US , +C6644,3,144.0000 ,42.43286 ,-76.52314,APRSWXNET , ,CW6644 Ithaca NY US , +C6647,3,153.0000 ,32.94500 ,-96.47583,APRSWXNET , ,CW6647 Rockwall TX US , +C6650,3,1.000000 ,29.42917 ,-83.28550,APRSWXNET , ,CW6650 Bird Island FL US , +C6651,3,823.0000 ,35.52267 ,-82.47550,APRSWXNET , ,CW6651 Asheville NC US , +C6654,3,15.00000 ,28.04187 ,-16.54262,APRSWXNET , ,CW6654 Reyna Sofia ES , +C6658,3,36.00000 ,39.59285 ,-74.96550,APRSWXNET , ,CW6658 Newfield NJ US , +C6660,3,1827.000 ,35.37400 ,-106.0425,APRSWXNET , ,CW6660 Cerrillos NM US , +C6662,3,879.0000 ,38.92613 ,-120.8124,APRSWXNET , ,CW6662 Georgetown CA US , +C6663,3,246.0000 ,42.81383 ,-78.69117,APRSWXNET , ,CW6663 Elma NY US , +C6666,3,4.000000 ,13.36467 ,144.7695 ,APRSWXNET , ,CW6666 Talofofo GU US , +C6667,3,227.1000 ,40.30917 ,-88.15083,APRSWXNET , ,CW6667 Rantoul IL US , +C6668,3,120.4000 ,39.08820 ,-77.30630,APRSWXNET , ,CW6668 Darnestown1-SW MD US , +C6669,3,36.00000 ,39.48333 ,-75.98333,APRSWXNET , ,CW6669 Smyrna DE US , +C6670,3,72.00000 ,50.72610 ,4.664970 ,APRSWXNET , ,CW6670 Chaumont-Gistoux BE , +C6672,3,207.0000 ,35.31043 ,-80.66559,APRSWXNET , ,CW6672 Harrisburg NC US , +C6674,3,45.00000 ,45.61550 ,-61.35917,APRSWXNET , ,CW6674 Port Hawkesbury NS CA , +C6676,3,268.0000 ,41.93400 ,-88.77533,APRSWXNET , ,CW6676 DeKalb IL US , +C6679,3,283.5000 ,42.32250 ,-92.59250,APRSWXNET , ,CW6679 Reinbeck IA US , +C6681,3,132.0000 ,47.78367 ,-122.1222,APRSWXNET , ,CW6681 Woodinville WA US , +C6682,3,381.6000 ,33.42751 ,-111.8050,APRSWXNET , ,CW6682 Mesa AZ US , +C6684,3,60.00000 ,53.19583 ,-2.357830,APRSWXNET , ,CW6684 Holmes Chapel UK , +C6685,3,555.0000 ,50.50950 ,12.38417 ,APRSWXNET , ,CW6685 Auerbach DE , +C6688,3,185.6000 ,47.35839 ,-122.0545,APRSWXNET , ,CW6688 Maple Valley WA US , +C6689,3,4.000000 ,32.60050 ,-80.10917,APRSWXNET , ,CW6689 Kiawah Island SC US , +C6690,3,20.00000 ,62.46283 ,6.111670 ,APRSWXNET , ,CW6690 Alesund NO , +C6694,3,309.0000 ,50.37333 ,7.243670 ,APRSWXNET , ,CW6694 Mendig DE , +C6695,3,238.0000 ,39.18950 ,-84.36450,APRSWXNET , ,CW6695 Madeira OH US , +C6696,3,101.0000 ,29.76033 ,-95.73467,APRSWXNET , ,CW6696 Katy TX US , +C6697,3,641.0000 ,48.58283 ,-120.4009,APRSWXNET , ,CW6697 Winthrop WA US , +C6700,3,265.0000 ,47.02917 ,-122.2395,APRSWXNET , ,CW6700 Graham WA US , +C6701,3,1021.100 ,39.76750 ,-101.8022,APRSWXNET , ,CW6701 St Francis KS US , +C6706,3,310.9000 ,29.69206 ,-98.34281,APRSWXNET , ,CW6706 Natural Bridge Caverns TX US , +C6708,3,54.60000 ,38.60000 ,-122.1000,APRSWXNET , ,CW6708 Vacaville CA US , +C6714,3,68.00000 ,51.79867 ,12.24583 ,APRSWXNET , ,CW6714 Dessau DE , +C6718,3,263.0000 ,42.20500 ,-72.56883,APRSWXNET , ,CW6718 Chicopee MA US , +C6720,3,1684.000 ,42.97417 ,-108.4792,APRSWXNET , ,CW6720 Arapahoe WY US , +C6723,3,61.00000 ,37.79583 ,-122.2033,APRSWXNET , ,CW6723 Oakland CA US , +C6725,3,345.0000 ,43.51208 ,-80.51605,APRSWXNET , ,CW6725 Waterloo CA , +C6726,3,84.00000 ,51.06973 ,-1.339950,APRSWXNET , ,CW6726 Winchester UK , +C6727,3,267.0000 ,39.27417 ,-78.29633,APRSWXNET , ,CW6727 Gore VA US , +C6728,3,1760.000 ,34.83683 ,-119.0760,APRSWXNET , ,CW6728 Frazier Park CA US , +C6729,3,258.0000 ,43.65382 ,-73.80083,APRSWXNET , ,CW6729 Chestertown NY US , +C6730,3,2.000000 ,27.90783 ,-82.44800,APRSWXNET , ,CW6730 Tampa FL US , +C6734,3,322.0000 ,40.15017 ,-82.24167,APRSWXNET , ,CW6734 Reform OH US , +C6735,3,272.0000 ,41.60867 ,-93.66317,APRSWXNET , ,CW6735 Des Moines IA US , +C6738,3,278.0000 ,41.02860 ,-85.55580,APRSWXNET , ,CW6738 South Whitley IN US , +BTEA2,3,23.00000 ,61.53330 ,-148.9947,APRSWXNET , ,CW6739 Butte (Palmer) AK US , +C6741,3,216.0000 ,32.37375 ,-97.65098,APRSWXNET , ,CW6741 Granbury TX US , +C6744,3,504.4000 ,34.53117 ,-84.41767,APRSWXNET , ,CW6744 Jasper GA US , +C6746,3,252.0000 ,42.24510 ,-71.86622,APRSWXNET , ,CW6746 Cherry Valley MA US , +C6747,3,365.0000 ,40.78327 ,-77.75265,APRSWXNET , ,CW6747 Boalsburg PA US , +C6751,3,331.0000 ,45.97617 ,14.27750 ,APRSWXNET , ,CW6751 Vrhnika SL , +C6752,3,189.9000 ,41.30000 ,-83.10000,APRSWXNET , ,CW6752 Fremont OH US , +C6753,3,333.8000 ,33.55100 ,-117.2148,APRSWXNET , ,CW6753 Murrieta CA US , +C6754,3,870.0000 ,35.24800 ,-118.6109,APRSWXNET , ,CW6754 Keene CA US , +C6758,3,76.20000 ,46.30000 ,-122.9000,APRSWXNET , ,CW6758 Castle Rock WA US , +C6759,3,800.0000 ,37.15313 ,-3.567500,APRSWXNET , ,CW6759 Estacion-Rebites ES , +C6763,3,178.6000 ,42.98200 ,-77.41000,APRSWXNET , ,CW6763 Victor NY US , +C6764,3,32.00000 ,39.46370 ,-0.428300,APRSWXNET , ,CW6764 Xirivella ES , +C6767,3,0.000000 ,51.74667 ,4.096170 ,APRSWXNET , ,CW6767 Dirksland NL , +C6773,3,28.00000 ,33.80383 ,-118.3103,APRSWXNET , ,CW6773 Torrance CA US , +C6777,3,365.8000 ,40.77118 ,-77.87740,APRSWXNET , ,CW6777 The Landings PA US , +C6778,3,380.0000 ,40.78160 ,-77.89700,APRSWXNET , ,CW6778 AccuWeather HQ PA US , +C6780,3,65.00000 ,48.48550 ,-123.3205,APRSWXNET , ,CW6780 Victoria BC CA , +C6781,3,10.00000 ,51.49167 ,-0.178000,APRSWXNET , ,CW6781 London UK , +C6784,3,-1.800000,51.98567 ,4.341830 ,APRSWXNET , ,CW6784 Delft NL , +C6788,3,287.7000 ,41.69654 ,-93.03951,APRSWXNET , ,CW6788 Newton IA US , +C6790,3,34.00000 ,45.38517 ,-122.7367,APRSWXNET , ,CW6790 Rivergrove OR US , +C6791,3,197.0000 ,44.58750 ,-88.10133,APRSWXNET , ,CW6791 Green Bay WI US , +C6799,3,440.0000 ,48.42920 ,11.58350 ,APRSWXNET , ,CW6799 Allershausen DE , +C6803,3,300.0000 ,46.65297 ,-81.02640,APRSWXNET , ,CW6803 Sudbury ON CA , +C6804,3,202.0000 ,41.53350 ,-90.50250,APRSWXNET , ,CW6804 Bettendorf IA US , +C6806,3,236.0000 ,42.11717 ,-74.05633,APRSWXNET , ,CW6806 West Saugerties NY US , +C6808,3,874.8000 ,45.42717 ,-116.8350,APRSWXNET , ,CW6808 Imnaha OR US , +C6809,3,20.00000 ,51.13467 ,4.902170 ,APRSWXNET , ,CW6809 Westerlo BE , +C6811,3,288.6000 ,42.44200 ,-123.3090,APRSWXNET , ,CW6811 Grants Pass OR US , +C6812,3,56.00000 ,22.44483 ,114.1323 ,APRSWXNET , ,CW6812 Tai Po HK , +C6813,3,66.00000 ,42.41900 ,-71.67333,APRSWXNET , ,CW6813 Clinton MA US , +C6822,3,1548.400 ,42.76000 ,-104.4458,APRSWXNET , ,CW6822 Lusk WY US , +C6823,3,360.0000 ,35.15800 ,-97.33600,APRSWXNET , ,CW6823 Noble OK US , +C6825,3,225.0000 ,35.39467 ,-118.8803,APRSWXNET , ,CW6825 Bakersfield CA US , +C6829,3,106.0000 ,46.93610 ,-122.6140,APRSWXNET , ,CW6829 Yelm WA US , +C6831,3,405.0000 ,47.76211 ,-95.16234,APRSWXNET , ,CW6831 Debs MN US , +C6833,3,291.0000 ,44.70341 ,-93.39459,APRSWXNET , ,CW6833 Prior Lake MN US , +C6835,3,1.000000 ,54.93450 ,11.97550 ,APRSWXNET , ,CW6835 Stubbekobing DK , +C6839,3,125.0000 ,43.17123 ,-76.16227,APRSWXNET , ,CW6839 Clay NY US , +C6840,3,394.0000 ,61.10436 ,-149.7688,APRSWXNET , ,CW6840 Anchorage Hillside AK US , +C6842,3,1128.000 ,39.20101 ,-120.7966,APRSWXNET , ,CW6842 Alta CA US , +C6843,3,68.00000 ,33.49117 ,-82.04217,APRSWXNET , ,CW6843 Augusta GA US , +C6844,3,152.4000 ,47.75783 ,-122.1267,APRSWXNET , ,CW6844 Woodinville WA US , +C6845,3,286.5000 ,45.20000 ,-92.60000,APRSWXNET , ,CW6845 New Richmond WI US , +C6846,3,393.0000 ,37.15167 ,-93.27400,APRSWXNET , ,CW6846 Springfield MO US , +C6847,3,300.0000 ,32.74590 ,-97.87010,APRSWXNET , ,CW6847 Weatherford TX US , +C6848,3,501.4000 ,42.30033 ,-76.22800,APRSWXNET , ,CW6848 Berkshire NY US , +C6849,3,61.00000 ,40.34550 ,-74.63783,APRSWXNET , ,CW6849 Princeton NJ US , +C6851,3,5.000000 ,26.79613 ,-80.26690,APRSWXNET , ,CW6851 Loxahatchee FL US , +C6852,3,60.00000 ,40.39800 ,-74.21400,APRSWXNET , ,CW6852 Aberdeen NJ US , +C6854,3,106.0000 ,47.80900 ,-122.3134,APRSWXNET , ,CW6854 Lynnwood WA US , +C6855,3,200.0000 ,39.23000 ,-77.63000,APRSWXNET , ,CW6855 Lovettsville VA US , +C6856,3,155.0000 ,50.85667 ,6.023000 ,APRSWXNET , ,CW6856 Kerkrade NL , +C6860,3,30.30000 ,28.56033 ,-81.28417,APRSWXNET , ,CW6860 Orlando FL US , +C6862,3,138.0000 ,36.52200 ,-88.71717,APRSWXNET , ,CW6862 Fulton KY US , +C6864,3,146.0000 ,38.36533 ,-90.38000,APRSWXNET , ,CW6864 Imperial MO US , +C6867,3,616.0000 ,48.00633 ,10.26417 ,APRSWXNET , ,CW6867 Ungerhausen DE , +C6870,3,257.0000 ,41.27400 ,-82.23800,APRSWXNET , ,CW6870 Oberlin OH US , +C6871,3,116.0000 ,47.78050 ,-122.1668,APRSWXNET , ,CW6871 Woodinville WA US , +C6873,3,65.00000 ,45.64250 ,-122.6573,APRSWXNET , ,CW6873 Vancouver WA US , +C6875,3,1816.300 ,41.91061 ,-111.3872,APRSWXNET , ,CW6875 Garden City UT US , +C6876,3,214.0000 ,40.10900 ,-75.73467,APRSWXNET , ,CW6876 Glenmoore PA US , +C6877,3,50.00000 ,47.03767 ,-122.8862,APRSWXNET , ,CW6877 Olympia WA US , +C6878,3,8.000000 ,52.76583 ,-0.375500,APRSWXNET , ,CW6878 Bourne UK , +C6880,3,295.7000 ,41.00383 ,-74.63783,APRSWXNET , ,CW6880 Sparta NJ US , +C6881,3,110.0000 ,47.30967 ,-122.3602,APRSWXNET , ,CW6881 Federal Way WA US , +C6883,3,131.0000 ,48.67617 ,7.985830 ,APRSWXNET , ,CW6883 Achern DE , +C6884,3,108.0000 ,36.03178 ,-78.80247,APRSWXNET , ,CW6884 Durham NC US , +C6887,3,4.900000 ,38.59633 ,-121.5275,APRSWXNET , ,CW6887 West Sacramento CA US , +C6888,3,225.0000 ,39.70250 ,-76.54467,APRSWXNET , ,CW6888 White Hall MD US , +C6891,3,3.000000 ,51.10000 ,-4.000000,APRSWXNET , ,CW6891 Llanelli UK , +C6892,3,771.0000 ,33.82671 ,-111.9016,APRSWXNET , ,CW6892 Carefree AZ US , +C6893,3,721.0000 ,44.72033 ,-121.1733,APRSWXNET , ,CW6893 Madras OR US , +C6895,3,1329.000 ,38.81917 ,-102.3350,APRSWXNET , ,CW6895 Cheyenne Wells CO US , +C6898,3,1415.000 ,31.52950 ,-110.2803,APRSWXNET , ,CW6898 Sierra Vista AZ US , +C6899,3,62.00000 ,-45.11167,170.9380 ,APRSWXNET , ,CW6899 Oamaru NZ , +C6904,3,243.8000 ,44.21033 ,-72.79833,APRSWXNET , ,CW6904 S. Duxbury VT US , +C6906,3,1544.000 ,35.08190 ,-118.5279,APRSWXNET , ,CW6906 Tehachapi CA US , +C6908,3,10.00000 ,57.69117 ,-4.156670,APRSWXNET , ,CW6908 Invergordon UK , +C6911,3,207.9000 ,40.42433 ,-91.71583,APRSWXNET , ,CW6911 Kahoka MO US , +C6917,3,1576.000 ,38.93894 ,-119.6773,APRSWXNET , ,CW6917 Gardnerville NV US , +C6923,3,236.0000 ,29.46900 ,-98.34900,APRSWXNET , ,CW6923 San Antonio TX US , +C6924,3,15.20000 ,40.81500 ,-74.18417,APRSWXNET , ,CW6924 Nutley NJ US , +C6925,3,3.100000 ,26.59167 ,-81.95000,APRSWXNET , ,CW6925 Cape Coral FL US , +C6928,3,299.3000 ,45.04218 ,-93.47255,APRSWXNET , ,CW6928 Plymouth MN US , +C6929,3,438.9000 ,42.06966 ,-74.14934,APRSWXNET , ,CW6929 Shady NY US , +C6930,3,72.00000 ,45.45883 ,-122.7562,APRSWXNET , ,CW6930 Portland OR US , +C6933,3,0.000000 ,52.91436 ,5.442460 ,APRSWXNET , ,CW6933 Koudum NL , +C6936,3,228.0000 ,42.97593 ,-85.74205,APRSWXNET , ,CW6936 Grand Rapids MI US , +C6937,3,23.00000 ,37.93700 ,-122.5353,APRSWXNET , ,CW6937 Larkspur CA US , +C6938,3,814.0000 ,43.62717 ,-116.2175,APRSWXNET , ,CW6938 Boise ID US , +C6940,3,93.00000 ,38.47535 ,-122.6553,APRSWXNET , ,CW6940 Santa Rosa CA US , +C6942,3,280.4000 ,37.81083 ,-120.2992,APRSWXNET , ,CW6942 Moccasin CA US , +C6944,3,6.700000 ,38.17167 ,-122.1297,APRSWXNET , ,CW6944 Fairfield CA US , +C6947,3,225.7000 ,41.63783 ,-73.51200,APRSWXNET , ,CW6947 Sherman CT US , +C6949,3,155.0000 ,43.59317 ,-71.73683,APRSWXNET , ,CW6949 Bristol NH US , +C6951,3,266.0000 ,42.47267 ,-92.41505,APRSWXNET , ,CW6951 Waterloo IA US , +C6953,3,60.00000 ,58.65638 ,5.659450 ,APRSWXNET , ,CW6953 Narba Jaren NO , +C6958,3,195.0000 ,43.60333 ,-84.06950,APRSWXNET , ,CW6958 Auburn MI US , +C6959,3,350.0000 ,43.13202 ,-88.26734,APRSWXNET , ,CW6959 Sussex WI US , +C6963,3,176.0000 ,40.42033 ,-75.43633,APRSWXNET , ,CW6963 Quakertown PA US , +C6969,3,256.0000 ,39.53763 ,-81.68320,APRSWXNET , ,CW6969 Waterford OH US , +C6973,3,115.0000 ,35.12617 ,-89.67000,APRSWXNET , ,CW6973 Collierville TN US , +C6974,3,317.0000 ,38.88617 ,-94.74717,APRSWXNET , ,CW6974 Olathe KS US , +C6975,3,48.80000 ,46.82383 ,-123.0820,APRSWXNET , ,CW6975 Rochester WA US , +C6976,3,1082.000 ,44.03917 ,-121.1525,APRSWXNET , ,CW6976 Bend OR US , +C6980,3,13.70000 ,48.91517 ,-122.7397,APRSWXNET , ,CW6980 Birch Bay WA US , +C6981,3,1659.600 ,39.66221 ,-105.0930,APRSWXNET , ,CW6981 Lakewood CO US , +C6983,3,430.0000 ,43.27050 ,-94.95083,APRSWXNET , ,CW6983 Terril IA US , +C6986,3,100.0000 ,45.54750 ,10.17533 ,APRSWXNET , ,CW6986 Brescia IT , +C6987,3,110.0000 ,32.96167 ,-93.13000,APRSWXNET , ,CW6987 Haynesville LA US , +C6988,3,205.0000 ,46.53367 ,-119.2505,APRSWXNET , ,CW6988 Basin City WA US , +C6993,3,349.0000 ,38.82633 ,-0.595830,APRSWXNET , ,CW6993 Ontinyent ES , +C6995,3,11.40000 ,44.74326 ,-65.52014,APRSWXNET , ,CW6995 Annapolis Royal NS CA , +C6998,3,220.0000 ,44.85167 ,-74.28967,APRSWXNET , ,CW6998 Malone NY US , +C7000,3,486.0000 ,42.01340 ,20.96498 ,APRSWXNET , ,CW7000 Tetovo MK , +C7003,3,128.0000 ,42.13717 ,-71.53383,APRSWXNET , ,CW7003 Milford MA US , +C7004,3,1511.000 ,39.67388 ,-120.2473,APRSWXNET , ,CW7004 Loyalton CA US , +C7008,3,300.0000 ,43.58700 ,-93.14100,APRSWXNET , ,CW7008 Glenville MN US , +C7010,3,145.0000 ,50.66361 ,4.622630 ,APRSWXNET , ,CW7010 Louvain-la-neuve BE , +C7014,3,155.0000 ,38.44500 ,-90.41367,APRSWXNET , ,CW7014 Arnold MO US , +C7015,3,1637.000 ,39.69967 ,-104.9528,APRSWXNET , ,CW7015 Denver CO US , +C7016,3,25.60000 ,40.23633 ,-74.67850,APRSWXNET , ,CW7016 Mercerville NJ US , +C7021,3,80.00000 ,45.47483 ,-122.6160,APRSWXNET , ,CW7021 Portland OR US , +C7026,3,191.0000 ,41.97039 ,-87.78799,APRSWXNET , ,CW7026 Harwood Heights IL US , +C7027,3,44.00000 ,47.05594 ,-122.9176,APRSWXNET , ,CW7027 Olympia WA US , +C7030,3,192.0000 ,41.52417 ,-75.95133,APRSWXNET , ,CW7030 Tunkhannock PA US , +C7031,3,257.0000 ,39.24384 ,-83.02384,APRSWXNET , ,CW7031 Chillicothe OH US , +C7032,3,30.00000 ,40.32167 ,-74.62967,APRSWXNET , ,CW7032 Princeton NJ US , +C7037,3,378.0000 ,30.12187 ,-98.12660,APRSWXNET , ,CW7037 Dripping Springs TX US , +C7038,3,62.80000 ,46.99550 ,-122.8108,APRSWXNET , ,CW7038 Lacey WA US , +C7039,3,211.0000 ,33.98518 ,-117.5360,APRSWXNET , ,CW7039 Mira Loma CA US , +C7041,3,7.000000 ,36.89933 ,-76.16383,APRSWXNET , ,CW7041 Virginia Beach VA US , +C7042,3,5.000000 ,36.87533 ,-76.24450,APRSWXNET , ,CW7042 Norfolk VA US , +C7044,3,69.00000 ,32.41000 ,-82.06667,APRSWXNET , ,CW7044 Metter GA US , +C7045,3,10.00000 ,47.39233 ,-122.3897,APRSWXNET , ,CW7045 Vashon WA US , +C7047,3,335.3000 ,43.77010 ,-72.41740,APRSWXNET , ,CW7047 Sharon VT US , +C7048,3,55.50000 ,36.96330 ,-122.0516,APRSWXNET , ,CW7048 Santa Cruz CA US , +C7050,3,123.0000 ,46.29317 ,-119.3000,APRSWXNET , ,CW7050 Richland WA US , +C7051,3,65.00000 ,37.98301 ,-1.134700,APRSWXNET , ,CW7051 Murcia ES , +C7052,3,127.0000 ,37.11317 ,-122.1138,APRSWXNET , ,CW7052 Boulder Creek CA US , +C7053,3,224.0000 ,46.42417 ,-116.9958,APRSWXNET , ,CW7053 Lewiston ID US , +C7054,3,12.00000 ,40.86300 ,-72.52633,APRSWXNET , ,CW7054 Hampton Bays NY US , +C7056,3,15.00000 ,14.85100 ,120.2662 ,APRSWXNET , ,CW7056 Olongapo City PH , +C7057,3,80.00000 ,37.95833 ,23.71717 ,APRSWXNET , ,CW7057 Athens GR , +C7060,3,208.8000 ,33.38333 ,-117.2500,APRSWXNET , ,CW7060 Fallbrook CA US , +C7061,3,22.00000 ,50.88791 ,-1.263440,APRSWXNET , ,CW7061 Fareham UK , +C7062,3,18.00000 ,30.46353 ,-86.65502,APRSWXNET , ,CW7062 Fort Walton Beach FL US , +C7064,3,691.0000 ,34.73217 ,-83.40917,APRSWXNET , ,CW7064 Tallulah Falls GA US , +C7065,3,33.50000 ,30.60967 ,-88.20933,APRSWXNET , ,CW7065 Mobile AL US , +C7067,3,125.0000 ,42.37167 ,-72.70167,APRSWXNET , ,CW7067 Haydenville MA US , +C7068,3,1588.000 ,35.13062 ,-106.5863,APRSWXNET , ,CW7068 Albuquerque NM US , +C7069,3,190.5000 ,35.10617 ,-80.78950,APRSWXNET , ,CW7069 Charlotte NC US , +C7073,3,4.000000 ,30.82950 ,-95.08750,APRSWXNET , ,CW7073 Onlalaska TX US , +C7074,3,434.0000 ,41.00033 ,-96.92000,APRSWXNET , ,CW7074 Raymond NE US , +C7076,3,75.30000 ,44.64205 ,-123.0480,APRSWXNET , ,CW7076 Albany OR US , +C7077,3,222.0000 ,35.42753 ,-80.45174,APRSWXNET , ,CW7077 Mount Pleasant NC US , +C7078,3,398.0000 ,45.36472 ,-123.0079,APRSWXNET , ,CW7078 Newberg OR US , +C7079,3,5.000000 ,52.31250 ,0.124500 ,APRSWXNET , ,CW7079 Cottenham UK , +C7080,3,152.0000 ,46.27601 ,-119.1994,APRSWXNET , ,CW7080 Pasco WA US , +C7081,3,1272.800 ,43.82440 ,-121.4348,APRSWXNET , ,CW7081 Sunriver OR US , +C7082,3,30.00000 ,28.77150 ,-82.28267,APRSWXNET , ,CW7082 Floral City FL US , +C7084,3,66.80000 ,30.12740 ,-95.81372,APRSWXNET , ,CW7084 Hockley TX US , +C7085,3,11.00000 ,30.21750 ,-92.07805,APRSWXNET , ,CW7085 Lafayette LA US , +C7090,3,2575.600 ,39.60699 ,-105.3592,APRSWXNET , ,CW7090 Evergreen CO US , +C7091,3,22.90000 ,47.64447 ,-121.9106,APRSWXNET , ,CW7091 Carnation WA US , +C7092,3,175.0000 ,41.94963 ,-83.28006,APRSWXNET , ,CW7092 Newport MI US , +C7094,3,9.000000 ,29.20250 ,-95.52583,APRSWXNET , ,CW7094 Friendswood TX US , +C7102,3,100.0000 ,55.81833 ,-4.205330,APRSWXNET , ,CW7102 Glasgow SCT UK , +C7104,3,119.0000 ,37.94217 ,-87.89050,APRSWXNET , ,CW7104 Mount Vernon IN US , +C7108,3,342.0000 ,41.29908 ,-81.35705,APRSWXNET , ,CW7108 Aurora OH US , +C7109,3,124.1000 ,39.38450 ,-76.59700,APRSWXNET , ,CW7109 Towson MD US , +C7111,3,104.0000 ,42.17408 ,-71.52710,APRSWXNET , ,CW7111 Milford MA US , +C7113,3,211.0000 ,42.31550 ,-87.91800,APRSWXNET , ,CW7113 Green Oaks IL US , +C7114,3,106.7000 ,34.21500 ,-80.70417,APRSWXNET , ,CW7114 Lugoff SC US , +C7116,3,94.00000 ,33.98701 ,-81.19442,APRSWXNET , ,CW7116 Lexington SC US , +C7117,3,46.00000 ,53.66467 ,10.22383 ,APRSWXNET , ,CW7117 Ahrensburg DE , +C7118,3,735.0000 ,33.56083 ,-117.4662,APRSWXNET , ,CW7118 Verdugo Potrero CA US , +C7121,3,37.80000 ,28.69914 ,-81.57313,APRSWXNET , ,CW7121 Apopka FL US , +C7122,3,1559.100 ,40.01733 ,-105.0457,APRSWXNET , ,CW7122 Erie CO US , +C7123,3,6.400000 ,46.14967 ,-122.9497,APRSWXNET , ,CW7123 Longview WA US , +C7126,3,175.3000 ,47.46281 ,-122.0365,APRSWXNET , ,CW7126 Issaquah WA US , +C7128,3,150.0000 ,39.49833 ,-76.32033,APRSWXNET , ,CW7128 Bel Air MD US , +C7135,3,104.0000 ,43.26367 ,-78.21633,APRSWXNET , ,CW7135 Albion NY US , +C7137,3,43.00000 ,40.76617 ,-124.1645,APRSWXNET , ,CW7137 Eureka CA US , +C7138,3,130.0000 ,56.35250 ,12.85283 ,APRSWXNET , ,CW7138 Forslov SE , +C7142,3,40.00000 ,43.00683 ,-70.87050,APRSWXNET , ,CW7142 Stratham NH US , +C7143,3,2.000000 ,26.14583 ,-80.11283,APRSWXNET , ,CW7143 Fort Lauderdale FL US , +C7144,3,137.0000 ,41.51119 ,-73.60500,APRSWXNET , ,CW7144 Patterson NY US , +C7146,3,385.0000 ,38.41634 ,-78.94996,APRSWXNET , ,CW7146 Dayton VA US , +C7148,3,305.0000 ,44.32078 ,-92.44248,APRSWXNET , ,CW7148 Lake City MN US , +C7150,3,128.0000 ,51.05833 ,-0.085830,APRSWXNET , ,CW7150 Haywards Heath UK , +C7152,3,10.00000 ,30.18750 ,-85.70500,APRSWXNET , ,CW7152 Panama City FL US , +C7156,3,131.7000 ,37.06778 ,-121.6611,APRSWXNET , ,CW7156 Morgan Hill CA US , +C7157,3,253.0000 ,32.69627 ,-97.64979,APRSWXNET , ,CW7157 Aledo TX US , +C7158,3,187.0000 ,39.58633 ,-89.42250,APRSWXNET , ,CW7158 Kincaid IL US , +C7160,3,324.0000 ,46.63200 ,-120.6810,APRSWXNET , ,CW7160 Yakima WA US , +C7163,3,6.000000 ,27.82069 ,-82.74546,APRSWXNET , ,CW7163 St. Petersburg FL US , +C7164,3,229.0000 ,41.78967 ,-88.12417,APRSWXNET , ,CW7164 Naperville IL US , +C7168,3,56.00000 ,37.23167 ,-121.8100,APRSWXNET , ,CW7168 San Jose CA US , +C7171,3,75.00000 ,64.75783 ,21.02450 ,APRSWXNET , ,CW7171 Skellefte SE , +C7178,3,410.9000 ,37.71783 ,-97.46750,APRSWXNET , ,CW7178 Maize KS US , +C7179,3,146.9000 ,32.96550 ,-96.96633,APRSWXNET , ,CW7179 Coppell TX US , +C7180,3,4.000000 ,29.34460 ,-95.03030,APRSWXNET , ,CW7180 Seabrook TX US , +C7183,3,395.0000 ,35.80517 ,-81.78983,APRSWXNET , ,CW7183 Morganton NC US , +C7186,3,23.00000 ,40.13679 ,-74.65193,APRSWXNET , ,CW7186 Chesterfield NJ US , +C7188,3,1646.000 ,39.97750 ,-105.1407,APRSWXNET , ,CW7188 Louisville CO US , +C7189,3,390.0000 ,36.49007 ,-94.32881,APRSWXNET , ,CW7189 Bella Vista AR US , +C7191,3,365.0000 ,39.41700 ,-0.791670,APRSWXNET , ,CW7191 Buatol ES , +C7193,3,450.0000 ,42.28683 ,-75.96967,APRSWXNET , ,CW7193 Whitney Point NY US , +C7195,3,2640.000 ,38.11950 ,-105.5770,APRSWXNET , ,CW7195 Westcliffe CO US , +C7197,3,946.1000 ,47.59750 ,-116.7162,APRSWXNET , ,CW7197 Harrison ID US , +C7199,3,146.0000 ,39.41227 ,-77.54740,APRSWXNET , ,CW7199 Middletown MD US , +C7200,3,342.0000 ,46.35333 ,15.41033 ,APRSWXNET , ,CW7200 Slovenske Konjice Sl , +C7202,3,197.2000 ,43.39383 ,-75.98250,APRSWXNET , ,CW7202 West Amboy NY US , +C7204,3,22.00000 ,54.05533 ,10.02550 ,APRSWXNET , ,CW7204 Neumainster DE , +C7207,3,133.0000 ,52.00963 ,-1.402730,APRSWXNET , ,CW7207 Milcombe UK , +C7210,3,87.50000 ,40.73900 ,-74.34472,APRSWXNET , ,CW7210 Short Hills NJ US , +C7211,3,290.0000 ,47.77350 ,-121.9283,APRSWXNET , ,CW7211 Duvall WA US , +C7214,3,2359.000 ,40.23583 ,-106.8120,APRSWXNET , ,CW7214 Oak Creek CO US , +C7217,3,35.00000 ,39.47717 ,-0.377500,APRSWXNET , ,CW7217 Valencia ES , +C7218,3,704.0000 ,42.09933 ,1.846000 ,APRSWXNET , ,CW7218 Berga ES , +C7219,3,34.40000 ,38.51917 ,-76.60000,APRSWXNET , ,CW7219 Prince Frederick MD US , +C7220,3,27.00000 ,38.90744 ,1.413270 ,APRSWXNET , ,CW7220 Ibiza-ciudad ES , +C7221,3,94.50000 ,40.65583 ,-75.49283,APRSWXNET , ,CW7221 Whitehall PA US , +C7222,3,80.00000 ,41.55367 ,2.461330 ,APRSWXNET , ,CW7222 Mataro ES , +C7226,3,55.00000 ,50.98500 ,-2.357500,APRSWXNET , ,CW7226 Henstridge UK , +C7229,3,82.00000 ,52.25783 ,10.36333 ,APRSWXNET , ,CW7229 Vechelde DE , +C7232,3,18.00000 ,54.54883 ,9.336330 ,APRSWXNET , ,CW7232 Esperstoft DE , +C7233,3,20.00000 ,48.16750 ,-122.5238,APRSWXNET , ,CW7233 Camano Island WA US , +C7234,3,208.0000 ,39.40117 ,-77.12700,APRSWXNET , ,CW7234 Mount Airy MD US , +C7235,3,51.20000 ,33.94450 ,-80.39367,APRSWXNET , ,CW7235 Sumter SC US , +C7238,3,158.0000 ,47.48200 ,-121.7677,APRSWXNET , ,CW7238 North Bend WA US , +C7240,3,275.0000 ,40.56672 ,-84.17966,APRSWXNET , ,CW7240 Wapakoneta OH US , +C7241,3,365.8000 ,40.01500 ,-82.63783,APRSWXNET , ,CW7241 Pataskala OH US , +C7242,3,260.6000 ,34.80467 ,-86.76283,APRSWXNET , ,CW7242 Harvest AL US , +C7244,3,12.00000 ,33.81573 ,-78.92323,APRSWXNET , ,CW7244 Conway SC US , +C7245,3,41.10000 ,39.75117 ,-76.22617,APRSWXNET , ,CW7245 Peach Bottom PA US , +C7246,3,7.300000 ,26.85533 ,-80.14300,APRSWXNET , ,CW7246 Palm Beach Gardens FL US , +C7247,3,35.00000 ,45.53475 ,-73.36004,APRSWXNET , ,CW7247 St. Bruno Montarville PQ CA , +C7251,3,560.0000 ,48.12800 ,11.63217 ,APRSWXNET , ,CW7251 Munich DE , +C7252,3,98.80000 ,40.83800 ,-75.04700,APRSWXNET , ,CW7252 Belvidere NJ US , +C7253,3,160.0000 ,40.27167 ,-76.57300,APRSWXNET , ,CW7253 Campbelltown PA US , +C7256,3,90.00000 ,-37.90000,145.2000 ,APRSWXNET , ,CW7256 Melbourne AU , +C7257,3,110.0000 ,39.42800 ,-77.44367,APRSWXNET , ,CW7257 Frederick MD US , +C7259,3,22.00000 ,52.19117 ,-2.221330,APRSWXNET , ,CW7259 Worcester UK , +C7260,3,131.0000 ,34.88400 ,-120.4227,APRSWXNET , ,CW7260 Orcutt CA US , +C7261,3,1164.600 ,44.08133 ,-121.3442,APRSWXNET , ,CW7261 Bend OR US , +C7265,3,279.0000 ,42.22915 ,-85.76360,APRSWXNET , ,CW7265 Mattawan MI US , +C7268,3,208.0000 ,40.19282 ,-87.89211,APRSWXNET , ,CW7268 Hope IL US , +C7269,3,257.0000 ,39.22511 ,-86.41550,APRSWXNET , ,CW7269 Unionville IN US , +C7272,3,2417.000 ,39.60217 ,-105.3630,APRSWXNET , ,CW7272 Evergreen CO US , +C7273,3,1113.000 ,47.67750 ,-111.3092,APRSWXNET , ,CW7273 Great Falls MT US , +C7275,3,179.0000 ,47.35383 ,-122.0242,APRSWXNET , ,CW7275 Maple Valley WA US , +C7278,3,381.6000 ,42.79700 ,-76.10550,APRSWXNET , ,CW7278 Tully NY US , +C7279,3,190.0000 ,38.69950 ,-85.90383,APRSWXNET , ,CW7279 Scottsburg IN US , +C7281,3,280.7000 ,45.35615 ,-92.90782,APRSWXNET , ,CW7281 Chisago City MN US , +C7282,3,609.0000 ,36.03967 ,-115.0937,APRSWXNET , ,CW7282 Henderson NV US , +C7283,3,1167.000 ,44.81217 ,-106.9763,APRSWXNET , ,CW7283 Sheridan WY US , +C7284,3,195.0000 ,41.52941 ,-90.51035,APRSWXNET , ,CW7284 Bettendorf IA US , +C7286,3,8.000000 ,47.22892 ,-122.3766,APRSWXNET , ,CW7286 Tacoma WA US , +C7287,3,12.00000 ,28.47333 ,-80.77200,APRSWXNET , ,CW7287 Port St John FL US , +C7288,3,20.00000 ,55.59367 ,12.95550 ,APRSWXNET , ,CW7288 Malmo SE , +C7289,3,220.0000 ,60.58983 ,6.635000 ,APRSWXNET , ,CW7289 Granvin NO , +C7292,3,10.00000 ,34.26817 ,-77.80883,APRSWXNET , ,CW7292 Wilmington NC US , +C7293,3,54.90000 ,37.30467 ,-121.9817,APRSWXNET , ,CW7293 San Jose CA US , +C7294,3,319.0000 ,34.01633 ,-84.01133,APRSWXNET , ,CW7294 Lawrenceville GA US , +C7295,3,60.00000 ,45.85917 ,-122.8483,APRSWXNET , ,CW7295 St. Helens OR US , +C7296,3,146.0000 ,47.09252 ,-122.2705,APRSWXNET , ,CW7296 Puyallup WA US , +C7298,3,255.0000 ,42.23383 ,-88.60283,APRSWXNET , ,CW7298 Marengo IL US , +C7300,3,20.00000 ,50.68862 ,2.876600 ,APRSWXNET , ,CW7300 Armentires FR , +C7301,3,251.5000 ,39.84367 ,-76.59217,APRSWXNET , ,CW7301 Felton PA US , +C7308,3,375.0000 ,37.21533 ,-80.01083,APRSWXNET , ,CW7308 Roanoke VA US , +C7309,3,192.0000 ,41.88366 ,-80.81182,APRSWXNET , ,CW7309 Ashtabula OH US , +C7311,3,771.0000 ,39.17695 ,-120.9654,APRSWXNET , ,CW7311 Chicago Park CA US , +C7312,3,275.0000 ,45.04933 ,-92.81533,APRSWXNET , ,CW7312 Stillwater MN US , +C7313,3,390.0000 ,38.11633 ,23.86117 ,APRSWXNET , ,CW7313 Drosia of Attica GR , +C7314,3,86.00000 ,47.71917 ,-122.0945,APRSWXNET , ,CW7314 Woodinville WA US , +C7321,3,253.3000 ,40.43788 ,-86.11056,APRSWXNET , ,CW7321 Kokomo IN US , +C7324,3,186.0000 ,43.43500 ,-71.62010,APRSWXNET , ,CW7324 Northfield NH US , +C7325,3,30.00000 ,43.55000 ,10.31667 ,APRSWXNET , ,CW7325 Livorno IT , +C7327,3,91.00000 ,33.02700 ,-117.2708,APRSWXNET , ,CW7327 Cardiff By The Sea CA US , +C7329,3,742.0000 ,35.60877 ,-82.53991,APRSWXNET , ,CW7329 Asheville NC US , +C7334,3,285.0000 ,34.44500 ,-85.71600,APRSWXNET , ,CW7334 Fort Payne AL US , +C7336,3,20.00000 ,56.48667 ,8.560330 ,APRSWXNET , ,CW7336 Struer DK , +C7340,3,61.00000 ,46.78533 ,-123.1505,APRSWXNET , ,CW7340 Rochester WA US , +C7344,3,45.00000 ,39.01667 ,-76.68283,APRSWXNET , ,CW7344 Crofton MD US , +C7345,3,154.0000 ,55.70583 ,-2.463330,APRSWXNET , ,CW7345 Greenlaw SCT UK , +C7346,3,336.0000 ,35.91333 ,-97.35350,APRSWXNET , ,CW7346 Guthrie OK US , +C7347,3,475.0000 ,48.89283 ,10.19383 ,APRSWXNET , ,CW7347 Aalen DE , +C7350,3,2154.000 ,39.25944 ,-119.9696,APRSWXNET , ,CW7350 Incline Village NV US , +C7351,3,204.0000 ,29.08891 ,-110.9775,APRSWXNET , ,CW7351 Hermosillo MX , +C7352,3,10.00000 ,56.43320 ,12.88469 ,APRSWXNET , ,CW7352 Bastad SE , +C7354,3,45.00000 ,47.69667 ,-122.4005,APRSWXNET , ,CW7354 Seattle WA US , +C7355,3,14.00000 ,55.34384 ,11.28914 ,APRSWXNET , ,CW7355 Slagelse DK , +C7356,3,96.00000 ,44.59717 ,10.69167 ,APRSWXNET , ,CW7356 Reggio Emilia IT , +C7357,3,79.00000 ,47.17200 ,-122.6980,APRSWXNET , ,CW7357 Anderson Island WA US , +C7359,3,188.1000 ,46.67167 ,-85.98583,APRSWXNET , ,CW7359 Grand Marais MI US , +C7360,3,60.00000 ,45.64133 ,-122.6597,APRSWXNET , ,CW7360 Vancouver WA US , +C7362,3,410.0000 ,42.96633 ,1.607830 ,APRSWXNET , ,CW7362 Foix FR , +C7363,3,234.0000 ,48.08717 ,7.625830 ,APRSWXNET , ,CW7363 Oberrotweil DE , +C7364,3,275.0000 ,33.38550 ,-97.48833,APRSWXNET , ,CW7364 Greenwood TX US , +C7368,3,24.00000 ,-43.52633,172.5883 ,APRSWXNET , ,CW7368 Christchurch NZ , +C7369,3,177.0000 ,32.76687 ,-117.0162,APRSWXNET , ,CW7369 La Mesa CA US , +C7371,3,400.8000 ,35.26650 ,-97.70800,APRSWXNET , ,CW7371 Tuttle OK US , +C7374,3,432.0000 ,40.64867 ,-96.95067,APRSWXNET , ,CW7374 Crete NE US , +C7375,3,191.0000 ,38.54077 ,-78.22191,APRSWXNET , ,CW7375 Culpeper VA US , +C7381,3,3.000000 ,30.12200 ,-81.59633,APRSWXNET , ,CW7381 Fruit Cove FL US , +C7382,3,1140.000 ,40.30000 ,-80.20467,APRSWXNET , ,CW7382 Cecil PA US , +C7384,3,115.0000 ,38.60283 ,-77.81550,APRSWXNET , ,CW7384 Bealeton VA US , +C7385,3,224.0000 ,42.22550 ,-79.85417,APRSWXNET , ,CW7385 North East PA US , +C7386,3,82.00000 ,47.77700 ,-122.2092,APRSWXNET , ,CW7386 Bothell WA US , +C7387,3,236.0000 ,34.20000 ,-118.5683,APRSWXNET , ,CW7387 Winnetka CA US , +C7389,3,563.9000 ,34.45133 ,-118.3896,APRSWXNET , ,CW7389 Santa Clarita CA US , +C7395,3,242.0000 ,37.13776 ,-122.1487,APRSWXNET , ,CW7395 Boulder Creek CA US , +C7396,3,335.3000 ,41.12817 ,-81.85983,APRSWXNET , ,CW7396 Medina OH US , +C7400,3,106.7000 ,35.81133 ,-78.91500,APRSWXNET , ,CW7400 Cary NC US , +C7403,3,59.40000 ,41.60050 ,-72.87800,APRSWXNET , ,CW7403 Southington CT US , +C7406,3,67.00000 ,42.70567 ,-71.53700,APRSWXNET , ,CW7406 Nashua NH US , +C7407,3,152.0000 ,33.02385 ,-96.21906,APRSWXNET , ,CW7407 Caddo Mills TX US , +C7408,3,1325.900 ,33.66583 ,-116.6870,APRSWXNET , ,CW7408 Mountain Center CA US , +C7409,3,467.0000 ,40.65823 ,-97.21876,APRSWXNET , ,CW7409 Friend NE US , +C7410,3,1294.000 ,41.06767 ,-112.0407,APRSWXNET , ,CW7410 Syracuse UT US , +C7412,3,645.0000 ,35.41028 ,-83.36258,APRSWXNET , ,CW7412 Whitter NC US , +C7418,3,3.700000 ,37.42300 ,-122.1083,APRSWXNET , ,CW7418 Palo Alto CA US , +C7422,3,269.0000 ,43.30133 ,-88.13583,APRSWXNET , ,CW7422 Jackson WI US , +C7427,3,105.0000 ,-33.75200,151.0263 ,APRSWXNET , ,CW7427 West Pennant Hills AU , +C7428,3,224.0000 ,41.68891 ,-86.24561,APRSWXNET , ,CW7428 South Bend IN US , +C7430,3,64.60000 ,27.95783 ,-81.95226,APRSWXNET , ,CW7430 Lakeland FL US , +C7432,3,249.0000 ,44.79633 ,-93.34367,APRSWXNET , ,CW7432 Bloomington MN US , +C7433,3,430.0000 ,32.80700 ,-16.87633,APRSWXNET , ,CW7433 Santana PT , +C7436,3,503.0000 ,32.91633 ,-96.55367,APRSWXNET , ,CW7436 Rowlett TX US , +C7438,3,49.07280 ,42.83050 ,-71.11133,APRSWXNET , ,CW7438 Plaistow NH US , +C7439,3,29.00000 ,45.49800 ,-73.97283,APRSWXNET , ,CW7439 Pointe-Calumet PQ CA , +C7441,3,52.00000 ,37.00050 ,-121.9780,APRSWXNET , ,CW7441 Santa Cruz CA US , +C7443,3,325.0000 ,40.04967 ,-82.56533,APRSWXNET , ,CW7443 Granville OH US , +C7445,3,425.0000 ,33.73068 ,-117.4276,APRSWXNET , ,CW7445 Corona CA US , +VCGA2,3,88.00000 ,60.95117 ,-149.1278,APRSWXNET , ,CW7446 Girdwood AK US , +C7447,3,646.2000 ,35.47633 ,-82.96300,APRSWXNET , ,CW7447 Waynesville NC US , +C7448,3,149.4000 ,41.76750 ,-72.05333,APRSWXNET , ,CW7448 Hampton CT US , +C7450,3,333.0000 ,34.33700 ,-83.90867,APRSWXNET , ,CW7450 Gainesville GA US , +C7453,3,316.0000 ,38.91972 ,-77.66399,APRSWXNET , ,CW7453 Bull Run Mountain VA US , +C7454,3,137.0000 ,47.07200 ,-122.3447,APRSWXNET , ,CW7454 Spanaway WA US , +C7456,3,251.7000 ,33.13550 ,-84.42083,APRSWXNET , ,CW7456 Williamson GA US , +C7457,3,-4.000000,52.52867 ,5.449670 ,APRSWXNET , ,CW7457 Lelystad NL , +C7460,3,140.0000 ,43.97543 ,-71.11708,APRSWXNET , ,CW7460 Conway NH US , +C7461,3,304.8000 ,43.03117 ,-89.68417,APRSWXNET , ,CW7461 Mount Horeb WI US , +C7462,3,214.9000 ,42.25083 ,-86.16700,APRSWXNET , ,CW7462 Hartford MI US , +C7463,3,8.000000 ,54.03688 ,-2.911550,APRSWXNET , ,CW7463 Heysham UK , +C7465,3,30.00000 ,38.89558 ,22.47416 ,APRSWXNET , ,CW7465 Lamia GR , +C7467,3,55.00000 ,46.70583 ,-122.9488,APRSWXNET , ,CW7467 Centralia WA US , +C7468,3,40.00000 ,18.35148 ,-66.14247,APRSWXNET , ,CW7468 Bayamon PR US , +C7469,3,279.5000 ,35.60776 ,-84.46986,APRSWXNET , ,CW7469 Sweetwater TN US , +C7470,3,232.0000 ,39.78700 ,-76.94700,APRSWXNET , ,CW7470 Hanover PA US , +C7473,3,9.000000 ,30.48833 ,-86.45833,APRSWXNET , ,CW7473 Niceville FL US , +C7474,3,357.0000 ,46.59121 ,-120.6002,APRSWXNET , ,CW7474 Yakima WA US , +C7475,3,1.000000 ,38.86800 ,-76.35783,APRSWXNET , ,CW7475 Stevensville MD US , +C7477,3,2134.100 ,45.39917 ,-117.3892,APRSWXNET , ,CW7477 Lostine OR US , +C7481,3,45.00000 ,51.18717 ,6.511170 ,APRSWXNET , ,CW7481 Korschenbroich DE , +C7488,3,40.00000 ,51.31900 ,-0.540330,APRSWXNET , ,CW7488 Woking UK , +C7491,3,11.00000 ,27.67209 ,-97.38866,APRSWXNET , ,CW7491 Corpus Christi TX US , +C7492,3,431.3000 ,42.08050 ,-75.99167,APRSWXNET , ,CW7492 Vestal NY US , +C7494,3,63.00000 ,38.01633 ,23.70067 ,APRSWXNET , ,CW7494 Peristeri-Athens GR , +C7496,3,70.70000 ,33.73283 ,-118.3053,APRSWXNET , ,CW7496 San Pedro CA US , +C7498,3,73.00000 ,57.29033 ,-2.389670,APRSWXNET , ,CW7498 Inverurie UK , +C7500,3,133.0000 ,42.20770 ,-71.54782,APRSWXNET , ,CW7500 Hopkinton MA US , +C7501,3,834.0000 ,43.57383 ,-116.2792,APRSWXNET , ,CW7501 Boise ID US , +C7504,3,254.5000 ,34.65870 ,-85.02253,APRSWXNET , ,CW7504 Dalton GA US , +C7506,3,1110.000 ,45.46867 ,-117.4100,APRSWXNET , ,CW7506 Lostine OR US , +C7508,3,1173.000 ,45.42467 ,-117.2713,APRSWXNET , ,CW7508 Enterprise OR US , +C7509,3,189.9000 ,30.29854 ,-97.75759,APRSWXNET , ,CW7509 Austin TX US , +C7511,3,35.10000 ,29.86928 ,-95.62555,APRSWXNET , ,CW7511 Houston TX US , +C7513,3,83.20000 ,36.12013 ,-90.93986,APRSWXNET , ,CW7513 Walnut Ridge AR US , +C7516,3,733.0000 ,38.71954 ,-120.7600,APRSWXNET , ,CW7516 Placerville CA US , +C7518,3,291.0000 ,47.53583 ,-121.8788,APRSWXNET , ,CW7518 Snoqualmie WA US , +C7520,3,68.00000 ,-37.73882,145.0962 ,APRSWXNET , ,CW7520 Heidelberg AU , +C7522,3,2270.000 ,39.07018 ,-104.6021,APRSWXNET , ,CW7522 Black Forest CO US , +C7524,3,537.9000 ,42.20000 ,-122.7000,APRSWXNET , ,CW7524 Ashland OR US , +C7527,3,865.0000 ,45.23283 ,-120.1808,APRSWXNET , ,CW7527 Condon OR US , +C7529,3,292.0000 ,41.46167 ,-93.71083,APRSWXNET , ,CW7529 Norwalk IA US , +C7530,3,897.6000 ,32.20200 ,-110.7533,APRSWXNET , ,CW7530 Tucson AZ US , +C7533,3,24.10000 ,45.63950 ,-73.51300,APRSWXNET , ,CW7533 Montreal PQ CA , +C7535,3,99.70000 ,44.31117 ,-69.08883,APRSWXNET , ,CW7535 Lincolnville Hills ME US , +C7536,3,80.00000 ,40.80717 ,-74.42467,APRSWXNET , ,CW7536 Whippany NJ US , +C7538,3,320.0000 ,48.81633 ,9.104670 ,APRSWXNET , ,CW7538 Stuttgart DE , +C7539,3,75.00000 ,40.78285 ,-75.18270,APRSWXNET , ,CW7539 Martins Creek PA US , +C7540,3,147.5000 ,32.73717 ,-96.53983,APRSWXNET , ,CW7540 Mesquite TX US , +C7544,3,774.2000 ,43.57667 ,-116.5087,APRSWXNET , ,CW7544 Nampa ID US , +C7546,3,156.0000 ,48.68662 ,2.162700 ,APRSWXNET , ,CW7546 Bures-sur-Yvette FR , +C7549,3,85.00000 ,50.32867 ,-4.066670,APRSWXNET , ,CW7549 Plymouth UK , +C7550,3,50.00000 ,52.08333 ,1.133830 ,APRSWXNET , ,CW7550 Ipswich UK , +C7551,3,2.000000 ,40.94438 ,-72.58261,APRSWXNET , ,CW7551 Jamesport NY US , +C7553,3,95.00000 ,43.25275 ,-79.92277,APRSWXNET , ,CW7553 Hamilton ON CA , +C7554,3,1021.100 ,49.55000 ,-115.0295,APRSWXNET , ,CW7554 Fernie BC CA , +C7555,3,1511.000 ,40.86417 ,-111.8625,APRSWXNET , ,CW7555 Bountiful UT US , +C7556,3,2114.000 ,34.24700 ,-116.8000,APRSWXNET , ,CW7556 Big Bear City CA US , +C7557,3,113.0000 ,46.42671 ,0.876270 ,APRSWXNET , ,CW7557 Montmorillon FR , +C7558,3,218.0000 ,59.36102 ,5.837350 ,APRSWXNET , ,CW7558 Nedstrand NO , +C7559,3,246.9000 ,44.82291 ,-92.93746,APRSWXNET , ,CW7559 Cottage Grove MN US , +C7562,3,6.000000 ,38.44865 ,-121.4234,APRSWXNET , ,CW7562 Sacramento CA US , +C7563,3,73.50000 ,45.37217 ,-122.7638,APRSWXNET , ,CW7563 Tualatin OR US , +C7564,3,494.0000 ,49.66783 ,11.42583 ,APRSWXNET , ,CW7564 Eckenreuth DE , +C7565,3,30.00000 ,43.84667 ,-70.06867,APRSWXNET , ,CW7565 Freeport ME US , +C7566,3,804.7000 ,35.63946 ,-82.30878,APRSWXNET , ,CW7566 Montreat NC US , +C7567,3,552.0000 ,47.52700 ,9.253000 ,APRSWXNET , ,CW7567 St. Gallen CH , +C7570,3,235.9000 ,34.13333 ,-117.8642,APRSWXNET , ,CW7570 Glendora CA US , +C7574,3,407.8000 ,43.65750 ,-72.91800,APRSWXNET , ,CW7574 Rutland VT US , +C7575,3,163.0000 ,41.74700 ,-71.83633,APRSWXNET , ,CW7575 Sterling CT US , +C7580,3,4.000000 ,30.06344 ,-90.69874,APRSWXNET , ,CW7580 Gramercy LA US , +C7583,3,108.0000 ,41.06700 ,29.00200 ,APRSWXNET , ,CW7583 Istanbul TR , +C7584,3,897.0000 ,48.25904 ,-114.2592,APRSWXNET , ,CW7584 Kalispell MT US , +C7585,3,277.0000 ,40.18700 ,-85.47300,APRSWXNET , ,CW7585 Yorktown IN US , +C7587,3,266.7000 ,42.81750 ,-89.63533,APRSWXNET , ,CW7587 New Glarus WI US , +C7588,3,262.0000 ,42.10034 ,-89.83335,APRSWXNET , ,CW7588 Lanark IL US , +C7592,3,231.0000 ,44.18217 ,4.852000 ,APRSWXNET , ,CW7592 Orange FR , +C7593,3,77.00000 ,56.17920 ,-3.159690,APRSWXNET , ,CW7593 Glenrothes UK , +C7595,3,198.0000 ,46.68633 ,-67.99467,APRSWXNET , ,CW7595 Presque Isle ME US , +C7603,3,544.1000 ,33.26553 ,-116.9940,APRSWXNET , ,CW7603 Valley Center CA US , +C7604,3,47.00000 ,55.30783 ,11.80917 ,APRSWXNET , ,CW7604 Naestved DK , +C7607,3,113.0000 ,35.55282 ,-78.72451,APRSWXNET , ,CW7607 Willow Spring NC US , +C7608,3,300.0000 ,45.37783 ,14.50833 ,APRSWXNET , ,LDRG Rijeka - Grobnik HR , +C7609,3,228.0000 ,41.06900 ,-74.75783,APRSWXNET , ,CW7609 Newton NJ US , +C7610,3,2250.000 ,42.87949 ,-109.8542,APRSWXNET , ,CW7610 Pinedale WY US , +C7612,3,261.0000 ,42.10955 ,-80.04297,APRSWXNET , ,CW7612 Erie PA US , +C7613,3,25.00000 ,37.85200 ,-122.4800,APRSWXNET , ,CW7613 Sausalito CA US , +C7614,3,115.0000 ,52.79217 ,-2.136670,APRSWXNET , ,CW7614 Stafford UK , +C7615,3,213.0000 ,36.78013 ,-3.895100,APRSWXNET , ,CW7615 Frigiliana ES , +C7616,3,1.000000 ,27.76817 ,-82.76617,APRSWXNET , ,CW7616 Treasure Island FL US , +C7617,3,457.2000 ,36.12626 ,-82.89762,APRSWXNET , ,CW7617 Greeneville TN US , +C7618,3,125.0000 ,38.91572 ,-77.26771,APRSWXNET , ,CW7618 Vienna VA US , +C7619,3,365.0000 ,33.79452 ,-84.99432,APRSWXNET , ,CW7619 Temple GA US , +C7620,3,116.0000 ,34.98667 ,-89.81967,APRSWXNET , ,CW7620 Olive Branch MS US , +C7625,3,133.2000 ,33.82333 ,-94.70667,APRSWXNET , ,CW7625 Haworth OK US , +C7626,3,2439.000 ,39.59250 ,-105.3380,APRSWXNET , ,CW7626 Evergreen CO US , +C7627,3,1804.000 ,39.52731 ,-105.0060,APRSWXNET , ,CW7627 Highlands Ranch CO US , +C7628,3,440.4000 ,38.04300 ,-97.34400,APRSWXNET , ,CW7628 Newton KS US , +C7629,3,230.0000 ,45.85567 ,-123.1995,APRSWXNET , ,CW7629 Vernonia OR US , +C7633,3,96.90000 ,34.14617 ,-81.22767,APRSWXNET , ,CW7633 Irmo SC US , +C7637,3,155.0000 ,43.68383 ,-71.42167,APRSWXNET , ,CW7637 Center Harbor NH US , +C7639,3,743.0000 ,37.96617 ,-80.69533,APRSWXNET , ,CW7639 Rupert WV US , +C7640,3,160.0000 ,35.45384 ,-80.10408,APRSWXNET , ,CW7640 New London NC US , +C7644,3,77.00000 ,57.46217 ,-2.245000,APRSWXNET , ,CW7644 Methlick UK , +C7648,3,526.0000 ,48.16084 ,11.33360 ,APRSWXNET , ,CW7648 Munich DE , +C7649,3,91.10000 ,47.87133 ,-121.7962,APRSWXNET , ,CW7649 Sultan WA US , +C7657,3,175.0000 ,38.15617 ,-122.1283,APRSWXNET , ,CW7657 Fairfield CA US , +C7658,3,324.0000 ,31.12183 ,-97.89233,APRSWXNET , ,CW7658 Copperas Cove TX US , +C7660,3,66.00000 ,51.40711 ,-2.607210,APRSWXNET , ,CW7660 Bristol UK , +C7662,3,304.8000 ,41.55217 ,-95.93600,APRSWXNET , ,CW7662 Missouri Valley IA US , +C7664,3,88.00000 ,34.35186 ,-119.0818,APRSWXNET , ,CW7664 Santa Paula CA US , +C7666,3,85.00000 ,29.61300 ,-95.77783,APRSWXNET , ,CW7666 Richmond TX US , +C7667,3,277.4000 ,34.81030 ,-82.26080,APRSWXNET , ,CW7667 Simpsonville SC US , +C7668,3,45.60000 ,29.79243 ,-95.87858,APRSWXNET , ,CW7668 Katy TX US , +C7670,3,225.6000 ,39.86200 ,-82.92000,APRSWXNET , ,CW7670 Groveport OH US , +C7671,3,7.000000 ,36.76282 ,-76.55728,APRSWXNET , ,CW7671 Suffolk VA US , +C7672,3,1365.000 ,39.58985 ,-119.7133,APRSWXNET , ,CW7672 Reno NV US , +C7674,3,-2.000000,51.97950 ,4.341330 ,APRSWXNET , ,CW7674 Delft NL , +C7676,3,30.00000 ,49.92083 ,-6.300000,APRSWXNET , ,CW7676 Isles of Scilly UK , +C7677,3,263.6000 ,34.15533 ,-118.1280,APRSWXNET , ,CW7677 Pasadena CA US , +C7678,3,156.7000 ,43.21367 ,-71.59050,APRSWXNET , ,CW7678 Concord NH US , +C7680,3,237.3000 ,42.94354 ,-76.54035,APRSWXNET , ,CW7680 Auburn NY US , +C7682,3,167.0000 ,34.73333 ,-87.63333,APRSWXNET , ,CW7682 Muscle Shoals AL US , +C7683,3,1024.000 ,36.33254 ,-81.49933,APRSWXNET , ,CW7683 Fleetwood NC US , +C7686,3,1279.600 ,40.36683 ,-120.5667,APRSWXNET , ,CW7686 Susanville CA US , +C7691,3,104.0000 ,39.01767 ,-77.52117,APRSWXNET , ,CW7691 Ashburn VA US , +C7692,3,1082.000 ,42.31800 ,-93.09800,APRSWXNET , ,CW7692 Eldora IA US , +C7693,3,770.0000 ,47.50000 ,10.26667 ,APRSWXNET , ,CW7693 Sonthofen DE , +C7694,3,5.000000 ,60.00984 ,5.202110 ,APRSWXNET , ,CW7694 Bergen NO , +C7697,3,1767.800 ,39.66917 ,-105.1558,APRSWXNET , ,CW7697 Lakewood CO US , +C7703,3,364.0000 ,41.35898 ,-95.96817,APRSWXNET , ,CW7703 Omaha NE US , +C7706,3,1639.000 ,31.44192 ,-109.9127,APRSWXNET , ,CW7706 Bisbee AZ US , +C7707,3,715.0000 ,39.77500 ,-76.43750,APRSWXNET , ,CW7707 Fawn Grove PA US , +C7708,3,331.0000 ,48.91615 ,-95.39283,APRSWXNET , ,CW7708 Warroad MN US , +C7709,3,727.0000 ,37.05445 ,-80.36108,APRSWXNET , ,CW7709 Check VA US , +C7710,3,1290.000 ,45.87715 ,-111.4106,APRSWXNET , ,CW7710 Logan MT US , +C7713,3,100.0000 ,45.73200 ,-121.8145,APRSWXNET , ,CW7713 Carson WA US , +C7715,3,175.7000 ,34.55763 ,-86.89650,APRSWXNET , ,CW7715 Decatur AL US , +C7719,3,33.00000 ,38.40967 ,-76.50333,APRSWXNET , ,CW7719 Saint Leonard MD US , +C7720,3,2039.400 ,36.76083 ,-103.8342,APRSWXNET , ,CW7720 Des Moines NM US , +C7724,3,2089.000 ,32.62969 ,-105.6844,APRSWXNET , ,CW7724 Timberon NM US , +C7725,3,125.0000 ,41.54533 ,-73.03217,APRSWXNET , ,CW7725 Waterbury CT US , +C7731,3,51.00000 ,45.49667 ,11.44083 ,APRSWXNET , ,CW7731 Montecchio Maggiore IT , +C7732,3,47.00000 ,55.94417 ,12.33717 ,APRSWXNET , ,CW7732 Hilleroed DK , +C7736,3,130.0000 ,-41.15717,174.9877 ,APRSWXNET , ,CW7736 Lower Hutt NZ , +C7737,3,385.0000 ,43.13293 ,-93.37562,APRSWXNET , ,CW7737 Clear Lake IA US , +C7739,3,193.0000 ,41.09283 ,-88.41583,APRSWXNET , ,CW7739 Dwight IL US , +C7741,3,234.0000 ,39.13860 ,-78.19698,APRSWXNET , ,CW7741 Kernstown VA US , +C7743,3,44.00000 ,47.68467 ,-122.1685,APRSWXNET , ,CW7743 Kirkland WA US , +C7745,3,148.0000 ,45.33854 ,-122.5300,APRSWXNET , ,CW7745 Oregon City OR US , +C7747,3,46.00000 ,55.52250 ,13.21967 ,APRSWXNET , ,CW7747 Svedala SE , +C7748,3,22.00000 ,29.74267 ,-82.61666,APRSWXNET , ,CW7748 High Springs FL US , +C7758,3,106.7000 ,47.63283 ,-122.2113,APRSWXNET , ,CW7758 Clyde Hill WA US , +C7759,3,1555.000 ,46.12667 ,-112.9405,APRSWXNET , ,CW7759 Anaconda MT US , +C7760,3,217.0000 ,39.91356 ,-88.27675,APRSWXNET , ,CW7760 Pesotum IL US , +C7761,3,177.0000 ,35.10000 ,-80.85250,APRSWXNET , ,CW7761 Pineville NC US , +C7762,3,218.0000 ,41.33370 ,-87.78903,APRSWXNET , ,CW7762 Peotone IL US , +C7764,3,844.0000 ,42.58042 ,-0.536210,APRSWXNET , ,CW7764 Jaca ES , +C7765,3,189.0000 ,41.71217 ,-86.89951,APRSWXNET , ,CW7765 Michigan City IN US , +C7769,3,112.0000 ,49.24917 ,8.324170 ,APRSWXNET , ,CW7769 Germersheim DE , +C7771,3,326.0000 ,42.72633 ,-72.72583,APRSWXNET , ,CW7771 Colrain MA US , +C7772,3,76.00000 ,34.37434 ,-80.27123,APRSWXNET , ,CW7772 McBee SC US , +C7773,3,531.0000 ,52.72215 ,-108.4277,APRSWXNET , ,CW7773 Battleford SK CA , +C7777,3,206.0000 ,42.46435 ,-71.78455,APRSWXNET , ,CW7777 Sterling MA US , +C7779,3,1.000000 ,34.53642 ,-77.37338,APRSWXNET , ,CW7779 Sneads Ferry NC US , +C7780,3,1892.000 ,40.04932 ,-105.3117,APRSWXNET , ,CW7780 Boulder CO US , +C7781,3,8.000000 ,30.25420 ,-81.75424,APRSWXNET , ,CW7781 Jacksonville FL US , +C7782,3,146.0000 ,36.33869 ,-86.72268,APRSWXNET , ,CW7782 Middle Amana IA US , +C7783,3,297.0000 ,45.70468 ,9.036560 ,APRSWXNET , ,CW7783 Como IT , +C7784,3,19.80000 ,28.83796 ,-81.52758,APRSWXNET , ,CW7784 Sorrento FL US , +C7785,3,20.00000 ,40.80617 ,-73.94800,APRSWXNET , ,CW7785 New York NY US , +C7786,3,1775.000 ,33.36917 ,-111.4692,APRSWXNET , ,CW7786 Apache Junction AZ US , +C7791,3,347.0000 ,34.06717 ,-84.59783,APRSWXNET , ,CW7791 Acworth GA US , +C7793,3,274.0000 ,43.11200 ,-88.46400,APRSWXNET , ,CW7793 Oconomowoc WI US , +C7794,3,118.0000 ,37.29667 ,-121.7658,APRSWXNET , ,CW7794 San Jose CA US , +C7798,3,1034.200 ,31.66482 ,-111.1270,APRSWXNET , ,CW7798 Tubac AZ US , +C7800,3,1755.000 ,40.73700 ,-115.5300,APRSWXNET , ,CW7800 Spring Creek NV US , +C7802,3,1338.000 ,33.01733 ,-116.6115,APRSWXNET , ,CW7802 Julian CA US , +C7805,3,183.0000 ,41.71250 ,-81.36467,APRSWXNET , ,CW7805 Mentor-on Lake OH US , +C7807,3,1480.000 ,35.80700 ,-83.35367,APRSWXNET , ,CW7807 Sevierville TN US , +C7811,3,666.6000 ,48.09350 ,-116.7822,APRSWXNET , ,CW7811 Priest River ID US , +C7816,3,72.00000 ,48.79200 ,-123.7428,APRSWXNET , ,CW7816 Duncan BC CA , +C7823,3,25.00000 ,35.36811 ,-77.97112,APRSWXNET , ,CW7823 Goldsboro NC US , +C7824,3,2.500000 ,27.97983 ,-82.82650,APRSWXNET , ,CW7824 Clearwater Beach FL US , +C7825,3,257.0000 ,39.30867 ,-86.52133,APRSWXNET , ,CW7825 Bloomington IN US , +C7826,3,1006.000 ,32.04843 ,-110.6883,APRSWXNET , ,CW7826 Vail AZ US , +C7827,3,24.10000 ,27.06300 ,-81.45217,APRSWXNET , ,CW7827 Venus FL US , +C7832,3,178.0000 ,43.09651 ,-78.80146,APRSWXNET , ,CW7832 Pendleton NY US , +C7833,3,131.0000 ,38.32317 ,-85.64434,APRSWXNET , ,CW7833 Harrods Creek KY US , +C7840,3,308.0000 ,39.16217 ,-95.47683,APRSWXNET , ,CW7840 Ozawkie KS US , +C7841,3,5.800000 ,27.80450 ,-80.48200,APRSWXNET , ,CW7841 Sebastian FL US , +C7842,3,113.0000 ,49.01359 ,8.356200 ,APRSWXNET , ,CW7842 Karlsruhe DE , +C7844,3,867.0000 ,42.31750 ,-92.20383,APRSWXNET , ,CW7844 La Porte City IA US , +C7845,3,100.0000 ,56.27050 ,-2.697830,APRSWXNET , ,CW7845 Secret Bunker Sct UK , +C7846,3,140.0000 ,37.29167 ,-121.8063,APRSWXNET , ,CW7846 San Jose CA US , +C7847,3,106.7000 ,34.52550 ,-89.94133,APRSWXNET , ,CW7847 Como MS US , +C7848,3,535.0000 ,39.14649 ,-78.86297,APRSWXNET , ,CW7848 Moorefield WV US , +C7849,3,82.00000 ,58.40833 ,13.27633 ,APRSWXNET , ,CW7849 Lidkaping SE , +C7850,3,79.20000 ,40.11250 ,-75.55133,APRSWXNET , ,CW7850 Phoenixville PA US , +C7857,3,87.00000 ,33.48400 ,-117.7015,APRSWXNET , ,CW7857 Dana Point CA US , +C7858,3,42.00000 ,37.99167 ,-1.141170,APRSWXNET , ,CW7858 Murcia ES , +C7865,3,202.0000 ,40.37383 ,-89.54950,APRSWXNET , ,CW7865 Delavan IL US , +C7866,3,127.0000 ,29.79513 ,-96.85133,APRSWXNET , ,CW7866 Ammannsville TX US , +C7869,3,268.0000 ,30.20800 ,-97.87200,APRSWXNET , ,CW7869 Austin TX US , +C7872,3,310.0000 ,43.47800 ,12.25300 ,APRSWXNET , ,CW7872 Citta di Castello IT , +C7873,3,6.000000 ,39.24950 ,-75.59891,APRSWXNET , ,CW7873 Smyrna DE US , +C7874,3,291.0000 ,44.19167 ,-92.66117,APRSWXNET , ,CW7874 Pine Island MN US , +C7876,3,183.0000 ,43.01155 ,-82.42445,APRSWXNET , ,CW7876 Port Huron MI US , +C7877,3,66.00000 ,42.88476 ,-71.53598,APRSWXNET , ,CW7877 Merrimack NH US , +C7878,3,99.00000 ,64.24967 ,-20.66367,APRSWXNET , ,CW7878 Laugarvatn IS , +C7879,3,167.0000 ,38.69833 ,-90.48333,APRSWXNET , ,CW7879 St. Louis MO US , +C7881,3,243.8000 ,38.46550 ,-85.41200,APRSWXNET , ,CW7881 Lagrange KY US , +C7882,3,55.00000 ,47.89886 ,-122.5704,APRSWXNET , ,CW7882 Hansville WA US , +C7883,3,5.000000 ,27.32550 ,-80.29050,APRSWXNET , ,CW7883 Poer St Lucie FL US , +C7886,3,12.80000 ,29.55269 ,-95.22134,APRSWXNET , ,CW7886 Pearland TX US , +C7887,3,5.000000 ,25.30033 ,-80.27950,APRSWXNET , ,CW7887 Ocean Reef FL US , +C7888,3,185.0000 ,35.88785 ,-86.50484,APRSWXNET , ,CW7888 Murfreesboro TN US , +C7890,3,152.4000 ,35.64967 ,-88.12700,APRSWXNET , ,CW7890 Parsons TN US , +C7891,3,320.0000 ,43.39333 ,-72.70450,APRSWXNET , ,CW7891 Ludlow VT US , +C7892,3,87.00000 ,45.70417 ,-122.5455,APRSWXNET , ,CW7892 Brush Prairie WA US , +C7895,3,244.0000 ,44.38967 ,-71.17800,APRSWXNET , ,CW7895 Gorham NH US , +C7901,3,402.3000 ,44.02200 ,-122.8730,APRSWXNET , ,CW7901 Springfield OR US , +C7902,3,2022.000 ,43.68729 ,-110.7353,APRSWXNET , ,CW7902 Moose WY US , +C7904,3,201.0000 ,41.33717 ,-83.20067,APRSWXNET , ,CW7904 Fremont OH US , +C7907,3,1955.000 ,39.49117 ,-104.7825,APRSWXNET , ,CW7907 Parker CO US , +C7910,3,1460.000 ,40.42167 ,-111.8433,APRSWXNET , ,CW7910 Lehi UT US , +C7911,3,89.00000 ,43.87918 ,-70.63127,APRSWXNET , ,CW7911 Sebago ME US , +C7915,3,501.4000 ,41.09633 ,-75.56667,APRSWXNET , ,CW7915 Blakeslee PA US , +C7918,3,400.0000 ,33.26050 ,-111.7313,APRSWXNET , ,CW7918 Gilbert AZ US , +C7921,3,9.500000 ,34.35750 ,-77.64117,APRSWXNET , ,CW7921 New Topsail Beach NC US , +C7922,3,586.0000 ,30.01867 ,-99.07800,APRSWXNET , ,CW7922 Kerrville TX US , +C7923,3,1593.000 ,35.15100 ,-106.7190,APRSWXNET , ,CW7923 Albuquerque NM US , +C7925,3,339.9000 ,36.49383 ,-93.72250,APRSWXNET , ,CW7925 Holiday Island AR US , +C7927,3,280.1000 ,33.77200 ,-84.33617,APRSWXNET , ,CW7927 Atlanta GA US , +C7929,3,1105.800 ,34.10217 ,-116.3855,APRSWXNET , ,CW7929 Yucca Valley CA US , +C7930,3,97.50000 ,40.27333 ,-75.07033,APRSWXNET , ,CW7930 Furlong PA US , +C7931,3,460.2000 ,41.74383 ,-77.29250,APRSWXNET , ,CW7931 Wellsboro PA US , +C7933,3,266.1000 ,42.10467 ,-75.96417,APRSWXNET , ,CW7933 Johnson City NY US , +C7935,3,10.00000 ,38.67517 ,-9.164000,APRSWXNET , ,CW7935 Portugal PT , +C7936,3,280.4000 ,43.44987 ,-89.25765,APRSWXNET , ,CW7936 Rio WI US , +C7937,3,1435.000 ,42.09250 ,-111.8727,APRSWXNET , ,CW7937 Preston ID US , +C7939,3,195.0000 ,34.13355 ,-118.2380,APRSWXNET , ,CW7939 Glendale CA US , +C7940,3,178.0000 ,41.46950 ,-90.36050,APRSWXNET , ,CW7940 Colona IL US , +C7942,3,90.00000 ,37.93350 ,-1.150000,APRSWXNET , ,CW7942 Murcia ES , +C7944,3,1741.000 ,39.96946 ,-105.2574,APRSWXNET , ,CW7944 Boulder CO US , +C7945,3,106.7000 ,40.29300 ,-75.22050,APRSWXNET , ,CW7945 Chalfont PA US , +C7946,3,123.0000 ,42.97577 ,-73.78452,APRSWXNET , ,CW7946 Malta NY US , +C7947,3,116.0000 ,42.25145 ,-71.72336,APRSWXNET , ,CW7947 Shrewswbury MA US , +C7949,3,11.00000 ,57.03500 ,9.908830 ,APRSWXNET , ,CW7949 Aalborg DK , +C7951,3,39.60000 ,41.60633 ,-72.67033,APRSWXNET , ,CW7951 Cromwell CT US , +C7952,3,5.000000 ,51.92633 ,1.263830 ,APRSWXNET , ,CW7952 Harwich UK , +C7955,3,158.8000 ,35.12783 ,-79.39950,APRSWXNET , ,CW7955 Aberdeen NC US , +C7956,3,183.0000 ,41.49000 ,-82.08735,APRSWXNET , ,CW7956 Sheffield Lake OH US , +C7959,3,30.00000 ,58.24896 ,-6.176310,APRSWXNET , ,CW7959 Stornoway UK , +C7960,3,184.6000 ,32.85114 ,-97.10160,APRSWXNET , ,CW7960 Bedford TX US , +C7962,3,5.000000 ,49.20000 ,-55.10000,APRSWXNET , ,CW7962 Lewisporte NF CA , +C7963,3,358.0000 ,45.83333 ,9.666670 ,APRSWXNET , ,CW7963 Bergamo IT , +C7965,3,138.0000 ,31.78225 ,-95.68023,APRSWXNET , ,CW7965 Palestine TX US , +C7966,3,215.0000 ,47.12200 ,-88.56583,APRSWXNET , ,CW7966 Houghton MI US , +C7968,3,1481.000 ,10.35531 ,-66.96193,APRSWXNET , ,CW7968 Altos Mirandinos VE , +C7969,3,1714.000 ,10.39551 ,-66.98650,APRSWXNET , ,CW7969 Altos de Pipe VE , +C7972,3,31.00000 ,-40.35233,175.6352 ,APRSWXNET , ,CW7972 Palmerston North NZ , +C7973,3,60.00000 ,39.22000 ,9.118500 ,APRSWXNET , ,CW7973 Cagliari IT , +C7974,3,172.8000 ,37.89419 ,-89.81049,APRSWXNET , ,CW7974 Chester IL US , +C7975,3,159.0000 ,38.18550 ,-78.28883,APRSWXNET , ,CW7975 Barboursville VA US , +C7977,3,16.00000 ,39.61005 ,19.89299 ,APRSWXNET , ,CW7977 Corfu GR , +C7980,3,183.0000 ,42.25000 ,-83.18333,APRSWXNET , ,CW7980 Lincoln Park MI US , +C7981,3,120.0000 ,33.45000 ,-88.80000,APRSWXNET , ,CW7981 Mississippi State MS US , +C7986,3,7.000000 ,27.42319 ,-82.54912,APRSWXNET , ,CW7986 Sarasota FL US , +C7990,3,69.00000 ,-43.60083,172.3667 ,APRSWXNET , ,CW7990 Rolleston NZ , +C7992,3,14.00000 ,54.87217 ,8.916670 ,APRSWXNET , ,CW7992 Leck/Flensburg DE , +C7993,3,417.0000 ,43.06817 ,-96.13617,APRSWXNET , ,CW7993 Sioux Center IA US , +C7997,3,45.00000 ,53.72833 ,10.25333 ,APRSWXNET , ,CW7997 Bargteheide DE , +C7998,3,29.00000 ,51.40367 ,5.739670 ,APRSWXNET , ,CW7998 Asten NL , +C7999,3,76.00000 ,47.29495 ,-122.5557,APRSWXNET , ,CW7999 Gig Harbor WA US , +C8000,3,28.00000 ,53.75383 ,10.00000 ,APRSWXNET , ,CW8000 Henstedt-Ulzburg DE , +C8001,3,1535.000 ,35.23200 ,-106.6247,APRSWXNET , ,CW8001 Corrales NM US , +C8002,3,8.000000 ,54.31702 ,9.643250 ,APRSWXNET , ,CW8002 Rendsburg DE , +C8003,3,830.9000 ,33.27300 ,-111.1088,APRSWXNET , ,CW8003 Superior AZ US , +C8005,3,473.0000 ,41.48671 ,-97.60763,APRSWXNET , ,CW8005 Monroe NE US , +C8011,3,50.00000 ,51.16667 ,6.933330 ,APRSWXNET , ,CW8011 Hilden/Dusseldorf DE , +C8012,3,3.000000 ,53.95833 ,9.010330 ,APRSWXNET , ,CW8012 Marne DE , +C8014,3,3.000000 ,53.06384 ,7.336800 ,APRSWXNET , ,CW8014 Papenburg DE , +C8016,3,118.0000 ,37.97083 ,-87.36917,APRSWXNET , ,CW8016 Newburgh IN US , +C8017,3,13.00000 ,48.42633 ,-122.5897,APRSWXNET , ,CW8017 Anacortes WA US , +C8019,3,3.000000 ,26.93732 ,-80.11007,APRSWXNET , ,CW8019 Jupiter FL US , +C8020,3,783.6000 ,43.63700 ,-116.4263,APRSWXNET , ,CW8020 Meridian ID US , +C8022,3,233.0000 ,36.55474 ,-95.04659,APRSWXNET , ,CW8022 Ketchum OK US , +C8024,3,189.9000 ,34.53167 ,-96.21250,APRSWXNET , ,CW8024 Coalgate OK US , +C8026,3,118.0000 ,41.45283 ,-71.91950,APRSWXNET , ,CW8026 North Stonington CT US , +C8027,3,33.00000 ,45.50883 ,-73.73417,APRSWXNET , ,CW8027 Montreal PQ CA , +C8028,3,6.000000 ,38.05883 ,-122.5163,APRSWXNET , ,CW8028 Novato CA US , +C8029,3,210.0000 ,33.12917 ,-96.68883,APRSWXNET , ,CW8029 Allen TX US , +C8030,3,160.0000 ,22.28633 ,70.76917 ,APRSWXNET , ,CW8030 Rajkot IN , +C8035,3,60.00000 ,57.79750 ,12.63444 ,APRSWXNET , ,CW8035 Bollebygd SE , +C8040,3,50.00000 ,37.97883 ,23.66050 ,APRSWXNET , ,CW8040 Korydallos GR , +C8043,3,483.0000 ,40.16533 ,-7.175330,APRSWXNET , ,CW8043 Penamacor PL , +C8044,3,1657.000 ,39.69750 ,-104.8020,APRSWXNET , ,CW8044 Aurora CO US , +C8045,3,143.0000 ,50.35558 ,2.265030 ,APRSWXNET , ,CW8045 St Pol sur Ternoise FR , +C8046,3,396.0000 ,40.23417 ,-80.09583,APRSWXNET , ,CW8046 Eighty Four PA US , +C8048,3,205.0000 ,33.01750 ,-97.05800,APRSWXNET , ,CW8048 Flower Mound TX US , +C8051,3,196.9000 ,38.30917 ,-86.08000,APRSWXNET , ,CW8051 New Salisbury IN US , +C8052,3,136.0000 ,33.21484 ,-82.38234,APRSWXNET , ,CW8052 Wrens GA US , +C8053,3,123.0000 ,44.42428 ,8.976950 ,APRSWXNET , ,CW8053 Genova IT , +C8055,3,17.00000 ,28.31683 ,-80.74867,APRSWXNET , ,CW8055 Rockledge FL US , +C8059,3,90.00000 ,35.29033 ,-89.67050,APRSWXNET , ,CW8059 Arlington TN US , +C8063,3,146.0000 ,31.60549 ,-85.43163,APRSWXNET , ,CW8063 Clopton AL US , +C8064,3,1700.800 ,39.81633 ,-105.1830,APRSWXNET , ,CW8064 Westwood Links CO US , +C8065,3,275.8000 ,43.45083 ,-88.83133,APRSWXNET , ,CW8065 Beaver Dam WI US , +C8067,3,18.90000 ,28.67112 ,-82.13492,APRSWXNET , ,CW8067 Bushnell FL US , +C8068,3,887.0000 ,-33.38516,149.2608 ,APRSWXNET , ,CW8068 Orange AU , +C8069,3,247.0000 ,40.75783 ,-89.47667,APRSWXNET , ,CW8069 Germantown Hills IL US , +C8075,3,270.0000 ,43.19167 ,-85.51033,APRSWXNET , ,CW8075 Cedar Springs MI US , +C8076,3,90.00000 ,37.99746 ,-122.1263,APRSWXNET , ,CW8076 Martinez CA US , +C8077,3,258.2000 ,42.85383 ,-88.43550,APRSWXNET , ,CW8077 Eagleville WI US , +C8078,3,235.6000 ,38.75230 ,-91.96752,APRSWXNET , ,CW8078 Fulton MO US , +C8081,3,22.00000 ,40.56633 ,22.97450 ,APRSWXNET , ,CW8081 Thessaloniki GR , +C8082,3,243.0000 ,44.30183 ,-79.56103,APRSWXNET , ,CW8082 Alcona ON CA , +C8083,3,406.9000 ,34.61967 ,-98.69500,APRSWXNET , ,CW8083 Cache OK US , +C8084,3,177.1000 ,42.75217 ,-82.48500,APRSWXNET , ,CW8084 East China MI US , +C8087,3,54.00000 ,40.24570 ,-74.38836,APRSWXNET , ,CW8087 Englishtown NJ US , +C8088,3,367.0000 ,34.30545 ,-84.06420,APRSWXNET , ,CW8088 Cumming GA US , +C8090,3,45.00000 ,40.80533 ,-74.15550,APRSWXNET , ,CW8090 Belleville NJ US , +C8095,3,152.0000 ,32.72525 ,-97.17618,APRSWXNET , ,CW8095 Arlington TX US , +C8099,3,1234.500 ,34.16817 ,-103.3517,APRSWXNET , ,CW8099 Portales NM US , +C8100,3,279.0000 ,34.83877 ,-86.62460,APRSWXNET , ,CW8100 Huntsville AL US , +C8103,3,14.00000 ,29.62667 ,-84.94300,APRSWXNET , ,CW8103 Eastpointe FL US , +C8106,3,557.0000 ,48.55167 ,-117.9008,APRSWXNET , ,CW8106 Colville WA US , +C8109,3,13.00000 ,20.89722 ,-105.4115,APRSWXNET , ,CW8109 San Francisco NAY MX , +C8111,3,217.0000 ,41.85000 ,-87.96667,APRSWXNET , ,CW8111 Oak Brook IL US , +C8114,3,1850.000 ,38.82217 ,-104.7407,APRSWXNET , ,CW8114 Colorado Springs CO US , +C8116,3,538.0000 ,45.86670 ,8.529340 ,APRSWXNET , ,CW8116 Verbania IT , +C8120,3,245.0000 ,40.02983 ,-83.09917,APRSWXNET , ,CW8120 Columbus OH US , +C8122,3,288.0000 ,44.64612 ,-93.18331,APRSWXNET , ,CW8122 Farmington MN US , +C8124,3,339.0000 ,46.14917 ,14.38950 ,APRSWXNET , ,CW8124 Medvode SL , +C8125,3,1036.300 ,34.71200 ,-111.9092,APRSWXNET , ,CW8125 Cornville AZ US , +C8133,3,6.000000 ,28.99967 ,-80.87633,APRSWXNET , ,CW8133 New Smyrna Beach FL US , +C8135,3,84.00000 ,35.81300 ,-78.54950,APRSWXNET , ,CW8135 Raleigh NC US , +C8136,3,13.00000 ,-37.94967,145.0017 ,APRSWXNET , ,CW8136 Sandringham VC AU , +C8139,3,248.0000 ,41.30867 ,-90.19667,APRSWXNET , ,CW8139 Cambridge IL US , +C8140,3,540.0000 ,44.83467 ,-119.7913,APRSWXNET , ,CW8140 Spray OR US , +C8141,3,78.60000 ,43.07339 ,-71.15976,APRSWXNET , ,CW8141 Nottingham NH US , +C8144,3,132.0000 ,44.28633 ,4.562000 ,APRSWXNET , ,CW8144 Montelimar FR , +C8145,3,5.000000 ,36.46950 ,-4.990500,APRSWXNET , ,CW8145 San pedro Alcantara ES , +C8146,3,207.0000 ,51.80350 ,9.112670 ,APRSWXNET , ,CW8146 Nieheim DE , +C8150,3,126.0000 ,39.88450 ,-75.33467,APRSWXNET , ,CW8150 Milmont Park PA US , +C8151,3,11.00000 ,30.36339 ,-89.13262,APRSWXNET , ,CW8151 Long Beach MS US , +C8155,3,294.0000 ,50.68650 ,12.53450 ,APRSWXNET , ,CW8155 Reinsdorf DE , +C8156,3,164.0000 ,30.16167 ,-95.50583,APRSWXNET , ,CW8156 Spring TX US , +C8157,3,274.0000 ,33.89067 ,-84.07400,APRSWXNET , ,CW8157 Lawrenceville GA US , +C8158,3,207.0000 ,37.74883 ,-122.4650,APRSWXNET , ,CW8158 San Francisco CA US , +C8161,3,170.0000 ,38.07867 ,-78.49917,APRSWXNET , ,CW8161 Charlottesville VA US , +C8163,3,183.0000 ,41.90464 ,-87.67266,APRSWXNET , ,CW8163 Chicago IL US , +C8164,3,3.000000 ,30.39517 ,-81.48817,APRSWXNET , ,CW8164 Jacksonville FL US , +C8165,3,231.0000 ,39.24417 ,-81.54833,APRSWXNET , ,CW8165 Parkersburg WV US , +C8166,3,285.0000 ,47.56558 ,7.784840 ,APRSWXNET , ,CW8166 Rheinfelden DE , +C8167,3,1178.000 ,45.75767 ,15.32483 ,APRSWXNET , ,CW8167 Novo mesto SL , +C8169,3,7.000000 ,27.91034 ,-97.14971,APRSWXNET , ,CW8169 Aransas Pass TX US , +C8173,3,314.0000 ,33.86176 ,-84.02821,APRSWXNET , ,CW8173 Snellville GA US , +C8175,3,11.00000 ,47.15967 ,-122.8258,APRSWXNET , ,CW8175 Olympia WA US , +C8178,3,1063.800 ,44.45667 ,-118.7063,APRSWXNET , ,CW8178 Prairie City OR US , +C8190,3,140.0000 ,35.98204 ,-78.93331,APRSWXNET , ,CW8190 Durham NC US , +C8191,3,11.00000 ,52.00500 ,5.547000 ,APRSWXNET , ,CW8191 Veenendaal NL , +C8192,3,173.7000 ,42.71333 ,-73.61250,APRSWXNET , ,CW8192 Eagle Mills NY US , +C8193,3,280.0000 ,47.55777 ,-122.1286,APRSWXNET , ,CW8193 Bellevue WA US , +C8195,3,159.4000 ,29.78233 ,-97.83733,APRSWXNET , ,CW8195 Staples TX US , +C8198,3,367.0000 ,41.37201 ,-96.21089,APRSWXNET , ,CW8198 Bennington NE US , +C8199,3,199.0000 ,39.95526 ,-77.63360,APRSWXNET , ,CW8199 Chambersburg PA US , +C8201,3,69.00000 ,37.92817 ,-122.0000,APRSWXNET , ,CW8201 Walnut Creek CA US , +C8203,3,30.00000 ,-28.75596,32.06863 ,APRSWXNET , ,CW8203 Richards Bay ZA , +C8204,3,27.00000 ,28.94700 ,-81.96733,APRSWXNET , ,CW8204 The Villages FL US , +C8206,3,66.00000 ,30.44830 ,-97.60941,APRSWXNET , ,CW8206 Pflugerville TX US , +C8207,3,275.0000 ,43.92283 ,-89.93700,APRSWXNET , ,CW8207 Friendship WI US , +C8209,3,234.1000 ,44.32167 ,-81.52217,APRSWXNET , ,CW8209 Tiverton CA , +C8212,3,129.0000 ,40.04550 ,-75.36750,APRSWXNET , ,CW8212 Saint Davids PA US , +C8216,3,315.0000 ,-32.51567,138.3120 ,APRSWXNET , ,CW8216 Hammond AU , +C8217,3,663.0000 ,36.81403 ,-81.58821,APRSWXNET , ,CW8217 Marion VA US , +C8220,3,210.0000 ,45.03668 ,-69.48278,APRSWXNET , ,CW8220 Cambridge ME US , +C8221,3,3.000000 ,37.80894 ,-122.4210,APRSWXNET , ,CW8221 San Francisco CA US , +C8223,3,358.0000 ,45.58885 ,-95.90208,APRSWXNET , ,CW8223 Morris MN US , +C8225,3,116.0000 ,40.33133 ,-75.43883,APRSWXNET , ,CW8225 Sumneytown PA US , +C8226,3,24.00000 ,37.45083 ,-122.1867,APRSWXNET , ,CW8226 Menlo Park CA US , +C8228,3,6.000000 ,32.80133 ,-79.85583,APRSWXNET , ,CW8228 Mt. Pleasant SC US , +C8229,3,1525.000 ,40.64050 ,-105.1052,APRSWXNET , ,CW8229 Fort Collins CO US , +C8232,3,33.00000 ,44.73629 ,-63.65191,APRSWXNET , ,CW8232 Halifax NS CA , +C8233,3,224.0000 ,43.53128 ,6.499050 ,APRSWXNET , ,CW8233 Draguignan FR , +C8235,3,251.8000 ,40.39750 ,-80.09700,APRSWXNET , ,CW8235 Carnegie PA US , +C8240,3,202.0000 ,41.43023 ,-83.77647,APRSWXNET , ,CW8240 Tontogany OH US , +C8241,3,40.00000 ,40.74000 ,-74.17750,APRSWXNET , ,CW8241 Newark NJ US , +C8242,3,1052.000 ,42.27800 ,-122.7217,APRSWXNET , ,CW8242 Ashland OR US , +C8243,3,312.4000 ,36.06450 ,-85.55283,APRSWXNET , ,CW8243 Sparta TN US , +C8246,3,300.8000 ,44.89157 ,-92.93268,APRSWXNET , ,CW8246 Woodbury MN US , +C8247,3,250.0000 ,45.16917 ,-85.04017,APRSWXNET , ,CW8247 Boyne City MI US , +C8248,3,125.0000 ,45.73041 ,-121.5285,APRSWXNET , ,CW8248 Underwood WA US , +C8249,3,317.0000 ,37.77133 ,-90.57800,APRSWXNET , ,CW8249 Bismarck MO US , +C8250,3,7.000000 ,52.76689 ,6.368340 ,APRSWXNET , ,CW8250 Ruinen DE , +STGA2,3,82.00000 ,60.54903 ,-150.8179,APRSWXNET , ,CW8253 Sterling AK US , +C8255,3,248.0000 ,41.93653 ,-89.08299,APRSWXNET , ,CW8255 Rochelle IL US , +C8256,3,149.0000 ,31.75998 ,-94.66076,APRSWXNET , ,CW8256 Nacogdoches TX US , +C8259,3,10.90000 ,40.44606 ,-74.11790,APRSWXNET , ,CW8259 Keansburg NJ US , +C8261,3,148.0000 ,38.61077 ,-89.64775,APRSWXNET , ,CW8261 Trenton IL US , +C8262,3,333.7000 ,-38.20275,175.8645 ,APRSWXNET , ,CW8262 Tokoroa NZ , +C8263,3,1638.000 ,38.42100 ,-104.9906,APRSWXNET , ,CW8263 Penrose CO US , +C8264,3,241.0000 ,40.32217 ,-79.81167,APRSWXNET , ,CW8264 McKeesport PA US , +C8265,3,258.0000 ,32.98908 ,-97.42401,APRSWXNET , ,CW8265 Haslet TX US , +C8266,3,199.0000 ,34.91383 ,-87.86000,APRSWXNET , ,CW8266 Florence AL US , +C8267,3,162.0000 ,32.91867 ,-96.57883,APRSWXNET , ,CW8267 Rowlett TX US , +C8271,3,54.30000 ,40.18383 ,-74.24450,APRSWXNET , ,CW8271 Howell NJ US , +C8273,3,222.5000 ,38.26583 ,-85.54783,APRSWXNET , ,CW8273 Anchorage KY US , +C8275,3,222.5000 ,38.26425 ,-78.55154,APRSWXNET , ,CW8275 St. George VA US , +C8277,3,408.0000 ,37.24165 ,-93.29715,APRSWXNET , ,CW8277 Springfield MO US , +C8278,3,570.0000 ,29.83533 ,-100.4083,APRSWXNET , ,CW8278 Hashknife Ranch TX US , +C8281,3,211.0000 ,36.22750 ,-78.91417,APRSWXNET , ,CW8281 Rougemont NC US , +C8283,3,246.0000 ,41.43933 ,-93.05217,APRSWXNET , ,CW8283 Otley IA US , +C8284,3,140.2000 ,34.13150 ,-118.0187,APRSWXNET , ,CW8284 Monrovia CA US , +C8285,3,804.7000 ,35.54583 ,-82.34283,APRSWXNET , ,CW8285 Fairview NC US , +C8286,3,1981.200 ,45.63033 ,-110.8337,APRSWXNET , ,CW8286 Bozeman MT US , +C8287,3,53.00000 ,31.69667 ,34.70538 ,APRSWXNET , ,CW8287 Kiryat Malakhi IL , +C8288,3,1227.400 ,35.13083 ,-118.4938,APRSWXNET , ,CW8288 Tehachapi CA US , +C8289,3,1923.000 ,43.54300 ,-110.8188,APRSWXNET , ,CW8289 Wilson WY US , +C8291,3,2.100000 ,28.07750 ,-80.56550,APRSWXNET , ,CW8291 Melbourne Beach FL US , +C8292,3,97.80000 ,45.36550 ,-75.73833,APRSWXNET , ,CW8292 Ottawa ON CA , +C8296,3,193.2000 ,33.29200 ,-96.21133,APRSWXNET , ,CW8296 Celeste TX US , +C8297,3,185.0000 ,33.73898 ,-82.74867,APRSWXNET , ,CW8297 Washington GA US , +C8298,3,222.0000 ,43.63186 ,-84.64763,APRSWXNET , ,CW8298 Mount Pleasant MI US , +C8302,3,10.00000 ,29.91133 ,-84.56617,APRSWXNET , ,CW8302 Carrabelle FL US , +C8306,3,231.7000 ,49.79100 ,-97.14600,APRSWXNET , ,CW8306 Winnipeg MB CA , +C8307,3,260.9000 ,42.50164 ,-88.32275,APRSWXNET , ,CW8307 Genoa City WI US , +C8310,3,12.00000 ,40.08688 ,-74.18094,APRSWXNET , ,CW8310 Lakewood NJ US , +C8314,3,371.0000 ,50.09583 ,13.65533 ,APRSWXNET , ,CW8314 Rakovnak-Senomaty CZ , +C8316,3,7.000000 ,48.13577 ,-122.7605,APRSWXNET , ,CW8316 Port Townsend WA US , +C8317,3,203.0000 ,36.10756 ,-79.27477,APRSWXNET , ,CW8317 Mebane NC US , +C8319,3,900.0000 ,-22.40000,-45.50000,APRSWXNET , ,CW8319 Minas Gerais BR , +C8320,3,25.00000 ,56.05833 ,14.58333 ,APRSWXNET , ,CW8320 Solvesborg SE , +C8322,3,1222.200 ,35.08300 ,-83.58833,APRSWXNET , ,CW8322 Rainbow Springs NC US , +C8323,3,45.00000 ,32.39500 ,34.91200 ,APRSWXNET , ,CW8323 Hefer Valley IL , +C8324,3,246.0000 ,30.38950 ,-97.99300,APRSWXNET , ,CW8324 Point Venture TX US , +C8326,3,275.5000 ,37.35383 ,-79.52383,APRSWXNET , ,CW8326 Bedford VA US , +C8327,3,1390.000 ,31.71783 ,-110.0678,APRSWXNET , ,CW8327 Tombstone AZ US , +C8328,3,1721.500 ,35.12550 ,-106.5213,APRSWXNET , ,CW8328 Albuquerque NM US , +C8330,3,302.0000 ,35.66500 ,-85.79283,APRSWXNET , ,CW8330 McMinnville TN US , +C8332,3,210.6000 ,41.46833 ,-81.64528,APRSWXNET , ,CW8332 Cleveland OH US , +C8334,3,805.0000 ,32.21816 ,-111.0406,APRSWXNET , ,CW8334 Tucson AZ US , +C8336,3,339.0000 ,51.23333 ,7.620000 ,APRSWXNET , ,CW8336 Dortmund DE , +C8343,3,232.9000 ,36.00694 ,-80.37944,APRSWXNET , ,CW8343 Clemmons NC US , +C8344,3,187.0000 ,37.89133 ,-122.2082,APRSWXNET , ,CW8344 Orinda CA US , +C8351,3,190.0000 ,41.51550 ,-82.01283,APRSWXNET , ,CW8351 Avon Lake OH US , +C8353,3,735.0000 ,40.98250 ,-122.6945,APRSWXNET , ,CW8353 Trinity Center CA US , +C8356,3,164.0000 ,39.05005 ,-84.91809,APRSWXNET , ,CW8356 Aurora IN US , +C8357,3,277.0000 ,37.84833 ,-94.34967,APRSWXNET , ,CW8357 Nevada MO US , +C8358,3,92.00000 ,37.38283 ,-77.66250,APRSWXNET , ,CW8358 Chesterfield VA US , +C8359,3,167.0000 ,54.55216 ,-0.988870,APRSWXNET , ,CW8359 Skelton UK , +C8360,3,5.000000 ,40.97291 ,-72.53667,APRSWXNET , ,CW8360 Mattituck NY US , +C8361,3,173.0000 ,33.02150 ,-97.03900,APRSWXNET , ,CW8361 Flower Mound TX US , +C8362,3,7.000000 ,30.22678 ,-85.63933,APRSWXNET , ,CW8362 Lynn Haven FL US , +C8363,3,6.000000 ,33.62093 ,-78.96448,APRSWXNET , ,CW8363 Surfside Beach SC US , +C8364,3,13.00000 ,51.45755 ,-3.181760,APRSWXNET , ,CW8364 Cardiff UK , +C8369,3,64.00000 ,30.38159 ,-95.55521,APRSWXNET , ,CW8369 Willis TX US , +C8370,3,364.0000 ,35.59367 ,-97.55900,APRSWXNET , ,CW8370 Oklahoma City OK US , +C8371,3,40.00000 ,42.78667 ,-71.45217,APRSWXNET , ,CW8371 Hudson NH US , +C8373,3,79.20000 ,35.55700 ,-121.0812,APRSWXNET , ,CW8373 Cambria CA US , +C8374,3,30.00000 ,53.30000 ,-3.000000,APRSWXNET , ,CW8374 Liverpool UK , +C8375,3,90.00000 ,52.62000 ,-0.615000,APRSWXNET , ,CW8375 Oakham UK , +C8378,3,838.0000 ,46.25883 ,7.367170 ,APRSWXNET , ,CW8378 Saviese CH , +C8379,3,45.00000 ,27.95042 ,-81.89466,APRSWXNET , ,CW8379 Lakeland FL US , +C8380,3,6.100000 ,29.94917 ,-90.14883,APRSWXNET , ,CW8380 Westwego LA US , +C8383,3,433.1000 ,42.19543 ,-77.25210,APRSWXNET , ,CW8383 Campbell NY US , +C8386,3,1349.000 ,43.64200 ,-108.2263,APRSWXNET , ,CW8386 Thermopolis WY US , +C8387,3,80.00000 ,31.21572 ,-85.43273,APRSWXNET , ,CW8387 Dothan AL US , +C8389,3,204.0000 ,40.24717 ,-124.1197,APRSWXNET , ,CW8389 Honeydew CA US , +C8390,3,170.0000 ,40.32417 ,-122.4280,APRSWXNET , ,CW8390 Cottonwood CA US , +C8391,3,42.00000 ,51.36833 ,0.622830 ,APRSWXNET , ,CW8391 Rainham UK , +C8392,3,0.000000 ,51.74033 ,4.548670 ,APRSWXNET , ,CW8392 Strijen NL , +C8395,3,16.00000 ,55.76800 ,12.19800 ,APRSWXNET , ,CW8395 Stenlose DK , +C8398,3,20.00000 ,59.37217 ,18.65467 ,APRSWXNET , ,CW8398 Stockholm SE , +C8399,3,777.2000 ,37.79000 ,-100.0167,APRSWXNET , ,CW8399 Dodge City KS US , +C8400,3,12.00000 ,52.35383 ,6.458000 ,APRSWXNET , ,CW8400 Almelo NL , +C8403,3,172.5000 ,33.20530 ,-96.94831,APRSWXNET , ,CW8403 Little Elm TX US , +C8405,3,23.00000 ,47.88048 ,-122.5742,APRSWXNET , ,CW8405 Kingston WA US , +C8407,3,22.00000 ,52.79506 ,6.898820 ,APRSWXNET , ,CW8407 Emmen NL , +C8408,3,267.0000 ,43.04210 ,-88.47541,APRSWXNET , ,CW8408 Dousman WI US , +C8415,3,140.0000 ,45.50167 ,9.200000 ,APRSWXNET , ,CW8415 Milano IT , +C8416,3,4.700000 ,53.11383 ,6.252500 ,APRSWXNET , ,CW8416 Groningen NL , +C8418,3,406.0000 ,42.95002 ,-72.21955,APRSWXNET , ,CW8418 Roxbury NH US , +C8419,3,11.00000 ,31.86456 ,-116.6638,APRSWXNET , ,CW8419 Ensenada BC MX , +C8420,3,1293.500 ,31.47281 ,-110.1422,APRSWXNET , ,CW8420 Sierra Vista AZ US , +C8424,3,18.00000 ,37.42814 ,-76.52326,APRSWXNET , ,CW8424 Gloucester VA US , +C8425,3,60.00000 ,44.74000 ,-0.651830,APRSWXNET , ,CW8425 Bordeaux FR , +C8427,3,1314.000 ,41.26339 ,-111.9807,APRSWXNET , ,CW8427 Harrisville UDOT UT US , +C8428,3,1556.000 ,41.04525 ,-111.6683,APRSWXNET , ,CW8428 Morgan UDOT UT US , +C8429,3,1826.000 ,41.82765 ,-111.3128,APRSWXNET , ,CW8429 Laketown UDOT UT US , +C8430,3,1929.000 ,41.67150 ,-111.1869,APRSWXNET , ,CW8430 Randolph UDOT UT US , +C8435,3,1029.000 ,30.75250 ,-98.37600,APRSWXNET , ,CW8435 Burnet TX US , +C8437,3,11.00000 ,27.45162 ,-82.54503,APRSWXNET , ,CW8437 Oneco FL US , +C8440,3,14.00000 ,44.25120 ,-68.29450,APRSWXNET , ,CW8440 Southwest Hbr.-Seawall ME US , +C8441,3,176.0000 ,36.17283 ,-86.61717,APRSWXNET , ,CW8441 Hermitage TN US , +C8442,3,2.000000 ,30.43483 ,-86.11317,APRSWXNET , ,CW8442 Freeport FL US , +C8443,3,110.0000 ,35.73667 ,139.4012 ,APRSWXNET , ,CW8443 Tokyo JP , +C8444,3,890.0000 ,47.13783 ,13.11633 ,APRSWXNET , ,CW8444 Bad Hofgastein AT , +C8445,3,576.1000 ,50.33948 ,-105.5514,APRSWXNET , ,CW8445 Moose Jaw SK CA , +C8446,3,9.000000 ,28.54533 ,-80.81117,APRSWXNET , ,CW8446 Titusville FL US , +C8449,3,98.00000 ,43.29588 ,-124.3344,APRSWXNET , ,CW8449 Charleston OR US , +C8450,3,8.000000 ,27.30317 ,-82.48717,APRSWXNET , ,CW8450 Sarasota FL US , +C8452,3,432.8000 ,34.11817 ,-117.6368,APRSWXNET , ,CW8452 Upland CA US , +C8453,3,1602.000 ,39.93800 ,-105.0333,APRSWXNET , ,CW8453 Broomfield CO US , +C8463,3,190.0000 ,47.51930 ,-122.0456,APRSWXNET , ,CW8463 Issaquah WA US , +C8464,3,10.00000 ,29.78550 ,-94.92717,APRSWXNET , ,CW8464 Baytown TX US , +C8466,3,35.00000 ,28.84450 ,-97.24217,APRSWXNET , ,CW8466 Schroeder TX US , +C8468,3,42.70000 ,29.90867 ,-95.66250,APRSWXNET , ,CW8468 Houston TX US , +C8469,3,43.90000 ,30.61893 ,-88.34189,APRSWXNET , ,CW8469 Mobile AL US , +C8474,3,465.0000 ,48.84967 ,10.43300 ,APRSWXNET , ,CW8474 Noerdlingen DE , +C8477,3,221.0000 ,38.12995 ,-78.65024,APRSWXNET , ,CW8477 White Hall VA US , +C8478,3,310.0000 ,40.87267 ,-77.85417,APRSWXNET , ,CW8478 Bellefonte PA US , +C8479,3,38.10000 ,30.04050 ,-95.50633,APRSWXNET , ,CW8479 Klein TX US , +C8480,3,31.10000 ,45.42333 ,-73.87883,APRSWXNET , ,CW8480 Montreal MB CA , +C8482,3,2.000000 ,52.53500 ,5.444500 ,APRSWXNET , ,CW8482 Lelystad NL , +C8484,3,259.0000 ,44.62750 ,-73.04133,APRSWXNET , ,CW8484 Westford VT US , +C8486,3,1207.000 ,53.87867 ,-119.1355,APRSWXNET , ,CW8486 Grande Cache AB CA , +C8488,3,29.00000 ,46.65717 ,-72.14300,APRSWXNET , ,CW8488 Saint Casimir PQ CA , +C8492,3,103.0000 ,9.305360 ,123.2623 ,APRSWXNET , ,CW8492 Dumaguete City PH , +C8493,3,209.0000 ,41.71500 ,-83.77700,APRSWXNET , ,CW8493 Sylvania OH US , +C8494,3,289.0000 ,37.84833 ,-122.2103,APRSWXNET , ,CW8494 Oakland CA US , +C8495,3,188.0000 ,43.16139 ,-86.25641,APRSWXNET , ,CW8495 Muskegon MI US , +C8496,3,1100.000 ,-33.66667,149.0000 ,APRSWXNET , ,CW8496 Orange AU , +C8500,3,166.1000 ,38.87967 ,-90.07867,APRSWXNET , ,CW8500 East Alton IL US , +C8504,3,1807.000 ,43.31950 ,-110.7303,APRSWXNET , ,CW8504 Hoback WY US , +C8505,3,50.00000 ,-36.22433,150.1092 ,APRSWXNET , ,CW8505 Narooma AU , +C8506,3,140.8000 ,37.98784 ,-85.71533,APRSWXNET , ,CW8506 Shepherdsville KY US , +C8507,3,617.0000 ,47.62550 ,-117.2530,APRSWXNET , ,CW8507 Chester WA US , +C8508,3,232.0000 ,34.15167 ,-117.9497,APRSWXNET , ,CW8508 Duarte CA US , +C8511,3,210.0000 ,38.87555 ,-78.26909,APRSWXNET , ,CW8511 Front Royal VA US , +C8513,3,208.0000 ,39.34834 ,-81.67117,APRSWXNET , ,CW8513 Vincent OH US , +C8514,3,81.00000 ,34.28349 ,-119.2970,APRSWXNET , ,CW8514 Ventura CA US , +C8516,3,207.6000 ,42.80967 ,-86.01867,APRSWXNET , ,CW8516 Zeeland MI US , +C8520,3,27.00000 ,38.64212 ,-8.963370,APRSWXNET , ,CW8520 Moita PT , +C8522,3,10.00000 ,28.24142 ,-80.69076,APRSWXNET , ,CW8522 Melbourne FL US , +C8524,3,1430.400 ,36.37818 ,-103.0245,APRSWXNET , ,CW8524 Texline TX US , +C8526,3,1.000000 ,51.91033 ,4.168000 ,APRSWXNET , ,CW8526 Brielle NL , +C8528,3,198.0000 ,36.07417 ,-86.70500,APRSWXNET , ,CW8528 Nashville TN US , +C8530,3,24.00000 ,-36.84125,174.6254 ,APRSWXNET , ,CW8530 Massey NZ , +C8532,3,305.0000 ,36.05206 ,-85.72267,APRSWXNET , ,CW8532 Silver Point TN US , +C8535,3,1946.000 ,20.70383 ,-100.4467,APRSWXNET , ,CW8535 Queretaro MX , +C8539,3,10.00000 ,36.95800 ,-121.9733,APRSWXNET , ,CW8539 Santa Cruz CA US , +C8540,3,1383.800 ,51.53406 ,-114.6741,APRSWXNET , ,CW8540 Water Valley AB CA , +C8541,3,482.0000 ,33.61476 ,-111.7359,APRSWXNET , ,CW8541 Fountain Hills AZ US , +C8542,3,310.0000 ,42.18609 ,-93.59882,APRSWXNET , ,CW8542 Story City IA US , +C8543,3,555.0000 ,50.73467 ,13.33467 ,APRSWXNET , ,CW8543 Pfaffroda/Doernthal DE , +C8544,3,367.3000 ,44.00917 ,-92.49033,APRSWXNET , ,CW8544 Rochester MN US , +C8546,3,29.00000 ,51.04436 ,3.748140 ,APRSWXNET , ,CW8546 Ghent BE , +C8549,3,303.0000 ,29.50000 ,-98.50000,APRSWXNET , ,CW8549 San Antonio TX US , +C8550,3,2142.000 ,35.17076 ,-111.6800,APRSWXNET , ,CW8550 Flagstaff AZ US , +C8553,3,109.0000 ,47.42587 ,-122.3255,APRSWXNET , ,CW8553 Des Moines WA US , +C8557,3,568.0000 ,39.45053 ,-79.94278,APRSWXNET , ,CW8557 Grafton WV US , +C8559,3,280.4000 ,40.12750 ,-83.08000,APRSWXNET , ,CW8559 Dublin OH US , +C8560,3,219.0000 ,33.63050 ,-96.60717,APRSWXNET , ,CW8560 Sherman TX US , +C8562,3,414.5000 ,45.36367 ,-122.1613,APRSWXNET , ,CW8562 Sandy OR US , +C8563,3,770.0000 ,31.77300 ,35.17633 ,APRSWXNET , ,CW8563 Jerusalem IL , +C8564,3,142.0000 ,52.44626 ,-0.829240,APRSWXNET , ,CW8564 Desborough UK , +C8567,3,47.20000 ,37.95617 ,-122.2750,APRSWXNET , ,CW8567 El Sobrante CA US , +C8570,3,51.00000 ,42.47423 ,-71.32000,APRSWXNET , ,CW8570 Concord MA US , +C8571,3,441.0000 ,33.62050 ,-112.0572,APRSWXNET , ,CW8571 Phoenix AZ US , +C8573,3,54.00000 ,-33.74162,150.7277 ,APRSWXNET , ,CW8573 Penrith NSW AU , +C8574,3,195.0000 ,52.01904 ,-4.220060,APRSWXNET , ,CW8574 Pencader WLS UK , +C8575,3,45.00000 ,-43.51533,172.6442 ,APRSWXNET , ,CW8575 Christchurch NZ , +C8576,3,58.00000 ,48.11202 ,-122.7676,APRSWXNET , ,CW8576 Port Townsend WA US , +C8579,3,7.000000 ,28.00500 ,-82.69967,APRSWXNET , ,CW8579 Safety Harbor FL US , +C8580,3,546.8000 ,40.86673 ,-98.01855,APRSWXNET , ,CW8580 Aurora NE US , +C8583,3,146.0000 ,47.06449 ,21.93991 ,APRSWXNET , ,CW8583 Oradea RO , +C8584,3,153.0000 ,61.39570 ,-149.4541,APRSWXNET , ,CW8584 Chugiak AK US , +C8588,3,205.4000 ,33.03017 ,-96.77783,APRSWXNET , ,CW8588 Plano TX US , +C8589,3,55.00000 ,50.74880 ,-1.912490,APRSWXNET , ,CW8589 Bournemouth UK , +C8590,3,129.5000 ,40.06667 ,-76.38333,APRSWXNET , ,CW8590 Landisville PA US , +C8593,3,40.00000 ,41.30950 ,1.995830 ,APRSWXNET , ,CW8593 Gava ES , +C8594,3,6.100000 ,30.40117 ,-88.93450,APRSWXNET , ,CW8594 Biloxi MS US , +C8595,3,16.00000 ,28.06351 ,-82.48882,APRSWXNET , ,CW8595 Tampa FL US , +C8596,3,11.00000 ,28.17500 ,-80.70383,APRSWXNET , ,CW8596 Melbourne FL US , +C8599,3,274.3000 ,43.15167 ,-88.16050,APRSWXNET , ,CW8599 Lannon WI US , +C8605,3,247.0000 ,39.58633 ,-76.87150,APRSWXNET , ,CW8605 Hampstead MD US , +C8606,3,229.0000 ,41.44754 ,-81.87992,APRSWXNET , ,CW8606 North Olmsted OH US , +C8607,3,75.00000 ,46.44450 ,-72.77583,APRSWXNET , ,CW8607 Trois-Rivieres PQ CA , +C8614,3,123.3000 ,43.08217 ,-76.01933,APRSWXNET , ,CW8614 Minoa NY US , +C8616,3,27.00000 ,8.995000 ,-79.50583,APRSWXNET , ,CW8616 Panama City PA , +C8618,3,179.8000 ,43.87551 ,-79.31290,APRSWXNET , ,CW8618 Unionville ON CA , +C8624,3,1294.500 ,45.85667 ,-111.3355,APRSWXNET , ,CW8624 Manhattan MT US , +C8625,3,312.0000 ,-17.64750,-149.5920,APRSWXNET , ,CW8625 Papeete PF , +C8628,3,1707.000 ,34.39158 ,-111.4436,APRSWXNET , ,CW8628 Pine AZ US , +C8630,3,264.0000 ,41.97852 ,-88.68442,APRSWXNET , ,CW8630 Sycamore IL US , +C8631,3,183.0000 ,35.96927 ,-86.53374,APRSWXNET , ,CW8631 Smyrna TN US , +C8632,3,1346.000 ,41.78748 ,-112.1648,APRSWXNET , ,CW8632 Riverside UDOT UT US , +C8633,3,1387.000 ,41.94033 ,-111.8135,APRSWXNET , ,CW8633 Richmond UDOT UT US , +C8634,3,705.0000 ,34.02372 ,-117.0754,APRSWXNET , ,CW8634 Yucaipa CA US , +C8635,3,1428.000 ,41.10470 ,-111.9888,APRSWXNET , ,CW8635 Clearfield UDOT UT US , +C8636,3,314.0000 ,44.96500 ,-94.04667,APRSWXNET , ,CW8636 Winsted MN US , +C8637,3,96.00000 ,44.42550 ,-73.19833,APRSWXNET , ,CW8637 South Burlington VT US , +C8641,3,327.1000 ,36.10333 ,-83.56200,APRSWXNET , ,CW8641 New Market TN US , +C8643,3,259.0000 ,39.67769 ,-84.44744,APRSWXNET , ,CW8643 Farmersville OH US , +C8644,3,3.000000 ,26.32550 ,-80.07583,APRSWXNET , ,CW8644 Boca Raton FL US , +C8645,3,30.00000 ,50.67617 ,-1.519670,APRSWXNET , ,CW8645 Freshwater UK , +C8647,3,176.8000 ,44.01281 ,-75.79085,APRSWXNET , ,CW8647 Black River NY US , +C8648,3,1604.000 ,35.33883 ,-106.5003,APRSWXNET , ,CW8648 Placitas NM US , +C8650,3,269.0000 ,43.17757 ,-85.52608,APRSWXNET , ,CW8650 Cedar Springs MI US , +C8652,3,379.0000 ,46.67867 ,-94.28867,APRSWXNET , ,CW8652 Pine River MN US , +C8653,3,134.0000 ,44.60050 ,-75.18417,APRSWXNET , ,CW8653 Canton NY US , +C8654,3,3.300000 ,29.44177 ,-83.28482,APRSWXNET , ,CW8654 Horseshoe Beach FL US , +C8656,3,2240.000 ,40.08300 ,-105.3462,APRSWXNET , ,CW8656 Boulder CO US , +C8659,3,310.0000 ,40.99050 ,-75.39617,APRSWXNET , ,CW8659 McMichaels PA US , +C8662,3,41.40000 ,30.70895 ,-86.58632,APRSWXNET , ,CW8662 Crestview FL US , +C8665,3,233.2000 ,39.69117 ,-86.37667,APRSWXNET , ,CW8665 Plainfield IN US , +C8666,3,219.0000 ,42.17581 ,-87.97920,APRSWXNET , ,CW8666 Buffalo Grove IL US , +C8667,3,12.00000 ,-38.42455,144.8383 ,APRSWXNET , ,CW8667 St Andrews Beach AU , +C8669,3,183.0000 ,43.66700 ,-71.74617,APRSWXNET , ,CW8669 Bridgewater NH US , +C8670,3,8.200000 ,40.79417 ,-74.11883,APRSWXNET , ,CW8670 North Arlington NJ US , +C8671,3,260.0000 ,42.25000 ,-88.60017,APRSWXNET , ,CW8671 Marengo IL US , +C8673,3,848.0000 ,45.60167 ,-117.9172,APRSWXNET , ,CW8673 Elgin OR US , +C8676,3,88.00000 ,42.56533 ,-71.68967,APRSWXNET , ,CW8676 Lunenberg MA US , +C8678,3,160.0000 ,43.80439 ,11.02741 ,APRSWXNET , ,CW8678 Carmignano (Po) IT , +C8679,3,10.00000 ,45.37450 ,-73.55050,APRSWXNET , ,CW8679 Montreal PQ CA , +C8681,3,67.00000 ,38.37150 ,-122.0086,APRSWXNET , ,CW8681 Vacaville CA US , +C8682,3,800.0000 ,37.03800 ,-80.27217,APRSWXNET , ,CW8682 Pilot VA US , +C8684,3,43.00000 ,-32.56779,151.1749 ,APRSWXNET , ,CW8684 Singleton AU , +C8685,3,177.0000 ,37.48082 ,-121.8977,APRSWXNET , ,CW8685 Fremont CA US , +C8688,3,125.0000 ,32.92926 ,-117.1311,APRSWXNET , ,CW8688 Mira Mesa CA US , +C8689,3,1264.000 ,43.58700 ,-119.0600,APRSWXNET , ,CW8689 Burns OR US , +C8690,3,9.100000 ,26.11917 ,-97.49250,APRSWXNET , ,CW8690 Los Fresnos TX US , +C8692,3,1619.400 ,42.82483 ,-106.3085,APRSWXNET , ,CW8692 Casper WY US , +C8698,3,22.00000 ,54.85367 ,9.735000 ,APRSWXNET , ,CW8698 Broager DK , +C8699,3,4.000000 ,25.93550 ,-80.30367,APRSWXNET , ,CW8699 Miami Lakes FL US , +C8700,3,176.3000 ,33.13633 ,-97.04867,APRSWXNET , ,CW8700 Corinth TX US , +C8702,3,107.0000 ,18.33195 ,-67.23042,APRSWXNET , ,CW8702 Rincon PR US , +C8703,3,6.000000 ,33.03483 ,-117.2383,APRSWXNET , ,CW8703 Encinitas CA US , +C8704,3,169.0000 ,37.94983 ,23.85367 ,APRSWXNET , ,CW8704 Athens-Paiania GR , +C8705,3,35.00000 ,51.00984 ,-1.341790,APRSWXNET , ,CW8705 Otterbourne HMP UK , +C8711,3,152.0000 ,33.10000 ,-87.10000,APRSWXNET , ,CW8711 West Blocton AL US , +C8712,3,83.80000 ,37.61130 ,-77.94920,APRSWXNET , ,CW8712 Powhatan VA US , +C8713,3,228.0000 ,39.17820 ,-78.16693,APRSWXNET , ,CW8713 Winchester VA US , +C8715,3,2264.600 ,38.97033 ,-119.8902,APRSWXNET , ,CW8715 Stateline NV US , +C8717,3,3.400000 ,47.68533 ,-122.2512,APRSWXNET , ,CW8717 Seattle WA US , +C8719,3,156.0000 ,44.81692 ,8.854880 ,APRSWXNET , ,CW8719 Villalvernia IT , +C8720,3,10.00000 ,28.21533 ,-80.64200,APRSWXNET , ,CW8720 Merritt Island FL US , +C8721,3,1386.200 ,40.71000 ,-111.8338,APRSWXNET , ,CW8721 Salt Lake City UT US , +C8722,3,23.00000 ,27.55300 ,-82.35900,APRSWXNET , ,CW8722 Parrish FL US , +C8724,3,327.0000 ,34.50375 ,-114.3011,APRSWXNET , ,CW8724 Lake Havasu City AZ US , +C8725,3,324.0000 ,40.58482 ,-79.88836,APRSWXNET , ,CW8725 Indiana Township PA US , +C8727,3,53.00000 ,42.33600 ,-72.53667,APRSWXNET , ,CW8727 South Amherst MA US , +C8728,3,275.0000 ,38.52680 ,-91.41370,APRSWXNET , ,CW8728 Stony Hill MO US , +C8729,3,512.0000 ,33.39555 ,-111.5414,APRSWXNET , ,CW8729 Apache Junction AZ US , +C8732,3,237.4000 ,42.91072 ,-71.94067,APRSWXNET , ,CW8732 Region 14 ATC-CVHS NH US , +C8733,3,841.2000 ,32.28667 ,-110.7262,APRSWXNET , ,CW8733 Tucson AZ US , +C8735,3,737.6000 ,35.27533 ,-82.60533,APRSWXNET , ,CW8735 Etowah NC US , +C8738,3,1344.200 ,39.83081 ,-119.6427,APRSWXNET , ,CW8738 Reno NV US , +C8739,3,35.00000 ,45.70867 ,-61.90167,APRSWXNET , ,CW8739 Antigonish NS CA , +C8740,3,186.0000 ,41.80285 ,-87.86269,APRSWXNET , ,CW8740 La Grange IL US , +C8741,3,1310.000 ,-30.53866,29.42092 ,APRSWXNET , ,CW8741 Kokstad ZA , +C8742,3,406.0000 ,49.69273 ,12.16624 ,APRSWXNET , ,CW8742 Weiden i. d. OPf. BV DE , +C8743,3,20.00000 ,27.95731 ,-82.74089,APRSWXNET , ,CW8743 Clearwater FL US , +C8744,3,100.0000 ,60.26633 ,30.45533 ,APRSWXNET , ,CW8744 Sankt-Petersburg RU , +C8746,3,293.0000 ,37.97417 ,-120.6890,APRSWXNET , ,CW8746 Copperopolis CA US , +C8747,3,1103.000 ,44.19333 ,-120.8253,APRSWXNET , ,CW8747 Prineville OR US , +C8750,3,375.8000 ,39.51667 ,-77.51333,APRSWXNET , ,CW8750 Myersville MD US , +C8754,3,1604.000 ,-8.860100,31.33640 ,APRSWXNET , ,CW8754 Mbala ZM , +C8755,3,12.00000 ,57.03733 ,9.947500 ,APRSWXNET , ,CW8755 Aalborg DK , +C8757,3,307.0000 ,33.98612 ,-117.4352,APRSWXNET , ,CW8757 Indian Hills CA US , +C8758,3,125.0000 ,30.12300 ,-96.72000,APRSWXNET , ,CW8758 Carmine TX US , +C8760,3,332.0000 ,42.57114 ,-71.97811,APRSWXNET , ,CW8760 Gardner MA US , +C8767,3,53.00000 ,37.60450 ,-77.32583,APRSWXNET , ,CW8767 Mechanicsville VA US , +C8771,3,10.00000 ,30.16117 ,-85.76250,APRSWXNET , ,CW8771 Panama City Beach FL US , +C8777,3,10.00000 ,53.40050 ,-3.130330,APRSWXNET , ,CW8777 Liverpool UK , +C8779,3,253.6000 ,41.44365 ,-86.16202,APRSWXNET , ,CW8779 Bremen IN US , +C8781,3,181.0000 ,39.51563 ,-76.53922,APRSWXNET , ,CW8781 Phoenix MD US , +C8782,3,91.40000 ,35.77033 ,-78.36667,APRSWXNET , ,CW8782 Wendell NC US , +C8783,3,318.0000 ,46.17280 ,9.904970 ,APRSWXNET , ,CW8783 Sondrio IT , +C8784,3,175.0000 ,50.47550 ,4.524500 ,APRSWXNET , ,CW8784 Fleurus BE , +C8788,3,172.0000 ,47.67133 ,19.22200 ,APRSWXNET , ,CW8788 Kartal HU , +C8791,3,81.00000 ,51.20450 ,-4.105330,APRSWXNET , ,CW8791 Ilfracombe UK , +C8792,3,36.00000 ,60.17174 ,24.00959 ,APRSWXNET , ,CW8792 Lohja FI , +C8793,3,380.0000 ,42.62533 ,2.461330 ,APRSWXNET , ,CW8793 Los Masos FR , +C8794,3,16.00000 ,52.05857 ,5.130500 ,APRSWXNET , ,CW8794 Utrecht NL , +C8796,3,1965.700 ,38.82550 ,-104.8830,APRSWXNET , ,CW8796 Colorado Springs CO US , +C8797,3,220.0000 ,38.19367 ,13.29467 ,APRSWXNET , ,CW8797 Aplace IT , +C8798,3,349.3000 ,38.90383 ,-97.21550,APRSWXNET , ,CW8798 Abilene KS US , +C8800,3,16.00000 ,30.28883 ,-94.20717,APRSWXNET , ,CW8800 Lumberton TX US , +C8801,3,19.80000 ,30.45062 ,-94.82118,APRSWXNET , ,CW8801 Romayor TX US , +C8807,3,10.00000 ,28.29883 ,-80.71583,APRSWXNET , ,CW8807 Rockledge FL US , +C8808,3,342.0000 ,47.58250 ,7.805500 ,APRSWXNET , ,CW8808 Rheinfelden DE , +C8809,3,584.0000 ,-35.20867,149.0503 ,APRSWXNET , ,CW8809 Melba ACT AU , +C8810,3,1083.900 ,37.03750 ,-101.9730,APRSWXNET , ,CW8810 Elkhart KS US , +C8811,3,100.0000 ,35.53467 ,139.4668 ,APRSWXNET , ,CW8811 Atsugi City JP , +C8812,3,4.000000 ,39.36717 ,-74.57117,APRSWXNET , ,CW8812 Northfield NJ US , +C8814,3,505.0000 ,44.47374 ,-70.81146,APRSWXNET , ,CW8814 Mount Will ME US , +C8815,3,1048.500 ,46.81967 ,-116.9867,APRSWXNET , ,CW8815 Moscow ID US , +C8816,3,172.0000 ,43.29694 ,-72.48914,APRSWXNET , ,CW8816 Springfield VT US , +C8817,3,333.0000 ,42.58083 ,-75.33383,APRSWXNET , ,CW8817 New Berlin NY US , +C8818,3,196.6000 ,41.47717 ,-83.45950,APRSWXNET , ,CW8818 Luckey OH US , +C8819,3,695.0000 ,39.14494 ,-121.0509,APRSWXNET , ,CW8819 Grass Valley CA US , +C8822,3,196.0000 ,18.20522 ,-66.01243,APRSWXNET , ,CW8822 Caguas PR US , +C8824,3,191.4000 ,46.97950 ,-84.78283,APRSWXNET , ,CW8824 Batchawana Bay ON CA , +C8825,3,298.0000 ,18.25611 ,-66.11349,APRSWXNET , ,CW8825 Gurabo PR US , +C8826,3,1555.000 ,40.69267 ,-111.7885,APRSWXNET , ,CW8826 Salt Lake City UT US , +C8829,3,50.00000 ,-40.89367,175.0002 ,APRSWXNET , ,CW8829 Paraparaumu Beach NZ , +C8830,3,521.0000 ,36.26919 ,-82.51307,APRSWXNET , ,CW8830 Jonesborough TN US , +C8832,3,1300.000 ,45.00467 ,-89.60583,APRSWXNET , ,CW8832 Wausau WI US , +C8837,3,191.4000 ,34.84097 ,-87.60121,APRSWXNET , ,CW8837 Florence AL US , +C8838,3,48.00000 ,38.85018 ,-77.09408,APRSWXNET , ,CW8838 Arlington VA US , +C8839,3,340.5000 ,39.92757 ,-80.16995,APRSWXNET , ,CW8839 Waynesburg PA US , +C8840,3,148.0000 ,51.68967 ,-0.634670,APRSWXNET , ,CW8840 Harpenden UK , +C8841,3,58.00000 ,49.02967 ,-122.2972,APRSWXNET , ,CW8841 Abbotsford CA , +C8842,3,1798.000 ,41.55000 ,-111.9533,APRSWXNET , ,CW8842 Mantua UDOT UT US , +C8843,3,1399.000 ,41.50217 ,-111.9942,APRSWXNET , ,CW8843 Brigham City UDOT UT US , +C8844,3,1542.000 ,41.26000 ,-111.7112,APRSWXNET , ,CW8844 Huntsville UDOT UT US , +C8845,3,1390.000 ,41.96417 ,-112.7087,APRSWXNET , ,CW8845 Snowville UDOT UT US , +C8846,3,1687.000 ,41.81583 ,-113.3333,APRSWXNET , ,CW8846 Park Valley UDOT UT US , +C8847,3,1362.000 ,41.72200 ,-112.2278,APRSWXNET , ,CW8847 Bothwell UDOT UT US , +C8848,3,294.0000 ,41.68733 ,12.75600 ,APRSWXNET , ,CW8848 Velletri Roma IT , +C8851,3,15.00000 ,52.84158 ,0.505760 ,APRSWXNET , ,CW8851 Dersingham UK , +C8853,3,334.9000 ,44.52945 ,-93.34689,APRSWXNET , ,CW8853 Webster MN US , +C8854,3,793.6000 ,47.95978 ,-116.8334,APRSWXNET , ,CW8854 Spirit Lake ID US , +C8856,3,321.0000 ,40.29981 ,-82.41932,APRSWXNET , ,CW8856 Mount Vernon OH US , +C8857,3,17.40000 ,43.70117 ,-70.26000,APRSWXNET , ,CW8857 Portland ME US , +C8858,3,2.000000 ,24.55033 ,-81.78367,APRSWXNET , ,CW8858 Key West FL US , +C8859,3,222.5000 ,38.93583 ,-92.81467,APRSWXNET , ,CW8859 Boonville MO US , +C8860,3,231.0000 ,31.07533 ,-97.63467,APRSWXNET , ,CW8860 Harker Heights TX US , +C8863,3,80.00000 ,49.17367 ,-122.8633,APRSWXNET , ,CW8863 Surrey BC CA , +C8864,3,899.5000 ,34.55771 ,-117.3975,APRSWXNET , ,CW8864 Adelanto CA US , +C8865,3,73.00000 ,47.22333 ,-122.6142,APRSWXNET , ,CW8865 Fox Island WA US , +C8866,3,95.00000 ,38.85833 ,-77.18050,APRSWXNET , ,CW8866 Westlawn VA US , +C8867,3,100.0000 ,-38.02800,144.0483 ,APRSWXNET , ,CW8867 Teesdale AU , +C8872,3,1596.800 ,40.07100 ,-105.1930,APRSWXNET , ,CW8872 Gunbarrel CO US , +C8873,3,270.0000 ,61.29302 ,-149.4057,APRSWXNET , ,CW8873 Eagle River AK US , +C8874,3,1747.700 ,39.47300 ,-105.0700,APRSWXNET , ,CW8874 Littleton CO US , +C8876,3,500.0000 ,42.20100 ,-123.3090,APRSWXNET , ,CW8876 Williams OR US , +C8878,3,772.0000 ,39.87190 ,-121.6503,APRSWXNET , ,CW8878 Forest Ranch CA US , +C8880,3,1365.500 ,40.50667 ,-111.9500,APRSWXNET , ,CW8880 Riverton UT US , +C8885,3,290.0000 ,41.46967 ,-81.57233,APRSWXNET , ,CW8885 Shaker Heights OH US , +C8889,3,23.00000 ,40.53583 ,-74.59333,APRSWXNET , ,CW8889 Manville NJ US , +C8890,3,314.0000 ,33.17717 ,-117.1045,APRSWXNET , ,CW8890 Escondido CA US , +C8891,3,221.0000 ,9.711680 ,-68.34191,APRSWXNET , ,CW8891 Tinaco VE , +C8892,3,175.0000 ,44.39285 ,-122.7221,APRSWXNET , ,CW8892 Sweet Home OR US , +C8895,3,157.0000 ,41.19467 ,-73.61783,APRSWXNET , ,CW8895 Bedford NY US , +C8897,3,2629.000 ,41.13639 ,-106.2512,APRSWXNET , ,CW8897 Centennial WY US , +C8899,3,183.0000 ,39.30700 ,-77.24033,APRSWXNET , ,CW8899 Damascus MD US , +C8900,3,2.700000 ,26.18217 ,-80.14367,APRSWXNET , ,CW8900 Oakland Park FL US , +C8902,3,406.0000 ,37.86933 ,-79.45376,APRSWXNET , ,CW8902 Rockbridge Baths VA US , +C8905,3,5.000000 ,57.15333 ,9.636670 ,APRSWXNET , ,CW8905 Birkelse DK , +C8906,3,1565.000 ,40.69617 ,-111.7898,APRSWXNET , ,CW8906 Salt Lake City UT US , +C8907,3,670.5000 ,35.91333 ,-82.69200,APRSWXNET , ,CW8907 Marshall NC US , +C8909,3,0.000000 ,52.93117 ,-4.131170,APRSWXNET , ,CW8909 Porthmadog UK , +C8910,3,3.000000 ,48.78883 ,-122.7098,APRSWXNET , ,CW8910 Ferndale WA US , +C8913,3,337.0000 ,45.40417 ,-91.85917,APRSWXNET , ,CW8913 Barron WI US , +C8914,3,2321.000 ,41.95367 ,-111.4920,APRSWXNET , ,CW8914 Garden City UDOT UT US , +C8916,3,1422.000 ,41.61583 ,-111.9325,APRSWXNET , ,CW8916 Wellsville UDOT UT US , +C8917,3,1361.000 ,41.73533 ,-111.8553,APRSWXNET , ,CW8917 Logan UDOT UT US , +C8919,3,28.00000 ,38.69300 ,-9.325500,APRSWXNET , ,CW8919 Lisbon PT , +C8922,3,2127.500 ,43.54184 ,-109.6307,APRSWXNET , ,CW8922 Dubois Elem/MS WY US , +C8926,3,1783.100 ,39.67233 ,-105.1497,APRSWXNET , ,CW8926 Lakewood CO US , +C8927,3,497.0000 ,44.82878 ,-120.4914,APRSWXNET , ,CW8927 Young Life Ranch OR US , +C8931,3,22.70000 ,29.55700 ,-95.52283,APRSWXNET , ,CW8931 Missouri City TX US , +C8932,3,313.0000 ,37.51300 ,-93.41883,APRSWXNET , ,CW8932 Morrisville MO US , +C8933,3,5.200000 ,28.10583 ,-80.62083,APRSWXNET , ,CW8933 Melbourne FL US , +C8934,3,308.0000 ,41.77295 ,-123.3975,APRSWXNET , ,CW8934 Happy Camp CA US , +C8937,3,251.0000 ,47.93058 ,-97.07358,APRSWXNET , ,CW8937 Grand Forks ND US , +C8938,3,1698.000 ,34.57133 ,-112.4923,APRSWXNET , ,CW8938 Prescott AZ US , +C8939,3,342.0000 ,-38.23238,175.8748 ,APRSWXNET , ,CW8939 Tokoroa NZ , +C8943,3,10.00000 ,38.53333 ,-75.23333,APRSWXNET , ,CW8943 Frankford DE US , +C8944,3,96.00000 ,43.28333 ,-70.93333,APRSWXNET , ,CW8944 Rochester NH US , +C8946,3,1322.000 ,41.13883 ,-112.0662,APRSWXNET , ,CW8946 Clinton UDOT UT US , +C8947,3,1306.000 ,41.24000 ,-111.9805,APRSWXNET , ,CW8947 Ogden UDOT UT US , +C8948,3,1285.000 ,40.93117 ,-111.8963,APRSWXNET , ,CW8948 Centerville UDOT UT US , +C8949,3,204.0000 ,35.27760 ,-120.6626,APRSWXNET , ,CW8949 San Luis Obispo CA US , +C8951,3,61.60000 ,61.60417 ,5.073670 ,APRSWXNET , ,CW8951 Floroe NO , +C8952,3,445.0000 ,37.33167 ,-92.93333,APRSWXNET , ,CW8952 Marshfield MO US , +C8954,3,403.0000 ,33.63117 ,-112.1125,APRSWXNET , ,CW8954 Phoenix AZ US , +C8955,3,1056.132 ,46.30900 ,-114.1180,APRSWXNET , ,CW8955 Corvallis MT US , +C8956,3,30.00000 ,33.91234 ,-118.1366,APRSWXNET , ,CW8956 Downey CA US , +C8958,3,3.100000 ,27.15466 ,-80.24476,APRSWXNET , ,CW8958 Stuart FL US , +C8960,3,251.0000 ,35.48563 ,-81.02540,APRSWXNET , ,CW8960 Denver NC US , +C8963,3,2.500000 ,31.95300 ,-81.12367,APRSWXNET , ,CW8963 Savannah GA US , +C8964,3,155.0000 ,32.73750 ,-96.28250,APRSWXNET , ,CW8964 Terrell TX US , +C8965,3,45.70000 ,29.77633 ,-82.05283,APRSWXNET , ,CW8965 Keystone Heights FL US , +C8967,3,38.00000 ,40.27117 ,-74.78000,APRSWXNET , ,CW8967 Ewing NJ US , +C8968,3,15.00000 ,52.77867 ,6.798000 ,APRSWXNET , ,CW8968 Emmen NL , +C8970,3,324.0000 ,40.00483 ,-84.58283,APRSWXNET , ,CW8970 Arcanum OH US , +C8971,3,471.0000 ,45.14435 ,7.876120 ,APRSWXNET , ,CW8971 San Raffaele Cimena IT , +C8975,3,250.0000 ,-37.56850,144.7127 ,APRSWXNET , ,CW8975 Sunbury AU , +C8979,3,2055.600 ,38.93500 ,-104.8550,APRSWXNET , ,CW8979 Colorado Springs CO US , +C8980,3,1110.000 ,42.61717 ,-114.7512,APRSWXNET , ,CW8980 Buhl ID US , +C8981,3,190.0000 ,41.39133 ,-82.56083,APRSWXNET , ,CW8981 Huron OH US , +C8983,3,39.00000 ,37.39133 ,-122.1183,APRSWXNET , ,CW8983 Los Altos CA US , +C8984,3,2133.000 ,34.25200 ,-116.8703,APRSWXNET , ,CW8984 Big Bear Lake CA US , +C8985,3,45.00000 ,46.73283 ,-71.29617,APRSWXNET , ,CW8985 St-Nicolas PQ CA , +C8986,3,1904.400 ,35.44550 ,-118.3263,APRSWXNET , ,CW8986 Claraville CA US , +C8987,3,373.4000 ,45.65033 ,-118.8055,APRSWXNET , ,CW8987 Pendleton OR US , +C8989,3,325.0000 ,33.37550 ,-85.95306,APRSWXNET , ,CW8989 Gunthertown AL US , +C8991,3,4.000000 ,27.83550 ,-82.66067,APRSWXNET , ,CW8991 St Petersburg FL US , +C8993,3,134.0000 ,51.88933 ,8.871670 ,APRSWXNET , ,CW8993 Detmold DE , +C8997,3,60.00000 ,48.65117 ,-2.330000,APRSWXNET , ,CW8997 Plavenon FR , +C8998,3,365.8000 ,45.58104 ,-94.39056,APRSWXNET , ,CW8998 Collegeville MN US , +C9002,3,352.0000 ,40.31887 ,-79.54878,APRSWXNET , ,CW9002 Greensburg PA US , +C9005,3,2.000000 ,24.55250 ,-81.78033,APRSWXNET , ,CW9005 Key West FL US , +C9006,3,131.1000 ,40.86167 ,-73.96333,APRSWXNET , ,CW9006 Fort Lee NJ US , +C9009,3,784.0000 ,43.64856 ,-116.4168,APRSWXNET , ,CW9009 Meridian ID US , +C9010,3,650.0000 ,36.11985 ,-81.53200,APRSWXNET , ,CW9010 Boone NC US , +C9011,3,220.0000 ,40.35416 ,-88.32739,APRSWXNET , ,CW9011 Fisher IL US , +C9012,3,723.0000 ,35.12414 ,-117.9665,APRSWXNET , ,CW9012 California City CA US , +C9015,3,1959.000 ,38.49550 ,-105.3102,APRSWXNET , ,CW9015 Canon City CO US , +C9016,3,4.000000 ,41.70850 ,-70.26133,APRSWXNET , ,CW9016 Yarmouth Port MA US , +C9018,3,25.00000 ,50.84783 ,-0.765830,APRSWXNET , ,CW9018 Chichester WS UK , +C9020,3,400.0000 ,42.75985 ,-95.51872,APRSWXNET , ,CW9020 Cherokee IA US , +C9021,3,2616.000 ,4.770830 ,-74.07117,APRSWXNET , ,CW9021 Bogota CO , +C9022,3,873.0000 ,37.88281 ,-79.13743,APRSWXNET , ,CW9022 Montebello VA US , +C9025,3,12.20000 ,37.85000 ,-75.59033,APRSWXNET , ,CW9025 Bloxom VA US , +C9026,3,25.00000 ,53.54450 ,10.20750 ,APRSWXNET , ,CW9026 Glinde DE , +C9027,3,1040.000 ,45.13583 ,-118.9358,APRSWXNET , ,CW9027 Ukiah OR US , +C9029,3,550.0000 ,37.81583 ,13.29833 ,APRSWXNET , ,CW9029 Corleone IT , +C9031,3,25.90000 ,41.69083 ,-70.25633,APRSWXNET , ,CW9031 Yarmouth Port MA US , +C9033,3,1851.000 ,43.42717 ,-110.8083,APRSWXNET , ,CW9033 South Park WY US , +C9036,3,116.0000 ,42.21979 ,-72.86018,APRSWXNET , ,CW9036 Russell MA US , +C9037,3,287.7000 ,43.37750 ,-90.33823,APRSWXNET , ,CW9037 Richland Center WI US , +C9038,3,90.00000 ,51.46407 ,-1.040630,APRSWXNET , ,CW9038 Reading UK , +C9040,3,1664.000 ,-22.57543,17.07383 ,APRSWXNET , ,CW9040 Windhoek NA , +C9041,3,10.00000 ,53.02867 ,-1.510330,APRSWXNET , ,CW9041 Belper UK , +C9043,3,143.3000 ,34.10000 ,-87.90000,APRSWXNET , ,CW9043 Hamilton AL US , +C9045,3,298.0000 ,41.74986 ,-76.45890,APRSWXNET , ,CW9045 Towanda PA US , +C9046,3,20.00000 ,31.20233 ,-81.98783,APRSWXNET , ,CW9046 Nahunta GA US , +C9047,3,1500.000 ,-27.98867,151.5728 ,APRSWXNET , ,CW9047 Leyburn AU , +C9048,3,157.0000 ,49.17550 ,-122.8963,APRSWXNET , ,CW9048 Delta BC CA , +C9049,3,1481.000 ,10.35533 ,-66.96200,APRSWXNET , ,CW9049 Altos Mirandinos VE , +C9052,3,200.0000 ,51.49217 ,9.154170 ,APRSWXNET , ,CW9052 Kassel DE , +C9053,3,348.0000 ,33.56967 ,-112.3082,APRSWXNET , ,CW9053 Youngtown AZ US , +C9054,3,700.0000 ,-34.42200,150.3612 ,APRSWXNET , ,CW9054 Bowral AU , +C9055,3,300.0000 ,41.90083 ,-73.57500,APRSWXNET , ,CW9055 Millerton NY US , +C9058,3,1582.000 ,40.67533 ,-104.9922,APRSWXNET , ,CW9058 Wellington CO US , +C9059,3,8.000000 ,52.88717 ,4.735830 ,APRSWXNET , ,CW9059 Den Helder NL , +C9060,3,229.0000 ,46.15079 ,0.964420 ,APRSWXNET , ,CW9060 St Bonnet de Bellac FR , +C9061,3,60.00000 ,30.75131 ,-95.20761,APRSWXNET , ,CW9061 Point Blank TX US , +C9062,3,1699.000 ,39.75093 ,-105.0991,APRSWXNET , ,CW9062 Lakewood CO US , +C9063,3,1.000000 ,53.06417 ,5.515450 ,APRSWXNET , ,CW9063 Bolsward NL , +C9066,3,87.00000 ,41.86133 ,3.099170 ,APRSWXNET , ,CW9066 Calonge ES , +C9067,3,751.0000 ,35.58646 ,-117.6941,APRSWXNET , ,CW9067 Ridgecrest CA US , +C9068,3,306.0000 ,38.91883 ,-94.35367,APRSWXNET , ,CW9068 Lee's Summit MO US , +C9072,3,743.0000 ,33.94555 ,-117.0151,APRSWXNET , ,CW9072 Beaumont CA US , +C9073,3,3.000000 ,51.46458 ,3.556500 ,APRSWXNET , ,CW9073 Vlissingen NL , +C9075,3,1156.000 ,51.15028 ,-114.1297,APRSWXNET , ,CW9075 Calgary AB CA , +C9078,3,201.2000 ,38.97717 ,-92.74367,APRSWXNET , ,CW9078 Boonville MO US , +C9081,3,209.0000 ,34.71250 ,-86.77250,APRSWXNET , ,CW9081 Madison AL US , +C9083,3,138.0000 ,47.83745 ,-122.3219,APRSWXNET , ,CW9083 Lynnwood WA US , +C9084,3,27.00000 ,41.79698 ,-70.77608,APRSWXNET , ,CW9084 West Wareham MA US , +C9085,3,434.3000 ,38.06671 ,-120.6479,APRSWXNET , ,CW9085 Angels Camp CA US , +C9086,3,2.000000 ,46.36117 ,-124.0287,APRSWXNET , ,CW9086 Long Beach WA US , +C9087,3,212.0000 ,45.60093 ,-122.4311,APRSWXNET , ,CW9087 Portland OR US , +C9088,3,1597.000 ,45.41383 ,-109.8662,APRSWXNET , ,CW9088 Nye MT US , +C9091,3,188.0000 ,33.05583 ,-97.08467,APRSWXNET , ,CW9091 Flower Mound TX US , +C9092,3,100.0000 ,35.08333 ,-89.76667,APRSWXNET , ,CW9092 Germantown TN US , +C9094,3,1010.100 ,47.52700 ,-111.3163,APRSWXNET , ,CW9094 Great Falls MT US , +C9096,3,84.00000 ,52.19333 ,0.383830 ,APRSWXNET , ,CW9096 Dullingham UK , +C9097,3,182.0000 ,41.43883 ,-81.93783,APRSWXNET , ,CW9097 Westlake OH US , +C9098,3,372.0000 ,40.25967 ,-78.49217,APRSWXNET , ,CW9098 Claysburg PA US , +C9099,3,560.0000 ,37.92817 ,13.66950 ,APRSWXNET , ,CW9099 Caccamo IT , +C9102,3,20.00000 ,49.46983 ,-2.558330,APRSWXNET , ,CW9102 St Peter Port UK , +C9104,3,45.00000 ,34.68917 ,-79.97133,APRSWXNET , ,CW9104 Cheraw SC US , +C9105,3,214.0000 ,50.89783 ,9.264500 ,APRSWXNET , ,CW9105 Willingshausen-Steina DE , +C9106,3,30.00000 ,60.26978 ,-1.194400,APRSWXNET , ,CW9106 Catfirth-Shetland STL UK , +C9107,3,78.00000 ,48.02830 ,-122.0597,APRSWXNET , ,CW9107 Lake Stevens WA US , +C9108,3,26.00000 ,48.15070 ,-124.6581,APRSWXNET , ,CW9108 Lake Ozette WA US , +C9111,3,134.0000 ,47.05117 ,-122.3680,APRSWXNET , ,CW9111 Elk Plain WA US , +C9112,3,0.000000 ,28.03250 ,-97.02617,APRSWXNET , ,CW9112 Rockport TX US , +C9113,3,1.000000 ,53.51200 ,-0.680000,APRSWXNET , ,CW9113 Scotter UK , +C9114,3,231.6000 ,46.74383 ,-87.65133,APRSWXNET , ,CW9114 Halfway Big Bay Rd MI US , +C9117,3,53.00000 ,33.85467 ,-80.41033,APRSWXNET , ,CW9117 Sumter SC US , +C9119,3,605.0000 ,50.73500 ,15.25500 ,APRSWXNET , ,CW9119 Smrzovka CZ , +C9120,3,11.00000 ,54.04997 ,-128.6657,APRSWXNET , ,CW9120 Kitimat BC CA , +C9121,3,255.0000 ,34.95667 ,-82.18050,APRSWXNET , ,CW9121 Greer SC US , +C9123,3,66.00000 ,42.88749 ,-71.52417,APRSWXNET , ,CW9123 Merrimack NH US , +C9125,3,400.0000 ,42.07917 ,-74.11667,APRSWXNET , ,CW9125 Woodstock NY US , +C9127,3,282.0000 ,35.02625 ,-86.55418,APRSWXNET , ,CW9127 Fayetteville TN US , +C9129,3,61.00000 ,45.44407 ,-122.7972,APRSWXNET , ,CW9129 Tigard OR US , +C9130,3,220.0000 ,29.89963 ,-97.95814,APRSWXNET , ,CW9130 San Marcos TX US , +C9133,3,199.0000 ,41.55159 ,-88.10977,APRSWXNET , ,CW9133 Joliet IL US , +C9134,3,228.0000 ,42.93783 ,-85.49917,APRSWXNET , ,CW9134 Grand Rapids MI US , +C9137,3,30.00000 ,-32.06585,115.8751 ,APRSWXNET , ,CW9137 Willetton AU , +C9139,3,1371.600 ,42.92575 ,-112.4877,APRSWXNET , ,CW9139 Chubbuck ID US , +C9140,3,56.00000 ,48.46533 ,-123.3639,APRSWXNET , ,CW9140 Victoria BC CA , +C9141,3,118.0000 ,34.60782 ,-92.46321,APRSWXNET , ,CW9141 Bryant AR US , +C9143,3,774.2000 ,36.22468 ,-116.0883,APRSWXNET , ,CW9143 Pahrump NV US , +C9147,3,30.00000 ,52.40100 ,0.267500 ,APRSWXNET , ,CW9147 Ely UK , +C9148,3,1122.000 ,38.49219 ,-120.5421,APRSWXNET , ,CW9148 Pioneer CA US , +C9151,3,57.00000 ,51.08577 ,0.691280 ,APRSWXNET , ,CW9151 Tenterden UK , +C9153,3,36.60000 ,32.30783 ,-81.48117,APRSWXNET , ,CW9153 Stilson GA US , +C9154,3,329.0000 ,35.70568 ,-97.54915,APRSWXNET , ,CW9154 Edmond OK US , +C9155,3,173.0000 ,44.48400 ,-79.48850,APRSWXNET , ,CW9155 Markham ON CA , +C9156,3,366.0000 ,33.57900 ,-112.1703,APRSWXNET , ,CW9156 Glendale AZ US , +C9158,3,392.0000 ,37.17833 ,-93.16967,APRSWXNET , ,CW9158 Springfield MO US , +C9159,3,1923.200 ,34.45917 ,-112.3730,APRSWXNET , ,CW9159 Walker AZ US , +C9161,3,420.0000 ,47.50133 ,-122.0682,APRSWXNET , ,CW9161 Issaquah WA US , +C9162,3,619.4000 ,35.52185 ,-82.20608,APRSWXNET , ,CW9162 Earthaven Ecovillage NC US , +C9163,3,2094.000 ,38.93633 ,-104.6222,APRSWXNET , ,CW9163 Falcon CO US , +C9164,3,99.00000 ,47.35427 ,-122.3177,APRSWXNET , ,CW9164 Des Moines WA US , +C9165,3,1947.000 ,39.38750 ,-104.8425,APRSWXNET , ,CW9165 Castle Rock CO US , +C9171,3,139.0000 ,38.10767 ,-87.78783,APRSWXNET , ,CW9171 Wadesville IN US , +C9172,3,86.00000 ,46.79883 ,-71.17633,APRSWXNET , ,CW9172 Levis PQ CA , +C9173,3,124.5000 ,43.16825 ,-76.14886,APRSWXNET , ,CW9173 Clay NY US , +C9174,3,165.0000 ,48.76182 ,2.050670 ,APRSWXNET , ,CW9174 Voisins le Bretonneux FR , +C9175,3,2.000000 ,13.73333 ,100.6300 ,APRSWXNET , ,CW9175 Bangkok TH , +C9180,3,21.30000 ,29.72300 ,-95.50117,APRSWXNET , ,CW9180 Houston TX US , +C9181,3,40.00000 ,40.77883 ,-124.1642,APRSWXNET , ,CW9181 Eureka CA US , +C9182,3,274.0000 ,41.33167 ,-85.72000,APRSWXNET , ,CW9182 North Webster IN US , +C9183,3,3.500000 ,37.86717 ,-76.41617,APRSWXNET , ,CW9183 Heathsville VA US , +C9186,3,40.00000 ,-27.59600,-48.58783,APRSWXNET , ,CW9186 Florianopolis BR , +C9187,3,12.00000 ,38.65617 ,-9.022830,APRSWXNET , ,CW9187 Alhos-Vedros PT , +C9188,3,4.000000 ,29.08675 ,-80.93597,APRSWXNET , ,CW9188 Ponce Inlet FL US , +C9189,3,25.00000 ,38.13700 ,-0.824670,APRSWXNET , ,CW9189 Catral ES , +C9190,3,4.000000 ,21.37450 ,-157.7383,APRSWXNET , ,CW9190 Kailua HI US , +C9191,3,1566.000 ,39.37250 ,-112.3342,APRSWXNET , ,CW9191 Oak City UT US , +C9192,3,523.0000 ,43.75080 ,-74.79481,APRSWXNET , ,CW9192 Inlet NY US , +C9193,3,196.0000 ,46.61042 ,-85.03967,APRSWXNET , ,CW9193 Paradise MI US , +C9195,3,279.0000 ,39.70833 ,-83.92917,APRSWXNET , ,CW9195 Xenia OH US , +C9196,3,466.4000 ,46.53667 ,-120.7137,APRSWXNET , ,CW9196 Wiley City WA US , +C9197,3,125.0000 ,61.88500 ,27.87633 ,APRSWXNET , ,CW9197 Juva FI , +C9200,3,65.50000 ,40.22883 ,-75.08900,APRSWXNET , ,CW9200 Jamison PA US , +C9201,3,20.00000 ,36.76200 ,-76.20700,APRSWXNET , ,CW9201 Chesapeake VA US , +C9202,3,95.00000 ,32.63441 ,-93.25491,APRSWXNET , ,CW9202 Minden LA US , +C9203,3,54.00000 ,-36.89861,174.7397 ,APRSWXNET , ,CW9203 Auckland NZ , +C9205,3,475.0000 ,45.42828 ,-119.6513,APRSWXNET , ,CW9205 Lexington OR US , +C9206,3,172.5000 ,34.60917 ,-120.1347,APRSWXNET , ,CW9206 Solvang CA US , +C9207,3,285.9000 ,34.25017 ,-118.3648,APRSWXNET , ,CW9207 Shadow Hills CA US , +C9208,3,83.20000 ,42.69083 ,-73.82833,APRSWXNET , ,CW9208 Albany NY US , +C9209,3,117.0000 ,47.45000 ,-122.5333,APRSWXNET , ,CW9209 Olalla WA US , +C9211,3,270.0000 ,42.08250 ,-91.46250,APRSWXNET , ,CW9211 Springville IA US , +C9212,3,237.0000 ,35.78883 ,-96.06783,APRSWXNET , ,CW9212 Beggs OK US , +C9215,3,259.1000 ,35.24283 ,-84.79800,APRSWXNET , ,CW9215 Cleveland TN US , +C9219,3,2.000000 ,33.58500 ,-79.00400,APRSWXNET , ,CW9219 Garden City Beach SC US , +C9222,3,234.0000 ,47.47583 ,-121.7070,APRSWXNET , ,CW9222 North Bend WA US , +C9226,3,20.00000 ,31.57617 ,-87.48867,APRSWXNET , ,CW9226 Perdue Hill AL US , +C9227,3,315.0000 ,33.83158 ,-117.7731,APRSWXNET , ,CW9227 Orange CA US , +C9228,3,7.000000 ,55.52167 ,12.21600 ,APRSWXNET , ,CW9228 Solrad Strand DK , +C9229,3,320.0000 ,41.07700 ,-95.48133,APRSWXNET , ,CW9229 Hastings IA US , +C9230,3,134.7000 ,44.80908 ,-122.8040,APRSWXNET , ,CW9230 Stayton OR US , +C9232,3,62.00000 ,46.98217 ,-122.9477,APRSWXNET , ,CW9232 Tumwater WA US , +C9233,3,273.7000 ,42.89783 ,-72.43500,APRSWXNET , ,CW9233 Spofford NH US , +C9234,3,260.0000 ,37.10583 ,-122.0550,APRSWXNET , ,CW9234 Felton CA US , +C9236,3,46.00000 ,29.94917 ,-95.70750,APRSWXNET , ,CW9236 Cypress TX US , +C9237,3,99.40000 ,32.45750 ,-90.10633,APRSWXNET , ,CW9237 Madison MS US , +C9238,3,195.0000 ,34.70267 ,-86.37633,APRSWXNET , ,CW9238 Gurley AL US , +C9239,3,16.00000 ,47.58167 ,-122.5703,APRSWXNET , ,CW9239 Port Orchard WA US , +C9240,3,259.1000 ,43.09367 ,-85.23883,APRSWXNET , ,CW9240 Belding MI US , +C9243,3,233.2000 ,42.23583 ,-71.99383,APRSWXNET , ,CW9243 Spencer MA US , +C9245,3,876.0000 ,45.30083 ,-117.8130,APRSWXNET , ,CW9245 Cove OR US , +C9246,3,59.40000 ,34.01050 ,-80.40250,APRSWXNET , ,CW9246 Dalzell SC US , +C9252,3,335.3000 ,45.29767 ,-122.2872,APRSWXNET , ,CW9252 Estacada OR US , +C9254,3,82.00000 ,-37.74479,144.7409 ,APRSWXNET , ,CW9254 Caroline Springs AU , +C9256,3,306.6000 ,35.69300 ,-84.68450,APRSWXNET , ,CW9256 Ten Mile TN US , +C9258,3,193.2000 ,43.85917 ,-71.27867,APRSWXNET , ,CW9258 Tamworth NH US , +C9259,3,408.0000 ,45.23583 ,7.526670 ,APRSWXNET , ,CW9259 Torino IT , +C9262,3,3.000000 ,25.04967 ,-80.48417,APRSWXNET , ,CW9262 Key Largo FL US , +C9263,3,231.0000 ,33.04450 ,-96.75833,APRSWXNET , ,CW9263 Plano TX US , +C9265,3,317.0000 ,43.33033 ,-88.38050,APRSWXNET , ,CW9265 Hartford WI US , +C9266,3,124.9000 ,44.97767 ,-123.0828,APRSWXNET , ,CW9266 Salem OR US , +C9268,3,5.000000 ,26.28033 ,-80.10217,APRSWXNET , ,CW9268 Pompano Beach FL US , +C9269,3,65.00000 ,44.61250 ,-123.9187,APRSWXNET , ,CW9269 Toledo OR US , +C9271,3,290.0000 ,43.89056 ,-71.12168,APRSWXNET , ,CW9271 Madison NH US , +C9273,3,-3.000000,52.31232 ,4.652420 ,APRSWXNET , ,CW9273 Hoofddorp NL , +C9274,3,55.00000 ,58.93660 ,5.689600 ,APRSWXNET , ,CW9274 Stavanger NO , +C9275,3,133.0000 ,36.86687 ,-89.00058,APRSWXNET , ,CW9275 Bardwell KY US , +C9278,3,299.0000 ,10.18400 ,-66.89167,APRSWXNET , ,CW9278 Lomas de Betania Cua VZ , +C9279,3,169.2000 ,40.50117 ,-75.39417,APRSWXNET , ,CW9279 Coopersburg PA US , +C9281,3,118.9000 ,47.50917 ,-122.3825,APRSWXNET , ,CW9281 Arbor Heights WA US , +C9283,3,117.0000 ,37.15883 ,-88.73350,APRSWXNET , ,CW9283 Metropolis IL US , +C9286,3,35.00000 ,-33.94207,151.0143 ,APRSWXNET , ,CW9286 Revesby AU , +VWS ,3,8.000000 ,61.13094 ,-146.3500,APRSWXNET , ,CW9287 Valdez AK US , +C9288,3,321.6000 ,42.68867 ,-75.50083,APRSWXNET , ,CW9288 Sherburne NY US , +C9291,3,547.1000 ,30.29383 ,-98.87217,APRSWXNET , ,CW9291 Fredericksburg TX US , +C9294,3,88.00000 ,47.73152 ,-122.0877,APRSWXNET , ,CW9294 Woodinville WA US , +C9296,3,400.0000 ,35.99617 ,-78.89883,APRSWXNET , ,CW9296 Durham NC US , +C9297,3,887.0000 ,10.47450 ,-66.85167,APRSWXNET , ,CW9297 Lomas de Las Mercedes VZ , +C9298,3,185.0000 ,34.12335 ,-82.11672,APRSWXNET , ,CW9298 Greenwood SC US , +C9299,3,37.00000 ,39.73700 ,-75.12833,APRSWXNET , ,CW9299 Pitman NJ US , +C9300,3,207.3000 ,40.49121 ,-78.01355,APRSWXNET , ,CW9300 Huntingdon PA US , +C9301,3,227.0000 ,39.99417 ,-0.240830,APRSWXNET , ,CW9301 Onda ES , +C9302,3,484.6000 ,39.52440 ,-98.70606,APRSWXNET , ,CW9302 Osborne KS US , +C9303,3,411.0000 ,45.32982 ,-121.9111,APRSWXNET , ,CW9303 Rhododendron OR US , +C9307,3,1545.900 ,40.06983 ,-105.0327,APRSWXNET , ,CW9307 Erie CO US , +C9310,3,5.000000 ,48.39795 ,-122.6255,APRSWXNET , ,CW9310 Oak Harbor WA US , +C9311,3,160.0000 ,38.25100 ,-90.06683,APRSWXNET , ,CW9311 Waterloo IL US , +C9312,3,306.3000 ,34.91185 ,-85.32429,APRSWXNET , ,CW9312 Rossville GA US , +C9313,3,61.00000 ,-33.76851,150.8880 ,APRSWXNET , ,CW9313 Blacktown AU , +C9314,3,7.000000 ,43.98783 ,-124.0978,APRSWXNET , ,CW9314 Florence OR US , +C9315,3,1295.000 ,41.18551 ,-112.1005,APRSWXNET , ,CW9315 West Haven UT US , +LOMA2,3,57.90000 ,61.10583 ,-149.8425,APRSWXNET , ,CW9316 New Seward Huffman AK US , +C9317,3,298.7000 ,36.07267 ,-85.62250,APRSWXNET , ,CW9317 Twin Oak TN US , +C9319,3,169.0000 ,41.11833 ,-89.37833,APRSWXNET , ,CW9319 Henry IL US , +C9321,3,1264.800 ,45.62100 ,-109.1040,APRSWXNET , ,CW9321 Columbus MT US , +C9323,3,70.00000 ,44.85367 ,-0.490500,APRSWXNET , ,CW9323 Cenon FR , +C9324,3,152.4000 ,40.75716 ,-74.66283,APRSWXNET , ,CW9324 Chester NJ US , +C9328,3,174.0000 ,47.06183 ,-122.3093,APRSWXNET , ,CW9328 Graham WA US , +C9332,3,731.0000 ,44.12636 ,-116.9971,APRSWXNET , ,CW9332 Ontario OR US , +C9333,3,88.40000 ,38.62716 ,21.40966 ,APRSWXNET , ,CW9333 Agrinion GR , +C9334,3,32.00000 ,41.87950 ,-70.88217,APRSWXNET , ,CW9334 Middleboro MA US , +C9335,3,158.0000 ,38.00100 ,-78.23767,APRSWXNET , ,CW9335 Troy VA US , +C9336,3,205.0000 ,41.71678 ,-83.74147,APRSWXNET , ,CW9336 Sylvania OH US , +C9338,3,217.9000 ,40.11883 ,-75.79633,APRSWXNET , ,CW9338 Glenmoore PA US , +C9341,3,40.00000 ,32.98583 ,-117.2630,APRSWXNET , ,CW9341 Solana Beach CA US , +C9342,3,287.0000 ,34.04050 ,-83.77117,APRSWXNET , ,CW9342 Winder GA US , +C9343,3,6.100000 ,36.80133 ,-76.32717,APRSWXNET , ,CW9343 Portsmouth VA US , +C9345,3,203.0000 ,45.19193 ,-87.61524,APRSWXNET , ,CW9345 Menominee MI US , +C9346,3,81.00000 ,38.94500 ,-77.16833,APRSWXNET , ,CW9346 McLean VA US , +C9347,3,25.90000 ,28.40250 ,-81.42183,APRSWXNET , ,CW9347 Orlando FL US , +C9348,3,1444.000 ,40.09436 ,-111.6305,APRSWXNET , ,CW9348 Spanish Fork UT US , +C9350,3,1371.000 ,41.19583 ,-111.9580,APRSWXNET , ,CW9350 Ogden UT US , +C9352,3,2468.900 ,39.63133 ,-106.5217,APRSWXNET , ,CW9352 Avon CO US , +C9354,3,878.0000 ,34.96667 ,-118.2333,APRSWXNET , ,CW9354 Mojave CA US , +C9355,3,21.00000 ,46.68541 ,-123.7340,APRSWXNET , ,CW9355 Raymond WA US , +C9356,3,402.9000 ,38.58702 ,-97.60818,APRSWXNET , ,CW9356 Lindsborg KS US , +C9358,3,100.0000 ,52.66617 ,-2.807500,APRSWXNET , ,CW9358 Shrewsbury UK , +C9359,3,65.00000 ,37.71667 ,-122.4333,APRSWXNET , ,CW9359 San Francisco CA US , +C9361,3,172.0000 ,43.06898 ,-77.53410,APRSWXNET , ,CW9361 Pittsford NY US , +C9362,3,466.3000 ,44.23325 ,-95.85904,APRSWXNET , ,CW9362 Balaton MN US , +C9363,3,177.0000 ,46.82327 ,-122.4808,APRSWXNET , ,CW9363 Clearwood WA US , +C9365,3,17.00000 ,-22.89333,-43.21667,APRSWXNET , ,CW9365 Rio de Janeiro BR , +C9366,3,169.0000 ,38.84000 ,-90.85458,APRSWXNET , ,CW9366 Wentzville MO US , +C9368,3,249.9000 ,34.17283 ,-118.9147,APRSWXNET , ,CW9368 Newbury Park CA US , +C9369,3,52.00000 ,45.51417 ,-123.0617,APRSWXNET , ,CW9369 Cornelius OR US , +C9371,3,380.0000 ,44.82783 ,-84.97783,APRSWXNET , ,CW9371 Oxbow Lake MI US , +C9372,3,185.3000 ,42.81600 ,-86.11983,APRSWXNET , ,CW9372 Holland MI US , +C9373,3,1914.100 ,34.28367 ,-110.1387,APRSWXNET , ,CW9373 Show Low AZ US , +C9374,3,89.30000 ,45.49167 ,-122.4517,APRSWXNET , ,CW9374 Gresham OR US , +C9376,3,155.0000 ,37.75383 ,-122.4428,APRSWXNET , ,CW9376 San Francisco CA US , +C9377,3,20.00000 ,42.68669 ,-70.87427,APRSWXNET , ,CW9377 Ipswich MA US , +C9378,3,64.00000 ,48.24981 ,-122.1761,APRSWXNET , ,CW9378 Bryant WA US , +C9379,3,67.00000 ,45.40933 ,-75.69717,APRSWXNET , ,CW9379 Ottawa ON CA , +C9381,3,392.0000 ,46.58133 ,-94.24200,APRSWXNET , ,CW9381 Breezy Point MN US , +C9384,3,42.00000 ,45.40917 ,11.54833 ,APRSWXNET , ,CW9384 Barbarano Vicentino IT , +C9386,3,1363.700 ,32.40217 ,-106.6837,APRSWXNET , ,CW9386 Las Cruces NM US , +C9387,3,236.2000 ,40.46883 ,-76.87800,APRSWXNET , ,CW9387 Halifax PA US , +C9388,3,305.0000 ,35.80950 ,-85.64283,APRSWXNET , ,CW9388 Rock Island TN US , +C9392,3,164.6000 ,46.69633 ,-68.03300,APRSWXNET , ,CW9392 Presque Isle ME US , +C9393,3,8.000000 ,38.78683 ,-76.06850,APRSWXNET , ,CW9393 Easton MD US , +C9394,3,192.0000 ,43.45083 ,-84.02167,APRSWXNET , ,CW9394 Saginaw MI US , +C9396,3,211.0000 ,34.15717 ,-117.9970,APRSWXNET , ,CW9396 Monrovia CA US , +C9397,3,354.0000 ,34.66506 ,-92.99852,APRSWXNET , ,CW9397 Hot Springs Village AR US , +C9398,3,205.0000 ,44.42811 ,11.17269 ,APRSWXNET , ,CW9398 Calderino (BO) IT , +C9399,3,100.0000 ,44.73517 ,-123.0022,APRSWXNET , ,CW9399 Jefferson OR US , +C9402,3,2.000000 ,26.05083 ,-80.41333,APRSWXNET , ,CW9402 Southwest Ranches FL US , +C9403,3,170.4000 ,31.56083 ,-97.29883,APRSWXNET , ,CW9403 Woodway TX US , +C9407,3,1714.000 ,39.83582 ,-105.1233,APRSWXNET , ,CW9407 Arvada CO US , +C9408,3,726.9000 ,36.32050 ,-115.2242,APRSWXNET , ,CW9408 Las Vegas NV US , +C9409,3,187.0000 ,41.28517 ,-73.53417,APRSWXNET , ,CW9409 Ridgefield CT US , +C9411,3,19.00000 ,39.87099 ,-75.33339,APRSWXNET , ,CW9411 Ridley Park PA US , +C9412,3,198.0000 ,33.00079 ,-96.83447,APRSWXNET , ,CW9412 Dallas TX US , +C9413,3,185.0000 ,35.96200 ,-86.52133,APRSWXNET , ,CW9413 Smyrna TN US , +C9414,3,39.60000 ,29.74633 ,-95.78933,APRSWXNET , ,CW9414 Katy TX US , +C9415,3,280.0000 ,34.12367 ,-84.60767,APRSWXNET , ,CW9415 Acworth GA US , +C9416,3,40.00000 ,28.12217 ,-81.81200,APRSWXNET , ,CW9416 Polk City FL US , +C9417,3,-2.000000,52.48883 ,4.933830 ,APRSWXNET , ,CW9417 Purmerend NL , +C9418,3,50.00000 ,27.82383 ,-81.83450,APRSWXNET , ,CW9418 Homeland FL US , +C9420,3,16.00000 ,49.20000 ,-123.8195,APRSWXNET , ,CW9420 Gabriola BC CA , +C9421,3,1615.000 ,35.21167 ,-106.6863,APRSWXNET , ,CW9421 Albuquerque NM US , +C9423,3,384.1000 ,37.53333 ,-97.26717,APRSWXNET , ,CW9423 Derby KS US , +C9424,3,353.6000 ,36.76233 ,-93.51433,APRSWXNET , ,CW9424 Cape Fair MO US , +C9425,3,1682.000 ,35.13933 ,-106.5403,APRSWXNET , ,CW9425 Albuquerque NM US , +C9426,3,13.00000 ,43.61067 ,-70.28317,APRSWXNET , ,CW9426 South Portland ME US , +C9427,3,61.00000 ,39.69300 ,-75.77133,APRSWXNET , ,CW9427 Newark DE US , +C9430,3,142.6000 ,45.46667 ,-122.4167,APRSWXNET , ,CW9430 Gresham OR US , +C9433,3,6.000000 ,52.40250 ,4.916170 ,APRSWXNET , ,CW9433 Amsterdam NL , +C9436,3,13.00000 ,53.16717 ,-2.914330,APRSWXNET , ,CW9436 Chester UK , +C9437,3,193.0000 ,37.26617 ,-78.90700,APRSWXNET , ,CW9437 Spout Spring VA US , +C9438,3,80.00000 ,44.49050 ,11.21717 ,APRSWXNET , ,CW9438 Zola Predosa (BO) IT , +C9439,3,100.3000 ,35.60417 ,-78.64050,APRSWXNET , ,CW9439 Garner NC US , +C9442,3,16.10000 ,42.42472 ,-71.11622,APRSWXNET , ,CW9442 Medford MA US , +C9443,3,282.0000 ,34.22967 ,-118.8895,APRSWXNET , ,CW9443 Thousand Oaks CA US , +C9444,3,47.00000 ,29.89605 ,-95.59161,APRSWXNET , ,CW9444 Houston TX US , +C9449,3,263.0000 ,42.77250 ,-88.27117,APRSWXNET , ,CW9449 Waterford WI US , +C9450,3,551.7000 ,37.19317 ,-119.7428,APRSWXNET , ,CW9450 Coarsegold CA US , +C9452,3,43.00000 ,29.81967 ,-95.71883,APRSWXNET , ,CW9452 Katy TX US , +C9454,3,10.00000 ,39.15782 ,-76.51502,APRSWXNET , ,CW9454 Riviera Beach MD US , +C9455,3,4.600000 ,41.13717 ,-72.29467,APRSWXNET , ,CW9455 Orient NY US , +C9456,3,152.0000 ,44.51467 ,-73.05983,APRSWXNET , ,CW9456 Essex VT US , +C9457,3,239.0000 ,32.88430 ,-84.32892,APRSWXNET , ,CW9457 Thomaston GA US , +C9459,3,253.0000 ,39.67700 ,-76.95200,APRSWXNET , ,CW9459 Bachman Mills MD US , +C9461,3,9.000000 ,38.02847 ,-122.0301,APRSWXNET , ,CW9461 Concord CA US , +C9462,3,209.4000 ,36.31750 ,-95.82950,APRSWXNET , ,CW9462 Owasso OK US , +C9463,3,212.0000 ,41.65617 ,-88.30917,APRSWXNET , ,CW9463 Oswego IL US , +C9464,3,253.0000 ,29.18967 ,-110.8688,APRSWXNET , ,CW9464 Hermosillo MX , +C9465,3,100.0000 ,-41.09600,175.0950 ,APRSWXNET , ,CW9465 Upper Hutt NZ , +C9466,3,358.7000 ,44.27800 ,-84.64717,APRSWXNET , ,CW9466 Prudenville MI US , +C9468,3,466.3000 ,40.93900 ,-97.10217,APRSWXNET , ,CW9468 Seward NE US , +C9469,3,306.0000 ,42.03838 ,-84.75856,APRSWXNET , ,CW9469 Litchfield MI US , +C9470,3,300.0000 ,45.97800 ,14.59216 ,APRSWXNET , ,CW9470 Ljubljana Sl , +C9472,3,264.0000 ,36.11800 ,-96.71100,APRSWXNET , ,CW9472 Yale OK US , +C9474,3,199.0000 ,41.69500 ,-88.33167,APRSWXNET , ,CW9474 Oswego IL US , +C9475,3,278.3000 ,34.20655 ,-86.52678,APRSWXNET , ,CW9475 Roswell AL US , +C9476,3,49.00000 ,40.83250 ,-74.16967,APRSWXNET , ,CW9476 Bloomfield NJ US , +C9477,3,10.00000 ,-33.67650,151.2857 ,APRSWXNET , ,CW9477 Warriewood AU , +C9478,3,296.0000 ,30.48169 ,-97.83847,APRSWXNET , ,CW9478 Cedar Park TX US , +C9480,3,50.00000 ,40.36383 ,-74.96333,APRSWXNET , ,CW9480 New Hope PA US , +C9484,3,4.000000 ,52.05950 ,4.269170 ,APRSWXNET , ,CW9484 Den Haag NL , +C9485,3,170.0000 ,39.28699 ,-77.89969,APRSWXNET , ,CW9485 Charles Town WV US , +C9486,3,231.6000 ,40.91636 ,-75.19110,APRSWXNET , ,CW9486 Upper Mt. Bethel PA US , +C9487,3,530.0000 ,42.14967 ,11.92417 ,APRSWXNET , ,CW9487 Tolfa IT , +C9489,3,17.00000 ,39.83117 ,-75.17717,APRSWXNET , ,CW9489 West Deptford NJ US , +C9490,3,88.00000 ,44.22617 ,-69.96333,APRSWXNET , ,CW9490 Winthrop ME US , +C9491,3,63.00000 ,34.75000 ,-79.51500,APRSWXNET , ,CW9491 Laurinburg NC US , +C9492,3,182.0000 ,37.68227 ,-122.0471,APRSWXNET , ,CW9492 Hayward CA US , +C9494,3,75.00000 ,-32.05171,152.2657 ,APRSWXNET , ,CW9494 Krambach NSW AU , +C9495,3,2348.500 ,37.65367 ,-106.1772,APRSWXNET , ,CW9495 Monte Vista CO US , +C9496,3,2064.000 ,38.04133 ,-119.1420,APRSWXNET , ,CW9496 Mono City CA US , +C9498,3,130.0000 ,47.46867 ,-122.2913,APRSWXNET , ,CW9498 Seatac WA US , +C9499,3,765.0000 ,41.80000 ,-6.766670,APRSWXNET , ,CW9499 Braganasa PT , +C9500,3,12.00000 ,44.02806 ,-69.53226,APRSWXNET , ,CW9500 Damariscotta ME US , +C9503,3,189.0000 ,42.12717 ,24.52383 ,APRSWXNET , ,CW9503 Stambolijski BG , +C9504,3,378.0000 ,33.61983 ,-112.4030,APRSWXNET , ,CW9504 Surprise AZ US , +C9505,3,33.00000 ,40.49712 ,-124.0945,APRSWXNET , ,CW9505 Rio Dell CA US , +C9506,3,266.4000 ,42.20867 ,-85.63933,APRSWXNET , ,CW9506 Portage MI US , +C9507,3,202.7000 ,41.96200 ,-83.61900,APRSWXNET , ,CW9507 Dundee MI US , +C9510,3,25.90000 ,34.68417 ,-78.41333,APRSWXNET , ,CW9510 Bay Tree Lake NC US , +C9511,3,321.6000 ,39.00750 ,-94.66083,APRSWXNET , ,CW9511 Overland Park KS US , +C9513,3,243.8000 ,44.46233 ,-92.01317,APRSWXNET , ,CW9513 Nelson WI US , +C9514,3,2.000000 ,53.90383 ,9.129170 ,APRSWXNET , ,CW9514 Brunsbuettel DE , +C9516,3,1630.400 ,39.74357 ,-104.9111,APRSWXNET , ,CW9516 Denver CO US , +C9520,3,95.00000 ,37.20667 ,-121.8582,APRSWXNET , ,CW9520 San Jose CA US , +C9521,3,687.3000 ,36.22200 ,-115.2188,APRSWXNET , ,CW9521 Las Vegas NV US , +C9523,3,82.00000 ,47.65917 ,-122.3553,APRSWXNET , ,CW9523 Phinney Ridge WA US , +C9524,3,190.0000 ,41.69400 ,-86.88300,APRSWXNET , ,CW9524 Michigan City IN US , +C9526,3,1142.000 ,10.42400 ,-66.83764,APRSWXNET , ,CW9526 Caracas VE , +C9527,3,37.00000 ,53.40783 ,9.632000 ,APRSWXNET , ,CW9527 Goldbeck DE , +C9528,3,2.000000 ,25.97733 ,-81.72900,APRSWXNET , ,CW9528 Naples FL US , +C9529,3,67.00000 ,38.64449 ,-121.2319,APRSWXNET , ,CW9529 Fair Oaks CA US , +C9530,3,34.00000 ,40.22318 ,-74.29252,APRSWXNET , ,CW9530 Freehold NJ US , +C9532,3,475.5000 ,35.92583 ,-83.11700,APRSWXNET , ,CW9532 Newport TN US , +C9533,3,10.00000 ,38.26633 ,15.64400 ,APRSWXNET , ,CW9533 Torre Faro Messina IT , +C9534,3,78.00000 ,40.80772 ,14.35591 ,APRSWXNET , ,CW9534 Ercolano NA IT , +C9535,3,125.0000 ,39.05417 ,22.94700 ,APRSWXNET , ,CW9535 Pteleos-volos-magnisia GR , +C9536,3,386.0000 ,45.99598 ,-88.15757,APRSWXNET , ,CW9536 Sagola MI US , +C9538,3,195.0000 ,45.43191 ,-122.4272,APRSWXNET , ,CW9538 Damascus OR US , +C9539,3,368.8000 ,37.39000 ,-97.27000,APRSWXNET , ,CW9539 Belle Plaine KS US , +C9540,3,128.0000 ,43.09463 ,-77.47159,APRSWXNET , ,CW9540 Fairport NY US , +C9542,3,308.8000 ,33.91283 ,-84.70050,APRSWXNET , ,CW9542 Powder Springs GA US , +C9543,3,300.0000 ,35.57000 ,-81.44450,APRSWXNET , ,CW9543 Vale NC US , +C9546,3,168.3000 ,47.68417 ,-122.0378,APRSWXNET , ,CW9546 Redmond WA US , +C9548,3,99.00000 ,34.44804 ,-119.7247,APRSWXNET , ,CW9548 Santa Barbara CA US , +C9549,3,3.700000 ,-16.93700,145.7388 ,APRSWXNET , ,CW9549 Cairns QL AU , +C9550,3,26.00000 ,29.11417 ,-82.27417,APRSWXNET , ,CW9550 Ocala FL US , +C9551,3,402.3000 ,34.57667 ,-86.00117,APRSWXNET , ,CW9551 Section AL US , +C9552,3,239.7000 ,35.55836 ,-80.88710,APRSWXNET , ,CW9552 Mooresville NC US , +C9554,3,415.0000 ,46.30517 ,4.574500 ,APRSWXNET , ,CW9554 Cluny FR , +C9558,3,246.0000 ,40.65800 ,-85.78550,APRSWXNET , ,CW9558 Somerset IN US , +C9560,3,19.00000 ,56.14833 ,-3.854830,APRSWXNET , ,CW9560 Menstrie UK , +C9561,3,2629.000 ,40.13916 ,-106.5312,APRSWXNET , ,CW9561 Kremmling CO US , +C9565,3,1597.000 ,42.82000 ,-106.4333,APRSWXNET , ,CW9565 Casper WY US , +C9566,3,682.0000 ,35.59533 ,-82.55667,APRSWXNET , ,CW9566 Asheville NC US , +C9567,3,544.0000 ,35.12050 ,-85.33167,APRSWXNET , ,CW9567 Signal Mountain TN US , +C9568,3,116.0000 ,41.96871 ,-71.67109,APRSWXNET , ,CW9568 Harrisville RI US , +C9569,3,247.0000 ,39.43863 ,-77.08325,APRSWXNET , ,CW9569 Taylorsville MD US , +C9573,3,243.0000 ,29.57000 ,-98.61000,APRSWXNET , ,CW9573 San Antonio TX US , +C9574,3,73.00000 ,42.46500 ,-71.45750,APRSWXNET , ,CW9574 Acton MA US , +C9575,3,8.000000 ,30.15444 ,-94.11583,APRSWXNET , ,CW9575 Beaumont TX US , +C9577,3,1.000000 ,40.97250 ,-72.11917,APRSWXNET , ,CW9577 Amagansett NY US , +C9579,3,41.00000 ,29.89399 ,-95.66690,APRSWXNET , ,CW9579 Cypress TX US , +C9580,3,201.0000 ,37.84533 ,-122.1055,APRSWXNET , ,CW9580 Moraga CA US , +C9581,3,260.6000 ,37.34958 ,-79.31822,APRSWXNET , ,CW9581 Forest VA US , +C9583,3,160.0000 ,47.46667 ,-122.1285,APRSWXNET , ,CW9583 Renton WA US , +C9585,3,20.00000 ,36.97117 ,-121.9689,APRSWXNET , ,CW9585 Santa Cruz CA US , +C9586,3,206.4000 ,41.33333 ,-83.83333,APRSWXNET , ,CW9586 Weston OH US , +C9587,3,199.0000 ,39.44688 ,-81.12157,APRSWXNET , ,CW9587 St. Marys WV US , +C9588,3,1008.000 ,45.66433 ,-108.7795,APRSWXNET , ,CW9588 Laurel MT US , +C9592,3,21.00000 ,-22.67883,14.53083 ,APRSWXNET , ,CW9592 Swakopmund NA , +C9593,3,2.000000 ,38.67883 ,-76.17467,APRSWXNET , ,CW9593 Oxford MD US , +C9594,3,1193.000 ,51.20017 ,-114.2335,APRSWXNET , ,CW9594 Ghost Lake AB CA , +C9596,3,830.0000 ,34.61463 ,-118.2048,APRSWXNET , ,CW9596 Palmdale CA US , +C9598,3,45.00000 ,41.15783 ,-71.56783,APRSWXNET , ,CW9598 New Shoreham RI US , +C9602,3,59.00000 ,33.70897 ,-117.7640,APRSWXNET , ,CW9602 Irvine CA US , +C9603,3,110.0000 ,38.70500 ,-122.5192,APRSWXNET , ,CW9603 Calistoga CA US , +C9604,3,273.0000 ,46.18084 ,-122.9491,APRSWXNET , ,CW9604 Longview WA US , +C9605,3,25.00000 ,37.61117 ,-0.988670,APRSWXNET , ,CW9605 Cartagena ES , +C9607,3,11.00000 ,28.13033 ,-80.65533,APRSWXNET , ,CW9607 Melbourne FL US , +C9608,3,285.9000 ,40.04543 ,-83.16458,APRSWXNET , ,CW9608 Hilliard OH US , +C9610,3,347.0000 ,39.19467 ,-95.23833,APRSWXNET , ,CW9610 McLouth KS US , +C9614,3,225.0000 ,28.52750 ,77.14750 ,APRSWXNET , ,CW9614 New Delhi IN , +C9615,3,266.0000 ,39.18583 ,-84.22417,APRSWXNET , ,CW9615 Milford OH US , +C9618,3,1036.300 ,45.79750 ,-108.6017,APRSWXNET , ,CW9618 Billings MT US , +C9619,3,435.0000 ,46.71364 ,-122.1522,APRSWXNET , ,CW9619 Mineral WA US , +C9620,3,19.00000 ,33.87540 ,-118.0678,APRSWXNET , ,CW9620 Cerritos CA US , +C9621,3,325.0000 ,48.78950 ,12.86533 ,APRSWXNET , ,CW9621 Plattling DE , +C9624,3,51.00000 ,59.13283 ,10.20333 ,APRSWXNET , ,CW9624 Sandefjord NO , +C9625,3,226.0000 ,40.12861 ,-88.97693,APRSWXNET , ,CW9625 Clinton IL US , +C9626,3,1331.000 ,38.90000 ,-102.7000,APRSWXNET , ,CW9626 Kit Carson CO US , +C9628,3,7.000000 ,29.74385 ,-81.29286,APRSWXNET , ,CW9628 Palm Coast FL US , +C9629,3,124.0000 ,37.73520 ,-122.4426,APRSWXNET , ,CW9629 San Francisco CA US , +C9633,3,125.0000 ,47.90000 ,-122.2000,APRSWXNET , ,CW9633 Everett WA US , +C9635,3,1314.000 ,40.72333 ,-111.8653,APRSWXNET , ,CW9635 Salt Lake City UT US , +C9637,3,175.3000 ,43.18167 ,-77.79550,APRSWXNET , ,CW9637 Spencerport NY US , +C9638,3,312.0000 ,41.04445 ,-96.01530,APRSWXNET , ,CW9638 Plattsmouth NE US , +C9642,3,149.0000 ,47.77683 ,-122.1323,APRSWXNET , ,CW9642 Woodinville WA US , +C9646,3,26.00000 ,38.72200 ,-77.07417,APRSWXNET , ,CW9646 Alexandria VA US , +C9647,3,188.0000 ,41.76817 ,-87.81617,APRSWXNET , ,CW9647 Bridgeview IL US , +C9648,3,61.60000 ,31.32817 ,-94.34317,APRSWXNET , ,CW9648 Etoile TX US , +C9649,3,120.0000 ,42.66650 ,-73.83050,APRSWXNET , ,CW9649 North Bethleham NY US , +C9650,3,338.0000 ,34.59217 ,-98.47550,APRSWXNET , ,CW9650 Lawton OK US , +C9652,3,40.00000 ,21.34383 ,-157.9167,APRSWXNET , ,CW9652 Honolulu HI US , +C9653,3,1127.800 ,31.84417 ,-104.9562,APRSWXNET , ,CW9653 Salt Flat TX US , +C9654,3,48.20000 ,45.26917 ,-122.6915,APRSWXNET , ,CW9654 Canby OR US , +C9655,3,28.50000 ,28.47917 ,-81.34467,APRSWXNET , ,CW9655 Belle Isle FL US , +C9659,3,237.0000 ,36.89950 ,-85.87800,APRSWXNET , ,CW9659 Glasgow KY US , +C9660,3,3.000000 ,28.40167 ,-80.67283,APRSWXNET , ,CW9660 Merritt Island FL US , +C9661,3,277.4000 ,42.53500 ,-88.43500,APRSWXNET , ,CW9661 Lake Geneva WI US , +C9663,3,248.4000 ,40.83167 ,-85.52583,APRSWXNET , ,CW9663 Huntington IN US , +C9664,3,350.0000 ,33.07583 ,-112.0448,APRSWXNET , ,CW9664 Maricopa AZ US , +C9665,3,653.0000 ,39.11724 ,-121.0287,APRSWXNET , ,CW9665 Grass Valley CA US , +C9666,3,147.0000 ,40.09000 ,-76.09870,APRSWXNET , ,CW9666 New Holland PA US , +C9667,3,227.1000 ,39.58300 ,-77.01400,APRSWXNET , ,CW9667 Westminster MD US , +C9668,3,751.9000 ,32.36883 ,-111.1248,APRSWXNET , ,CW9668 Marana AZ US , +C9669,3,140.8000 ,44.05117 ,-123.0363,APRSWXNET , ,CW9669 Springfield OR US , +C9670,3,231.1000 ,41.70606 ,-86.04158,APRSWXNET , ,CW9670 Elkhart IN US , +C9671,3,120.0000 ,27.76717 ,-15.60317,APRSWXNET , ,CW9671 El Tablero CI ES , +C9672,3,346.0000 ,29.75500 ,-98.38083,APRSWXNET , ,CW9672 Bulverde TX US , +C9673,3,388.6000 ,33.68500 ,-112.3465,APRSWXNET , ,CW9673 Sun City West AZ US , +C9675,3,120.0000 ,43.65633 ,-79.46417,APRSWXNET , ,CW9675 Toronto ON CA , +C9676,3,1935.000 ,32.76500 ,-108.3325,APRSWXNET , ,CW9676 Silver City NM US , +C9677,3,117.0000 ,41.51131 ,-72.32780,APRSWXNET , ,CW9677 Colchester CT US , +C9680,3,295.0000 ,45.69967 ,9.423330 ,APRSWXNET , ,CW9680 Merate IT , +C9682,3,30.00000 ,48.53265 ,-122.5843,APRSWXNET , ,CW9682 Anacotes WA US , +C9683,3,25.00000 ,42.54292 ,-71.09006,APRSWXNET , ,CW9683 Reading MA US , +C9684,3,281.9000 ,42.34717 ,-88.32667,APRSWXNET , ,CW9684 McHenry IL US , +C9687,3,335.0000 ,35.10000 ,-120.6000,APRSWXNET , ,CW9687 Arroyo Grande CA US , +C9688,3,1583.000 ,39.91617 ,-104.9303,APRSWXNET , ,CW9688 Thornton CO US , +C9689,3,2255.000 ,39.66025 ,-105.3387,APRSWXNET , ,CW9689 Evergreen CO US , +C9690,3,55.00000 ,45.85766 ,-66.69183,APRSWXNET , ,CW9690 Fredericton NB CA , +C9691,3,251.0000 ,34.20383 ,-118.8863,APRSWXNET , ,CW9691 Thousand Oaks CA US , +C9692,3,43.00000 ,39.02917 ,-76.67300,APRSWXNET , ,CW9692 Crofton MD US , +C9695,3,470.0000 ,65.60000 ,18.81200 ,APRSWXNET , ,CW9695 Arvidsjaur SE , +C9696,3,502.3000 ,46.84433 ,-98.93143,APRSWXNET , ,CW9696 Eldridge ND US , +C9697,3,180.0000 ,32.95950 ,-117.1288,APRSWXNET , ,CW9697 San Diego CA US , +C9698,3,360.0000 ,40.54333 ,-79.90583,APRSWXNET , ,CW9698 Fox Chapel PA US , +C9699,3,143.5000 ,39.84500 ,-75.74700,APRSWXNET , ,CW9699 Kennett Square PA US , +C9701,3,558.0000 ,34.89617 ,-84.04617,APRSWXNET , ,CW9701 Blairsville GA US , +C9702,3,79.20000 ,32.41300 ,-87.47033,APRSWXNET , ,CW9702 Uniontown AL US , +C9703,3,182.0000 ,44.28050 ,-83.48033,APRSWXNET , ,CW9703 East Tawas MI US , +C9704,3,268.2000 ,32.88450 ,-97.62783,APRSWXNET , ,CW9704 Weatherford TX US , +C9705,3,1.000000 ,37.55133 ,-76.30217,APRSWXNET , ,CW9705 Deltaville VA US , +C9709,3,350.5000 ,41.50583 ,-78.21417,APRSWXNET , ,CW9709 Emporium PA US , +C9711,3,955.2000 ,32.32883 ,-110.8427,APRSWXNET , ,CW9711 Tucson AZ US , +C9712,3,335.0000 ,43.45290 ,-88.26230,APRSWXNET , ,CW9712 West Bend WI US , +C9713,3,57.90000 ,40.08895 ,-75.21485,APRSWXNET , ,CW9713 Erdenheim PA US , +C9714,3,125.0000 ,40.78250 ,-73.95700,APRSWXNET , ,CW9714 New York NY US , +C9715,3,344.0000 ,47.84033 ,-120.0092,APRSWXNET , ,CW9715 Chelan WA US , +C9716,3,205.0000 ,44.07750 ,1.651330 ,APRSWXNET , ,CW9716 Bruniquel FR , +C9717,3,259.1000 ,39.00250 ,-84.68833,APRSWXNET , ,CW9717 Florence KY US , +C9718,3,207.3000 ,35.17481 ,-95.60415,APRSWXNET , ,CW9718 Canadian OK US , +C9719,3,737.0000 ,37.20048 ,-119.6876,APRSWXNET , ,CW9719 Coarsegold CA US , +C9721,3,8.000000 ,36.83517 ,-76.05650,APRSWXNET , ,CW9721 Virginia Beach VA US , +C9723,3,137.0000 ,42.91683 ,-76.79567,APRSWXNET , ,CW9723 Seneca Falls NY US , +C9725,3,436.0000 ,63.28950 ,12.35767 ,APRSWXNET , ,CW9725 Duved SE , +C9726,3,99.00000 ,34.89968 ,-89.90278,APRSWXNET , ,CW9726 Nesbit MS US , +C9727,3,64.90000 ,31.27046 ,-89.81899,APRSWXNET , ,CW9727 Columbia MS US , +C9729,3,1363.000 ,45.73000 ,-111.4800,APRSWXNET , ,CW9729 Three Forks MT US , +C9730,3,230.0000 ,43.10000 ,-87.90000,APRSWXNET , ,CW9730 Glendale WI US , +C9732,3,55.00000 ,53.50150 ,10.35650 ,APRSWXNET , ,CW9732 Dassendorf DE , +C9733,3,331.0000 ,36.17100 ,-80.72983,APRSWXNET , ,CW9733 Boonville NC US , +C9734,3,75.00000 ,39.00387 ,-77.15839,APRSWXNET , ,CW9734 West Bethesda MD US , +C9736,3,44.50000 ,33.90633 ,-118.0153,APRSWXNET , ,CW9736 La Mirada CA US , +C9738,3,222.5000 ,43.02950 ,-85.68317,APRSWXNET , ,CW9738 Comstock Park MI US , +C9739,3,128.0000 ,55.79300 ,-3.911000,APRSWXNET , ,CW9739 Wishaw SCT UK , +C9740,3,8.000000 ,38.83100 ,-77.05767,APRSWXNET , ,CW9740 Alexandria VA US , +C9741,3,1.000000 ,52.43419 ,4.653310 ,APRSWXNET , ,CW9741 Velserbroek NL , +C9742,3,265.0000 ,42.77150 ,-84.40867,APRSWXNET , ,CW9742 Haslett MI US , +C9745,3,749.8000 ,39.46500 ,-79.30417,APRSWXNET , ,CW9745 Deep Creek MD US , +C9746,3,253.0000 ,37.71038 ,-84.07076,APRSWXNET , ,CW9746 Irvine KY US , +C9747,3,467.0000 ,34.78304 ,-84.42185,APRSWXNET , ,CW9747 Cherrylog GA US , +C9748,3,305.0000 ,57.18450 ,-2.782170,APRSWXNET , ,CW9748 Aberdeen UK , +C9749,3,700.0000 ,37.33533 ,-121.7350,APRSWXNET , ,CW9749 San Jose CA US , +C9751,3,76.00000 ,28.55800 ,-81.72500,APRSWXNET , ,CW9751 Clermont FL US , +C9752,3,1563.600 ,35.08650 ,-106.6288,APRSWXNET , ,CW9752 Albuquerque NM US , +C9753,3,309.0000 ,33.47650 ,-112.3330,APRSWXNET , ,CW9753 Avondale AZ US , +C9754,3,36.60000 ,17.99012 ,-66.05145,APRSWXNET , ,CW9754 Arroyo PR US , +C9756,3,263.0000 ,35.73092 ,-80.82476,APRSWXNET , ,CW9756 Statesville NC US , +C9758,3,269.7000 ,42.80000 ,-76.30000,APRSWXNET , ,CW9758 Skaneateles NY US , +C9759,3,110.0000 ,45.01750 ,9.441170 ,APRSWXNET , ,CW9759 Borgonovo Val Tidone IT , +C9760,3,250.0000 ,42.08667 ,-8.300000,APRSWXNET , ,CW9760 Melgaaso PT , +C9761,3,225.0000 ,32.92833 ,-117.0613,APRSWXNET , ,CW9761 Poway CA US , +C9762,3,390.1000 ,43.65917 ,-90.86367,APRSWXNET , ,CW9762 Westby WI US , +C9763,3,755.9000 ,35.62700 ,-117.8005,APRSWXNET , ,CW9763 Inyokern CA US , +C9764,3,2835.000 ,39.87933 ,-105.4907,APRSWXNET , ,CW9764 Black Hawk CO US , +C9765,3,5.500000 ,27.72181 ,-97.33904,APRSWXNET , ,CW9765 Corpus Christi TX US , +C9767,3,206.0000 ,40.87127 ,-88.86023,APRSWXNET , ,CW9767 Flanagan IL US , +C9768,3,256.0000 ,48.72867 ,9.336170 ,APRSWXNET , ,CW9768 Esslingen DE , +C9769,3,265.0000 ,41.23852 ,-82.29487,APRSWXNET , ,CW9769 Kipton OH US , +C9770,3,33.00000 ,30.12367 ,-95.40217,APRSWXNET , ,CW9770 Spring TX US , +C9773,3,876.3000 ,35.86083 ,-82.19117,APRSWXNET , ,CW9773 Celo NC US , +C9774,3,588.0000 ,42.24234 ,-98.24201,APRSWXNET , ,CW9774 Ewing NE US , +C9775,3,817.0000 ,35.29617 ,-83.40117,APRSWXNET , ,CW9775 Franklin NC US , +C9778,3,20.00000 ,48.77667 ,-122.5623,APRSWXNET , ,CW9778 Bellingham WA US , +C9779,3,2135.000 ,39.06533 ,-104.8853,APRSWXNET , ,CW9779 Monument CO US , +C9780,3,427.0000 ,40.82133 ,-77.96617,APRSWXNET , ,CW9780 Stormstown 3NE PA US , +C9781,3,50.90000 ,32.47783 ,-93.71210,APRSWXNET , ,CW9781 Shreveport LA US , +C9782,3,238.0000 ,47.20446 ,-121.9911,APRSWXNET , ,CW9782 Enumclaw WA US , +C9783,3,6.000000 ,47.13918 ,-122.9032,APRSWXNET , ,CW9783 Boston Harbor WA US , +C9785,3,433.0000 ,42.31500 ,-122.8428,APRSWXNET , ,CW9785 Medford OR US , +C9786,3,12.20000 ,37.41217 ,-122.1348,APRSWXNET , ,CW9786 Palo Alto CA US , +C9788,3,308.0000 ,42.53117 ,-75.52217,APRSWXNET , ,CW9788 Norwich NY US , +C9789,3,83.80000 ,43.30250 ,-77.81200,APRSWXNET , ,CW9789 Hilton NY US , +C9790,3,250.0000 ,30.12033 ,-97.89533,APRSWXNET , ,CW9790 Buda TX US , +C9792,3,212.0000 ,37.88467 ,-86.06814,APRSWXNET , ,CW9792 Flaherty KY US , +C9794,3,20.00000 ,37.44467 ,-122.1768,APRSWXNET , ,CW9794 Menlo Park CA US , +C9795,3,130.0000 ,48.78107 ,-122.4054,APRSWXNET , ,CW9795 Bellingham WA US , +C9796,3,53.00000 ,45.54750 ,-122.6530,APRSWXNET , ,CW9796 Portland OR US , +C9798,3,300.0000 ,37.45500 ,-94.68833,APRSWXNET , ,CW9798 Frontenac KS US , +C9800,3,444.0000 ,45.46900 ,-120.2338,APRSWXNET , ,CW9800 Mikkalo OR US , +C9801,3,117.0000 ,37.93167 ,-78.33600,APRSWXNET , ,CW9801 Lake Monticello VA US , +C9802,3,10.00000 ,37.41033 ,-121.9088,APRSWXNET , ,CW9802 Milpitas CA US , +C9803,3,845.0000 ,45.56042 ,-117.9060,APRSWXNET , ,CW9803 Elgin OR US , +C9804,3,310.0000 ,46.22950 ,15.15283 ,APRSWXNET , ,CW9804 Grize/Zalec Sl , +C9805,3,746.8000 ,47.77663 ,-117.7318,APRSWXNET , ,CW9805 Reardan WA US , +C9806,3,193.2000 ,39.88643 ,-76.88468,APRSWXNET , ,CW9806 Spring Grove PA US , +C9807,3,220.1000 ,36.14500 ,-86.40417,APRSWXNET , ,CW9807 Gladeville TN US , +C9808,3,195.1000 ,35.10078 ,-85.23615,APRSWXNET , ,CW9808 Chattanooga TN US , +C9809,3,222.5000 ,41.57196 ,-73.09392,APRSWXNET , ,CW9809 Watertown CT US , +C9810,3,114.0000 ,35.76959 ,-78.69999,APRSWXNET , ,CW9810 Raleigh NC US , +C9811,3,194.0000 ,35.67416 ,-80.23883,APRSWXNET , ,CW9811 Lexington NC US , +C9812,3,135.0000 ,47.59883 ,-121.9838,APRSWXNET , ,CW9812 Sammamish WA US , +C9813,3,53.00000 ,37.42417 ,138.7778 ,APRSWXNET , ,CW9813 Nagaoka JP , +C9814,3,887.0000 ,34.41167 ,-119.3005,APRSWXNET , ,CW9814 Oak View CA US , +C9816,3,341.0000 ,43.99035 ,-93.58304,APRSWXNET , ,CW9816 Waseca MN US , +C9818,3,40.20000 ,43.76024 ,-70.20196,APRSWXNET , ,CW9818 Cumberland ME US , +C9820,3,228.0000 ,41.86418 ,-73.05996,APRSWXNET , ,CW9820 Torrington CT US , +C9821,3,15.00000 ,44.86466 ,-124.0422,APRSWXNET , ,CW9821 Gleneden Beach OR US , +C9822,3,140.0000 ,44.85967 ,-123.3420,APRSWXNET , ,CW9822 Dallas OR US , +C9823,3,1732.000 ,44.27683 ,-96.12983,APRSWXNET , ,CW9823 Tyler MN US , +C9824,3,502.0000 ,32.60667 ,-99.68967,APRSWXNET , ,CW9824 Abilene TX US , +C9825,3,276.0000 ,46.88749 ,-96.74766,APRSWXNET , ,CW9825 Moorhead MN US , +C9827,3,-2.000000,52.66833 ,4.841500 ,APRSWXNET , ,CW9827 Heerhugowaard NL , +C9829,3,45.00000 ,37.06617 ,-8.051670,APRSWXNET , ,CW9829 Almancil PT , +C9830,3,370.0000 ,65.60000 ,18.81200 ,APRSWXNET , ,CW9830 Arvidsjaur SE , +C9831,3,115.0000 ,47.27408 ,-122.3629,APRSWXNET , ,CW9831 Tacoma WA US , +C9832,3,90.00000 ,33.37383 ,-82.02833,APRSWXNET , ,CW9832 Gracewood GA US , +C9833,3,20.00000 ,-41.42618,147.1405 ,APRSWXNET , ,CW9833 Launceston TAS AU , +C9837,3,54.90000 ,29.68883 ,-82.38333,APRSWXNET , ,CW9837 Gainesville FL US , +C9838,3,120.0000 ,50.89000 ,4.316170 ,APRSWXNET , ,CW9838 Brussels BE , +C9839,3,446.0000 ,48.85200 ,9.883000 ,APRSWXNET , ,CW9839 Leinzell DE , +C9843,3,1530.000 ,39.54217 ,-119.8625,APRSWXNET , ,CW9843 Reno NV US , +C9844,3,77.00000 ,46.86383 ,-71.32550,APRSWXNET , ,CW9844 Quebec PQ CA , +C9845,3,51.50000 ,57.40000 ,-1.900000,APRSWXNET , ,CW9845 Ellon UK UK , +C9846,3,1539.000 ,44.51667 ,-109.0950,APRSWXNET , ,CW9846 Cody WY US , +C9847,3,7.000000 ,36.91117 ,-121.7675,APRSWXNET , ,CW9847 Watsonville CA US , +C9848,3,193.0000 ,41.58500 ,-83.62483,APRSWXNET , ,CW9848 Maumee OH US , +C9849,3,30.00000 ,49.96067 ,-6.284000,APRSWXNET , ,CW9849 Isles of Scilly UK , +C9854,3,176.0000 ,43.07783 ,-78.80050,APRSWXNET , ,CW9854 Pendleton NY US , +C9855,3,40.00000 ,-27.59600,-48.58800,APRSWXNET , ,CW9855 Florianopolis BR , +C9856,3,900.0000 ,-10.00033,36.30033 ,APRSWXNET , ,CW9856 Likuyu Seka TZ , +C9859,3,98.00000 ,48.68967 ,1.978330 ,APRSWXNET , ,CW9859 Dampiarre FR , +C9861,3,267.0000 ,43.09477 ,-85.46757,APRSWXNET , ,CW9861 Rockford MI US , +C9862,3,480.0000 ,48.45300 ,-101.2190,APRSWXNET , ,CW9862 Glenburn ND US , +C9863,3,10.00000 ,28.30833 ,-82.67083,APRSWXNET , ,CW9863 Port Richey FL US , +C9864,3,639.0000 ,44.20000 ,-81.60000,APRSWXNET , ,CW9864 Kincardine ON CA , +C9865,3,411.0000 ,42.79333 ,-74.17617,APRSWXNET , ,CW9865 Duanesburg NY US , +C9868,3,348.0000 ,40.78333 ,-77.84167,APRSWXNET , ,CW9868 State College PA US , +C9869,3,11.00000 ,51.45786 ,-3.181740,APRSWXNET , ,CW9869 Cardiff UK , +C9871,3,158.8000 ,43.11217 ,-77.28133,APRSWXNET , ,CW9871 Walworth NY US , +C9872,3,4.000000 ,30.49183 ,-88.10317,APRSWXNET , ,CW9872 Theodore AL US , +C9873,3,260.6000 ,42.39250 ,-76.41533,APRSWXNET , ,CW9873 Brooktondale NY US , +C9874,3,380.4000 ,39.61856 ,-79.95537,APRSWXNET , ,CW9874 Morgantown WV US , +C9875,3,18.00000 ,37.56450 ,-5.858330,APRSWXNET , ,CW9875 Sevilla ES , +C9876,3,631.0000 ,30.04688 ,-99.47275,APRSWXNET , ,CW9876 Hunt TX US , +C9877,3,86.90000 ,41.50950 ,-74.03500,APRSWXNET , ,CW9877 Newburgh NY US , +C9878,3,1832.000 ,38.80450 ,-104.7450,APRSWXNET , ,CW9878 Colorado Springs CO US , +C9879,3,611.1000 ,37.13561 ,-80.52345,APRSWXNET , ,CW9879 Radford VA US , +C9880,3,45.00000 ,39.53867 ,-0.350000,APRSWXNET , ,CW9880 Foios ES , +C9881,3,223.1000 ,42.72767 ,-85.73906,APRSWXNET , ,CW9881 Dorr MI US , +C9882,3,451.0000 ,33.72550 ,-117.2138,APRSWXNET , ,CW9882 Sun City CA US , +C9883,3,327.4000 ,34.01491 ,-84.48559,APRSWXNET , ,CW9883 Marietta GA US , +C9885,3,90.00000 ,42.28333 ,-83.85133,APRSWXNET , ,CW9885 Ann Arbor/Scio Twp. MI US , +C9887,3,264.1000 ,43.47467 ,-71.60500,APRSWXNET , ,CW9887 Tilton NH US , +C9888,3,80.00000 ,32.18333 ,34.87667 ,APRSWXNET , ,CW9888 Tel-Aviv IL , +C9890,3,570.0000 ,33.74317 ,-116.8875,APRSWXNET , ,CW9890 Hemet CA US , +C9893,3,180.0000 ,-37.73467,144.4350 ,APRSWXNET , ,CW9893 Bacchus Marsh AU , +C9895,3,43.00000 ,50.88118 ,-1.199730,APRSWXNET , ,CW9895 Knowle Village UK , +C9897,3,374.0000 ,42.46496 ,-75.05991,APRSWXNET , ,CW9897 Oneonta NY US , +C9898,3,488.0000 ,37.14000 ,-92.76000,APRSWXNET , ,CW9898 Seymour MO US , +C9899,3,128.0000 ,38.93167 ,-77.37583,APRSWXNET , ,CW9899 Reston VA US , +C9900,3,136.0000 ,35.78049 ,-88.85887,APRSWXNET , ,CW9900 Humboldt TN US , +C9901,3,236.0000 ,40.74033 ,-89.58183,APRSWXNET , ,CW9901 Peoria Heights IL US , +C9902,3,2934.000 ,43.91667 ,-116.2333,APRSWXNET , ,CW9902 Boise City ID US , +C9903,3,33.00000 ,50.53050 ,-3.564830,APRSWXNET , ,CW9903 NewtonAbbot UK , +C9904,3,75.00000 ,-27.18000,152.8330 ,APRSWXNET , ,CW9904 Dayboro AU , +C9905,3,251.5000 ,40.06700 ,-75.84867,APRSWXNET , ,CW9905 Honey Brook PA US , +C9908,3,53.00000 ,56.34583 ,10.12500 ,APRSWXNET , ,CW9908 Hadbjerg DK , +C9909,3,70.70000 ,37.58667 ,-77.78367,APRSWXNET , ,CW9909 Midlothian VA US , +C9910,3,305.0000 ,43.28883 ,-80.38417,APRSWXNET , ,CW9910 Ayr ON CA , +C9912,3,2325.600 ,37.76342 ,-106.0928,APRSWXNET , ,CW9912 Center CO US , +C9914,3,481.0000 ,43.00300 ,-7.553830,APRSWXNET , ,CW9914 Lugo ES , +C9916,3,6.000000 ,40.66667 ,-74.23333,APRSWXNET , ,CW9916 Elizabeth NJ US , +C9917,3,20.00000 ,51.41705 ,-0.433550,APRSWXNET , ,CW9917 Sunbury on Thames UK , +C9920,3,242.6000 ,39.53967 ,-85.80300,APRSWXNET , ,CW9920 Shelbyville IN US , +C9921,3,319.0000 ,35.54750 ,-86.05533,APRSWXNET , ,CW9921 Manchester TN US , +C9922,3,1051.600 ,39.49133 ,-101.6325,APRSWXNET , ,CW9922 Goodland KS US , +C9923,3,207.0000 ,15.20700 ,145.7513 ,APRSWXNET , ,CW9923 EMO Capitol Hill MP US , +C9925,3,1380.100 ,40.24721 ,-111.7085,APRSWXNET , ,CW9925 Provo UT US , +C9926,3,25.00000 ,39.11833 ,-76.64250,APRSWXNET , ,CW9926 Millersville MD US , +C9927,3,57.60000 ,36.94720 ,-121.4111,APRSWXNET , ,CW9927 Hollister CA US , +C9928,3,108.0000 ,43.18083 ,-79.04450,APRSWXNET , ,CW9928 Lewiston NY US , +C9930,3,1550.000 ,42.95167 ,-0.802670,APRSWXNET , ,CW9930 Isaba ES , +C9931,3,191.1000 ,40.11067 ,-87.63932,APRSWXNET , ,CW9931 Danville IL US , +C9932,3,126.8000 ,53.71450 ,-1.713670,APRSWXNET , ,CW9932 Leeds UK , +C9933,3,420.0000 ,46.35217 ,15.10783 ,APRSWXNET , ,CW9933 Velenje Sl , +C9934,3,21.00000 ,42.26411 ,3.071920 ,APRSWXNET , ,CW9934 Castello Empuries ES , +C9936,3,167.3000 ,32.82969 ,-96.64861,APRSWXNET , ,CW9936 Mesquite TX US , +C9937,3,210.0000 ,39.15111 ,-89.69722,APRSWXNET , ,CW9937 Litchfield IL US , +C9939,3,655.0000 ,33.20167 ,-116.9373,APRSWXNET , ,CW9939 Valley Center CA US , +C9940,3,820.0000 ,60.82883 ,7.506170 ,APRSWXNET , ,CW9940 Aurdalsvatnet NO , +C9941,3,1140.000 ,60.35917 ,8.480500 ,APRSWXNET , ,CW9941 Torsetvatnet NO , +C9943,3,20.00000 ,52.46817 ,-0.467500,APRSWXNET , ,CW9943 Oundle UK , +C9944,3,96.00000 ,59.11452 ,9.656810 ,APRSWXNET , ,CW9944 Porsgrunn NO , +C9945,3,1.000000 ,27.19638 ,-80.29255,APRSWXNET , ,CW9945 Palm City FL US , +C9948,3,480.7000 ,34.20633 ,-118.1738,APRSWXNET , ,CW9948 La Canada Flintridge CA US , +C9949,3,289.0000 ,34.97441 ,-82.34645,APRSWXNET , ,CW9949 Taylors SC US , +C9951,3,46.60000 ,38.76567 ,-121.2752,APRSWXNET , ,CW9951 Roseville CA US , +C9953,3,155.0000 ,48.42725 ,-123.5114,APRSWXNET , ,CW9953 Victoria BC CA , +C9954,3,101.0000 ,35.86878 ,-78.39904,APRSWXNET , ,CW9954 Wendell NC US , +C9956,3,47.00000 ,45.31300 ,-73.37167,APRSWXNET , ,CW9956 St-Jean-sur-Richelieu PQ CA , +C9958,3,20.00000 ,66.00000 ,13.00000 ,APRSWXNET , ,CW9958 Alteren NO , +C9962,3,10.00000 ,26.52833 ,-80.06633,APRSWXNET , ,CW9962 West Palm Beach FL US , +C9966,3,9.000000 ,28.92450 ,-81.26533,APRSWXNET , ,CW9966 Deltona FL US , +C9969,3,30.00000 ,33.55437 ,-117.8195,APRSWXNET , ,CW9969 Laguna Beach CA US , +C9972,3,100.0000 ,37.29367 ,15.01000 ,APRSWXNET , ,CW9972 Catania IT , +C9973,3,320.0000 ,37.56083 ,15.10833 ,APRSWXNET , ,CW9973 San Gregorio di Catania IT , +C9974,3,1744.000 ,39.56867 ,-104.3475,APRSWXNET , ,CW9974 Strasburg CO US , +C9977,3,1935.000 ,37.70083 ,14.99967 ,APRSWXNET , ,CW9977 Nicolosi-Etna Sud IT , +C9979,3,70.40000 ,31.99550 ,-90.96050,APRSWXNET , ,CW9979 Port Gibson MS US , +C9983,3,79.00000 ,50.96033 ,-4.140330,APRSWXNET , ,CW9983 Gt Torrington UK , +C9985,3,17.00000 ,-22.90223,-43.22283,APRSWXNET , ,CW9985 Rio de Janeiro BR , +C9987,3,225.0000 ,42.84217 ,-85.83500,APRSWXNET , ,CW9987 Jamestown MI US , +C9988,3,60.00000 ,58.81967 ,5.746330 ,APRSWXNET , ,CW9988 Sandnes NO , +C9989,3,1.000000 ,53.20983 ,7.039000 ,APRSWXNET , ,CW9989 Oostwold NL , +C9991,3,1333.000 ,41.15600 ,-112.0495,APRSWXNET , ,CW9991 Roy UT US , +C9995,3,278.9000 ,36.36217 ,-92.41283,APRSWXNET , ,CW9995 Mountain Home AR US , +C9999,3,5.500000 ,24.55325 ,-81.78858,APRSWXNET , ,CW9999 WFO Key West FL US , +DIOA2,3,7.600000 ,65.75860 ,-168.9530,APRSWXNET , ,DIOA2 Diomede School AK US , +DJSA2,3,355.0000 ,64.04080 ,-145.7108,APRSWXNET , ,DJSA2 Delta Junction School AK US , +D0000,3,200.0000 ,-37.11667,174.5833 ,APRSWXNET , ,DW0000 Auckland NZ , +D0008,3,37.00000 ,53.56500 ,9.825500 ,APRSWXNET , ,DW0008 Hamburg DE , +D0011,3,18.00000 ,28.68017 ,-82.16167,APRSWXNET , ,DW0011 Bushnell FL US , +D0014,3,163.0000 ,41.47950 ,-73.19767,APRSWXNET , ,DW0014 Southbury CT US , +D0015,3,42.00000 ,37.35440 ,-77.45866,APRSWXNET , ,DW0015 Chester VA US , +D0017,3,31.00000 ,41.71547 ,-72.71927,APRSWXNET , ,DW0017 Newington CT US , +D0018,3,2303.000 ,39.70300 ,-105.2787,APRSWXNET , ,DW0018 Genesee CO US , +D0019,3,315.0000 ,40.85452 ,-81.50931,APRSWXNET , ,DW0019 Massillon OH US , +D0021,3,377.0000 ,40.81146 ,-77.90157,APRSWXNET , ,DW0021 State College PA US , +D0023,3,208.8000 ,41.84117 ,-88.04633,APRSWXNET , ,DW0023 Glen Ellyn IL US , +D0026,3,1370.000 ,39.62500 ,-119.6903,APRSWXNET , ,DW0026 Sparks NV US , +D0028,3,237.0000 ,39.81833 ,-86.38000,APRSWXNET , ,DW0028 Brownsburg IN US , +D0029,3,534.0000 ,25.59100 ,-100.2540,APRSWXNET , ,DW0029 Monterrey MX , +D0030,3,10.00000 ,54.96333 ,-1.675500,APRSWXNET , ,DW0030 Gateshead TW UK , +D0031,3,79.20000 ,40.03417 ,-75.22200,APRSWXNET , ,DW0031 Phila PA US , +D0032,3,255.0000 ,42.89133 ,-85.34583,APRSWXNET , ,DW0032 Lowell MI US , +D0033,3,80.00000 ,42.32783 ,-71.63450,APRSWXNET , ,DW0033 Northboro MA US , +D0036,3,632.0000 ,42.22667 ,-75.03408,APRSWXNET , ,DW0036 Hamden NY US , +D0037,3,6.000000 ,40.67133 ,-74.11800,APRSWXNET , ,DW0037 Bayonne NJ US , +D0038,3,11.00000 ,44.81367 ,11.68750 ,APRSWXNET , ,DW0038 Ferrara IT , +D0039,3,605.0000 ,48.47217 ,8.458330 ,APRSWXNET , ,DW0039 Freudenstadt DE , +D0044,3,607.8000 ,32.84017 ,-116.7688,APRSWXNET , ,DW0044 Alpine CA US , +D0045,3,766.0000 ,37.40000 ,-105.4000,APRSWXNET , ,DW0045 Fort Garland CO US , +D0048,3,786.4000 ,43.70950 ,-116.3805,APRSWXNET , ,DW0048 Eagle ID US , +D0049,3,0.000000 ,41.67133 ,-69.95000,APRSWXNET , ,DW0049 Chatham MA US , +D0050,3,1436.000 ,-29.05417,26.18800 ,APRSWXNET , ,DW0050 Bloemfontein ZA , +D0051,3,289.0000 ,48.18500 ,15.98283 ,APRSWXNET , ,DW0051 Eichgraben AT , +D0053,3,6.000000 ,51.76083 ,5.502500 ,APRSWXNET , ,DW0053 Oss NL , +D0054,3,609.0000 ,36.62680 ,-82.22866,APRSWXNET , ,DW0054 Bristol VA US , +D0055,3,100.0000 ,32.72500 ,-117.1592,APRSWXNET , ,DW0055 San Diego CA US , +D0056,3,183.0000 ,41.21763 ,-73.50086,APRSWXNET , ,DW0056 Vista NY US , +D0057,3,209.0000 ,57.03699 ,-2.724010,APRSWXNET , ,DW0057 Aboyne UK , +D0058,3,15.00000 ,34.88385 ,-77.57305,APRSWXNET , ,DW0058 Richlands NC US , +D0060,3,399.0000 ,42.25920 ,-79.48490,APRSWXNET , ,DW0060 Mayville NY US , +D0062,3,1166.000 ,32.87500 ,-116.6383,APRSWXNET , ,DW0062 Descanso CA US , +D0063,3,3048.000 ,39.81133 ,-105.6437,APRSWXNET , ,DW0063 Idaho Springs CO US , +D0065,3,192.0000 ,43.55417 ,-84.24267,APRSWXNET , ,DW0065 Midland MI US , +D0066,3,125.0000 ,46.17717 ,-122.9732,APRSWXNET , ,DW0066 Longview WA US , +D0067,3,82.00000 ,51.19480 ,-1.904010,APRSWXNET , ,DW0067 Amesbury UK , +D0068,3,86.90000 ,42.88167 ,-71.54200,APRSWXNET , ,DW0068 Merrimack NH US , +D0069,3,256.1000 ,45.98117 ,-118.4017,APRSWXNET , ,DW0069 Ferndale OR US , +D0071,3,360.0000 ,33.70000 ,-87.80000,APRSWXNET , ,DW0071 Fayette AL US , +D0073,3,120.0000 ,40.59167 ,-74.35633,APRSWXNET , ,DW0073 Edison NJ US , +D0074,3,238.0000 ,41.75583 ,-85.98617,APRSWXNET , ,DW0074 Elkhart IN US , +D0075,3,136.2000 ,39.29717 ,-77.83500,APRSWXNET , ,DW0075 Charles Town WV US , +D0077,3,150.0000 ,37.37350 ,-122.2002,APRSWXNET , ,DW0077 Portola Valley CA US , +D0079,3,1.000000 ,29.83467 ,-93.96200,APRSWXNET , ,DW0079 Port Arthur TX US , +D0080,3,476.0000 ,-31.04368,151.0629 ,APRSWXNET , ,DW0080 Kootingal AU , +D0081,3,99.60000 ,34.16917 ,-89.67333,APRSWXNET , ,DW0081 Water Valley MS US , +D0082,3,335.0000 ,37.14083 ,-79.80917,APRSWXNET , ,DW0082 Hardy VA US , +D0083,3,241.0000 ,38.38513 ,-0.769990,APRSWXNET , ,DW0083 Novelda ES , +D0084,3,42.00000 ,55.72250 ,12.50167 ,APRSWXNET , ,DW0084 Copenhagen DK , +D0085,3,50.00000 ,43.88167 ,11.04117 ,APRSWXNET , ,DW0085 Prato IT , +D0086,3,548.0000 ,-18.15283,-49.47000,APRSWXNET , ,DW0086 Panama BR , +D0088,3,26.20000 ,51.39633 ,5.293670 ,APRSWXNET , ,DW0088 Hoogeloon NL , +D0089,3,414.2000 ,44.56731 ,-71.92514,APRSWXNET , ,DW0089 East Burke VT US , +D0090,3,17.70000 ,42.11807 ,-72.61850,APRSWXNET , ,DW0090 Springfield MA US , +D0094,3,2075.000 ,40.74484 ,-111.6033,APRSWXNET , ,DW0094 Summit Park UT US , +D0095,3,2.700000 ,51.28009 ,1.331530 ,APRSWXNET , ,DW0095 Sandwich UK , +D0096,3,100.6000 ,48.10000 ,-123.4133,APRSWXNET , ,DW0096 Port Angeles WA US , +D0097,3,86.00000 ,51.31950 ,-0.091330,APRSWXNET , ,DW0097 Kenley UK , +D0098,3,317.0000 ,43.77917 ,-89.73450,APRSWXNET , ,DW0098 Oxford WI US , +D0099,3,90.00000 ,51.74533 ,7.891670 ,APRSWXNET , ,DW0099 Ahlen/WestFALEN DE , +D0100,3,132.2500 ,64.83833 ,-147.8170,APRSWXNET , ,DW0100 Fairbanks AK US , +D0101,3,387.1000 ,36.19033 ,-83.37667,APRSWXNET , ,DW0101 Morristown TN US , +D0102,3,124.0000 ,37.94976 ,-77.94064,APRSWXNET , ,DW0102 Louisa VA US , +D0103,3,80.00000 ,-35.19312,173.9395 ,APRSWXNET , ,DW0103 Kerikeri NZ , +D0107,3,2.400000 ,26.08033 ,-80.27950,APRSWXNET , ,DW0107 Davie FL US , +D0108,3,198.1000 ,32.70300 ,-97.46667,APRSWXNET , ,DW0108 Benbrook TX US , +D0109,3,146.3000 ,39.44900 ,-77.75880,APRSWXNET , ,DW0109 Sharpsburg MD US , +D0110,3,183.0000 ,43.11217 ,-77.41450,APRSWXNET , ,DW0110 Fairport NY US , +D0112,3,65.00000 ,-38.15717,145.1170 ,APRSWXNET , ,DW0112 Frankston AU , +D0113,3,781.0000 ,41.50354 ,1.186780 ,APRSWXNET , ,DW0113 Belltall ES , +D0115,3,100.0000 ,51.02867 ,-0.218330,APRSWXNET , ,DW0115 Warninglid UK , +D0116,3,51.50000 ,38.58383 ,-77.61983,APRSWXNET , ,DW0116 Catlett VA US , +D0117,3,261.0000 ,36.45117 ,-118.8962,APRSWXNET , ,DW0117 Three Rivers Museum CA US , +D0118,3,85.00000 ,-41.12071,174.9191 ,APRSWXNET , ,DW0118 Pauatahanui NZ , +D0120,3,2.000000 ,60.86367 ,7.117500 ,APRSWXNET , ,DW0120 Flaam NO , +D0123,3,316.0000 ,33.72834 ,-86.55832,APRSWXNET , ,DW0123 Clay AL US , +D0125,3,77.00000 ,51.40583 ,-0.761170,APRSWXNET , ,DW0125 Bracknell UK , +D0126,3,86.30000 ,46.85617 ,-122.8523,APRSWXNET , ,DW0126 Tenino WA US , +D0127,3,67.00000 ,42.52967 ,-71.27217,APRSWXNET , ,DW0127 Billerica MA US , +D0128,3,63.00000 ,58.99167 ,24.82917 ,APRSWXNET , ,DW0128 Rapla EE , +D0129,3,179.0000 ,43.11837 ,-77.86998,APRSWXNET , ,DW0129 Churchville NY US , +D0130,3,28.00000 ,51.59383 ,0.661430 ,APRSWXNET , ,DW0130 Hawkwell UK , +D0131,3,147.8000 ,39.65033 ,-87.40250,APRSWXNET , ,DW0131 Clinton IN US , +D0132,3,134.0000 ,43.71417 ,-79.35633,APRSWXNET , ,DW0132 Toronto East York ON CA , +D0133,3,253.0000 ,34.55467 ,-82.98467,APRSWXNET , ,DW0133 Fair Play SC US , +D0139,3,26.00000 ,39.37483 ,22.92550 ,APRSWXNET , ,DW0139 Volos GR , +D0140,3,143.6000 ,38.77467 ,-121.2147,APRSWXNET , ,DW0140 Rocklin CA US , +SASA2,3,25.30000 ,60.13530 ,-149.3748,APRSWXNET , ,DW0141 Seward Nash Woods AK US , +D0142,3,175.0000 ,55.94083 ,13.78967 ,APRSWXNET , ,DW0142 Linderod SE , +D0143,3,1.000000 ,53.64267 ,14.50467 ,APRSWXNET , ,DW0143 Szczecin PL , +D0144,3,198.0000 ,36.82200 ,-4.705500,APRSWXNET , ,DW0144 Alora ES , +D0145,3,43.00000 ,39.80667 ,-75.46833,APRSWXNET , ,DW0145 Claymont DE US , +D0148,3,233.8400 ,35.68393 ,-84.70676,APRSWXNET , ,DW0148 Euchee TN US , +D0149,3,20.00000 ,28.64167 ,-81.13133,APRSWXNET , ,DW0149 Chuluota FL US , +D0150,3,358.0000 ,34.16454 ,-85.92665,APRSWXNET , ,DW0150 Gadsden AL US , +D0151,3,802.0000 ,48.78292 ,-117.2879,APRSWXNET , ,DW0151 Ione WA US , +D0152,3,18.00000 ,50.92875 ,4.533420 ,APRSWXNET , ,DW0152 Brussels BE , +D0153,3,61.00000 ,51.08283 ,-1.909500,APRSWXNET , ,DW0153 Salisbury UK , +D0155,3,120.0000 ,48.84600 ,1.900000 ,APRSWXNET , ,DW0155 Beynes FR , +D0156,3,48.00000 ,-34.97000,138.5922 ,APRSWXNET , ,DW0156 Westbourne Park AU , +D0158,3,299.0000 ,44.44633 ,-93.15033,APRSWXNET , ,DW0158 Northfield MN US , +D0159,3,367.0000 ,30.61667 ,-96.31667,APRSWXNET , ,DW0159 College Station TX US , +D0160,3,93.90000 ,44.75067 ,-122.9347,APRSWXNET , ,DW0160 Turner OR US , +D0161,3,100.0000 ,41.16667 ,-87.83117,APRSWXNET , ,DW0161 Bourbonnais IL US , +D0162,3,304.0000 ,33.77550 ,-118.3708,APRSWXNET , ,DW0162 Rancho Palos Verdes CA US , +D0165,3,169.0000 ,38.83767 ,-90.72867,APRSWXNET , ,DW0165 Ofallon MO US , +D0169,3,87.00000 ,57.42055 ,10.47899 ,APRSWXNET , ,DW0169 Frederikshavn DK , +D0170,3,1356.000 ,46.35450 ,7.025170 ,APRSWXNET , ,DW0170 Leysin CH , +D0173,3,310.3000 ,41.72217 ,-73.61417,APRSWXNET , ,DW0173 Dover Plains NY US , +D0174,3,534.0000 ,36.45200 ,-121.7880,APRSWXNET , ,DW0174 Carmel Valley CA US , +D0176,3,254.5000 ,34.21333 ,-118.8637,APRSWXNET , ,DW0176 Thousand Oaks CA US , +D0179,3,307.0000 ,-32.45417,118.0125 ,APRSWXNET , ,DW0179 Corrigin AU , +D0180,3,121.0000 ,32.50000 ,-88.85200,APRSWXNET , ,DW0180 Collinsville MS US , +D0182,3,25.00000 ,51.36283 ,4.981670 ,APRSWXNET , ,DW0182 Ravels BE , +D0184,3,47.00000 ,37.14000 ,-92.76000,APRSWXNET , ,DW0184 Seymour MO US , +D0185,3,2012.000 ,38.94324 ,-104.8545,APRSWXNET , ,DW0185 Colorado Springs CO US , +D0186,3,83.80000 ,37.33617 ,-122.0575,APRSWXNET , ,DW0186 Sunnyvale CA US , +D0190,3,158.0000 ,41.30000 ,-72.50000,APRSWXNET , ,DW0190 Clinton CT US , +D0191,3,125.2000 ,38.02983 ,-87.51717,APRSWXNET , ,DW0191 Evansville IN US , +D0194,3,316.7000 ,44.57600 ,-90.69600,APRSWXNET , ,DW0194 Neillsville WI US , +D0195,3,312.0000 ,34.44783 ,-119.1725,APRSWXNET , ,DW0195 Ojai CA US , +D0198,3,27.00000 ,51.33450 ,5.095830 ,APRSWXNET , ,DW0198 Arendonk BE , +D0200,3,334.0000 ,43.33517 ,-80.75533,APRSWXNET , ,DW0200 Tavistock ON CA , +D0201,3,130.0000 ,51.21083 ,-0.983500,APRSWXNET , ,DW0201 Farringdon UK , +D0202,3,408.0000 ,38.40950 ,-78.96117,APRSWXNET , ,DW0202 Dayton VA US , +D0205,3,240.0000 ,30.66667 ,-97.70833,APRSWXNET , ,DW0205 Georgetown TX US , +D0207,3,2209.500 ,36.35953 ,-105.5679,APRSWXNET , ,DW0207 Ranchos de Taos NM US , +D0208,3,308.0000 ,33.57944 ,-117.1962,APRSWXNET , ,DW0208 Murrieta CA US , +D0209,3,236.5000 ,39.38123 ,-82.85491,APRSWXNET , ,DW0209 Chillicothe OH US , +D0210,3,209.0000 ,40.89767 ,-86.65250,APRSWXNET , ,DW0210 Headlee IN US , +D0212,3,150.0000 ,50.93200 ,11.59100 ,APRSWXNET , ,DW0212 Jena DE , +D0213,3,195.5000 ,33.53787 ,-85.97205,APRSWXNET , ,DW0213 Munford AL US , +D0214,3,39.00000 ,54.93016 ,9.442510 ,APRSWXNET , ,DW0214 Aabenraa DK , +D0215,3,60.00000 ,40.58322 ,22.95498 ,APRSWXNET , ,DW0215 Kalamaria GR , +D0216,3,0.000000 ,30.45500 ,-97.99200,APRSWXNET , ,DW0216 Lago Vista TX US , +D0217,3,834.5000 ,48.92550 ,-109.6222,APRSWXNET , ,DW0217 Havre MT US , +D0218,3,32.00000 ,50.89967 ,-1.395500,APRSWXNET , ,DW0218 Southampton UK , +D0219,3,23.00000 ,40.71664 ,-73.48941,APRSWXNET , ,DW0219 Seaford NY US , +D0220,3,161.5000 ,32.32617 ,-96.62667,APRSWXNET , ,DW0220 Ennis TX US , +D0221,3,2469.000 ,38.84300 ,-106.1647,APRSWXNET , ,DW0221 Buena Vista CO US , +D0222,3,50.60000 ,42.24847 ,-73.76503,APRSWXNET , ,DW0222 Hudson NY US , +D0224,3,445.0000 ,47.06383 ,7.091170 ,APRSWXNET , ,DW0224 Neuchactel CH , +D0225,3,2.000000 ,26.02250 ,-80.17283,APRSWXNET , ,DW0225 Hollywood FL US , +D0226,3,13.00000 ,38.28250 ,-76.77333,APRSWXNET , ,DW0226 Bushwood MD US , +D0227,3,640.0000 ,46.65450 ,-68.00550,APRSWXNET , ,DW0227 Presque Isle ME US , +D0228,3,106.7000 ,45.34867 ,-122.3620,APRSWXNET , ,DW0228 Eagle Creek OR US , +D0229,3,335.3000 ,37.70735 ,-92.98536,APRSWXNET , ,DW0229 Buffalo MO US , +D0230,3,416.0000 ,40.11128 ,-80.61310,APRSWXNET , ,DW0230 Triadelphia WV US , +D0231,3,1324.000 ,40.68000 ,-111.8478,APRSWXNET , ,DW0231 Holladay UT US , +D0233,3,256.0000 ,40.25467 ,-75.65500,APRSWXNET , ,DW0233 Pottstown PA US , +D0236,3,100.0000 ,39.11367 ,-77.45500,APRSWXNET , ,DW0236 Poolesville MD US , +D0238,3,12.00000 ,43.70850 ,10.39183 ,APRSWXNET , ,DW0238 Pisa IT , +D0240,3,23.00000 ,31.28383 ,-92.49383,APRSWXNET , ,DW0240 Alexandria LA US , +D0241,3,915.0000 ,35.37783 ,-82.29233,APRSWXNET , ,DW0241 Edneyville NC US , +D0243,3,280.0000 ,50.68700 ,8.362830 ,APRSWXNET , ,DW0243 Herborn DE , +D0244,3,1463.600 ,39.08033 ,-108.6700,APRSWXNET , ,DW0244 Grand Junction CO US , +D0247,3,0.000000 ,52.27217 ,4.822330 ,APRSWXNET , ,DW0247 Amstelveen NL , +D0249,3,55.80000 ,47.11324 ,-122.7727,APRSWXNET , ,DW0249 Olympia WA US , +D0251,3,233.0000 ,39.18583 ,-86.77833,APRSWXNET , ,DW0251 Spencer IN US , +D0252,3,-1.000000,51.47717 ,3.558000 ,APRSWXNET , ,DW0252 Koudekerke NL , +D0255,3,45.00000 ,42.61283 ,-71.26167,APRSWXNET , ,DW0255 Tewksbury MA US , +D0256,3,22.00000 ,60.01000 ,5.200000 ,APRSWXNET , ,DW0256 Bergen NO , +D0257,3,252.0000 ,44.67483 ,-93.65202,APRSWXNET , ,DW0257 Jordan MN US , +D0258,3,564.0000 ,46.73769 ,-121.9644,APRSWXNET , ,DW0258 Ashford WA US , +D0259,3,15.00000 ,30.24000 ,-93.18000,APRSWXNET , ,DW0259 Lake Charles LA US , +D0261,3,353.6000 ,41.09933 ,-95.95983,APRSWXNET , ,DW0261 Bellevue NE US , +D0262,3,32.30000 ,30.98249 ,-88.41768,APRSWXNET , ,DW0262 Earlville AL US , +D0263,3,41.00000 ,46.00950 ,-122.8450,APRSWXNET , ,DW0263 Kalama WA US , +D0265,3,60.00000 ,51.29133 ,-0.320330,APRSWXNET , ,DW0265 Leatherhead UK , +D0266,3,1335.000 ,42.69050 ,-120.5450,APRSWXNET , ,DW0266 Paisley OR US , +D0268,3,80.00000 ,36.36617 ,-89.93500,APRSWXNET , ,DW0268 Peach Orchard MO US , +D0270,3,379.0000 ,43.22467 ,-93.40667,APRSWXNET , ,DW0270 Mason City IA US , +D0271,3,3.000000 ,26.14067 ,-80.12800,APRSWXNET , ,DW0271 Fort Lauderdale FL US , +D0273,3,689.0000 ,37.32833 ,-119.6525,APRSWXNET , ,DW0273 Oakhurst CA US , +D0274,3,1345.000 ,34.89929 ,-118.6520,APRSWXNET , ,DW0274 Gorman CA US , +D0275,3,172.0000 ,40.99367 ,-74.35417,APRSWXNET , ,DW0275 Butler NJ US , +D0278,3,985.0000 ,35.25417 ,-83.68617,APRSWXNET , ,DW0278 Topton NC US , +D0281,3,20.00000 ,53.88000 ,9.534170 ,APRSWXNET , ,DW0281 Itzehoe DE , +D0282,3,46.00000 ,38.39800 ,-76.66250,APRSWXNET , ,DW0282 Mechanicsville MD US , +D0283,3,21.00000 ,28.16067 ,-81.50183,APRSWXNET , ,DW0283 Poinciana FL US , +D0284,3,301.3000 ,33.83850 ,-84.37482,APRSWXNET , ,DW0284 Atlanta GA US , +D0285,3,690.8000 ,43.19283 ,-99.65417,APRSWXNET , ,DW0285 Colome SD US , +D0286,3,652.0000 ,35.20000 ,-82.50000,APRSWXNET , ,DW0286 Hendersonville NC US , +D0287,3,67.00000 ,41.67100 ,-72.91300,APRSWXNET , ,DW0287 Bristol CT US , +D0288,3,11.00000 ,48.30413 ,-122.7134,APRSWXNET , ,DW0288 Oak Harbor WA US , +D0292,3,250.0000 ,33.80300 ,-86.79633,APRSWXNET , ,DW0292 Remlap AL US , +D0294,3,167.0000 ,42.15077 ,-71.54473,APRSWXNET , ,DW0294 Milford MA US , +D0295,3,1948.000 ,38.07550 ,-104.9847,APRSWXNET , ,DW0295 Beulah CO US , +D0296,3,340.0000 ,35.11291 ,-97.38311,APRSWXNET , ,DW0296 Noble OK US , +D0297,3,46.00000 ,51.60033 ,-2.862830,APRSWXNET , ,DW0297 Newport UK , +D0298,3,43.00000 ,46.00000 ,-65.00000,APRSWXNET , ,DW0298 Colpitts Settlement NB CA , +D0301,3,714.0000 ,34.86300 ,-87.13217,APRSWXNET , ,DW0301 Athens AL US , +D0302,3,365.0000 ,35.47067 ,-97.22617,APRSWXNET , ,DW0302 Choctaw OK US , +D0303,3,23.20000 ,52.13967 ,-0.293000,APRSWXNET , ,DW0303 Sandy UK , +D0304,3,248.7000 ,39.66617 ,-77.39333,APRSWXNET , ,DW0304 Thurmont MD US , +D0306,3,33.00000 ,-32.74583,151.7588 ,APRSWXNET , ,DW0306 Raymond Terrace NSW AU , +D0307,3,702.0000 ,49.05020 ,20.29842 ,APRSWXNET , ,DW0307 Poprad SK , +D0310,3,363.1000 ,45.55200 ,-120.1653,APRSWXNET , ,DW0310 Olex OR US , +D0311,3,86.00000 ,44.23815 ,0.670240 ,APRSWXNET , ,DW0311 Pont du Casse FR , +D0314,3,339.0000 ,39.21250 ,-96.05420,APRSWXNET , ,DW0314 Saint Marys KS US , +D0316,3,2037.000 ,48.76667 ,-104.5500,APRSWXNET , ,DW0316 Plentywood MT US , +D0318,3,327.0000 ,37.82231 ,-96.29975,APRSWXNET , ,DW0318 Eureka KS US , +D0323,3,63.00000 ,33.49458 ,-80.93166,APRSWXNET , ,DW0323 Orangeburg SC US , +D0326,3,31.00000 ,29.74550 ,-95.44550,APRSWXNET , ,DW0326 Houston TX US , +D0328,3,139.0000 ,34.40000 ,-118.9000,APRSWXNET , ,DW0328 Fillmore CA US , +D0331,3,112.0000 ,44.50883 ,-76.24350,APRSWXNET , ,DW0331 Elgin ON CA , +D0332,3,20.00000 ,43.57167 ,-70.21917,APRSWXNET , ,DW0332 Cape Elizabeth ME US , +D0333,3,365.0000 ,59.82850 ,10.28767 ,APRSWXNET , ,DW0333 Tranby-Lier NO , +D0334,3,12.00000 ,38.53650 ,-121.4325,APRSWXNET , ,DW0334 Sacramento CA US , +D0335,3,13.00000 ,30.43717 ,-86.56283,APRSWXNET , ,DW0335 Shalimar FL US , +D0336,3,55.00000 ,43.26867 ,-2.019500,APRSWXNET , ,DW0336 Lasarte ES , +D0339,3,76.00000 ,45.14967 ,14.54000 ,APRSWXNET , ,DW0339 Njivice-Kijac HR , +D0340,3,146.0000 ,44.59302 ,-76.40781,APRSWXNET , ,DW0340 Westport ON CA , +D0343,3,39.60000 ,39.63917 ,-75.84033,APRSWXNET , ,DW0343 Elkton MD US , +D0344,3,202.0000 ,-37.19333,145.6947 ,APRSWXNET , ,DW0344 Alexandra AU , +D0345,3,282.0000 ,34.24398 ,-118.5915,APRSWXNET , ,DW0345 Chatsworth CA US , +D0348,3,106.0000 ,44.62241 ,-75.18822,APRSWXNET , ,DW0348 Canton NY US , +D0349,3,36.00000 ,60.63967 ,27.29050 ,APRSWXNET , ,DW0349 Hamina FI , +D0350,3,71.00000 ,39.64800 ,22.41700 ,APRSWXNET , ,DW0350 Larissa GR , +D0351,3,413.0000 ,44.86621 ,-84.61794,APRSWXNET , ,DW0351 Waters MI US , +D0352,3,5.000000 ,34.05850 ,-77.90533,APRSWXNET , ,DW0352 Carolina Beach NC US , +D0353,3,50.00000 ,47.07800 ,-122.9605,APRSWXNET , ,DW0353 Olympia WA US , +D0354,3,385.6000 ,29.87200 ,-98.56350,APRSWXNET , ,DW0354 Bergheim TX US , +D0355,3,297.0000 ,36.53533 ,-93.29250,APRSWXNET , ,DW0355 Ridgedale MO US , +D0356,3,1264.900 ,39.03833 ,-108.4780,APRSWXNET , ,DW0356 Grand Junction CO US , +D0357,3,250.0000 ,32.63883 ,-97.58333,APRSWXNET , ,DW0357 Aledo TX US , +D0358,3,0.000000 ,29.34583 ,-90.62950,APRSWXNET , ,DW0358 Chauvin LA US , +D0359,3,218.0000 ,38.94017 ,-92.36117,APRSWXNET , ,DW0359 Columbia MO US , +D0360,3,178.0000 ,33.01900 ,-96.66867,APRSWXNET , ,DW0360 Plano TX US , +D0361,3,302.0000 ,33.85829 ,-98.49250,APRSWXNET , ,DW0361 Wichita Falls TX US , +D0362,3,11.00000 ,39.55000 ,2.683330 ,APRSWXNET , ,DW0362 Palma de Mallorca ES , +D0364,3,314.0000 ,34.62250 ,-97.35550,APRSWXNET , ,DW0364 Elmore City OK US , +D0367,3,201.0000 ,38.58033 ,-90.56467,APRSWXNET , ,DW0367 Ballwin MO US , +D0368,3,13.00000 ,47.76283 ,-122.2487,APRSWXNET , ,DW0368 Kenmore WA US , +D0370,3,1476.000 ,34.20000 ,-111.3000,APRSWXNET , ,DW0370 Payson AZ US , +D0372,3,128.0000 ,47.73450 ,-121.9712,APRSWXNET , ,DW0372 Duvall WA US , +D0373,3,121.0000 ,44.47783 ,-70.15817,APRSWXNET , ,DW0373 Livermore Falls ME US , +D0375,3,1382.000 ,43.26796 ,-112.5164,APRSWXNET , ,DW0375 Blackfoot ID US , +D0376,3,202.0000 ,34.40167 ,-119.0737,APRSWXNET , ,DW0376 Santa Paula CA US , +D0379,3,29.00000 ,52.42336 ,0.762000 ,APRSWXNET , ,DW0379 Thetford UK , +D0380,3,487.7000 ,45.34608 ,-122.1993,APRSWXNET , ,DW0380 Sandy OR US , +D0383,3,252.0000 ,44.44950 ,-72.92500,APRSWXNET , ,DW0383 Jericho VT US , +D0386,3,837.0000 ,35.53800 ,-79.88667,APRSWXNET , ,DW0386 Asheboro NC US , +D0389,3,447.8000 ,43.30967 ,-95.78517,APRSWXNET , ,DW0389 Ashton IA US , +D0390,3,347.0000 ,44.97100 ,-92.37133,APRSWXNET , ,DW0390 Baldwin WI US , +D0391,3,704.0000 ,37.32604 ,-119.6518,APRSWXNET , ,DW0391 Oakhurst CA US , +D0394,3,478.0000 ,34.04133 ,-117.1717,APRSWXNET , ,DW0394 Redlands CA US , +D0395,3,14.00000 ,33.19917 ,-117.3870,APRSWXNET , ,DW0395 Oceanside CA US , +D0398,3,367.6000 ,40.81137 ,-80.00258,APRSWXNET , ,DW0398 Renfrew PA US , +D0400,3,392.0000 ,46.59133 ,-120.6190,APRSWXNET , ,DW0400 Yakima WA US , +D0402,3,6.000000 ,51.87883 ,5.556170 ,APRSWXNET , ,DW0402 Boven-Leeuwen NL , +D0403,3,783.0000 ,35.31083 ,-80.96867,APRSWXNET , ,DW0403 Charlotte NC US , +D0404,3,388.0000 ,35.48214 ,-97.65783,APRSWXNET , ,DW0404 Oklahoma City OK US , +D0407,3,308.0000 ,39.48383 ,-77.33017,APRSWXNET , ,DW0407 Walkersville MD US , +D0409,3,121.0000 ,34.00017 ,-118.5083,APRSWXNET , ,DW0409 Santa Monica CA US , +D0411,3,408.0000 ,36.30932 ,-94.12591,APRSWXNET , ,DW0411 Rogers AR US , +D0413,3,1904.100 ,43.47783 ,-110.7603,APRSWXNET , ,DW0413 Jackson WY US , +D0414,3,2057.000 ,43.84213 ,-110.5080,APRSWXNET , ,DW0414 Moran WY US , +D0415,3,1863.000 ,43.46250 ,-110.8038,APRSWXNET , ,DW0415 Jackson WY US , +D0417,3,1585.500 ,40.05533 ,-105.2088,APRSWXNET , ,DW0417 Boulder CO US , +D0418,3,40.00000 ,44.39516 ,-68.62765,APRSWXNET , ,DW0418 Blue Hill ME US , +D0420,3,24.00000 ,34.80083 ,-78.03883,APRSWXNET , ,DW0420 Rosehill NC US , +D0421,3,212.0000 ,-37.27329,145.8265 ,APRSWXNET , ,DW0421 Thornton AU , +D0423,3,10.00000 ,29.28200 ,-94.82550,APRSWXNET , ,DW0423 Galveston TX US , +D0424,3,53.30000 ,35.41250 ,-78.38500,APRSWXNET , ,DW0424 Four Oaks NC US , +D0425,3,6.000000 ,54.96921 ,8.690900 ,APRSWXNET , ,DW0425 Hajer DK , +D0426,3,172.0000 ,52.64883 ,-2.028000,APRSWXNET , ,DW0426 Wolverhampton UK , +D0427,3,95.00000 ,52.84450 ,-7.388330,APRSWXNET , ,DW0427 Durrow IE , +D0428,3,320.0000 ,34.15867 ,-118.5917,APRSWXNET , ,DW0428 Woodland Hills CA US , +D0432,3,600.0000 ,39.39398 ,-123.4252,APRSWXNET , ,DW0432 Willits CA US , +D0433,3,266.0000 ,42.81283 ,-83.79700,APRSWXNET , ,DW0433 Linden MI US , +D0435,3,47.00000 ,18.08245 ,-67.03898,APRSWXNET , ,DW0435 San German PR US , +D0436,3,40.00000 ,59.21619 ,9.602570 ,APRSWXNET , ,DW0436 Skien NO , +D0438,3,230.0000 ,41.56867 ,-90.48450,APRSWXNET , ,DW0438 Bettendorf IA US , +D0440,3,191.0000 ,39.72183 ,-77.18850,APRSWXNET , ,DW0440 Littlestown PA US , +D0442,3,15.40000 ,39.18133 ,-76.06867,APRSWXNET , ,DW0442 Chestertown MD US , +D0444,3,1706.900 ,35.97967 ,-106.0588,APRSWXNET , ,DW0444 Espanola NM US , +D0445,3,25.00000 ,38.03583 ,-121.0642,APRSWXNET , ,DW0445 Linden CA US , +D0446,3,1005.800 ,32.05950 ,-110.6842,APRSWXNET , ,DW0446 Vail AZ US , +D0447,3,225.0000 ,44.16667 ,-70.28333,APRSWXNET , ,DW0447 Lewiston ME US , +D0450,3,146.2000 ,43.97017 ,-70.80667,APRSWXNET , ,DW0450 Denmark ME US , +D0451,3,58.50000 ,50.31117 ,-4.037830,APRSWXNET , ,DW0451 Noss Mayo UK , +D0452,3,427.6000 ,43.71523 ,-80.37612,APRSWXNET , ,DW0452 Fergus ON CA , +D0455,3,220.0000 ,32.83133 ,-97.50083,APRSWXNET , ,DW0455 Lakeside TX US , +D0457,3,32.00000 ,41.52633 ,-71.18950,APRSWXNET , ,DW0457 Little Compton RI US , +D0459,3,12.00000 ,43.36050 ,-70.46683,APRSWXNET , ,DW0459 Kennebunkport ME US , +D0460,3,991.0000 ,44.23717 ,-121.4750,APRSWXNET , ,DW0460 Sisters OR US , +D0461,3,9.800000 ,28.24844 ,-80.69313,APRSWXNET , ,DW0461 Melbourne FL US , +D0462,3,388.0000 ,45.90967 ,-119.3417,APRSWXNET , ,DW0462 Umatilla OR US , +D0465,3,1767.000 ,44.15667 ,-108.8702,APRSWXNET , ,DW0465 Meeteetse WY US , +D0467,3,400.0000 ,50.09633 ,18.11033 ,APRSWXNET , ,DW0467 Racibarz PL , +D0468,3,68.00000 ,27.77000 ,-15.57450,APRSWXNET , ,DW0468 Maspalomas ES , +D0470,3,268.0000 ,27.91833 ,-15.43033,APRSWXNET , ,DW0470 Ingenio ES , +D0473,3,60.00000 ,28.40983 ,-82.63500,APRSWXNET , ,DW0473 Hudson FL US , +D0475,3,148.0000 ,45.24550 ,-122.6478,APRSWXNET , ,DW0475 Canby OR US , +D0476,3,549.0000 ,41.01383 ,-98.22617,APRSWXNET , ,DW0476 Chapman NE US , +D0478,3,388.0000 ,46.05951 ,-93.67295,APRSWXNET , ,DW0478 Onamia MN US , +D0479,3,2.700000 ,25.46833 ,-80.51867,APRSWXNET , ,DW0479 Homestead FL US , +D0480,3,265.0000 ,34.45467 ,-119.7905,APRSWXNET , ,DW0480 Santa Barbara CA US , +D0481,3,201.0000 ,42.03783 ,-87.92917,APRSWXNET , ,DW0481 Mount Prospect IL US , +D0483,3,256.0000 ,51.14000 ,8.015330 ,APRSWXNET , ,DW0483 Dortmund DE , +D0484,3,2263.000 ,39.64000 ,-105.2762,APRSWXNET , ,DW0484 Indian Hills CO US , +D0486,3,8.000000 ,40.68783 ,-73.99333,APRSWXNET , ,DW0486 Brooklyn NY US , +D0487,3,875.0000 ,47.50683 ,11.28183 ,APRSWXNET , ,DW0487 Kruen DE , +D0489,3,188.0000 ,41.40082 ,-73.48032,APRSWXNET , ,DW0489 Danbury CT US , +D0490,3,145.0000 ,33.87817 ,-117.7218,APRSWXNET , ,DW0490 Yorba Linda CA US , +D0491,3,256.0000 ,32.62067 ,-97.39587,APRSWXNET , ,DW0491 Fort Worth TX US , +D0492,3,261.2000 ,39.50000 ,-92.28250,APRSWXNET , ,DW0492 Madison MO US , +D0493,3,2014.000 ,39.36264 ,-104.7915,APRSWXNET , ,DW0493 Castle Rock CO US , +D0494,3,145.0000 ,40.58800 ,22.99750 ,APRSWXNET , ,DW0494 Thessaloniki GR , +D0495,3,1435.000 ,43.48700 ,-112.0275,APRSWXNET , ,DW0495 Idaho Falls ID US , +D0496,3,48.00000 ,43.58633 ,-70.42850,APRSWXNET , ,DW0496 Scarborough ME US , +D0497,3,4.000000 ,40.73500 ,-74.20217,APRSWXNET , ,DW0497 Keansburg NJ US , +D0499,3,767.0000 ,46.65600 ,7.058500 ,APRSWXNET , ,DW0499 Marsens CH , +D0501,3,92.00000 ,39.13333 ,-76.84350,APRSWXNET , ,DW0501 Laurel MD US , +D0503,3,160.0000 ,39.39583 ,-77.89550,APRSWXNET , ,DW0503 Kearneysville WV US , +D0504,3,233.0000 ,46.38167 ,-120.3153,APRSWXNET , ,DW0504 Toppenish WA US , +D0505,3,1308.000 ,38.10504 ,-103.8762,APRSWXNET , ,DW0505 Manzanola CO US , +D0507,3,310.9000 ,35.04333 ,-82.28533,APRSWXNET , ,DW0507 Greer SC US , +D0508,3,565.0000 ,37.45083 ,-98.73383,APRSWXNET , ,DW0508 Sawyer KS US , +D0509,3,202.0000 ,45.79417 ,15.15833 ,APRSWXNET , ,DW0509 Novo Mesto Sl , +D0510,3,486.0000 ,49.22413 ,15.88430 ,APRSWXNET , ,DW0510 Trebic CZ , +D0513,3,8.000000 ,21.02087 ,-89.62612,APRSWXNET , ,DW0513 Merida MX , +D0514,3,24.00000 ,40.06500 ,-75.00050,APRSWXNET , ,DW0514 Philadelphia PA US , +D0515,3,34.00000 ,52.01583 ,-2.038000,APRSWXNET , ,DW0515 Tewkesbury UK , +D0516,3,8.000000 ,32.40530 ,-80.43229,APRSWXNET , ,DW0516 Harbor Island SC US , +D0518,3,190.0000 ,46.66000 ,16.15033 ,APRSWXNET , ,DW0518 Murska Sobota Sl , +D0520,3,132.9000 ,39.78117 ,-76.01533,APRSWXNET , ,DW0520 Oxford PA US , +D0523,3,180.0000 ,44.89100 ,-86.00633,APRSWXNET , ,DW0523 Glen Arbor MI US , +D0526,3,5.000000 ,41.44600 ,-71.45417,APRSWXNET , ,DW0526 Narragansett RI US , +D0527,3,3109.000 ,39.20000 ,-106.1000,APRSWXNET , ,DW0527 Fairplay CO US , +D0533,3,299.0000 ,33.78616 ,-97.72562,APRSWXNET , ,DW0533 Nocona TX US , +D0534,3,46.00000 ,58.53131 ,11.32553 ,APRSWXNET , ,DW0534 Hamburgsund SE , +D0537,3,0.000000 ,39.98483 ,-0.026830,APRSWXNET , ,DW0537 Castellon ES , +D0539,3,50.00000 ,37.29083 ,-121.9275,APRSWXNET , ,DW0539 Campbell CA US , +D0540,3,33.00000 ,43.63850 ,-70.22600,APRSWXNET , ,DW0540 South Portland ME US , +D0541,3,345.0000 ,34.26050 ,-84.51817,APRSWXNET , ,DW0541 Canton GA US , +D0542,3,154.0000 ,42.03500 ,-71.83200,APRSWXNET , ,DW0542 Webster MA US , +D0543,3,1387.000 ,42.78833 ,-113.0030,APRSWXNET , ,DW0543 American Falls ID US , +D0544,3,100.0000 ,44.54638 ,73.19542 ,APRSWXNET , ,DW0544 Burlington VT US , +D0546,3,290.0000 ,49.57133 ,5.836170 ,APRSWXNET , ,DW0546 Luxembourg BE , +D0547,3,402.3000 ,46.13083 ,-95.91450,APRSWXNET , ,DW0547 Dalton MN US , +D0548,3,625.0000 ,37.10117 ,-80.54450,APRSWXNET , ,DW0548 Radford VA US , +D0549,3,347.0000 ,34.51117 ,-97.98500,APRSWXNET , ,DW0549 Duncan OK US , +D0550,3,6.000000 ,30.29646 ,-89.83781,APRSWXNET , ,DW0550 Slidell LA US , +D0552,3,120.0000 ,42.17869 ,-71.53373,APRSWXNET , ,DW0552 N. Milford MA US , +D0553,3,22.00000 ,33.66301 ,-117.8301,APRSWXNET , ,DW0553 Irvine CA US , +D0555,3,38.70000 ,42.89333 ,-71.03450,APRSWXNET , ,DW0555 Newton NH US , +D0557,3,39.00000 ,45.01717 ,-123.0170,APRSWXNET , ,DW0557 Keizer OR US , +D0558,3,63.00000 ,33.73530 ,-117.7647,APRSWXNET , ,DW0558 Irvine CA US , +D0560,3,451.0000 ,-14.19298,-75.64789,APRSWXNET , ,DW0560 Ica PE , +D0564,3,8.000000 ,41.40100 ,-72.10867,APRSWXNET , ,DW0564 Quaker Hill CT US , +D0565,3,6.000000 ,-43.50967,172.5583 ,APRSWXNET , ,DW0565 Christchurch NZ , +D0566,3,195.0000 ,32.91633 ,-96.79033,APRSWXNET , ,DW0566 Dallas TX US , +D0570,3,273.0000 ,46.53033 ,-87.41983,APRSWXNET , ,DW0570 Marquette MI US , +D0571,3,3356.000 ,39.22983 ,-106.0862,APRSWXNET , ,DW0571 Fairplay CO US , +D0573,3,1583.000 ,39.61143 ,-104.0438,APRSWXNET , ,DW0573 Deer Trail CO US , +D0575,3,9.700000 ,28.20983 ,-82.67650,APRSWXNET , ,DW0575 New Port Richey FL US , +D0579,3,1800.000 ,51.32923 ,-114.5943,APRSWXNET , ,DW0579 Cochrane AB CA , +D0580,3,220.0000 ,42.95350 ,-78.73217,APRSWXNET , ,DW0580 Williamsville NY US , +D0581,3,1382.000 ,39.16874 ,-108.7184,APRSWXNET , ,DW0581 Fruita CO US , +D0583,3,122.0000 ,33.31040 ,-86.44534,APRSWXNET , ,DW0583 Harpersville AL US , +D0584,3,3.000000 ,39.12580 ,-75.49942,APRSWXNET , ,DW0584 Dover DE US , +D0585,3,113.0000 ,49.19000 ,8.293670 ,APRSWXNET , ,DW0585 Bellheim DE , +D0586,3,14.00000 ,39.01760 ,-121.5481,APRSWXNET , ,DW0586 Plumas Lake CA US , +D0589,3,10.00000 ,53.08283 ,8.872830 ,APRSWXNET , ,DW0589 Bremen DE , +D0592,3,62.00000 ,45.21295 ,-73.45051,APRSWXNET , ,DW0592 Napierville PQ CA , +D0594,3,226.0000 ,45.61333 ,8.894500 ,APRSWXNET , ,DW0594 Castellanza IT , +D0596,3,84.00000 ,51.65967 ,-1.869170,APRSWXNET , ,DW0596 Latton UK , +D0597,3,9.000000 ,39.26500 ,9.048000 ,APRSWXNET , ,DW0597 Elmas (CA) IT , +D0598,3,273.0000 ,46.75000 ,15.62817 ,APRSWXNET , ,DW0598 Leibnitz AT , +KBRA2,3,24.40000 ,57.76667 ,-152.5167,APRSWXNET , ,DW0599 Kodiak Buskin River AK US , +D0600,3,330.0000 ,37.97783 ,-91.76383,APRSWXNET , ,DW0600 Rolla MO US , +D0601,3,983.0000 ,34.04083 ,-84.50067,APRSWXNET , ,DW0601 Marietta GA US , +D0603,3,56.00000 ,45.29550 ,-122.7738,APRSWXNET , ,DW0603 Aurora OR US , +D0604,3,1305.000 ,40.66700 ,-111.9325,APRSWXNET , ,DW0604 Taylorsville UT US , +D0605,3,36.30000 ,33.93833 ,-118.1272,APRSWXNET , ,DW0605 Downey CA US , +D0606,3,2500.000 ,38.96467 ,-105.0695,APRSWXNET , ,DW0606 Colorado Springs CO US , +D0608,3,7.000000 ,39.27917 ,-74.63700,APRSWXNET , ,DW0608 Marmora NJ US , +D0609,3,82.00000 ,46.66066 ,-122.9255,APRSWXNET , ,DW0609 Chehalis WA US , +D0610,3,100.0000 ,47.38367 ,-0.653830,APRSWXNET , ,DW0610 Savennieres FR , +D0611,3,1346.600 ,40.51472 ,-111.8984,APRSWXNET , ,DW0611 Draper UT US , +D0612,3,147.0000 ,43.17589 ,-78.83834,APRSWXNET , ,DW0612 Cambria NY US , +D0614,3,1380.700 ,40.60283 ,-111.9730,APRSWXNET , ,DW0614 West Jordan UT US , +D0615,3,196.0000 ,35.60043 ,-87.05950,APRSWXNET , ,DW0615 Columbia TN US , +D0617,3,58.00000 ,28.50000 ,-81.70000,APRSWXNET , ,DW0617 Clermont FL US , +D0618,3,100.0000 ,37.52433 ,-122.3088,APRSWXNET , ,DW0618 San Francisco CA US , +D0619,3,30.00000 ,48.66350 ,-122.5007,APRSWXNET , ,DW0619 Bellingham WA US , +D0620,3,228.9000 ,35.83000 ,-79.79550,APRSWXNET , ,DW0620 Randleman NC US , +D0622,3,187.1000 ,33.48333 ,-86.99450,APRSWXNET , ,DW0622 Pleasant Grove AL US , +D0623,3,201.0000 ,42.31000 ,-87.84400,APRSWXNET , ,DW0623 Great Lakes IL US , +D0625,3,280.0000 ,38.00017 ,-92.74567,APRSWXNET , ,DW0625 Camdenton MO US , +D0626,3,2.200000 ,26.58883 ,-81.92717,APRSWXNET , ,DW0626 Cape Coral FL US , +D0628,3,3.000000 ,26.53883 ,-82.08417,APRSWXNET , ,DW0628 St James FL US , +D0630,3,50.00000 ,50.97200 ,-2.673830,APRSWXNET , ,DW0630 Chilthorne Domer UK , +D0631,3,380.0000 ,46.08500 ,-94.48883,APRSWXNET , ,DW0631 Randall MN US , +D0633,3,663.0000 ,30.48467 ,-97.52483,APRSWXNET , ,DW0633 Hutto TX US , +D0634,3,1961.000 ,38.88453 ,-104.8578,APRSWXNET , ,DW0634 Colorado Springs CO US , +D0635,3,57.00000 ,59.92300 ,10.76833 ,APRSWXNET , ,DW0635 Oslo NO , +D0639,3,236.0000 ,35.45294 ,-86.44412,APRSWXNET , ,DW0639 Shelbyville TN US , +D0642,3,320.0000 ,40.25017 ,-75.08417,APRSWXNET , ,DW0642 Jamison PA US , +D0643,3,762.0000 ,34.48417 ,-118.3370,APRSWXNET , ,DW0643 Agua Dulce CA US , +D0644,3,470.0000 ,47.35100 ,7.187500 ,APRSWXNET , ,DW0644 Egliswil CH , +D0646,3,93.00000 ,45.61461 ,-122.4306,APRSWXNET , ,DW0646 Camas WA US , +D0647,3,1232.000 ,40.56000 ,-80.26750,APRSWXNET , ,DW0647 Aliquippa PA US , +D0648,3,322.2000 ,44.61800 ,-72.56667,APRSWXNET , ,DW0648 Hyde Park VT US , +D0649,3,1441.000 ,39.10128 ,-108.5014,APRSWXNET , ,DW0649 Grand Junction CO US , +D0650,3,1652.000 ,39.56450 ,-105.0987,APRSWXNET , ,DW0650 Littleton CO US , +D0651,3,128.3000 ,32.38117 ,-94.85133,APRSWXNET , ,DW0651 Kilgore TX US , +D0653,3,30.60000 ,39.13617 ,-76.61417,APRSWXNET , ,DW0653 Glen Burnie MA US , +D0654,3,1350.000 ,32.39220 ,-106.7010,APRSWXNET , ,DW0654 Las Cruces NM US , +D0655,3,482.0000 ,40.40000 ,-76.70000,APRSWXNET , ,DW0655 Grantville PA US , +D0656,3,1927.000 ,41.90464 ,-109.8513,APRSWXNET , ,DW0656 Seedskadee NWR WY US , +D0657,3,242.0000 ,39.07050 ,-84.34967,APRSWXNET , ,DW0657 Cincinnati OH US , +D0663,3,129.0000 ,27.00000 ,-99.10000,APRSWXNET , ,DW0663 Zapata TX US , +D0664,3,95.70000 ,30.63317 ,-96.34800,APRSWXNET , ,DW0664 Bryan TX US , +D0665,3,2595.000 ,38.07127 ,-105.3720,APRSWXNET , ,DW0665 Westcliffe CO US , +D0668,3,6.700000 ,26.13183 ,-80.41817,APRSWXNET , ,DW0668 Weston FL US , +D0671,3,12.00000 ,41.98142 ,12.04678 ,APRSWXNET , ,DW0671 Roma IT , +HDCA2,3,6.000000 ,61.19950 ,-149.9567,APRSWXNET , ,DW0673 West Turnagain AK US , +D0674,3,3.000000 ,28.16800 ,-80.59217,APRSWXNET , ,DW0674 Satellite Beach FL US , +D0677,3,77.70000 ,45.68367 ,-122.5313,APRSWXNET , ,DW0677 Vancouver WA US , +D0679,3,500.0000 ,43.05564 ,-75.86852,APRSWXNET , ,DW0679 Chittenango NY US , +D0680,3,728.0000 ,-33.44300,-70.53100,APRSWXNET , ,DW0680 Santiago CL , +D0682,3,1810.500 ,34.94253 ,-118.6551,APRSWXNET , ,DW0682 Lebec CA US , +D0683,3,356.0000 ,41.13272 ,-73.58874,APRSWXNET , ,DW0683 Stamford CT US , +D0685,3,250.0000 ,39.39333 ,-84.39050,APRSWXNET , ,DW0685 Liberty Township OH US , +D0686,3,260.0000 ,45.10800 ,-93.37533,APRSWXNET , ,DW0686 Brooklyn Park MN US , +D0687,3,459.0000 ,43.52833 ,-96.82300,APRSWXNET , ,DW0687 Sioux Falls SD US , +D0688,3,5.000000 ,59.24250 ,-2.587670,APRSWXNET , ,DW0688 Sanday UK , +D0689,3,465.0000 ,49.72750 ,14.54217 ,APRSWXNET , ,DW0689 Neveklov CZ , +D0690,3,386.8000 ,40.86033 ,-81.17300,APRSWXNET , ,DW0690 Alliance OH US , +ENLA2,3,68.55000 ,61.19383 ,-149.7525,APRSWXNET , ,DW0691 East Northern Lights AK US , +D0693,3,10.00000 ,27.08533 ,-80.58533,APRSWXNET , ,DW0693 Indiantown FL US , +D0694,3,205.0000 ,47.54500 ,-121.7908,APRSWXNET , ,DW0694 Snoqualmie WA US , +D0695,3,314.0000 ,40.62802 ,-79.72346,APRSWXNET , ,DW0695 Natrona Heights PA US , +D0696,3,72.00000 ,30.73333 ,-86.55000,APRSWXNET , ,DW0696 Crestview FL US , +D0697,3,90.00000 ,33.54800 ,-88.16700,APRSWXNET , ,DW0697 Millport AL US , +D0698,3,715.0000 ,35.99000 ,-96.10000,APRSWXNET , ,DW0698 Sapulpa OK US , +D0699,3,20.00000 ,-41.59173,-73.09805,APRSWXNET , ,DW0699 Huenquillahue CL , +D0700,3,0.000000 ,52.02200 ,4.719170 ,APRSWXNET , ,DW0700 Gouda NL , +D0702,3,15.20000 ,29.69250 ,-95.40983,APRSWXNET , ,DW0702 Houston TX US , +D0703,3,262.0000 ,43.00000 ,-85.30000,APRSWXNET , ,DW0703 Grattan MI US , +D0707,3,4.600000 ,47.00383 ,-124.1520,APRSWXNET , ,DW0707 Ocean Shores WA US , +D0708,3,58.00000 ,30.16467 ,-95.62717,APRSWXNET , ,DW0708 Tomball TX US , +D0709,3,1600.000 ,34.55950 ,-112.3462,APRSWXNET , ,DW0709 Prescott Valley AZ US , +D0710,3,91.40000 ,45.69300 ,-122.6347,APRSWXNET , ,DW0710 Vancouver WA US , +D0711,3,998.5000 ,48.15075 ,-114.4221,APRSWXNET , ,DW0711 Kila MT US , +D0713,3,1286.000 ,44.35084 ,-104.8035,APRSWXNET , ,DW0713 Pine Haven WY US , +D0718,3,1761.000 ,34.55883 ,-112.4028,APRSWXNET , ,DW0718 Prescott AZ US , +D0719,3,393.8000 ,30.50594 ,-98.48387,APRSWXNET , ,DW0719 Round Mountain TX US , +D0721,3,312.0000 ,37.61883 ,-84.24617,APRSWXNET , ,DW0721 Berea KY US , +D0724,3,915.0000 ,40.66000 ,-4.044500,APRSWXNET , ,DW0724 Alpedrete ES , +D0725,3,1213.700 ,48.04883 ,-114.7008,APRSWXNET , ,DW0725 Marion MT US , +D0727,3,4.000000 ,52.44667 ,4.635000 ,APRSWXNET , ,DW0727 Driehuis NH NL , +D0729,3,402.0000 ,43.60783 ,-90.89083,APRSWXNET , ,DW0729 Westby WI US , +D0730,3,660.0000 ,34.02051 ,-112.7439,APRSWXNET , ,DW0730 Wickenburg AZ US , +D0731,3,45.00000 ,40.96667 ,-73.78333,APRSWXNET , ,DW0731 Scarsdale NY US , +D0732,3,8.200000 ,26.30000 ,-80.23333,APRSWXNET , ,DW0732 Coral Springs FL US , +D0733,3,446.0000 ,37.75933 ,-97.27833,APRSWXNET , ,DW0733 Bel Aire KS US , +D0734,3,345.0000 ,34.03673 ,-84.43676,APRSWXNET , ,DW0734 Marietta GA US , +D0735,3,1456.000 ,41.87400 ,-120.1580,APRSWXNET , ,DW0735 Fort Bidwell CA US , +D0736,3,6.000000 ,26.27750 ,-81.51700,APRSWXNET , ,DW0736 Naples FL US , +D0737,3,227.0000 ,43.40783 ,-84.47450,APRSWXNET , ,DW0737 Breckenridge MI US , +D0739,3,2641.400 ,38.03333 ,-107.3143,APRSWXNET , ,DW0739 Lake City CO US , +D0743,3,736.7000 ,38.14300 ,-80.18467,APRSWXNET , ,DW0743 Hillsboro WV US , +D0744,3,6.000000 ,-28.58717,16.44450 ,APRSWXNET , ,DW0744 Oranjemund NA , +D0745,3,2.000000 ,28.35533 ,-82.71333,APRSWXNET , ,DW0745 Hudson FL US , +D0747,3,146.3000 ,32.23000 ,-84.24500,APRSWXNET , ,DW0747 Ellaville GA US , +D0749,3,150.0000 ,48.79667 ,-123.6320,APRSWXNET , ,DW0749 Maple Bay BC CA , +D0754,3,250.0000 ,42.26667 ,-71.61667,APRSWXNET , ,DW0754 Westborough MA US , +D0755,3,2325.000 ,39.26817 ,-119.9705,APRSWXNET , ,DW0755 Incline Village NV US , +D0756,3,140.0000 ,41.54200 ,-74.07467,APRSWXNET , ,DW0756 Newburgh NY US , +D0758,3,13.00000 ,21.86867 ,-72.09033,APRSWXNET , ,DW0758 Pine Cay TC , +D0761,3,27.00000 ,35.21667 ,-120.6833,APRSWXNET , ,DW0761 San Luis Obispo CA US , +D0764,3,2.000000 ,51.37467 ,-2.915000,APRSWXNET , ,DW0764 Wick St Lawrence UK , +D0768,3,320.0000 ,41.05217 ,-0.127830,APRSWXNET , ,DW0768 Alcaatz ES , +D0769,3,1221.000 ,39.00067 ,-97.60000,APRSWXNET , ,DW0769 Bennington KS US , +D0771,3,192.0000 ,34.26200 ,-82.04867,APRSWXNET , ,DW0771 Greenwood SC US , +D0773,3,12.00000 ,16.08333 ,-86.88333,APRSWXNET , ,DW0773 Utila HN , +D0774,3,2613.000 ,40.36083 ,-105.4492,APRSWXNET , ,DW0774 Estes Park CO US , +D0775,3,225.0000 ,43.18578 ,-84.70504,APRSWXNET , ,DW0775 Middleton MI US , +D0776,3,39.50000 ,47.74368 ,-121.9384,APRSWXNET , ,DW0776 Duvall WA US , +D0777,3,135.0000 ,35.26011 ,-88.22123,APRSWXNET , ,DW0777 Savannah TN US , +D0778,3,15.00000 ,33.76250 ,-78.87050,APRSWXNET , ,DW0778 Myrtle Beach SC US , +D0782,3,59.00000 ,37.52050 ,15.10467 ,APRSWXNET , ,DW0782 Catania IT , +D0783,3,269.9000 ,42.73830 ,-84.66298,APRSWXNET , ,DW0783 Lansing MI US , +D0784,3,188.0000 ,35.55783 ,-91.63050,APRSWXNET , ,DW0784 Pleasant Plains AR US , +D0785,3,79.00000 ,14.59050 ,121.1507 ,APRSWXNET , ,DW0785 Antipolo City PH , +D0786,3,2030.000 ,-22.70033,17.06000 ,APRSWXNET , ,DW0786 Windhoek NA , +D0788,3,285.0000 ,43.39083 ,-73.73217,APRSWXNET , ,DW0788 Lake George NY US , +D0791,3,75.00000 ,38.73217 ,-77.24617,APRSWXNET , ,DW0791 Lorton VA US , +D0792,3,645.9000 ,35.30833 ,-82.55316,APRSWXNET , ,DW0792 Etowah NC US , +D0793,3,131.0000 ,40.21526 ,-77.03967,APRSWXNET , ,DW0793 Mechanicsburg PA US , +D0795,3,976.0000 ,33.71117 ,-101.8400,APRSWXNET , ,DW0795 New Deal TX US , +D0796,3,185.0000 ,56.05633 ,13.10717 ,APRSWXNET , ,DW0796 Stenestad SE , +D0797,3,179.8000 ,36.11508 ,-96.00758,APRSWXNET , ,DW0797 Tulsa OK US , +D0798,3,225.6000 ,41.79967 ,-84.04283,APRSWXNET , ,DW0798 Jasper MI US , +D0799,3,219.2000 ,41.82802 ,-83.84544,APRSWXNET , ,DW0799 Blissfield MI US , +D0801,3,131.3000 ,35.73750 ,-79.09550,APRSWXNET , ,DW0801 Pittsboro NC US , +D0802,3,187.0000 ,32.85769 ,-97.13427,APRSWXNET , ,DW0802 Bedford TX US , +D0804,3,106.0000 ,38.31992 ,-77.77498,APRSWXNET , ,DW0804 Locust Grove VA US , +D0805,3,14.00000 ,56.01644 ,12.08775 ,APRSWXNET , ,DW0805 Ramloese DK , +D0807,3,762.0000 ,47.60133 ,-105.9653,APRSWXNET , ,DW0807 Circle MT US , +D0809,3,350.0000 ,41.10333 ,-95.94050,APRSWXNET , ,DW0809 Bellevue NE US , +D0811,3,5.000000 ,53.58333 ,6.666670 ,APRSWXNET , ,DW0811 Emden DE , +D0812,3,115.0000 ,37.76333 ,-122.4522,APRSWXNET , ,DW0812 San Francisco CA US , +D0813,3,11.00000 ,17.90000 ,-92.50000,APRSWXNET , ,DW0813 Villahermosa MX , +D0817,3,100.0000 ,44.09883 ,-77.60083,APRSWXNET , ,DW0817 Trenton ON CA , +D0818,3,1475.000 ,40.68400 ,-111.8057,APRSWXNET , ,DW0818 Salt Lake City UT US , +D0819,3,208.0000 ,39.39283 ,-77.04717,APRSWXNET , ,DW0819 Woodbine MD US , +D0820,3,239.6000 ,36.73653 ,-95.92478,APRSWXNET , ,DW0820 Bartlesville OK US , +D0821,3,91.50000 ,47.58950 ,-122.1717,APRSWXNET , ,DW0821 Bellevue WA US , +D0824,3,100.0000 ,-34.27291,150.9536 ,APRSWXNET , ,DW0824 Wombarra AU , +D0825,3,69.00000 ,41.83883 ,-71.39917,APRSWXNET , ,DW0825 Providence RI US , +D0826,3,1517.900 ,37.45417 ,-119.6457,APRSWXNET , ,DW0826 Fish Camp CA US , +D0827,3,79.60000 ,36.23543 ,-90.05502,APRSWXNET , ,DW0827 Kennett MO US , +D0828,3,8.000000 ,-41.60000,-72.98333,APRSWXNET , ,DW0828 Puerto Montt CL , +D0830,3,215.8000 ,45.79600 ,-87.13300,APRSWXNET , ,DW0830 Escanaba MI US , +D0831,3,398.0000 ,36.37088 ,-94.28772,APRSWXNET , ,DW0831 Centerton AR US , +D0832,3,5.500000 ,26.82300 ,-81.08050,APRSWXNET , ,DW0832 Moore Haven FL US , +D0834,3,266.7000 ,29.49342 ,-98.60055,APRSWXNET , ,DW0834 San Antonio TX US , +D0835,3,215.0000 ,42.98633 ,-87.87833,APRSWXNET , ,DW0835 Milwaukee WI US , +D0836,3,430.0000 ,42.34417 ,-75.86283,APRSWXNET , ,DW0836 Triangle NY US , +D0838,3,508.0000 ,35.25382 ,-84.33354,APRSWXNET , ,DW0838 Tellico Plains TN US , +D0841,3,61.00000 ,-42.96050,147.3158 ,APRSWXNET , ,DW0841 Kingston AU , +D0842,3,1.000000 ,52.68494 ,-0.028060,APRSWXNET , ,DW0842 Spalding UK , +D0843,3,1853.000 ,34.34800 ,-109.9918,APRSWXNET , ,DW0843 White Mountain Lake AZ US , +D0844,3,132.0000 ,35.83983 ,-78.86117,APRSWXNET , ,DW0844 Morrisville NC US , +D0846,3,6.000000 ,39.13667 ,-76.45533,APRSWXNET , ,DW0846 Pasadena MD US , +D0847,3,100.0000 ,53.54133 ,-2.524500,APRSWXNET , ,DW0847 Bolton UK , +D0848,3,65.30000 ,42.37250 ,-71.29300,APRSWXNET , ,DW0848 Weston MA US , +D0850,3,254.0000 ,37.84058 ,-122.2059,APRSWXNET , ,DW0850 Oakland CA US , +D0851,3,98.00000 ,39.03467 ,-77.36050,APRSWXNET , ,DW0851 Great Falls VA US , +D0852,3,466.0000 ,48.48617 ,9.252170 ,APRSWXNET , ,DW0852 Eningen u.A. DE , +D0854,3,55.00000 ,-32.06691,115.8039 ,APRSWXNET , ,DW0854 Fremantle AU , +D0855,3,167.0000 ,38.71417 ,-89.98217,APRSWXNET , ,DW0855 Maryville IL US , +D0856,3,20.00000 ,41.74942 ,-70.09302,APRSWXNET , ,DW0856 Brewster MA US , +D0859,3,359.0000 ,35.12183 ,-97.47900,APRSWXNET , ,DW0859 Goldsby OK US , +D0860,3,268.2000 ,37.39300 ,-85.36783,APRSWXNET , ,DW0860 Campbellsville KY US , +D0861,3,40.00000 ,32.31918 ,-64.74244,APRSWXNET , ,DW0861 Flatts Village BM , +D0863,3,71.00000 ,51.03333 ,-2.266670,APRSWXNET , ,DW0863 Gillingham UK , +D0865,3,450.8000 ,36.26867 ,-93.21667,APRSWXNET , ,DW0865 Harrison AR US , +D0866,3,24.00000 ,40.73133 ,-124.2050,APRSWXNET , ,DW0866 Eureka CA US , +D0868,3,10.00000 ,41.68316 ,-70.75555,APRSWXNET , ,DW0868 Marion MA US , +D0869,3,330.0000 ,29.99869 ,-98.01764,APRSWXNET , ,DW0869 Wimberley TX US , +D0875,3,-2.000000,51.80000 ,4.700000 ,APRSWXNET , ,DW0875 Papendrecht NL , +D0880,3,455.0000 ,43.25917 ,12.76667 ,APRSWXNET , ,DW0880 Gualdo Tadino IT , +D0881,3,12.00000 ,51.77617 ,5.516330 ,APRSWXNET , ,DW0881 Oss NL , +D0882,3,256.0000 ,47.54050 ,-121.8687,APRSWXNET , ,DW0882 Snoqualmie WA US , +D0883,3,2023.900 ,39.18333 ,-120.2178,APRSWXNET , ,DW0883 Alpine Meadows CA US , +D0884,3,100.0000 ,48.74167 ,-122.4538,APRSWXNET , ,DW0884 Bellingham WA US , +D0886,3,508.4000 ,40.96850 ,-75.98450,APRSWXNET , ,DW0886 Hazleton PA US , +D0888,3,221.0000 ,44.26317 ,-88.27550,APRSWXNET , ,DW0888 Kaukauna WI US , +D0890,3,284.1000 ,39.69833 ,-84.44917,APRSWXNET , ,DW0890 Farmersville OH US , +D0892,3,612.3000 ,35.67500 ,-82.68200,APRSWXNET , ,DW0892 Leicester NC US , +D0893,3,65.00000 ,51.29667 ,-0.825000,APRSWXNET , ,DW0893 Fleet UK , +D0895,3,141.7000 ,38.58700 ,-89.64417,APRSWXNET , ,DW0895 Aviston IL US , +D0899,3,100.0000 ,49.27333 ,-123.1247,APRSWXNET , ,DW0899 Vancouver BC CA , +D0904,3,135.0000 ,-33.92283,18.86250 ,APRSWXNET , ,DW0904 Stellenbosch ZA , +D0905,3,46.00000 ,27.20883 ,-81.33433,APRSWXNET , ,DW0905 Lake Placid FL US , +D0908,3,25.00000 ,38.40224 ,-122.8331,APRSWXNET , ,DW0908 Sebastopol CA US , +D0912,3,137.8000 ,34.26733 ,-118.9167,APRSWXNET , ,DW0912 Moorpark-Home Acres CA US , +D0913,3,242.0000 ,44.38025 ,-88.70677,APRSWXNET , ,DW0913 New London WI US , +D0914,3,2.000000 ,21.34117 ,-89.30583,APRSWXNET , ,DW0914 Telchac MX , +D0915,3,164.6000 ,34.28583 ,-118.8797,APRSWXNET , ,DW0915 Moorpark-Downtown CA US , +D0918,3,60.00000 ,30.17800 ,-81.72917,APRSWXNET , ,DW0918 Orange Park FL US , +D0920,3,33.00000 ,44.67967 ,-63.46533,APRSWXNET , ,DW0920 Halifax NS CA , +D0924,3,650.0000 ,46.50000 ,7.083330 ,APRSWXNET , ,DW0924 Bern CH , +D0925,3,1522.000 ,40.82167 ,-97.21550,APRSWXNET , ,DW0925 Goehner NE US , +D0926,3,383.0000 ,35.57033 ,-97.67714,APRSWXNET , ,DW0926 Yukon OK US , +D0927,3,0.000000 ,33.87450 ,-78.49333,APRSWXNET , ,DW0927 Sunset Beach NC US , +D0929,3,76.20000 ,42.08000 ,-72.48450,APRSWXNET , ,DW0929 East Longmeadow MA US , +D0931,3,619.0000 ,33.69783 ,-111.8845,APRSWXNET , ,DW0931 Scottsdale AZ US , +D0932,3,393.2000 ,43.30351 ,-92.40729,APRSWXNET , ,DW0932 Elma IA US , +D0935,3,16.30000 ,41.27683 ,-69.96183,APRSWXNET , ,DW0935 Siasconset MA US , +D0936,3,15.00000 ,42.46500 ,-71.14400,APRSWXNET , ,DW0936 Winchester MA US , +D0938,3,1030.000 ,44.56300 ,-90.66283,APRSWXNET , ,DW0938 Neillsville WI US , +D0941,3,73.80000 ,42.01533 ,-71.52167,APRSWXNET , ,DW0941 Woonsocket RI US , +D0942,3,116.0000 ,-41.24800,174.7720 ,APRSWXNET , ,DW0942 Wellington NZ , +D0943,3,5.000000 ,37.98500 ,22.98333 ,APRSWXNET , ,DW0943 Korinthos GR , +D0944,3,1304.000 ,40.65267 ,-111.9175,APRSWXNET , ,DW0944 Murray UT US , +D0946,3,24.00000 ,37.78388 ,-121.5565,APRSWXNET , ,DW0946 Mountain House CA US , +D0947,3,1450.000 ,47.45367 ,8.588170 ,APRSWXNET , ,DW0947 Kloten CH , +D0948,3,10.10000 ,29.71276 ,-95.58011,APRSWXNET , ,DW0948 Houston TX US , +D0950,3,340.0000 ,43.13417 ,12.42383 ,APRSWXNET , ,DW0950 Perugia IT , +D0951,3,282.4000 ,39.74917 ,-84.39050,APRSWXNET , ,DW0951 New Lebanon OH US , +D0957,3,200.0000 ,36.94967 ,14.53533 ,APRSWXNET , ,DW0957 Vittoria (RG) IT IT , +D0963,3,1536.200 ,40.62796 ,-112.0420,APRSWXNET , ,DW0963 West Jordan UT US , +D0966,3,640.1000 ,35.32967 ,-82.44883,APRSWXNET , ,DW0966 Hendersonville NC US , +D0967,3,1780.700 ,39.72884 ,-105.1556,APRSWXNET , ,DW0967 Golden CO US , +D0968,3,10.00000 ,-41.50000,-71.90000,APRSWXNET , ,DW0968 Puerto Montt CL , +D0969,3,1120.000 ,44.08700 ,7.252830 ,APRSWXNET , ,DW0969 Saint-Martin Vesubie FR , +D0970,3,3.700000 ,52.83964 ,0.164740 ,APRSWXNET , ,DW0970 Gedney Drove End UK , +D0973,3,72.00000 ,28.36750 ,-81.22967,APRSWXNET , ,DW0973 Orlando FL US , +D0974,3,2167.000 ,37.26950 ,-107.0037,APRSWXNET , ,DW0974 Pagosa Springs CO US , +D0975,3,1036.300 ,48.74417 ,-111.9692,APRSWXNET , ,DW0975 Kevin MT US , +D0977,3,364.2000 ,33.26233 ,-111.8780,APRSWXNET , ,DW0977 Chandler AZ US , +D0978,3,245.7000 ,39.73217 ,-86.35717,APRSWXNET , ,DW0978 Plainfield IN US , +D0980,3,134.0000 ,43.27000 ,-71.67650,APRSWXNET , ,DW0980 Webster NH US , +D0983,3,455.0000 ,46.51917 ,6.672500 ,APRSWXNET , ,DW0983 Belmont sur Lausanne CH , +D0984,3,58.00000 ,-34.79000,138.6665 ,APRSWXNET , ,DW0984 Adelaide AU , +D0986,3,7.000000 ,27.14439 ,-80.34994,APRSWXNET , ,DW0986 Palm City FL US , +D0987,3,214.0000 ,35.02433 ,-80.85300,APRSWXNET , ,DW0987 Charlotte NC US , +D0989,3,865.0000 ,47.90050 ,8.146330 ,APRSWXNET , ,DW0989 Freiburg DE , +D0991,3,23.60000 ,35.28117 ,-77.56050,APRSWXNET , ,DW0991 Kinston NC US , +D0993,3,2570.000 ,43.57083 ,-109.8275,APRSWXNET , ,DW0993 Union Pass WY US , +D0994,3,1450.200 ,37.06500 ,-119.4095,APRSWXNET , ,DW0994 Auberry CA US , +D0995,3,110.0000 ,44.28533 ,-70.22300,APRSWXNET , ,DW0995 Turner ME US , +D0996,3,102.0000 ,44.44000 ,26.02300 ,APRSWXNET , ,DW0996 Bucharest RO , +D0997,3,103.0000 ,50.14633 ,8.801170 ,APRSWXNET , ,DW0997 Maintal DE , +D0999,3,411.0000 ,48.71717 ,10.75167 ,APRSWXNET , ,DW0999 Donauwarth DE , +D1000,3,468.0000 ,42.18333 ,-0.004500,APRSWXNET , ,DW1000 Huesca ES , +D1002,3,40.00000 ,59.45417 ,18.07050 ,APRSWXNET , ,DW1002 Taby SE , +D1003,3,169.1000 ,30.29433 ,-97.76133,APRSWXNET , ,DW1003 Austin TX US , +D1005,3,150.0000 ,28.69650 ,-17.77250,APRSWXNET , ,DW1005 Tenerife ES , +D1009,3,14.60000 ,33.86550 ,-118.3962,APRSWXNET , ,DW1009 Hermosa Beach CA US , +D1011,3,1652.000 ,40.13200 ,-105.2273,APRSWXNET , ,DW1011 Longmont CO US , +D1012,3,408.0000 ,35.37533 ,-97.46500,APRSWXNET , ,DW1012 Oklahoma City OK US , +D1013,3,148.0000 ,36.48950 ,-88.72050,APRSWXNET , ,DW1013 Mayfield TN US , +D1015,3,812.0000 ,40.67700 ,-85.41967,APRSWXNET , ,DW1015 Warren IN US , +D1016,3,997.0000 ,40.16667 ,-82.26667,APRSWXNET , ,DW1016 Newark OH US , +D1017,3,15.00000 ,41.08067 ,-73.87017,APRSWXNET , ,DW1017 Sleepy Hollow NY US , +D1018,3,3.700000 ,32.14850 ,-80.75633,APRSWXNET , ,DW1018 Hilton Head Island SC US , +D1019,3,134.0000 ,29.05017 ,-97.58333,APRSWXNET , ,DW1019 Yorktown TX US , +D1021,3,179.0000 ,33.19283 ,-116.2787,APRSWXNET , ,DW1021 Borrego Springs CA US , +D1022,3,212.8000 ,36.26083 ,-79.43800,APRSWXNET , ,DW1022 Elon NC US , +D1023,3,699.0000 ,56.25283 ,-120.8520,APRSWXNET , ,DW1023 Fort Saint John BC CA , +D1024,3,545.0000 ,48.08550 ,11.63200 ,APRSWXNET , ,DW1024 Neubiberg DE , +D1025,3,220.0000 ,-42.83792,147.2471 ,APRSWXNET , ,DW1025 Hobart TAS AU , +D1026,3,919.5000 ,46.88083 ,-113.5762,APRSWXNET , ,DW1026 Potomac MT US , +D1027,3,243.0000 ,44.10083 ,-91.82283,APRSWXNET , ,DW1027 Rollingstone MN US , +D1029,3,183.0000 ,17.24600 ,-88.77000,APRSWXNET , ,DW1029 Belmopan BZ , +D1030,3,342.0000 ,39.93152 ,-79.95080,APRSWXNET , ,DW1030 Rices Landing PA US , +D1031,3,244.8000 ,43.20966 ,-82.97826,APRSWXNET , ,DW1031 Brown City MI US , +D1032,3,256.0000 ,43.32130 ,-83.08054,APRSWXNET , ,DW1032 Marlette MI US , +D1033,3,270.0000 ,39.12083 ,-95.06250,APRSWXNET , ,DW1033 Tonganoxie KS US , +D1034,3,1321.000 ,38.57083 ,-97.67117,APRSWXNET , ,DW1034 Lindsborg KS US , +D1035,3,750.0000 ,41.84700 ,-72.34500,APRSWXNET , ,DW1035 Tolland CT US , +D1036,3,0.000000 ,29.99533 ,-90.13617,APRSWXNET , ,DW1036 Metairie LA US , +D1038,3,2011.700 ,36.91417 ,-104.4350,APRSWXNET , ,DW1038 Raton NM US , +D1039,3,237.0000 ,39.39333 ,-84.47700,APRSWXNET , ,DW1039 Hamilton OH US , +D1042,3,32.00000 ,54.57383 ,9.620000 ,APRSWXNET , ,DW1042 Tolk DE , +D1043,3,2527.700 ,38.97133 ,-105.0325,APRSWXNET , ,DW1043 Woodland Park CO US , +D1044,3,96.00000 ,44.98633 ,10.99333 ,APRSWXNET , ,DW1044 Scandiano IT , +D1045,3,202.7000 ,43.40000 ,-85.80000,APRSWXNET , ,DW1045 Newaygo MI US , +D1046,3,7.000000 ,27.86367 ,-82.36467,APRSWXNET , ,DW1046 Riverview FL US , +D1047,3,76.00000 ,30.51783 ,-85.03550,APRSWXNET , ,DW1047 Blountstown FL US , +D1048,3,648.0000 ,32.72317 ,-96.84717,APRSWXNET , ,DW1048 Dallas TX US , +D1049,3,233.0000 ,38.83217 ,-86.80150,APRSWXNET , ,DW1049 Crane IN US , +D1050,3,285.0000 ,39.97317 ,-83.16833,APRSWXNET , ,DW1050 Columbus OH US , +D1051,3,259.0000 ,42.04783 ,-91.57417,APRSWXNET , ,DW1051 Marion IA US , +D1052,3,554.0000 ,33.33967 ,-111.4347,APRSWXNET , ,DW1052 Gold Canyon AZ US , +D1053,3,265.0000 ,47.56000 ,7.611170 ,APRSWXNET , ,DW1053 Basel CH , +D1056,3,10.40000 ,36.97817 ,-121.9550,APRSWXNET , ,DW1056 Capitola CA US , +D1057,3,274.3000 ,35.13608 ,-85.15349,APRSWXNET , ,DW1057 Chattanooga TN US , +D1059,3,38.00000 ,45.58798 ,-62.65649,APRSWXNET , ,DW1059 New Glasgow NS CA , +D1060,3,413.0000 ,34.66083 ,-99.33450,APRSWXNET , ,DW1060 Altus OK US , +D1061,3,16.00000 ,28.19400 ,-82.60199,APRSWXNET , ,DW1061 Odessa FL US , +D1063,3,130.0000 ,51.38283 ,10.21633 ,APRSWXNET , ,DW1063 Leipzig DE , +D1064,3,85.00000 ,57.78333 ,12.13333 ,APRSWXNET , ,DW1064 Guthenburg SE , +D1065,3,130.0000 ,59.60000 ,11.17950 ,APRSWXNET , ,DW1065 Askim NO , +D1066,3,9.000000 ,44.96140 ,11.59674 ,APRSWXNET , ,DW1066 Fiesso Umbertiano IT , +D1067,3,76.20000 ,17.41667 ,-88.76667,APRSWXNET , ,DW1067 Belmopan BZ , +D1069,3,0.000000 ,49.90444 ,0.922220 ,APRSWXNET , ,DW1069 Quiberville FR , +D1070,3,1459.000 ,36.24833 ,-93.10300,APRSWXNET , ,DW1070 Harrison AR US , +D1072,3,345.0000 ,42.21817 ,-76.42033,APRSWXNET , ,DW1072 Spencer NY US , +D1073,3,3.000000 ,28.12517 ,-80.64000,APRSWXNET , ,DW1073 Melbourne FL US , +D1077,3,108.0000 ,43.67919 ,-79.34026,APRSWXNET , ,DW1077 Toronto ON CA , +D1078,3,303.0000 ,33.99717 ,-84.45250,APRSWXNET , ,DW1078 Marietta GA US , +D1079,3,84.00000 ,52.20883 ,-1.003830,APRSWXNET , ,DW1079 Bugbrooke UK , +D1081,3,27.40000 ,30.50850 ,-89.17000,APRSWXNET , ,DW1081 Gulfport MS US , +D1083,3,1100.000 ,46.74833 ,13.84700 ,APRSWXNET , ,DW1083 Arriach AT , +D1084,3,11.00000 ,39.93222 ,-75.15288,APRSWXNET , ,DW1084 Philadelphia PA US , +D1085,3,374.9000 ,36.95426 ,-92.66256,APRSWXNET , ,DW1085 Ava MO US , +D1086,3,6.000000 ,40.92333 ,-73.33050,APRSWXNET , ,DW1086 Northport NY US , +D1087,3,1261.000 ,44.98632 ,-105.1908,APRSWXNET , ,DW1087 Weston WY US , +D1088,3,1488.000 ,40.35302 ,-104.8703,APRSWXNET , ,DW1088 Milliken CO US , +D1089,3,212.0000 ,43.65025 ,1.062350 ,APRSWXNET , ,DW1089 L' Isle Jourdain FR , +D1091,3,45.00000 ,39.05333 ,-76.02000,APRSWXNET , ,DW1091 Centreville MD US , +D1092,3,31.00000 ,43.51350 ,-70.45550,APRSWXNET , ,DW1092 Saco ME US , +D1093,3,770.0000 ,-32.90000,-68.83333,APRSWXNET , ,DW1093 Mendoza AR , +D1096,3,42.00000 ,38.98950 ,-76.79550,APRSWXNET , ,DW1096 Bowie MD US , +D1097,3,583.0000 ,50.43500 ,-104.5322,APRSWXNET , ,DW1097 Regina SK CA , +D1098,3,859.5000 ,32.03000 ,-102.0903,APRSWXNET , ,DW1098 Midland TX US , +D1101,3,20.00000 ,60.04445 ,18.83004 ,APRSWXNET , ,DW1101 Norrtaolje SE , +D1102,3,396.0000 ,35.14183 ,-97.65717,APRSWXNET , ,DW1102 Blanchard OK US , +D1103,3,3.000000 ,29.69867 ,-90.57083,APRSWXNET , ,DW1103 Raceland LA US , +D1105,3,163.0000 ,40.88050 ,-74.46333,APRSWXNET , ,DW1105 Denville NJ US , +D1107,3,100.0000 ,45.08000 ,-64.27050,APRSWXNET , ,DW1107 Wolfville NS CA , +D1108,3,18.00000 ,51.88687 ,-2.208910,APRSWXNET , ,DW1108 Gloucester UK , +D1110,3,955.0000 ,41.35267 ,-93.56133,APRSWXNET , ,DW1110 Indianola IA US , +D1111,3,280.0000 ,46.53367 ,15.67617 ,APRSWXNET , ,DW1111 Maribor SL , +D1112,3,95.00000 ,43.22150 ,5.534170 ,APRSWXNET , ,DW1112 Cassis FR , +D1113,3,24.00000 ,28.15050 ,-81.43333,APRSWXNET , ,DW1113 Kissimmee FL US , +D1115,3,121.3000 ,36.35283 ,-121.2083,APRSWXNET , ,DW1115 Greenfield CA US , +D1117,3,18.00000 ,25.20000 ,55.30000 ,APRSWXNET , ,DW1117 Jumeirah AE , +D1118,3,1125.000 ,31.72682 ,-104.9335,APRSWXNET , ,DW1118 Dellcity TX US , +D1121,3,542.5000 ,35.09117 ,-84.04700,APRSWXNET , ,DW1121 Murphy NC US , +D1122,3,14.00000 ,28.01752 ,-82.69732,APRSWXNET , ,DW1122 Safety Harbor FL US , +D1123,3,100.0000 ,31.68083 ,-90.78233,APRSWXNET , ,DW1123 Union Church MS US , +D1124,3,264.3000 ,43.09550 ,-73.19500,APRSWXNET , ,DW1124 West Arlington VT US , +D1126,3,106.0000 ,39.20000 ,-82.90000,APRSWXNET , ,DW1126 Circleville OH US , +D1127,3,876.0000 ,35.94400 ,-115.1027,APRSWXNET , ,DW1127 Henderson NV US , +D1128,3,25.00000 ,51.29967 ,4.692500 ,APRSWXNET , ,DW1128 Antwerp BE , +D1129,3,335.3000 ,42.32322 ,-73.52351,APRSWXNET , ,DW1129 Spencertown NY US , +D1130,3,444.0000 ,47.46617 ,8.469500 ,APRSWXNET , ,DW1130 Niederhasli CH , +D1133,3,71.00000 ,42.74700 ,-71.54100,APRSWXNET , ,DW1133 Hollis NH US , +D1137,3,117.4000 ,41.32675 ,-74.42776,APRSWXNET , ,DW1137 Goshen NY US , +D1138,3,10.00000 ,48.69617 ,-1.362000,APRSWXNET , ,DW1138 St. Jean de la Haize FR , +D1142,3,1626.000 ,35.17217 ,-106.9845,APRSWXNET , ,DW1142 Albuquerque NM US , +D1143,3,6.000000 ,51.43123 ,-2.851660,APRSWXNET , ,DW1143 Clevedon UK , +D1144,3,195.0000 ,35.76302 ,-92.35286,APRSWXNET , ,DW1144 Fox AR US , +D1145,3,76.00000 ,41.03567 ,-73.67150,APRSWXNET , ,DW1145 Greenwich CT US , +D1146,3,104.0000 ,44.08317 ,-73.27200,APRSWXNET , ,DW1146 Addison VT US , +D1147,3,18.00000 ,44.72050 ,-67.40367,APRSWXNET , ,DW1147 East Machias ME US , +D1150,3,46.00000 ,38.32533 ,-76.61950,APRSWXNET , ,DW1150 Leonardtown MD US , +D1152,3,1546.000 ,40.13950 ,-105.1717,APRSWXNET , ,DW1152 Longmont CO US , +D1153,3,192.0000 ,32.58333 ,-85.55000,APRSWXNET , ,DW1153 Auburn AL US , +D1154,3,224.6000 ,33.54350 ,-86.57267,APRSWXNET , ,DW1154 Leeds AL US , +D1155,3,122.0000 ,37.82567 ,-120.7337,APRSWXNET , ,DW1155 Knights Ferry CA US , +D1156,3,432.0000 ,43.08000 ,-77.39633,APRSWXNET , ,DW1156 Fairport NY US , +D1157,3,143.0000 ,26.24800 ,-98.48783,APRSWXNET , ,DW1157 La Joya TX US , +D1158,3,314.6000 ,33.92867 ,-83.83583,APRSWXNET , ,DW1158 Harbins GA US , +D1163,3,12.00000 ,26.93367 ,-80.13300,APRSWXNET , ,DW1163 Jupiter FL US , +D1167,3,5.000000 ,40.94833 ,-73.73050,APRSWXNET , ,DW1167 Mamaroneck NY US , +D1174,3,317.0000 ,41.60700 ,-81.33100,APRSWXNET , ,DW1174 Kirtland OH US , +D1175,3,172.9000 ,33.19583 ,-117.2177,APRSWXNET , ,DW1175 Vista CA US , +D1176,3,380.0000 ,41.69800 ,-76.02783,APRSWXNET , ,DW1176 Meshoppen PA US , +D1177,3,32.00000 ,49.64229 ,-124.0604,APRSWXNET , ,DW1177 Pender Harbor BC CA , +D1180,3,172.0000 ,30.52167 ,-97.42267,APRSWXNET , ,DW1180 Taylor TX US , +D1181,3,282.0000 ,38.95000 ,-95.28067,APRSWXNET , ,DW1181 Lawrence KS US , +D1182,3,309.3000 ,45.97800 ,-93.00050,APRSWXNET , ,DW1182 Hinckley MN US , +D1183,3,35.00000 ,29.71700 ,-95.78617,APRSWXNET , ,DW1183 Katy TX US , +D1184,3,260.0000 ,50.25467 ,-121.6113,APRSWXNET , ,DW1184 Lytton BC CA , +D1187,3,610.0000 ,38.63333 ,-1.150000,APRSWXNET , ,DW1187 Yecla ES , +D1188,3,665.0000 ,47.71750 ,-116.8177,APRSWXNET , ,DW1188 Coeur D Alene ID US , +D1189,3,22.00000 ,38.90967 ,-77.00583,APRSWXNET , ,DW1189 Washington DC US , +D1191,3,306.0000 ,45.53367 ,-91.22850,APRSWXNET , ,DW1191 Bruce WI US , +D1192,3,321.0000 ,40.09700 ,-82.79933,APRSWXNET , ,DW1192 New Albany OH US , +D1193,3,3.000000 ,28.71300 ,-81.32083,APRSWXNET , ,DW1193 Winter Springs FL US , +D1194,3,1161.000 ,44.21217 ,-116.2595,APRSWXNET , ,DW1194 Ola ID US , +D1195,3,120.0000 ,51.70000 ,-0.400000,APRSWXNET , ,DW1195 Abbots Langley UK , +D1196,3,159.0000 ,51.96759 ,-0.681260,APRSWXNET , ,DW1196 Great Brickhill UK , +D1197,3,428.0000 ,30.84800 ,-98.11800,APRSWXNET , ,DW1197 Burnet TX US , +D1198,3,304.2000 ,44.78467 ,-93.22550,APRSWXNET , ,DW1198 Eagan MN US , +D1199,3,406.3000 ,45.04550 ,-84.79467,APRSWXNET , ,DW1199 Elmira MI US , +D1200,3,87.00000 ,34.60330 ,-89.95573,APRSWXNET , ,DW1200 Senatobia MS US , +D1201,3,230.0000 ,52.98417 ,-2.739170,APRSWXNET , ,DW1201 Madley UK , +D1202,3,91.40000 ,31.26783 ,-85.37236,APRSWXNET , ,DW1202 Dothan AL US , +D1203,3,226.0000 ,40.48300 ,-80.06200,APRSWXNET , ,DW1203 McKees Rocks PA US , +D1210,3,238.0000 ,47.77533 ,7.297170 ,APRSWXNET , ,DW1210 Pfastatt FR , +D1213,3,200.0000 ,42.99333 ,-72.66167,APRSWXNET , ,DW1213 Newfane VT US , +D1214,3,50.00000 ,40.29700 ,-74.68767,APRSWXNET , ,DW1214 Lawrenceville NJ US , +D1215,3,78.60000 ,43.40517 ,-70.74065,APRSWXNET , ,DW1215 Sanford ME US , +D1216,3,29.00000 ,46.15903 ,-60.18649,APRSWXNET , ,DW1216 New Waterford NS CA , +D1218,3,0.000000 ,28.22917 ,-82.74950,APRSWXNET , ,DW1218 New Port Richey FL US , +D1219,3,281.0000 ,42.05167 ,-92.94333,APRSWXNET , ,DW1219 Marshalltown IA US , +D1220,3,304.0000 ,35.95000 ,-80.30000,APRSWXNET , ,DW1220 Lexington NC US , +D1222,3,9.000000 ,30.07074 ,-81.64867,APRSWXNET , ,DW1222 Switzerland FL US , +D1223,3,1004.000 ,48.17159 ,-114.4567,APRSWXNET , ,DW1223 Kalispell MT US , +D1224,3,70.10000 ,33.95353 ,-88.50542,APRSWXNET , ,DW1224 Amory MS US , +D1227,3,146.0000 ,48.84917 ,3.494500 ,APRSWXNET , ,DW1227 Rieux FR , +D1228,3,2.000000 ,29.99417 ,-90.20800,APRSWXNET , ,DW1228 Metairie LA US , +D1230,3,1890.000 ,43.53767 ,-110.7395,APRSWXNET , ,DW1230 Jackson WY US , +D1231,3,206.0000 ,33.14083 ,-96.58383,APRSWXNET , ,DW1231 Fairview TX US , +D1232,3,241.7000 ,29.53964 ,-98.68893,APRSWXNET , ,DW1232 Helotes TX US , +D1234,3,357.0000 ,41.16717 ,-95.94967,APRSWXNET , ,DW1234 Bellevue NE US , +D1240,3,570.0000 ,48.30833 ,8.913670 ,APRSWXNET , ,DW1240 Bisingen DE , +D1241,3,38.00000 ,29.98267 ,-95.69067,APRSWXNET , ,DW1241 Cypress TX US , +D1242,3,1423.000 ,39.04792 ,-119.7597,APRSWXNET , ,DW1242 Minden NV US , +D1243,3,135.0000 ,38.46817 ,-122.6367,APRSWXNET , ,DW1243 Santa Rosa CA US , +D1244,3,123.0000 ,28.52100 ,-81.60767,APRSWXNET , ,DW1244 Winter Garden FL US , +D1247,3,10.10000 ,28.25020 ,-80.69510,APRSWXNET , ,DW1247 Viera FL US , +D1249,3,20.00000 ,28.60917 ,-81.12450,APRSWXNET , ,DW1249 Orlando FL US , +D1250,3,291.0000 ,35.99083 ,-80.04450,APRSWXNET , ,DW1250 High Point NC US , +D1252,3,150.0000 ,53.09450 ,-1.376170,APRSWXNET , ,DW1252 Alfreton UK , +D1253,3,482.0000 ,42.65483 ,-78.70300,APRSWXNET , ,DW1253 Colden NY US , +D1254,3,1532.000 ,31.71685 ,-109.8806,APRSWXNET , ,DW1254 Elfrida AZ US , +D1255,3,948.0000 ,42.59367 ,-5.532000,APRSWXNET , ,DW1255 Leon ES , +D1256,3,193.6000 ,40.62582 ,-87.69377,APRSWXNET , ,DW1256 Milford IL US , +D1257,3,8.000000 ,27.70883 ,-80.44483,APRSWXNET , ,DW1257 Vero Beach FL US , +D1258,3,17.00000 ,38.67497 ,-121.7590,APRSWXNET , ,DW1258 Woodland CA US , +D1260,3,45.00000 ,31.91300 ,-92.62050,APRSWXNET , ,DW1260 Winnfield LA US , +D1261,3,1701.400 ,39.69890 ,-105.1077,APRSWXNET , ,DW1261 Lakewood CO US , +D1263,3,4.900000 ,27.36783 ,-80.38600,APRSWXNET , ,DW1263 Port Saint Lucie FL US , +D1265,3,50.00000 ,44.63700 ,-124.0530,APRSWXNET , ,DW1265 Newport OR US , +D1269,3,104.0000 ,37.21928 ,-121.7656,APRSWXNET , ,DW1269 San Jose CA US , +D1271,3,195.0000 ,34.10351 ,-118.2697,APRSWXNET , ,DW1271 Los Angeles CA US , +D1274,3,24.00000 ,30.29499 ,-81.86706,APRSWXNET , ,DW1274 Jacksonville FL US , +D1275,3,23.20000 ,19.00000 ,-155.6000,APRSWXNET , ,DW1275 Naalehu HI US , +D1276,3,208.0000 ,42.20000 ,-87.80000,APRSWXNET , ,DW1276 Lake Forest IL US , +D1279,3,588.0000 ,49.40667 ,20.95000 ,APRSWXNET , ,DW1279 Krynica PL , +D1280,3,700.0000 ,30.35383 ,-98.89117,APRSWXNET , ,DW1280 Fredericksburg TX US , +D1282,3,14.00000 ,46.24489 ,-60.24467,APRSWXNET , ,DW1282 Sydney Mines NS CA , +D1283,3,75.00000 ,42.52609 ,-71.34958,APRSWXNET , ,DW1283 Carlisle Public School MA US , +D1285,3,179.2000 ,33.07114 ,-96.85240,APRSWXNET , ,DW1285 Plano TX US , +D1286,3,55.00000 ,51.28800 ,0.491330 ,APRSWXNET , ,DW1286 Maidstone UK , +D1289,3,139.0000 ,38.15611 ,-85.86313,APRSWXNET , ,DW1289 Pleasure Ridge Park KY US , +D1292,3,350.5000 ,64.05217 ,-145.7312,APRSWXNET , ,DW1292 Delta Junction AK US , +D1295,3,1625.000 ,35.86217 ,-94.24883,APRSWXNET , ,DW1295 West Fork AR US , +D1296,3,65.00000 ,18.29743 ,-65.29025,APRSWXNET , ,DW1296 Culebra PR US , +D1297,3,127.0000 ,36.85352 ,-119.6301,APRSWXNET , ,DW1297 Clovis CA US , +D1298,3,10.00000 ,41.38333 ,2.183330 ,APRSWXNET , ,DW1298 Barcelona ES , +D1300,3,430.0000 ,44.66617 ,10.15800 ,APRSWXNET , ,DW1300 Fornovo IT , +D1301,3,134.0000 ,35.17750 ,-79.49967,APRSWXNET , ,DW1301 Pinehurst NC US , +D1302,3,97.80000 ,52.09083 ,-2.423000,APRSWXNET , ,DW1302 Ledbury UK , +D1305,3,30.50000 ,41.27617 ,-69.96367,APRSWXNET , ,DW1305 Siasconset MA US , +D1306,3,12.20000 ,40.14800 ,-74.88300,APRSWXNET , ,DW1306 Levittown PA US , +D1308,3,30.00000 ,40.90000 ,-73.30000,APRSWXNET , ,DW1308 Northport NY US , +D1310,3,70.10000 ,40.21696 ,-75.46542,APRSWXNET , ,DW1310 Collegeville PA US , +D1314,3,152.4000 ,40.50933 ,-75.79167,APRSWXNET , ,DW1314 Kutztown PA US , +D1316,3,11.50000 ,51.94900 ,-2.228000,APRSWXNET , ,DW1316 Tewkesbury UK , +D1318,3,1256.000 ,39.61478 ,-102.4831,APRSWXNET , ,DW1318 Kirk CO US , +D1321,3,2068.000 ,41.45500 ,-106.8063,APRSWXNET , ,DW1321 Saratoga WY US , +D1322,3,2703.000 ,41.16872 ,-106.2633,APRSWXNET , ,DW1322 Centennial WY US , +D1323,3,1300.000 ,41.23167 ,-121.2183,APRSWXNET , ,DW1323 Lookout CA US , +D1324,3,110.0000 ,41.48333 ,-2.267500,APRSWXNET , ,DW1324 Tiana ES , +D1325,3,152.0000 ,50.41817 ,4.330830 ,APRSWXNET , ,DW1325 Fontaine-L' Eveque BE , +D1326,3,1427.000 ,43.71450 ,-106.6330,APRSWXNET , ,DW1326 Kaycee WY US , +D1328,3,264.2000 ,39.07533 ,-93.71717,APRSWXNET , ,DW1328 Higginsville MO US , +D1329,3,60.00000 ,47.45533 ,0.014170 ,APRSWXNET , ,DW1329 Angers FR , +D1330,3,1240.000 ,38.81433 ,-97.60967,APRSWXNET , ,DW1330 Salina KS US , +D1331,3,20.00000 ,42.14303 ,-70.69364,APRSWXNET , ,DW1331 Huamrock MA US , +D1334,3,42.00000 ,42.54167 ,-71.18567,APRSWXNET , ,DW1334 Wilmington MA US , +D1336,3,1685.000 ,39.56700 ,-105.0675,APRSWXNET , ,DW1336 Columbine Hills CO US , +D1338,3,3.000000 ,35.88633 ,-76.73300,APRSWXNET , ,DW1338 Plymouth NC US , +D1341,3,94.00000 ,49.11056 ,-122.5082,APRSWXNET , ,DW1341 Aldergrove CA , +D1343,3,403.0000 ,36.37333 ,-94.17150,APRSWXNET , ,DW1343 Bentonville AR US , +D1344,3,4.000000 ,40.41450 ,-74.04133,APRSWXNET , ,DW1344 Atlantic Highlands NJ US , +D1345,3,15.00000 ,67.29500 ,14.73083 ,APRSWXNET , ,DW1345 Tverlandet NO , +D1347,3,2371.000 ,39.58800 ,-105.3472,APRSWXNET , ,DW1347 Evergreen CO US , +D1348,3,33.00000 ,27.92583 ,-97.83917,APRSWXNET , ,DW1348 Robstown TX US , +D1349,3,40.00000 ,40.82833 ,14.19417 ,APRSWXNET , ,DW1349 Napoli IT , +D1351,3,200.0000 ,34.65167 ,-92.96850,APRSWXNET , ,DW1351 Hot Springs Village AR US , +D1352,3,677.9000 ,40.71950 ,-99.07625,APRSWXNET , ,DW1352 Kearney NE US , +D1353,3,108.0000 ,44.50050 ,0.496170 ,APRSWXNET , ,DW1353 Montastruc FR , +D1354,3,195.7000 ,38.89483 ,-77.66967,APRSWXNET , ,DW1354 Haymarket VA US , +D1357,3,35.00000 ,39.00867 ,-76.91717,APRSWXNET , ,DW1357 College Park MD US , +D1359,3,50.00000 ,40.74683 ,-74.00683,APRSWXNET , ,DW1359 New York City NY US , +D1360,3,128.0000 ,38.50667 ,-89.81500,APRSWXNET , ,DW1360 Mascoutah IL US , +D1363,3,52.00000 ,30.13459 ,-95.64817,APRSWXNET , ,DW1363 Pinehurst TX US , +D1364,3,514.0000 ,52.11869 ,-106.5993,APRSWXNET , ,DW1364 Saskatoon SK CA , +D1367,3,47.00000 ,51.36617 ,-0.186670,APRSWXNET , ,DW1367 Sutton UK , +D1368,3,5.000000 ,30.08680 ,-91.89765,APRSWXNET , ,DW1368 Cade LA US , +D1369,3,548.0000 ,39.10000 ,-77.70000,APRSWXNET , ,DW1369 Round Hill VA US , +D1370,3,1360.000 ,44.75133 ,-108.7747,APRSWXNET , ,DW1370 Powell WY US , +D1371,3,293.0000 ,45.04350 ,-93.67050,APRSWXNET , ,DW1371 Plymouth MN US , +D1372,3,453.5000 ,34.52097 ,-114.2802,APRSWXNET , ,DW1372 Lake Havasu City AZ US , +D1373,3,97.00000 ,47.35323 ,-122.5882,APRSWXNET , ,DW1373 Gig Harbor WA US , +D1375,3,58.00000 ,33.23701 ,-87.68962,APRSWXNET , ,DW1375 Coker AL US , +D1376,3,157.3000 ,38.52315 ,-89.10975,APRSWXNET , ,DW1376 Centralia IL US , +D1377,3,6.000000 ,36.68433 ,-76.26750,APRSWXNET , ,DW1377 Great Bridge VA US , +D1379,3,211.0000 ,38.67967 ,-90.38867,APRSWXNET , ,DW1379 Olivette MO US , +D1380,3,164.0000 ,36.87518 ,-87.50579,APRSWXNET , ,DW1380 Hopkinsville KY US , +D1381,3,43.00000 ,40.58017 ,17.04217 ,APRSWXNET , ,DW1381 Taranto IT , +D1382,3,124.7000 ,40.04717 ,-75.69250,APRSWXNET , ,DW1382 Lionville PA US , +D1384,3,245.0000 ,51.16200 ,7.987170 ,APRSWXNET , ,DW1384 Finnentrop DE , +D1386,3,181.0000 ,15.03725 ,102.1279 ,APRSWXNET , ,DW1386 Nakhonratchasima TH , +D1388,3,650.0000 ,32.35910 ,-111.1124,APRSWXNET , ,DW1388 Marana AZ US , +D1389,3,5.000000 ,29.99000 ,-91.77200,APRSWXNET , ,DW1389 New Iberia LA US , +D1392,3,35.00000 ,58.56683 ,16.16467 ,APRSWXNET , ,DW1392 Norrkoping SE , +D1394,3,12.00000 ,36.95700 ,-76.59633,APRSWXNET , ,DW1394 Smithfield VA US , +D1395,3,270.0000 ,34.84283 ,-86.61750,APRSWXNET , ,DW1395 Huntsville AL US , +D1397,3,115.0000 ,47.89465 ,-122.0010,APRSWXNET , ,DW1397 Snohomish WA US , +D1399,3,313.0000 ,40.32443 ,-79.75556,APRSWXNET , ,DW1399 North Huntingdon PA US , +D1400,3,459.0000 ,42.22450 ,-78.10467,APRSWXNET , ,DW1400 Friendship NY US , +D1402,3,234.0000 ,35.75638 ,-86.90850,APRSWXNET , ,DW1402 Spring Hill TN US , +D1404,3,12.00000 ,24.70217 ,-81.38050,APRSWXNET , ,DW1404 Big Pine Key FL US , +D1410,3,151.0000 ,60.47367 ,22.69283 ,APRSWXNET , ,DW1410 Paimio FI , +D1414,3,2.000000 ,40.88783 ,-72.38617,APRSWXNET , ,DW1414 Southampton NY US , +D1415,3,28.00000 ,40.77283 ,-74.14083,APRSWXNET , ,DW1415 Kearny NJ US , +D1417,3,391.0000 ,-31.08550,150.9310 ,APRSWXNET , ,DW1417 Tamworth NSW AU , +D1419,3,76.00000 ,40.73675 ,-74.36857,APRSWXNET , ,DW1419 Summit NJ US , +D1420,3,213.0000 ,37.12896 ,-85.85918,APRSWXNET , ,DW1420 Cave City KY US , +D1426,3,13.00000 ,30.16667 ,-92.03333,APRSWXNET , ,DW1426 Lafayette LA US , +D1427,3,8.000000 ,43.89083 ,-69.81833,APRSWXNET , ,DW1427 Bath MA US , +D1428,3,604.0000 ,46.56467 ,6.604330 ,APRSWXNET , ,DW1428 Romanel-sur-Lausanne CH , +D1430,3,1250.000 ,44.83517 ,-120.6258,APRSWXNET , ,DW1430 Wyman Springs Ridge OR US , +D1433,3,66.00000 ,51.31933 ,-1.888830,APRSWXNET , ,DW1433 Winchester UK , +D1435,3,161.5000 ,36.86533 ,-87.51717,APRSWXNET , ,DW1435 Hopkinsville KY US , +D1436,3,55.00000 ,54.53089 ,-1.201980,APRSWXNET , ,DW1436 Middlesbrough UK , +D1437,3,105.0000 ,52.01033 ,-2.596170,APRSWXNET , ,DW1437 Hereford UK , +D1438,3,448.0000 ,42.80717 ,-1.661670,APRSWXNET , ,DW1438 Pamplona ES , +D1439,3,247.0000 ,43.94217 ,-123.2172,APRSWXNET , ,DW1439 Eugene OR US , +D1444,3,10.00000 ,21.44383 ,-157.7383,APRSWXNET , ,DW1444 Kaneohe HI US , +D1446,3,8.000000 ,32.95983 ,-80.16850,APRSWXNET , ,DW1446 Summerville SC US , +D1448,3,632.0000 ,36.12000 ,-118.7617,APRSWXNET , ,DW1448 Springville CA US , +D1449,3,81.00000 ,55.96131 ,13.10017 ,APRSWXNET , ,DW1449 Axelvold SE , +D1450,3,10.00000 ,36.71083 ,-76.19450,APRSWXNET , ,DW1450 Chesapeake VA US , +D1451,3,270.0000 ,35.25700 ,-81.18600,APRSWXNET , ,DW1451 Gastonia NC US , +D1453,3,15.00000 ,55.32050 ,-131.6010,APRSWXNET , ,DW1453 Saxman AK US , +D1454,3,176.0000 ,64.89383 ,-147.8757,APRSWXNET , ,DW1454 Goldstream Creek;FBKS AK US , +D1457,3,5.000000 ,41.64167 ,-70.63883,APRSWXNET , ,DW1457 North Falmouth MA US , +D1458,3,18.00000 ,30.40367 ,-87.66967,APRSWXNET , ,DW1458 Foley AL US , +D1459,3,58.00000 ,30.69118 ,-88.15979,APRSWXNET , ,DW1459 Mobile AL US , +D1461,3,1.000000 ,51.80683 ,3.941170 ,APRSWXNET , ,DW1461 Ouddorp NL , +D1462,3,1.000000 ,51.81450 ,3.979330 ,APRSWXNET , ,DW1462 Goedereede NL , +D1464,3,1.000000 ,51.81417 ,4.029500 ,APRSWXNET , ,DW1464 Stellendam NL , +D1465,3,12.00000 ,52.18958 ,1.564860 ,APRSWXNET , ,DW1465 Knodishall UK , +D1466,3,7.000000 ,52.04417 ,4.236670 ,APRSWXNET , ,DW1466 The Hague NL , +D1467,3,235.9000 ,43.09600 ,-85.22383,APRSWXNET , ,DW1467 Belding MI US , +D1468,3,477.0000 ,50.76165 ,12.93486 ,APRSWXNET , ,DW1468 Chemnitz DE , +D1469,3,473.0000 ,47.24000 ,9.210000 ,APRSWXNET , ,DW1469 Tettnang DE , +D1470,3,51.00000 ,-27.64033,153.0497 ,APRSWXNET , ,DW1470 Sunnybank QL AU , +D1471,3,152.9000 ,61.61633 ,-149.4575,APRSWXNET , ,DW1471 Wasilla AK US , +D1474,3,200.0000 ,47.77168 ,-122.3219,APRSWXNET , ,DW1474 Shoreline WA US , +D1477,3,706.0000 ,36.91787 ,-3.468480,APRSWXNET , ,DW1477 Lanjaron ES , +D1481,3,15.00000 ,47.55200 ,-122.3928,APRSWXNET , ,DW1481 Seattle WA US , +D1482,3,221.0000 ,46.47333 ,-87.36783,APRSWXNET , ,DW1482 Harvey MI US , +D1483,3,274.0000 ,38.98700 ,-94.28417,APRSWXNET , ,DW1483 Blue Springs MO US , +D1485,3,337.0000 ,36.58817 ,-80.19583,APRSWXNET , ,DW1485 Patrick Springs VA US , +D1487,3,975.0000 ,46.00000 ,-116.4000,APRSWXNET , ,DW1487 Cottonwood ID US , +D1489,3,1885.000 ,43.51633 ,-110.8425,APRSWXNET , ,DW1489 Wilson WY US , +D1490,3,1678.000 ,35.12300 ,-106.5338,APRSWXNET , ,DW1490 Albuquerque NM US , +D1491,3,60.00000 ,-33.77050,151.1375 ,APRSWXNET , ,DW1491 Sydney AU , +D1492,3,38.00000 ,51.44733 ,-0.885670,APRSWXNET , ,DW1492 Reading UK , +D1496,3,30.00000 ,29.02050 ,-82.46783,APRSWXNET , ,DW1496 Citrus Springs FL US , +D1498,3,782.5000 ,33.87835 ,-111.9179,APRSWXNET , ,DW1498 Carefree AZ US , +D1499,3,709.0000 ,47.70000 ,-107.8000,APRSWXNET , ,DW1499 Malta MT US , +D1500,3,335.0000 ,36.15483 ,-85.53867,APRSWXNET , ,DW1500 Cookeville TN US , +D1502,3,10.00000 ,40.55817 ,8.322000 ,APRSWXNET , ,DW1502 Alghero IT , +D1503,3,10.00000 ,39.16150 ,8.516830 ,APRSWXNET , ,DW1503 Carbonia IT , +D1504,3,10.00000 ,39.30800 ,8.528000 ,APRSWXNET , ,DW1504 Iglesias IT , +D1505,3,10.00000 ,40.31467 ,9.316000 ,APRSWXNET , ,DW1505 Nuoro IT , +D1506,3,10.00000 ,40.95533 ,9.484170 ,APRSWXNET , ,DW1506 Olbia IT , +D1507,3,10.00000 ,39.88917 ,8.580330 ,APRSWXNET , ,DW1507 Oristano IT , +D1508,3,10.00000 ,40.82867 ,8.396500 ,APRSWXNET , ,DW1508 Porto Torres IT , +D1509,3,10.00000 ,40.72267 ,8.554670 ,APRSWXNET , ,DW1509 Sassari IT , +D1510,3,10.00000 ,39.91400 ,9.631170 ,APRSWXNET , ,DW1510 Tortoli IT , +D1511,3,214.0000 ,51.26700 ,7.217500 ,APRSWXNET , ,DW1511 Wuppertal DE , +D1512,3,211.0000 ,42.07962 ,26.65425 ,APRSWXNET , ,DW1512 Razdel BG , +D1516,3,10.10000 ,30.35433 ,-87.50150,APRSWXNET , ,DW1516 Elberta AL US , +D1519,3,278.9000 ,43.48952 ,-85.46071,APRSWXNET , ,DW1519 Morley MI US , +D1520,3,388.0000 ,44.05167 ,-92.52800,APRSWXNET , ,DW1520 Rochester MN US , +D1522,3,305.0000 ,61.25417 ,-149.2888,APRSWXNET , ,DW1522 Eagle River AK US , +D1523,3,530.0000 ,28.76617 ,-17.97950,APRSWXNET , ,DW1523 Puntagorda CI ES , +D1524,3,220.0000 ,40.79117 ,-89.19633,APRSWXNET , ,DW1524 Roanoke IL US , +D1525,3,199.0000 ,46.53196 ,-87.39913,APRSWXNET , ,DW1525 Marquette MI US , +D1527,3,85.00000 ,37.37250 ,-6.047830,APRSWXNET , ,DW1527 Sevilla ES , +D1531,3,389.0000 ,43.44183 ,-91.81167,APRSWXNET , ,DW1531 Burr Oak IA US , +D1533,3,184.0000 ,48.13750 ,16.28800 ,APRSWXNET , ,DW1533 Vienna AT , +D1536,3,604.0000 ,35.75283 ,-95.41800,APRSWXNET , ,DW1536 Muskogee OK US , +D1540,3,554.0000 ,36.69833 ,-88.37717,APRSWXNET , ,DW1540 Kirksey KY US , +D1541,3,175.3000 ,47.72350 ,-121.9202,APRSWXNET , ,DW1541 Duvall WA US , +D1542,3,250.0000 ,42.70833 ,-78.82817,APRSWXNET , ,DW1542 Hamburg NY US , +D1544,3,131.0000 ,29.90000 ,-95.50000,APRSWXNET , ,DW1544 Houston TX US , +D1546,3,401.0000 ,39.22550 ,-76.86717,APRSWXNET , ,DW1546 Columbia MD US , +D1548,3,127.0000 ,43.15199 ,-76.87764,APRSWXNET , ,DW1548 Rose NY US , +D1549,3,25.00000 ,67.26050 ,15.41133 ,APRSWXNET , ,DW1549 Fauske NO , +D1552,3,113.4000 ,35.90264 ,-78.59411,APRSWXNET , ,DW1552 Raleigh NC US , +D1553,3,13.00000 ,27.96833 ,-80.58133,APRSWXNET , ,DW1553 Malabar FL US , +D1554,3,86.90000 ,45.77917 ,-122.5277,APRSWXNET , ,DW1554 Battle Ground WA US , +D1555,3,5.000000 ,57.99717 ,11.54450 ,APRSWXNET , ,DW1555 Skarhamn SE , +D1556,3,359.0000 ,43.64750 ,-72.45538,APRSWXNET , ,DW1556 Quechee VT US , +D1558,3,10.00000 ,13.07600 ,-59.59050,APRSWXNET , ,DW1558 Rockley BB , +D1560,3,184.4000 ,32.50000 ,-97.10000,APRSWXNET , ,DW1560 Colleyville TX US , +D1561,3,9.000000 ,30.11563 ,-81.81488,APRSWXNET , ,DW1561 Middleburg FL US , +D1562,3,250.0000 ,43.80106 ,-91.16773,APRSWXNET , ,DW1562 La Crosse WI US , +D1564,3,2685.300 ,39.55633 ,-105.3708,APRSWXNET , ,DW1564 Conifer CO US , +D1565,3,353.0000 ,43.86048 ,-92.18454,APRSWXNET , ,DW1565 Chatfield MI US , +D1566,3,91.00000 ,35.87983 ,-89.02400,APRSWXNET , ,DW1566 Humboldt TN US , +D1570,3,100.0000 ,43.76217 ,-92.00250,APRSWXNET , ,DW1570 Lanesboro MN US , +D1573,3,106.0000 ,47.52467 ,-122.3747,APRSWXNET , ,DW1573 Seattle WA US , +D1574,3,41.00000 ,40.79717 ,-73.31333,APRSWXNET , ,DW1574 Dix Hills NY US , +D1577,3,10.00000 ,43.19667 ,2.979170 ,APRSWXNET , ,DW1577 Narbonne FR , +D1579,3,2080.600 ,37.31667 ,-108.3167,APRSWXNET , ,DW1579 Mancos CO US , +D1580,3,533.7000 ,42.31800 ,-122.9667,APRSWXNET , ,DW1580 Jacksonville OR US , +D1581,3,213.1000 ,41.87569 ,-80.75671,APRSWXNET , ,DW1581 Ashtabula OH US , +D1582,3,2.000000 ,26.91533 ,-80.13083,APRSWXNET , ,DW1582 Jupiter FL US , +D1584,3,4.900000 ,37.63644 ,-122.1262,APRSWXNET , ,DW1584 Hayward CA US , +D1587,3,0.000000 ,51.93250 ,4.878670 ,APRSWXNET , ,DW1587 Langerak (ZH) NL , +D1589,3,35.00000 ,36.69200 ,-4.448000,APRSWXNET , ,DW1589 Malaga ES , +D1590,3,103.0000 ,39.13833 ,-76.86117,APRSWXNET , ,DW1590 Laurel MD US , +D1591,3,19.80000 ,30.81667 ,-87.58333,APRSWXNET , ,DW1591 Pensacola FL US , +D1592,3,6.100000 ,61.10074 ,-146.2090,APRSWXNET , ,DW1592 Valdez AK US , +D1593,3,99.40000 ,36.88750 ,-89.59610,APRSWXNET , ,DW1593 Sikeston MO US , +D1595,3,320.0000 ,34.09833 ,-117.7595,APRSWXNET , ,DW1595 La Verne CA US , +D1596,3,1362.400 ,48.11800 ,-112.6613,APRSWXNET , ,DW1596 Dupuyer MT US , +D1601,3,292.0000 ,42.58900 ,-83.90300,APRSWXNET , ,DW1601 Howell MI US , +D1602,3,537.0000 ,44.77183 ,-121.0825,APRSWXNET , ,DW1602 Gateway OR US , +D1606,3,2410.000 ,33.64307 ,69.23064 ,APRSWXNET , ,DW1606 Gardez AF , +D1607,3,19.80000 ,44.50000 ,-67.90000,APRSWXNET , ,DW1607 Cherryfield ME US , +D1609,3,22.00000 ,51.02867 ,5.009170 ,APRSWXNET , ,DW1609 Zichem BE , +D1610,3,249.3000 ,43.29033 ,-90.35067,APRSWXNET , ,DW1610 Richland Center WI US , +D1611,3,10.00000 ,54.09283 ,-2.808500,APRSWXNET , ,DW1611 Lancaster UK , +D1612,3,880.0000 ,45.83533 ,-122.9720,APRSWXNET , ,DW1612 Scappoose OR US , +D1614,3,11.00000 ,25.81500 ,-80.35550,APRSWXNET , ,DW1614 Doral FL US , +D1616,3,1659.600 ,39.75000 ,-104.7672,APRSWXNET , ,DW1616 Aurora CO US , +D1617,3,25.00000 ,43.47000 ,-3.809170,APRSWXNET , ,DW1617 Santander ES , +D1618,3,39.00000 ,14.71570 ,-17.48738,APRSWXNET , ,DW1618 Dakar SN , +D1621,3,377.0000 ,42.04033 ,23.06633 ,APRSWXNET , ,DW1621 Rilci BG , +D1622,3,5.000000 ,47.10700 ,-124.1783,APRSWXNET , ,DW1622 Copalis Beach WA US , +D1623,3,1203.000 ,40.65133 ,-119.3552,APRSWXNET , ,DW1623 Gerlach NV US , +D1624,3,252.0000 ,41.49000 ,-72.91000,APRSWXNET , ,DW1624 New Haven CT US , +D1626,3,243.0000 ,39.68450 ,-85.87350,APRSWXNET , ,DW1626 New Palestine IN US , +D1627,3,160.0000 ,38.75450 ,-9.257830,APRSWXNET , ,DW1627 Queluz PT , +D1628,3,230.0000 ,43.32019 ,-123.0598,APRSWXNET , ,DW1628 Glide OR US , +D1629,3,190.0000 ,38.78200 ,-9.302500,APRSWXNET , ,DW1629 Mira-Sintra PT , +D1630,3,159.1000 ,29.93150 ,-97.29667,APRSWXNET , ,DW1630 Rosanky TX US , +D1631,3,311.0000 ,42.82467 ,-96.19367,APRSWXNET , ,DW1631 Le Mars IA US , +D1632,3,53.30000 ,45.53522 ,-123.1166,APRSWXNET , ,DW1632 Forest Grove OR US , +D1634,3,70.00000 ,40.74633 ,-73.84633,APRSWXNET , ,DW1634 Flushing Meadows NY US , +D1637,3,65.00000 ,32.38383 ,-93.72117,APRSWXNET , ,DW1637 Shreveport LA US , +D1638,3,4.000000 ,43.00583 ,9.404500 ,APRSWXNET , ,DW1638 Bastia FR , +D1639,3,35.00000 ,44.70900 ,-67.45800,APRSWXNET , ,DW1639 Machias ME US , +D1641,3,1158.000 ,35.55583 ,-82.30367,APRSWXNET , ,DW1641 Black Mountain NC US , +D1650,3,190.0000 ,44.75500 ,-85.59533,APRSWXNET , ,DW1650 Traverse City MI US , +D1651,3,30.00000 ,38.23333 ,-0.616670,APRSWXNET , ,DW1651 El Altet ES , +D1652,3,873.0000 ,44.30550 ,-120.8467,APRSWXNET , ,DW1652 Prineville OR US , +D1653,3,4.000000 ,40.08783 ,-74.05200,APRSWXNET , ,DW1653 Point Pleasant Beach NJ US , +D1654,3,150.0000 ,47.54100 ,-122.1770,APRSWXNET , ,DW1654 Bellevue WA US , +D1655,3,187.1000 ,43.17083 ,-78.68133,APRSWXNET , ,DW1655 Lockport NY US , +D1659,3,96.60000 ,36.64883 ,-121.7880,APRSWXNET , ,DW1659 Seaside CA US , +D1660,3,289.0000 ,39.24770 ,-123.2223,APRSWXNET , ,DW1660 Redwood Valley CA US , +D1661,3,460.0000 ,43.35304 ,-97.43072,APRSWXNET , ,DW1661 Freeman SD US , +D1662,3,5.000000 ,53.11667 ,7.186670 ,APRSWXNET , ,DW1662 Bourtange NL , +D1664,3,157.0000 ,34.03500 ,-118.8245,APRSWXNET , ,DW1664 Malibu CA US , +D1666,3,232.0000 ,36.58529 ,-86.57830,APRSWXNET , ,DW1666 Portland TN US , +D1668,3,866.2000 ,38.18117 ,-94.71550,APRSWXNET , ,DW1668 Pleasanton KS US , +D1669,3,2137.600 ,39.06750 ,-104.8837,APRSWXNET , ,DW1669 Monument CO US , +D1677,3,10.00000 ,41.19467 ,-8.704170,APRSWXNET , ,DW1677 Leca da Palmeira PT , +D1678,3,414.0000 ,34.96060 ,-118.9381,APRSWXNET , ,DW1678 Grapevine CHP CA US , +D1679,3,775.0000 ,41.74467 ,24.39867 ,APRSWXNET , ,DW1679 Devin BG , +D1680,3,70.00000 ,51.38533 ,0.123670 ,APRSWXNET , ,DW1680 London UK , +D1684,3,298.7000 ,41.31000 ,-85.72250,APRSWXNET , ,DW1684 Leesburg IN US , +D1685,3,246.3000 ,36.22167 ,-121.7598,APRSWXNET , ,DW1685 Big Sur CA US , +D1688,3,214.0000 ,42.91749 ,-85.63991,APRSWXNET , ,DW1688 Grand Rapids MI US , +D1690,3,10.00000 ,45.90000 ,-123.9000,APRSWXNET , ,DW1690 Seaside OR US , +D1691,3,760.0000 ,48.90833 ,13.88667 ,APRSWXNET , ,DW1691 Volary CZ , +D1693,3,116.0000 ,47.89706 ,-122.1771,APRSWXNET , ,DW1693 Everett WA US , +D1694,3,157.0000 ,44.88500 ,-70.10033,APRSWXNET , ,DW1694 New Portland ME US , +D1695,3,1119.000 ,31.94448 ,-110.2914,APRSWXNET , ,DW1695 Benson AZ US , +D1696,3,417.9000 ,45.02967 ,-84.67717,APRSWXNET , ,DW1696 Gaylord MI US , +D1699,3,186.0000 ,32.92633 ,-96.73033,APRSWXNET , ,DW1699 Richardson TX US , +D1703,3,746.0000 ,53.40650 ,-113.8905,APRSWXNET , ,DW1703 Leduc AB CA , +D1704,3,375.0000 ,40.47533 ,-80.66883,APRSWXNET , ,DW1704 Knoxville OH US , +D1705,3,67.60000 ,38.20400 ,-77.37300,APRSWXNET , ,DW1705 Corbin VA US , +D1706,3,7.000000 ,30.23095 ,-89.78978,APRSWXNET , ,DW1706 Slidell LA US , +D1707,3,54.00000 ,61.48133 ,-149.9637,APRSWXNET , ,DW1707 Big Lake AK US , +D1710,3,25.00000 ,69.33950 ,18.82450 ,APRSWXNET , ,DW1710 Tromsoe NO , +D1712,3,116.0000 ,58.11331 ,12.62986 ,APRSWXNET , ,DW1712 Trollhattan SE , +D1713,3,38.00000 ,44.98494 ,-73.36369,APRSWXNET , ,DW1713 Rouses Point NY US , +D1714,3,2660.000 ,43.63783 ,-116.3325,APRSWXNET , ,DW1714 Boise ID US , +D1715,3,320.6000 ,30.82967 ,-98.35817,APRSWXNET , ,DW1715 Burnet TX US , +D1717,3,60.00000 ,28.36783 ,-82.20800,APRSWXNET , ,DW1717 Dade City FL US , +D1724,3,50.00000 ,52.41633 ,0.991330 ,APRSWXNET , ,DW1724 Diss UK , +D1728,3,115.0000 ,46.80017 ,-67.86683,APRSWXNET , ,DW1728 Fort Fairfield ME US , +D1729,3,28.00000 ,60.13257 ,-149.4360,APRSWXNET , ,DW1729 Seward AK US , +D1730,3,92.00000 ,53.37941 ,-4.359870,APRSWXNET , ,DW1730 Amlwch UK , +D1731,3,3.000000 ,36.42133 ,28.16533 ,APRSWXNET , ,DW1731 Rhodos GR , +D1732,3,140.2000 ,45.51583 ,-122.5917,APRSWXNET , ,DW1732 Portland OR US , +D1734,3,96.30000 ,44.30834 ,-69.87785,APRSWXNET , ,DW1734 Manchester ME US , +D1736,3,7.000000 ,37.68200 ,-76.62100,APRSWXNET , ,DW1736 Remlik VA US , +D1739,3,169.0000 ,35.35000 ,-93.03333,APRSWXNET , ,DW1739 Russellville AR US , +D1740,3,225.0000 ,42.92149 ,-77.06497,APRSWXNET , ,DW1740 Phelps NY US , +D1743,3,46.00000 ,49.92383 ,1.945000 ,APRSWXNET , ,DW1743 Abbeville FR , +D1745,3,55.00000 ,55.57683 ,11.78850 ,APRSWXNET , ,DW1745 Kirke Eskilstrup DK , +D1747,3,258.0000 ,45.45417 ,-72.07450,APRSWXNET , ,DW1747 st-denis de Brompton PQ CA , +D1748,3,153.0000 ,36.82380 ,-90.51789,APRSWXNET , ,DW1748 Poplar Bluff MO US , +D1749,3,975.0000 ,37.86467 ,-84.66017,APRSWXNET , ,DW1749 Wilmore KY US , +D1751,3,678.0000 ,42.70000 ,-83.20000,APRSWXNET , ,DW1751 Oakland MI US , +D1753,3,192.0000 ,41.62667 ,-83.52700,APRSWXNET , ,DW1753 Toledo OH US , +D1754,3,110.0000 ,39.67217 ,-8.522170,APRSWXNET , ,DW1754 Seiasa PT , +D1755,3,145.0000 ,37.73526 ,-87.06935,APRSWXNET , ,DW1755 Owensboro KY US , +D1756,3,159.0000 ,35.66214 ,-88.40992,APRSWXNET , ,DW1756 Lexington TN US , +D1759,3,200.0000 ,40.30517 ,-88.27733,APRSWXNET , ,DW1759 Dewey IL US , +D1760,3,310.0000 ,38.90618 ,-94.79842,APRSWXNET , ,DW1760 Olathe KS US , +D1764,3,329.5000 ,36.36967 ,-84.10800,APRSWXNET , ,DW1764 LaFollette TN US , +D1768,3,85.00000 ,44.06650 ,-77.00050,APRSWXNET , ,DW1768 Adolphustown ON CA , +D1770,3,64.00000 ,42.95800 ,-71.45833,APRSWXNET , ,DW1770 Manchester NH US , +D1773,3,113.0000 ,48.75717 ,1.962330 ,APRSWXNET , ,DW1773 La-Verriare FR , +D1774,3,10.00000 ,29.59917 ,-95.10633,APRSWXNET , ,DW1774 Pasadena TX US , +D1778,3,247.0000 ,35.34369 ,-80.82158,APRSWXNET , ,DW1778 Charlotte NC US , +D1779,3,343.0000 ,37.66052 ,-91.55352,APRSWXNET , ,DW1779 Salem MO US , +D1780,3,144.0000 ,35.37280 ,-94.36659,APRSWXNET , ,DW1780 Fort Smith AR US , +D1782,3,1409.000 ,40.59933 ,-111.8550,APRSWXNET , ,DW1782 Sandy UT US , +D1787,3,259.0000 ,47.26750 ,-121.9222,APRSWXNET , ,DW1787 Enumclaw WA US , +D1790,3,6.700000 ,26.59750 ,-81.72883,APRSWXNET , ,DW1790 Lehigh Acres FL US , +D1792,3,1828.000 ,37.16850 ,-104.5185,APRSWXNET , ,DW1792 Trinidad CO US , +D1794,3,287.0000 ,43.08512 ,-89.51381,APRSWXNET , ,DW1794 Middleton WI US , +D1795,3,308.0000 ,44.93842 ,-93.68829,APRSWXNET , ,DW1795 Minnetrista MN US , +D1797,3,240.0000 ,-21.26667,55.33333 ,APRSWXNET , ,DW1797 Piton Saint Leu RE , +D1798,3,183.5000 ,41.00000 ,-76.50000,APRSWXNET , ,DW1798 Buckhorn PA US , +D1801,3,96.90000 ,34.13800 ,-80.99617,APRSWXNET , ,DW1801 Columbia SC US , +D1805,3,1421.000 ,42.23550 ,-77.20033,APRSWXNET , ,DW1805 Campbell NY US , +D1806,3,181.0000 ,42.99500 ,-78.75167,APRSWXNET , ,DW1806 Williamsville NY US , +D1808,3,131.0000 ,43.32550 ,-76.22750,APRSWXNET , ,DW1808 Central Square NY US , +D1809,3,833.0000 ,48.35283 ,-107.8797,APRSWXNET , ,DW1809 Malta MT US , +D1810,3,249.0000 ,39.92517 ,-86.01009,APRSWXNET , ,DW1810 Indianapolis IN US , +D1811,3,777.2000 ,41.08417 ,-122.7205,APRSWXNET , ,DW1811 Trinity Center CA US , +D1814,3,250.0000 ,42.16583 ,-88.14617,APRSWXNET , ,DW1814 Barrington IL US , +D1815,3,10.00000 ,36.83500 ,-76.17967,APRSWXNET , ,DW1815 Virginia Beach VA US , +D1816,3,7.000000 ,26.86646 ,-80.05396,APRSWXNET , ,DW1816 Juno Beach FL US , +D1818,3,177.0000 ,40.60100 ,-77.40183,APRSWXNET , ,DW1818 Mifflintown PA US , +D1824,3,55.00000 ,29.80333 ,-96.12117,APRSWXNET , ,DW1824 San Felipe TX US , +D1827,3,2454.000 ,39.08967 ,-108.1045,APRSWXNET , ,DW1827 Mesa CO US , +D1828,3,28.00000 ,50.72583 ,2.531170 ,APRSWXNET , ,DW1828 Hazebrouck FR , +D1830,3,77.40000 ,45.65171 ,-122.5238,APRSWXNET , ,DW1830 Vancouver WA US , +D1831,3,352.0000 ,43.25866 ,-72.22604,APRSWXNET , ,DW1831 Lempster NH US , +D1832,3,296.0000 ,47.44337 ,-121.7614,APRSWXNET , ,DW1832 North Bend WA US , +D1833,3,100.0000 ,50.95950 ,5.482500 ,APRSWXNET , ,DW1833 Genk BE , +D1835,3,299.0000 ,42.13900 ,-84.08600,APRSWXNET , ,DW1835 Manchester MI US , +D1837,3,252.0000 ,35.42679 ,-81.21742,APRSWXNET , ,DW1837 High Shoals NC US , +D1841,3,625.0000 ,38.00467 ,-122.6438,APRSWXNET , ,DW1841 Woodacre CA US , +D1843,3,395.0000 ,41.48167 ,-74.09367,APRSWXNET , ,DW1843 New Windsor NY US , +D1844,3,560.0000 ,46.73915 ,7.626420 ,APRSWXNET , ,DW1844 Thun CH , +D1847,3,80.00000 ,39.75383 ,-75.87050,APRSWXNET , ,DW1847 New London PA US , +D1850,3,303.0000 ,30.49717 ,-97.82717,APRSWXNET , ,DW1850 Cedar Park TX US , +D1851,3,162.0000 ,41.36700 ,-88.44883,APRSWXNET , ,DW1851 Morris IL US , +D1852,3,161.0000 ,40.53717 ,-122.3667,APRSWXNET , ,DW1852 Redding CA US , +D1853,3,700.0000 ,38.73667 ,-89.94667,APRSWXNET , ,DW1853 Maryville IL US , +D1857,3,274.0000 ,33.41867 ,-84.63033,APRSWXNET , ,DW1857 Sharpsburg GA US , +D1858,3,1981.200 ,40.74000 ,-111.5175,APRSWXNET , ,DW1858 Park City UT US , +D1861,3,48.00000 ,60.30750 ,-151.2638,APRSWXNET , ,DW1861 Kasilof AK US , +D1863,3,71.60000 ,33.24350 ,-81.38383,APRSWXNET , ,DW1863 Barnwell SC US , +D1866,3,193.5000 ,41.77815 ,-87.74325,APRSWXNET , ,DW1866 Chicago IL US , +D1869,3,34.80000 ,36.08267 ,-78.58733,APRSWXNET , ,DW1869 Wake Forest NC US , +D1871,3,1250.000 ,34.23650 ,-117.6588,APRSWXNET , ,DW1871 Mt Baldy CA US , +D1872,3,4.600000 ,24.91750 ,-80.63617,APRSWXNET , ,DW1872 Upper Matecumbe Key FL US , +D1874,3,282.0000 ,36.97000 ,-85.06000,APRSWXNET , ,DW1874 Jamestown KY US , +D1875,3,7.000000 ,53.72767 ,7.492830 ,APRSWXNET , ,DW1875 Langeoog DE , +D1877,3,816.0000 ,35.68753 ,-118.2945,APRSWXNET , ,DW1877 Weldon CA US , +D1878,3,1340.000 ,47.40383 ,-93.62267,APRSWXNET , ,DW1878 Deer River MN US , +D1879,3,819.0000 ,44.57751 ,-116.6239,APRSWXNET , ,DW1879 Cambridge ID US , +D1880,3,292.0000 ,43.19317 ,-89.21750,APRSWXNET , ,DW1880 Sun Prairie WI US , +D1882,3,369.0000 ,37.50133 ,-97.00617,APRSWXNET , ,DW1882 Douglass KS US , +D1884,3,45.00000 ,37.89833 ,-122.0520,APRSWXNET , ,DW1884 Walnut Creek CA US , +D1885,3,52.00000 ,42.50183 ,-70.92983,APRSWXNET , ,DW1885 Beverly MA US , +D1886,3,217.9000 ,39.43233 ,-84.35783,APRSWXNET , ,DW1886 Monroe OH US , +D1887,3,231.0000 ,43.41610 ,-84.61794,APRSWXNET , ,DW1887 St. Louis MI US , +D1890,3,42.00000 ,40.50233 ,-124.1050,APRSWXNET , ,DW1890 Rio Dell CA US , +D1894,3,1311.000 ,44.90752 ,6.630740 ,APRSWXNET , ,DW1894 Brianason FR , +D1895,3,389.9000 ,39.40917 ,-119.7188,APRSWXNET , ,DW1895 Reno NV US , +D1896,3,349.0000 ,34.21643 ,-84.28038,APRSWXNET , ,DW1896 Alpharetta GA US , +D1897,3,60.00000 ,50.50717 ,3.969500 ,APRSWXNET , ,DW1897 Shape BE , +D1898,3,191.0000 ,33.03498 ,-96.68998,APRSWXNET , ,DW1898 Plano TX US , +D1899,3,133.0000 ,44.66800 ,-123.2683,APRSWXNET , ,DW1899 Corvallis OR US , +D1900,3,86.00000 ,41.88967 ,-72.48567,APRSWXNET , ,DW1900 Ellington CT US , +D1902,3,7.000000 ,44.13953 ,-64.61852,APRSWXNET , ,DW1902 Mill Village NS CA , +D1903,3,102.0000 ,47.64033 ,-122.4058,APRSWXNET , ,DW1903 Seattle WA US , +D1905,3,268.2240 ,33.90083 ,-84.33333,APRSWXNET , ,DW1905 Atlanta GA US , +D1906,3,209.0000 ,41.78783 ,-72.38217,APRSWXNET , ,DW1906 Coventry CT US , +D1907,3,143.0000 ,35.86466 ,-79.24547,APRSWXNET , ,DW1907 Chapel Hill NC US , +D1910,3,650.0000 ,32.96067 ,-117.0198,APRSWXNET , ,DW1910 Poway CA US , +D1912,3,756.0000 ,40.29083 ,-7.507500,APRSWXNET , ,DW1912 Covilhae PT , +D1915,3,1540.000 ,45.99167 ,-110.6470,APRSWXNET , ,DW1915 Wilsall MT US , +D1917,3,307.5000 ,39.14785 ,-78.37576,APRSWXNET , ,DW1917 Winchester VA US , +D1918,3,292.6000 ,39.27633 ,-94.33683,APRSWXNET , ,DW1918 Liberty MO US , +D1919,3,22.40000 ,33.34417 ,-118.3245,APRSWXNET , ,DW1919 Avalon CA US , +D1921,3,10.00000 ,41.44000 ,-73.55883,APRSWXNET , ,DW1921 Brewster NY US , +D1923,3,50.00000 ,27.85500 ,-82.16883,APRSWXNET , ,DW1923 Lithia FL US , +D1924,3,513.0000 ,47.67600 ,15.89167 ,APRSWXNET , ,DW1924 Gloggnitz AT , +D1926,3,52.00000 ,-36.89133,174.9163 ,APRSWXNET , ,DW1926 Auckland NZ , +D1929,3,8.000000 ,29.06667 ,-81.03333,APRSWXNET , ,DW1929 Daytona Beach FL US , +D1932,3,94.20000 ,30.17050 ,-95.85550,APRSWXNET , ,DW1932 Magnolia TX US , +D1934,3,372.0000 ,36.42568 ,-94.43765,APRSWXNET , ,DW1934 Gravette AR US , +D1938,3,229.8000 ,41.86633 ,-88.12850,APRSWXNET , ,DW1938 Wheaton IL US , +D1941,3,216.0000 ,34.19111 ,-118.9564,APRSWXNET , ,DW1941 Newbury Park CA US , +D1944,3,64.00000 ,44.21783 ,-69.79883,APRSWXNET , ,DW1944 Gardiner ME US , +D1945,3,238.7000 ,41.49101 ,-73.76962,APRSWXNET , ,DW1945 Kent Lakes NY US , +D1947,3,30.00000 ,-35.30500,174.1070 ,APRSWXNET , ,DW1947 Paihia NZ , +D1948,3,595.0000 ,37.57750 ,25.16783 ,APRSWXNET , ,DW1948 Exombourgo GR , +D1950,3,454.0000 ,46.96533 ,8.389170 ,APRSWXNET , ,DW1950 Luzern CH , +D1951,3,6.000000 ,45.38083 ,11.38483 ,APRSWXNET , ,DW1951 Montagnana IT , +D1952,3,263.0000 ,37.41217 ,-83.42533,APRSWXNET , ,DW1952 Talbert KY US , +D1953,3,27.00000 ,51.78283 ,5.866330 ,APRSWXNET , ,DW1953 Nijmegen NL , +D1956,3,66.00000 ,27.69600 ,-82.34600,APRSWXNET , ,DW1956 Sun City Center FL US , +D1959,3,930.9000 ,44.11834 ,-103.1046,APRSWXNET , ,DW1959 Box Elder SD US , +D1961,3,16.00000 ,54.76213 ,9.173650 ,APRSWXNET , ,DW1961 Flensburg DE , +D1962,3,667.0000 ,47.92000 ,8.658830 ,APRSWXNET , ,DW1962 Geisingen DE , +D1965,3,137.0000 ,52.74767 ,-7.552330,APRSWXNET , ,DW1965 Johnstown IE , +D1966,3,129.0000 ,51.77767 ,-1.264830,APRSWXNET , ,DW1966 Oxford UK , +D1967,3,4.600000 ,37.43833 ,-122.1247,APRSWXNET , ,DW1967 Palo Alto CA US , +D1968,3,222.0000 ,41.80000 ,-87.93333,APRSWXNET , ,DW1968 Chicago IL US , +D1970,3,125.6000 ,38.38217 ,-123.0687,APRSWXNET , ,DW1970 Bodega Bay CA US , +D1971,3,890.0000 ,35.16300 ,-82.45833,APRSWXNET , ,DW1971 Zirconia SC US , +D1972,3,551.1000 ,35.75450 ,-98.74767,APRSWXNET , ,DW1972 Thomas OK US , +D1973,3,223.0000 ,41.76632 ,-88.05946,APRSWXNET , ,DW1973 Woodridge IL US , +D1974,3,411.5000 ,36.21717 ,-83.29333,APRSWXNET , ,DW1974 Morristown TN US , +D1975,3,284.0000 ,40.17550 ,-84.21967,APRSWXNET , ,DW1975 Piqua OH US , +D1976,3,24.00000 ,47.60617 ,-52.73467,APRSWXNET , ,DW1976 St Johns NF CA , +D1977,3,305.0000 ,39.56167 ,-95.15800,APRSWXNET , ,DW1977 Atchison KS US , +D1978,3,66.40000 ,37.34783 ,-122.0728,APRSWXNET , ,DW1978 Los Altos CA US , +D1979,3,271.6000 ,45.24750 ,-93.34500,APRSWXNET , ,DW1979 Andover MN US , +D1980,3,117.0000 ,41.13005 ,-73.70817,APRSWXNET , ,DW1980 Armonk NY US , +D1982,3,257.0000 ,44.96000 ,-84.74600,APRSWXNET , ,DW1982 Gaylord MI US , +D1983,3,0.000000 ,44.69783 ,8.040830 ,APRSWXNET , ,DW1983 Alba IT , +D1984,3,1026.000 ,37.61540 ,-93.42744,APRSWXNET , ,DW1984 Bolivar MO US , +D1986,3,91.40000 ,48.04883 ,-122.5883,APRSWXNET , ,DW1986 Freeland WA US , +D1987,3,6.000000 ,27.15383 ,-80.18750,APRSWXNET , ,DW1987 Port Salerno FL US , +D1988,3,121.0000 ,53.70442 ,-1.659870,APRSWXNET , ,DW1988 Heckmondwike UK , +D1989,3,141.0000 ,47.50866 ,-122.3320,APRSWXNET , ,DW1989 Seattle WA US , +D1990,3,122.0000 ,35.99163 ,-78.67358,APRSWXNET , ,DW1990 Wake Forest NC US , +D1991,3,286.0000 ,39.73947 ,-84.05409,APRSWXNET , ,DW1991 Beavercreek OH US , +D1992,3,438.3000 ,34.14200 ,-118.6470,APRSWXNET , ,DW1992 Woodland Hills CA US , +D1993,3,540.0000 ,48.28200 ,9.737500 ,APRSWXNET , ,DW1993 Ulm DE , +D1994,3,44.00000 ,55.84183 ,9.819830 ,APRSWXNET , ,DW1994 Horsens DK , +D1995,3,330.0000 ,47.98902 ,7.912450 ,APRSWXNET , ,DW1995 Freiburg DE , +D1996,3,2.000000 ,26.09375 ,-97.28604,APRSWXNET , ,DW1996 Laguna Vista TX US , +D1997,3,281.9000 ,39.58289 ,-78.59909,APRSWXNET , ,DW1997 Oldtown MD US , +D1998,3,6.000000 ,37.56567 ,-76.80050,APRSWXNET , ,DW1998 West Point VA US , +D2000,3,1269.000 ,40.37783 ,-120.5967,APRSWXNET , ,DW2000 Susanville CA US , +D2001,3,433.0000 ,42.25167 ,-71.54200,APRSWXNET , ,DW2001 Hopkinton MA US , +D2002,3,192.0000 ,42.88667 ,-85.85167,APRSWXNET , ,DW2002 Hudsonville MI US , +D2003,3,138.0000 ,47.53967 ,-122.1742,APRSWXNET , ,DW2003 Newcastle WA US , +D2004,3,167.0000 ,33.17317 ,-97.05417,APRSWXNET , ,DW2004 Shady Shores TX US , +D2008,3,1331.000 ,33.48483 ,-116.7242,APRSWXNET , ,DW2008 Aguanga CA US , +D2010,3,150.0000 ,60.35950 ,5.307830 ,APRSWXNET , ,DW2010 Bergen NO , +D2013,3,300.0000 ,43.88333 ,-81.30833,APRSWXNET , ,DW2013 Wingham ON CA , +D2014,3,666.0000 ,36.17086 ,-93.27217,APRSWXNET , ,DW2014 Compton AR US , +D2015,3,90.00000 ,52.70467 ,-2.527500,APRSWXNET , ,DW2015 Wellington UK , +D2016,3,24.00000 ,28.65833 ,-81.12883,APRSWXNET , ,DW2016 Chuluota FL US , +D2017,3,101.0000 ,46.68050 ,-71.22333,APRSWXNET , ,DW2017 Levis PQ CA , +D2019,3,237.1000 ,41.86750 ,-89.50917,APRSWXNET , ,DW2019 Dixon IL US , +D2020,3,210.0000 ,44.98750 ,-85.77783,APRSWXNET , ,DW2020 Leland MI US , +D2021,3,176.0000 ,41.12398 ,-74.59420,APRSWXNET , ,DW2021 Franklin NJ US , +D2023,3,220.0000 ,57.70021 ,14.12153 ,APRSWXNET , ,DW2023 Norrahammar SE , +D2024,3,310.0000 ,39.32833 ,-78.31450,APRSWXNET , ,DW2024 Cross Junction VA US , +D2025,3,30.00000 ,28.78067 ,-82.34000,APRSWXNET , ,DW2025 Inverness FL US , +D2027,3,408.0000 ,39.58517 ,-79.95983,APRSWXNET , ,DW2027 Morgantown WV US , +D2028,3,3.000000 ,29.89883 ,-90.34217,APRSWXNET , ,DW2028 Luling LA US , +D2031,3,101.0000 ,38.87133 ,-77.19833,APRSWXNET , ,DW2031 Falls Church VA US , +D2032,3,94.00000 ,45.78876 ,-122.5409,APRSWXNET , ,DW2032 Battle Ground WA US , +D2033,3,364.0000 ,42.59950 ,-76.18417,APRSWXNET , ,DW2033 Cortland NY US , +D2034,3,11.00000 ,40.87769 ,-74.00421,APRSWXNET , ,DW2034 Teaneck NJ US , +D2035,3,83.80000 ,37.41972 ,-77.67767,APRSWXNET , ,DW2035 Midlothian VA US , +D2037,3,35.00000 ,56.15883 ,10.15417 ,APRSWXNET , ,DW2037 Aabyhoej DK , +D2038,3,38.10000 ,29.90450 ,-95.67550,APRSWXNET , ,DW2038 Houston TX US , +D2039,3,8.000000 ,51.24533 ,-2.948830,APRSWXNET , ,DW2039 Brent Knoll UK , +D2040,3,5.000000 ,27.63250 ,-80.35617,APRSWXNET , ,DW2040 Vero Beach FL US , +D2041,3,1237.000 ,35.16300 ,-118.6510,APRSWXNET , ,DW2041 Bear Valley Springs CA US , +D2044,3,1995.000 ,41.86667 ,-74.95000,APRSWXNET , ,DW2044 Fremont Center NY US , +D2045,3,330.0000 ,43.08733 ,11.54583 ,APRSWXNET , ,DW2045 Torrenieri - Montalcino IT , +D2047,3,13.70000 ,30.48117 ,-89.93418,APRSWXNET , ,DW2047 Abita Springs LA US , +D2049,3,296.0000 ,44.95400 ,-93.82750,APRSWXNET , ,DW2049 Watertown MN US , +D2051,3,125.0000 ,52.83459 ,-2.315340,APRSWXNET , ,DW2051 High Offley UK , +D2052,3,152.0000 ,42.22583 ,-88.23317,APRSWXNET , ,DW2052 Cary IL US , +D2053,3,300.5000 ,35.91898 ,-84.12356,APRSWXNET , ,DW2053 Knoxville TN US , +D2054,3,271.9000 ,40.52283 ,-81.49167,APRSWXNET , ,DW2054 Dover OH US , +D2056,3,187.0000 ,42.85000 ,-78.75000,APRSWXNET , ,DW2056 West Seneca NY US , +D2057,3,1018.000 ,36.34678 ,138.5214 ,APRSWXNET , ,DW2057 Karuizawa JP , +D2058,3,53.90000 ,45.35433 ,-122.8417,APRSWXNET , ,DW2058 Sherwood OR US , +D2059,3,50.00000 ,37.53800 ,-122.5070,APRSWXNET , ,DW2059 Montara CA US , +D2060,3,70.00000 ,51.37350 ,0.545830 ,APRSWXNET , ,DW2060 Chatham UK , +D2061,3,229.5000 ,32.96333 ,-97.22500,APRSWXNET , ,DW2061 Keller TX US , +D2062,3,3.000000 ,39.59463 ,-75.94364,APRSWXNET , ,DW2062 North East MD US , +D2064,3,2167.700 ,41.22950 ,-110.3687,APRSWXNET , ,DW2064 Mountain View WY US , +D2066,3,28.95000 ,60.57333 ,-151.3070,APRSWXNET , ,DW2066 Kenai AK US , +D2069,3,1508.800 ,39.60344 ,-120.4230,APRSWXNET , ,DW2069 Sattley CA US , +D2070,3,53.00000 ,34.23113 ,-119.0299,APRSWXNET , ,DW2070 Camarillo CA US , +D2071,3,596.4930 ,41.18217 ,-75.40617,APRSWXNET , ,DW2071 Tobyhanna PA US , +D2072,3,278.5000 ,33.02333 ,-84.34200,APRSWXNET , ,DW2072 Meansville GA US , +D2073,3,140.0000 ,34.63500 ,-92.55667,APRSWXNET , ,DW2073 Benton AR US , +D2074,3,176.0000 ,41.21949 ,-75.90787,APRSWXNET , ,DW2074 Hanover Township PA US , +D2076,3,613.0000 ,30.10440 ,-98.80540,APRSWXNET , ,DW2076 Fredericksburg TX US , +D2079,3,19.00000 ,29.69450 ,-95.45100,APRSWXNET , ,DW2079 Bellaire TX US , +D2080,3,10.00000 ,29.50350 ,-94.94833,APRSWXNET , ,DW2080 San Leon TX US , +D2081,3,1030.000 ,38.98383 ,-94.75333,APRSWXNET , ,DW2081 Lenexa KS US , +D2082,3,7.000000 ,33.99137 ,-118.4494,APRSWXNET , ,DW2082 Venice CA US , +D2084,3,376.4000 ,42.05917 ,-75.84217,APRSWXNET , ,DW2084 Conklin NY US , +D2085,3,40.00000 ,52.24050 ,0.408500 ,APRSWXNET , ,DW2085 Newmarket UK , +D2086,3,379.0000 ,46.50633 ,6.550000 ,APRSWXNET , ,DW2086 St Sulpice CH , +D2087,3,144.0000 ,48.31100 ,16.62267 ,APRSWXNET , ,DW2087 Vienna AT , +D2088,3,191.0000 ,39.64083 ,-80.85717,APRSWXNET , ,DW2088 New Martinsville WV US , +D2089,3,1150.000 ,35.20833 ,-97.97117,APRSWXNET , ,DW2089 Pocasset OK US , +D2091,3,15.00000 ,30.32167 ,-81.60450,APRSWXNET , ,DW2091 Jacksonville FL US , +D2093,3,95.00000 ,51.49210 ,-2.191510,APRSWXNET , ,DW2093 Westbury UK , +D2095,3,8.000000 ,-20.19447,57.72371 ,APRSWXNET , ,DW2095 Flic en Flac MU , +D2096,3,300.0000 ,38.71917 ,-95.08200,APRSWXNET , ,DW2096 Wellsville KS US , +D2098,3,350.0000 ,62.97241 ,14.33008 ,APRSWXNET , ,DW2098 Oviken SE , +D2099,3,181.0000 ,30.11033 ,-97.56550,APRSWXNET , ,DW2099 Del Valle TX US , +D2100,3,130.0000 ,43.99556 ,-70.27988,APRSWXNET , ,DW2100 New Gloucester ME US , +D2102,3,255.0000 ,38.70417 ,-77.25617,APRSWXNET , ,DW2102 Lorton VA US , +D2104,3,47.50000 ,39.96717 ,-74.36033,APRSWXNET , ,DW2104 Whiting NJ US , +D2106,3,107.0000 ,49.08333 ,-55.25000,APRSWXNET , ,DW2106 Norris Arm NF CA , +D2107,3,149.0000 ,38.11000 ,20.56000 ,APRSWXNET , ,DW2107 Athens GR , +D2108,3,10.00000 ,40.27783 ,-74.00500,APRSWXNET , ,DW2108 West Long Branch NJ US , +D2109,3,396.5000 ,37.57821 ,-97.40300,APRSWXNET , ,DW2109 Wichita KS US , +D2111,3,294.0000 ,40.33450 ,-83.31250,APRSWXNET , ,DW2111 Marysville OH US , +D2112,3,2216.500 ,34.23217 ,-108.8830,APRSWXNET , ,DW2112 Red Hill NM US , +D2116,3,254.0000 ,50.14291 ,8.390760 ,APRSWXNET , ,DW2116 Eppstein DE , +D2119,3,11.00000 ,59.29200 ,-2.926670,APRSWXNET , ,DW2119 Westray UK , +D2122,3,102.0000 ,51.01217 ,5.648330 ,APRSWXNET , ,DW2122 Genk BE , +D2124,3,1.000000 ,53.73150 ,-0.136000,APRSWXNET , ,DW2124 Kingston Upon Hull UK , +D2125,3,100.0000 ,34.43300 ,-119.6672,APRSWXNET , ,DW2125 Santa Barbara CA US , +D2126,3,452.9000 ,38.69052 ,-120.9961,APRSWXNET , ,DW2126 Cameron Park CA US , +D2128,3,65.50000 ,37.25503 ,-121.9047,APRSWXNET , ,DW2128 San Jose CA US , +D2130,3,10.00000 ,32.02083 ,-80.84717,APRSWXNET , ,DW2130 Tybee Island GA US , +D2133,3,2000.000 ,39.05450 ,-103.9350,APRSWXNET , ,DW2133 Matheson CO US , +D2134,3,400.0000 ,34.11500 ,-117.5250,APRSWXNET , ,DW2134 Rancho Cucamonga CA US , +D2135,3,136.0000 ,41.42500 ,-74.14800,APRSWXNET , ,DW2135 Washingtonville NY US , +D2136,3,48.00000 ,38.97076 ,-77.10588,APRSWXNET , ,DW2136 Kenwood1-ChevyChase MD US , +D2145,3,60.00000 ,28.54217 ,-81.70500,APRSWXNET , ,DW2145 Clermont FL US , +D2147,3,318.5000 ,39.89783 ,-79.74200,APRSWXNET , ,DW2147 Uniontown PA US , +D2148,3,222.0000 ,38.78900 ,-81.12950,APRSWXNET , ,DW2148 Arnoldsburg WV US , +D2149,3,1094.200 ,37.32799 ,-119.5525,APRSWXNET , ,DW2149 Bass Lake CA US , +D2150,3,7.000000 ,29.49807 ,-95.12268,APRSWXNET , ,DW2150 League City TX US , +D2153,3,273.0000 ,30.50283 ,-97.74467,APRSWXNET , ,DW2153 Austin TX US , +D2158,3,225.0000 ,39.58967 ,-86.11950,APRSWXNET , ,DW2158 Greenwood IN US , +D2160,3,3.600000 ,30.37883 ,-89.10800,APRSWXNET , ,DW2160 Gulfport MS US , +D2161,3,56.40000 ,34.26700 ,-119.2247,APRSWXNET , ,DW2161 Ventura CA US , +D2162,3,149.0000 ,45.80744 ,-122.5130,APRSWXNET , ,DW2162 Battle Ground WA US , +D2163,3,789.0000 ,32.23883 ,-110.7965,APRSWXNET , ,DW2163 Tucson AZ US , +D2167,3,239.0000 ,33.71783 ,-96.64167,APRSWXNET , ,DW2167 Denison TX US , +D2168,3,696.0000 ,50.64717 ,-120.3413,APRSWXNET , ,DW2168 Kamloops BC CA , +D2169,3,183.0000 ,32.91750 ,-96.62550,APRSWXNET , ,DW2169 Garland TX US , +D2170,3,321.0000 ,35.65012 ,-120.7196,APRSWXNET , ,DW2170 Paso Robles CA US , +D2171,3,55.00000 ,48.89883 ,2.093830 ,APRSWXNET , ,DW2171 Le Pecq FR , +D2172,3,24.30000 ,44.04283 ,-69.20667,APRSWXNET , ,DW2172 Cushing ME US , +D2173,3,146.0000 ,35.77583 ,-78.84100,APRSWXNET , ,DW2173 Cary NC US , +D2175,3,193.0000 ,46.56867 ,-67.80133,APRSWXNET , ,DW2175 Mars Hill ME US , +D2176,3,512.7000 ,41.07667 ,-75.95383,APRSWXNET , ,DW2176 Drums PA US , +D2180,3,154.5000 ,40.74367 ,-74.81967,APRSWXNET , ,DW2180 Califon NJ US , +D2181,3,1013.000 ,42.93333 ,-88.38333,APRSWXNET , ,DW2181 North Prairie WI US , +D2182,3,1023.000 ,44.00000 ,-94.40000,APRSWXNET , ,DW2182 Madelia MN US , +D2184,3,1850.000 ,39.71983 ,-105.2028,APRSWXNET , ,DW2184 Golden CO US , +D2186,3,45.00000 ,45.63167 ,11.74950 ,APRSWXNET , ,DW2186 Padova IT , +D2187,3,194.2000 ,43.42561 ,-83.95257,APRSWXNET , ,DW2187 Saginaw MI US , +D2188,3,15.20000 ,28.42783 ,-82.54467,APRSWXNET , ,DW2188 Spring Hill FL US , +D2189,3,-6.000000,51.94667 ,4.537170 ,APRSWXNET , ,DW2189 Rotterdam NL , +D2190,3,88.00000 ,51.89183 ,-1.134170,APRSWXNET , ,DW2190 Bicester UK , +D2192,3,718.0000 ,40.40367 ,-3.836330,APRSWXNET , ,DW2192 Boadilla del Monte ES , +D2196,3,1700.800 ,31.44983 ,-109.9312,APRSWXNET , ,DW2196 Bisbee AZ US , +D2199,3,122.0000 ,43.59250 ,-73.63883,APRSWXNET , ,DW2199 Bolton Landing NY US , +D2201,3,4.200000 ,36.82833 ,-76.39967,APRSWXNET , ,DW2201 Chesapeake VA US , +D2202,3,450.0000 ,39.50617 ,-77.91800,APRSWXNET , ,DW2202 Martinsburg WV US , +D2206,3,181.6000 ,41.95917 ,-87.65633,APRSWXNET , ,DW2206 Chicago IL US , +D2207,3,40.00000 ,49.33333 ,-124.3833,APRSWXNET , ,DW2207 Qualicum Beach BC CA , +D2209,3,77.00000 ,51.36633 ,-0.816670,APRSWXNET , ,DW2209 Crowthorne UK , +D2210,3,750.0000 ,39.58500 ,-86.17533,APRSWXNET , ,DW2210 Greenwood IN US , +D2211,3,948.0000 ,37.55650 ,-97.35733,APRSWXNET , ,DW2211 Haysville KS US , +D2212,3,25.00000 ,45.38650 ,11.87517 ,APRSWXNET , ,DW2212 Padova IT , +D2213,3,0.000000 ,39.20033 ,-0.315330,APRSWXNET , ,DW2213 Sueca ES , +D2214,3,357.0000 ,33.31800 ,-111.9342,APRSWXNET , ,DW2214 Chandler AZ US , +D2216,3,1444.000 ,36.42450 ,-82.45183,APRSWXNET , ,DW2216 Gray TN US , +D2217,3,145.0000 ,43.93283 ,-70.61500,APRSWXNET , ,DW2217 Naples ME US , +D2220,3,566.0000 ,38.57833 ,-122.4362,APRSWXNET , ,DW2220 Angwin CA US , +D2222,3,50.00000 ,39.35750 ,-8.477830,APRSWXNET , ,DW2222 Chamusca PT , +D2223,3,166.1000 ,29.62083 ,-97.86800,APRSWXNET , ,DW2223 Seguin TX US , +D2227,3,625.0000 ,41.42367 ,-90.54500,APRSWXNET , ,DW2227 Milan IL US , +D2229,3,12.00000 ,30.24523 ,-87.71816,APRSWXNET , ,DW2229 Gulf Shores AL US , +D2232,3,186.5000 ,47.18633 ,-122.1483,APRSWXNET , ,DW2232 Bonney Lake WA US , +D2235,3,310.0000 ,38.65033 ,-7.548830,APRSWXNET , ,DW2235 Redondo PT , +D2236,3,54.90000 ,30.85117 ,-93.24033,APRSWXNET , ,DW2236 DeRidder LA US , +D2237,3,90.00000 ,38.70117 ,-122.9380,APRSWXNET , ,DW2237 Geyserville CA US , +D2238,3,316.0000 ,39.34583 ,-86.17300,APRSWXNET , ,DW2238 Trafalgar IN US , +D2242,3,238.4000 ,41.79450 ,-80.91117,APRSWXNET , ,DW2242 Geneva OH US , +D2244,3,171.4000 ,41.24800 ,-88.34383,APRSWXNET , ,DW2244 Mazon IL US , +D2245,3,54.90000 ,45.52652 ,-122.9144,APRSWXNET , ,DW2245 Hillsboro OR US , +D2246,3,5.500000 ,40.81000 ,-124.1597,APRSWXNET , ,DW2246 Eureka CA US , +D2247,3,826.0000 ,35.58100 ,-82.92800,APRSWXNET , ,DW2247 Clyde NC US , +D2248,3,62.70000 ,50.99930 ,6.793540 ,APRSWXNET , ,DW2248 Pulheim DE , +D2249,3,100.0000 ,44.52683 ,-122.9398,APRSWXNET , ,DW2249 Lebanon OR US , +D2251,3,2.000000 ,53.24450 ,6.500000 ,APRSWXNET , ,DW2251 Groningen NL , +D2254,3,244.0000 ,34.16250 ,-118.4813,APRSWXNET , ,DW2254 Encino CA US , +D2257,3,25.00000 ,42.46867 ,-70.90883,APRSWXNET , ,DW2257 Swampscott MA US , +D2258,3,36.00000 ,44.33617 ,-68.06200,APRSWXNET , ,DW2258 Winter Harbor ME US , +D2259,3,233.0000 ,44.68850 ,8.810170 ,APRSWXNET , ,DW2259 Gavi IT , +D2260,3,50.00000 ,45.68333 ,-0.350000,APRSWXNET , ,DW2260 Cognac FR , +D2261,3,902.2000 ,38.36717 ,-100.9352,APRSWXNET , ,DW2261 Scott City KS US , +D2262,3,900.0000 ,38.22083 ,-100.9755,APRSWXNET , ,DW2262 Holcomb KS US , +D2264,3,240.0000 ,39.04283 ,-77.46500,APRSWXNET , ,DW2264 Ashburn VA US , +D2265,3,36.00000 ,56.03333 ,-3.350000,APRSWXNET , ,DW2265 Dalgety Bay UK , +D2266,3,83.00000 ,60.53700 ,-150.7978,APRSWXNET , ,DW2266 Sterling AK US , +D2270,3,39.90000 ,30.20717 ,-95.53833,APRSWXNET , ,DW2270 The Woodlands TX US , +D2272,3,515.0000 ,39.50000 ,-77.50000,APRSWXNET , ,DW2272 Frederick MD US , +D2273,3,395.0000 ,36.30157 ,-81.04125,APRSWXNET , ,DW2273 Traphill NC US , +D2274,3,450.0000 ,39.55300 ,-76.42450,APRSWXNET , ,DW2274 Forest Hill MD US , +D2275,3,1200.000 ,36.66000 ,-83.67000,APRSWXNET , ,DW2275 Middlesboro KY US , +D2279,3,543.0000 ,42.96950 ,-1.687170,APRSWXNET , ,DW2279 Pamplona ES , +D2282,3,250.0000 ,36.39283 ,-92.30150,APRSWXNET , ,DW2282 Mountain Home AR US , +ELMA2,3,13.70000 ,64.61750 ,-162.2606,APRSWXNET , ,ELMA2 Elim School AK US , +ERHA2,3,161.0000 ,61.31640 ,-149.5446,APRSWXNET , ,ERHA2 Eagle River Heights AK US , +ERTA2,3,169.0000 ,61.33110 ,-149.5611,APRSWXNET , ,ERTA2 Eagle River Kantishna AK US , +ESFA2,3,491.0000 ,61.25970 ,-149.4767,APRSWXNET , ,ESFA2 Eagle Riv South Fork AK US , +FAOA2,3,182.0000 ,64.86030 ,-147.8484,APRSWXNET , ,FAOA2 College Observatory AK US , +FBSA2,3,708.0000 ,64.87920 ,-148.0550,APRSWXNET , ,FBSA2 Ester Dome AK US , +GLVA2,3,6.700000 ,64.54400 ,-163.0296,APRSWXNET , ,GLVA2 Golovin School AK US , +GMBA2,3,7.900000 ,63.78010 ,-171.7372,APRSWXNET , ,GMBA2 Gambell School AK US , +JMTA2,3,259.7000 ,66.82340 ,-150.6640,APRSWXNET , ,JMTA2 Jim River DOT AK US , +KTUA2,3,35.00000 ,61.18194 ,-149.8700,APRSWXNET , ,KTUA2 Anchorage Midtown AK US , +KYKA2,3,21.30000 ,64.93190 ,-161.1569,APRSWXNET , ,KYKA2 Koyuk School AK US , +LDTA2,3,198.0000 ,65.52250 ,-148.5497,APRSWXNET , ,LDTA2 Livengood DOT AK US , +LKLA2,3,724.0000 ,62.28857 ,-146.5411,APRSWXNET , ,LKLA2 Lake Louise AK US , +MARA2,3,273.0000 ,64.82640 ,-147.9589,APRSWXNET , ,MARA2 Fairbanks AK US , +MDTA2,3,105.0000 ,65.00750 ,-150.6128,APRSWXNET , ,MDTA2 Manley Hot Springs DOT AK US , +MTCA2,3,646.0000 ,65.36000 ,-146.0864,APRSWXNET , ,MTCA2 Montana Creek DOT AK US , +NUAA2,3,44.00000 ,61.19220 ,-149.8207,APRSWXNET , ,NUAA2 Anchorage AK US , +PLFA2,3,93.00000 ,61.58900 ,-149.2100,APRSWXNET , ,PLFA2 Palmer Landfill AK US , +PMSFL,3,38.70000 ,28.36048 ,-82.19676,APRSWXNET , ,PMSFL Dade City FL US , +RSQA2,3,207.0000 ,64.88460 ,-147.5975,APRSWXNET , ,RSQA2 North Bias Drive AK US , +SAGA2,3,497.0000 ,68.76080 ,-148.8731,APRSWXNET , ,SAGA2 Sag River DOT AK US , +SAVA2,3,15.80000 ,63.69420 ,-170.4789,APRSWXNET , ,SAVA2 Savoonga School AK US , +SBBA2,3,4.600000 ,63.52220 ,-162.2881,APRSWXNET , ,SBBA2 Stebbins School AK US , +SBLA2,3,75.00000 ,61.51600 ,-149.6260,APRSWXNET , ,SBLA2 Settler's Bay Lodge AK US , +SEBA2,3,116.0000 ,61.41794 ,-149.4471,APRSWXNET , ,SEBA2 Peters Creek AK US , +SEVA2,3,195.0000 ,65.94030 ,-149.8519,APRSWXNET , ,SEVA2 Seven Mile DOT AK US , +SHSA2,3,7.300000 ,66.25670 ,-166.0719,APRSWXNET , ,SHSA2 Shishmaref School AK US , +SKKA2,3,4.600000 ,64.33390 ,-161.1539,APRSWXNET , ,SKKA2 Shaktoolik School AK US , +SMKA2,3,7.600000 ,63.47810 ,-162.0392,APRSWXNET , ,SMKA2 Saint Michael School AK US , +SOMA2,3,96.00000 ,60.19200 ,-149.3870,APRSWXNET , ,SOMA2 Seward AK US , +SVCA2,3,118.0000 ,61.13850 ,-149.7861,APRSWXNET , ,SVCA2 Anchorage AK US , +TESA2,3,144.0000 ,61.60820 ,-149.4544,APRSWXNET , ,TESA2 Tanaina Elementary AK US , +TLLA2,3,7.300000 ,65.26360 ,-166.3608,APRSWXNET , ,TLLA2 Teller School AK US , +TMSA2,3,132.0000 ,61.61120 ,-149.3553,APRSWXNET , ,TMSA2 Teeland Middle School AK US , +TSEA2,3,111.0000 ,61.14060 ,-149.7896,APRSWXNET , ,TSEA2 Trailside Elementary AK US , +UGAA2,3,11.00000 ,57.50340 ,-157.3956,APRSWXNET , ,UGAA2 Ugashik AK US , +UNKA2,3,4.600000 ,63.87310 ,-160.7881,APRSWXNET , ,UNKA2 Unalakleet School AK US , +UOMA2,3,201.0000 ,61.12900 ,-149.7540,APRSWXNET , ,UOMA2 Upper O'Malley AK US , +WLSA2,3,6.700000 ,65.60920 ,-168.0875,APRSWXNET , ,WLSA2 Wales School AK US , +WMSA2,3,14.90000 ,64.68140 ,-163.4056,APRSWXNET , ,WMSA2 White Mountain School AK US , +WODA2,3,146.0000 ,64.78020 ,-147.2750,APRSWXNET , ,WODA2 Woodsmoke North Pole AK US , +690 ,3,1508.800 ,43.53260 ,-112.9478,ARLFRD , ,Central Facilities , +ABE ,3,1338.700 ,42.95497 ,-112.8245,ARLFRD , ,Aberdeen , +ARC ,3,1612.400 ,43.62452 ,-113.2971,ARLFRD , ,Arco , +ATO ,3,1541.700 ,43.44370 ,-112.8124,ARLFRD , ,Atomic City , +BAS ,3,1493.500 ,43.67756 ,-113.0061,ARLFRD , ,Base of Howe Peak , +BIG ,3,1585.000 ,43.29409 ,-113.1816,ARLFRD , ,Coxs Well , +BLK ,3,1377.700 ,43.18987 ,-112.3333,ARLFRD , ,Blackfoot (MVMS) , +BLU ,3,1731.300 ,44.07490 ,-112.8421,ARLFRD , ,Blue Dome , +CRA ,3,1827.500 ,43.42912 ,-113.5383,ARLFRD , ,Craters of the Moon , +DEA ,3,1556.900 ,43.62487 ,-113.0598,ARLFRD , ,Dead Man Canyon , +DUB ,3,1665.700 ,44.24239 ,-112.2018,ARLFRD , ,Dubois , +EBR ,3,1567.600 ,43.59414 ,-112.6517,ARLFRD , ,Materials Fuels Complex , +FOR ,3,1357.000 ,43.01983 ,-112.4121,ARLFRD , ,Fort Hall , +GRI ,3,1492.600 ,43.58972 ,-112.9399,ARLFRD , ,INTEC/Grid 3 , +HAM ,3,1476.100 ,44.00753 ,-112.2388,ARLFRD , ,Hamer , +HOW ,3,1467.600 ,43.78411 ,-112.9774,ARLFRD , ,Howe , +IDA ,3,1435.300 ,43.50408 ,-112.0501,ARLFRD , ,Idaho Falls , +KET ,3,1581.900 ,43.54755 ,-112.3263,ARLFRD , ,Kettle Butte , +LOF ,3,1460.000 ,43.85979 ,-112.7303,ARLFRD , ,Specific Manufacturing Capability , +LOS ,3,1518.800 ,43.54854 ,-113.0085,ARLFRD , ,Lost River Rest Area , +MIN ,3,1306.100 ,42.80451 ,-113.5898,ARLFRD , ,Minidoka , +MON ,3,1462.100 ,44.01538 ,-112.5359,ARLFRD , ,Monteview , +NRF ,3,1477.400 ,43.64789 ,-112.9112,ARLFRD , ,Naval Reactors Facility , +PBF ,3,1496.600 ,43.54748 ,-112.8697,ARLFRD , ,Critical Infrastructure Complex , +RIC ,3,1315.200 ,43.05841 ,-114.1347,ARLFRD , ,Richfield , +ROB ,3,1450.800 ,43.74221 ,-112.1258,ARLFRD , ,Roberts , +ROV ,3,1526.400 ,43.72059 ,-112.5296,ARLFRD , ,Rover , +RWM ,3,1531.600 ,43.50336 ,-113.0460,ARLFRD , ,Radioactive Waste Management , +RXB ,3,1484.400 ,43.80948 ,-111.8004,ARLFRD , ,Rexburg (MMS) , +SAN ,3,1469.100 ,43.77963 ,-112.7582,ARLFRD , ,Sand Dunes , +SUG ,3,1492.000 ,43.89658 ,-111.7376,ARLFRD , ,Sugar City , +SUM ,3,2309.200 ,43.39630 ,-113.0218,ARLFRD , ,Big Southern Summit , +TAB ,3,1441.700 ,43.31870 ,-112.6919,ARLFRD , ,Taber , +TER ,3,1460.600 ,43.84165 ,-112.4183,ARLFRD , ,Terreton , +TRA ,3,1504.800 ,43.58461 ,-112.9687,ARLFRD , ,Reactor Technologies Complex , +AW202,2,0.000000 ,34.44000 ,-85.81000,AWX , ,Donny Dobbin's Weather, Fort Payne, AL , +AW203,2,195.0000 ,34.78000 ,-86.70000,AWX , ,Huntsville, Huntsville, AL , +AW204,2,808.0000 ,32.20000 ,-110.8000,AWX , ,KD7EIR, Tucson, AZ , +AW205,2,325.0000 ,33.46000 ,-112.6600,AWX , ,Agua Fria Ranch, Youngtown, AZ , +AW206,2,1295.000 ,38.15000 ,-120.1900,AWX , ,Blue Lake Springs, Arnold, CA , +AW207,2,433.0000 ,34.29000 ,-118.5100,AWX , ,The Tcimpidis Compound Weather, Granada , +AW209,2,1658.000 ,39.93000 ,-105.1100,AWX , ,Lac Amora, Broomfield, CO , +AW210,2,1981.000 ,39.26000 ,-105.2200,AWX , ,Trumbull Fire Station, Trumbull, CO , +AW212,2,3.000000 ,26.97000 ,-82.07000,AWX , ,John Morris' Weather, Port Charlotte , +AW213,2,6.000000 ,27.10000 ,-82.44000,AWX , ,Venice High School, Venice, FL , +AW214,2,330.0000 ,41.56000 ,-95.47000,AWX , ,Soldier Weather, Soldier, IA , +AW215,2,1318.000 ,43.50000 ,-115.3100,AWX , ,Pine Weather, Pine, ID , +AW217,2,122.0000 ,38.03000 ,-87.25000,AWX , ,Boonville Weather, Boonville, IN , +AW218,2,5.000000 ,39.59000 ,-75.83000,AWX , ,Elkton Weather, Elkton, MD , +AW219,2,97.00000 ,37.02000 ,-98.49000,AWX , ,Becker Broadcast Systems, Kiowa, KS , +AW220,2,25.00000 ,41.84000 ,-71.05000,AWX , ,Rock of Berkley Weather, Berkley, MA , +AW222,2,91.00000 ,42.15000 ,-72.41000,AWX , ,Easthampton Weather, Easthampton, MA , +AW223,2,17.00000 ,41.80000 ,-71.30000,AWX , ,Southern Seekonk Weather, Seekonk, MA , +AW224,2,3.000000 ,27.74000 ,-82.42000,AWX , ,The Masse Complex, Apollo Beach, FL , +AW226,2,60.00000 ,39.56000 ,-75.90000,AWX , ,Old Wesley School Weather, Elkton, MD , +AW227,2,152.0000 ,39.54000 ,-76.44000,AWX , ,Near Josephs, Fallston, MD , +AW228,2,8.000000 ,39.60000 ,-76.12000,AWX , ,Port Deposit Weather, Port Deposit, MD , +AW229,2,200.0000 ,53.03000 ,-1.230000,AWX , ,Brian's Weather, Alfreton, UK , +AW230,2,312.0000 ,44.94000 ,-95.72000,AWX , ,WB0RXX, Montevideo, MN , +AW231,2,341.0000 ,44.09000 ,-92.51000,AWX , ,KTTC-TV, Rochester, MN , +AW232,2,254.0000 ,36.03000 ,-80.39000,AWX , ,David Settlemire's Weather Site , +AW233,2,1341.000 ,35.05000 ,-83.10000,AWX , ,Highlands Weather, Highlands, NC , +AW234,2,1067.000 ,35.85000 ,-82.10000,AWX , ,Butterfly Crossing, Little Switzerland , +AW235,2,87.00000 ,35.85000 ,-78.37000,AWX , ,Lizard Lick and Glory Rd., Wendell, NC , +AW236,2,64.00000 ,43.00000 ,-71.08000,AWX , ,N1TXS Weather, Brentwood, NH , +AW237,2,219.0000 ,40.87000 ,-74.63000,AWX , ,Richard Preuss's Weather Site , +AW238,2,85.00000 ,43.09000 ,-76.07000,AWX , ,Cicero Weather, Cicero, NY , +AW239,2,188.0000 ,41.60000 ,-74.34000,AWX , ,Patrick Onesty's Weather Site , +AW240,2,204.0000 ,39.35000 ,-82.98000,AWX , ,Chillicothe Manor, Chillicothe, OH , +AW242,2,1173.000 ,45.44000 ,-117.2000,AWX , ,Wallowa Mountain Heights, Enterprise , +AW244,2,399.0000 ,45.26000 ,-98.10000,AWX , ,Groton Weather, Groton, SD , +AW245,2,172.0000 ,32.97000 ,-96.34000,AWX , ,Plastic Studios Weather Station , +AW246,2,1280.000 ,41.25000 ,-111.9400,AWX , ,Ogden Weather, Ogden, UT , +AW247,2,640.0000 ,47.21000 ,-120.9800,AWX , ,Cle Elum Roslyn High School, Cle Elum , +AW248,2,496.0000 ,46.32000 ,-117.9700,AWX , ,Dayton Weather, Dayton, WA , +AW249,2,823.0000 ,46.96000 ,-120.7900,AWX , ,Terry and Donna's Pad, Ellensburg, WA , +AW250,2,5.000000 ,48.80000 ,-122.7100,AWX , ,Sandy Point Shores, Ferndale, WA , +AW251,2,274.0000 ,44.17000 ,-88.45000,AWX , ,Ellis Residence, Neenah, WI , +AW252,2,1448.000 ,43.55000 ,-105.2500,AWX , ,North Antelope/Rochelle Mine, Wright , +AW253,2,1597.000 ,39.92000 ,-105.0200,AWX , ,Greg and Katie's Broomfield Weather , +AW254,2,2024.000 ,39.23000 ,-104.8900,AWX , ,Larkspur Fire Department, Larkspur, CO , +AW255,2,2693.000 ,39.92000 ,-105.7800,AWX , ,Winter Park-Fraser Valley Chamber of Co , +AW256,2,251.0000 ,42.09000 ,-89.97000,AWX , ,Mt. Carroll Weather - CW0216 , +AW257,2,2.000000 ,26.87000 ,-80.07000,AWX , ,Palm Beach Gardens Weather , +AW258,2,794.0000 ,43.00000 ,-116.0000,AWX , ,Meridian Weather Station, Meridian, ID , +AW259,2,760.0000 ,43.54000 ,-116.5400,AWX , ,Nampa Weather, Nampa, ID , +AW260,2,20.00000 ,39.24000 ,-76.70000,AWX , ,Halethorpe Weather, Halethorpe, MD , +AW261,2,265.0000 ,42.33000 ,-85.55000,AWX , ,Kalamazoo Weather, Kalamazoo, MI , +AW263,2,146.0000 ,35.79000 ,-78.78000,AWX , ,Ian's Weather, Cary, NC , +AW264,2,218.0000 ,36.11000 ,-79.56000,AWX , ,Pineview West, Gibsonville, NC , +AW265,2,46.00000 ,35.46000 ,-77.52000,AWX , ,Wilson Weather, Wilson, NC , +AW266,2,343.0000 ,40.66000 ,-96.18000,AWX , ,Ron Hawkin's Weather Site, Syracuse, NE , +AW267,2,34.00000 ,40.51000 ,-73.52000,AWX , ,Steve's Somserset Weather, Somerset, NJ , +AW268,2,61.00000 ,41.45000 ,-74.42000,AWX , ,mounthopeny.com, Middletown, NY , +AW269,2,731.0000 ,45.13000 ,-121.2400,AWX , ,Tygh Valley Weather, Tygh Valley, OR , +AW271,2,130.0000 ,35.96000 ,-78.68000,AWX , ,Raleigh Weather, Raleigh, NC , +AW272,2,145.0000 ,41.58000 ,-73.50000,AWX , ,Sherman Weather, Sherman, CT , +AW273,2,100.0000 ,42.48000 ,-92.34000,AWX , ,CW2734, Waterloo, IA , +AW274,2,259.0000 ,43.65000 ,-73.80000,AWX , ,Chestertown Weather, Chestertown, NY , +AW275,2,1387.000 ,41.54000 ,-120.5300,AWX , ,3010 Pencil Road, Alturas, CA , +AW276,2,52.00000 ,33.92000 ,-118.0500,AWX , ,Whittier Weather, Whittier, CA , +AW278,2,2384.000 ,39.14000 ,-105.1800,AWX , ,Mountain Communities Fire Station , +AW279,2,19.00000 ,41.79000 ,-72.61000,AWX , ,N1GAU, East Hartford, CT , +AW280,2,24.00000 ,32.33000 ,-81.39000,AWX , ,Effingham County High School , +AW281,2,436.0000 ,42.56000 ,-96.40000,AWX , ,Sioux City Weather, Sioux City, IA , +AW282,2,229.0000 ,40.11000 ,-88.28000,AWX , ,Champaign Weather, Champaign, IL , +AW283,2,204.0000 ,42.05000 ,-88.10000,AWX , ,Hoffman Estates Weather , +AW285,2,307.0000 ,42.40000 ,-72.00000,AWX , ,Rutland Weather, Rutland, MA , +AW286,2,37.00000 ,42.33000 ,-71.31000,AWX , ,Weston Weather Station, Weston, MA , +AW288,2,229.0000 ,43.06000 ,-85.65000,AWX , ,River Road Farms, Comstock Park, MI , +AW291,2,250.0000 ,36.14000 ,-79.84000,AWX , ,Lake Brandt Weather, Greensboro, NC , +AW292,2,80.00000 ,42.83000 ,-71.65000,AWX , ,Milford Weather, Milford, NH , +AW294,2,103.0000 ,42.90000 ,-74.52000,AWX , ,Palatine Bridge Weather , +AW295,2,290.0000 ,43.22000 ,-74.11000,AWX , ,Village of Wells Weather , +AW296,2,46.00000 ,40.95000 ,-73.03000,AWX , ,Mt. Sinai Weather, Mt. Sinai, NY , +AW297,2,398.0000 ,42.38000 ,-122.8900,AWX , ,Parkwood Village, Central Point, OR , +AW298,2,6.000000 ,45.01000 ,-124.0100,AWX , ,Lincoln City Weather, Lincoln City, OR , +AW299,2,1547.000 ,45.79000 ,-118.1100,AWX , ,Tamarack Inn B&B, Tollgate, OR , +AW300,2,583.0000 ,45.81000 ,-118.4200,AWX , ,Weston Middle School, Weston, OR , +AW301,2,183.0000 ,40.07000 ,-76.38000,AWX , ,Lancaster, Lancaster, PA , +AW302,2,1981.000 ,39.39000 ,-104.8000,AWX , ,Hidden Mesa, Castle Rock, CO , +AW303,2,384.0000 ,36.20000 ,-82.94000,AWX , ,Gary Graham's Weather Page, Mosheim, TN , +AW304,2,210.0000 ,29.45000 ,-98.54000,AWX , ,Randy Watson's Weather Site , +AW305,2,160.0000 ,29.57000 ,-97.96000,AWX , ,Seguin Weather, Seguin, TX , +AW306,2,5.000000 ,36.73000 ,-76.31000,AWX , ,Chesapeake Weather, Chesapeake, VA , +AW307,2,366.0000 ,37.33000 ,-79.87000,AWX , ,Roanoke, VA Weather and Webcam, Roanoke , +AW308,2,6.000000 ,37.55000 ,-76.53000,AWX , ,Freeport, Saluda, VA , +AW311,2,195.0000 ,34.80000 ,-87.60000,AWX , ,Central Heights, Florence, AL , +AW312,2,540.0000 ,-17.00000,145.0000 ,AWX , ,Gorge Creek Orchards, Mareeba, xx , +AW313,2,77.00000 ,39.31000 ,-121.4400,AWX , ,Loma Rica Weather, Loma Rica, CA , +AW314,2,32.00000 ,38.44000 ,-122.7000,AWX , ,Santa Rosa, CA, Santa Rosa, CA , +AW315,2,826.0000 ,34.02000 ,-117.0300,AWX , ,Wildwood Canyon, Yucaipa, CA , +AW316,2,1522.000 ,40.17000 ,-105.0800,AWX , ,Ken's Longmont Weather, Longmont, CO , +AW317,2,2652.000 ,38.13000 ,-105.4700,AWX , ,Rosita Weather, Rosita, CO , +AW319,2,4.000000 ,27.19000 ,-80.17000,AWX , ,North Fork St. Lucie River , +AW320,2,549.0000 ,34.56000 ,-84.18000,AWX , ,Amicalola Falls Weather, Dahlonega, GA , +AW321,2,223.0000 ,39.53000 ,-76.94000,AWX , ,Rural South Westminster, Westminster , +AW322,2,15.00000 ,34.20000 ,-77.90000,AWX , ,wa4zwc, Wilmington, NC , +AW324,2,1.000000 ,40.71000 ,-73.31000,AWX , ,West Islip, West Islip, NY , +AW325,2,312.0000 ,42.37000 ,-77.53000,AWX , ,Nunda Weather, Nunda, NY , +AW326,2,18.00000 ,40.93000 ,-72.88000,AWX , ,Shoreham, Shoreham, NY , +AW327,2,122.0000 ,32.84000 ,-83.63000,AWX , ,Macon Weather, Macon, GA , +AW328,2,0.000000 ,47.12000 ,-119.2700,AWX , ,Moses Lake Weather, Moses Lake, WA , +AW329,2,899.0000 ,45.57000 ,-117.5300,AWX , ,Wallowa Elementary School, Wallowa, OR , +AW330,2,363.0000 ,37.77000 ,-92.65000,AWX , ,Ozark Weather Net, Lebanon, MO , +AW331,2,2658.000 ,39.52000 ,-105.3100,AWX , ,Conifer, Conifer, CO , +AW332,2,218.0000 ,33.16000 ,-96.57000,AWX , ,K5BL - SE McKinney, McKinney, TX , +AW333,2,232.0000 ,42.33000 ,-88.27000,AWX , ,South of Edgebrook School, McHenry, IL , +AW334,2,732.0000 ,36.12000 ,-115.1600,AWX , ,Las Vegas Weather, Las Vegas, NV , +AW335,2,314.0000 ,43.83000 ,-90.62000,AWX , ,Norwalk Weather, Norwalk, WI , +AW336,2,105.0000 ,44.05000 ,-93.29000,AWX , ,Gregg TeBeest's Weather Site, Waseca , +AW337,2,1033.000 ,43.25000 ,-115.8300,AWX , ,Tipanuk, Mountain Home, ID , +AW338,2,1201.000 ,35.15000 ,-118.5100,AWX , ,Golden Hills, Tehachapi, CA , +AW339,2,276.0000 ,39.98000 ,-83.12000,AWX , ,Trabue Woods, Columbus, OH , +AW340,2,101.0000 ,33.98000 ,-81.22000,AWX , ,Lexington Weather, Lexington, SC , +AW341,2,30.00000 ,34.16000 ,-81.35000,AWX , ,Chapin Weather, Chapin, SC , +AW342,2,8.000000 ,30.30000 ,-81.73000,AWX , ,Lakeshore - CW2703, Jacksonville, FL , +AW343,2,270.0000 ,46.06000 ,-118.3600,AWX , ,Children's Museum of Walla Walla , +AW345,2,309.0000 ,32.89000 ,-98.55000,AWX , ,Fox Hollow Creek @ Possum Kingdom Lake , +AW346,2,164.0000 ,39.13000 ,-77.70000,AWX , ,Town of Round Hill Weather, Round Hill , +AW347,2,268.0000 ,49.81000 ,9.660000 ,AWX , ,Tiefenthal, Germany, Tiefenthal, xx , +AW348,2,26.00000 ,32.69000 ,-92.04000,AWX , ,Your Sterlington Weather Website , +AW349,2,844.0000 ,40.51000 ,-121.5400,AWX , ,Woodhill, Montgomery Creek, CA , +AW351,2,396.0000 ,41.04000 ,-74.58000,AWX , ,Sparta Mountain Weather-N2Kt0, Sparta , +AW352,2,85.00000 ,42.85000 ,-73.97000,AWX , ,Scotia-Glenville Weather, Scotia, NY , +AW353,2,341.0000 ,43.96000 ,-72.21000,AWX , ,Fairlee Weather, Fairlee, VT , +AW357,2,44.00000 ,26.22000 ,-98.32000,AWX , ,C & A Solar, Mission, TX , +AW360,2,2596.000 ,33.85000 ,-116.6200,AWX , ,Aerial Tram's Mt. Station, Palm Springs , +AW362,2,419.0000 ,34.44000 ,-84.00000,AWX , ,Oak Valley Farm, Dawsonville, GA , +AW363,2,8.000000 ,30.46000 ,-90.12000,AWX , ,Covington Weather, Covington, LA , +AW364,2,1030.000 ,34.13000 ,-116.3800,AWX , ,Yucca Valley Weather, Yucca Valley, CA , +AW365,2,481.0000 ,46.54000 ,-120.7100,AWX , ,5 Miles West of Wiley City, Yakima, WA , +AW366,2,287.0000 ,38.19000 ,-90.43000,AWX , ,Tripamer's Weather, Festus, MO , +AW368,2,486.0000 ,33.60000 ,-116.9000,AWX , ,East Hemet, Hemet, CA , +AW369,2,1182.000 ,36.09000 ,-82.10000,AWX , ,Buladean Weather, Buladean, NC , +AW370,2,158.0000 ,36.12000 ,-78.54000,AWX , ,Wilton, Franklinton, NC , +AW371,2,14.00000 ,40.74000 ,-73.34000,AWX , ,Belmont Lake State Park Area , +AW372,2,122.0000 ,32.84000 ,-83.63000,AWX , ,Macon Weather, Macon, GA , +AW374,2,251.0000 ,42.09000 ,-89.97000,AWX , ,Intersection IL St. Hwys. 64 & 78 , +AW375,2,1362.000 ,43.92000 ,-112.4600,AWX , ,Chubbuck Weather, Chubbock, ID , +AW376,2,4.000000 ,30.42000 ,-88.94000,AWX , ,Biloxi Weather, Biloxi, MS , +AW380,2,1433.000 ,40.29000 ,-111.8800,AWX , ,Lake Mountain, Saratoga Springs, UT , +AW381,2,351.0000 ,44.16000 ,-72.98000,AWX , ,Waitsfield Weather, Waitsfield, VT , +AW382,2,815.0000 ,35.00000 ,-83.21000,AWX , ,Highlands, NC (Blue Valley), Highlands , +AW387,2,1380.000 ,40.30000 ,-121.1300,AWX , ,Lake Almanor, Chester, CA , +AW389,2,624.0000 ,47.30000 ,-117.3200,AWX , ,Liberty Lake Weather, Liberty Lake, WA , +AW390,2,256.0000 ,41.00000 ,-75.00000,AWX , ,Mine Hill, Mine Hill, NJ , +AW391,2,1341.000 ,35.05000 ,-83.10000,AWX , ,Highlands Weather, Highlands, NC , +AW392,2,1372.000 ,33.32000 ,-108.8700,AWX , ,Catwalk, Glenwood, NM , +AW393,2,97.00000 ,31.52000 ,-97.14000,AWX , ,South Waco Weather, Waco, TX , +CALVP,3,3624.000 ,39.67472 ,-105.8939,CAIC ,CAIC ,LOVELAND PASS CO US CAIC , +CAABR,3,3609.000 ,37.96333 ,-107.6472,CAIC ,CAIC ,MT ABRAHMS, OURAY COUNTY CO US CAIC , +CABTP,3,3615.000 ,39.80194 ,-105.7839,CAIC ,CAIC ,BERTHOUD PASS CO US CAIC , +CAPTY,3,3757.000 ,37.89277 ,-107.6833,CAIC ,CSAS ,CSAS, PUTNEY, SAN JUAN COUNTY CO US CSAS , +CASWP,3,3368.000 ,37.90694 ,-107.7114,CAIC ,CSAS ,CSAS, SWAMP ANGEL, SAN JUAN CTY CO US CSAS , +CACWP,3,3597.000 ,38.81194 ,-106.4064,CAIC ,CAIC ,COTTONWOOD PASS CO US CAIC , +CAEGE,3,3917.000 ,37.88333 ,-107.7425,CAIC ,CAIC ,EAGLE, SAN JAUN COUNTY CO US CAIC , +CAGMS,3,3218.700 ,39.04583 ,-108.0672,CAIC ,CAIC ,GRAND MESA - SKYWAY POINT CO US CAIC , +CAKDL,3,3982.000 ,37.79389 ,-107.6419,CAIC ,CAIC ,KENDALL MT, SAN JUAN COUNTY CO US CAIC , +CAMCP,3,2911.000 ,39.11083 ,-107.2808,CAIC ,CAIC ,MCCLURE PASS CO US CAIC , +CAMLP,3,3292.000 ,37.75139 ,-107.6911,CAIC ,CAIC ,MOLAS PASS CO US CAIC , +CAVLP,3,3124.000 ,39.57861 ,-106.2472,CAIC ,CAIC ,VAIL PASS - CDOT YARD CO US CAIC , +CAWCP,3,3572.000 ,37.46306 ,-106.8033,CAIC ,CAIC ,WOLF CREEK PASS CO US CAIC , +CA42R,3,2871.000 ,40.78500 ,-107.0592,CAIC ,CAIC ,STEAMBOAT LAKE STATE PARK, RD 42 CO US CAIC , +CATEL,3,3706.000 ,37.89913 ,-107.8209,CAIC ,TRIDESKIR ,TELLURIDE SKI RESORT CO US TRIDESKIR , +CAABM,3,3520.000 ,39.64278 ,-105.8703,CAIC ,ABASINSA ,ARAPAHOE BASIN SKI AREA - MIDWAY CO US ABASINSA , +CAABT,3,3844.000 ,39.62944 ,-105.8817,CAIC ,ABASINSA ,ARAPAHOE BASIN SKI AREA - SUMMIT CO US ABASINSA , +CAAXM,3,3094.000 ,39.16611 ,-106.8150,CAIC ,ASPENSKICO ,ASPEN SKI AREA - GENTS BASE CO US ASPENSKICO , +CAAXT,3,3409.000 ,39.15167 ,-106.8186,CAIC ,ASPENSKICO ,ASPEN SKI AREA - GENTS TOP CO US ASPENSKICO , +CAAXP,3,3409.000 ,39.15250 ,-106.8211,CAIC ,ASPENSKICO ,ASPEN SKI AREA - PHQ CO US ASPENSKICO , +CO001,3,1829.000 ,39.54883 ,-104.8750,CODOT , ,I-25 @ C-470 West (40) , +CO002,3,1829.000 ,39.54300 ,-104.8697,CODOT , ,I-25 @ C-470 East (40) , +CO003,3,1591.000 ,39.77418 ,-104.9350,CODOT , ,I-70 @ Colorado Blvd (40) , +CO004,3,1640.000 ,39.98826 ,-105.2498,CODOT , ,Boulder SH-36 @ Baseline (39) , +CO005,3,1603.000 ,39.69453 ,-104.9869,CODOT , ,Evans @ Santa Fe (40) , +CO006,3,1584.000 ,39.74169 ,-105.0151,CODOT , ,Walnut @ I-25 (40) , +CO007,3,1676.000 ,39.55599 ,-105.0770,CODOT , ,C-470 @ Wadsworth (39) , +CO008,3,1852.337 ,39.69860 ,-105.1948,CODOT , ,Rooney Rd. (36) , +CO009,3,1901.000 ,39.69860 ,-105.1810,CODOT , ,EB-I-70 @ C-470 (36) , +CO010,3,1573.000 ,39.99495 ,-104.9791,CODOT , ,I-25 @ SH-7 (40) , +CO011,3,1634.000 ,39.76878 ,-104.8155,CODOT , ,I-70 @ Chambers Road (40) , +CO109,3,1886.400 ,39.86560 ,-105.2397,CODOT , ,N-93 - Jct. 93 & 72 (36) , +CO013,3,1646.000 ,39.65626 ,-105.0495,CODOT , ,Sheridan @ Yale (40) , +CO014,3,1615.000 ,39.87128 ,-104.9944,CODOT , ,Thornton Parkway @ I-25 (40) , +CO015,3,1621.000 ,39.77436 ,-104.9975,CODOT , ,I-70 @ I-25 West (40) , +CO016,3,1621.000 ,39.77436 ,-104.9883,CODOT , ,I-70 @ I-25 East (40) , +CO017,3,1738.466 ,39.75208 ,-105.2162,CODOT , ,Golden State Park (39) , +CO018,3,1700.000 ,39.98500 ,-105.0969,CODOT , ,South Boulder Road (39) , +CO019,3,1713.260 ,39.58300 ,-104.9650,CODOT , ,Dry Creek @ University (40) , +CO020,3,1712.598 ,39.64178 ,-105.0847,CODOT , ,South Kipling @ Quincy (39) , +CO021,3,1677.824 ,39.99500 ,-105.2700,CODOT , ,NOAA (39) , +CO022,3,1697.943 ,39.68188 ,-104.8369,CODOT , ,I-225 @ Mississippi Ave. (40) , +CO023,3,1722.708 ,39.65800 ,-104.8400,CODOT , ,I-225 @ Parker Road (40*) , +CO024,3,1697.547 ,39.70000 ,-104.8270,CODOT , ,I-225 @ Alameda (40*) , +CO025,3,1993.800 ,37.08686 ,-104.5218,CODOT , ,Raton Pass (74) , +CO026,3,1298.300 ,37.75113 ,-102.6024,CODOT , ,Gobblers Knob (99) , +CO027,3,2884.500 ,39.03877 ,-105.5264,CODOT , ,Wilkerson Pass (37) , +CO028,3,2852.400 ,37.61701 ,-105.1925,CODOT , ,La Veta Pass (74) , +CO029,3,1793.900 ,37.85767 ,-104.8291,CODOT , ,I-25 @ Apache City (87) , +CO030,3,1813.100 ,37.75058 ,-104.8355,CODOT , ,I-25 @ Butte Creek (87) , +CO031,3,1904.300 ,37.41723 ,-104.6317,CODOT , ,I-25 @ Aguilar (88) , +CO032,3,1885.200 ,38.89603 ,-104.8307,CODOT , ,I-25 @ Fountain Creek (85*) , +CO033,3,2226.300 ,39.12224 ,-104.8654,CODOT , ,Monument Hill (85*) , +CO034,3,1048.400 ,40.96951 ,-102.2467,CODOT , ,Julesburg (50) , +CO035,3,1205.100 ,40.62081 ,-103.1725,CODOT , ,Sterling (48) , +CO036,3,2128.300 ,40.95152 ,-105.3460,CODOT , ,Virginia Dale (35) , +CO037,3,1496.300 ,40.32111 ,-104.9805,CODOT , ,I-25 @ Berthoud (43) , +CO038,3,1505.900 ,40.11026 ,-104.5658,CODOT , ,Keensburg / Roggen (43) , +CO039,3,1357.200 ,40.24849 ,-104.0375,CODOT , ,Wiggins @ Bijou Creek (44) , +CO040,3,1371.000 ,40.07733 ,-104.0030,CODOT , ,SH-52 in Morgan County (44) , +CO041,3,1820.600 ,40.98770 ,-104.9116,CODOT , ,Natural Fort (38) , +CO042,3,1557.700 ,40.68291 ,-105.0003,CODOT , ,Wellington (38) , +CO043,3,1471.000 ,40.63971 ,-104.3254,CODOT , ,Briggsdale (42) , +CO044,3,2790.300 ,40.08267 ,-105.4965,CODOT , ,Ward (35) , +CO045,3,2718.800 ,40.30576 ,-105.5379,CODOT , ,Lily Lake (35) , +CO046,3,1414.800 ,39.82747 ,-103.5931,CODOT , ,Woodrow (49) , +CO047,3,1181.300 ,39.74585 ,-102.2556,CODOT , ,Idalia (90) , +CO048,3,1142.000 ,40.46795 ,-102.3015,CODOT , ,Holyoke (51) , +CO049,3,1512.446 ,40.59610 ,-105.0719,CODOT , ,US 287 @ Fort Collins (38) , +CO050,3,1527.900 ,40.43338 ,-104.9918,CODOT , ,Airport Road (38) , +CO051,3,1445.936 ,40.42000 ,-104.7340,CODOT , ,Greeley (43) , +CO052,3,1459.500 ,40.17564 ,-104.9802,CODOT , ,Del Camino (43) , +CO053,3,1750.464 ,39.66591 ,-104.6457,CODOT , ,LoveLand ScanDetector (40*) , +CO054,3,2194.300 ,37.26765 ,-107.0281,CODOT , ,Pagosa Springs (23) , +CO055,3,2716.200 ,37.94300 ,-107.8818,CODOT , ,Telluride - Lawson Hill (18) , +CO056,3,3432.900 ,38.49744 ,-106.3261,CODOT , ,Monarch Pass (60) , +CO057,3,2736.000 ,37.54861 ,-106.7753,CODOT , ,Wolf Creek Pass (68) , +CO058,3,1962.600 ,37.26867 ,-107.8842,CODOT , ,Durango (22) , +CO059,3,1777.700 ,38.80831 ,-104.8010,CODOT , ,I-24 @ Fountain Creek (85) , +CO060,3,1918.000 ,38.83881 ,-104.7210,CODOT , ,Highway 24 @ Powers BLVD. (85) , +CO061,3,1912.000 ,38.84163 ,-104.6825,CODOT , ,Highway 94 @ Mark sheffle (85) , +CO062,3,1954.196 ,38.85202 ,-104.5300,CODOT , ,Highway 94 @ Enoch RD. (85) , +CO063,3,2207.000 ,39.10000 ,-104.8550,CODOT , ,Monument Hill (84) , +CO064,3,1932.000 ,38.89500 ,-104.8300,CODOT , ,Garden of the Gods (85) , +CO065,3,2347.300 ,39.71056 ,-105.2943,CODOT , ,I-70 @ Genesee (36) , +CO066,3,1747.800 ,39.35673 ,-103.8703,CODOT , ,I-70 @ Cedar Point (46) , +CO067,3,1420.800 ,39.29389 ,-102.8740,CODOT , ,I-70 @ Seibert (91) , +CO068,3,1374.900 ,38.81635 ,-102.5375,CODOT , ,US-40 @ Firstview (92) , +CO069,3,1634.000 ,38.82587 ,-103.6880,CODOT , ,Punkin Center (47) , +CO070,3,3219.500 ,39.52954 ,-106.2172,CODOT , ,Vail Pass (34) , +CO071,3,2388.400 ,39.72088 ,-105.4100,CODOT , ,Floyd Hill (36) , +CO072,3,1671.400 ,39.73879 ,-104.4332,CODOT , ,I-70 @ Bennett (45) , +CO073,3,1917.900 ,39.48654 ,-104.8723,CODOT , ,Surrey Ridge (41) , +CO074,3,1851.214 ,39.51500 ,-104.8650,CODOT , ,Exit 191 (41) , +CO075,3,1880.700 ,39.42481 ,-104.8767,CODOT , ,Founders Point (41) , +CO076,3,1863.185 ,38.80820 ,-104.7062,CODOT , ,North (85) , +CO077,3,1868.795 ,38.80820 ,-104.6962,CODOT , ,Midfield (85) , +CO078,3,1878.036 ,38.81820 ,-104.7062,CODOT , ,South (85) , +CO079,3,1841.170 ,38.84050 ,-104.8589,CODOT , ,21st Street (85) , +CO080,3,1857.129 ,38.83290 ,-104.7946,CODOT , ,Pikes Peak & Union (85) , +CO081,3,1812.250 ,38.77520 ,-104.8146,CODOT , ,Star Ranch & Hwy 115 (85) , +CO082,3,2026.202 ,38.93020 ,-104.8646,CODOT , ,Centennial & Allegheny S. (85) , +CO083,3,2002.984 ,38.95200 ,-104.7915,CODOT , ,Jamboree & Chapel Hills (85) , +CO084,3,1636.500 ,39.54338 ,-107.6718,CODOT , ,Silt (7) , +CO085,3,1835.000 ,39.60064 ,-107.1650,CODOT , ,Shoshone Dam (8) , +CO086,3,2340.021 ,39.60122 ,-107.1800,CODOT , ,West Tunnel Portal (8) , +CO087,3,2303.290 ,39.60786 ,-107.1750,CODOT , ,East Tunnel Portal (8) , +CO088,3,1944.000 ,39.61391 ,-107.1700,CODOT , ,Hanging Lake Viaduct (8) , +CO089,3,1932.000 ,39.60500 ,-107.1500,CODOT , ,French Creek (8) , +CO090,3,1866.800 ,39.61428 ,-107.1409,CODOT , ,Bair Ranch (8) , +CO091,3,1757.300 ,39.56152 ,-107.3054,CODOT , ,No Name Tunnel (8) , +CO092,3,2361.400 ,39.60794 ,-106.4491,CODOT , ,Dowd Junction (10) , +CO093,3,2650.700 ,39.12980 ,-107.2831,CODOT , ,McClure Pass (12) , +CO094,3,3606.900 ,39.10570 ,-106.5531,CODOT , ,Independence Pass (10) , +CO095,3,2123.300 ,39.70087 ,-106.6840,CODOT , ,Wolcott (8) , +CO096,3,1460.800 ,39.23897 ,-108.2664,CODOT , ,DeBeque Canyon (7) , +CO097,3,1431.500 ,39.12520 ,-108.3225,CODOT , ,Palisade (6) , +CO098,3,2508.200 ,39.59756 ,-108.8052,CODOT , ,Douglas Pass (3) , +CO099,3,1715.700 ,39.57397 ,-107.4530,CODOT , ,Canyon Creek (8) , +CO100,3,2472.391 ,39.18500 ,-106.8500,CODOT , ,Aspen (10) , +CO101,3,2015.200 ,39.35870 ,-107.0268,CODOT , ,Basalt (8*) , +CO102,3,2057.700 ,40.45923 ,-106.8223,CODOT , ,Steamboat Springs (5) , +CO103,3,2083.300 ,39.33088 ,-106.9853,CODOT , ,Snowmass @HWY82 mp26.8 (10*) , +CO104,3,2291.600 ,39.24939 ,-106.8835,CODOT , ,Shale Bluffs (10) , +CO105,3,1413.928 ,39.11170 ,-108.5868,CODOT , ,Grand Junction (6) , +CO106,3,1765.666 ,39.62893 ,-104.7992,CODOT , ,Buckley Rd. @ Smoky Hill Rd. (40) , +CO107,3,1684.584 ,39.68559 ,-104.7992,CODOT , ,Buckley Rd @ Mexico Rd. (40) , +CO108,3,1536.200 ,40.37500 ,-105.0980,CODOT , ,Taft Ave Loveland (38) , +CO110,3,2900.300 ,39.34526 ,-105.8434,CODOT , ,Kenosha Pass (34/37) , +E470A,3,1784.299 ,39.55636 ,-104.8185,CO_E-470 , ,Plaza A SSI , +E470B,3,1865.680 ,39.60098 ,-104.7139,CO_E-470 , ,Smokey Hill Road SSI , +E470C,3,1587.093 ,39.97470 ,-104.9367,CO_E-470 , ,Colorado Boulevard SSI , +E470D,3,1533.448 ,39.94680 ,-104.8579,CO_E-470 , ,Platte River Bridge SSI , +E470E,3,1730.349 ,39.70048 ,-104.7261,CO_E-470 , ,6th Parkway SSI , +E470F,3,1680.667 ,39.77886 ,-104.7165,CO_E-470 , ,CMF SSI , +E470G,3,1678.533 ,39.85431 ,-104.7467,CO_E-470 , ,MSS-D SSI , +NWPKY,3,1586.484 ,39.98278 ,-104.9900,CO_E-470 , ,Northwest Parkway NPPHA , +E470H,3,1759.915 ,39.55156 ,-104.7778,CO_E-470 , ,Cherry Creek SSI , +DC001,3,70.61800 ,38.89350 ,-77.03270,DCNet , ,Hoover Building Washington DC , +DC003,3,39.86800 ,38.89270 ,-77.04730,DCNet , ,Natl. Academy of Sciences Washington DC , +DC004,3,155.9120 ,38.99240 ,-77.03080,DCNet , ,NOAA Building Silver Spring MD , +DC005,3,37.69900 ,38.91600 ,-76.96880,DCNet , ,National Arboretum Washington DC , +DC006,3,69.75600 ,38.88830 ,-77.02780,DCNet , ,Forrestal Building Washington DC , +DC007,3,36.00000 ,40.72596 ,-74.00760,DCNet , ,GSA New York City, NY , +DC008,3,92.87600 ,38.91720 ,-77.03250,DCNet , ,DC Municipal Building Washington DC , +DC009,3,60.29800 ,38.86830 ,-77.06780,DCNet , ,Navy Annex Washington DC , +DC010,3,125.2310 ,40.76030 ,-73.98370,DCNet , ,Times Square New York City, NY , +DC011,3,36.50000 ,38.82145 ,-77.02500,DCNet , ,Naval Research Laboratory Washington DC , +BAWF1,3,25.50000 ,30.30750 ,-81.97190,FLDOT , ,BALDWIN RT301 & I-10 DUVAL CO , +ECSF1,3,22.50000 ,29.99970 ,-82.59830,FLDOT , ,ELLISVILE S.LAKE CITY I-75 COLUMBIA CO , +GFRF1,3,7.300000 ,29.66250 ,-81.28670,FLDOT , ,GOPHER RIDGE MARINELAND I-95 STJOHNS CO , +GREF1,3,28.70000 ,30.43560 ,-83.63900,FLDOT , ,GREENVILLE MADISON CO , +GVNF1,3,56.20000 ,29.68780 ,-82.44610,FLDOT , ,SR-222 NEAR GAINESVILLE ALACHUA CO , +JHPF1,3,7.300000 ,30.29720 ,-81.76970,FLDOT , ,JAX-FHP S.I-10 & I-295 W.JAX DUVAL CO , +HWJF1,3,90.00000 ,30.51800 ,-83.05760,FLDOT , ,JASPER CR6 & I-75 W.JASPER HAMILTON CO , +LCYF1,3,55.50000 ,30.19500 ,-82.65310,FLDOT , ,LAKE CITY COLUMBIA CO , +RSTF1,3,5.900000 ,30.09280 ,-81.50000,FLDOT , ,ST.JOHNS REST AREA I-95 N. ST JOHNS CO , +SDRF1,3,48.60000 ,30.23780 ,-82.30390,FLDOT , ,SANDERSON I-10 & RT-90 BAKER CO , +SOMF1,3,12.00000 ,29.91690 ,-81.41250,FLDOT , ,SR-16 NEAR ST AUG OUTLET MALL ST JOHNS , +SUCF1,3,29.90000 ,30.31920 ,-82.80810,FLDOT , ,CR136 AT I-75 NE SUWANNEE CO , +SUFF1,3,29.80000 ,30.34250 ,-83.09030,FLDOT , ,FALMOUTH I-10 & US90 LIVE OAK SUWANNEE , +YULF1,3,6.600000 ,30.62030 ,-81.64970,FLDOT , ,YULEE I-95 & A1A NASSAU CO , +DPBF1,3,53.30000 ,30.38510 ,-81.55730,FLDOT , ,DAMES POINT BRIDGE, DUVAL, CO , +BUCF1,3,21.30000 ,30.18980 ,-81.66730,FLDOT , ,BUCKMAN BRIDGE, DUVAL CO , +MLWF1,3,21.30000 ,28.40520 ,-80.64820,FLDOT , ,SR-528 BRIDGE, BREVARD CO , +SJBF1,3,15.20000 ,28.83460 ,-81.31970,FLDOT , ,ST JOHNS RIVER BRIDGE, VOLUSIA CO , +ORBF1,3,9.400000 ,29.33660 ,-81.13030,FLDOT , ,ORMOND BEACH, US-17 & I-95, VOLUSIA CO , +PORF1,3,6.300000 ,29.08500 ,-81.01670,FLDOT , ,PORT ORANGE, SR44 & I-95, VOLUSIA CO , +EGWF1,3,7.100000 ,28.95110 ,-80.95030,FLDOT , ,EDGEWATER I95 & SR442, VOLUSIA CO , +MMSF1,3,6.200000 ,28.66560 ,-80.87030,FLDOT , ,MIMS, SR46 & I-95, BREVARD CO , +CFHF1,3,6.100000 ,28.35690 ,-80.78270,FLDOT , ,COCOA FHP SR520 & I-95, BREVARD CO , +JUNF1,3,5.900000 ,28.07970 ,-80.70510,FLDOT , ,JUNE PARK, I-95 & US-192, BREVARD CO , +SLSF1,3,18.60000 ,28.72710 ,-81.37240,FLDOT , ,SANLANDO SPRINGS SR424 & I4 SEMINOLE CO , +DLDF1,3,5.300000 ,27.16090 ,-80.30360,FLDOT , ,STUART MAINT, I95 & SR714, MARTIN CO , +IRDF1,3,6.400000 ,27.52280 ,-80.45030,FLDOT , ,INDRIO RD, I95 & INDRIO RD, ST LUCIE CO , +BEOF1,3,9.100000 ,28.45250 ,-80.97860,FLDOT , ,SR 520-528, SR 520 & SR 528, BREVARD CO , +VILF1,3,20.42000 ,29.91750 ,-81.30250,FLDOT , ,VILANO BRIDGE,VILANO RD & A1A, ST JOHNS , +SRTF1,3,24.69000 ,29.86690 ,-81.30670,FLDOT , ,SR312 BRIDGE,SR 312 & A1A, ST JOHNS CO , +BLDF1,3,4.267000 ,26.66800 ,-80.63200,FL-Meso ,FAWN ,Belle Glade FAWN , +JAYF1,3,67.05300 ,30.77530 ,-87.14020,FL-Meso ,FAWN ,Jay FAWN , +MAIF1,3,33.52600 ,30.85000 ,-85.16520,FL-Meso ,FAWN ,Marianna FAWN , +QUIF1,3,67.05300 ,30.54450 ,-84.59650,FL-Meso ,FAWN ,Quincy FAWN , +CARF1,3,7.700000 ,29.84300 ,-84.69500,FL-Meso ,FAWN ,Carrabelle FAWN , +MONTI,3,54.86400 ,30.53800 ,-83.91700,FL-Meso ,FAWN ,Monticello FAWN , +LIOF1,3,33.52600 ,30.30280 ,-82.90000,FL-Meso ,FAWN ,Live Oak FAWN , +MACF1,3,49.23000 ,30.28200 ,-82.13800,FL-Meso ,FAWN ,Macclenny FAWN , +BRZF1,3,20.72500 ,29.40200 ,-82.58700,FL-Meso ,FAWN ,Bronson FAWN , +PHAF1,3,32.91900 ,29.69700 ,-81.98320,FL-Meso ,FAWN ,Putnam Hall FAWN , +TRAF1,3,54.00000 ,29.41000 ,-82.17000,FL-Meso ,FAWN ,Citra FAWN , +ALHF1,3,45.41600 ,29.80300 ,-82.41000,FL-Meso ,FAWN ,Alachua FAWN , +STNF1,3,8.230000 ,29.69300 ,-81.44500,FL-Meso ,FAWN ,Hastings FAWN , +CKHF1,3,24.68900 ,29.02000 ,-81.96800,FL-Meso ,FAWN ,Ocklawaha FAWN , +EPRF1,3,12.49700 ,29.22260 ,-81.44800,FL-Meso ,FAWN ,Pierson FAWN , +UMLF1,3,24.68900 ,28.91940 ,-81.63200,FL-Meso ,FAWN ,Umatilla FAWN , +KHPF1,3,37.18600 ,28.68200 ,-81.88700,FL-Meso ,FAWN ,Okahumpka FAWN , +VLNF1,3,41.14900 ,28.47700 ,-81.64000,FL-Meso ,FAWN ,Avalon FAWN , +KSLF1,3,24.68900 ,28.63500 ,-82.28500,FL-Meso ,FAWN ,Brooksville FAWN , +POPF1,3,28.95600 ,28.64200 ,-81.55000,FL-Meso ,FAWN ,Apopka FAWN , +KALF1,3,45.41600 ,28.10200 ,-81.71200,FL-Meso ,FAWN ,Lake Alfred FAWN , +KENF1,3,33.85000 ,27.96300 ,-81.05000,FL-Meso ,FAWN ,Kenansville FAWN , +BALM ,3,41.14800 ,27.76000 ,-82.22300,FL-Meso ,FAWN ,Balm FAWN , +DOVF1,3,20.72700 ,28.01700 ,-82.23300,FL-Meso ,FAWN ,Dover FAWN , +NNAF1,3,24.68900 ,27.39750 ,-81.94000,FL-Meso ,FAWN ,Ona FAWN , +FROST,3,44.19600 ,27.76000 ,-81.54000,FL-Meso ,FAWN ,Frostproof FAWN , +AIRGL,3,4.267000 ,26.73900 ,-81.05300,FL-Meso ,FAWN ,Airglades Airport FAWN , +FDLF1,3,4.267000 ,26.08700 ,-80.24200,FL-Meso ,FAWN ,Fort Lauderdale FAWN , +PCEF1,3,4.267000 ,27.42700 ,-80.40200,FL-Meso ,FAWN ,Fort Pierce FAWN , +STDF1,3,0.000000 ,25.50900 ,-80.49800,FL-Meso ,FAWN ,Homestead FAWN , +IMKF1,3,8.230000 ,26.46200 ,-81.44000,FL-Meso ,FAWN ,Immokalee FAWN , +PALF1,3,15.38000 ,26.92500 ,-81.40200,FL-Meso ,FAWN ,Palmdale FAWN , +SEBF1,3,33.85000 ,27.42200 ,-81.40200,FL-Meso ,FAWN ,Sebring FAWN , +NPORT,3,7.903000 ,27.14800 ,-82.19300,FL-Meso ,FAWN ,North Port FAWN , +ARCAD,3,21.94600 ,27.22000 ,-81.83800,FL-Meso ,FAWN ,Arcadia FAWN , +GA102,2,85.58500 ,31.28496 ,-83.47118,GADOT , ,I-75 SB Rest Area 6, GA , +GA103,2,166.0190 ,33.08007 ,-83.99716,GADOT , ,I-75 SB Weigh Station, GA , +GA104,2,292.0460 ,34.90036 ,-85.10060,GADOT , ,I-75 SB Weigh Station, GA , +GA105,2,189.4340 ,32.85953 ,-85.16529,GADOT , ,I-85 NB Welcome Center, GA , +GA106,2,242.5270 ,34.46928 ,-83.06374,GADOT , ,I-85 NB Weigh Station, GA , +GA107,2,1.566000 ,30.74588 ,-81.64801,GADOT , ,I-95 NB Welcome Center, GA , +GA108,2,323.1770 ,34.03231 ,-84.04004,GADOT , ,I-85 @ Rest Stop MM 112, GA , +GA109,2,3.759000 ,32.22357 ,-81.16634,GADOT , ,I-95 SB Weigh Station, GA , +GA110,2,49.26300 ,31.16401 ,-85.07426,GADOT , ,GA 273 WB Weigh Station, GA , +GA111,2,10.47500 ,31.66783 ,-81.82574,GADOT , ,SR 84 WB Weigh Station, GA , +GA112,2,85.20100 ,32.50903 ,-83.06258,GADOT , ,I-16 EB Rest Area 88, GA , +GA113,2,330.7040 ,33.66833 ,-85.33604,GADOT , ,I-20 EB Welcome Center, GA , +GA114,2,225.6720 ,33.58330 ,-83.61550,GADOT , ,I-20 WB Rest Area 53, GA , +GA115,2,66.24200 ,33.52236 ,-82.02297,GADOT , ,I-20 WB Welcome Center, GA , +GA116,2,296.0890 ,33.72129 ,-84.35819,GADOT , ,TMC Confederate Ave Complex, GA , +GA201,2,242.1990 ,34.86906 ,-85.51703,GADOT , ,I-59 @ GA 136 (Trenton), GA , +GA202,2,290.0350 ,34.92855 ,-85.15316,GADOT , ,I-75 @ SR 2 (Ringgold), GA , +GA203,2,288.6250 ,33.39095 ,-84.74864,GADOT , ,I-85 @ GA 34 (Adairsville), GA , +GA204,2,289.2080 ,34.21675 ,-84.75262,GADOT , ,I-75 @ US 411/SR 20 (Cartersville), GA , +GA205,2,192.3850 ,34.26140 ,-85.30161,GADOT , ,SR 20 @ MM 6.8 (Coosa), GA , +GA206,2,157.5340 ,33.52325 ,-82.91042,GADOT , ,I-20 @ SR 22 (Blairsville), GA , +GA207,2,535.8880 ,34.87373 ,-84.32466,GADOT , ,US 76 @ SR 5 (Blue Ridge), GA , +GA208,2,392.8730 ,34.68562 ,-84.47231,GADOT , ,US 76 @ SR 5 (Ellijay), GA , +GA209,2,328.9690 ,34.40025 ,-84.42348,GADOT , ,I-575 @ GA 108 (Jasper), GA , +GA210,2,586.1340 ,34.87140 ,-83.39822,GADOT , ,US 76 @ US 23/ US 441 (Clayton), GA , +GA211,2,344.8390 ,34.46319 ,-83.96684,GADOT , ,US 19/ GA 400 @ SR 60 (Dahlonega), GA , +GA212,2,372.0250 ,34.18000 ,-84.14000,GADOT , ,US 19/ GA 400 AT SR 20 (Cumming), GA , +GA213,2,428.0670 ,34.52011 ,-83.54546,GADOT , ,US 441 @ SR 365 (Cornelia), GA , +GA214,2,364.6150 ,34.26070 ,-83.81924,GADOT , ,I-985 @ GA 53/GA 60 Conn , GA , +GA215,2,214.1960 ,34.24892 ,-83.46314,GADOT , ,I-85 @ US 441 (Commerce), GA , +GA216,2,218.9930 ,34.14671 ,-83.64882,GADOT , ,I-85 @ US 129 (Jefferson), GA , +GA217,2,8.923000 ,31.26539 ,-81.49511,GADOT , ,I-95 SB Rest Area 105 (Suwanee), GA , +GA218,2,218.9890 ,33.90734 ,-83.45121,GADOT , ,US 78 @ US 29/GA 316 (Athens), GA , +GA219,2,389.9250 ,33.71779 ,-84.93884,GADOT , ,I-20 @ SR 61 (Villa Rica), GA , +GA220,2,252.3490 ,33.60680 ,-83.75004,GADOT , ,I-20 @ US 278 (Covington), GA , +GA221,2,578.4410 ,34.87162 ,-83.96667,GADOT , ,US 76 @ SR 11/US 19 (Crawfordville), GA , +GA222,2,232.7510 ,33.27940 ,-85.11469,GADOT , ,US 27 @ SR 34 (N Franklin), GA , +GA223,2,234.8060 ,34.37777 ,-84.91108,GADOT , ,I-75 @ GA 140 (Newnan), GA , +GA224,2,137.9920 ,32.53994 ,-84.96327,GADOT , ,I-185 @ GA 85/US 27 Alt (Columbus), GA , +GA225,2,219.5680 ,33.25635 ,-84.09402,GADOT , ,I-75 @ SR 16 (Jackson), GA , +GA226,2,121.1470 ,32.46659 ,-83.74570,GADOT , ,I-75 @ US 341 (Perry), GA , +GA227,2,106.5230 ,31.96000 ,-83.75000,GADOT , ,I-75 AT US 280/SR 30 (Cordele), GA , +GA228,2,100.6160 ,32.79382 ,-83.57026,GADOT , ,I-16 @ US 23 (Macon), GA , +GA229,2,49.49500 ,32.30164 ,-81.87395,GADOT , ,I-16 @ US 25/US 301/SR 73, GA , +GA230,2,5.479000 ,31.92187 ,-81.33249,GADOT , ,I-95 @ US 17 (Exit 87), GA , +GA231,2,1.345000 ,31.64802 ,-81.39513,GADOT , ,US 17 @ I-95 NB Entrance Ramp, GA , +GA232,2,3.044000 ,31.13274 ,-81.57618,GADOT , ,I-95 @ Exit 29 @ US 17/US 82/SR 520, GA , +GA233,2,6.650000 ,30.93889 ,-81.68761,GADOT , ,I-95 @ GA 25 (Spur Woodbine), GA , +K3K7 ,2,1030.000 ,38.44000 ,-101.4600,GLDNWS , ,Leoti KS , +K72C ,2,1272.000 ,39.65000 ,-102.5700,GLDNWS , ,Kirk CO , +K9V2 ,2,905.0000 ,40.24110 ,-101.0439,GLDNWS , ,Trenton 5N NE , +K9V7 ,2,1287.000 ,38.48000 ,-102.7720,GLDNWS , ,Eads CO , +KBR9 ,2,1269.000 ,39.25000 ,-102.3200,GLDNWS , ,Burlington 6SE CO , +KCB1 ,2,971.0000 ,39.43000 ,-101.0500,GLDNWS , ,Colby KS (High School) , +KCBK ,2,971.0000 ,39.42750 ,-101.0465,GLDNWS , ,Colby KS (Airport AWOS) , +KCO0 ,2,1310.000 ,38.82000 ,-102.3500,GLDNWS , ,Cheyenne Wells CO , +KCHM ,2,1006.000 ,40.38000 ,-101.7200,GLDNWS , ,Champion NE , +KCTS ,2,829.0000 ,40.63300 ,-100.5170,GLDNWS , ,Curtis NE , +KHOX ,2,825.0000 ,39.36000 ,-100.4600,GLDNWS , ,Hoxie KS , +KHYK ,2,1137.000 ,40.53000 ,-102.1700,GLDNWS , ,Holyoke CO , +KIDL ,2,1209.000 ,39.70000 ,-102.2900,GLDNWS , ,Idalia CO , +KPAI ,2,1308.000 ,40.42480 ,-102.6210,GLDNWS , ,Paoli CO , +KSN0 ,2,688.0000 ,39.61000 ,-100.0000,GLDNWS , ,Lenora KS , +KSYF ,2,1025.000 ,39.77000 ,-101.8100,GLDNWS , ,St Francis KS , +KTRB ,2,1108.000 ,38.47000 ,-101.7800,GLDNWS , ,Tribune KS , +KYM1 ,2,1324.000 ,40.12500 ,-102.7200,GLDNWS , ,Yuma CO (Comms Center) , +KYM2 ,2,1262.000 ,40.12000 ,-102.7200,GLDNWS , ,Yuma CO (Campbell Dialup) , +1JDT1,3,53.00000 ,60.47130 ,25.10580 ,GLOBE , ,Jaervenpaeae FI , +1P751,3,84.00000 ,43.29920 ,-73.63560,GLOBE , ,South Glens Falls NY US , +1QQY1,3,401.0000 ,49.75970 ,17.78450 ,GLOBE , ,Vitkov CZ , +1TS93,3,248.8000 ,49.45850 ,17.97180 ,GLOBE , ,Valasske Mezirici CZ , +1VTF3,3,42.00000 ,41.27140 ,-94.46120,GLOBE , ,Anita IA US , +21SM1,3,270.0000 ,42.47300 ,-92.33460,GLOBE , ,Waterloo IA US , +234J1,3,1307.000 ,43.47770 ,-115.3098,GLOBE , ,Pine ID US , +234J3,3,1307.000 ,43.47770 ,-115.3098,GLOBE , ,Pine ID US , +23G91,3,19.00000 ,-34.60750,-58.46870,GLOBE , ,Buenos Aires AR , +26BJ1,3,286.6000 ,37.23980 ,-79.41950,GLOBE , ,Bedford VA US , +26NW1,3,8.000000 ,30.67420 ,-88.08980,GLOBE , ,Mobile AL US , +26TC1,3,188.0000 ,51.84500 ,19.63450 ,GLOBE , ,Lodz PL , +27IB1,3,1353.000 ,48.55380 ,-113.0147,GLOBE , ,Browning MT US , +28H41,3,3.500000 ,14.77690 ,-17.37890,GLOBE , ,Dakar SN , +29YU3,3,10.00000 ,8.260000 ,-82.26000,GLOBE , ,DAVID PA , +2A9F1,3,39.00000 ,35.39370 ,139.3290 ,GLOBE , ,Tokyo JP , +2A9F3,3,39.00000 ,35.39370 ,139.3290 ,GLOBE , ,Tokyo JP , +2DMD1,3,200.0000 ,50.48430 ,17.95830 ,GLOBE , ,Krapkowice PL , +2DQJ1,3,400.0000 ,49.61250 ,16.66980 ,GLOBE , ,Velke Opatovice CZ , +2DVC1,3,1193.000 ,41.94380 ,-2.876300,GLOBE , ,SORIA ES , +2DVS1,3,45.90000 ,40.71980 ,-73.98080,GLOBE , ,New York NY US , +2EAE1,3,86.80000 ,51.16400 ,12.18400 ,GLOBE , ,Leipzig DE , +2GQI1,3,15.00000 ,53.64950 ,9.961800 ,GLOBE , ,Hamburg DE , +2GTJ1,3,243.0000 ,43.49640 ,-88.02330,GLOBE , ,Kohler WI US , +2GTJ2,3,243.0000 ,43.49640 ,-88.02330,GLOBE , ,Kohler WI US , +2JQ21,3,329.0000 ,49.53350 ,16.48010 ,GLOBE , ,Moravska Trebova CZ , +2KZ41,3,60.00000 ,60.73030 ,-150.6444,GLOBE , ,Kenai AK US , +2L2O1,3,5.000000 ,54.31670 ,18.63330 ,GLOBE , ,Gdansk-Orunia PL , +2LLK1,3,62.00000 ,7.950000 ,-80.43000,GLOBE , ,HERRERA PA , +2MDR1,3,46.00000 ,-36.89780,174.5921 ,GLOBE , ,Auckland NZ , +2MP41,3,119.2000 ,44.67190 ,-73.10170,GLOBE , ,Milton VT US , +2NOO1,3,313.0000 ,35.35380 ,-86.21790,GLOBE , ,Tullahoma TN US , +2U9V1,3,100.0000 ,52.27260 ,21.44640 ,GLOBE , ,Warszawa PL , +2VGF1,3,103.0000 ,52.37970 ,-1.434700,GLOBE , ,Coventry Warks UK , +2VGF3,3,35.00000 ,52.37890 ,-1.434700,GLOBE , ,Coventry Warks UK , +2VOA1,3,460.4000 ,40.21590 ,-3.565800,GLOBE , ,S. M. D La Vega M ES , +2YIE1,3,20.00000 ,58.60170 ,23.22470 ,GLOBE , ,Saaremaa EE , +32MY1,3,410.0000 ,-44.94880,168.8395 ,GLOBE , ,Arrowtown NZ , +32NA1,3,129.0000 ,45.50000 ,15.55000 ,GLOBE , ,Karlovac HR , +32WM1,3,358.0000 ,49.71080 ,18.32850 ,GLOBE , ,Frydek-Mistek, Liskovec CZ , +33UD1,3,329.0000 ,42.02430 ,-85.82450,GLOBE , ,Marcellus MI US , +35QZ1,3,759.6000 ,39.44810 ,-1.753200,GLOBE , ,Iniesta, CUENCA ES , +38B91,3,101.0000 ,6.363800 ,1.540300 ,GLOBE , ,Houeyogbe, Mono BJ , +38BP1,3,401.1000 ,34.17288 ,-83.51811,GLOBE , ,Gainesville GA US , +38NZ1,3,678.0000 ,43.97360 ,-73.03440,GLOBE , ,Ripton VT US , +3B3E1,3,-39.40000,44.20000 ,15.68330 ,GLOBE , ,Obrovac HR , +3FS31,3,353.0000 ,49.68330 ,19.20020 ,GLOBE , ,Zywiec PL , +3FS32,3,353.0000 ,49.68330 ,19.20020 ,GLOBE , ,Zywiec PL , +3GBX1,3,115.3000 ,46.38500 ,16.44600 ,GLOBE , ,Cakovec HR , +3ITO1,3,279.0000 ,49.90880 ,18.45220 ,GLOBE , ,Karvina Raj CZ , +3K5G1,3,9.000000 ,30.51290 ,-86.50280,GLOBE , ,Valparaiso FL US , +3KV21,3,1100.000 ,5.532500 ,10.02340 ,GLOBE , ,Bamenda, North West CM , +3MP51,3,516.0000 ,45.93490 ,-89.25170,GLOBE , ,Eagle River WI US , +3O2P1,3,71.00000 ,40.10770 ,-75.27960,GLOBE , ,Plymouth Meeting PA US , +3QN21,3,86.00000 ,45.79420 ,15.89850 ,GLOBE , ,Zagreb HR , +3RSV1,3,336.0000 ,36.11550 ,-80.32030,GLOBE , ,Winston-Salem NC US , +3RZG1,3,29.00000 ,43.31870 ,16.25870 ,GLOBE , ,Split HR , +3SX61,3,19.70000 ,44.05480 ,15.10960 ,GLOBE , ,Preko HR , +3SX62,3,19.70000 ,44.05480 ,15.10960 ,GLOBE , ,Preko HR , +3UTK2,3,200.0000 ,58.88480 ,25.55870 ,GLOBE , ,Paide EE , +3V7I1,3,-36.50000,56.51880 ,-5.943400,GLOBE , ,Aros Argyl UK , +3VHT1,3,125.9000 ,48.90401 ,17.31307 ,GLOBE , ,Straznice CZ , +42GW2,3,129.5000 ,36.51970 ,-119.5463,GLOBE , ,Kingsburg CA US , +44XA1,3,1.000000 ,-15.66670,46.20000 ,GLOBE , ,Majunga Ville MG , +45JA1,3,78.00000 ,40.60480 ,-74.05857,GLOBE , ,Staten Island NY US , +45Y81,3,596.4000 ,38.88370 ,-3.713500,GLOBE , ,Almagro, CR ES , +46DV1,3,41.60000 ,32.27250 ,35.00610 ,GLOBE , ,TAIBE IL , +46FA1,3,1686.000 ,46.89050 ,-113.9683,GLOBE , ,Potomac MT US , +47RF1,3,7.400000 ,55.46470 ,-4.028900,GLOBE , ,Hamilton Lanar UK , +49AQ2,3,35.00000 ,57.78830 ,-152.4030,GLOBE , ,Kodiak AK US , +4BY51,3,163.0000 ,7.100000 ,2.100000 ,GLOBE , ,Ouidah, Atlantique Atlan BJ , +4CGV1,3,17.70000 ,32.02910 ,34.46210 ,GLOBE , ,Tel-Aviv IL , +4GVT3,3,21.70000 ,-35.75780,174.3674 ,GLOBE , ,Whangarei North NZ , +4HHD1,3,2.700000 ,32.04000 ,34.46000 ,GLOBE , ,Tel Aviv city IL , +4HN51,3,106.5000 ,31.14310 ,34.25310 ,GLOBE , ,MERCAZ ZOHAR D.N. NEGEV 85440 IL , +4I9H1,3,19.00000 ,30.60350 ,-87.60030,GLOBE , ,Robertsdale AL US , +4ICZ1,3,40.00000 ,38.00000 ,-1.140000,GLOBE , ,MURCIA MU ES , +4JWZ1,3,102.0000 ,64.52050 ,-165.4210,GLOBE , ,Nome AK US , +4MQL2,3,257.3000 ,39.50030 ,-86.08380,GLOBE , ,Indianapolis IN US , +4NLM1,3,1.800000 ,31.26910 ,130.7957 ,GLOBE , ,Kagoshima JP , +4O5S1,3,2281.400 ,19.49710 ,-99.20400,GLOBE , ,Distrito Federal Mx MX , +4TNX1,3,306.8000 ,41.11000 ,-93.22000,GLOBE , ,Lacona IA US , +4TSQ2,3,1658.000 ,36.37200 ,-109.6243,GLOBE , ,Many Farms AZ US , +4VHO1,3,226.0000 ,46.16550 ,15.75080 ,GLOBE , ,Pregrada HR , +4YGF1,3,226.0000 ,50.02380 ,15.76480 ,GLOBE , ,Pardubice CZ , +4ZGQ2,3,200.0000 ,51.36700 ,20.63300 ,GLOBE , ,Przysucha PL , +52UO1,3,162.0000 ,46.40120 ,16.51800 ,GLOBE , ,Belica HR , +538M1,3,30.00000 ,6.589500 ,2.639700 ,GLOBE , ,Porto Novo, Oueme BJ , +53Z31,3,200.0000 ,41.64550 ,0.612800 ,GLOBE , ,LLEIDA L ES , +55RY3,3,94.00000 ,49.96700 ,7.900000 ,GLOBE , ,Bingen DE , +56IJ5,3,135.0000 ,62.60670 ,-159.5184,GLOBE , ,Shageluk AK US , +57221,3,430.0000 ,47.52330 ,-92.53640,GLOBE , ,Virginia MN US , +58QS1,3,205.7000 ,-43.95970,171.3565 ,GLOBE , ,Ashburton Cant NZ , +58R41,3,50.00000 ,50.96020 ,7.008400 ,GLOBE , ,Koeln-Muelheim DE , +59M71,3,445.0000 ,49.31170 ,10.74480 ,GLOBE , ,Petersaurach DE , +5ALY1,3,150.0000 ,46.37830 ,16.38390 ,GLOBE , ,Nedelisce HR , +5B7T1,3,96.00000 ,47.47450 ,19.05170 ,GLOBE , ,Budapest HU , +5BCO1,3,10.00000 ,-42.39970,173.6733 ,GLOBE , ,Kaikoura NZ , +5BRP1,3,185.9000 ,-45.83790,169.2735 ,GLOBE , ,Heriot NZ , +5GFY1,3,22.00000 ,13.80180 ,100.5137 ,GLOBE , ,Bangkok TH , +5IIW1,3,242.0000 ,21.21830 ,-158.6490,GLOBE , ,Mililani HI US , +5IZR1,3,682.0000 ,40.50580 ,-3.654300,GLOBE , ,Madrid ES , +5JCP2,3,75.00000 ,42.29630 ,-8.139700,GLOBE , ,Ribadavia, OURENSE OU ES , +5KSV1,3,232.0000 ,34.00420 ,-96.22710,GLOBE , ,Durant OK US , +5L7M1,3,151.0000 ,51.26850 ,7.187500 ,GLOBE , ,Wuppertal DE , +5PWK1,3,-18.80000,55.55202 ,21.05555 ,GLOBE , ,Palanga LT , +5VOO2,3,230.7000 ,49.77500 ,16.91670 ,GLOBE , ,Mohelnice CZ , +5YKW1,3,153.0000 ,-37.97650,175.6212 ,GLOBE , ,Cambridge Waik NZ , +5YKW2,3,134.6000 ,-37.98148,175.6258 ,GLOBE , ,Cambridge Waik NZ , +69QW1,3,5.000000 ,40.75790 ,-73.87490,GLOBE , ,East Elmhurst NY US , +6BRR1,3,262.7000 ,41.78304 ,-88.10365,GLOBE , ,Naperville IL US , +6BRR2,3,263.7000 ,41.78910 ,-88.10430,GLOBE , ,Naperville IL US , +6E7O1,3,-15.30000,52.40000 ,13.06700 ,GLOBE , ,Potsdam BB DE , +6F3I1,3,22.00000 ,6.221200 ,2.267700 ,GLOBE , ,Cotonou Atlan BJ , +6G6B1,3,13.90000 ,18.00300 ,-66.76440,GLOBE , ,Ponce PR US , +6GJD1,3,616.0000 ,38.31100 ,-99.11510,GLOBE , ,Bison KS US , +6J8Z1,3,0.000000 ,51.40000 ,5.733300 ,GLOBE , ,Asten NL , +6J9C1,3,68.00000 ,51.22350 ,12.24570 ,GLOBE , ,Leipzig DE , +6O9E1,3,55.00000 ,26.36730 ,127.9850 ,GLOBE , ,Okinawa-Ken JP , +6O9E2,3,55.00000 ,26.36730 ,127.9850 ,GLOBE , ,Okinawa-Ken JP , +6OIV1,3,57.00000 ,45.32570 ,14.45520 ,GLOBE , ,Rijeka HR , +6QPK1,3,214.2000 ,6.542800 ,79.51570 ,GLOBE , ,Colombo 7 LK , +6S3X1,3,1039.000 ,40.50450 ,-81.23610,GLOBE , ,Canton OH US , +6UCO1,3,1421.000 ,35.49830 ,-82.99600,GLOBE , ,Waynesville NC US , +6UCO2,3,1421.000 ,35.49830 ,-82.99600,GLOBE , ,Waynesville NC US , +6UIK1,3,1176.800 ,5.533500 ,10.01580 ,GLOBE , ,Ndop Town NWP CM , +6VK61,3,11.00000 ,55.91700 ,21.05000 ,GLOBE , ,Palanga LT , +6VL93,3,256.6000 ,50.05127 ,14.22475 ,GLOBE , ,Praha 6 CZ , +6XAE1,3,1146.900 ,31.77500 ,-106.5097,GLOBE , ,El Paso TX US , +6XAE2,3,1326.900 ,31.86250 ,-106.4738,GLOBE , ,El Paso TX US , +6YPM1,3,12.00000 ,-37.91670,145.1167 ,GLOBE , ,Clayton South VIC AU , +6ZT71,3,3.000000 ,18.46130 ,-66.26160,GLOBE , ,Dorado PR US , +73FA1,3,64.00000 ,39.82830 ,140.0571 ,GLOBE , ,Akita JP , +73I71,3,32.50000 ,24.03000 ,-77.61000,GLOBE , ,NASSAU BS , +75F62,3,-26.80000,43.47420 ,15.38190 ,GLOBE , ,Tisno HR , +75PU1,3,648.0000 ,40.29470 ,-3.746800,GLOBE , ,Getafe, Madrid M ES , +76Q61,3,268.0000 ,49.56730 ,7.850200 ,GLOBE , ,Winnweiler DE , +77FU1,3,313.0000 ,49.48330 ,10.80000 ,GLOBE , ,Langenzenn DE , +77KR1,3,42.00000 ,32.11020 ,34.82080 ,GLOBE , ,Tel Aviv IL , +79A11,3,17.00000 ,39.42720 ,-75.23440,GLOBE , ,Bridgeton NJ US , +7AUZ1,3,272.0000 ,39.56420 ,-80.99610,GLOBE , ,Sistersville WV US , +7AYY1,3,301.0000 ,-38.14430,176.2436 ,GLOBE , ,Rotorua BoP NZ , +7CGC1,3,38.50000 ,58.14320 ,24.94280 ,GLOBE , ,Parnumaa EE , +7CKN1,3,50.00000 ,45.33940 ,14.42920 ,GLOBE , ,Rijeka HR , +7D2H1,3,43.40000 ,52.29030 ,20.55280 ,GLOBE , ,Serock PL , +7DW41,3,114.2000 ,7.124580 ,79.57980 ,GLOBE , ,Minuwangoda LK , +7E791,3,89.00000 ,46.42830 ,19.47330 ,GLOBE , ,Kiskunhalas HU , +7E794,3,108.0000 ,46.46540 ,19.60940 ,GLOBE , ,Kiskunhalas HU , +7E795,3,138.0000 ,46.30030 ,19.32570 ,GLOBE , ,Kiskunhalas HU , +7E796,3,98.00000 ,46.52360 ,19.25440 ,GLOBE , ,Kiskunhalas HU , +7E798,3,102.0000 ,46.21550 ,19.38070 ,GLOBE , ,Kiskunhalas HU , +7E799,3,120.0000 ,46.52030 ,19.43100 ,GLOBE , ,Kiskunhalas HU , +7GNN1,3,49.00000 ,9.610530 ,98.46940 ,GLOBE , ,Ranong TH , +7JC75,3,647.6000 ,38.77200 ,-3.396200,GLOBE , ,Valdepenas, Ciudad Real CReal ES , +7JHO2,3,248.0000 ,33.89150 ,-84.15350,GLOBE , ,Lilburn GA US , +7KBI1,3,121.6000 ,50.04450 ,8.131300 ,GLOBE , ,Wiesbaden DE , +7KK71,3,150.0000 ,53.12500 ,18.12220 ,GLOBE , ,Bydgoszcz PL , +7L8O1,3,269.5000 ,44.71660 ,-122.6927,GLOBE , ,Scio OR US , +7L9Y1,3,54.20000 ,56.14560 ,22.44370 ,GLOBE , ,Akmene LT , +7MU91,3,15.60000 ,21.00000 ,39.00000 ,GLOBE , ,Jeddah SA , +7PV61,3,1405.000 ,17.38130 ,44.27030 ,GLOBE , ,Najran SA , +7RLJ1,3,245.0000 ,36.03150 ,-80.31530,GLOBE , ,Winston-Salem NC US , +7UCT1,3,110.0000 ,63.23770 ,29.25370 ,GLOBE , ,Juuka FI , +7UH91,3,35.60000 ,34.73500 ,135.8097 ,GLOBE , ,Kizu JP , +7UH92,3,-2.000000,34.73500 ,135.8097 ,GLOBE , ,Kizu JP , +7UM21,3,95.00000 ,52.14050 ,21.20900 ,GLOBE , ,Jozefow PL , +7WJ61,3,28.00000 ,40.59000 ,-74.51000,GLOBE , ,Green Brook NJ US , +7WJ62,3,28.00000 ,40.59000 ,-74.51000,GLOBE , ,Green Brook NJ US , +7WQV1,3,23.00000 ,51.28090 ,5.480000 ,GLOBE , ,Deurne NL , +7ZIK2,3,70.00000 ,57.78420 ,26.06140 ,GLOBE , ,Valga EE , +829W1,3,92.00000 ,45.16600 ,18.01420 ,GLOBE , ,Slavonski Brod HR , +82ZK1,3,501.4000 ,-35.00000,138.5000 ,GLOBE , ,Norton Summit SA AU , +83AU4,3,179.1000 ,50.14660 ,22.17380 ,GLOBE , ,Rzeszow PL , +83AU6,3,179.1000 ,50.14660 ,22.17380 ,GLOBE , ,Rzeszow PL , +83AU8,3,179.1000 ,50.14660 ,22.17380 ,GLOBE , ,Rzeszow PL , +858J2,3,201.8000 ,50.03820 ,22.00780 ,GLOBE , ,Rzeszow PL , +877X1,3,130.0000 ,35.58330 ,137.0117 ,GLOBE , ,Gifu JP , +8AI91,3,39.00000 ,40.39730 ,-74.32260,GLOBE , ,Old Bridge NJ US , +8BZB1,3,27.00000 ,-34.60000,-58.50000,GLOBE , ,Buenos Aires AR , +8DQ91,3,2292.000 ,19.40520 ,-99.20070,GLOBE , ,Distrito Federal Mx MX , +8EHZ1,3,130.0000 ,40.45060 ,-122.3011,GLOBE , ,Anderson CA US , +8G7Z1,3,280.0000 ,47.54000 ,17.76970 ,GLOBE , ,Pannonhalma HU , +8L3Q1,3,304.1000 ,12.59830 ,-8.056900,GLOBE , ,Sebernikoro ML , +8L5H1,3,1061.000 ,45.88330 ,-104.5500,GLOBE , ,Ekalaka MT US , +8LUX1,3,350.0000 ,51.00550 ,14.46130 ,GLOBE , ,Sluknov CZ , +8NS51,3,419.0000 ,47.65520 ,9.131900 ,GLOBE , ,Taegerwilen TG CH , +8NZA1,3,1201.000 ,9.889700 ,-83.73330,GLOBE , ,Alajuela CR , +8OW51,3,198.0000 ,35.29690 ,-94.03610,GLOBE , ,Charleston AR US , +8OW81,3,8.000000 ,-34.48520,-58.54870,GLOBE , ,San Isidro, Buenos Aires AR , +8SV51,3,372.9000 ,42.47050 ,-2.564800,GLOBE , ,Fuenmayor LO ES , +8TW61,3,1523.000 ,39.80170 ,-120.4665,GLOBE , ,Portola CA US , +8TW62,3,1500.000 ,39.80070 ,-120.4660,GLOBE , ,Portola CA US , +8VIY1,3,9.000000 ,27.31480 ,-82.53580,GLOBE , ,Sarasota FL US , +8WAQ1,3,60.00000 ,45.34430 ,14.31380 ,GLOBE , ,Opatija HR , +8YXS2,3,289.0000 ,47.34140 ,7.376600 ,GLOBE , ,Basel BS CH , +8ZUM1,3,117.0000 ,60.04180 ,9.647500 ,GLOBE , ,Prestfoss NO , +8ZUM2,3,70.20000 ,60.04340 ,9.640000 ,GLOBE , ,Prestfoss NO , +93GE1,3,60.50000 ,36.01870 ,129.2060 ,GLOBE , ,Pohang KR , +96JF1,3,34.40000 ,13.86940 ,100.6073 ,GLOBE , ,Bangkok TH , +983Y1,3,210.0000 ,14.95100 ,102.0366 ,GLOBE , ,Nakhon Ratchasima TH , +989X1,3,839.1000 ,30.36510 ,34.48000 ,GLOBE , ,Mitzpe Ramon -Negev IL , +989X3,3,839.1000 ,30.36510 ,34.48000 ,GLOBE , ,Mitzpe Ramon -Negev IL , +98D61,3,399.8000 ,28.37650 ,-16.65130,GLOBE , ,La Guancha TF ES , +98HF1,3,880.0000 ,40.65450 ,-3.765700,GLOBE , ,Colmenar Viejo , Madrid M ES , +99JX1,3,98.00000 ,36.58300 ,-120.0242,GLOBE , ,Madera CA US , +9CLW1,3,321.1000 ,42.51100 ,-92.45300,GLOBE , ,Waterloo IA US , +9DFC1,3,2240.000 ,19.40500 ,-98.98830,GLOBE , ,C. P. 57000 Mx MX , +9EIL2,3,338.0000 ,34.33000 ,-86.49380,GLOBE , ,Arab AL US , +9EX51,3,1440.000 ,9.656300 ,-84.00020,GLOBE , ,San Marcos De Tarrazu, Cartego CR , +9G461,3,254.0000 ,29.88840 ,-97.94580,GLOBE , ,San Marcos TX US , +9GJB1,3,1612.000 ,45.96420 ,-115.3269,GLOBE , ,Elk City ID US , +9HLI1,3,2.000000 ,30.77250 ,-88.08410,GLOBE , ,Chickasaw AL US , +9I9A1,3,168.0000 ,31.60120 ,130.4825 ,GLOBE , ,Kagoshima JP , +9IOQ1,3,270.0000 ,50.38100 ,13.27230 ,GLOBE , ,Kadan CZ , +9J7Y2,3,657.2000 ,34.73850 ,-82.83020,GLOBE , ,Central SC US , +9J8F1,3,109.0000 ,46.89330 ,18.02670 ,GLOBE , ,Siofok HU , +9L5Q1,3,663.1000 ,34.25980 ,-87.05420,GLOBE , ,Danville AL US , +9N4J1,3,126.9000 ,50.66420 ,14.00970 ,GLOBE , ,Usti Nad Labem Czech CZ , +9NIT1,3,40.00000 ,6.841400 ,79.93150 ,GLOBE , ,Pannipitiya WP LK , +9PTI1,3,124.9000 ,50.55000 ,22.05050 ,GLOBE , ,Stalowa Wola PL , +9QOQ3,3,656.0000 ,24.43000 ,46.37000 ,GLOBE , ,Riyadh SA , +9QU61,3,289.3000 ,12.37020 ,-0.075900,GLOBE , ,Bamako ML , +9RNA1,3,22.40000 ,34.41380 ,33.02330 ,GLOBE , ,Lemesos CY , +9TX83,3,720.0000 ,45.31610 ,14.70830 ,GLOBE , ,Delnice HR , +9WQZ1,3,260.2000 ,14.98320 ,102.8850 ,GLOBE , ,Nakorn Rachasima TH , +9XAK1,3,174.5000 ,50.08740 ,21.95400 ,GLOBE , ,Mrowla PL , +9Y971,3,120.0000 ,46.33330 ,16.33330 ,GLOBE , ,Varazdin HR , +A2NI1,3,901.1000 ,40.67390 ,-3.976100,GLOBE , ,Moralzarzal, Madrid M ES , +A3YD1,3,133.4000 ,39.52620 ,-75.26402,GLOBE , ,Aston PA US , +A5CA1,3,193.0000 ,35.07470 ,33.19550 ,GLOBE , ,Strovolos CY , +A5HO1,3,200.0000 ,58.37330 ,26.76780 ,GLOBE , ,Tartu EE , +A5XX1,3,1010.000 ,40.93780 ,-4.627000,GLOBE , ,SEGOVIA SG ES , +A7ZK1,3,481.0000 ,36.90810 ,-82.30920,GLOBE , ,Saint Paul VA US , +A86Z1,3,244.0000 ,34.71270 ,-86.73980,GLOBE , ,Madison AL US , +A9M41,3,203.7000 ,47.97670 ,7.815900 ,GLOBE , ,Freiburg DE , +ABPS1,3,364.9000 ,53.05470 ,70.22130 ,GLOBE , ,Zelyony Bor KZ , +ABPS3,3,358.1000 ,53.10360 ,70.36370 ,GLOBE , ,Zelyony Bor KZ , +ADGI2,3,454.0000 ,38.77770 ,-120.8897,GLOBE , ,Placerville CA US , +AFCA1,3,295.0000 ,51.13330 ,14.18330 ,GLOBE , ,Bischofswerda DE , +AHJA2,3,438.0000 ,50.20570 ,16.23670 ,GLOBE , ,Solnice CZ , +AHSR3,3,86.00000 ,36.30300 ,-119.3437,GLOBE , ,Visalia CA US , +AJ621,3,96.00000 ,31.07540 ,-88.25900,GLOBE , ,Citronelle AL US , +AK4Y1,3,581.4000 ,40.28800 ,-3.785000,GLOBE , ,Fuenlabrada M ES , +AL2I1,3,52.50000 ,10.28799 ,-61.27567,GLOBE , ,Carapichaima TT , +AOWT1,3,17.00000 ,30.68430 ,-88.19850,GLOBE , ,Mobile AL US , +AOWT2,3,17.00000 ,30.68220 ,-88.18720,GLOBE , ,Mobile AL US , +AOWT3,3,17.00000 ,30.68220 ,-88.18720,GLOBE , ,Mobile AL US , +APB31,3,10.00000 ,-63.40000,-56.98330,GLOBE , ,hosted by Argentina AR , +AQ5Z1,3,85.50000 ,9.300000 ,-83.55000,GLOBE , ,San Jose SJO CR , +AQ5Z3,3,85.50000 ,9.300000 ,-83.55000,GLOBE , ,San Jose SJO CR , +AQN21,3,340.0000 ,49.86950 ,16.30800 ,GLOBE , ,Litomysl Czech CZ , +AQN25,3,340.0000 ,49.86950 ,16.30800 ,GLOBE , ,Litomysl Czech CZ , +ASKC1,3,580.0000 ,38.87000 ,-99.29600,GLOBE , ,Hays KS US , +ASKC2,3,579.0000 ,38.86530 ,-99.29450,GLOBE , ,Hays KS US , +ASKC4,3,575.0000 ,38.86950 ,-99.29600,GLOBE , ,Hays KS US , +AU9U2,3,1996.000 ,38.86820 ,-104.8575,GLOBE , ,Colorado Springs CO US , +AWTX1,3,265.0000 ,50.55870 ,15.90120 ,GLOBE , ,Trutnov CZ , +AXWV1,3,286.9000 ,49.08180 ,18.01980 ,GLOBE , ,Brumov - Bylnice Czech CZ , +AZV71,3,88.00000 ,45.15620 ,18.02420 ,GLOBE , ,Slavonski Brod HR , +B2UP1,3,107.0000 ,-40.24090,175.4795 ,GLOBE , ,Pahiatua Waira NZ , +B6ID1,3,0.000000 ,18.46510 ,-66.08760,GLOBE , ,San Juan PR US , +B9GH1,3,1075.000 ,-30.00000,152.0000 ,GLOBE , ,Glen Innes NSW AU , +BBIT1,3,90.00000 ,45.53330 ,18.73330 ,GLOBE , ,Osijek HR , +BELU1,3,3.000000 ,58.50320 ,23.10930 ,GLOBE , ,Saaremaa EE , +BEWF1,3,270.0000 ,7.250000 ,2.000000 ,GLOBE , ,Abomey Zou BJ , +BFPA1,3,247.7000 ,41.76660 ,-88.14350,GLOBE , ,Naperville IL US , +BGG41,3,1010.000 ,40.35770 ,-5.521200,GLOBE , ,Barco De Avila, AVILA AV ES , +BHC91,3,37.00000 ,6.418000 ,2.288600 ,GLOBE , ,Adjohoun OUEME BJ , +BLAP5,3,280.7000 ,49.26640 ,17.58110 ,GLOBE , ,Valasske Mezirici CZ , +BOQE1,3,219.6000 ,43.12750 ,-85.55600,GLOBE , ,Rockford MI US , +BOWE1,3,468.0000 ,48.29770 ,11.89430 ,GLOBE , ,Erding DE , +BP3T1,3,386.0000 ,50.55000 ,10.28330 ,GLOBE , ,Bettenhausen DE , +BQ3W3,3,48.70000 ,56.64670 ,25.12030 ,GLOBE , ,Skriveri LV , +BQOO4,3,113.0000 ,39.00280 ,-77.17740,GLOBE , ,Bethesda MD US , +BQZ61,3,217.3000 ,31.51200 ,34.79890 ,GLOBE , ,Sakhnin IL , +BWWV2,3,322.0000 ,42.67330 ,-83.38850,GLOBE , ,Waterford MI US , +BX7W1,3,780.0000 ,41.18250 ,20.67550 ,GLOBE , ,Struga MK , +C1CR1,3,51.00000 ,36.79930 ,34.56900 ,GLOBE , ,Mersin TR , +C3W81,3,200.0000 ,58.34130 ,25.57570 ,GLOBE , ,Viljandi EE , +C55K1,3,1022.449 ,47.43570 ,-111.5075,GLOBE , ,Ulm MT US , +C5IX1,3,395.0000 ,48.97370 ,14.50270 ,GLOBE , ,Ceske Budejovice CZ , +C5NT1,3,160.0000 ,51.55280 ,19.39580 ,GLOBE , ,Dlutow PL , +C5YU3,3,423.0000 ,47.15550 ,9.503200 ,GLOBE , ,Vaduz LI , +C6BX3,3,1.900000 ,44.52800 ,14.47450 ,GLOBE , ,Mali Losinj HR , +C98P1,3,61.00000 ,45.44190 ,16.28010 ,GLOBE , ,Petrinja HR , +C98P3,3,61.00000 ,45.44190 ,16.28010 ,GLOBE , ,Petrinja HR , +CAY21,3,415.7000 ,49.90780 ,16.42180 ,GLOBE , ,Ceska Trebova CZ , +CCAW1,3,67.00000 ,56.19680 ,24.75300 ,GLOBE , ,LT-5280 Birzai LT , +CE7S1,3,136.0000 ,6.639700 ,1.714200 ,GLOBE , ,Lokossa BJ , +CFWY1,3,585.4000 ,40.30010 ,-3.735800,GLOBE , ,Getafe, Madrid M ES , +CG3S1,3,211.0000 ,43.07830 ,-85.60950,GLOBE , ,Belmont MI US , +CG9B1,3,205.3000 ,50.09290 ,19.08660 ,GLOBE , ,Bierun PL , +CIDY1,3,87.00000 ,7.362800 ,2.106100 ,GLOBE , ,DASSA BJ , +CJ5A1,3,33.60000 ,52.75190 ,15.23610 ,GLOBE , ,Gorzow Wlkp PL , +CK8R1,3,125.1000 ,18.49877 ,-67.13928,GLOBE , ,Ramey PR US , +CLAP1,3,3.000000 ,53.03330 ,8.733300 ,GLOBE , ,Bremen DE , +CLQW1,3,260.0000 ,45.00520 ,-93.10100,GLOBE , ,Maplewood MN US , +CLQW2,3,340.2000 ,45.00430 ,-93.10080,GLOBE , ,Maplewood MN US , +CN8N1,3,44.10000 ,45.09551 ,18.02034 ,GLOBE , ,Slavonski Brod HR , +CPQE1,3,70.00000 ,55.83920 ,13.31780 ,GLOBE , ,241 38 Eslov SE , +CQKQ1,3,662.0000 ,38.72170 ,-4.073300,GLOBE , ,Argamasilla De Calatrava, C. Real CR ES , +CQKQ3,3,616.3000 ,38.72583 ,-4.076670,GLOBE , ,Argamasilla De Calatrava, C. Real CR ES , +CVIA1,3,70.70000 ,35.17880 ,129.1011 ,GLOBE , ,Busan KR , +CVP21,3,109.0000 ,52.38330 ,16.98330 ,GLOBE , ,Poznan PL , +CYZM1,3,47.90000 ,-45.87450,170.4996 ,GLOBE , ,Dunedin Otago NZ , +D8FG1,3,334.0000 ,40.86650 ,-81.44630,GLOBE , ,Canton OH US , +DBCS1,3,27.50000 ,9.954220 ,98.63708 ,GLOBE , ,Ranong TH , +DCDV1,3,153.3000 ,25.00000 ,84.00000 ,GLOBE , ,Kanchanpur NP , +DE421,3,24.90000 ,-42.60000,-73.70000,GLOBE , ,Isla Chiloe X R CL , +DFJG1,3,16.00000 ,38.56100 ,-121.7273,GLOBE , ,Davis CA US , +DFTG1,3,-39.10000,52.14200 ,0.098300 ,GLOBE , ,Milton Cambr UK , +DKDO1,3,421.0000 ,10.16310 ,1.226500 ,GLOBE , ,Natitingou Ataco BJ , +DN971,3,12.00000 ,-41.51980,173.9585 ,GLOBE , ,Blenheim Nelso NZ , +DO921,3,212.2000 ,50.00330 ,22.67860 ,GLOBE , ,Jaroslaw PL , +DO9B1,3,95.80000 ,47.93120 ,21.04300 ,GLOBE , ,Tiszaujvaros HU , +DRVR2,3,72.00000 ,52.27170 ,10.54870 ,GLOBE , ,Braunschweig DE , +DUF51,3,1227.900 ,29.39430 ,-98.29630,GLOBE , ,San Antonio TX US , +DVWS1,3,130.0000 ,53.79650 ,17.98040 ,GLOBE , ,Czersk PL , +DWZR1,3,612.0000 ,38.87220 ,-99.33970,GLOBE , ,Hays KS US , +DXRD1,3,344.9000 ,33.80949 ,-84.20433,GLOBE , ,Stone Mountain GA US , +E2XA1,3,107.0000 ,51.30000 ,12.33300 ,GLOBE , ,Leipzig DE , +E5EJ1,3,250.0000 ,50.81620 ,19.12320 ,GLOBE , ,Czestochowa PL , +E8M73,3,64.00000 ,52.28150 ,0.645200 ,GLOBE , ,Bury Saint Edmunds Suffo UK , +EAMX1,3,147.9000 ,48.93450 ,17.29340 ,GLOBE , ,Hodonin CZ , +EB3G1,3,183.4000 ,47.23345 ,16.61379 ,GLOBE , ,Szombathely HU , +EB3G2,3,183.4000 ,47.23344 ,16.61378 ,GLOBE , ,Szombathely HU , +EBTA1,3,556.0000 ,40.23260 ,-4.391500,GLOBE , ,Almorox ,Toledo TO ES , +ECS91,3,79.70000 ,40.89184 ,-73.83857,GLOBE , ,Bronx NY US , +ECS92,3,76.10000 ,40.89159 ,-73.83928,GLOBE , ,Bronx NY US , +EE7D1,3,64.70000 ,45.48960 ,15.55470 ,GLOBE , ,Karlovac HR , +EEBM1,3,55.00000 ,51.63330 ,12.26670 ,GLOBE , ,Bitterfeld DE , +EESD1,3,85.80000 ,52.42474 ,-1.814150,GLOBE , ,Solihull UK , +EEVT1,3,25.00000 ,31.79390 ,34.63720 ,GLOBE , ,Ashdod IL , +EHYU1,3,801.3000 ,42.35300 ,-3.665000,GLOBE , ,Burgos ES , +EKDI1,3,99.00000 ,51.62280 ,17.02280 ,GLOBE , ,Chojno PL , +EM6V1,3,504.7000 ,33.46530 ,-112.3124,GLOBE , ,Wittmann AZ US , +ENQ51,3,-1.000000,52.38330 ,4.933300 ,GLOBE , ,Amsterdam NL , +EO8N1,3,1173.000 ,9.550000 ,-84.04000,GLOBE , ,San Jose, San Jose CR , +EPCI1,3,18.00000 ,6.028300 ,80.12750 ,GLOBE , ,Galle South LK , +EPU81,3,492.0000 ,48.36940 ,10.89080 ,GLOBE , ,Augsburg DE , +EQGK1,3,241.0000 ,-35.07830,138.5951 ,GLOBE , ,Aberfoyle Park SA AU , +ESM21,3,2408.000 ,37.02350 ,-121.9892,GLOBE , ,Santa Cruz CA US , +ESM23,3,82.20000 ,37.02430 ,-121.9908,GLOBE , ,Santa Cruz CA US , +ETY31,3,90.00000 ,41.12600 ,29.03000 ,GLOBE , ,Istanbul TR , +EUFZ1,3,55.00000 ,-41.08130,175.4616 ,GLOBE , ,Greytown NZ , +F2EP1,3,93.00000 ,-25.20000,-57.63400,GLOBE , ,Asuncion PY , +F3681,3,84.00000 ,6.438800 ,2.390800 ,GLOBE , ,SAKETE Plate BJ , +F5NR1,3,50.00000 ,32.05000 ,34.95000 ,GLOBE , ,Rosh Hayn IL , +F5Z71,3,1100.000 ,9.570000 ,-83.58000,GLOBE , ,CARTAGO CART CR , +F6JD1,3,55.20000 ,59.14120 ,14.53960 ,GLOBE , ,Fjugesta SE SE , +FEIH2,3,295.0000 ,42.46720 ,-91.90820,GLOBE , ,Independence IA US , +FEU81,3,708.0000 ,39.41920 ,-3.118000,GLOBE , ,Campo de Criptana, CR ES , +FGKR9,3,102.0000 ,46.05160 ,16.03240 ,GLOBE , ,Bedekovcina HR , +FK382,3,185.0000 ,50.06730 ,14.49770 ,GLOBE , ,Praha 10 CZ , +FL8O1,3,196.0000 ,49.29940 ,17.38570 ,GLOBE , ,Kromeriz CZ , +FM5G2,3,49.00000 ,32.51000 ,-116.9700,GLOBE , ,Tijuana MX , +FNB51,3,49.00000 ,56.35820 ,26.17180 ,GLOBE , ,Livani LV , +FNOR1,3,62.00000 ,45.82000 ,16.00980 ,GLOBE , ,Zagreb HR , +FNOR2,3,81.00000 ,45.81890 ,16.00770 ,GLOBE , ,Zagreb HR , +FQ991,3,-40.50000,44.21530 ,9.839000 ,GLOBE , ,Recco GE IT , +FQUB1,3,511.3000 ,42.41970 ,-2.720000,GLOBE , ,Najera, LA RIOJA LO ES , +FRRL1,3,123.0000 ,45.82000 ,16.04170 ,GLOBE , ,Zagreb HR , +FRT81,3,328.0000 ,40.17870 ,-79.81460,GLOBE , ,Belle Vernon PA US , +FTOM1,3,250.0000 ,48.99080 ,17.72030 ,GLOBE , ,Banov CZ , +FUPL1,3,25.00000 ,43.81250 ,15.59580 ,GLOBE , ,Murter HR , +FUYW1,3,66.70000 ,40.73780 ,-73.75600,GLOBE , ,Bayside NY US , +G32N1,3,30.00000 ,52.23400 ,5.966700 ,GLOBE , ,Apeldoorn NL , +G43X1,3,366.0000 ,40.91160 ,-79.94280,GLOBE , ,Butler PA US , +G4J31,3,575.6000 ,39.93300 ,-4.020400,GLOBE , ,Bargas TO ES , +G7E91,3,293.5000 ,14.87480 ,102.0264 ,GLOBE , ,Nakonratchaseema TH , +G7E93,3,196.7000 ,15.00490 ,102.2664 ,GLOBE , ,Nakonratchaseema TH , +G89Q1,3,92.00000 ,45.66670 ,18.01670 ,GLOBE , ,Slavonski Brod HR , +G8FC5,3,53.70000 ,55.31104 ,25.05513 ,GLOBE , ,Anyksciai LT , +GA681,3,13.10000 ,44.02030 ,28.65300 ,GLOBE , ,Eforie Sud RO , +GAUZ1,3,229.8000 ,42.46700 ,-73.36700,GLOBE , ,New Lebanon NY US , +GAZC1,3,400.0000 ,49.60000 ,15.60000 ,GLOBE , ,Havlickuv Brod CZ , +GBNH1,3,29.80000 ,18.00000 ,-66.00000,GLOBE , ,Rio Piedras PR US , +GCZ31,3,1147.700 ,48.25720 ,-109.7745,GLOBE , ,Box Elder MT US , +GCZ32,3,1084.600 ,48.29030 ,-109.8695,GLOBE , ,Box Elder MT US , +GCZ61,3,59.50000 ,40.74075 ,-73.87398,GLOBE , ,Elmhurst NY US , +GD5J3,3,233.3000 ,50.40340 ,14.01440 ,GLOBE , ,Usti Nad Labem Czech CZ , +GE4E1,3,205.6000 ,41.92000 ,-83.43800,GLOBE , ,Monroe MI US , +GE4E3,3,207.8000 ,41.87442 ,-83.39143,GLOBE , ,Monroe MI US , +GFD81,3,75.00000 ,18.06660 ,-67.15550,GLOBE , ,Cabo Rojo PR US , +GFXP1,3,195.0000 ,35.07870 ,33.21530 ,GLOBE , ,Strovolos CY , +GG4H1,3,110.0000 ,51.50220 ,17.17490 ,GLOBE , ,Milicz PL , +GLI81,3,281.0000 ,39.16670 ,-84.23330,GLOBE , ,Milford OH US , +GLUZ3,3,60.00000 ,35.35000 ,139.5167 ,GLOBE , ,Kamakura JP , +GQET1,3,134.4000 ,46.06700 ,16.99520 ,GLOBE , ,Virje HR , +GRU31,3,520.0000 ,40.21230 ,-5.084000,GLOBE , ,Arenas De San Pedro, AVILA AV ES , +GTXZ1,3,1206.000 ,-19.05000,47.91670 ,GLOBE , ,Mantasoa MG , +GUS81,3,35.00000 ,54.19440 ,16.19440 ,GLOBE , ,Koszalin PL , +GUVD3,3,10.00000 ,26.25890 ,50.06690 ,GLOBE , ,Dammam SA , +GUVD4,3,10.00000 ,26.25890 ,50.06690 ,GLOBE , ,Dammam SA , +GV3Z1,3,56.60000 ,-37.91629,175.4797 ,GLOBE , ,Cambridge NZ , +GV8E1,3,58.70000 ,31.51910 ,131.1519 ,GLOBE , ,Kagoshima JP , +GX971,3,8.900000 ,-36.18000,174.7877 ,GLOBE , ,Auckland Auck NZ , +GZZ71,3,575.5000 ,39.15300 ,-4.155400,GLOBE , ,Porzuna, CR ES , +H3TH1,3,25.00000 ,-5.183300,-80.63330,GLOBE , ,Piura PE , +H4BJ2,3,0.000000 ,42.76320 ,-73.91870,GLOBE , ,Schenectady NY US , +H4UB1,3,603.2000 ,40.33551 ,-3.871030,GLOBE , ,Madrid M ES , +H9C51,3,852.3000 ,40.67960 ,-3.770200,GLOBE , ,Colmenar Viejo M ES , +H9FG1,3,175.0000 ,52.63530 ,-3.004400,GLOBE , ,Shropshire UK , +HCLV1,3,268.0000 ,41.99020 ,21.43480 ,GLOBE , ,Skopje MK , +HCPN1,3,77.00000 ,35.05320 ,33.98170 ,GLOBE , ,Paralimni CY , +HD4S1,3,24.60000 ,45.34480 ,14.42070 ,GLOBE , ,Rijeka HR , +HD5T1,3,668.7000 ,40.61000 ,-3.708000,GLOBE , ,Tres Cantos, Madrid M ES , +HD7W1,3,85.00000 ,35.27420 ,136.0438 ,GLOBE , ,Shiga JP , +HDLD1,3,839.0000 ,34.31000 ,-117.0000,GLOBE , ,Apple Valley CA US , +HDLD3,3,870.8000 ,34.31000 ,-117.1600,GLOBE , ,Apple Valley CA US , +HDOG1,3,62.00000 ,59.01800 ,10.03420 ,GLOBE , ,Larvik NO , +HF2R2,3,131.3000 ,34.05060 ,-118.5298,GLOBE , ,Pacific Palisades CA US , +HFTQ1,3,101.0000 ,32.92420 ,-89.70230,GLOBE , ,Carthage MS US , +HFTQ2,3,250.0000 ,32.61300 ,-90.03700,GLOBE , ,Carthage MS US , +HJ681,3,101.0000 ,42.88820 ,-73.98900,GLOBE , ,Glenville NY US , +HL7K1,3,125.0000 ,45.20350 ,16.02920 ,GLOBE , ,Zagreb HR , +HMDW1,3,150.0000 ,10.37000 ,-85.27000,GLOBE , ,Liberia, Guanacaste CR , +HN961,3,293.0000 ,34.03740 ,-84.35600,GLOBE , ,Roswell GA US , +HNOC1,3,344.0000 ,39.46870 ,-80.11100,GLOBE , ,Fairmont WV US , +HNOU1,3,256.7000 ,49.47021 ,17.96889 ,GLOBE , ,Valasske Mezirici CZ , +HNWI2,3,-4.900000,51.69640 ,6.876900 ,GLOBE , ,Schermbeck DE , +HNXR1,3,446.0000 ,42.79060 ,-75.56030,GLOBE , ,Middleport NY US , +HNY12,3,200.0000 ,59.40140 ,24.70170 ,GLOBE , ,Tallinn EE , +HOOB1,3,670.0000 ,3.068800 ,12.15490 ,GLOBE , ,MEYOMESSALA SOUTH CM , +HOX41,3,152.0000 ,33.09420 ,-86.75210,GLOBE , ,Calera AL US , +HPGG1,3,23.20000 ,34.68970 ,33.09600 ,GLOBE , ,Limassol CY , +HPI51,3,18.00000 ,33.98350 ,-118.2125,GLOBE , ,Huntington Park CA US , +HPJO1,3,38.00000 ,-40.33850,175.6245 ,GLOBE , ,Palmerston North Palme NZ , +HQ9W1,3,221.3000 ,50.90570 ,18.94070 ,GLOBE , ,Klobuck PL , +HR5K1,3,16.00000 ,37.46110 ,-122.1767,GLOBE , ,Atherton CA US , +HR5K3,3,51.50000 ,37.27710 ,-122.1064,GLOBE , ,Atherton CA US , +HSHI1,3,90.80000 ,38.56080 ,-77.01270,GLOBE , ,Washington DC US , +HTED1,3,3.000000 ,63.98380 ,-22.38620,GLOBE , ,190 Vogar IS , +HTUR1,3,796.0000 ,41.65500 ,-3.685000,GLOBE , ,Aranda De Duero, BURGOS BU ES , +HTV21,3,250.0000 ,36.19480 ,-92.18530,GLOBE , ,Norfork AR US , +HVTY1,3,149.0000 ,48.75870 ,16.89050 ,GLOBE , ,Breclav CZ , +HY2K1,3,35.50000 ,51.53795 ,7.597730 ,GLOBE , ,Herne DE , +I5GS1,3,120.0000 ,57.51670 ,24.71670 ,GLOBE , ,Talsi LV , +I6941,3,227.1000 ,10.10460 ,1.063000 ,GLOBE , ,Natitingou ATACO BJ , +I9K51,3,191.4000 ,51.75800 ,19.46700 ,GLOBE , ,Lodz PL , +IAVS1,3,44.90000 ,45.11433 ,17.51632 ,GLOBE , ,Davor HR , +IBL41,3,7.000000 ,33.77690 ,-118.0386,GLOBE , ,Los Alamitos CA US , +IENI1,3,570.0000 ,49.51900 ,16.26000 ,GLOBE , ,Bystrice Nad Perstejnem CZ , +IGAW1,3,3.300000 ,44.45410 ,-0.411600,GLOBE , ,Cestas FR , +IJ4O1,3,575.4000 ,40.31200 ,-3.711000,GLOBE , ,Getafe ES , +IJE21,3,200.0000 ,58.14280 ,26.24170 ,GLOBE , ,Tartumaa EE , +ILNQ1,3,355.3000 ,18.47710 ,99.00830 ,GLOBE , ,Chiangmai TH , +INDB1,3,105.4000 ,8.316590 ,99.00745 ,GLOBE , ,Krabi TH , +IP4L2,3,341.0000 ,49.72130 ,7.309200 ,GLOBE , ,Idar-Oberstein DE , +IPOK1,3,144.7000 ,52.05560 ,21.36830 ,GLOBE , ,Celestynow PL , +ISDH1,3,188.6000 ,43.08141 ,-77.51126,GLOBE , ,Pittsford NY US , +IUUH1,3,-30.40000,35.88720 ,-5.325500,GLOBE , ,CEUTA CE ES , +IUYM1,3,285.4000 ,41.47360 ,-88.09140,GLOBE , ,Naperville IL US , +IUYM3,3,292.8000 ,41.47370 ,-88.09140,GLOBE , ,Naperville IL US , +IV2Z2,3,262.6000 ,51.02000 ,7.350000 ,GLOBE , ,Gummersbach DE , +IYEV1,3,268.0000 ,42.68420 ,-84.45400,GLOBE , ,Okemos MI US , +IYEV2,3,266.0000 ,42.68470 ,-84.45450,GLOBE , ,Okemos MI US , +IZMX1,3,112.0000 ,55.40000 ,22.90000 ,GLOBE , ,Vidukle LT , +J1FS1,3,1522.000 ,39.67880 ,-105.0507,GLOBE , ,Denver CO US , +J1FS2,3,1689.000 ,39.68220 ,-105.0512,GLOBE , ,Denver CO US , +J22N1,3,207.0000 ,46.14440 ,16.77860 ,GLOBE , ,Sokolovac HR , +J3961,3,368.5000 ,40.28333 ,-93.69124,GLOBE , ,Eagleville MO US , +J3ZC2,3,30.00000 ,60.45400 ,26.22790 ,GLOBE , ,Loviisa FI , +J4OB1,3,256.0000 ,49.95000 ,17.86670 ,GLOBE , ,Opava CZ , +J4OL1,3,2706.000 ,-15.20720,-71.50730,GLOBE , ,Cotahuasi, Arequipa. AQP PE , +J4OL3,3,2706.000 ,-15.20720,-71.50730,GLOBE , ,Cotahuasi, Arequipa. AQP PE , +J5FH2,3,34.30000 ,40.07460 ,-75.20520,GLOBE , ,Norristown PA US , +J5NJ1,3,108.0000 ,47.40950 ,-122.8463,GLOBE , ,Belfair WA US , +JADW1,3,160.0000 ,39.94700 ,-75.97530,GLOBE , ,Atglen PA US , +JBFE1,3,64.00000 ,35.45660 ,139.4613 ,GLOBE , ,Kanagawa JP , +JBFE6,3,64.00000 ,35.45660 ,139.4613 ,GLOBE , ,Kanagawa JP , +JCXZ1,3,32.80000 ,56.06700 ,24.44000 ,GLOBE , ,Pasvalys LT , +JCXZ2,3,32.80000 ,56.06700 ,24.44000 ,GLOBE , ,Pasvalys LT , +JEV81,3,399.7000 ,9.002100 ,1.402600 ,GLOBE , ,Bassila Donga BJ , +JFF31,3,281.0000 ,43.05950 ,-71.93870,GLOBE , ,Antrim NH US , +JFI31,3,31.20000 ,52.65950 ,-1.137900,GLOBE , ,Leicester UK , +JGN41,3,280.0000 ,36.09060 ,-94.92000,GLOBE , ,Tahlequah OK US , +JJ2F1,3,304.4000 ,38.94000 ,-83.42000,GLOBE , ,Peebles OH US , +JJQH1,3,224.7000 ,50.02560 ,14.43070 ,GLOBE , ,Praha 4 CZ , +JL1U1,3,119.0000 ,45.49330 ,15.56220 ,GLOBE , ,Karlovac HR , +JL1U2,3,119.0000 ,45.49330 ,15.56220 ,GLOBE , ,Karlovac HR , +JLJA1,3,225.0000 ,39.26730 ,-84.24380,GLOBE , ,Loveland OH US , +JLOG1,3,145.3000 ,45.59720 ,17.22160 ,GLOBE , ,Daruvar HR , +JN7D1,3,30.00000 ,-34.61670,-58.50000,GLOBE , ,Capital Federal AR , +JNR41,3,65.00000 ,55.21200 ,-131.4053,GLOBE , ,Ketchikan AK US , +JNVS1,3,260.5000 ,-40.53190,176.0160 ,GLOBE , ,Makuri NZ , +JOKM1,3,6.900000 ,21.37250 ,39.11010 ,GLOBE , ,Jeddah West SA , +JQES1,3,611.8000 ,38.99570 ,-3.361000,GLOBE , ,Manzanares CReal ES , +JQU81,3,738.0000 ,42.00470 ,-4.532500,GLOBE , ,PALENCIA ES , +JS7K1,3,399.5000 ,49.77680 ,17.75730 ,GLOBE , ,Vitkov Czech CZ , +JSEZ1,3,-28.00000,6.289400 ,2.382000 ,GLOBE , ,Porto Novo OUEME BJ , +JU2D1,3,97.00000 ,51.53300 ,7.683000 ,GLOBE , ,Unna DE , +JU2D3,3,97.00000 ,51.53300 ,7.683000 ,GLOBE , ,Unna DE , +JUXG1,3,244.0000 ,34.61210 ,-86.54950,GLOBE , ,Huntsville AL US , +JVW21,3,50.00000 ,-39.91720,175.0298 ,GLOBE , ,Wanganui NZ , +JWV81,3,767.0000 ,41.00500 ,-6.433300,GLOBE , ,Vitigudino, SALAMANCA SA ES , +JX442,3,121.5000 ,46.01410 ,15.54380 ,GLOBE , ,Zabok HR , +JXRW2,3,20.00000 ,32.05000 ,34.80000 ,GLOBE , ,Tel Aviv IL , +JY9J1,3,209.1000 ,50.45140 ,18.51630 ,GLOBE , ,Toszek PL , +JZFW1,3,2259.800 ,19.36190 ,-99.01500,GLOBE , ,Distrito Federal Mx MX , +JZTT1,3,560.0000 ,49.08280 ,15.42780 ,GLOBE , ,Dacice CZ , +JZTT2,3,433.2000 ,49.51730 ,15.26839 ,GLOBE , ,Dacice CZ , +JZZL1,3,52.00000 ,9.582760 ,98.59513 ,GLOBE , ,Ranong TH , +K2UJ6,3,96.70000 ,18.47671 ,-69.94237,GLOBE , ,Santo Domingo DO , +K3UQ1,3,8.000000 ,58.82580 ,22.77620 ,GLOBE , ,Hiiumaa EE , +K89S1,3,107.7000 ,33.75910 ,132.8000 ,GLOBE , ,Ehime JP , +K9FY1,3,240.0000 ,41.64400 ,-0.923600,GLOBE , ,ZARAGOZA ES , +K9GW1,3,2240.000 ,19.35470 ,-99.03190,GLOBE , ,Ecatepec MX , +KCFJ1,3,615.5000 ,38.90850 ,-3.656000,GLOBE , ,Bolanos De Calatrava, CR ES , +KCZE1,3,300.0000 ,31.90250 ,35.00750 ,GLOBE , ,Modein IL , +KIEU1,3,36.00000 ,-37.04070,175.5202 ,GLOBE , ,Thames BoP NZ , +KKR31,3,42.90000 ,54.52006 ,23.54010 ,GLOBE , ,Kaunas LT , +KKR33,3,42.90000 ,54.52006 ,23.54010 ,GLOBE , ,Kaunas LT , +KLG71,3,125.0000 ,36.58100 ,127.5705 ,GLOBE , ,Chungbuk KR , +KMLT1,3,178.0000 ,42.03190 ,-87.71610,GLOBE , ,Skokie IL US , +KOCH1,3,166.9000 ,50.06430 ,14.54320 ,GLOBE , ,Praha 4 CZ , +KOCH2,3,166.6000 ,50.03877 ,14.25996 ,GLOBE , ,Praha 4 CZ , +KQ9O1,3,720.0000 ,39.96020 ,-3.491000,GLOBE , ,Ocana, TO ES , +KQZ41,3,92.00000 ,45.28930 ,18.81330 ,GLOBE , ,Vinkovci HR , +KR2W1,3,143.0000 ,55.78720 ,-4.236100,GLOBE , ,Glasgow UK , +KS161,3,38.00000 ,51.55500 ,6.945000 ,GLOBE , ,Krefeld DE , +KVTD1,3,565.0000 ,49.71480 ,16.30030 ,GLOBE , ,Pomezi CZ , +KX9I1,3,34.20000 ,59.36030 ,26.98530 ,GLOBE , ,Kivioli EE , +KYC61,3,283.4000 ,42.51300 ,-7.527300,GLOBE , ,Monforte De Lemos, LUGO LU ES , +KYN23,3,100.0000 ,56.04130 ,13.67850 ,GLOBE , ,Sosdala SE , +KZLI1,3,33.70000 ,52.55030 ,16.97750 ,GLOBE , ,Bolechowo PL , +L15C2,3,172.0000 ,46.05320 ,16.18320 ,GLOBE , ,Konjscina HR , +L15C3,3,96.00000 ,46.05280 ,16.18300 ,GLOBE , ,Konjscina HR , +L22H1,3,264.4000 ,35.08490 ,-80.46190,GLOBE , ,Charlotte NC US , +L22H2,3,262.4000 ,35.08490 ,-80.46190,GLOBE , ,Charlotte NC US , +L4KN2,3,200.0000 ,58.42920 ,25.68520 ,GLOBE , ,Viljandimaa EE , +L5Q61,3,227.0000 ,38.23350 ,-1.405500,GLOBE , ,Cieza, MURCIA MU ES , +L6VL2,3,1467.700 ,5.279100 ,10.23660 ,GLOBE , ,Bafoussam CM , +L9B82,3,148.0000 ,45.75030 ,17.04820 ,GLOBE , ,Veliki Grdjevac HR , +L9CF2,3,26.00000 ,29.34730 ,-81.92320,GLOBE , ,Fort McCoy FL US , +L9EF1,3,403.0000 ,49.27300 ,16.16480 ,GLOBE , ,Svitavy CZ , +L9H91,3,88.80000 ,52.28951 ,20.93844 ,GLOBE , ,Warszawa PL , +LAIN1,3,-12.80000,43.50860 ,16.44750 ,GLOBE , ,Split HR , +LAJ91,3,22.00000 ,-34.52920,-58.51620,GLOBE , ,Avalos AR , +LJ8R1,3,354.0000 ,9.199000 ,2.383500 ,GLOBE , ,Parakou, Borgou BJ , +LKOW1,3,81.10000 ,61.26000 ,24.04000 ,GLOBE , ,Valkeakoski FI , +LKYT1,3,3.000000 ,26.24120 ,50.65600 ,GLOBE , ,Ibn Al Maghreb BH , +LLV51,3,178.2000 ,51.20330 ,17.38390 ,GLOBE , ,Twardogora PL , +LMXQ1,3,125.3000 ,56.84620 ,25.24900 ,GLOBE , ,Cesu Region LV , +LPJU1,3,849.4000 ,40.67120 ,-3.772300,GLOBE , ,Colmenar Viejo, MADRID ES , +LPNQ2,3,64.50000 ,18.12094 ,-67.08678,GLOBE , ,Mayaguez PR US , +LRBY1,3,2506.000 ,20.05500 ,-101.3129,GLOBE , ,Puruandiro, Michoacan MX , +LS6Y1,3,88.00000 ,47.32080 ,20.90830 ,GLOBE , ,Karcag HU , +LS6Y2,3,90.00000 ,47.31950 ,20.92250 ,GLOBE , ,Karcag HU , +LT3N1,3,285.3000 ,11.21250 ,3.037200 ,GLOBE , ,Kandi Alibo BJ , +LUYY1,3,24.00000 ,6.466700 ,2.600000 ,GLOBE , ,Porto Novo BJ , +LVCX1,3,94.80000 ,21.57970 ,-159.2328,GLOBE , ,Lihue HI US , +LX3L1,3,32.20000 ,8.639500 ,99.89750 ,GLOBE , ,Nakhon Si Thammarat TH , +LXTB1,3,360.0000 ,40.24640 ,-80.21170,GLOBE , ,Houston PA US , +LYGO1,3,93.00000 ,33.27070 ,-87.51630,GLOBE , ,Tuscaloosa AL US , +LZOQ1,3,-49.50000,37.60720 ,-0.977200,GLOBE , ,Cartagena MU ES , +LZVM1,3,780.0000 ,42.07420 ,-5.431700,GLOBE , ,Valderas, LEON LE ES , +LZVM2,3,750.0000 ,42.07420 ,-5.431700,GLOBE , ,Valderas, LEON LE ES , +LZVM6,3,750.0000 ,42.07420 ,-5.431700,GLOBE , ,Valderas, LEON LE ES , +M3CK1,3,692.0000 ,41.66330 ,-4.729200,GLOBE , ,VALLADOLID ES , +M6MA1,3,217.1000 ,49.84570 ,8.641200 ,GLOBE , ,Darmstadt DE , +M7AC1,3,450.0000 ,50.50000 ,13.61670 ,GLOBE , ,Most CZ , +M7QQ1,3,21.00000 ,44.38530 ,-68.20800,GLOBE , ,Bar Harbor ME US , +M9VQ1,3,685.0000 ,42.00180 ,22.17380 ,GLOBE , ,Probistip MK , +MA4W2,3,350.0000 ,49.90420 ,16.44320 ,GLOBE , ,Ceska Trebova CZ , +MAD61,3,127.0000 ,40.16640 ,-75.60130,GLOBE , ,Spring City PA US , +MBTV5,3,152.0000 ,43.01150 ,-74.36300,GLOBE , ,Johnstown NY US , +MC3T1,3,309.4000 ,36.19720 ,-92.26880,GLOBE , ,Mountain Home AR US , +MC3T5,3,289.4000 ,36.23850 ,-92.31680,GLOBE , ,Mountain Home AR US , +MC3T7,3,289.4000 ,36.23850 ,-92.31680,GLOBE , ,Mountain Home AR US , +MDE91,3,983.4000 ,39.46735 ,-79.55073,GLOBE , ,Point Marion PA US , +MFZB1,3,144.7000 ,54.90000 ,25.31670 ,GLOBE , ,Vilnius LT , +MG9K1,3,188.2000 ,50.17630 ,18.39740 ,GLOBE , ,Gliwice PL , +MHNR1,3,0.000000 ,18.49240 ,-66.79790,GLOBE , ,Hatillo PR US , +MJ9C1,3,938.0000 ,40.07600 ,-2.144000,GLOBE , ,Cuenca ES , +MKCJ1,3,1567.800 ,40.54720 ,-105.1020,GLOBE , ,Fort Collins CO US , +MKMH1,3,127.8000 ,28.10000 ,-15.44000,GLOBE , ,Las Palmas De Gran Canaria GC ES , +MLIY1,3,242.6000 ,41.74080 ,-88.13310,GLOBE , ,Naperville IL US , +MMS72,3,409.5000 ,33.47000 ,35.31000 ,GLOBE , ,Aley LB , +MN3R2,3,314.0000 ,40.74730 ,-81.04000,GLOBE , ,East Rochester OH US , +MR891,3,280.0000 ,-39.42560,174.1494 ,GLOBE , ,Kaponga NZ , +MRWG1,3,200.0000 ,58.99050 ,23.23920 ,GLOBE , ,Laanemaa EE , +MRWG2,3,7.000000 ,59.02400 ,23.47700 ,GLOBE , ,Laanemaa EE , +MS4W1,3,82.30000 ,18.42830 ,-67.22280,GLOBE , ,Mayaguez PR US , +MSX61,3,-5.800000,-41.33629,173.1948 ,GLOBE , ,Nelson NZ , +MTGC1,3,19.60000 ,55.90168 ,-4.254180,GLOBE , ,Glasgow UK , +MTKK1,3,256.0000 ,35.24570 ,-87.33800,GLOBE , ,Lawrenceburg TN US , +MTQ81,3,230.0000 ,48.56130 ,8.574200 ,GLOBE , ,Vaihingen DE , +MU7O1,3,112.4000 ,48.02780 ,22.50980 ,GLOBE , ,Fehergyarmat HU , +MU7O2,3,77.70000 ,47.98727 ,22.50689 ,GLOBE , ,Fehergyarmat HU , +MUEW3,3,638.4000 ,40.40900 ,-3.614000,GLOBE , ,Madrid ES , +MUJC1,3,157.0000 ,45.82500 ,15.97500 ,GLOBE , ,Zagreb HR , +MV4B1,3,4.000000 ,33.90090 ,35.47790 ,GLOBE , ,Beirut LB , +MV4B3,3,4.000000 ,33.90090 ,35.47790 ,GLOBE , ,Beirut LB , +MVYO1,3,55.00000 ,6.700000 ,2.483300 ,GLOBE , ,Adjohoun oueme BJ , +MYZP2,3,55.20000 ,41.05330 ,-73.53880,GLOBE , ,Stamford CT US , +MZ7L1,3,41.50000 ,7.911280 ,98.29510 ,GLOBE , ,Phuket TH , +N3N91,3,474.6000 ,18.18230 ,-66.97930,GLOBE , ,Maricao PR US , +N3N92,3,517.1000 ,18.18230 ,-66.97930,GLOBE , ,Maricao PR US , +N3ZM2,3,85.00000 ,49.57600 ,8.573000 ,GLOBE , ,Babenhausen DE , +N3ZM3,3,37.00000 ,49.57580 ,8.573300 ,GLOBE , ,Babenhausen DE , +N6232,3,176.0000 ,47.67800 ,19.05780 ,GLOBE , ,Szentendre HU , +N6234,3,110.0000 ,47.80670 ,18.78630 ,GLOBE , ,Szentendre HU , +N6M91,3,643.0000 ,-33.46720,-70.52830,GLOBE , ,Penalolen, Santiago CL , +N89V1,3,197.0000 ,40.78070 ,-89.96510,GLOBE , ,Elmwood IL US , +N8OJ1,3,209.1000 ,43.20359 ,-77.95368,GLOBE , ,Brockport NY US , +N9XP1,3,5.100000 ,54.87030 ,-6.281600,GLOBE , ,Ballymena N.Ire UK , +NK691,3,2880.000 ,19.33400 ,-99.08730,GLOBE , ,Distrito Federal Mx MX , +NQBJ1,3,338.0000 ,50.08330 ,14.41670 ,GLOBE , ,Praha 1 CZ , +NTBK1,3,642.3000 ,40.55200 ,-3.641000,GLOBE , ,Alcobendas, MADRID ES , +NU7A1,3,67.00000 ,36.05830 ,-90.50000,GLOBE , ,Paragould AR US , +NUZL1,3,844.2000 ,40.63920 ,-4.001900,GLOBE , ,Collado Villalba, Madrid M ES , +NV9K1,3,25.00000 ,52.68300 ,13.18300 ,GLOBE , ,Velten DE , +NVX21,3,2281.600 ,19.42280 ,-99.13250,GLOBE , ,C. P. 54600 Mx MX , +NYZD1,3,280.0000 ,50.61670 ,11.10000 ,GLOBE , ,Erfurt DE , +O2AJ1,3,80.00000 ,64.76220 ,26.41500 ,GLOBE , ,Utajarvi FI , +O2AJ2,3,80.00000 ,64.76220 ,26.41500 ,GLOBE , ,Utajarvi FI , +O2MJ1,3,609.0000 ,40.23810 ,-3.693700,GLOBE , ,Pinto M ES , +O2WE1,3,648.0000 ,40.33630 ,-3.756300,GLOBE , ,Leganes, MADRID M ES , +O3X51,3,77.60000 ,53.20580 ,22.77890 ,GLOBE , ,Tykocin PL , +O5OC1,3,421.6000 ,45.48780 ,-98.47250,GLOBE , ,Aberdeen SD US , +O6FQ1,3,700.0000 ,38.68400 ,-4.091000,GLOBE , ,Puertollano, CR ES , +O7W21,3,2014.000 ,18.18000 ,42.41000 ,GLOBE , ,Khamis Mushayt South SA , +O8FJ1,3,74.00000 ,-41.29050,173.2764 ,GLOBE , ,Nelson Nelso NZ , +O8UL1,3,698.9000 ,40.55298 ,-3.677160,GLOBE , ,Alcobendas M ES , +O93H1,3,92.00000 ,47.16170 ,21.70450 ,GLOBE , ,Biharkeresztes HU , +O93H3,3,92.00000 ,47.16170 ,21.70450 ,GLOBE , ,Biharkeresztes HU , +O93H5,3,50.50000 ,47.18220 ,21.68010 ,GLOBE , ,Biharkeresztes HU , +O9C63,3,916.0000 ,42.05300 ,-6.621500,GLOBE , ,Puebla De Sanabria ZAMOR ES , +O9EM1,3,83.50000 ,52.15400 ,21.01400 ,GLOBE , ,Warszawa PL , +OFPV1,3,340.0000 ,49.33330 ,11.01670 ,GLOBE , ,Schwabach DE , +OFPV2,3,389.0000 ,49.19540 ,11.00600 ,GLOBE , ,Schwabach DE , +OFPV3,3,393.0000 ,49.19590 ,11.00650 ,GLOBE , ,Schwabach DE , +OGG21,3,445.3000 ,9.420500 ,1.383800 ,GLOBE , ,Djougou Donga BJ , +OGSV2,3,227.3000 ,39.64598 ,-80.86128,GLOBE , ,New Martinsville WV US , +OIN41,3,62.30000 ,42.14780 ,-70.86270,GLOBE , ,Hanover MA US , +OLLH1,3,1463.400 ,42.25330 ,-95.06610,GLOBE , ,Shenandoah IA US , +OP5E3,3,52.40000 ,58.31450 ,25.28530 ,GLOBE , ,Viljandimaa EE , +OPQV1,3,12.00000 ,41.68840 ,-70.50190,GLOBE , ,Sandwich MA US , +ORIY1,3,102.5000 ,-45.98630,169.7591 ,GLOBE , ,Lawrence NZ , +OS9Y1,3,8.000000 ,30.68580 ,-88.07850,GLOBE , ,Mobile AL US , +OSF21,3,100.0000 ,45.16670 ,18.03330 ,GLOBE , ,Slavonski Brod HR , +OSF22,3,99.00000 ,45.16180 ,18.01530 ,GLOBE , ,Slavonski Brod HR , +OVKE1,3,13.00000 ,44.13440 ,15.22190 ,GLOBE , ,Zadar HR , +OWEK2,3,267.3000 ,50.60800 ,12.16750 ,GLOBE , ,Elsterberg DE , +OX761,3,84.00000 ,46.42670 ,20.25800 ,GLOBE , ,Szeged HU , +OZ3W1,3,808.0000 ,39.58000 ,-3.865000,GLOBE , ,Los Yebenes TO ES , +OZ3W3,3,808.0000 ,39.58000 ,-3.865000,GLOBE , ,Los Yebenes TO ES , +P3SU1,3,7.400000 ,51.95000 ,7.970000 ,GLOBE , ,Warendorf DE , +P3SY2,3,614.0000 ,32.31000 ,35.51000 ,GLOBE , ,Irbid JO , +P4SX1,3,39.40000 ,40.63740 ,-73.62900,GLOBE , ,Oceanside NY US , +P7931,3,244.2000 ,41.38200 ,-83.63750,GLOBE , ,Bowling Green OH US , +P7SN1,3,31.00000 ,41.80970 ,-72.83110,GLOBE , ,Avon CT US , +P7SZ2,3,565.0000 ,46.74610 ,7.612500 ,GLOBE , ,Thun BE CH , +P8YZ1,3,390.0000 ,50.43330 ,15.81670 ,GLOBE , ,Dvur Kralove CZ , +P9381,3,92.00000 ,47.17000 ,20.18630 ,GLOBE , ,Szolnok HU , +P9ZV1,3,962.0000 ,46.89300 ,-114.0568,GLOBE , ,Missoula MT US , +P9ZV2,3,946.0000 ,46.89520 ,-114.0558,GLOBE , ,Missoula MT US , +PCWW1,3,365.0000 ,45.37400 ,14.34620 ,GLOBE , ,Kastav HR , +PD461,3,3.000000 ,24.47100 ,-112.0600,GLOBE , ,Baja California Sur MX , +PGBH1,3,681.0000 ,40.29330 ,-3.834300,GLOBE , ,Fuenlabrada, Madrid M ES , +PJTH1,3,702.7000 ,39.33200 ,-2.422900,GLOBE , ,Belmonte CU ES , +PK2K1,3,368.8000 ,40.00000 ,-83.00000,GLOBE , ,Marion OH US , +PN4V2,3,260.0000 ,40.90730 ,-81.61320,GLOBE , ,Canal Fulton OH US , +PPOW1,3,25.00000 ,8.500000 ,-80.60000,GLOBE , ,VERAGUAS PANAM PA , +PQPB1,3,261.4000 ,41.49290 ,-88.04590,GLOBE , ,Lisle IL US , +PVGC1,3,251.0000 ,33.75950 ,-84.26860,GLOBE , ,Avondale Estates GA US , +PW9O1,3,1253.800 ,31.85900 ,-106.4380,GLOBE , ,El Paso TX US , +PX981,3,265.0000 ,40.03100 ,-83.06580,GLOBE , ,Columbus OH US , +PY7U2,3,121.0000 ,47.87700 ,21.99980 ,GLOBE , ,Debrecen HU , +PZYD1,3,276.0000 ,44.87560 ,-91.91920,GLOBE , ,Menomonie WI US , +Q29Q1,3,251.2000 ,34.92150 ,-87.66960,GLOBE , ,Florence AL US , +Q29Q5,3,772.5000 ,34.55550 ,-87.40260,GLOBE , ,Florence AL US , +Q3AW1,3,628.2000 ,41.34800 ,21.56100 ,GLOBE , ,Prilep MK , +Q4BH1,3,545.0000 ,61.07990 ,9.129400 ,GLOBE , ,Rogne NO , +Q4BH2,3,882.0000 ,61.05190 ,9.186300 ,GLOBE , ,Rogne NO , +Q4BH4,3,481.8000 ,61.07310 ,9.037800 ,GLOBE , ,Rogne NO , +Q5QF1,3,220.0000 ,49.21570 ,17.52550 ,GLOBE , ,Otrokovice CZ , +Q6K72,3,395.0000 ,49.82240 ,15.48360 ,GLOBE , ,Golcuv Jenikov CZ , +Q6TP1,3,30.00000 ,-38.65900,178.0102 ,GLOBE , ,Gisborne Eastl NZ , +Q7NR1,3,41.90000 ,18.05250 ,-65.88000,GLOBE , ,Yabucoa PR US , +Q7UM1,3,100.0000 ,56.00000 ,22.00000 ,GLOBE , ,LT-54200 Siauliu R. Sav. LT , +Q7UM2,3,75.70000 ,56.00000 ,22.00000 ,GLOBE , ,LT-54200 Siauliu R. Sav. LT , +Q9A91,3,180.0000 ,50.30530 ,15.16610 ,GLOBE , ,Rozdalovice Czech CZ , +Q9DI1,3,776.3000 ,33.07576 ,35.05479 ,GLOBE , ,Aley LB , +QAFH1,3,155.0000 ,60.99020 ,25.52070 ,GLOBE , ,Hollola FI , +QCQD2,3,1166.000 ,40.73500 ,-4.041700,GLOBE , ,Cercedilla, M ES , +QD5M1,3,353.4000 ,40.54380 ,-80.56010,GLOBE , ,New Cumberland WV US , +QEKY1,3,128.0000 ,45.81390 ,15.90140 ,GLOBE , ,Zagreb - Susedgrad HR , +QEUE1,3,169.0000 ,50.55000 ,21.23000 ,GLOBE , ,Ostrowiec Swietokrzyski PL , +QGT71,3,36.00000 ,39.86830 ,-75.51320,GLOBE , ,Glen Mills PA US , +QKEM1,3,30.30000 ,55.10410 ,-4.161700,GLOBE , ,Castle Douglas UK , +QKTM1,3,216.0000 ,35.16350 ,-87.71850,GLOBE , ,Collinwood TN US , +QOMD2,3,150.0000 ,58.98820 ,26.22500 ,GLOBE , ,Laane-Virumaa EE , +QOMD3,3,150.0000 ,58.97420 ,26.25150 ,GLOBE , ,Laane-Virumaa EE , +QPMV1,3,25.00000 ,40.81503 ,-73.91100,GLOBE , ,Bronx NY US , +QQXW1,3,72.00000 ,61.16330 ,-149.7761,GLOBE , ,Anchorage AK US , +QQXW6,3,72.00000 ,61.16330 ,-149.7761,GLOBE , ,Anchorage AK US , +QR8L1,3,166.0000 ,66.93910 ,-146.6011,GLOBE , ,Venetie AK US , +QS6T1,3,140.0000 ,57.85670 ,27.10980 ,GLOBE , ,Vorumaa EE , +QU892,3,105.0000 ,45.71180 ,16.07470 ,GLOBE , ,Velika Gorica HR , +QUBP1,3,111.0000 ,51.28330 ,13.53330 ,GLOBE , ,Grossenhain DE , +QWBC1,3,868.0000 ,50.43870 ,15.35230 ,GLOBE , ,Jicin CZ , +QY9T1,3,111.7000 ,45.22740 ,15.32870 ,GLOBE , ,Barilovic HR , +R6MY1,3,60.00000 ,59.43370 ,24.75070 ,GLOBE , ,Tallinn EE , +R6MY2,3,10.00000 ,59.51100 ,24.80700 ,GLOBE , ,Tallinn EE , +R6MY5,3,-9.300000,59.42320 ,24.70090 ,GLOBE , ,Tallinn EE , +R7891,3,68.00000 ,7.143800 ,80.74580 ,GLOBE , ,Meerigama LK , +R8JX1,3,165.0000 ,16.36170 ,104.4058 ,GLOBE , ,Thailand TH , +R9CI1,3,233.2000 ,50.20660 ,15.83470 ,GLOBE , ,Hradec Kralove CZ , +RA9E1,3,2274.100 ,19.25650 ,-99.10520,GLOBE , ,Distrito Federal Mx MX , +RB9S1,3,299.6000 ,49.87240 ,16.30410 ,GLOBE , ,Litomysl Czech CZ , +RBH21,3,16.00000 ,34.50060 ,133.5764 ,GLOBE , ,Hiroshima JP , +RK391,3,-8.200000,59.38860 ,28.16810 ,GLOBE , ,Narva EE , +RN5K1,3,131.3000 ,50.02570 ,22.00240 ,GLOBE , ,Rzeszow PL , +RP8G1,3,260.9000 ,34.50080 ,-82.60190,GLOBE , ,Anderson SC US , +RRSZ1,3,154.0000 ,45.97800 ,16.01610 ,GLOBE , ,Gornja Stubica HR , +RRSZ3,3,153.0000 ,45.97330 ,16.00960 ,GLOBE , ,Gornja Stubica HR , +RRSZ5,3,153.0000 ,45.97330 ,16.00960 ,GLOBE , ,Gornja Stubica HR , +RSNF1,3,0.000000 ,53.87280 ,8.742800 ,GLOBE , ,Cuxhaven DE , +RYEA1,3,65.50000 ,45.48840 ,15.25300 ,GLOBE , ,Karlovac HR , +RZFK1,3,271.0000 ,48.77400 ,9.154300 ,GLOBE , ,Stuttgart DE , +S2DD1,3,139.0000 ,-32.50920,115.9722 ,GLOBE , ,North Dandalup WA AU , +S48Z1,3,182.0000 ,46.09380 ,18.29580 ,GLOBE , ,Pecs HU , +S48Z2,3,112.1000 ,46.07714 ,18.22941 ,GLOBE , ,Pecs HU , +S48Z5,3,143.1000 ,46.07581 ,18.22809 ,GLOBE , ,Pecs HU , +S5EL1,3,32.50000 ,40.66820 ,-73.75780,GLOBE , ,Springfield Gardens NY US , +S8OL1,3,8.900000 ,-32.43000,-60.44000,GLOBE , ,San Lorenzo AR , +SBD61,3,13.70000 ,59.38870 ,27.79250 ,GLOBE , ,Sillamae EE , +SBD63,3,-2.600000,59.38870 ,27.79250 ,GLOBE , ,Sillamae EE , +SBX91,3,-2.500000,52.46080 ,13.55040 ,GLOBE , ,Berlin DE , +SDI51,3,40.60000 ,41.00000 ,29.00000 ,GLOBE , ,Koleji TR , +SE733,3,1133.000 ,39.92400 ,32.86120 ,GLOBE , ,Ankara TR , +SFDH1,3,-1.000000,-34.00000,-58.00000,GLOBE , ,Villa Adelina BsAs AR , +SFQX1,3,272.0000 ,50.06300 ,14.43400 ,GLOBE , ,Praha 4 CZ , +SGK41,3,657.2000 ,40.47400 ,-3.710800,GLOBE , ,Madrid ES , +SIS91,3,416.9000 ,40.07514 ,-80.01274,GLOBE , ,Bentleyville PA US , +SIXP1,3,120.0000 ,52.30000 ,9.480000 ,GLOBE , ,Barsinghausen DE , +SJKH1,3,585.0000 ,40.47420 ,-3.371400,GLOBE , ,Alcala De Henares, Madrid ES , +SKHH1,3,64.00000 ,55.25000 ,24.75000 ,GLOBE , ,Ukmerge LT , +SL611,3,216.0000 ,36.46640 ,-79.90720,GLOBE , ,Stoneville NC US , +SL9B1,3,2404.100 ,19.36050 ,-99.16310,GLOBE , ,C. P. 54475 Mx MX , +SLLG1,3,5.000000 ,18.46070 ,-66.26800,GLOBE , ,Dorado PR US , +SMKJ1,3,-12.80000,59.21090 ,28.13150 ,GLOBE , ,Narva EE , +SNC71,3,282.0000 ,43.22500 ,-74.17720,GLOBE , ,Northville NY US , +SNQF1,3,-3.500000,8.350000 ,-80.23000,GLOBE , ,PENONOME PA , +SO1C1,3,290.0000 ,50.62920 ,6.026200 ,GLOBE , ,Eupen BE , +SO1C2,3,202.0000 ,50.58500 ,5.855500 ,GLOBE , ,Eupen BE , +SP9V1,3,93.00000 ,62.26580 ,26.20780 ,GLOBE , ,Lievestuore FI , +SQMQ1,3,324.0000 ,-37.52000,-67.47000,GLOBE , ,Catriel AR , +SRPI2,3,244.7000 ,39.74850 ,-77.57030,GLOBE , ,Waynesboro PA US , +SRPI3,3,247.5000 ,39.44530 ,-77.34220,GLOBE , ,Waynesboro PA US , +SRPI4,3,228.5000 ,39.44950 ,-77.34360,GLOBE , ,Waynesboro PA US , +SRPI7,3,248.7000 ,39.74870 ,-77.57030,GLOBE , ,Waynesboro PA US , +SSYY1,3,216.0000 ,18.21480 ,-66.34140,GLOBE , ,Florida PR US , +ST991,3,280.1000 ,28.68680 ,77.31310 ,GLOBE , ,Delhi Delhi IN , +STB57,3,-2.200000,54.46000 ,32.02000 ,GLOBE , ,Smolensk RU , +STQ61,3,38.60000 ,7.552400 ,99.55840 ,GLOBE , ,Trang TH , +STQ67,3,38.60000 ,7.552400 ,99.55840 ,GLOBE , ,Trang TH , +SVUB1,3,399.0000 ,41.71810 ,-94.93220,GLOBE , ,Audubon IA US , +SYCE1,3,0.000000 ,6.416700 ,2.666700 ,GLOBE , ,Porto Novo OUEME BJ , +SZJU2,3,-25.40000,53.25792 ,8.111380 ,GLOBE , ,Wiefelstede DE , +T3TW1,3,200.0000 ,32.82180 ,34.96830 ,GLOBE , ,Haifa IL , +T4X21,3,76.00000 ,58.52050 ,25.62660 ,GLOBE , ,EE2914 Viljandimaa EE , +T5ZT1,3,1312.200 ,31.32890 ,-110.0849,GLOBE , ,Sierra Vista AZ US , +T6U61,3,74.60000 ,40.70590 ,-73.90270,GLOBE , ,Ridgewood NY US , +T7OE1,3,505.8000 ,42.22330 ,-2.021600,GLOBE , ,Arnedo LO ES , +T7V91,3,81.00000 ,42.09550 ,-71.40790,GLOBE , ,Franklin MA US , +TB8L1,3,240.0000 ,49.93680 ,14.37920 ,GLOBE , ,Vrane Nad Vltavou CZECH CZ , +TCWJ1,3,363.0000 ,49.09050 ,17.88000 ,GLOBE , ,Slavicin CZ , +TDDN1,3,577.7000 ,40.63860 ,-3.356700,GLOBE , ,Azuqueca De Henares GU ES , +TF2C1,3,908.9000 ,40.06010 ,-2.129700,GLOBE , ,Cuenca ES , +TG7R1,3,210.0000 ,41.31670 ,22.56670 ,GLOBE , ,Valandovo MK , +TH2P1,3,174.4000 ,36.21338 ,-92.32280,GLOBE , ,Mountain Home AR US , +TK7R1,3,173.0000 ,50.18510 ,15.04260 ,GLOBE , ,Nymburk Czech CZ , +TOYO1,3,50.00000 ,14.51400 ,100.9419 ,GLOBE , ,Saraburi TH , +TPH51,3,94.00000 ,47.49390 ,19.06410 ,GLOBE , ,Budapest HU , +TQGS4,3,200.0000 ,59.33950 ,26.35880 ,GLOBE , ,Rakvere EE , +TQGS5,3,200.0000 ,59.33950 ,26.35880 ,GLOBE , ,Rakvere EE , +TR9D1,3,1302.000 ,6.100800 ,10.27090 ,GLOBE , ,Bamenda NW CM , +TUG81,3,672.0000 ,39.26200 ,-2.590100,GLOBE , ,Villarrobledo, ALBACETE ES , +TVWR1,3,52.60000 ,7.925580 ,98.27944 ,GLOBE , ,Phuket TH , +TY211,3,353.0000 ,40.72970 ,-81.10560,GLOBE , ,Minerva OH US , +TY6I1,3,285.0000 ,50.09070 ,10.80230 ,GLOBE , ,Ebern DE , +TY7Z1,3,105.0000 ,55.87020 ,26.53780 ,GLOBE , ,Daugavpils LV , +TZC51,3,93.00000 ,7.583300 ,2.666700 ,GLOBE , ,Ketou OUEME BJ , +U2LV1,3,67.00000 ,30.44580 ,-84.29930,GLOBE , ,Tallahassee FL US , +U39D1,3,249.0000 ,39.85290 ,-86.25590,GLOBE , ,Indianapolis IN US , +U3LA1,3,518.0000 ,49.54200 ,15.35370 ,GLOBE , ,Humpolec CZ , +U3TX3,3,545.0000 ,36.13770 ,-115.1233,GLOBE , ,Las Vegas NV US , +U5QE2,3,0.000000 ,44.88200 ,-69.44600,GLOBE , ,Hartland ME US , +U6391,3,77.00000 ,35.03120 ,-78.92300,GLOBE , ,Fayetteville NC US , +U87Y1,3,263.0000 ,45.09130 ,14.12170 ,GLOBE , ,52 220 Labin HR , +U87Y2,3,263.0000 ,45.09130 ,14.12170 ,GLOBE , ,52 220 Labin HR , +U87Y3,3,220.2000 ,45.08920 ,14.12730 ,GLOBE , ,52 220 Labin HR , +U8R31,3,30.00000 ,32.81670 ,-16.98330,GLOBE , ,Ponta Delgada PT , +UAAI1,3,593.0000 ,40.53460 ,-3.619700,GLOBE , ,Alcobendas M ES , +UB481,3,324.7000 ,50.03000 ,14.37000 ,GLOBE , ,Praha 5 CZ , +UC5F2,3,279.0000 ,49.00000 ,18.00000 ,GLOBE , ,Havirov - Sumbark CZ , +UCED1,3,269.0000 ,33.83710 ,-84.22320,GLOBE , ,Tucker GA US , +UFDX1,3,316.0000 ,40.53430 ,-80.18020,GLOBE , ,Sewickley PA US , +UFNN1,3,837.2000 ,40.57860 ,-4.124300,GLOBE , ,El Escorial, Madrid M ES , +UHPF1,3,-10.00000,52.19640 ,-2.240200,GLOBE , ,Worcester UK , +UIOG1,3,127.5000 ,50.57430 ,21.68730 ,GLOBE , ,Tarnobrzeg PL , +UJ8H1,3,31.00000 ,35.03220 ,126.7577 ,GLOBE , ,Naju City Chollanam-do KR , +UKAK1,3,614.4000 ,40.19480 ,-3.510200,GLOBE , ,Mostoles M ES , +UNOW1,3,99.10000 ,34.76670 ,32.43330 ,GLOBE , ,Pafos CY , +UNOW2,3,120.0000 ,34.76670 ,32.43330 ,GLOBE , ,Pafos CY , +UOF61,3,4.000000 ,30.43730 ,-90.44350,GLOBE , ,Ponchatoula LA US , +UOTX1,3,335.9000 ,38.79000 ,-83.55000,GLOBE , ,West Union OH US , +UPYI1,3,647.0000 ,40.28950 ,-3.812500,GLOBE , ,Fuenlabrada, Madrid M ES , +UQG46,3,0.000000 ,31.55000 ,-81.19000,GLOBE , ,Richmond Hill GA US , +UU9B1,3,115.0000 ,31.14000 ,34.46000 ,GLOBE , ,Beer Sheva IL , +UVX91,3,86.00000 ,42.26670 ,2.950000 ,GLOBE , ,Figueres, GIRONA GI ES , +UVX92,3,86.00000 ,42.26670 ,2.950000 ,GLOBE , ,Figueres, GIRONA GI ES , +UWVB1,3,666.0000 ,24.24340 ,39.31410 ,GLOBE , ,Madenh SA , +UWVB2,3,652.9000 ,24.24961 ,39.32861 ,GLOBE , ,Madenh SA , +V2PT1,3,17.00000 ,39.90080 ,-74.82390,GLOBE , ,Medford NJ US , +V2PT3,3,54.10000 ,40.01520 ,-75.04800,GLOBE , ,Medford NJ US , +V2QG1,3,6.000000 ,28.06250 ,-97.04120,GLOBE , ,Fulton TX US , +V2Y71,3,230.0000 ,49.22570 ,17.67250 ,GLOBE , ,Zlin CZ , +V4SH1,3,63.00000 ,-25.28440,-57.62240,GLOBE , ,Asuncion PY , +V69F1,3,100.0000 ,52.06670 ,19.18330 ,GLOBE , ,Leczyca PL , +V8EC7,3,118.0000 ,-25.28920,-57.61620,GLOBE , ,Asuncion PY , +V9IM1,3,1600.400 ,40.58690 ,-105.1469,GLOBE , ,Fort Collins CO US , +V9IM3,3,1600.400 ,40.58690 ,-105.1469,GLOBE , ,Fort Collins CO US , +V9TT1,3,272.5000 ,43.22960 ,-71.17560,GLOBE , ,Northwood NH US , +VA5M1,3,233.0000 ,14.97020 ,102.1034 ,GLOBE , ,Nakorn Ratchasima TH , +VA6K1,3,152.0000 ,10.42000 ,-61.30000,GLOBE , ,Port of Spain TT , +VE721,3,86.00000 ,52.40590 ,16.87310 ,GLOBE , ,Poznan PL , +VEZX1,3,222.7000 ,14.58960 ,102.0635 ,GLOBE , ,Nakornrajasima TH , +VKS31,3,265.0000 ,50.26670 ,19.00870 ,GLOBE , ,Katowice PL , +VKWB1,3,0.000000 ,30.63730 ,-88.16550,GLOBE , ,Mobile AL US , +VM7T1,3,30.00000 ,-41.20170,174.9619 ,GLOBE , ,Wellington NZ , +VOCV1,3,56.00000 ,40.18390 ,-75.54050,GLOBE , ,Royersford PA US , +VODD1,3,-44.40000,50.87850 ,7.096000 ,GLOBE , ,Koeln DE , +VPKR1,3,83.00000 ,48.50700 ,-122.6208,GLOBE , ,Anacortes WA US , +VPKR2,3,83.00000 ,48.50700 ,-122.6208,GLOBE , ,Anacortes WA US , +VRJE1,3,24.00000 ,-32.95670,-60.62380,GLOBE , ,Rosario S.F. AR , +VSEP1,3,83.70000 ,53.54370 ,-2.147000,GLOBE , ,Oldham UK , +VVGM1,3,195.0000 ,46.70600 ,-92.09520,GLOBE , ,Superior WI US , +VVSE1,3,122.0000 ,52.31210 ,21.15960 ,GLOBE , ,Zielonka PL , +VVX41,3,660.0000 ,40.52660 ,-3.915300,GLOBE , ,Las Rozas, Madrid M ES , +VX9T1,3,-21.00000,35.96500 ,139.6353 ,GLOBE , ,Saitama JP , +VXKE2,3,138.4000 ,48.65794 ,-123.6402,GLOBE , ,Shawnigan Lake BC CA , +W4BG7,3,362.0000 ,49.32900 ,17.98850 ,GLOBE , ,Vsetin CZ , +W4MF2,3,100.0000 ,62.28880 ,25.73500 ,GLOBE , ,Palokka FI , +W5OG1,3,51.00000 ,53.12860 ,17.97720 ,GLOBE , ,Bydgoszcz PL , +W6KP1,3,1543.400 ,31.47780 ,-110.2814,GLOBE , ,Sierra Vista AZ US , +W7IO1,3,1103.000 ,40.45570 ,-5.321500,GLOBE , ,Piedrahita AVILA ES , +W7QC2,3,577.0000 ,50.59570 ,13.61020 ,GLOBE , ,Litvinov CZ , +W7YP1,3,409.0000 ,42.52180 ,-78.83510,GLOBE , ,Woodside NY US , +W86A1,3,20.00000 ,32.06030 ,34.79890 ,GLOBE , ,Tel-Aviv IL , +W8GX3,3,292.9000 ,34.79020 ,-86.79700,GLOBE , ,Harvest AL US , +W8NM1,3,169.2000 ,35.17210 ,-79.39750,GLOBE , ,Southern Pines NC US , +W9RQ1,3,350.0000 ,45.38070 ,14.38480 ,GLOBE , ,Viskovo HR , +W9UG2,3,674.0000 ,40.44250 ,-3.624300,GLOBE , ,MADRID M ES , +WA291,3,99.50000 ,34.93420 ,133.9639 ,GLOBE , ,Okayama JP , +WAN61,3,762.6000 ,33.27419 ,-96.44254,GLOBE , ,Gunter TX US , +WCUU1,3,406.0000 ,52.46910 ,-1.827000,GLOBE , ,Birmingham UK , +WH5A3,3,170.2000 ,42.38920 ,18.05180 ,GLOBE , ,Dubrovnik HR , +WHFR1,3,1.000000 ,52.55000 ,4.666700 ,GLOBE , ,1901 TX Castricum NL , +WHYN1,3,216.1000 ,33.57320 ,-86.28600,GLOBE , ,Pell City AL US , +WHYN3,3,225.1000 ,33.58250 ,-86.29580,GLOBE , ,Pell City AL US , +WIQG1,3,36.20000 ,44.74640 ,-124.7248,GLOBE , ,Lincoln City OR US , +WOHH1,3,3243.000 ,46.64770 ,-103.6340,GLOBE , ,Rhame ND US , +WPBU2,3,104.5000 ,40.68180 ,-75.24980,GLOBE , ,Easton PA US , +WQON3,3,108.0000 ,-40.53220,176.0151 ,GLOBE , ,Masterton NZ , +WRIM1,3,29.00000 ,59.38330 ,10.28330 ,GLOBE , ,Revetal NO , +WWQN1,3,57.40000 ,-33.01920,-61.04300,GLOBE , ,PUJATO S. Fe AR , +WYKK1,3,160.8000 ,48.08300 ,7.683000 ,GLOBE , ,Boetzingen DE , +WZKF1,3,9.000000 ,17.97040 ,-67.18670,GLOBE , ,Cabo Rojo PR US , +X23X1,3,153.6000 ,50.05190 ,14.25300 ,GLOBE , ,Praha 1 CZ , +X33F1,3,-39.80000,53.19390 ,6.532300 ,GLOBE , ,Delfzijl NL , +X3881,3,145.0000 ,38.22540 ,-85.69940,GLOBE , ,Louisville KY US , +X3MT1,3,245.5000 ,55.75340 ,-4.221400,GLOBE , ,East Kilbride SLanr UK , +X49B1,3,275.0000 ,29.50240 ,-98.66590,GLOBE , ,San Antonio TX US , +X5A22,3,300.0000 ,44.70710 ,-93.43900,GLOBE , ,Prior Lake MN US , +X86J1,3,42.70000 ,55.35220 ,24.53220 ,GLOBE , ,Anyksciai LT , +X8DZ2,3,70.00000 ,35.16670 ,126.8833 ,GLOBE , ,Kwang-ju KR , +X8Q81,3,114.7000 ,-19.32160,45.27330 ,GLOBE , ,Miandrivazo MG , +X9C31,3,147.4000 ,18.19000 ,-65.96500,GLOBE , ,San Lorenzo PR US , +X9EY2,3,135.0000 ,45.60380 ,15.59580 ,GLOBE , ,Draganici HR , +X9X33,3,720.8000 ,18.23450 ,-66.46550,GLOBE , ,San Juan PR US , +XAHQ1,3,131.0000 ,46.16470 ,16.29020 ,GLOBE , ,Rasinja HR , +XGJP1,3,471.0000 ,49.16100 ,11.72800 ,GLOBE , ,Parsberg DE , +XH8S1,3,8.100000 ,51.04850 ,7.061600 ,GLOBE , ,Leverkusen NRW DE , +XL8E1,3,-44.20000,52.20800 ,4.406500 ,GLOBE , ,Amsterdam NL , +XM4M1,3,1398.700 ,43.60730 ,-115.2650,GLOBE , ,Pine-Featherville Rd, Featherville ID U , +XMNM1,3,20.00000 ,32.08330 ,34.66670 ,GLOBE , ,Tel-aviv IL , +XNU91,3,48.00000 ,34.94020 ,33.59180 ,GLOBE , ,Aradippou CY , +XSG21,3,8.000000 ,28.13900 ,-82.50710,GLOBE , ,Lutz FL US , +XV541,3,21.80000 ,-34.64270,-58.54050,GLOBE , ,Buenos Aires AR , +XVH91,3,612.6000 ,47.25000 ,9.535000 ,GLOBE , ,Oberegg AI CH , +XXOT1,3,69.20000 ,51.74673 ,8.709070 ,GLOBE , ,Paderborn DE , +Y2AI1,3,133.0000 ,53.12620 ,22.89320 ,GLOBE , ,Konowaly PL , +Y4A51,3,72.00000 ,6.588800 ,1.668500 ,GLOBE , ,Lokossa, Mono BJ , +Y4Q91,3,4.000000 ,6.546200 ,79.62970 ,GLOBE , ,Colombo LK , +Y5NT1,3,20.00000 ,60.26920 ,25.00320 ,GLOBE , ,Helsinki FI , +Y92J1,3,61.40000 ,52.42000 ,10.78930 ,GLOBE , ,Wolfsburg DE , +Y92J2,3,58.60000 ,52.49720 ,10.60770 ,GLOBE , ,Wolfsburg DE , +Y92J4,3,59.40000 ,52.42030 ,10.78500 ,GLOBE , ,Wolfsburg DE , +Y92J5,3,59.40000 ,52.42030 ,10.78500 ,GLOBE , ,Wolfsburg DE , +YBU71,3,253.0000 ,36.19720 ,-92.26880,GLOBE , ,Norfork AR US , +YBU72,3,282.4000 ,36.19720 ,-92.26880,GLOBE , ,Norfork AR US , +YBU78,3,284.4000 ,36.19699 ,-92.26909,GLOBE , ,Norfork AR US , +YCTS1,3,112.6000 ,38.49920 ,140.3933 ,GLOBE , ,Yamagata JP , +YFDV1,3,1400.000 ,9.841700 ,-84.87500,GLOBE , ,Cartago CR , +YG3E1,3,85.00000 ,47.97920 ,-122.2008,GLOBE , ,Everett WA US , +YG7E1,3,467.0000 ,32.87940 ,-111.7567,GLOBE , ,Casa Grande AZ US , +YI2A1,3,173.0000 ,35.17440 ,33.34720 ,GLOBE , ,Nicosia CY , +YIZA2,3,817.0000 ,42.00000 ,22.00000 ,GLOBE , ,Kavadartci MK , +YNGU1,3,205.0000 ,51.00270 ,12.43180 ,GLOBE , ,Altenburg DE , +YNRV1,3,431.4000 ,61.13120 ,8.594000 ,GLOBE , ,Valdres NO , +YQPE2,3,202.0000 ,41.75000 ,-124.2000,GLOBE , ,Crescent City CA US , +YQPE3,3,202.0000 ,41.75600 ,-124.2027,GLOBE , ,Crescent City CA US , +YS4D1,3,25.00000 ,29.52800 ,-82.51910,GLOBE , ,Archer FL US , +YS8I3,3,82.40000 ,55.50211 ,25.58551 ,GLOBE , ,Utena LT , +YSGX2,3,9.000000 ,18.04400 ,-66.58930,GLOBE , ,Ponce PR US , +YSU42,3,35.70000 ,30.69620 ,-88.05320,GLOBE , ,Mobile AL US , +YTGN1,3,1201.000 ,9.889700 ,-83.73330,GLOBE , ,Alajuela CR , +YTHX1,3,320.0000 ,42.03000 ,0.130000 ,GLOBE , ,Barbastro Huesca AR ES , +YTPS1,3,451.0000 ,35.04630 ,32.90250 ,GLOBE , ,Nicosia District CY , +YU6G1,3,272.0000 ,45.24000 ,13.94500 ,GLOBE , ,Pazin HR , +YU6G7,3,214.6000 ,45.18270 ,13.49710 ,GLOBE , ,Pazin HR , +YUTK1,3,210.0000 ,44.15950 ,-72.08840,GLOBE , ,Wells River VT US , +YXH41,3,58.00000 ,38.89500 ,-77.03670,GLOBE , ,Washington DC US , +YXH42,3,58.00000 ,38.89500 ,-77.03670,GLOBE , ,Washington DC US , +YXK61,3,611.0000 ,24.40000 ,46.42000 ,GLOBE , ,Riyadh SA , +YXK63,3,611.0000 ,24.40000 ,46.42000 ,GLOBE , ,Riyadh SA , +YZB21,3,56.00000 ,45.81640 ,15.97790 ,GLOBE , ,Zagreb HR , +Z2751,3,182.5000 ,14.49671 ,101.2391 ,GLOBE , ,Saraburi Province TH , +Z29C1,3,461.0000 ,42.48220 ,-74.60680,GLOBE , ,Jefferson NY US , +Z5WZ1,3,375.7000 ,41.50730 ,-81.33650,GLOBE , ,Chesterland OH US , +Z7XJ1,3,841.0000 ,33.00000 ,35.00000 ,GLOBE , ,ALEY LB , +Z7XJ3,3,850.0000 ,33.05000 ,35.08000 ,GLOBE , ,ALEY LB , +Z9731,3,120.0000 ,45.81670 ,17.37500 ,GLOBE , ,Virovitica HR , +ZA661,3,71.60000 ,32.36587 ,-86.98624,GLOBE , ,Selma AL US , +ZADQ1,3,12.90000 ,21.33280 ,39.11060 ,GLOBE , ,Jeddah SA , +ZAKX1,3,37.00000 ,27.62780 ,-81.52350,GLOBE , ,Avon Park FL US , +ZAKX2,3,36.00000 ,27.62700 ,-81.52420,GLOBE , ,Avon Park FL US , +ZBFE1,3,40.00000 ,40.72810 ,-73.82250,GLOBE , ,Flushing NY US , +ZBM61,3,173.0000 ,42.28830 ,-83.22380,GLOBE , ,Dearborn MI US , +ZCUM1,3,736.0000 ,41.52080 ,-5.389200,GLOBE , ,Toro, ZAMORA ZA ES , +ZD6M1,3,1.400000 ,-39.93038,174.9815 ,GLOBE , ,Wanganui NZ , +ZD9D1,3,853.2000 ,40.64000 ,-3.999000,GLOBE , ,Collado Villalba M ES , +ZESY1,3,108.0000 ,17.58020 ,-66.24310,GLOBE , ,Santa Isabel PR US , +ZHF41,3,18.90000 ,26.26360 ,50.06640 ,GLOBE , ,Dammam SA , +ZIJW1,3,123.5000 ,35.05230 ,-78.59240,GLOBE , ,Fayetteville NC US , +ZIJW3,3,82.00000 ,35.08440 ,-78.95820,GLOBE , ,Fayetteville NC US , +ZIPB1,3,481.2000 ,45.35460 ,14.38420 ,GLOBE , ,Cabar HR , +ZIPB4,3,837.0000 ,45.34100 ,14.47770 ,GLOBE , ,Cabar HR , +ZIPB7,3,522.3000 ,45.30550 ,14.38550 ,GLOBE , ,Cabar HR , +ZJHB1,3,59.00000 ,-34.20600,-56.42830,GLOBE , ,Montevideo UY , +ZJK61,3,118.0000 ,51.10450 ,17.10960 ,GLOBE , ,Wroclaw PL , +ZJK62,3,117.0000 ,51.10400 ,17.10500 ,GLOBE , ,Wroclaw PL , +ZJX23,3,110.0000 ,53.53410 ,-2.154000,GLOBE , ,Oldham UK , +ZKF51,3,726.0000 ,39.90960 ,-3.624400,GLOBE , ,Yepes, TO ES , +ZKHU1,3,4.000000 ,26.23000 ,50.06000 ,GLOBE , ,Dammam East SA , +ZNC91,3,270.0000 ,42.42800 ,-92.35740,GLOBE , ,Waterloo IA US , +ZNC93,3,270.0000 ,42.42800 ,-92.35740,GLOBE , ,Waterloo IA US , +ZOPM1,3,412.6000 ,42.57130 ,-2.850500,GLOBE , ,Haro, La Rioja ES , +ZS2C1,3,212.0000 ,45.62160 ,17.55360 ,GLOBE , ,Vocin HR , +ZUPI1,3,167.0000 ,35.16050 ,33.34170 ,GLOBE , ,Lefkosia CY , +ZZ7Z3,3,152.0000 ,46.33260 ,16.60930 ,GLOBE , ,Prelog HR , +ZZDW1,3,579.7000 ,40.33093 ,-3.746320,GLOBE , ,Leganes, Madrid M ES , +H4J61,3,189.8000 ,31.70380 ,-87.77740,GLOBE , ,Grove Hill AL US , +3HU31,3,255.0000 ,49.86150 ,18.55020 ,GLOBE , ,Karvina - Hranice CZ , +864L1,3,210.4000 ,9.564220 ,79.90155 ,GLOBE , ,Kelaniya LK , +AIOS1,3,0.000000 ,-34.13830,22.21920 ,GLOBE , ,Kwononqaba,Mossel Day ZA , +5L7M2,3,151.0000 ,51.26850 ,7.187500 ,GLOBE , ,Wuppertal DE , +DHO21,3,25.00000 ,10.56100 ,-61.27000,GLOBE , ,Brazil Village TT , +NYNF1,3,56.80000 ,35.17330 ,136.1682 ,GLOBE , ,Shiga JP , +AU8P1,3,366.0000 ,50.00000 ,14.00000 ,GLOBE , ,Kladno CZ , +SPEH1,3,414.0000 ,42.99390 ,2.939300 ,GLOBE , ,BEDOUS FR , +W5OG2,3,20.30000 ,53.12870 ,17.97720 ,GLOBE , ,Bydgoszcz PL , +AQRS1,3,7.100000 ,56.34250 ,24.10470 ,GLOBE , ,Islice LV , +3TKE1,3,246.0000 ,51.84770 ,18.27290 ,GLOBE , ,Cekow PL , +8YJ81,3,2247.000 ,18.12080 ,42.31000 ,GLOBE , ,Abha SA , +AHJA1,3,438.0000 ,50.20570 ,16.23670 ,GLOBE , ,Solnice CZ , +YZWR1,3,207.8000 ,43.44200 ,-71.47700,GLOBE , ,Belmont NH US , +TPOP1,3,1316.300 ,17.28250 ,44.09460 ,GLOBE , ,Najran SA , +R6XX5,3,176.6000 ,47.68319 ,16.59036 ,GLOBE , ,Sopron HU , +CKCE2,3,269.1000 ,34.14769 ,-87.40550,GLOBE , ,Double Springs AL US , +UQRJ4,3,250.2000 ,33.59168 ,-86.65454,GLOBE , ,Irondale AL US , +TNPA1,3,349.0000 ,47.47260 ,9.494900 ,GLOBE , ,Rorschach, SG CH , +TZ3V1,3,117.6000 ,46.12483 ,19.33340 ,GLOBE , ,Bacsalmas HU , +MQZT1,3,227.0000 ,36.13030 ,-86.83670,GLOBE , ,Nashville TN US , +4LKL1,3,204.1000 ,50.84080 ,19.00310 ,GLOBE , ,Kalej PL , +9M581,3,105.0000 ,51.79320 ,18.33330 ,GLOBE , ,Kozminek PL , +SP8L1,3,3.000000 ,35.52360 ,139.4657 ,GLOBE , ,Saitama JP , +GRN91,3,650.0000 ,50.00000 ,12.00000 ,GLOBE , ,Eibenstock DE , +MOMX1,3,185.0000 ,32.75390 ,-97.33620,GLOBE , ,Fort Worth TX US , +SFDH2,3,-1.000000,-34.00000,-58.00000,GLOBE , ,Villa Adelina BA AR , +HE4S1,3,31.00000 ,-35.30000,-58.44000,GLOBE , ,Canuelas AR , +NCZD1,3,1.900000 ,21.35379 ,39.08800 ,GLOBE , ,Jeddah SA , +I9TY2,3,330.0000 ,37.91130 ,-93.19250,GLOBE , ,Urbana MO US , +DR5B1,3,197.0000 ,49.50000 ,6.600000 ,GLOBE , ,Mettlach-Orscholz DE , +J5NJ2,3,108.0000 ,47.43140 ,-122.8863,GLOBE , ,Belfair WA US , +ZC4C1,3,94.00000 ,57.92200 ,-152.5000,GLOBE , ,Ouzinkie AK US , +629G2,3,5.000000 ,34.22150 ,132.3310 ,GLOBE , ,Hiroshima JP , +HRRE4,3,-5.200000,53.37450 ,10.09500 ,GLOBE , ,Hamburg DE , +ORZB1,3,455.0000 ,43.42630 ,-98.33700,GLOBE , ,Corsica SD US , +A7KO1,3,45.80000 ,30.44465 ,-88.24600,GLOBE , ,Irvington AL US , +HK3V1,3,214.0000 ,35.08420 ,33.11000 ,GLOBE , ,Nicosia CY , +WTXR1,3,295.9000 ,44.42550 ,-85.33530,GLOBE , ,Traverse City MI US , +Y4UF1,3,258.0000 ,33.66940 ,-85.86700,GLOBE , ,Anniston AL US , +KDB11,3,67.00000 ,36.01110 ,127.0372 ,GLOBE , ,Chonlaburkdo KR , +FS3C6,3,188.0000 ,33.45853 ,-86.91160,GLOBE , ,Midfield AL US , +22RC2,3,718.7000 ,40.55130 ,-3.898500,GLOBE , ,Las Rozas, MADRID ES , +XITQ2,3,536.4000 ,50.35854 ,16.24590 ,GLOBE , ,Novy Hradek CZ , +3UJT2,3,211.8000 ,33.10719 ,-86.74942,GLOBE , ,Calera AL US , +L4GD3,3,197.0000 ,33.45942 ,-86.92758,GLOBE , ,Fairfield AL US , +KSSW1,3,196.0000 ,31.81786 ,-85.95489,GLOBE , ,Troy AL US , +ITUF1,3,185.0000 ,32.75390 ,-97.33620,GLOBE , ,Fort Worth TX US , +8QLW1,3,77.10000 ,40.89090 ,-73.84660,GLOBE , ,Bronx NY US , +4FU41,3,77.80000 ,33.23323 ,-87.58974,GLOBE , ,Northport AL US , +FS3C1,3,194.0000 ,33.45853 ,-86.91154,GLOBE , ,Midfield AL US , +ZV6F5,3,86.20000 ,33.24324 ,-87.62165,GLOBE , ,Northport AL US , +D8PG1,3,462.0000 ,45.22210 ,15.05090 ,GLOBE , ,Vrbovsko HR , +EKDI4,3,62.20000 ,51.61810 ,17.06140 ,GLOBE , ,Pakoslaw PL , +ZV6F1,3,103.8000 ,33.24460 ,-87.62100,GLOBE , ,Northport AL US , +NIIW1,3,14.00000 ,28.08720 ,-17.33360,GLOBE , ,Valle Gran Rey, LA GOMERA ES , +O8RC1,3,313.0000 ,35.07010 ,33.17540 ,GLOBE , ,Lacatamia CY , +62781,3,21.00000 ,54.33330 ,10.13330 ,GLOBE , ,Kiel DE , +FXQU1,3,387.0000 ,49.22278 ,15.86822 ,GLOBE , ,Trebic CZ , +TGKM1,3,-46.00000,50.85073 ,5.708160 ,GLOBE , ,Maastricht NL , +JXO73,3,184.8000 ,33.37909 ,-86.98012,GLOBE , ,Bessemer AL US , +T26E1,3,2322.800 ,19.34480 ,-98.98640,GLOBE , ,Distrito Federal Mx MX , +95JC1,3,259.0000 ,44.75370 ,-93.36070,GLOBE , ,Savage MN US , +L4GD4,3,197.0000 ,33.45934 ,-86.92761,GLOBE , ,Fairfield AL US , +KP571,3,597.4000 ,41.03100 ,21.34200 ,GLOBE , ,Bitola MK , +HZ9E3,3,54.40000 ,32.42060 ,-87.02058,GLOBE , ,Selma AL US , +YAN72,3,93.40000 ,52.22500 ,20.75250 ,GLOBE , ,Warszawa PL , +UH9S1,3,140.9000 ,18.20278 ,-66.28011,GLOBE , ,Ciales PR US , +T8SD3,3,397.0000 ,39.15310 ,-80.04120,GLOBE , ,Philippi WV US , +T8SD1,3,462.7000 ,39.15170 ,-80.06547,GLOBE , ,Philippi WV US , +LYGO5,3,115.4000 ,33.56582 ,-87.51187,GLOBE , ,Tuscaloosa AL US , +I8VW1,3,426.5000 ,47.85110 ,9.016800 ,GLOBE , ,Stockach DE , +STXT1,3,5.000000 ,34.35600 ,133.2832 ,GLOBE , ,Hiroshima JP , +FL291,3,-1.000000,52.00000 ,4.000000 ,GLOBE , ,Ridderkerk NL , +K9GW2,3,2240.000 ,19.35470 ,-99.03190,GLOBE , ,Ecatepec MX , +FM5G1,3,49.00000 ,32.51000 ,-116.9700,GLOBE , ,Tijuana MX , +E6NV1,3,580.4000 ,40.32011 ,-3.721800,GLOBE , ,Getafe, MADRID ES , +IGAF2,3,265.4000 ,40.30042 ,-88.59383,GLOBE , ,Normal IL US , +TR2M1,3,25.70000 ,35.49830 ,136.8927 ,GLOBE , ,Gifu JP , +Q2HE1,3,-0.600000,52.10226 ,8.081680 ,GLOBE , ,Bad Laer DE , +NND94,3,107.3000 ,32.41969 ,-86.27898,GLOBE , ,Montgomery AL US , +H5OG1,3,120.0000 ,31.39300 ,-85.92220,GLOBE , ,New Brockton AL US , +699T1,3,869.0000 ,40.75530 ,-3.780500,GLOBE , ,Soto del Real, MADRID ES , +NW661,3,104.8000 ,29.56710 ,-14.17630,GLOBE , ,Yaiza, LANZAROTE ES , +XJOB1,3,191.7000 ,31.99067 ,-86.58261,GLOBE , ,Fort Deposit AL US , +VHAM7,3,0.000000 ,18.45300 ,-66.05570,GLOBE , ,San Juan PR US , +ZAAP1,3,156.4000 ,49.18397 ,16.63429 ,GLOBE , ,Brno CZ , +ETLW1,3,76.00000 ,32.42000 ,34.95000 ,GLOBE , ,Tira IL , +W55G1,3,120.7000 ,44.19200 ,-69.01780,GLOBE , ,Belfast ME US , +L33C1,3,616.7000 ,40.63640 ,-3.176200,GLOBE , ,Guadalajara, GUADALAJARA ES , +JM3Q1,3,465.0000 ,49.00000 ,15.00000 ,GLOBE , ,Moravske Budejovice CZ , +BFPA2,3,254.9000 ,41.76690 ,-88.14284,GLOBE , ,Naperville IL US , +K9AO1,3,8.000000 ,40.63580 ,-73.95060,GLOBE , ,Brooklyn NY US , +XKJ81,3,69.20000 ,32.43206 ,-87.02950,GLOBE , ,Selma AL US , +4EVS4,3,128.9000 ,33.76287 ,-86.80240,GLOBE , ,Morris AL US , +UHHK1,3,270.0000 ,41.91950 ,-91.42470,GLOBE , ,Mount Vernon IA US , +7HUH2,3,207.8000 ,39.35170 ,-78.04420,GLOBE , ,Inwood WV US , +629G1,3,-22.50000,34.22220 ,132.3255 ,GLOBE , ,Hiroshima JP , +4WPZ1,3,678.0000 ,40.60040 ,3.510400 ,GLOBE , ,Algete, MADRID ES , +KCZE2,3,300.0000 ,31.90250 ,35.00750 ,GLOBE , ,Modiin IL , +LKEJ1,3,337.0000 ,34.33430 ,-86.76230,GLOBE , ,Eva AL US , +KBPR1,3,170.1000 ,31.56658 ,-85.24943,GLOBE , ,Abbeville AL US , +YV5B1,3,-34.20000,35.11478 ,136.4316 ,GLOBE , ,Aichi JP , +URYB1,3,252.0000 ,50.07690 ,14.47932 ,GLOBE , ,Prague CZ , +X86N1,3,326.1000 ,43.02472 ,-88.15187,GLOBE , ,Waukesha WI US , +VHAM1,3,77.20000 ,18.23760 ,-65.59160,GLOBE , ,San Juan PR US , +9V3Q1,3,282.0000 ,50.00000 ,14.00000 ,GLOBE , ,Prague CZ , +RORV2,3,2025.000 ,19.51320 ,41.33510 ,GLOBE , ,Al-Baha SA , +ROAM1,3,97.00000 ,31.24000 ,34.50000 ,GLOBE , ,Beer Sheva IL , +YMQW3,3,109.5000 ,32.41352 ,-87.00745,GLOBE , ,Selma AL US , +PLLG1,3,639.2000 ,26.22700 ,43.57700 ,GLOBE , ,Boridh SA , +FORE1,3,3.800000 ,32.06130 ,34.78560 ,GLOBE , ,TEL-AVIV IL , +L4GD1,3,201.0000 ,33.46040 ,-86.92810,GLOBE , ,Fairfield AL US , +CDDM1,3,97.00000 ,45.16660 ,18.01660 ,GLOBE , ,Slavonski Brod HR , +DJK51,3,153.0000 ,40.53020 ,-122.3738,GLOBE , ,Redding CA US , +PARD1,3,248.0000 ,49.85970 ,18.54420 ,GLOBE , ,Karvina CZ , +HU6G2,3,54.70000 ,31.97168 ,-87.59348,GLOBE , ,Pine Hill AL US , +O6OH2,3,71.60000 ,32.36158 ,-86.98648,GLOBE , ,Selma AL US , +29EP1,3,210.0000 ,34.02000 ,-117.9486,GLOBE , ,La Puente CA US , +FRHX1,3,428.5000 ,42.22140 ,-2.109790,GLOBE , ,Arnedo, LA RIOJA ES , +HL7K3,3,436.0000 ,45.49690 ,16.04740 ,GLOBE , ,Zagreb HR , +HMV91,3,518.0000 ,42.22270 ,-2.099700,GLOBE , ,Arnedo, LA RIOJA ES , +ILSA1,3,956.0000 ,46.85600 ,-114.0148,GLOBE , ,Missoula MT US , +44JM2,3,103.0000 ,31.99417 ,-87.28651,GLOBE , ,Camden AL US , +E3P91,3,47.90000 ,41.48977 ,-78.16224,GLOBE , ,Port Allegany PA US , +XJQ81,3,598.4000 ,40.30717 ,-3.732810,GLOBE , ,Madrid, MADRID ES , +WBKL1,3,730.5000 ,28.22900 ,36.32822 ,GLOBE , ,Tabuk SA , +T9QI2,3,229.1000 ,33.57228 ,-86.71958,GLOBE , ,Birmingham AL US , +AWZC1,3,355.5000 ,34.25238 ,-86.22082,GLOBE , ,Albertville AL US , +4IZA2,3,10.00000 ,40.82960 ,-73.87010,GLOBE , ,Bronx NY US , +4IZA3,3,48.30000 ,40.82960 ,-73.87010,GLOBE , ,Bronx NY US , +ZQDF1,3,-39.00000,44.74620 ,1.088400 ,GLOBE , ,ANDERNOS-Les-Bains FR , +22RC1,3,650.4000 ,40.55150 ,-3.898800,GLOBE , ,Las Rozas, MADRID ES , +B9YV1,3,568.0000 ,32.58000 ,35.58000 ,GLOBE , ,LOD IL , +7MIJ1,3,3.100000 ,32.03000 ,34.74000 ,GLOBE , ,JAFFA-TEL AVIV IL , +GPVA1,3,111.4000 ,32.65310 ,-86.92564,GLOBE , ,Plantersville AL US , +6ZNF1,3,102.0000 ,18.30016 ,-67.08725,GLOBE , ,Aguadilla PR US , +B7SU1,3,213.0000 ,40.28040 ,-80.60580,GLOBE , ,Wellsburg WV US , +BEZ81,3,302.0000 ,31.54000 ,34.76000 ,GLOBE , ,BEERSHEVA IL , +WVDX1,3,40.00000 ,59.31190 ,24.41170 ,GLOBE , ,Keila, Harjumaa Region Eston EE , +84UI1,3,20.00000 ,32.03750 ,34.75170 ,GLOBE , ,Tel Aviv IL , +GY7D1,3,303.0000 ,31.11000 ,34.50000 ,GLOBE , ,Beer Sheva IL , +63VW5,3,186.5000 ,33.41236 ,-86.96059,GLOBE , ,Bessemer AL US , +R6XX1,3,176.6000 ,47.68322 ,16.59051 ,GLOBE , ,Sopron HU , +7ADI1,3,115.8000 ,56.48000 ,35.53000 ,GLOBE , ,Tver' RU , +YDBY1,3,32.00000 ,33.33000 ,32.00000 ,GLOBE , ,BEN SHEMEN IL , +PEW51,3,148.0000 ,41.61050 ,2.286100 ,GLOBE , ,Granollers, BARCELONA ES , +4FH21,3,9.800000 ,52.45230 ,-20.88950,GLOBE , ,Skrzeszew PL , +MNYQ1,3,30.00000 ,-34.61670,-58.36670,GLOBE , ,Ciudad De Buenos Aires AR , +U5QE3,3,88.00000 ,44.88170 ,-69.44580,GLOBE , ,Hartland ME US , +WENF1,3,279.0000 ,31.50520 ,34.82930 ,GLOBE , ,Arabba IL , +PFEK1,3,625.5000 ,50.06035 ,17.39187 ,GLOBE , ,Andelska Hora CZ , +ZCQX1,3,316.8000 ,34.45532 ,-85.70818,GLOBE , ,Fort Payne AL US , +PWBF2,3,727.0000 ,40.51660 ,-3.683300,GLOBE , ,Madrid, MADRID ES , +WHLJ1,3,259.8000 ,28.65910 ,77.31666 ,GLOBE , ,Delhi IN , +XZZP1,3,36.80000 ,25.02000 ,-77.17000,GLOBE , ,Nassau BS , +T7XA1,3,546.6000 ,30.57000 ,41.02000 ,GLOBE , ,Arar SA , +4USQ3,3,42.00000 ,30.68810 ,-88.05320,GLOBE , ,Autaugaville AL US , +Q8JN1,3,47.20000 ,40.39080 ,-73.31470,GLOBE , ,Bellmore NY US , +9H291,3,475.0000 ,50.60970 ,15.50590 ,GLOBE , ,Jilemnice CZ , +X85Z1,3,227.0000 ,50.11050 ,15.47520 ,GLOBE , ,Praha 9 CZ , +RU521,3,400.0000 ,49.14000 ,9.220000 ,GLOBE , ,Heilsbronn DE , +K2851,3,629.0000 ,40.55888 ,-3.625520,GLOBE , ,San Sebastian de los Reyes, MADRID ES , +DJU82,3,123.8000 ,32.45186 ,-86.42152,GLOBE , ,Prattville AL US , +TLGD1,3,117.0000 ,31.24000 ,34.50000 ,GLOBE , ,North Negev IL , +U9481,3,305.8000 ,40.09047 ,-84.14805,GLOBE , ,Piqua OH US , +N3O81,3,666.0000 ,31.25500 ,35.21700 ,GLOBE , ,ARAD IL , +JVRA3,3,111.8000 ,32.34802 ,-86.23341,GLOBE , ,Montgomery AL US , +98HW1,3,133.7000 ,18.45440 ,-66.54440,GLOBE , ,Barceloneta PR US , +C8GE1,3,212.5000 ,33.05689 ,-96.42398,GLOBE , ,Allen TX US , +7D7S1,3,261.0000 ,35.09000 ,33.30000 ,GLOBE , ,Paphos CY , +5OY51,3,1056.000 ,40.84270 ,-1.878800,GLOBE , ,Molina De Aragon, GUADALAJARA ES , +ANZ81,3,181.0000 ,38.41300 ,-82.43380,GLOBE , ,Huntington WV US , +4USQ4,3,81.20000 ,32.43352 ,-86.66016,GLOBE , ,Autaugaville AL US , +5R833,3,143.4000 ,31.56594 ,-86.01093,GLOBE , ,Jack AL US , +WVDX2,3,40.00000 ,59.31190 ,24.41170 ,GLOBE , ,Keila, Harjumaa Region Eston EE , +36UX3,3,390.0000 ,34.47360 ,-86.63130,GLOBE , ,Somerville AL US , +CDKT2,3,160.0000 ,32.66333 ,-86.70094,GLOBE , ,Billingsley AL US , +4USQ2,3,42.00000 ,30.68810 ,-88.05320,GLOBE , ,Autaugaville AL US , +LRYA1,3,4.600000 ,55.42000 ,13.11000 ,GLOBE , ,SE-22100 Lund SE , +HDXN1,3,243.6000 ,34.82554 ,-86.47840,GLOBE , ,Huntsville AL US , +YTVU2,3,95.70000 ,32.15118 ,-86.68237,GLOBE , ,Plantersville AL US , +QGET1,3,490.0000 ,38.15760 ,-79.08130,GLOBE , ,Staunton VA US , +VMWR2,3,770.0000 ,28.24651 ,36.34876 ,GLOBE , ,Tabuk SA , +LFX61,3,33.60000 ,44.42840 ,-93.25117,GLOBE , ,Prior Lake MN US , +C9XG1,3,424.9000 ,42.35870 ,-6.434800,GLOBE , ,Cacabelos, LEON ES , +ZTRE1,3,20.00000 ,32.03470 ,34.75270 ,GLOBE , ,Tel Aviv IL , +5D6V1,3,135.8000 ,49.21790 ,17.51150 ,GLOBE , ,Otrokovice CZ , +NGSD1,3,13.60000 ,32.00000 ,30.07000 ,GLOBE , ,Kiryat Ono IL , +SLIX1,3,557.9000 ,31.64000 ,34.52000 ,GLOBE , ,Rehovot IL , +DWGU1,3,-22.00000,36.34530 ,136.3853 ,GLOBE , ,Ishikawa JP , +JXRW1,3,20.00000 ,32.05820 ,34.81050 ,GLOBE , ,Tel Aviv IL , +HVOG1,3,621.0000 ,29.48440 ,39.51310 ,GLOBE , ,Aljouf SA , +DIRV1,3,193.0000 ,34.41110 ,-86.95430,GLOBE , ,Hartselle AL US , +K4SL1,3,56.00000 ,16.57590 ,42.49530 ,GLOBE , ,Gizan SA , +FN3V1,3,201.1000 ,49.47210 ,18.31920 ,GLOBE , ,Albrechtice CZ , +2MW71,3,79.00000 ,47.50700 ,21.63300 ,GLOBE , ,Debrecen HU , +CQH91,3,121.0000 ,56.31700 ,22.01700 ,GLOBE , ,Zidikai LT , +RN891,3,700.0000 ,32.98000 ,35.25000 ,GLOBE , ,Yanuch Village IL , +6K7S2,3,330.0000 ,43.09490 ,3.049800 ,GLOBE , ,ARETTE FR , +J2SB1,3,560.0000 ,29.59440 ,40.12670 ,GLOBE , ,Aljouf SA , +M5BG1,3,538.2000 ,40.49490 ,-3.354400,GLOBE , ,MADRID ES , +FWO81,3,15.00000 ,35.00000 ,139.0000 ,GLOBE , ,Tokyo JP , +6HLU1,3,666.0000 ,40.47810 ,-3.722000,GLOBE , ,Madrid, MADRID ES , +C7YN2,3,679.6000 ,38.55656 ,-99.33538,GLOBE , ,Ellis KS US , +BLEA2,3,79.70000 ,40.61510 ,-73.97640,GLOBE , ,Brooklyn NY US , +QBN61,3,53.40000 ,33.22213 ,-80.35429,GLOBE , ,Harleyville SC US , +KOML1,3,163.0000 ,51.03330 ,12.80000 ,GLOBE , ,Rochlitz DE , +9XTI1,3,264.0000 ,38.94720 ,-83.40830,GLOBE , ,Peebles OH US , +ZJFR1,3,477.0000 ,34.29270 ,-99.73960,GLOBE , ,Quanah TX US , +57391,3,27.80000 ,26.25890 ,50.06690 ,GLOBE , ,Dammam SA , +3VRW1,3,581.5000 ,40.56094 ,-4.014660,GLOBE , ,Madrid, MADRID ES , +8DQ92,3,2326.200 ,19.41040 ,-99.20160,GLOBE , ,Distrito Federal Mx MX , +QWQH2,3,202.1000 ,33.33412 ,-86.93362,GLOBE , ,Bessemer AL US , +XOLV1,3,2024.000 ,18.20010 ,42.50880 ,GLOBE , ,Khamis Mushayt SA , +YAN71,3,125.0000 ,52.21670 ,20.90000 ,GLOBE , ,Warszawa PL , +62784,3,22.00000 ,54.18110 ,10.04110 ,GLOBE , ,Kiel DE , +2HSU1,3,123.2000 ,50.32000 ,14.08000 ,GLOBE , ,Litomerice CZ , +YI791,3,95.00000 ,33.49000 ,-88.32000,GLOBE , ,Aberdeen MS US , +HN441,3,778.8000 ,40.83220 ,-2.415660,GLOBE , ,Huete, Cuenca ES , +W5OG3,3,20.40000 ,53.13670 ,17.98190 ,GLOBE , ,Bydgoszcz PL , +RM9X2,3,239.4000 ,33.47107 ,-86.80983,GLOBE , ,Homewood AL US , +OXE22,3,235.9000 ,33.42857 ,-86.07767,GLOBE , ,Talladega AL US , +XHZ92,3,113.2000 ,-33.11458,-87.12637,GLOBE , ,West Blocton AL US , +6BEU1,3,207.9000 ,33.20969 ,-87.13732,GLOBE , ,Woodstock AL US , +62782,3,23.00000 ,54.20075 ,10.05008 ,GLOBE , ,Kiel DE , +3VRW2,3,581.5000 ,40.56094 ,-4.014660,GLOBE , ,Madrid, MADRID ES , +V7JH1,3,42.10000 ,38.54380 ,-75.22960,GLOBE , ,Dagsboro DE US , +LH823,3,206.0000 ,34.59335 ,-86.97086,GLOBE , ,Decatur AL US , +9NHT2,3,166.7000 ,33.10096 ,-86.85715,GLOBE , ,Montevallo AL US , +TH2P2,3,125.0000 ,36.30800 ,-92.37900,GLOBE , ,Mountain Home AR US , +SW7J1,3,75.00000 ,32.15400 ,34.89900 ,GLOBE , ,Hod Hasharon IL , +T9QI1,3,211.0000 ,33.57020 ,-86.71650,GLOBE , ,Birmingham AL US , +62783,3,40.00000 ,54.14010 ,10.03590 ,GLOBE , ,Kiel DE , +P7934,3,206.0000 ,41.37730 ,-83.62260,GLOBE , ,Bowling Green OH US , +XGVZ5,3,226.0000 ,33.26016 ,-87.31430,GLOBE , ,Brookwood AL US , +O58M1,3,20.00000 ,32.07600 ,34.80070 ,GLOBE , ,Tel Aviv IL , +FWO82,3,-22.50000,35.39420 ,139.3910 ,GLOBE , ,Tokyo JP , +ZKHK2,3,381.0000 ,42.45880 ,-2.460300,GLOBE , ,Logrono, LA RIOJA ES , +VHAM8,3,0.000000 ,18.45300 ,-66.05570,GLOBE , ,San Juan PR US , +URAY1,3,474.6000 ,42.03218 ,-78.33127,GLOBE , ,Portville NY US , +XCC71,3,635.0000 ,40.32170 ,-3.883800,GLOBE , ,Mostoles, MADRID ES , +LM461,3,573.4000 ,40.30030 ,-3.732100,GLOBE , ,Getafe, MADRID ES , +CKRW1,3,186.0000 ,33.63680 ,-86.10172,GLOBE , ,Lincoln AL US , +3PFB1,3,43.50000 ,40.64047 ,-73.69757,GLOBE , ,Hewlett NY US , +2O4B1,3,220.0000 ,32.82511 ,-86.61364,GLOBE , ,Clanton AL US , +7CKN4,3,50.00000 ,45.33940 ,14.42920 ,GLOBE , ,Rijeka HR , +2EQV1,3,220.7000 ,42.00210 ,21.24490 ,GLOBE , ,Skopje MK , +BABD1,3,215.3000 ,38.37420 ,-81.84290,GLOBE , ,Saint Albans WV US , +7BI71,3,480.0000 ,50.52950 ,15.35650 ,GLOBE , ,Komenskeho CZ , +TQGS1,3,200.0000 ,59.33950 ,26.35880 ,GLOBE , ,Rakvere EE , +OXE21,3,197.0000 ,33.42680 ,-86.07760,GLOBE , ,Talladega AL US , +CJS31,3,5.000000 ,-39.45710,173.8633 ,GLOBE , ,Opunake NZ , +4BSS1,3,68.00000 ,32.03500 ,34.76000 ,GLOBE , ,Jaffa- Tel Aviv IL , +BA8J1,3,25.00000 ,52.58300 ,13.88300 ,GLOBE , ,Strausberg DE , +2R2W1,3,401.5000 ,49.22273 ,15.88188 ,GLOBE , ,Trebic CZ , +G7KZ2,3,145.0000 ,34.47610 ,32.26340 ,GLOBE , ,Paphos CY , +ZNBQ1,3,4.000000 ,36.80750 ,-76.33580,GLOBE , ,Portsmouth VA US , +SMC81,3,61.50000 ,9.344390 ,98.41913 ,GLOBE , ,Ranong TH , +94CL1,3,993.8000 ,34.55000 ,33.00850 ,GLOBE , ,Agros CY , +BLAP6,3,356.3000 ,49.58510 ,17.58510 ,GLOBE , ,Valasske Mezirici CZ , +TVS52,3,195.0000 ,33.36896 ,-86.71499,GLOBE , ,Birmingham AL US , +Z6N54,3,147.8000 ,46.16090 ,15.87300 ,GLOBE , ,Krapina HR , +UCZE1,3,352.2000 ,42.46347 ,-2.459980,GLOBE , ,Logrono, LA RIOJA ES , +GHX41,3,357.0000 ,32.71000 ,35.12000 ,GLOBE , ,Tivon IL , +87X92,3,0.000000 ,32.80000 ,36.30000 ,GLOBE , ,Maker Village IL , +RYH41,3,206.8000 ,50.88280 ,18.74420 ,GLOBE , ,Panki PL , +PKAU1,3,528.3000 ,40.45542 ,-3.452770,GLOBE , ,Torrejon De Ardoz, MADRID ES , +BVZF1,3,70.00000 ,54.12660 ,-1.145900,GLOBE , ,Crayke UK , +MA9J1,3,213.4000 ,34.43970 ,-86.36470,GLOBE , ,Huntsville AL US , +K8SW1,3,10.00000 ,59.23000 ,28.12000 ,GLOBE , ,Narva EE , +N25O1,3,550.7000 ,30.58000 ,41.03000 ,GLOBE , ,Arar SA , +46NS2,3,350.0000 ,41.33930 ,-80.39550,GLOBE , ,Greenville PA US , +G59A1,3,20.00000 ,58.41390 ,24.27700 ,GLOBE , ,Parnumaa EE , +OXHG1,3,571.0000 ,28.12620 ,-16.57380,GLOBE , ,Granadilla De Abona, TENERIFE ES , +87X91,3,0.000000 ,32.80000 ,36.30000 ,GLOBE , ,Maker Village IL , +CMMC1,3,394.0000 ,42.46170 ,-2.461400,GLOBE , ,Logrono, LA RIOJA ES , +FV9T1,3,636.0000 ,26.21830 ,43.56600 ,GLOBE , ,Boridh SA , +FJON1,3,29.40000 ,48.36282 ,-124.6216,GLOBE , ,Neah Bay WA US , +W8GX5,3,237.0000 ,34.78220 ,-86.79600,GLOBE , ,Harvest AL US , +78EH1,3,130.6000 ,-45.85400,170.4980 ,GLOBE , ,Dunedin NZ , +4T5V1,3,220.3000 ,18.50000 ,-66.69800,GLOBE , ,Morovis PR US , +XZT31,3,3.000000 ,51.00000 ,4.000000 ,GLOBE , ,Schiedam NL , +U9AC1,3,117.0000 ,45.18790 ,17.91210 ,GLOBE , ,Sibinj HR , +9U931,3,610.3000 ,40.38500 ,-3.751000,GLOBE , ,Madrid, MADRID ES , +DO9B3,3,95.80000 ,47.93500 ,21.00220 ,GLOBE , ,Tiszaujvaros HU , +FS7Y1,3,175.9000 ,-32.10000,-71.40000,GLOBE , ,El Quisco CL , +O2SS2,3,120.8000 ,-41.18337,174.9150 ,GLOBE , ,Wellington Well NZ , +L8661,3,802.0000 ,39.95270 ,71.07010 ,GLOBE , ,Junin De Los Andes AR , +U7KB1,3,621.4000 ,40.42525 ,-3.613850,GLOBE , ,Madrid, MADRID ES , +YMQW2,3,40.00000 ,32.41610 ,-87.03290,GLOBE , ,Selma AL US , +GJEJ1,3,354.5000 ,28.65667 ,-17.90446,GLOBE , ,Los Llanos, LA PALMA ES , +ZS6I2,3,59.00000 ,44.87480 ,-0.522700,GLOBE , ,LORMONT FR , +3OF92,3,1.000000 ,44.25930 ,15.12620 ,GLOBE , ,Privlaka HR , +6XQ21,3,81.00000 ,45.53820 ,-122.6565,GLOBE , ,Portland OR US , +A3BX1,3,480.0000 ,40.03232 ,-3.582850,GLOBE , ,Aranjuez, MADRID ES , +7YC91,3,178.0000 ,30.16425 ,-97.74285,GLOBE , ,Austin TX US , +BH821,3,500.0000 ,33.25330 ,126.3148 ,GLOBE , ,JeJu City KR , +5ZCR1,3,822.3000 ,40.62396 ,-4.005110,GLOBE , ,Collado Villalba, MADRID ES , +IIGB1,3,-3.400000,8.700000 ,-80.58000,GLOBE , ,SANTIAGO PA , +PF882,3,35.70000 ,53.46450 ,12.60389 ,GLOBE , ,Waren DE , +TXVC1,3,671.0000 ,40.67900 ,-3.625000,GLOBE , ,San Agustin De Guadalix, MADRID ES , +WR6K1,3,3.000000 ,53.11260 ,6.101000 ,GLOBE , ,Drachten NL , +9OIH1,3,144.4000 ,64.85100 ,-147.8160,GLOBE , ,Fairbanks AK US , +3OF91,3,203.0000 ,44.25920 ,15.12420 ,GLOBE , ,Privlaka HR , +RKJ61,3,216.2000 ,32.82555 ,-86.61347,GLOBE , ,Clanton AL US , +FUGD2,3,302.0000 ,38.35900 ,-81.56900,GLOBE , ,Charleston WV US , +SNQF4,3,-3.500000,8.350000 ,-80.23000,GLOBE , ,PENONOME PA , +PA6W1,3,18.00000 ,45.01410 ,10.76770 ,GLOBE , ,Mantova IT , +PADS1,3,136.0000 ,45.55000 ,15.53900 ,GLOBE , ,Mahicno HR , +FYUU1,3,829.0000 ,39.35020 ,32.07300 ,GLOBE , ,Polatli/Ankara TR , +9L8P1,3,502.0000 ,40.17880 ,-3.689600,GLOBE , ,Aranjuez, MADRID ES , +KS163,3,2.600000 ,51.55000 ,6.945000 ,GLOBE , ,Krefeld DE , +9BIA1,3,28.00000 ,38.86660 ,141.5666 ,GLOBE , ,Miyagi JP , +RUFH1,3,335.0000 ,41.13646 ,-95.49105,GLOBE , ,Council Bluffs IA US , +GSHL2,3,957.0000 ,41.85082 ,-1.929210,GLOBE , ,Agreda, SORIA ES , +629G3,3,5.000000 ,34.22150 ,132.3310 ,GLOBE , ,Hiroshima JP , +BVZF2,3,70.00000 ,54.12660 ,-1.145900,GLOBE , ,Crayke UK , +HFTQ3,3,38.40000 ,32.99000 ,-89.46000,GLOBE , ,Carthage MS US , +83AU2,3,179.1000 ,50.14660 ,22.17380 ,GLOBE , ,Rzeszow PL , +83AU1,3,179.1000 ,50.14660 ,22.17380 ,GLOBE , ,Rzeszow PL , +83AU1,3,179.1000 ,50.14660 ,22.17380 ,GLOBE , ,Rzeszow PL , +JT5A2,3,491.0000 ,18.43780 ,-66.55730,GLOBE , ,Barceloneta PR US , +M5BG2,3,538.2000 ,40.49490 ,-3.354400,GLOBE , ,MADRID ES , +AOML1,3,60.00000 ,26.48980 ,127.9105 ,GLOBE , ,Okinawa JP , +52ZQ1,3,480.0000 ,-33.70300,-65.39000,GLOBE , ,Villa Reynolds - San Luis AR , +939R1,3,817.9000 ,42.20190 ,3.422300 ,GLOBE , ,Burgos ES , +TW5V1,3,449.2000 ,36.32193 ,-94.12276,GLOBE , ,Rogers AR US , +648C1,3,16.00000 ,6.290600 ,2.370900 ,GLOBE , ,Porto Novo Oueme BJ , +C6381,3,58.40000 ,40.72408 ,-73.80930,GLOBE , ,Flushing NY US , +M3VM1,3,188.0000 ,49.18707 ,16.60068 ,GLOBE , ,Brno CZ , +CVIA2,3,147.2000 ,36.49000 ,128.3600 ,GLOBE , ,Busan KR , +83AU3,3,179.1000 ,50.14660 ,22.17380 ,GLOBE , ,Rzeszow PL , +83AU3,3,179.1000 ,50.14660 ,22.17380 ,GLOBE , ,Rzeszow PL , +29N81,3,142.7000 ,41.21317 ,-73.82771,GLOBE , ,Yorktown Heights NY US , +83AU5,3,179.1000 ,50.14660 ,22.17380 ,GLOBE , ,Rzeszow PL , +YXIT2,3,233.6000 ,34.10258 ,-87.87919,GLOBE , ,Cullman AL US , +29YU1,3,10.00000 ,8.260000 ,-82.26000,GLOBE , ,DAVID PA , +ZW951,3,478.4000 ,49.22123 ,15.46541 ,GLOBE , ,Kamenice CZ , +IUG41,3,180.0000 ,43.62000 ,1.330000 ,GLOBE , ,COLOMIERS FR , +YIZA3,3,817.0000 ,42.00000 ,22.00000 ,GLOBE , ,Kavadarci MK , +ER5D1,3,266.8000 ,34.56841 ,-87.17296,GLOBE , ,Trinity AL US , +6VPX1,3,344.3000 ,42.46828 ,-2.429250,GLOBE , ,Logrono, LA RIOJA ES , +OR5H1,3,71.80000 ,30.63100 ,-88.28700,GLOBE , ,Mobile AL US , +M7WB1,3,700.0000 ,3.859000 ,11.50930 ,GLOBE , ,Yaounde, Centre CM , +ENQ52,3,-0.600000,52.45000 ,5.110000 ,GLOBE , ,Amsterdam NL , +DPTZ1,3,82.40000 ,40.95700 ,-74.45100,GLOBE , ,Staten Island NY US , +YYII3,3,30.00000 ,37.54382 ,127.0404 ,GLOBE , ,Kyeonggi Do. KR , +83AU7,3,179.1000 ,50.14660 ,22.17380 ,GLOBE , ,Rzeszow PL , +I9761,3,44.00000 ,-35.93380,173.8665 ,GLOBE , ,Dargaville NZ , +P4821,3,15.00000 ,36.10000 ,139.4500 ,GLOBE , ,Ibaraki JP , +2DI21,3,37.00000 ,52.16611 ,-1.787900,GLOBE , ,Welford On Avon UK , +SQMQ2,3,324.0000 ,-37.52000,-67.47000,GLOBE , ,Catriel AR , +7EMO1,3,392.0000 ,42.45470 ,-2.451900,GLOBE , ,Logrono, LA RIOJA ES , +F2YQ1,3,272.6000 ,49.00000 ,17.00000 ,GLOBE , ,Choryne CZ , +M7QQ2,3,22.00000 ,44.38530 ,-68.20800,GLOBE , ,Bar Harbor ME US , +WKWR1,3,702.0000 ,40.11330 ,20.80500 ,GLOBE , ,Ohrid MK , +A5E62,3,418.0000 ,47.70000 ,9.566000 ,GLOBE , ,Meersburg DE , +TQGS2,3,200.0000 ,59.33950 ,26.35880 ,GLOBE , ,Rakvere EE , +RVQN1,3,128.0000 ,31.32837 ,-86.48235,GLOBE , ,Andalusia AL US , +83AU9,3,179.1000 ,50.14660 ,22.17380 ,GLOBE , ,Rzeszow PL , +4QV21,3,71.30000 ,32.41103 ,-87.03043,GLOBE , ,Selma AL US , +GZBW1,3,80.00000 ,32.22430 ,-86.20380,GLOBE , ,Montgomery AL US , +GZBW3,3,102.9000 ,32.30173 ,-86.34235,GLOBE , ,Montgomery AL US , +KLG73,3,48.00000 ,36.39178 ,127.2823 ,GLOBE , ,Chungbuk KR , +3IRA1,3,367.4000 ,47.66700 ,9.183000 ,GLOBE , ,Konstanz DE , +2YIE2,3,-9.800000,58.37300 ,23.10840 ,GLOBE , ,Saaremaa EE , +MN3R3,3,1310.600 ,40.48040 ,-81.06060,GLOBE , ,East Rochester OH US , +ZHOJ1,3,245.0000 ,30.78000 ,76.69000 ,GLOBE , ,Mohali IN , +NDAC1,3,385.3000 ,50.49550 ,15.51020 ,GLOBE , ,Nova Paka CZ , +83PK1,3,15.00000 ,-37.53000,175.2800 ,GLOBE , ,Cambridge NZ , +3GRC1,3,51.00000 ,40.83880 ,-73.94190,GLOBE , ,New York NY US , +STJM1,3,43.00000 ,34.43550 ,133.5955 ,GLOBE , ,Okayama JP , +C7YN1,3,677.6000 ,38.55728 ,-99.33647,GLOBE , ,Ellis KS US , +9V331,3,1018.100 ,9.000000 ,83.00000 ,GLOBE , ,Puntarenas CR , +I2YO1,3,578.1000 ,32.00000 ,30.20000 ,GLOBE , ,KFAR SMEI IL , +TG6R1,3,117.3000 ,31.42659 ,-86.97199,GLOBE , ,Evergreen AL US , +OJC21,3,179.1000 ,34.76723 ,-87.69408,GLOBE , ,Sheffield AL US , +K2UJ3,3,115.8000 ,18.28640 ,-69.56530,GLOBE , ,Santo Domingo DO , +LIKO1,3,369.0000 ,9.354500 ,2.616200 ,GLOBE , ,Parakou BORGO BJ , +3W431,3,36.20000 ,34.70000 ,-86.70000,GLOBE , ,Madison AL US , +UPVY1,3,-2.800000,50.45000 ,6.590000 ,GLOBE , ,Bornheim DE , +JMGC1,3,46.00000 ,43.55450 ,16.47650 ,GLOBE , ,Solin HR , +35AR2,3,36.00000 ,18.21230 ,-67.14130,GLOBE , ,Mayaguez PR US , +QGRZ1,3,219.3000 ,50.90160 ,18.94040 ,GLOBE , ,Klobuck PL , +SVUB5,3,432.3000 ,41.43120 ,-94.55710,GLOBE , ,Audubon IA US , +4QV22,3,80.80000 ,32.41132 ,-87.03182,GLOBE , ,Selma AL US , +MMV41,3,20.00000 ,34.65000 ,58.55000 ,GLOBE , ,Ramos Mejia - Buenos Aires AR , +P2A91,3,190.2000 ,33.99317 ,-86.57304,GLOBE , ,Cleveland AL US , +XHZ91,3,179.6000 ,33.11510 ,-87.12610,GLOBE , ,West Blocton AL US , +OUAE2,3,112.8000 ,32.19196 ,-82.38009,GLOBE , ,Alberta AL US , +BCAM1,3,283.0000 ,38.23610 ,-82.23740,GLOBE , ,Huntington WV US , +XHUQ1,3,103.7000 ,32.29034 ,-87.01440,GLOBE , ,Sardis AL US , +CK8R4,3,103.7000 ,18.49880 ,-67.13920,GLOBE , ,Ramey PR US , +H6MQ1,3,442.6000 ,50.64529 ,15.96711 ,GLOBE , ,Bernartice CZ , +ZUHF1,3,2.000000 ,51.98719 ,5.668660 ,GLOBE , ,Wageningen NL , +UM781,3,11.00000 ,43.90160 ,-69.97350,GLOBE , ,Brunswick ME US , +S7JG1,3,296.3000 ,44.44221 ,-93.26474,GLOBE , ,Prior Lake MN US , +RGYE1,3,340.7000 ,50.58400 ,16.32530 ,GLOBE , ,Broumov CZ , +BS9X1,3,495.0000 ,49.00000 ,15.00000 ,GLOBE , ,Domamil CZ , +Y7ML2,3,200.0000 ,30.84270 ,-89.11020,GLOBE , ,Wiggins MS US , +TG6R2,3,81.00000 ,31.42810 ,-86.97170,GLOBE , ,Evergreen AL US , +R7ES1,3,241.2000 ,32.80415 ,-85.64362,GLOBE , ,Camp Hill AL US , +IC221,3,13.20000 ,-32.00000,-60.00000,GLOBE , ,San Lorenzo - Santa Fe AR , +M5BG3,3,538.2000 ,40.49490 ,-3.354400,GLOBE , ,MADRID ES , +VN7K1,3,391.9000 ,31.18296 ,-85.50196,GLOBE , ,Enterprise AL US , +SAI21,3,82.80000 ,31.06021 ,-87.17163,GLOBE , ,Brewton AL US , +WIQG2,3,142.0000 ,44.56160 ,-124.0104,GLOBE , ,Lincoln City OR US , +NTC81,3,5.900000 ,-34.57220,-58.46500,GLOBE , ,Ciudad De Buenos Aires AR , +2O4B2,3,216.2000 ,32.49510 ,-86.36860,GLOBE , ,Clanton AL US , +2R8B1,3,169.2000 ,31.83296 ,-86.62488,GLOBE , ,Greenville AL US , +GBO32,3,2270.000 ,19.52570 ,-99.19240,GLOBE , ,Mexico City MX , +G7KZ1,3,145.0000 ,34.47610 ,32.26340 ,GLOBE , ,Paphos CY , +WAUH1,3,37.00000 ,62.65290 ,-160.1913,GLOBE , ,Anvik AK US , +BERR1,3,194.0000 ,49.92100 ,15.45950 ,GLOBE , ,Vrdy CZ , +V2G21,3,22.00000 ,38.35010 ,-0.416000,GLOBE , ,Alicante, ALICANTE ES , +POFE1,3,160.7000 ,31.33618 ,-85.81481,GLOBE , ,Enterprise AL US , +95VA2,3,96.60000 ,62.95292 ,-155.5964,GLOBE , ,McGrath AK US , +TILU1,3,390.0000 ,45.87890 ,-98.14980,GLOBE , ,Britton SD US , +2ABM1,3,200.0000 ,53.28500 ,18.12500 ,GLOBE , ,Kotomierz PL , +IRDX1,3,49.20000 ,37.40680 ,126.9065 ,GLOBE , ,Inchon KR , +2F4N1,3,120.0000 ,45.80970 ,15.97500 ,GLOBE , ,Zagreb HR , +PO5Y1,3,327.5000 ,31.35383 ,-86.15319,GLOBE , ,Brantley AL US , +647X1,3,135.0000 ,42.64000 ,-73.85420,GLOBE , ,Albany NY US , +KJ2E1,3,289.2000 ,49.90660 ,15.22030 ,GLOBE , ,Malesov CZ , +RB671,3,2342.000 ,19.00000 ,-99.00000,GLOBE , ,Cuautitlan Izcalli MX , +KJ2E3,3,289.2000 ,49.90660 ,15.22030 ,GLOBE , ,Malesov CZ , +HOUJ2,3,175.0000 ,34.53650 ,-86.87850,GLOBE , ,Priceville AL US , +KORL4,3,124.4000 ,32.45419 ,-86.45624,GLOBE , ,Prattville AL US , +KORL2,3,113.2000 ,32.45000 ,-86.46000,GLOBE , ,Prattville AL US , +KORL1,3,78.10000 ,32.45500 ,-86.46812,GLOBE , ,Prattville AL US , +OV471,3,223.0000 ,39.32630 ,-81.89340,GLOBE , ,Stewart OH US , +DYD94,3,2257.100 ,19.69570 ,-99.19330,GLOBE , ,Cuautitlan Izcalli MX , +KP572,3,597.4000 ,41.03100 ,21.34200 ,GLOBE , ,Bitola MK , +68LJ3,3,98.60000 ,53.64100 ,21.53550 ,GLOBE , ,Ruciane-Nida PL , +JWV82,3,767.0000 ,41.00500 ,-6.433300,GLOBE , ,Vitigudino, SALAMANCA ES , +YUSD1,3,334.1000 ,33.47781 ,-86.78630,GLOBE , ,Homewood AL US , +CURU2,3,151.3000 ,31.60281 ,-85.72234,GLOBE , ,Ariton AL US , +F3JU1,3,8.000000 ,52.25000 ,4.442800 ,GLOBE , ,2202 XW Noordwijk NL , +ESI41,3,348.2000 ,46.33510 ,6.888940 ,GLOBE , ,Vouvry CH , +LO7Q1,3,207.1000 ,31.57195 ,-86.18739,GLOBE , ,Highland Home AL US , +WVSO1,3,75.90000 ,12.68660 ,100.8987 ,GLOBE , ,Chonburi TH , +L6VL1,3,1489.000 ,5.279100 ,10.23660 ,GLOBE , ,Bafoussam CM , +PQPB4,3,253.8000 ,41.82155 ,-88.07654,GLOBE , ,Lisle IL US , +2O4B3,3,216.2000 ,32.49510 ,-86.36860,GLOBE , ,Clanton AL US , +WWQN2,3,58.40000 ,-33.01822,-61.04175,GLOBE , ,PUJATO S. Fe AR , +MZBX1,3,81.00000 ,50.91930 ,6.357900 ,GLOBE , ,Juelich DE , +673O2,3,76.00000 ,32.41595 ,-87.02782,GLOBE , ,Selma AL US , +ZC6P1,3,87.00000 ,33.25552 ,-87.75246,GLOBE , ,Buhl AL US , +II5P1,3,154.0000 ,33.17490 ,-86.80590,GLOBE , ,Alabaster AL US , +G7NH1,3,185.0000 ,32.81670 ,35.38330 ,GLOBE , ,Lower Galilee IL , +67JF1,3,114.8000 ,33.30149 ,-87.59235,GLOBE , ,Northport AL US , +XC7V1,3,136.4000 ,31.33042 ,-85.59577,GLOBE , ,Newton AL US , +BYQE2,3,160.8000 ,31.71312 ,-86.27586,GLOBE , ,Luverne AL US , +3Y4V1,3,45.60000 ,32.47500 ,35.08000 ,GLOBE , ,Barta'a IL , +YQY41,3,125.7000 ,33.74861 ,-88.12278,GLOBE , ,Vernon AL US , +Y4LM1,3,374.0000 ,39.03190 ,-97.59630,GLOBE , ,Bennington KS US , +ZUZL2,3,240.5000 ,34.78114 ,-86.96410,GLOBE , ,Athens AL US , +GZBW4,3,106.0000 ,32.30178 ,-86.34657,GLOBE , ,Montgomery AL US , +H2KK2,3,215.3000 ,34.56778 ,-86.99684,GLOBE , ,Decatur AL US , +3XL71,3,72.00000 ,57.50470 ,24.70920 ,GLOBE , ,Limbazi LV , +TSJD2,3,239.5000 ,34.47939 ,-86.57785,GLOBE , ,Athens AL US , +8ZK81,3,365.0000 ,50.50110 ,12.12642 ,GLOBE , ,Plauen DE , +KWXB2,3,140.0000 ,55.85130 ,26.45670 ,GLOBE , ,Randene, Daugavpils Region LV , +Q5OA1,3,72.60000 ,26.10782 ,50.50645 ,GLOBE , ,Hamad Town BH , +CABR1,3,25.00000 ,42.56820 ,17.08340 ,GLOBE , ,Korcula HR , +478N1,3,133.6000 ,31.72046 ,-86.10164,GLOBE , ,Goshen AL US , +OOUJ1,3,185.2000 ,32.42138 ,-85.68800,GLOBE , ,Tuskegee AL US , +TVO31,3,602.0000 ,40.22830 ,-3.983400,GLOBE , ,Navalcarnero, MADRID ES , +6TXQ1,3,281.8000 ,49.12270 ,16.40560 ,GLOBE , ,BRNO CZ , +LKEJ4,3,369.2000 ,34.33338 ,-86.76392,GLOBE , ,Eva AL US , +ZAM63,3,60.80000 ,32.36225 ,-86.31324,GLOBE , ,Montgomery AL US , +HU6G1,3,58.00000 ,31.95990 ,-87.66110,GLOBE , ,Pine Hill AL US , +H2KK4,3,212.5000 ,34.56861 ,-86.99680,GLOBE , ,Decatur AL US , +LCD71,3,106.0000 ,51.73960 ,8.684200 ,GLOBE , ,Paderborn DE , +9J9Q1,3,111.5000 ,32.40273 ,-87.06638,GLOBE , ,Selma AL US , +HZS51,3,60.70000 ,52.12915 ,21.22677 ,GLOBE , ,Jozefow PL , +TIAN1,3,667.0000 ,36.75110 ,-82.04420,GLOBE , ,Abingdon VA US , +OZ421,3,454.4000 ,49.08290 ,15.42940 ,GLOBE , ,Dacice CZ , +ICHW1,3,218.0000 ,32.60244 ,-85.80535,GLOBE , ,Nostasulga AL US , +5R832,3,148.7000 ,31.33992 ,-86.00650,GLOBE , ,Jack AL US , +S2661,3,640.0000 ,36.71260 ,-82.01740,GLOBE , ,Abingdon VA US , +EUR86,3,379.3000 ,34.36258 ,-86.14200,GLOBE , ,Albertville AL US , +E2YS1,3,535.0000 ,47.44320 ,9.138150 ,GLOBE , ,Niederuzwil CH , +X9B64,3,215.6000 ,34.59589 ,-87.06543,GLOBE , ,Trinity, AL AL US , +6EG62,3,75.00000 ,31.95000 ,34.81000 ,GLOBE , ,RISHON LETSIYON IL , +D9RE1,3,266.0000 ,33.64640 ,-86.81780,GLOBE , ,Gardendale AL US , +56DV1,3,163.0000 ,33.18160 ,-86.25890,GLOBE , ,Sylacauga AL US , +STUY2,3,180.3000 ,34.91846 ,-88.06618,GLOBE , ,Waterloo AL US , +LI5W1,3,220.0000 ,33.49390 ,-86.89720,GLOBE , ,Birmingham AL US , +78CJ1,3,56.70000 ,30.44570 ,-84.18440,GLOBE , ,Tallahassee FL US , +S9YI7,3,796.5000 ,-39.89990,-71.13389,GLOBE , ,Junin De Los Andes AR , +WUOE1,3,782.0000 ,3.513900 ,11.30410 ,GLOBE , ,Yaounde CM , +VLAH1,3,28.00000 ,56.31960 ,24.26180 ,GLOBE , ,Bauska Region LV , +PN6F1,3,2869.000 ,0.400000 ,-77.35000,GLOBE , ,El Carmelo - Carchi EC , +7CKN3,3,50.00000 ,45.33940 ,14.42920 ,GLOBE , ,Rijeka HR , +N8W91,3,245.3000 ,34.45759 ,-86.92159,GLOBE , ,Hartselle AL US , +V3HW1,3,272.8000 ,32.07444 ,-85.52947,GLOBE , ,Midway AL US , +WVSO2,3,21.60000 ,12.68675 ,100.9690 ,GLOBE , ,Chonburi TH , +AH2I1,3,35.60000 ,61.16369 ,-149.8533,GLOBE , ,Anchorage AK US , +N8W92,3,273.9000 ,34.45759 ,-86.92159,GLOBE , ,Hartselle AL US , +RIWO1,3,60.50000 ,40.88290 ,-73.83124,GLOBE , ,Bronx NY US , +GJJW1,3,1377.000 ,31.25200 ,34.96100 ,GLOBE , ,Beer Sheva IL , +6HGH1,3,673.0000 ,47.02330 ,7.395100 ,GLOBE , ,Schuepfen CH , +BESQ1,3,6.000000 ,30.35400 ,-89.14700,GLOBE , ,Long Beach MS US , +WNC31,3,114.8000 ,31.42370 ,-86.10291,GLOBE , ,Eba AL US , +4T9I1,3,85.90000 ,32.15115 ,-86.68226,GLOBE , ,Hayneville AL US , +YRYS1,3,1173.200 ,39.85000 ,32.82600 ,GLOBE , ,Ankara TR , +QQBN2,3,212.0000 ,17.81590 ,103.8592 ,GLOBE , ,Sakolnakorn TH , +VXAX1,3,218.0000 ,7.117500 ,1.588600 ,GLOBE , ,Abomey,Zou BJ , +4EEM1,3,63.00000 ,41.14200 ,22.50470 ,GLOBE , ,Gevgelija MK , +9H8R1,3,495.0000 ,49.06026 ,15.58821 ,GLOBE , ,Mysliborice CZ , +EFVX1,3,168.1000 ,33.08478 ,-86.56470,GLOBE , ,Shelby AL US , +Q7UM3,3,100.0000 ,56.00000 ,22.00000 ,GLOBE , ,LT-54200 Siauliu R. Sav. LT , +YBVJ3,3,263.8000 ,34.26930 ,-86.50580,GLOBE , ,Hartselle, AL AL US , +YIO91,3,18.50000 ,32.05000 ,34.75000 ,GLOBE , ,Ashkelon IL , +22MS2,3,151.1000 ,33.00692 ,-86.20174,GLOBE , ,Rockford AL US , +QJ7U1,3,109.5000 ,42.10000 ,-73.36000,GLOBE , ,Sheffield MA US , +KWXB1,3,140.0000 ,55.85130 ,26.45670 ,GLOBE , ,Randene, Daugavpils Region LV , +56DV2,3,207.1000 ,33.17856 ,-86.25763,GLOBE , ,Sylacauga AL US , +62LL2,3,109.0000 ,31.50000 ,-87.80000,GLOBE , ,Jackson AL US , +62LL1,3,109.3000 ,31.53086 ,-87.89569,GLOBE , ,Jackson AL US , +4G5U1,3,378.0000 ,59.74550 ,-151.2587,GLOBE , ,Homer AK US , +ECJH1,3,61.00000 ,44.41920 ,-69.01560,GLOBE , ,Belfast ME US , +LDRH1,3,185.8000 ,33.22243 ,-86.83234,GLOBE , ,Randolph AL US , +9Y9F1,3,103.6000 ,33.19045 ,-87.52012,GLOBE , ,Tuscaloosa AL US , +4VC71,3,279.0000 ,31.78000 ,34.22000 ,GLOBE , ,Arrabe IL , +P5BW1,3,219.0000 ,33.50892 ,-86.14043,GLOBE , ,Talladega AL US , +RLQE5,3,212.1000 ,33.69393 ,-86.68438,GLOBE , ,Pinson AL US , +WBKL2,3,737.5000 ,28.22892 ,36.32771 ,GLOBE , ,Tabuk SA , +3IRA2,3,386.8000 ,47.44900 ,8.593000 ,GLOBE , ,Konstanz DE , +O6662,3,92.20000 ,32.28530 ,-87.89764,GLOBE , ,Jackson AL US , +DO9B2,3,95.80000 ,47.90020 ,21.05650 ,GLOBE , ,Tiszaujvaros HU , +XQSE1,3,2234.000 ,19.48330 ,-99.05000,GLOBE , ,Nezahualcoyotl MX , +DSGT3,3,193.2000 ,33.33438 ,-86.63524,GLOBE , ,Chelsea AL US , +5D6W2,3,200.0000 ,34.62034 ,-86.99468,GLOBE , ,Decatur AL US , +LKEJ3,3,358.6000 ,34.33419 ,-86.76507,GLOBE , ,Eva AL US , +ZDFB1,3,435.0000 ,31.70000 ,32.34000 ,GLOBE , ,Rama Village IL , +BO6Y2,3,137.2000 ,32.62895 ,-87.33636,GLOBE , ,Marion AL US , +99V21,3,165.5000 ,34.73857 ,-87.66251,GLOBE , ,Muscle Shoals AL US , +8SUC1,3,127.4000 ,33.20964 ,-87.50245,GLOBE , ,Tuscaloosa AL US , +75F61,3,10.00000 ,43.48130 ,15.39050 ,GLOBE , ,Tisno HR , +CMZJ1,3,150.1000 ,33.19917 ,-87.48791,GLOBE , ,Tuscaloosa AL US , +COBB1,3,83.80000 ,32.30488 ,-87.79558,GLOBE , ,Linden AL US , +II5P2,3,186.5000 ,33.17620 ,-86.80930,GLOBE , ,Alabaster AL US , +BNPI4,3,199.0000 ,33.30960 ,-86.79020,GLOBE , ,Pelham AL US , +O6661,3,156.8000 ,31.53000 ,-87.89000,GLOBE , ,Jackson AL US , +U4NY2,3,132.9000 ,33.24286 ,-87.52815,GLOBE , ,Tuscaloosa AL US , +44029,3,0.000000 ,42.52000 ,-70.57000,GoMOOS , ,Massachusetts Bay , +44030,3,0.000000 ,43.18000 ,-70.43000,GoMOOS , ,Western Maine Shelf , +44031,3,0.000000 ,43.57000 ,-70.06000,GoMOOS , ,Casco Bay , +44021,3,0.000000 ,43.78000 ,-69.89000,GoMOOS , ,New Meadows River , +D0202,3,0.000000 ,43.76000 ,-69.99000,GoMOOS , ,Harpswell Sound, Bowdoin , +44032,3,0.000000 ,43.71000 ,-69.36000,GoMOOS , ,Central Maine Shelf , +44033,3,0.000000 ,44.05000 ,-69.00000,GoMOOS , ,Penobscot Bay , +44034,3,0.000000 ,44.11000 ,-68.11000,GoMOOS , ,Eastern Maine Shelf , +44035,3,0.000000 ,44.89000 ,-67.01000,GoMOOS , ,Cobscook Bay , +44038,3,0.000000 ,43.64000 ,-66.55000,GoMOOS , ,Scotian Shelf , +44037,3,0.000000 ,43.49000 ,-67.87000,GoMOOS , ,Jordan Basin , +44024,3,0.000000 ,42.33000 ,-65.91000,GoMOOS , ,Northeast Channel , +1LSU ,1,20.67680 ,30.40740 ,-91.18000,GPSMET , ,Baton Rouge, LA , +1NSU ,1,54.09960 ,31.75080 ,-93.09800,GPSMET , ,Natchitoches, LA , +1ULM ,1,41.92520 ,32.52900 ,-92.07600,GPSMET , ,Monroe, LA , +ABQ1 ,1,1740.026 ,34.95740 ,-106.4940,GPSMET , ,Kirtland AFB, NM , +ABQ6 ,1,1741.200 ,34.95740 ,-106.4940,GPSMET , ,Kirtland AFB, NM , +ACU5 ,1,34.08510 ,41.74360 ,-70.88700,GPSMET , ,Acushnet, MA , +ADRI ,1,240.7659 ,41.91900 ,-84.02400,GPSMET , ,Adrian, MI , +AIS5 ,1,37.31680 ,55.06890 ,-131.5990,GPSMET , ,Annette Island, AK , +ALBH ,1,50.74940 ,48.38980 ,-123.4870,GPSMET , ,Victoria, BC , +ALCA ,1,156.9295 ,33.10460 ,-86.75100,GPSMET , ,Calera, AL , +ALGO ,1,237.1194 ,45.95580 ,-78.07100,GPSMET , ,Algonquin Park, ON , +AMC2 ,1,1929.844 ,38.80310 ,-104.5250,GPSMET , ,Shriever AFB, CO , +ANG5 ,1,18.95480 ,29.30150 ,-95.48500,GPSMET , ,Angleton, TX , +ANP5 ,1,53.24040 ,39.01030 ,-76.60900,GPSMET , ,Annapolis, MD , +ARDN ,1,281.0011 ,45.10750 ,-93.18000,GPSMET , ,Arden Hills, MN , +AREQ ,1,2447.348 ,-16.46550,-71.49300,GPSMET , ,Arequipa, PE , +ARLR ,1,99.62830 ,34.67260 ,-92.38300,GPSMET , ,Little Rock, AR , +ARP5 ,1,11.25490 ,27.83840 ,-97.05900,GPSMET , ,Aransas Pass, TX , +ASPA ,1,22.54200 ,-14.32610,-170.7220,GPSMET , ,Pago Pago, AS , +AST2 ,1,1782.545 ,39.39040 ,-117.3090,GPSMET , ,Austin, NV , +AVCA ,1,235.1410 ,43.06090 ,-82.68800,GPSMET , ,Avoca, MI , +AZCN5,1,1881.926 ,36.83980 ,-107.9110,GPSMET , ,Aztec, NM , +BAIE ,1,53.30850 ,49.18680 ,-68.26300,GPSMET , ,Baie Comeau, QC , +BAMF ,1,29.49850 ,48.83530 ,-125.1350,GPSMET , ,Bamfield, BC , +BARH ,1,30.74040 ,44.39500 ,-68.22200,GPSMET , ,Bar Harbor, ME , +BARN ,1,165.1305 ,44.09910 ,-71.16000,GPSMET , ,Bartlett, NH , +BAYR ,1,183.2097 ,43.44620 ,-83.89200,GPSMET , ,Saginaw, MI , +BBD2 ,1,1755.561 ,39.30850 ,-120.5180,GPSMET , ,Big Bend, CA , +BBY6 ,1,14.59000 ,38.31920 ,-123.0730,GPSMET , ,Bodega Bay, CA , +BCOV ,1,52.30610 ,50.54430 ,-126.8430,GPSMET , ,Beaver Cove, BC , +BDOS ,1,9.932600 ,13.08800 ,-59.60900,GPSMET , ,Bridgetown, BB , +BET1 ,1,38.20960 ,60.78790 ,-161.8420,GPSMET , ,Bethel, AK , +BFNY ,1,180.6024 ,42.87760 ,-78.89000,GPSMET , ,Buffalo, NY , +BIL5 ,1,887.9067 ,45.97120 ,-107.9960,GPSMET , ,Billings, MT , +BKLY ,1,722.3615 ,37.79780 ,-81.15200,GPSMET , ,Beckley, WV , +BKR2 ,1,90.68150 ,35.13260 ,-119.1090,GPSMET , ,Bakersfield, CA , +BKVL ,1,19.83090 ,28.47380 ,-82.45400,GPSMET , ,Brooksville, FL , +BLKV ,1,636.6761 ,37.20600 ,-80.41500,GPSMET , ,Blacksburg, VA , +BLMM7,1,127.3367 ,36.87980 ,-89.97300,GPSMET , ,Bloomfield, MO , +BLOW ,1,352.6700 ,24.17180 ,121.5710 ,GPSMET , ,Buluowan, TW , +BLRW3,1,222.4787 ,43.23030 ,-90.53100,GPSMET , ,Blue River, WI , +BLSA ,1,12.44480 ,33.79950 ,-118.0290,GPSMET , ,Huntington Beach, CA , +BRFT ,1,30.20330 ,-3.877400,-38.42600,GPSMET , ,Fortaleza, BR , +BRIG ,1,294.6576 ,42.52010 ,-83.75700,GPSMET , ,Brighton, MI , +BRMU ,1,19.72130 ,32.37040 ,-64.69600,GPSMET , ,Bermuda, BD , +BRTW ,1,38.25660 ,27.94960 ,-81.78300,GPSMET , ,Bartow, FL , +BRU5 ,1,27.75530 ,43.88980 ,-69.94700,GPSMET , ,Brunswick, ME , +BRW1 ,1,16.01430 ,71.28280 ,-156.7900,GPSMET , ,Pt Barrow, AK , +BSMK ,1,572.6980 ,46.82110 ,-100.8170,GPSMET , ,Bismark, ND , +BVHS ,1,8.478900 ,29.33680 ,-89.40600,GPSMET , ,Boothville, LA , +CAE1 ,1,546.0855 ,34.75130 ,-115.2300,GPSMET , ,Essex, CA , +CALU ,1,181.3872 ,41.72980 ,-87.53800,GPSMET , ,Chicago, IL , +CARM ,1,197.5326 ,46.86840 ,-68.01400,GPSMET , ,Caribou, ME , +CASL ,1,19.35400 ,34.34460 ,-77.87500,GPSMET , ,Castle-Hayne, NC , +CASP ,1,1584.349 ,42.81920 ,-106.3840,GPSMET , ,Casper, WY , +CASS ,1,230.9639 ,43.60200 ,-83.16100,GPSMET , ,Cass City, MI , +CAT2 ,1,513.6028 ,33.31160 ,-118.3340,GPSMET , ,Catalina Island, CA , +CBSB ,1,12.05500 ,19.71200 ,-79.83300,GPSMET , ,Stake Bay, CJ , +CCJM ,1,159.8000 ,27.09560 ,142.1850 ,GPSMET , ,Chichijima, JP , +CCL1 ,1,74.47060 ,37.11070 ,-120.2410,GPSMET , ,Chowchilla, CA , +CCNY ,1,98.38020 ,40.81920 ,-73.94900,GPSMET , ,New York, NY , +CCO2 ,1,42.32170 ,39.69990 ,-121.9070,GPSMET , ,Chico, CA , +CCV6 ,1,3.817800 ,28.46020 ,-80.54500,GPSMET , ,Cape Canaveral, FL , +CDB7 ,1,36.40880 ,55.20030 ,-162.7180,GPSMET , ,Cold Bay, AK , +CENA2,1,272.3756 ,65.49820 ,-144.6780,GPSMET , ,Central, AK , +CFC4 ,1,646.9387 ,39.07940 ,-120.9380,GPSMET , ,Colfax, CA , +CHB1 ,1,180.9622 ,45.65350 ,-84.46600,GPSMET , ,Cheboygan, MI , +CHB6 ,1,180.9622 ,45.65350 ,-84.46600,GPSMET , ,Cheboygan, MI , +CHI5 ,1,82.41750 ,60.23750 ,-146.6470,GPSMET , ,Cape Hinchinbrook, AK , +CHME ,1,255.9572 ,35.27670 ,-80.88900,GPSMET , ,Charlotte, NC , +CHO1 ,1,44.58490 ,39.43260 ,-121.6650,GPSMET , ,Chico, CA , +CHO5 ,1,44.58490 ,39.43260 ,-121.6650,GPSMET , ,Chico, CA , +CHUR ,1,28.90160 ,58.75910 ,-94.08900,GPSMET , ,Churchill, MB , +CHWK ,1,193.3574 ,49.15660 ,-122.0080,GPSMET , ,Chilliwack, BC , +CLGO ,1,185.2746 ,64.87380 ,-147.8600,GPSMET , ,College, AK , +CLK1 ,1,439.7969 ,44.93560 ,-97.96100,GPSMET , ,Clark, SD , +CLK5 ,1,439.8178 ,44.93560 ,-97.96100,GPSMET , ,Clark, SD , +CLRE ,1,189.3599 ,42.72390 ,-82.59600,GPSMET , ,Saint Clair, MI , +CME1 ,1,336.8653 ,40.44180 ,-124.3960,GPSMET , ,Cape Mendocino, CA , +CME5 ,1,337.0501 ,40.44180 ,-124.3960,GPSMET , ,Cape Mendocino, CA , +CMOD ,1,60.03150 ,37.64130 ,-121.0000,GPSMET , ,Modesto, CA , +CNWM7,1,387.3814 ,37.52280 ,-92.70300,GPSMET , ,Conway, MO , +COKO ,1,25.22140 ,28.51170 ,-80.79400,GPSMET , ,Titusville, FL , +COLA ,1,112.4262 ,34.08100 ,-81.12200,GPSMET , ,Columbia, SC , +COLB ,1,218.9716 ,39.95980 ,-83.04600,GPSMET , ,Columbus, OH , +COLO ,1,305.8516 ,44.76990 ,-93.81300,GPSMET , ,Cologne, MN , +CONO ,1,300.2457 ,35.70260 ,-81.23400,GPSMET , ,Conover, NC , +COSA ,1,420.8762 ,33.56870 ,-111.8820,GPSMET , ,Scottsdale, AZ , +COT1 ,1,762.4510 ,32.22450 ,-110.9720,GPSMET , ,Tucson, AZ , +COVX ,1,36.95850 ,36.90460 ,-75.71300,GPSMET , ,Chesapeake Lighthouse, VA , +CTOU ,1,5.440000 ,22.75470 ,120.2780 ,GPSMET , ,CTOU, TW , +CTRC ,1,296.5322 ,45.39890 ,-92.82200,GPSMET , ,Center City, MN , +DAEJ ,1,92.80000 ,36.39940 ,127.3740 ,GPSMET , ,Daejeon, KR , +DCHU ,1,57.47810 ,39.05410 ,-76.87700,GPSMET , ,Beltsville, MD , +DEFI ,1,216.3530 ,41.27700 ,-84.41400,GPSMET , ,Defiance, OH , +DET6 ,1,180.3041 ,42.29730 ,-83.09500,GPSMET , ,Detroit, MI , +DFNK ,1,86.52130 ,30.73350 ,-86.15000,GPSMET , ,De Funiak Springs, FL , +DNAN ,1,28.29500 ,23.67380 ,120.4480 ,GPSMET , ,Dounan, TW , +DOND ,1,695.5529 ,37.26430 ,-119.6900,GPSMET , ,Coarsegold, CA , +DPIN ,1,716.6892 ,24.04310 ,120.9330 ,GPSMET , ,Dapingding, TW , +DQUA4,1,196.0030 ,34.11070 ,-94.29000,GPSMET , ,DeQueen, AR , +DRAO ,1,558.1735 ,49.32260 ,-119.6250,GPSMET , ,Penticton, BC , +DRV5 ,1,13.31820 ,36.95870 ,-76.55700,GPSMET , ,Driver, VA , +DSIN ,1,153.0480 ,23.63120 ,121.3980 ,GPSMET , ,Guangfu, TW , +DSRC ,1,1670.260 ,39.99140 ,-105.2610,GPSMET , ,Boulder, CO , +DUNN ,1,19.74730 ,29.06220 ,-82.37100,GPSMET , ,Dunnellon, FL , +EDAA ,1,196.4418 ,33.53860 ,-86.75500,GPSMET , ,Birmingham, AL , +ENG5 ,1,7.361100 ,29.87920 ,-89.94200,GPSMET , ,English Turn, LA , +EPRT ,1,52.82480 ,44.90870 ,-66.99200,GPSMET , ,Eastport, ME , +FAI1 ,1,137.4598 ,64.80960 ,-147.8470,GPSMET , ,Fairbanks, AK , +FAYR ,1,48.95430 ,35.03400 ,-78.87100,GPSMET , ,Fayetteville, NC , +FBYN1,1,430.5081 ,40.07690 ,-97.31300,GPSMET , ,Fairbury, NE , +FEI1 ,1,253.7388 ,29.53960 ,-98.41600,GPSMET , ,San Antonio, TX , +FENP ,1,16.51300 ,23.59850 ,121.5190 ,GPSMET , ,Fongbin, TW , +FKDO ,1,535.5110 ,23.68360 ,120.8560 ,GPSMET , ,Fenggueidou, TW , +FLIU ,1,26.64000 ,25.75460 ,-80.37400,GPSMET , ,Miami, FL , +FMYR ,1,9.286300 ,26.59100 ,-81.86400,GPSMET , ,Fort Myers, FL , +FREO ,1,307.2889 ,40.20170 ,-81.25800,GPSMET , ,Freeport Outpost, OH , +FRTG ,1,191.2971 ,43.03760 ,-82.48800,GPSMET , ,Fort Gratiot, MI , +FST5 ,1,2159.856 ,35.22180 ,-111.8170,GPSMET , ,Flagstaff, AZ , +FTS6 ,1,10.13580 ,46.20520 ,-123.9560,GPSMET , ,Fort Stevens, OR , +FVPK ,1,23.73260 ,33.66230 ,-117.9360,GPSMET , ,Costa Mesa, CA , +GCGT ,1,24.54000 ,19.29290 ,-81.37900,GPSMET , ,George Town, CJ , +GDAC2,1,1156.459 ,37.77550 ,-102.1800,GPSMET , ,Granada, CO , +GDMA ,1,188.1436 ,47.74860 ,-90.34100,GPSMET , ,Grand Marais, MN , +GLDN ,1,277.9172 ,45.00070 ,-93.35100,GPSMET , ,Golden Valley, MN , +GNAA2,1,585.0796 ,62.11240 ,-145.9700,GPSMET , ,Glennallen, AK , +GNVL ,1,50.30200 ,29.68650 ,-82.27700,GPSMET , ,Gainesville, FL , +GRAR ,1,189.5462 ,42.98880 ,-85.67400,GPSMET , ,Grand Rapids, MI , +GSSP ,1,269.6647 ,38.94570 ,-80.82600,GPSMET , ,Glenville, WV , +GUAM ,1,147.1170 ,13.58930 ,144.8680 ,GPSMET , ,Dededo, GU , +GUKW ,1,753.4260 ,24.20220 ,121.0070 ,GPSMET , ,Guguan, TW , +GUST ,1,315.8139 ,41.46280 ,-80.71600,GPSMET , ,Gustavus Outpost, OH , +GVLT ,1,280.0463 ,34.82970 ,-82.37100,GPSMET , ,Greenville, SC , +GWN5 ,1,752.2792 ,45.78260 ,-121.3280,GPSMET , ,Appleton, WA , +HAC5 ,1,279.7676 ,34.28060 ,-87.85600,GPSMET , ,Hackelburg, AL , +HAG2 ,1,155.0924 ,39.55350 ,-77.71400,GPSMET , ,Hagerstown, MD , +HAG6 ,1,155.0924 ,39.55350 ,-77.71400,GPSMET , ,Hagerstown, MD , +HAMM ,1,32.93190 ,30.51310 ,-90.46800,GPSMET , ,Hammond, LA , +HBCH ,1,180.7866 ,43.84630 ,-82.64300,GPSMET , ,Harbor Beach, MI , +HBRK1,1,439.7072 ,38.30460 ,-97.29400,GPSMET , ,Hillsboro, KS , +HDF6 ,1,72.36440 ,43.27080 ,-73.53900,GPSMET , ,Hudson Falls, NY , +HILB ,1,201.6405 ,36.05280 ,-79.10300,GPSMET , ,Hillsborough, NC , +HILO ,1,11.67520 ,19.71920 ,-155.0530,GPSMET , ,Hilo, HI , +HIPT ,1,297.8964 ,35.96570 ,-80.01400,GPSMET , ,High Point, NC , +HKLO2,1,218.5529 ,35.68280 ,-95.86300,GPSMET , ,Haskell, OK , +HLFX ,1,24.89490 ,44.68360 ,-63.61100,GPSMET , ,Halifax, NS , +HOUM ,1,12.69190 ,29.59230 ,-90.72400,GPSMET , ,Houma, LA , +HOUS ,1,40.57440 ,29.77940 ,-95.43300,GPSMET , ,Houston, TX , +HRN1 ,1,619.9144 ,40.87800 ,-78.18100,GPSMET , ,Hawk Run, PA , +HRN2 ,1,620.7901 ,40.87780 ,-78.18100,GPSMET , ,Hawk Run, PA , +HRN6 ,1,620.7901 ,40.87780 ,-78.18100,GPSMET , ,Hawk Run, PA , +HRST ,1,267.0148 ,49.66740 ,-83.51100,GPSMET , ,Hearst, ON , +HRUF ,1,197.9515 ,42.28480 ,-83.34000,GPSMET , ,Wayne, MI , +HTV5 ,1,196.8944 ,36.35770 ,-86.09000,GPSMET , ,Hartsville, TN , +HUWE ,1,10.07130 ,23.72940 ,120.2870 ,GPSMET , ,Huwei, TW , +HVLK1,1,646.5436 ,37.65150 ,-99.10700,GPSMET , ,Haviland, KS , +HWCC ,1,76.97210 ,21.40990 ,-157.8140,GPSMET , ,Windward Lei, HI , +HYWD ,1,299.5335 ,44.90600 ,-93.98700,GPSMET , ,Hollywood, MN , +IDPO ,1,1392.059 ,42.86560 ,-112.4320,GPSMET , ,Pocatello, ID , +IDTD ,1,805.5871 ,43.65290 ,-116.2830,GPSMET , ,Boise, ID , +ILSA ,1,185.3505 ,39.77860 ,-89.61000,GPSMET , ,Springfield, IL , +INPA ,1,97.59730 ,-3.095900,-59.99000,GPSMET , ,Manaus, BR , +JAMA ,1,13.30000 ,17.93900 ,-76.78100,GPSMET , ,Kingston, JM , +JLUT ,1,7.407000 ,22.33000 ,120.6230 ,GPSMET , ,Jialutang, TW , +JNU1 ,1,11.23560 ,58.36260 ,-134.5860,GPSMET , ,Juneau, AK , +JTNT2,1,708.8283 ,33.01720 ,-100.9770,GPSMET , ,Jayton, TX , +JXVL ,1,9.099400 ,30.48400 ,-81.70100,GPSMET , ,Jacksonville, FL , +KASU ,1,163.8230 ,22.81020 ,120.6330 ,GPSMET , ,KASU, TW , +KEN5 ,1,50.16800 ,60.67480 ,-151.3500,GPSMET , ,Kenai, AK , +KEW5 ,1,197.2968 ,47.22710 ,-88.62400,GPSMET , ,Upper Keweenaw, MI , +KING ,1,1157.806 ,35.19740 ,-114.0410,GPSMET , ,Kingman, AZ , +KJUN ,1,20.46780 ,30.22140 ,-92.04500,GPSMET , ,Lafayette, LA , +KNGS ,1,83.21600 ,44.21870 ,-76.51700,GPSMET , ,Kingston, ON , +KNS5 ,1,13.81160 ,33.48200 ,-79.34300,GPSMET , ,Kensington, SC , +KOD5 ,1,14.00450 ,57.61760 ,-152.1940,GPSMET , ,Kodiak, AK , +KOK1 ,1,7.095400 ,21.98350 ,-159.7580,GPSMET , ,Kokole Point, HI , +KOK5 ,1,7.095400 ,21.98350 ,-159.7580,GPSMET , ,Kokole Point, HI , +KST5 ,1,333.6675 ,39.04460 ,-96.03900,GPSMET , ,Topeka, KS , +KUUJ ,1,42.55470 ,55.27840 ,-77.74500,GPSMET , ,Kuujjuarapik, QC , +KWST ,1,9.995600 ,24.55370 ,-81.75400,GPSMET , ,Key West, FL , +KYW1 ,1,7.863400 ,24.58230 ,-81.65300,GPSMET , ,Geiger Key, FL , +KYW5 ,1,7.863400 ,24.58230 ,-81.65300,GPSMET , ,Geiger Key, FL , +LANS ,1,274.9492 ,42.67390 ,-84.66300,GPSMET , ,Lansing, MI , +LAUD ,1,5.863500 ,26.19620 ,-80.17300,GPSMET , ,Fort Lauderdale, FL , +LDBT2,1,124.5873 ,30.08950 ,-96.77900,GPSMET , ,Ledbetter, TX , +LEBA ,1,257.8924 ,39.43050 ,-84.28300,GPSMET , ,Lebanon, OH , +LEMA ,1,68.47780 ,36.29200 ,-119.7820,GPSMET , ,Lemoore, CA , +LESU ,1,267.1172 ,44.44120 ,-93.90700,GPSMET , ,LeSueur, MN , +LESV ,1,102.2559 ,31.14250 ,-93.26900,GPSMET , ,Leesville, LA , +LGUE ,1,244.3178 ,22.99290 ,120.6350 ,GPSMET , ,Lugu, TW , +LHS1 ,1,85.84570 ,35.62200 ,-119.6870,GPSMET , ,Lost Hills, CA , +LIKN ,1,40.42170 ,22.75860 ,120.5280 ,GPSMET , ,Liang, TW , +LKN1 ,1,1600.648 ,40.85990 ,-115.7420,GPSMET , ,Elko, NV , +LMCN ,1,8.449900 ,29.25500 ,-90.66100,GPSMET , ,Cocodrie, LA , +LMNO2,1,306.3872 ,36.68540 ,-97.48100,GPSMET , ,Lamont, OK , +LNC1 ,1,35.79970 ,38.84650 ,-121.3500,GPSMET , ,Lincoln, CA , +LNKO ,1,246.7280 ,25.07640 ,121.3780 ,GPSMET , ,Linkou, TW , +LOU6 ,1,224.6668 ,38.01030 ,-85.29900,GPSMET , ,Louisville, KY , +LSUA ,1,31.51350 ,31.17880 ,-92.41200,GPSMET , ,Alexandria, LA , +LTHM7,1,293.2068 ,39.57600 ,-94.17000,GPSMET , ,Lathrop, MO , +LVW1 ,1,109.6196 ,32.37880 ,-94.71200,GPSMET , ,Longview, TX , +LWX1 ,1,92.73820 ,38.97270 ,-77.48900,GPSMET , ,Sterling, VA , +MAUI ,1,3044.413 ,20.70670 ,-156.2570,GPSMET , ,Maui, HI , +MBWW4,1,1997.796 ,41.90360 ,-106.1870,GPSMET , ,Medicine Bow, WY , +MC01 ,1,1454.066 ,39.09120 ,-108.5280,GPSMET , ,Grand Junction, CO , +MCD5 ,1,8.826500 ,27.84980 ,-82.53200,GPSMET , ,McDill AFB, FL , +MCN5 ,1,87.54120 ,32.69530 ,-83.56100,GPSMET , ,Macon, GA , +MCNE ,1,17.26550 ,30.18060 ,-93.21800,GPSMET , ,Lake Charles, LA , +MCON ,1,305.5436 ,39.66080 ,-81.82900,GPSMET , ,McConnelsville, OH , +MCSO ,1,75.78440 ,44.97380 ,-122.9560,GPSMET , ,Salem, OR , +MDO1 ,1,2026.582 ,30.68050 ,-104.0150,GPSMET , ,McDonald Observatory, TX , +MDR3 ,1,838.8349 ,46.90520 ,-103.2750,GPSMET , ,Medora, ND , +MDR5 ,1,838.8349 ,46.90520 ,-103.2750,GPSMET , ,Medora, ND , +METR ,1,294.8448 ,42.68480 ,-83.24300,GPSMET , ,Auburn Hills, MI , +MIA3 ,1,9.503700 ,25.73280 ,-80.16000,GPSMET , ,Miami, FL , +MIO1 ,1,313.5312 ,44.65140 ,-84.13300,GPSMET , ,Mio, MI , +MIZU ,1,75.77280 ,39.13520 ,141.1330 ,GPSMET , ,Mizusawa, JP , +MKEA ,1,3727.923 ,19.80140 ,-155.4560,GPSMET , ,Mauna Kea, HI , +MLF5 ,1,37.09590 ,32.09030 ,-87.39200,GPSMET , ,Millers Ferry, AL , +MLO1 ,1,3401.757 ,19.53590 ,-155.5760,GPSMET , ,Mauna Loa, HI , +MMD1 ,1,41.54000 ,20.93190 ,-89.66300,GPSMET , ,Merida, MX , +MMX1 ,1,2239.693 ,19.43160 ,-99.06800,GPSMET , ,Mexico City, MX , +MNRD ,1,303.3593 ,45.25890 ,-93.70200,GPSMET , ,Albertville, MN , +MOB1 ,1,9.088200 ,30.22750 ,-88.02400,GPSMET , ,Mobile Point, AL , +MOR5 ,1,8.470000 ,40.78950 ,-72.74600,GPSMET , ,East Moriches, NY , +MPLE ,1,233.9748 ,43.61510 ,-84.76200,GPSMET , ,Mount Pleasant, MI , +MPR1 ,1,33.16150 ,20.67900 ,-105.2490,GPSMET , ,PuertoVallarta, MX , +MRRN1,1,989.2931 ,42.90430 ,-101.6960,GPSMET , ,Merriman, NE , +MSB5 ,1,50.65850 ,34.11450 ,-90.69000,GPSMET , ,Bobo, MS , +MSD1 ,1,134.8691 ,23.16040 ,-109.7180,GPSMET , ,SanJoseDeCabo, MX , +MSOL ,1,975.0587 ,46.92940 ,-114.1090,GPSMET , ,Missoula, MT , +MTHN ,1,1.901600 ,24.72590 ,-81.04900,GPSMET , ,Marathon Key, FL , +MTMS ,1,789.4584 ,48.54100 ,-109.6870,GPSMET , ,Havre, MT , +MTNT ,1,3.697400 ,25.86580 ,-80.90700,GPSMET , ,Miami TNT, FL , +MTP1 ,1,57.39920 ,14.79140 ,-92.36800,GPSMET , ,Tapachula, MX , +MULN ,1,59.53690 ,36.56510 ,-120.0920,GPSMET , ,Huron, CA , +MYT1 ,1,1628.252 ,40.10270 ,-110.0480,GPSMET , ,Myton, UT , +MYT5 ,1,1628.252 ,40.10270 ,-110.0480,GPSMET , ,Myton, UT , +NANK ,1,5.776000 ,23.10200 ,120.2740 ,GPSMET , ,Nanke, TW , +NAPL ,1,4.433000 ,26.14860 ,-81.77600,GPSMET , ,Naples, FL , +NBR6 ,1,12.03560 ,35.17500 ,-77.05000,GPSMET , ,New Bern, NC , +NCG5 ,1,246.3061 ,36.06770 ,-79.74500,GPSMET , ,Greensboro, NC , +NDBC ,1,13.76170 ,30.35630 ,-89.61000,GPSMET , ,Stennis Space Center, MS , +NDS1 ,1,266.0595 ,37.30150 ,-95.60100,GPSMET , ,Neodesha, KS , +NESC ,1,1201.404 ,41.82720 ,-103.6610,GPSMET , ,Gearing, NE , +NLGN1,1,523.4411 ,42.20670 ,-97.79500,GPSMET , ,Neligh, NE , +NMRO ,1,1117.801 ,33.39500 ,-104.5890,GPSMET , ,Roswell, NM , +NOR1 ,1,397.3739 ,44.25580 ,-85.43700,GPSMET , ,Cadillac, MI , +NOR3 ,1,210.8150 ,45.06860 ,-83.56900,GPSMET , ,Alpena, MI , +NRC1 ,1,116.2230 ,45.45380 ,-75.62400,GPSMET , ,Ottawa, ON , +NVBM ,1,740.5459 ,35.96980 ,-115.1580,GPSMET , ,Las Vegas, NV , +NVCA ,1,673.2884 ,36.21980 ,-115.1720,GPSMET , ,Las Vegas, NV , +NVTP ,1,872.5488 ,36.09920 ,-115.3290,GPSMET , ,Las Vegas, NV , +NYEC ,1,81.13480 ,42.60850 ,-73.89400,GPSMET , ,Delmar, NY , +NYNP ,1,113.1162 ,41.74250 ,-74.08200,GPSMET , ,New Paltz, NY , +OBEC ,1,135.1291 ,44.06600 ,-123.0980,GPSMET , ,Eugene, OR , +OEOC ,1,392.8707 ,33.76590 ,-117.7440,GPSMET , ,Silverado, CA , +OKAN ,1,170.2485 ,34.19520 ,-95.62100,GPSMET , ,Antlers, OK , +OKCB ,1,11.28090 ,27.26600 ,-80.85500,GPSMET , ,Okeechobee, FL , +OKDL ,1,319.2900 ,44.99900 ,-92.96400,GPSMET , ,Oakdale, MN , +OKEE ,1,194.5734 ,42.91390 ,-82.59500,GPSMET , ,Smiths Creek, MI , +OKMA ,1,230.8980 ,34.92800 ,-95.73700,GPSMET , ,McAlester, OK , +OKMU ,1,189.7881 ,35.71670 ,-95.40200,GPSMET , ,Muskogee, OK , +OKOM6,1,131.4030 ,34.09030 ,-88.86200,GPSMET , ,Okolona, MS , +OKTE ,1,328.9203 ,35.26020 ,-96.89800,GPSMET , ,Tecumseh, OK , +OMH5 ,1,426.1803 ,41.77830 ,-95.91100,GPSMET , ,Omaha, NE , +ORK1 ,1,1280.167 ,42.28880 ,-121.6690,GPSMET , ,Klamath Falls, OR , +ORK5 ,1,1280.167 ,42.28880 ,-121.6690,GPSMET , ,Klamath Falls, OR , +ORMD ,1,8.526400 ,29.29820 ,-81.10900,GPSMET , ,Ormond Beach, FL , +ORS1 ,1,1455.813 ,44.16420 ,-119.0590,GPSMET , ,Seneca, OR , +OSPA ,1,84.75520 ,43.46490 ,-76.51200,GPSMET , ,Oswego, NY , +OTZ1 ,1,6.240000 ,66.88730 ,-162.6110,GPSMET , ,Kotzebue, AK , +PAH1 ,1,180.4777 ,19.51790 ,-154.9620,GPSMET , ,Pahoa, HI , +PAH5 ,1,180.4777 ,19.51790 ,-154.9620,GPSMET , ,Pahoa, HI , +PARY ,1,180.5755 ,45.33860 ,-80.03600,GPSMET , ,Parry Sound, ON , +PATT2,1,119.2649 ,31.77830 ,-95.71900,GPSMET , ,Palestine, TX , +PCK5 ,1,252.8516 ,46.06480 ,-84.36200,GPSMET , ,Pickford, MI , +PCLA ,1,29.35900 ,30.46900 ,-87.18900,GPSMET , ,Pensacola, FL , +PGC5 ,1,22.93690 ,48.64850 ,-123.4510,GPSMET , ,Sidney, BC , +PICL ,1,356.1213 ,51.47980 ,-90.16200,GPSMET , ,Pickle Lake, ON , +PIMO ,1,51.98000 ,14.63570 ,121.0780 ,GPSMET , ,Quezon City, PH , +PKTN ,1,176.6208 ,39.04530 ,-83.02400,GPSMET , ,Pikton, OH , +PLO3 ,1,12.71400 ,32.66540 ,-117.2430,GPSMET , ,Point Loma, CA , +PLO5 ,1,12.71400 ,32.66540 ,-117.2430,GPSMET , ,Point Loma, CA , +PLS1 ,1,989.2622 ,47.66380 ,-114.1140,GPSMET , ,Polson, MT , +PLS5 ,1,988.8351 ,47.66380 ,-114.1140,GPSMET , ,Polson, MT , +PLTC2,1,1519.420 ,40.18160 ,-104.7260,GPSMET , ,Platteville, CO , +PLTK ,1,8.845100 ,29.66340 ,-81.68800,GPSMET , ,Palatka, FL , +PNB1 ,1,58.10730 ,44.45170 ,-68.77200,GPSMET , ,Penobscot, ME , +PNB5 ,1,58.10730 ,44.45170 ,-68.77200,GPSMET , ,Penobscot, ME , +PNCY ,1,9.042800 ,30.20460 ,-85.67800,GPSMET , ,Panama City, FL , +PNR1 ,1,443.8385 ,46.86350 ,-94.72200,GPSMET , ,Pine River, MN , +POT5 ,1,22.33000 ,61.13330 ,-146.2670,GPSMET , ,Potato Point, AK , +PPB5 ,1,11.33660 ,35.66480 ,-121.2850,GPSMET , ,Point Piedras Blancas, CA , +PPT5 ,1,41.24960 ,37.18710 ,-122.3900,GPSMET , ,Pigeon Point, CA , +PRCO2,1,329.4813 ,34.97990 ,-97.51900,GPSMET , ,Purcell, OK , +PRDS ,1,1263.653 ,50.87140 ,-114.2930,GPSMET , ,Alberta, QC , +PRRY ,1,13.37700 ,30.07790 ,-83.57500,GPSMET , ,Perry-Foley Airport, FL , +PSC1 ,1,502.8142 ,44.43450 ,-74.25000,GPSMET , ,Paul Smiths, NY , +PSCC ,1,310.3783 ,35.94820 ,-84.16700,GPSMET , ,Knoxville, TN , +PSTE ,1,65.25500 ,21.29730 ,-157.8160,GPSMET , ,U of HI Manoa, HI , +PTAL ,1,109.1391 ,49.25630 ,-124.8610,GPSMET , ,Port Alberni, BC , +PTRF ,1,191.5000 ,48.54430 ,-124.4130,GPSMET , ,Port Renfro, BC , +PTS1 ,1,14.46770 ,36.30420 ,-121.8880,GPSMET , ,Point Sur, CA , +PTUN ,1,51.08600 ,22.64970 ,120.4590 ,GPSMET , ,Lioukuaicuo, TW , +PUB5 ,1,1434.146 ,38.28680 ,-104.3460,GPSMET , ,Pueblo, CO , +PUC1 ,1,1709.445 ,39.59920 ,-110.8090,GPSMET , ,Price, UT , +PUR5 ,1,135.7506 ,18.46300 ,-67.06700,GPSMET , ,Isabella, PR , +PWEL ,1,80.04680 ,43.23670 ,-79.22000,GPSMET , ,Port Weller, ON , +QAQ1 ,1,73.24750 ,60.71530 ,-46.04800,GPSMET , ,Qaqortoq, GL , +QUAD ,1,8.654700 ,50.13250 ,-125.3310,GPSMET , ,Quadra Island, BC , +RALR ,1,174.5665 ,35.78690 ,-78.63900,GPSMET , ,Raleigh, NC , +RBRU ,1,91.46420 ,36.75910 ,-119.8290,GPSMET , ,Fresno, CA , +RED5 ,1,6.495000 ,39.56150 ,-75.57000,GPSMET , ,Reedy Point, DE , +REDW ,1,247.8664 ,44.56180 ,-92.53400,GPSMET , ,Red Wings, MN , +RIS5 ,1,249.4634 ,42.01230 ,-90.22600,GPSMET , ,Rock Island, IL , +RMND ,1,9.336600 ,25.61380 ,-80.38400,GPSMET , ,Richmond, FL , +ROSS ,1,187.0099 ,48.83370 ,-87.52000,GPSMET , ,Rossport, ON , +RPT1 ,1,12.80310 ,47.38750 ,-122.3750,GPSMET , ,Robinson Point, WA , +RWDN1,1,797.4130 ,40.08670 ,-100.6530,GPSMET , ,McCook, NE , +SA00 ,1,1624.605 ,40.03520 ,-105.2430,GPSMET , ,Boulder (FH Lab), CO , +SA01 ,1,139.9626 ,42.61810 ,-71.49100,GPSMET , ,Westford (MIT Haystack Obs.), MA , +SA02 ,1,86.95980 ,38.99230 ,-76.83900,GPSMET , ,Greenbelt, MD , +SA03 ,1,312.5436 ,44.53510 ,-72.02500,GPSMET , ,Lyndonville, VT , +SA05 ,1,108.5602 ,39.99930 ,-76.35000,GPSMET , ,Millersville, PA , +SA06 ,1,193.6918 ,43.75680 ,-71.69100,GPSMET , ,Plymouth, NH , +SA07 ,1,1610.842 ,40.58780 ,-105.1480,GPSMET , ,Fort Collins, CO , +SA08 ,1,282.7031 ,30.39550 ,-97.73500,GPSMET , ,Austin (CSR1 at JJPRC), TX , +SA09 ,1,1882.803 ,39.97780 ,-105.2740,GPSMET , ,Boulder (Mesa Lab), CO , +SA10 ,1,1136.212 ,51.07940 ,-114.1330,GPSMET , ,Calgary (UofC), CAN , +SA11 ,1,2222.736 ,41.32040 ,-105.6680,GPSMET , ,Laramie, WY , +SA15 ,1,77.09810 ,39.25460 ,-76.70900,GPSMET , ,Baltimore, MD , +SA17 ,1,419.2754 ,31.71600 ,-98.98700,GPSMET , ,Brownwood, TX , +SA18 ,1,167.3319 ,27.57110 ,-99.43400,GPSMET , ,Laredo, TX , +SA19 ,1,307.9778 ,33.87380 ,-98.52000,GPSMET , ,Wichita Falls (UofTX), TX , +SA20 ,1,15.33290 ,25.73170 ,-80.16300,GPSMET , ,Miami (UofF), FL , +SA22 ,1,27.72090 ,40.68050 ,-74.23400,GPSMET , ,Union, NJ , +SA23 ,1,1982.452 ,41.93380 ,-111.4210,GPSMET , ,Logan, UT , +SA24 ,1,1262.752 ,31.36830 ,-109.6880,GPSMET , ,Douglas, AZ , +SA26 ,1,46.46900 ,45.95010 ,-66.64200,GPSMET , ,Fredericton NB, CAN , +SA27 ,1,216.4236 ,29.08210 ,-110.9610,GPSMET , ,Hermosillo, MX , +SA29 ,1,36.25200 ,45.40930 ,-73.93600,GPSMET , ,Ste-Anne de Bellevue, CAN , +SA30 ,1,286.3207 ,42.51220 ,-92.45900,GPSMET , ,Cedar Falls, IA , +SA31 ,1,418.3275 ,33.44650 ,-111.9520,GPSMET , ,Tempe, AZ , +SA33 ,1,10.77950 ,31.29520 ,-113.5280,GPSMET , ,Puerto Penasco, MX , +SA37 ,1,208.6777 ,34.72410 ,-86.64700,GPSMET , ,Huntsville, AL , +SA43 ,1,254.5291 ,38.90470 ,-92.27400,GPSMET , ,Columbia, MO , +SA46 ,1,761.8726 ,32.22980 ,-110.9540,GPSMET , ,Tucson (UofA), AZ , +SA48 ,1,740.1437 ,31.91810 ,-111.8610,GPSMET , ,Sells, AZ , +SA50 ,1,26.30510 ,31.29130 ,-113.4970,GPSMET , ,Puerto Penasco, MX , +SACY ,1,23.86820 ,33.74320 ,-117.8960,GPSMET , ,Santa Ana, CA , +SAL5 ,1,159.9552 ,35.36710 ,-94.81700,GPSMET , ,Sallisaw, OK , +SALU ,1,278.1333 ,24.14450 ,120.5780 ,GPSMET , ,Wanggaoliao, TW , +SAV1 ,1,38.61780 ,32.13860 ,-81.69600,GPSMET , ,Savannah, GA , +SAV5 ,1,38.61780 ,32.13860 ,-81.69600,GPSMET , ,Savannah, GA , +SBCC ,1,123.1046 ,33.55300 ,-117.6610,GPSMET , ,Mission Viejo, CA , +SC00 ,1,1198.323 ,46.95090 ,-120.7250,GPSMET , ,Ellensburg, WA , +SC01 ,1,2119.473 ,34.06800 ,-106.9670,GPSMET , ,Socorro, NM , +SC02 ,1,5.835100 ,48.54620 ,-123.0080,GPSMET , ,Friday Harbor, WA , +SC03 ,1,2038.786 ,47.81660 ,-123.7060,GPSMET , ,Mt. Olympus, WA , +SC04 ,1,33.72050 ,48.92320 ,-123.7040,GPSMET , ,Sidney BC, CAN , +SCCC ,1,21.80670 ,32.78290 ,-79.93800,GPSMET , ,Charleston, SC , +SCH2 ,1,518.3619 ,54.83210 ,-66.83300,GPSMET , ,Schefferville, QC , +SCUB ,1,46.23300 ,20.01210 ,-75.76200,GPSMET , ,Santiago, CU , +SDSF ,1,485.8384 ,43.73380 ,-96.62200,GPSMET , ,Sioux Falls, SD , +SEAI ,1,19.78820 ,47.68700 ,-122.2560,GPSMET , ,Seattle, WA , +SG00 ,1,278.5553 ,47.92180 ,-97.08700,GPSMET , ,Grand Forks, ND , +SG01 ,1,318.3705 ,36.60410 ,-97.48500,GPSMET , ,Billings, OK , +SG03 ,1,250.2412 ,39.99840 ,-83.01100,GPSMET , ,Columbus (OSU), OH , +SG04 ,1,388.2043 ,37.13190 ,-97.26600,GPSMET , ,Ashton, KS , +SG06 ,1,54.41350 ,40.91470 ,-73.12500,GPSMET , ,Stony Brook, NY , +SG07 ,1,48.49610 ,44.90210 ,-68.66900,GPSMET , ,Orono, ME , +SG08 ,1,329.0396 ,36.84130 ,-96.42800,GPSMET , ,Pawhuska, OK , +SG09 ,1,418.5237 ,36.43080 ,-98.28400,GPSMET , ,Ringwood, OK , +SG10 ,1,359.5649 ,36.88140 ,-98.28600,GPSMET , ,Byron, OK , +SG11 ,1,662.6747 ,37.33160 ,-99.30900,GPSMET , ,Coldwater, KS , +SG12 ,1,630.5705 ,38.20200 ,-99.31700,GPSMET , ,Parned, KS , +SG13 ,1,439.7629 ,38.11460 ,-97.51500,GPSMET , ,Halstead, KS , +SG14 ,1,403.2895 ,37.84300 ,-97.02100,GPSMET , ,Towanda, KS , +SG15 ,1,338.5096 ,38.20230 ,-95.59400,GPSMET , ,LeRoy, KS , +SG16 ,1,281.9349 ,37.38420 ,-96.18100,GPSMET , ,Elk Falls, KS , +SG18 ,1,409.1858 ,34.88350 ,-98.20400,GPSMET , ,Cyril, OK , +SG19 ,1,465.7526 ,35.35550 ,-98.97800,GPSMET , ,Cordell, OK , +SG20 ,1,420.9917 ,35.55680 ,-98.01600,GPSMET , ,El Reno, OK , +SG23 ,1,267.7259 ,40.43770 ,-86.94600,GPSMET , ,West Lafayette, IN , +SG24 ,1,3525.784 ,40.05420 ,-105.5890,GPSMET , ,Nederland (Niwot Ridge), CO , +SG25 ,1,219.0525 ,42.96560 ,-85.88700,GPSMET , ,Allendale, MI , +SG27 ,1,10.83230 ,71.32290 ,-156.6100,GPSMET , ,Pt. Barrow, AK , +SG28 ,1,258.1997 ,42.93190 ,-76.56700,GPSMET , ,Auburn, NY , +SG30 ,1,413.5587 ,40.71990 ,-77.93000,GPSMET , ,University Park, PA , +SG32 ,1,107.0119 ,30.60250 ,-96.35900,GPSMET , ,College Station, TX , +SG33 ,1,1234.569 ,31.77290 ,-106.5060,GPSMET , ,El Paso (UTEP), TX , +SG34 ,1,303.1480 ,35.26910 ,-96.74000,GPSMET , ,Earlsboro, OK , +SG72 ,1,357.5792 ,35.23650 ,-97.46500,GPSMET , ,Norman (OU), OK , +SGAN ,1,8.440000 ,22.58130 ,120.3500 ,GPSMET , ,Siaogang, TW , +SGUN ,1,175.9950 ,24.27160 ,120.6920 ,GPSMET , ,Shengang, TW , +SHAO ,1,11.90000 ,31.09960 ,121.2000 ,GPSMET , ,Sheshan, CN , +SHK5 ,1,6.917800 ,40.47150 ,-74.01200,GPSMET , ,Sandy Hook, NJ , +SHRV ,1,62.76150 ,32.42770 ,-93.70500,GPSMET , ,Shreveport, LA , +SHS4 ,1,60.39320 ,38.49450 ,-121.2110,GPSMET , ,Sloughhouse, CA , +SIBY ,1,187.2077 ,42.17020 ,-83.24100,GPSMET , ,Brownstown, MI , +SIDN ,1,325.3657 ,40.31040 ,-84.17100,GPSMET , ,Sidney, OH , +SIHS ,1,31.76890 ,31.84340 ,-91.65500,GPSMET , ,Sicily Island, LA , +SINL ,1,70.55200 ,22.90830 ,121.2550 ,GPSMET , ,Donghe, TW , +SIO3 ,1,69.78820 ,32.86470 ,-117.2500,GPSMET , ,La Jolla, CA , +SLAI4,1,317.7466 ,41.90060 ,-93.69900,GPSMET , ,Slater, IA , +SLCU ,1,1293.132 ,40.77220 ,-111.9550,GPSMET , ,Salt Lake City, UT , +SNFD ,1,125.7611 ,35.47350 ,-79.15800,GPSMET , ,Sanford, NC , +SOWR ,1,264.4546 ,42.22590 ,-85.53400,GPSMET , ,Kalamazoo, MI , +SPN5 ,1,737.3292 ,47.51840 ,-117.4240,GPSMET , ,Spokane, WA , +SRP1 ,1,327.3177 ,33.45060 ,-112.2280,GPSMET , ,Tolleson, AZ , +SSUN ,1,23.50600 ,23.41420 ,120.3780 ,GPSMET , ,Shueishang, TW , +STB1 ,1,185.5298 ,44.79550 ,-87.31400,GPSMET , ,Sturgeon Bay, WI , +STEA ,1,1558.015 ,39.62550 ,-119.8840,GPSMET , ,Reno, NV , +STJO ,1,143.0073 ,47.59520 ,-52.67800,GPSMET , ,St Johns, NF , +STL5 ,1,188.0482 ,38.61110 ,-89.75900,GPSMET , ,St. Louis, MO , +STP5 ,1,384.0985 ,44.30390 ,-91.90300,GPSMET , ,Alma, WI , +SUAN ,1,11.31360 ,23.47760 ,120.3000 ,GPSMET , ,Suantou, TW , +SUCH ,1,544.7400 ,24.29110 ,120.9080 ,GPSMET , ,Heping, TW , +SUM1 ,1,1188.506 ,34.82510 ,-102.5120,GPSMET , ,Summerfield, TX , +SUM5 ,1,1188.506 ,34.82510 ,-102.5120,GPSMET , ,Summerfield, TX , +SUP2 ,1,189.8685 ,45.74950 ,-87.07400,GPSMET , ,Escanaba, MI , +SUP3 ,1,256.9070 ,46.30270 ,-85.51300,GPSMET , ,Newberry, MI , +SYCN6,1,122.1554 ,43.11570 ,-76.09300,GPSMET , ,Syracuse, NY , +TALH ,1,20.33620 ,30.39650 ,-84.35600,GPSMET , ,Tallahasse, FL , +TALL ,1,32.55200 ,32.40030 ,-91.18300,GPSMET , ,Tallulah, LA , +TAPV ,1,306.9984 ,44.73290 ,-93.21000,GPSMET , ,Apple Valley, MN , +TCUN5,1,1240.020 ,35.08500 ,-103.6090,GPSMET , ,Tucumcari, NM , +THU2 ,1,19.40620 ,76.53700 ,-68.82500,GPSMET , ,Thule, GL , +TIFF ,1,245.5301 ,41.07500 ,-83.15000,GPSMET , ,Tiffin, OH , +TLKA2,1,153.3280 ,62.30770 ,-150.4200,GPSMET , ,Talkeetna, AK , +TND6 ,1,325.5590 ,36.02110 ,-83.30400,GPSMET , ,Dandridge, TN , +TRAK ,1,150.2481 ,33.61790 ,-117.8030,GPSMET , ,Irvine, CA , +TRK1 ,1,1797.888 ,39.31550 ,-120.1370,GPSMET , ,Truckee, CA , +TSIO ,1,44.18700 ,24.47280 ,120.7040 ,GPSMET , ,Tongsiao, TW , +TTUN ,1,74.50500 ,22.76460 ,121.0810 ,GPSMET , ,Taidong, TW , +TXAB ,1,516.5672 ,32.50330 ,-99.75700,GPSMET , ,Abilene, TX , +TXAM ,1,1123.979 ,35.15360 ,-101.8780,GPSMET , ,Amarillo, TX , +TXAN ,1,288.9869 ,29.49120 ,-98.57700,GPSMET , ,San Antonio, TX , +TXAR ,1,170.0561 ,32.75900 ,-97.06000,GPSMET , ,Arlington, TX , +TXAU ,1,218.4475 ,30.31170 ,-97.75600,GPSMET , ,Austin, TX , +TXBM ,1,15.64370 ,30.16170 ,-94.18000,GPSMET , ,Beaumont, TX , +TXBS ,1,166.2606 ,30.11290 ,-97.29100,GPSMET , ,Bastrop, TX , +TXBU ,1,462.7169 ,30.75050 ,-98.18400,GPSMET , ,Burnet, TX , +TXBY ,1,114.3792 ,30.68580 ,-96.37100,GPSMET , ,Bryan, TX , +TXCC ,1,16.06280 ,27.74080 ,-97.44200,GPSMET , ,Corpus Christi, TX , +TXCH ,1,592.2255 ,34.45960 ,-100.2780,GPSMET , ,Childress, TX , +TXDA ,1,186.7537 ,32.80000 ,-96.67300,GPSMET , ,Dallas, TX , +TXDE ,1,205.4882 ,33.21050 ,-97.16300,GPSMET , ,Denton, TX , +TXDR ,1,302.9272 ,29.36440 ,-100.9000,GPSMET , ,Del Rio, TX , +TXEL ,1,1146.343 ,31.69150 ,-106.2720,GPSMET , ,El Paso, TX , +TXGA ,1,17.27420 ,29.32790 ,-94.77300,GPSMET , ,Galveston, TX , +TXJC ,1,371.2785 ,30.26650 ,-98.39700,GPSMET , ,Johnson City, TX , +TXLF ,1,104.9214 ,31.35640 ,-94.71800,GPSMET , ,Lufkin, TX , +TXLR ,1,137.6676 ,27.51390 ,-99.44800,GPSMET , ,Laredo, TX , +TXLU ,1,980.8140 ,33.53540 ,-101.8430,GPSMET , ,Lubbock, TX , +TXNA ,1,130.9988 ,32.04180 ,-96.53900,GPSMET , ,Navarro, TX , +TXOD ,1,883.9322 ,31.87390 ,-102.3150,GPSMET , ,Odessa, TX , +TXPA ,1,172.1235 ,33.67420 ,-95.55700,GPSMET , ,Paris, TX , +TXPE ,1,789.5812 ,29.55860 ,-104.3570,GPSMET , ,Presidio, TX , +TXPR ,1,39.11930 ,26.20850 ,-98.18900,GPSMET , ,Pharr, TX , +TXSA ,1,590.2348 ,31.41430 ,-100.4730,GPSMET , ,San Angelo, TX , +TXSM ,1,183.2616 ,29.87790 ,-97.90300,GPSMET , ,San Marcos, TX , +TXSN ,1,873.3968 ,30.15260 ,-102.4090,GPSMET , ,Sanderson, TX , +TXTA ,1,173.9617 ,30.56420 ,-97.44500,GPSMET , ,Taylor, TX , +TXTY ,1,146.4220 ,32.24960 ,-95.39400,GPSMET , ,Tyler, TX , +TXVA ,1,37.15420 ,28.83490 ,-96.91000,GPSMET , ,Victoria, TX , +TXWA ,1,128.5758 ,31.57770 ,-97.11100,GPSMET , ,Waco, TX , +TXWF ,1,307.8654 ,33.85390 ,-98.50600,GPSMET , ,Wichita Falls, TX , +UCLU ,1,29.15460 ,48.92560 ,-125.5420,GPSMET , ,Ucluelet, BC , +UNIV ,1,298.6785 ,42.28560 ,-84.38600,GPSMET , ,Jackson, MI , +UPO1 ,1,60.39100 ,20.24590 ,-155.8840,GPSMET , ,Upolu Point, HI , +UPO5 ,1,60.24870 ,20.24590 ,-155.8840,GPSMET , ,Upolu Point, HI , +USNO ,1,80.83520 ,38.91900 ,-77.06600,GPSMET , ,US Naval Obs., DC , +UVFM ,1,545.0966 ,37.87870 ,-78.69400,GPSMET , ,Fan Mountain, VA , +VALD ,1,350.0700 ,48.09710 ,-77.56400,GPSMET , ,Val D OR, QC , +VAN5 ,1,134.7472 ,34.82660 ,-120.5640,GPSMET , ,Vandenberg AFB, CA , +VATF ,1,84.47580 ,38.95610 ,-77.15000,GPSMET , ,Turner-Fairbank HRC, VA , +VAWI ,1,12.87260 ,37.93430 ,-75.47100,GPSMET , ,Wallops Island, VA , +VCAP ,1,187.0524 ,44.26200 ,-72.58200,GPSMET , ,Montpelier, VT , +VCIO2,1,650.1498 ,36.07170 ,-99.21700,GPSMET , ,Vici, OK , +VIC5 ,1,36.08200 ,32.33140 ,-90.92000,GPSMET , ,Vicksburg, MS , +WASR ,1,9.968000 ,35.55970 ,-77.05900,GPSMET , ,Washington, NC , +WDLM5,1,319.9610 ,44.67220 ,-95.44900,GPSMET , ,Wood Lake, MN , +WES2 ,1,112.7776 ,42.61330 ,-71.49300,GPSMET , ,Westford, MA , +WHD1 ,1,36.07330 ,48.31270 ,-122.6960,GPSMET , ,Whidbey Island, WA , +WHD5 ,1,36.07330 ,48.31270 ,-122.6960,GPSMET , ,Whidbey Island, WA , +WHIT ,1,1420.099 ,60.75050 ,-135.2220,GPSMET , ,Whitehorse, YT , +WHN5 ,1,1071.083 ,42.73930 ,-103.3290,GPSMET , ,Whitney, NE , +WHYT ,1,299.3077 ,33.67450 ,-117.6430,GPSMET , ,Lake Forest, CA , +WIS5 ,1,187.4670 ,46.70510 ,-92.01500,GPSMET , ,Wisconsin Point, WI , +WLCI3,1,212.2883 ,40.80840 ,-87.05200,GPSMET , ,Wolcott, IN , +WNCI2,1,171.6597 ,39.66460 ,-90.47700,GPSMET , ,Winchester, IL , +WNFL1,1,92.05180 ,31.89720 ,-92.78200,GPSMET , ,Winnfield, LA , +WOOS ,1,266.0786 ,40.79860 ,-81.96300,GPSMET , ,Wooster, OH , +WSMN5,1,1226.049 ,32.40710 ,-106.3500,GPSMET , ,White Sands, NM , +WUKU ,1,206.8422 ,25.11730 ,121.4010 ,GPSMET , ,Wugu, TW , +WYLC ,1,1840.348 ,41.10450 ,-104.7750,GPSMET , ,Cheyenne, WY , +XCTY ,1,12.43700 ,29.63100 ,-83.10800,GPSMET , ,Cross City, FL , +YELL ,1,207.4925 ,62.48090 ,-114.4810,GPSMET , ,Yellowknife, NT , +YFB1 ,1,20.01660 ,63.73150 ,-68.54300,GPSMET , ,Iqaluit, NF , +YOU1 ,1,97.22050 ,43.23140 ,-78.97000,GPSMET , ,Youngstown, NY , +YQX1 ,1,137.9696 ,48.96650 ,-54.59800,GPSMET , ,Gander, NF , +YWG1 ,1,248.5937 ,49.90060 ,-97.25900,GPSMET , ,Winnipeg, NB , +YYR1 ,1,46.75850 ,53.30860 ,-60.41900,GPSMET , ,Goose Bay, NF , +ZAB1 ,1,1640.479 ,35.17360 ,-106.5670,GPSMET , ,Albuquerque WAAS, NM , +ZDC1 ,1,111.9395 ,39.10160 ,-77.54300,GPSMET , ,Leesburg WAAS, VA , +ZEFR ,1,24.70010 ,28.22760 ,-82.16500,GPSMET , ,Zephyrhills, FL , +ZEND ,1,16.28000 ,22.94330 ,120.2180 ,GPSMET , ,ZEND, TW , +ZHN1 ,1,8.257500 ,21.31300 ,-157.9210,GPSMET , ,Honolulu WAAS, HI , +ZHU1 ,1,39.05600 ,29.96190 ,-95.33100,GPSMET , ,Houston, TX , +ZLA1 ,1,795.2001 ,34.60350 ,-118.0840,GPSMET , ,Los Angeles WAAS, CA , +ZOA1 ,1,28.47090 ,37.54310 ,-122.0160,GPSMET , ,Fremont WAAS, CA , +ZSU1 ,1,15.95170 ,18.43130 ,-65.99300,GPSMET , ,San Juan WAAS, PR , +ZTL4 ,1,289.8756 ,33.37970 ,-84.29700,GPSMET , ,Atlanta WAAS, GA , +CHAM3,3,368.5320 ,42.62580 ,-72.85500,HADS ,NE-POWER-CO,FIRESTATION AT TOWN HALL AT CHARLEMONT NE-POWER-CO, +CLRM3,3,62.73300 ,41.68330 ,-72.68330,HADS ,NE-POWER-CO,TOWN BUILDING AT COLRAIN NE-POWER-CO, +RYLM3,3,275.9670 ,42.63080 ,-72.12330,HADS ,USARMY-COE ,BIRCH HILL DAM USARMY-COE , +KENN3,3,172.9230 ,42.99440 ,-72.31110,HADS ,USARMY-COE ,SURRY MTN LAKE USARMY-COE , +BINM1,3,136.8630 ,45.05170 ,-69.88670,HADS ,USGS ,KENNEBEC RIVER AT BINGHAM USGS , +CNHM1,3,101.7350 ,43.80810 ,-70.78140,HADS ,USGS ,SACO RIVER AT CORNISH USGS , +DICM1,3,287.5560 ,47.11310 ,-69.08810,HADS ,USGS ,ST. JOHN RIVER NR DICKEY USGS , +FRKM1,3,330.8630 ,45.34030 ,-69.96190,HADS ,USGS ,KENNEBEC RIVER NR WEST FORKS USGS , +MERM1,3,86.02000 ,44.70810 ,-69.93750,HADS ,USGS ,SANDY RIVER NR MERCER 2N USGS , +NANM1,3,117.0910 ,44.86920 ,-69.95500,HADS ,USGS ,CARRABASSET RIVER NR NORTH ANSON USGS , +NINM1,3,316.1930 ,46.70000 ,-69.71640,HADS ,USGS ,ST JOHNS RVR AT NINE MILE BRDG NR CLAY USGS , +SMBM1,3,339.4980 ,46.45000 ,-68.95000,HADS ,NWS ,SMITH BROOK NR ASHLAND 27WSW NWS , +STAM1,3,402.0790 ,46.20000 ,-70.28330,HADS ,NWS ,ST. AURELIE NR JACKMAN 41N NWS , +BETN3,3,377.6570 ,44.26890 ,-71.63110,HADS ,USGS ,AMMONOOSUC RIVER NR BETHLEHEM USGS , +COTN3,3,140.9780 ,43.19280 ,-71.74780,HADS ,USGS ,CONTOOCOOK R BLW HOPKINTON DAM USGS , +ERRN3,3,468.8590 ,44.78250 ,-71.12940,HADS ,USGS ,ANDROSCOGGIN RIVER AT ERROL USGS , +EXTN3,3,34.62500 ,42.98440 ,-71.03890,HADS ,USGS ,EXETER RIVER AT HAIGH RD NR BRENTWOOD USGS , +NSTN3,3,361.9630 ,44.75060 ,-71.63110,HADS ,NE-POWER-CO,N.STRATFORD GAUGE NE-POWER-CO, +PTSN3,3,437.0170 ,45.04030 ,-71.44360,HADS ,NE-POWER-CO,INDIAN STREAM AT PITTSBURGH NE-POWER-CO, +PTTN3,3,598.6300 ,45.25250 ,-71.20470,HADS ,NE-POWER-CO,PITTSBURG CUSTOMS BUILDING NE-POWER-CO, +RUGN3,3,297.5050 ,43.35000 ,-72.20000,HADS ,NE-POWER-CO,NEWPORT NE-POWER-CO, +SOUN3,3,92.85900 ,43.21360 ,-71.48080,HADS ,USGS ,SOUCOOK RIVER @ PEMBROKE RD NR CONCORD USGS , +TLTN3,3,168.9730 ,43.44190 ,-71.58890,HADS ,USARMY-COE ,WINNIPESAUKEE RIVER AT TILTON USARMY-COE , +HUGM3,3,283.9850 ,42.23720 ,-72.89610,HADS ,USARMY-COE ,LITTLEVILLE LAKE USARMY-COE , +WTHC3,3,110.9060 ,41.94440 ,-71.90000,HADS ,USARMY-COE ,WEST THOMPSON LAKE USARMY-COE , +MACN3,3,283.8370 ,42.88610 ,-71.97330,HADS ,USARMY-COE ,NUBANUSIT BROOK AT MACDOWELL DAM USARMY-COE , +OTRN3,3,272.0440 ,42.94580 ,-72.23720,HADS ,USARMY-COE ,OTTER BROOK LAKE USARMY-COE , +VBOM1,3,122.0000 ,45.56890 ,-67.42970,HADS ,USGS ,ST. CROIX RIVER AT VANCEBORO USGS , +TLLM3,3,210.4500 ,42.64220 ,-72.22610,HADS ,USARMY-COE ,TULLY LAKE USARMY-COE , +BRRM3,3,213.5000 ,42.42780 ,-72.02640,HADS ,USARMY-COE ,BARRE FALLS DAM AT BARRE USARMY-COE , +CHLM3,3,149.4500 ,42.11610 ,-71.90810,HADS ,USARMY-COE ,BUFFUMVILLE LAKE USARMY-COE , +FSKM3,3,259.2500 ,42.10860 ,-72.12420,HADS ,USARMY-COE ,EAST BRIMFIELD LAKE USARMY-COE , +CPTA1,3,0.856000 ,30.31030 ,-88.13810,HADS ,USARMY-COE ,TIDE GAGE AT CEDAR POINT/DAUPHIN ISL USARMY-COE , +DAUA1,3,0.108000 ,30.25110 ,-88.07920,HADS ,USARMY-COE ,CORPS GAGE OF DAUPHIN ISL MARINE LAB USARMY-COE , +MRVA1,3,39.31920 ,31.46310 ,-87.35000,HADS ,NWS ,MONROEVILLE NWS , +JAKA1,3,77.04200 ,31.61580 ,-87.85610,HADS ,NWS ,JACKSON 2N NWS , +BALV1,3,499.3680 ,43.13330 ,-72.76670,HADS ,USARMY-COE ,BALL MTN LAKE USARMY-COE , +MSWV1,3,460.8650 ,42.96670 ,-72.90000,HADS ,NE-POWER-CO,MT SNOW NE-POWER-CO, +SBRV1,3,418.7440 ,42.90640 ,-72.95000,HADS ,NE-POWER-CO,SEARSBURG RESEVOIR NE-POWER-CO, +PCLM4,3,195.6816 ,47.27560 ,-88.52780,HADS ,NWS-GLOS ,PORTAGE CANAL AT CALUMET NWS-GLOS , +WHRI2,3,192.0240 ,42.35110 ,-87.80830,HADS ,NWS-GLOS ,WAUKEGAN HARBOR NWS-GLOS , +GTLM4,3,196.9008 ,45.21060 ,-85.55030,HADS ,NWS-GLOS ,GRAND TRAVERSE LIGHT - NORTHPORT NWS-GLOS , +BSBM4,3,184.4040 ,44.05470 ,-86.51390,HADS ,NWS-GLOS ,BIG SABLE POINT AT LUDINGTON NWS-GLOS , +SXHW3,3,186.5376 ,46.56250 ,-90.44000,HADS ,NWS-GLOS ,SAXON HARBOR NWS-GLOS , +SLVM5,3,195.0720 ,47.26860 ,-91.25170,HADS ,NWS-GLOS ,SILVER BAY NWS-GLOS , +PWAW3,3,181.3560 ,43.38750 ,-87.86780,HADS ,NWS-GLOS ,PORT WASHINGTON NWS-GLOS , +GRMM4,3,185.9280 ,46.68330 ,-85.98330,HADS ,NWS-GLOS ,GRAND MARAIS NWS-GLOS , +NABM4,3,164.5920 ,46.08690 ,-85.44310,HADS ,NWS-GLOS ,NAUBINWAY NWS-GLOS , +FPTM4,3,184.4040 ,45.61890 ,-86.65940,HADS ,NWS-GLOS ,FAIRPORT NWS-GLOS , +BIGM4,3,189.5856 ,46.82720 ,-87.72470,HADS ,NWS-GLOS ,BIG BAY NWS-GLOS , +BHRI3,3,175.8696 ,41.64670 ,-87.14690,HADS ,NWS-GLOS ,BURNS HARBOR NWS-GLOS , +PNGW3,3,186.8424 ,46.79220 ,-91.38610,HADS ,NWS-GLOS ,PORT WING NWS-GLOS , +OTNM4,3,186.2328 ,46.87360 ,-89.32920,HADS ,NWS-GLOS ,ONTONAGON NWS-GLOS , +CBRW3,3,179.8320 ,45.19830 ,-87.35970,HADS ,NWS-GLOS ,CHAMBERS ISLAND NWS-GLOS , +CRBA2,3,383.0000 ,59.89970 ,-151.0575,HADS ,NWS ,CARIBOU LAKE NEAR HOMER 25NE NWS , +HATA2,3,1059.875 ,61.79170 ,-149.2797,HADS ,NWS ,INDEPENDENCE MINE RAWS AT HATCHER PASS NWS , +PBPA2,3,667.1470 ,58.20250 ,-134.0117,HADS ,NWS ,POINT BISHOP NEAR JUNEAU 12SE NWS , +URLA2,3,209.0000 ,60.34670 ,-149.8833,HADS ,NWS ,UPPER RUSSIAN LAKE NEAR COOPER LANDING NWS , +CDII2,3,153.8150 ,41.39810 ,-88.27920,HADS ,USARMY-COE ,ILLINOIS RIVER AT LOCK & DAM @ DRESDEN USARMY-COE , +JOLI2,3,162.7720 ,41.50420 ,-88.10830,HADS ,USARMY-COE ,ILLINOIS RIVER AT BRANDON LOCK & DAM USARMY-COE , +LOKI2,3,161.4090 ,41.56970 ,-88.07830,HADS ,USARMY-COE ,ILLINOIS RIVER AT LOCKPORT LOCK & DAM USARMY-COE , +MMOI2,3,139.8490 ,41.33060 ,-88.75830,HADS ,USARMY-COE ,ILLINOIS RIVER @ MARSAILLES LOCK & DAM USARMY-COE , +OBII2,3,175.1930 ,41.65280 ,-87.56670,HADS ,USARMY-COE ,ILLINOIS RIVER LOCK & DAM AT OBRIEN USARMY-COE , +SRDI2,3,167.7160 ,41.33330 ,-88.85000,HADS ,USARMY-COE ,ILLINOIS RIVER AT STARVED ROCK LOCK USARMY-COE , +SJOM4,3,182.3000 ,42.09890 ,-86.49420,HADS ,NWS-GLOS ,ST JOSEPH MARINE STATION NWS-GLOS , +CLSM4,3,175.0000 ,42.47140 ,-82.87670,HADS ,NWS-GLOS ,ST CLAIR SHORES NWS-GLOS , +ALMN6,3,481.7800 ,42.00830 ,-78.05690,HADS ,USARMY-COE ,ALMA NEAR OLEAN 20ESE USARMY-COE , +FDLN6,3,451.7350 ,42.02220 ,-79.61970,HADS ,USARMY-COE ,FINDLEY LAKE NEAR FINDLEY LAKE 24W USARMY-COE , +FRKN6,3,481.8220 ,42.33190 ,-78.46170,HADS ,USARMY-COE ,FRANKLINVILLE NEAR OLEAN 18N USARMY-COE , +OLCN6,3,79.24800 ,43.34060 ,-78.71940,HADS ,NWS-GLOS ,OLCOTT HARBOR NWS-GLOS , +RPRN6,3,79.24800 ,43.26250 ,-77.59810,HADS ,NWS-GLOS ,ROCHESTER COAST GUARD NWS-GLOS , +GTRM4,3,189.5860 ,47.17890 ,-88.24170,HADS ,NWS-GLOS ,SUPERIOR GRAND TRAVERSE NEAR GAY NWS-GLOS , +PSCM4,3,178.3080 ,43.43080 ,-82.53580,HADS ,NWS-GLOS ,PORT SANILAC NWS-GLOS , +KNSW3,3,191.4140 ,42.58890 ,-87.80860,HADS ,NWS-GLOS ,KENOSHA LIGHT NEAR KENOSHA 1NE NWS-GLOS , +ATRA2,3,966.4340 ,68.21500 ,-149.4036,HADS ,USGS ,ATIGUN RIVER NEAR PUMP STATION 4 NEAR WUSGS , +BCTA2,3,604.0110 ,65.39250 ,-145.7125,HADS ,USGS ,BIRCH CREEK ABOVE TWELVEMILE CREEK NEARUSGS , +CRUA2,3,84.50000 ,69.36060 ,-152.1217,HADS ,USGS ,COLVILLE RIVER AT UMIAT USGS , +DCKA2,3,73.93800 ,66.94610 ,-156.9089,HADS ,USGS ,DAHL CREEK NEAR KOBUK 3N USGS , +FMRA2,3,374.6250 ,64.27970 ,-141.3133,HADS ,USGS ,FORTYMILE RIVER NEAR CHICKEN 24NE USGS , +GBDA2,3,411.0000 ,64.45060 ,-144.9422,HADS ,USGS ,GOODPASTER RIVER NEAR BIG DELTA 34NE USGS , +IKPA2,3,45.40100 ,69.76690 ,-154.6614,HADS ,USGS ,IKPIKPUK RIVER BELOW FRY CREEK NEAR ALAUSGS , +JDYA2,3,13.00200 ,70.22060 ,-151.8347,HADS ,USGS ,JUDY CREEK NEAR NUIQSUT 17W USGS , +MACA2,3,1169.688 ,63.07170 ,-146.3194,HADS ,NWS ,MACLAREN RIVER AT DENALI HIGHWAY NEAR PNWS , +MDEA2,3,15.08000 ,70.48890 ,-157.4111,HADS ,USGS ,MEADE RIVER NEAR ATKASUK 1N USGS , +MRGA2,3,580.7500 ,64.01530 ,-148.7167,HADS ,USGS ,MARGUERITE CREEK ABOVE EMMA CREEK NEAR USGS , +NUIA2,3,15.00000 ,70.27060 ,-151.8692,HADS ,USGS ,FISH CREEK NEAR NUIQSUT 21W USGS , +PHLA2,3,1157.847 ,63.24080 ,-145.4675,HADS ,USGS ,PHELAN CREEK NEAR PAXSON 14N USGS , +SGRA2,3,337.0000 ,69.01500 ,-148.8172,HADS ,USGS ,SAGAVANIRKTOK RIVER NEAR PUMP STATION 3USGS , +SLAA2,3,315.9920 ,67.25470 ,-150.1733,HADS ,USGS ,SLATE CREEK AT COLDFOOT USGS , +TRSA2,3,202.5000 ,64.88720 ,-146.8017,HADS ,NWS ,TWO RIVERS 7E NWS , +UBLA2,3,15.24100 ,70.24310 ,-151.2970,HADS ,USGS ,UBLUTUOCH RIVER NEAR NUIQSUT 7WNW USGS , +WULA2,3,57.21900 ,67.87610 ,-163.6744,HADS ,USGS ,WULIK RIVER BELOW TUTAK CREEK NEAR KIVAUSGS , +NOCA2,3,509.9020 ,65.36310 ,-147.0378,HADS ,USFS ,NOME CREEK ABOVE BEAVER CREEK USFS , +BRTN3,3,178.8660 ,43.61720 ,-71.74080,HADS ,NHDES ,NEWFOUND RIVER NEAR BRISTOL NHDES , +EFFN3,3,133.9710 ,43.79560 ,-71.06000,HADS ,NHDES ,OSSIPEE RIVER AT EFFINGHAM FALLS NEAR ENHDES , +GMTN3,3,331.9290 ,43.42390 ,-71.41360,HADS ,NHDES ,GILMANTON NHDES , +LAKN3,3,171.0800 ,43.54920 ,-71.46530,HADS ,NHDES ,LAKE WINNIPESAUKEE OUTLET AT LAKEPORT NHDES , +LKFN3,3,139.0230 ,43.04970 ,-71.38060,HADS ,NHDES ,LAKE FRANCIS NEAR PITTSBURG NHDES , +LKSN3,3,126.9090 ,43.38610 ,-71.08360,HADS ,NHDES ,LAKE SUNAPEE NEAR SUNAPEE NHDES , +LKWN3,3,37.00000 ,43.00000 ,-71.00000,HADS ,NHDES ,LAKE WINNISQUAM NEAR BELMONT NHDES , +MLTN3,3,213.2290 ,43.40470 ,-70.98750,HADS ,NHDES ,MILTON 3 PONDS NHDES , +POON3,3,143.0000 ,43.57280 ,-71.35560,HADS ,NHDES ,POORFARM BROOK AT ELLACOYA STATE PARK NNHDES , +SLVN3,3,155.8600 ,43.47110 ,-71.53360,HADS ,NHDES ,SILVER LAKE NEAR TILTON NHDES , +SQAN3,3,257.9310 ,43.70560 ,-71.63000,HADS ,NHDES ,SQUAM RIVER AT ASHLAND NHDES , +WCNN3,3,293.1770 ,43.65000 ,-72.06390,HADS ,NHDES ,MASCOMA RIVER AT WEST CANAAN NHDES , +WEIN3,3,152.7900 ,43.60750 ,-71.45940,HADS ,NHDES ,LAKE WINNIPESAUKEE AT WEIRS BEACH NHDES , +WLFN3,3,179.1130 ,43.57940 ,-71.19890,HADS ,NHDES ,WOLFEBORO NHDES , +SBLM4,3,179.8000 ,43.80580 ,-83.71890,HADS ,NWS-GLOS ,SAGINAW BAY LIGHT 1 ON LAKE HURON NWS-GLOS , +RDAI4,3,449.9000 ,41.49630 ,-94.72630,IADOT , ,Adair (I-80) , +RALI4,3,337.3000 ,43.08300 ,-94.39850,IADOT , ,Algona (US 18) , +RTNI4,3,430.1000 ,42.99780 ,-96.08430,IADOT , ,Alton (IA10) , +RTOI4,3,261.7000 ,41.65970 ,-93.52220,IADOT , ,Altoona (I-80/US 65) , +RAMI4,3,313.2000 ,42.03400 ,-93.57020,IADOT , ,Ames (I-35) , +RAKI4,3,263.8000 ,41.76180 ,-93.56970,IADOT , ,Ankeny (I-35) , +RAVI4,3,377.6000 ,41.49820 ,-95.29150,IADOT , ,Avoca (I-80) , +RBUI4,3,218.1000 ,40.81300 ,-91.09920,IADOT , ,Burlington (US 34) , +RCAI4,3,388.9000 ,42.07850 ,-94.89750,IADOT , ,Carroll (US 30) , +RCDI4,3,235.8000 ,41.97800 ,-91.67450,IADOT , ,Cedar Rapids (I-380) , +RCII4,3,246.1000 ,41.93000 ,-91.68380,IADOT , ,Cedar Rapids (US 30) , +RCNI4,3,295.2000 ,40.73970 ,-93.00270,IADOT , ,Centerville (IA 2) , +RCBI4,3,268.1000 ,41.23250 ,-95.86620,IADOT , ,Council Bluffs (I-80) , +RCEI4,3,388.6000 ,41.04980 ,-94.30800,IADOT , ,Creston (US 34) , +RDVI4,3,206.2000 ,41.60230 ,-90.67770,IADOT , ,Davenport (I-80/I-280) , +RDCI4,3,310.2000 ,43.24550 ,-91.69970,IADOT , ,Decorah (IA 9) , +RDSI4,3,224.2000 ,41.52750 ,-93.77230,IADOT , ,Des Moines (I-35) , +RDMI4,3,250.5456 ,41.59570 ,-93.61150,IADOT , ,Des Moines (I-235) , +RDEI4,3,291.6000 ,41.54150 ,-94.01120,IADOT , ,De Soto (I-80/US 169) , +RDWI4,3,240.6000 ,41.82620 ,-90.57050,IADOT , ,De Witt (US 30/US 61) , +RDBI4,3,249.8000 ,42.49030 ,-90.73100,IADOT , ,Dubuque (US 20) , +RFDI4,3,286.1000 ,42.44630 ,-94.18350,IADOT , ,Fort Dodge (US 20) , +RGRI4,3,281.2000 ,41.69750 ,-92.72570,IADOT , ,Grinnell (I-80) , +RIAI4,3,254.1000 ,41.65750 ,-91.59880,IADOT , ,Iowa City (US 218) , +RIOI4,3,249.8000 ,41.68870 ,-91.58120,IADOT , ,Iowa City (I-80) , +RJFI4,3,309.9000 ,42.05180 ,-94.37830,IADOT , ,Jefferson (IA 4) , +RLEI4,3,349.2000 ,40.73870 ,-93.84170,IADOT , ,Leon (I-35)/IA 2) , +RMNI4,3,309.0000 ,42.47100 ,-91.44730,IADOT , ,Manchester (US 20) , +RMQI4,3,251.3000 ,42.06850 ,-90.68350,IADOT , ,Maquoketa (US 61/IA 64) , +RMTI4,3,291.3000 ,42.00370 ,-92.96170,IADOT , ,Marshalltown (US 30) , +RMCI4,3,376.7000 ,43.03800 ,-93.34180,IADOT , ,Mason City (I-35) , +RMVI4,3,309.6000 ,41.54950 ,-95.91730,IADOT , ,Missouri Valley (I-29) , +RMPI4,3,133.0000 ,40.89570 ,-91.55550,IADOT , ,Mount Pleasant (US 218) , +RNHI4,3,327.0000 ,43.06720 ,-92.45920,IADOT , ,New Hampton (US 18) , +RONI4,3,303.5000 ,41.86530 ,-96.10320,IADOT , ,Onawa (I-29) , +ROSI4,3,334.0000 ,41.02570 ,-93.79780,IADOT , ,Osceola (I-35) , +ROTI4,3,195.8000 ,41.01680 ,-92.42120,IADOT , ,Ottumwa (US 63) , +RPLI4,3,271.5000 ,41.39020 ,-92.87250,IADOT , ,Pella (IA 163) , +RROI4,3,290.7000 ,40.98000 ,-94.98380,IADOT , ,Red Oak (US 34/US 71) , +RSDI4,3,287.6000 ,40.69000 ,-95.78480,IADOT , ,Sidney (I-29/IA 2) , +RSGI4,3,202.5000 ,41.33630 ,-92.31450,IADOT , ,Sigourney (IA 92) , +RSCI4,3,364.5000 ,42.48320 ,-96.39050,IADOT , ,Sioux City (I-29) , +RSPI4,3,452.6000 ,43.12680 ,-95.08880,IADOT , ,Spencer (US 18) , +RSLI4,3,405.3000 ,42.74750 ,-95.15150,IADOT , ,Storm Lake (US 71/IA 3) , +RTPI4,3,236.4000 ,41.64500 ,-91.12650,IADOT , ,Tipton (I-80) , +RURI4,3,302.3000 ,42.31250 ,-91.97580,IADOT , ,Urbana (I-380) , +RWLI4,3,269.0000 ,42.45570 ,-92.30900,IADOT , ,Waterloo (US 20) , +RWII4,3,350.5000 ,42.58750 ,-93.53150,IADOT , ,Williams (I-35) , +RWBI4,3,260.5000 ,41.68770 ,-92.00870,IADOT , ,Williamsburg (I-80) , +RHAI4,3,333.4000 ,43.39220 ,-93.34980,IADOT , ,Hanlontown (I-35) , +RSBI4,3,348.0000 ,42.45340 ,-93.05830,IADOT , ,Steamboat Rock (US20) , +RIGI4,3,376.0000 ,42.35150 ,-95.47830,IADOT , ,Ida Grove (HW 59) , +RCRI4,3,232.0000 ,41.92590 ,-91.54990,IADOT , ,Cedar Rapids (US30) , +RCFI4,3,246.9000 ,41.68930 ,-93.26480,IADOT , ,Colfax (I-80) , +RSYI4,3,479.8000 ,43.43350 ,-95.71490,IADOT , ,Sibley (HW 60/HW 9) , +RBFI4,3,335.3000 ,40.67730 ,-94.71490,IADOT , ,West of Bedford (HW 2) , +RDYI4,3,243.5400 ,41.14650 ,-92.64360,IADOT , ,West of Eddyville (HW 137) , +RTMI4,3,250.5500 ,41.96490 ,-92.29830,IADOT , ,East of Tama (HW 30/HW 21) , +RPFI4,3,294.1300 ,42.83320 ,-92.53710,IADOT , ,Plainfield (HW 218) , +RCTI4,3,211.2264 ,40.65780 ,-92.06200,IADOT , ,East of Cantril (HW 2) , +RCLI4,3,426.7200 ,41.91850 ,-95.34390,IADOT , ,Denison (HW 59) , +SADI4,3,417.6000 ,41.51995 ,-94.58382,IEM ,KCCI-TV ,Adair Casey KCCI-TV , +SAEI4,3,292.6000 ,41.61822 ,-94.02258,IEM ,KCCI-TV ,Adel / ADM MS KCCI-TV , +SAFI4,3,387.1000 ,41.02508 ,-94.18043,IEM ,KCCI-TV ,Afton / East Union KCCI-TV , +SALI4,3,312.4000 ,41.02908 ,-92.80542,IEM ,KCCI-TV ,Albia Lincoln Center KCCI-TV , +SAGI4,3,341.0000 ,43.07060 ,-94.22890,IEM ,KCCI-TV ,Algona KCCI-TV , +SAMI4,3,310.0000 ,42.05040 ,-93.62820,IEM ,KCCI-TV ,Ames / St Cecilia KCCI-TV , +SATI4,3,387.1000 ,41.45350 ,-94.76910,IEM ,KCCI-TV ,Anita KCCI-TV , +SAKI4,3,310.9000 ,41.73233 ,-93.62275,IEM ,KCCI-TV ,Ankeny / Christian Academy KCCI-TV , +SAUI4,3,426.7000 ,41.71258 ,-94.92228,IEM ,KCCI-TV ,Audubon Community KCCI-TV , +SBXI4,3,304.8000 ,41.82640 ,-93.15130,IEM ,KCCI-TV ,Baxter KCCI-TV , +SUNI4,3,301.8000 ,42.24380 ,-93.06750,IEM ,KCCI-TV ,BCLUW MS Union KCCI-TV , +SBDI4,3,350.5000 ,40.67217 ,-94.72363,IEM ,KCCI-TV ,Bedford KCCI-TV , +SBKI4,3,372.2000 ,42.84977 ,-93.60370,IEM ,KCCI-TV ,Belmond Klemme KCCI-TV , +SBZI4,3,294.0000 ,41.52550 ,-93.62140,IEM ,KCCI-TV ,Blank Park Zoo, DSM KCCI-TV , +SBOI4,3,353.6000 ,42.02555 ,-93.77575,IEM ,KCCI-TV ,Boone / United Community KCCI-TV , +SBRI4,3,280.4000 ,41.73895 ,-92.44668,IEM ,KCCI-TV ,Brooklyn / BGM KCCI-TV , +SBSI4,3,265.0000 ,41.20539 ,-92.88500,IEM ,KCCI-TV ,Bussey KCCI-TV , +SCAI4,3,423.7000 ,42.07497 ,-94.87013,IEM ,KCCI-TV ,Carroll / Kuemper Catholic KCCI-TV , +SCEI4,3,299.0000 ,40.73080 ,-92.87260,IEM ,KCCI-TV ,Centerville KCCI-TV , +SCHI4,3,332.2000 ,41.02347 ,-93.31173,IEM ,KCCI-TV ,Chariton / Van Allen Elem KCCI-TV , +SCGI4,3,378.0000 ,42.73493 ,-93.72977,IEM ,KCCI-TV ,Clarion / Clarion Goldfield KCCI-TV , +SCOI4,3,315.5000 ,42.01070 ,-93.31827,IEM ,KCCI-TV ,Colo Elem KCCI-TV , +SCBI4,3,386.5000 ,41.87865 ,-94.68113,IEM ,KCCI-TV ,Coon Rapids / Bayard KCCI-TV , +SCNI4,3,390.1000 ,40.99170 ,-94.73975,IEM ,KCCI-TV ,Corning Community KCCI-TV , +SCSI4,3,417.6000 ,41.07318 ,-94.36958,IEM ,KCCI-TV ,Creston HS KCCI-TV , +SBMI4,3,260.0000 ,40.75060 ,-92.41360,IEM ,KCCI-TV ,Davis County / Bloomfield KCCI-TV , +SKCI4,3,274.3000 ,41.59290 ,-93.62987,IEM ,KCCI-TV ,Des Moines / KCCI Studios KCCI-TV , +SDRI4,3,304.8000 ,41.55788 ,-93.57745,IEM ,KCCI-TV ,Des Moines / River Woods KCCI-TV , +SDCI4,3,279.0000 ,41.62900 ,-93.79750,IEM ,KCCI-TV ,DSM Christian KCCI-TV , +SEGI4,3,339.0000 ,42.66530 ,-93.91240,IEM ,KCCI-TV ,Eagle Grove KCCI-TV , +SFAI4,3,374.9000 ,42.33715 ,-94.41475,IEM ,KCCI-TV ,Farnhamville / Prairie Valley KCCI-TV , +SMAI4,3,314.9000 ,42.02452 ,-92.92017,IEM ,KCCI-TV ,Fisher Elem _ Marshalltown KCCI-TV , +SFOI4,3,423.7000 ,41.28843 ,-94.56638,IEM ,KCCI-TV ,Fontanelle / Nodaway Valley KCCI-TV , +SFDI4,3,353.3000 ,42.52162 ,-94.18518,IEM ,KCCI-TV ,Fort Dodge KCCI-TV , +SGLI4,3,387.1000 ,42.06188 ,-94.72743,IEM ,KCCI-TV ,Glidden Ralston KCCI-TV , +SGRI4,3,310.9000 ,41.68500 ,-93.79585,IEM ,KCCI-TV ,Grimes Elementary KCCI-TV , +SHUI4,3,379.5000 ,42.71588 ,-94.22862,IEM ,KCCI-TV ,Humboldt / Taft Elem KCCI-TV , +SINI4,3,310.9000 ,41.36505 ,-93.54800,IEM ,KCCI-TV ,Indianola / Emerson Elem KCCI-TV , +SIAI4,3,285.9000 ,41.58003 ,-93.73933,IEM ,KCCI-TV ,Iowa Christian KCCI-TV , +SIFI4,3,376.4000 ,42.52960 ,-93.26528,IEM ,KCCI-TV ,Iowa Falls / Rock Run Elem KCCI-TV , +SJEI4,3,338.3000 ,42.00238 ,-94.37558,IEM ,KCCI-TV ,Jefferson Scranton HS KCCI-TV , +SJWI4,3,340.8000 ,42.30330 ,-93.64757,IEM ,KCCI-TV ,Jewell / South Hamilton KCCI-TV , +SJCI4,3,283.5000 ,41.55950 ,-93.75830,IEM ,KCCI-TV ,Jordan Creek KCCI-TV , +SKNI4,3,301.8000 ,41.31677 ,-93.11562,IEM ,KCCI-TV ,Knoxville / West Elem KCCI-TV , +SLOI4,3,359.7000 ,40.62535 ,-93.93650,IEM ,KCCI-TV ,Lamoni Community KCCI-TV , +SLMI4,3,398.1000 ,42.75208 ,-93.36860,IEM ,KCCI-TV ,Latimer / CAL Community KCCI-TV , +SLEI4,3,365.8000 ,40.74738 ,-93.74105,IEM ,KCCI-TV ,Leon KCCI-TV , +SLUI4,3,360.0000 ,42.91242 ,-94.08588,IEM ,KCCI-TV ,LuVerne KCCI-TV , +SMDI4,3,310.9000 ,41.88320 ,-93.81350,IEM ,KCCI-TV ,Madrid KCCI-TV , +SMLI4,3,387.1000 ,42.93488 ,-94.68212,IEM ,KCCI-TV ,Mallard KCCI-TV , +SMSI4,3,368.8000 ,42.50458 ,-94.36263,IEM ,KCCI-TV ,Manson-NW Webster KCCI-TV , +STQI4,3,256.0000 ,41.99262 ,-92.64650,IEM ,KCCI-TV ,Meskwaki Settlement School Tama KCCI-TV , +SMNI4,3,309.4000 ,41.58953 ,-92.52445,IEM ,KCCI-TV ,Montezuma Community KCCI-TV , +SMOI4,3,396.2000 ,40.71602 ,-94.23192,IEM ,KCCI-TV ,Mount Ayr Community KCCI-TV , +SMUI4,3,365.8000 ,41.03885 ,-93.95392,IEM ,KCCI-TV ,Murray KCCI-TV , +SNVI4,3,313.0000 ,42.02185 ,-93.43953,IEM ,KCCI-TV ,Nevada Community KCCI-TV , +SNEI4,3,305.7000 ,41.70372 ,-93.02815,IEM ,KCCI-TV ,Newton / Berg MS KCCI-TV , +SPKI4,3,286.0000 ,41.77800 ,-93.71810,IEM ,KCCI-TV ,North Polk / West Elem KCCI-TV , +SOGI4,3,332.0000 ,42.04110 ,-94.03080,IEM ,KCCI-TV ,Ogden KCCI-TV , +SOSI4,3,353.6000 ,41.03220 ,-93.75872,IEM ,KCCI-TV ,Osceola / Clarke Community KCCI-TV , +SOCI4,3,245.4000 ,41.30180 ,-92.65030,IEM ,KCCI-TV ,Oskaloosa Christian KCCI-TV , +SPAI4,3,356.6000 ,41.69587 ,-94.37492,IEM ,KCCI-TV ,Panora / Panorama KCCI-TV , +SPEI4,3,289.6000 ,41.40617 ,-92.90015,IEM ,KCCI-TV ,Pella MS KCCI-TV , +SPYI4,3,312.4000 ,41.84082 ,-94.07983,IEM ,KCCI-TV ,Perry KCCI-TV , +SROI4,3,384.0000 ,42.39222 ,-94.64392,IEM ,KCCI-TV ,Rockwell City KCCI-TV , +SSTI4,3,367.1000 ,41.50390 ,-94.31830,IEM ,KCCI-TV ,Stuart KCCI-TV , +SSUI4,3,289.6000 ,41.57362 ,-92.83870,IEM ,KCCI-TV ,Sully Christian KCCI-TV , +SWAI4,3,426.7000 ,42.27195 ,-95.09508,IEM ,KCCI-TV ,Wall Lake-View-Auburn KCCI-TV , +SCDI4,3,331.9000 ,40.75162 ,-93.32137,IEM ,KCCI-TV ,Wayne Community / Corydon KCCI-TV , +SWBI4,3,345.9000 ,42.46543 ,-93.82217,IEM ,KCCI-TV ,Webster City Community KCCI-TV , +SWII4,3,356.6000 ,41.33342 ,-94.01480,IEM ,KCCI-TV ,Winterset Community KCCI-TV , +SWGI4,3,291.0000 ,41.85680 ,-93.92080,IEM ,KCCI-TV ,Woodward KCCI-TV , +SABS2,3,395.1000 ,45.49000 ,-98.47000,IEM ,KELO-TV ,Aberdeen KELO-TV , +SALS2,3,342.0000 ,43.02280 ,-96.63110,IEM ,KELO-TV ,Alcester KELO-TV , +SBAS2,3,342.0000 ,43.76110 ,-96.73500,IEM ,KELO-TV ,Baltic KELO-TV , +SBRS2,3,342.0000 ,43.59500 ,-96.57750,IEM ,KELO-TV ,Brandon KELO-TV , +BHHS2,3,414.0000 ,45.79444 ,-97.75111,IEM ,KELO-TV ,Britton, SD _ Britton/Hecla HS KELO-TV , +BKGS2,3,495.0000 ,44.29200 ,-96.77580,IEM ,KELO-TV ,Brookings, SD _ Mickelson MS KELO-TV , +CHAS2,3,447.0000 ,43.79970 ,-99.33750,IEM ,KELO-TV ,Chamberlain, SD _ St Joe IS KELO-TV , +SCLS2,3,342.0000 ,44.87860 ,-97.73470,IEM ,KELO-TV ,Clark KELO-TV , +SLKS2,3,342.0000 ,44.75390 ,-96.68470,IEM ,KELO-TV ,Clear Lake KELO-TV , +CLTS2,3,478.0000 ,43.73220 ,-96.92083,IEM ,KELO-TV ,Colton, SD _ Tri-Valley KELO-TV , +CCES2,3,440.0000 ,44.06972 ,-99.43667,IEM ,KELO-TV ,Crow Creek Elem _ Fort Thompson, SD KELO-TV , +EPJS2,3,342.0000 ,42.68917 ,-96.68250,IEM ,KELO-TV ,Elk Point _ Jefferson, SD KELO-TV , +SEKS2,3,342.0000 ,44.23440 ,-96.48190,IEM ,KELO-TV ,Elkton KELO-TV , +ESDS2,3,576.0000 ,45.77470 ,-99.62280,IEM ,KELO-TV ,Eureka KELO-TV , +FSNS2,3,478.0000 ,44.04944 ,-96.59500,IEM ,KELO-TV ,Flandreau KELO-TV , +SGAS2,3,342.0000 ,43.71390 ,-96.50330,IEM ,KELO-TV ,Garretson KELO-TV , +SHBS2,3,379.8000 ,43.41740 ,-96.69740,IEM ,KELO-TV ,Harrisburg KELO-TV , +SHIM5,3,342.0000 ,43.52500 ,-96.35580,IEM ,KELO-TV ,Hills KELO-TV , +SHOS2,3,342.0000 ,44.01000 ,-97.52610,IEM ,KELO-TV ,Howard KELO-TV , +SHII4,3,436.5000 ,43.19000 ,-96.13000,IEM ,KELO-TV ,Hull KELO-TV , +SHUS2,3,388.5000 ,44.35000 ,-98.23000,IEM ,KELO-TV ,Huron KELO-TV , +ICSI4,3,449.0000 ,43.30550 ,-96.43500,IEM ,KELO-TV ,Inwood, IA _ Inwood Christian School KELO-TV , +KKAS2,3,749.0000 ,43.83670 ,-101.5219,IEM ,KELO-TV ,Kadoka School KELO-TV , +RRCM5,3,349.0000 ,44.22720 ,-95.26330,IEM ,KELO-TV ,Lamberton, MN _ Red Rock Central KELO-TV , +LDSS2,3,1560.000 ,44.34830 ,-103.7756,IEM ,KELO-TV ,Lead _ Deadwood School KELO-TV , +LMSM5,3,443.0000 ,43.66111 ,-96.21278,IEM ,KELO-TV ,Luverne, MN _ Luverne MS KELO-TV , +SMAM5,3,340.1000 ,45.01000 ,-96.19000,IEM ,KELO-TV ,Madison KELO-TV , +MMSS2,3,510.0000 ,44.01500 ,-97.10250,IEM ,KELO-TV ,Madison, SD _ Madison MS KELO-TV , +MTYS2,3,441.0000 ,42.99583 ,-98.14944,IEM ,KELO-TV ,Marty, SD KELO-TV , +SMIS2,3,354.3000 ,45.20000 ,-96.63000,IEM ,KELO-TV ,Milbank KELO-TV , +MLES2,3,484.0000 ,44.51972 ,-98.98194,IEM ,KELO-TV ,Miller, SD KELO-TV , +SMSS2,3,784.0000 ,43.30000 ,-100.6600,IEM ,KELO-TV ,Mission KELO-TV , +MTMS2,3,395.0000 ,43.71889 ,-98.03361,IEM ,KELO-TV ,Mitchell, SD _ Mitchell MS KELO-TV , +MOBS2,3,511.0000 ,45.54220 ,-100.4342,IEM ,KELO-TV ,Mobridge, SD _ Mobridge MS KELO-TV , +PESS2,3,426.0000 ,43.39500 ,-97.97667,IEM ,KELO-TV ,Parkston, SD _ Parkston Elem KELO-TV , +SPIS2,3,493.1000 ,44.37000 ,-100.3500,IEM ,KELO-TV ,Pierre KELO-TV , +SRMS2,3,342.0000 ,44.11940 ,-97.21720,IEM ,KELO-TV ,Ramona KELO-TV , +SRAS2,3,998.8000 ,44.06000 ,-103.2100,IEM ,KELO-TV ,Rapid City KELO-TV , +RDPS2,3,397.0000 ,44.87805 ,-98.51556,IEM ,KELO-TV ,Redfield Public, SD KELO-TV , +CLYI4,3,410.0000 ,43.42030 ,-96.16830,IEM ,KELO-TV ,Rock Rapids _ Central Lyon MS KELO-TV , +SSBI4,3,462.0000 ,43.39920 ,-95.75170,IEM ,KELO-TV ,Sibley KELO-TV , +SSBS2,3,449.5000 ,43.54000 ,-96.73000,IEM ,KELO-TV ,Sioux Falls Pavilion KELO-TV , +SSAS2,3,440.4000 ,43.53000 ,-96.72000,IEM ,KELO-TV ,Sioux Falls PH KELO-TV , +SVMS2,3,373.0000 ,42.77940 ,-96.92890,IEM ,KELO-TV ,Vermillion KELO-TV , +SWAS2,3,854.9000 ,43.99000 ,-102.2400,IEM ,KELO-TV ,Wall KELO-TV , +SWTS2,3,544.9000 ,44.91000 ,-97.10000,IEM ,KELO-TV ,Watertown KELO-TV , +SWES2,3,342.0000 ,45.33470 ,-97.51500,IEM ,KELO-TV ,Webster KELO-TV , +WHSS2,3,622.0000 ,43.37528 ,-99.85889,IEM ,KELO-TV ,Winner, SD _ Winner HS KELO-TV , +WMSM5,3,483.0000 ,43.62806 ,-95.62972,IEM ,KELO-TV ,Worthington, MN _ Worthington MS KELO-TV , +SYAS2,3,382.4000 ,42.89000 ,-97.39000,IEM ,KELO-TV ,Yankton KELO-TV , +SBLM5,3,383.0000 ,43.64310 ,-93.39190,IEM ,KIMT-TV ,Albert Lea KIMT-TV , +SASM5,3,365.8000 ,43.66230 ,-92.95220,IEM ,KIMT-TV ,Austin KIMT-TV , +SCCI4,3,304.8000 ,43.06800 ,-92.67220,IEM ,KIMT-TV ,Charles City KIMT-TV , +SCKI4,3,368.8000 ,43.13990 ,-93.36830,IEM ,KIMT-TV ,Clear Lake KIMT-TV , +SCQI4,3,390.1000 ,43.37610 ,-92.10310,IEM ,KIMT-TV ,Cresco KIMT-TV , +SFCI4,3,384.0000 ,43.26570 ,-93.64910,IEM ,KIMT-TV ,Forest City KIMT-TV , +SGNI4,3,373.0000 ,43.09450 ,-93.60900,IEM ,KIMT-TV ,Garner KIMT-TV , +SGMM5,3,403.0000 ,43.71000 ,-92.50000,IEM ,KIMT-TV ,Grand Meadow KIMT-TV , +SHPI4,3,328.0000 ,42.75270 ,-93.19410,IEM ,KIMT-TV ,Hampton KIMT-TV , +SKWI4,3,369.0000 ,42.93682 ,-93.78675,IEM ,KIMT-TV ,Kanawha KIMT-TV , +SMII4,3,393.0000 ,43.41478 ,-93.53201,IEM ,KIMT-TV ,Lake Mills KIMT-TV , +SLEM5,3,393.2000 ,43.51310 ,-92.50950,IEM ,KIMT-TV ,LeRoy KIMT-TV , +SMYI4,3,335.2000 ,43.15060 ,-93.16910,IEM ,KIMT-TV ,Mason City KIMT-TV , +SMWI4,3,357.0000 ,43.13250 ,-93.23970,IEM ,KIMT-TV ,Mason City Newman KIMT-TV , +SRMI4,3,328.0000 ,43.13000 ,-93.10000,IEM ,KIMT-TV ,Mason City RMS KIMT-TV , +SNSI4,3,332.0000 ,43.14730 ,-93.00440,IEM ,KIMT-TV ,Nora Springs KIMT-TV , +SNKI4,3,371.0000 ,43.45000 ,-93.20000,IEM ,KIMT-TV ,Northwood KIMT-TV , +SOAI4,3,353.6000 ,43.27700 ,-92.81020,IEM ,KIMT-TV ,Osage KIMT-TV , +SFCM5,3,318.3000 ,43.67000 ,-92.00000,IEM ,KIMT-TV ,Preston KIMT-TV , +SRVI4,3,382.0000 ,43.35000 ,-92.50000,IEM ,KIMT-TV ,Riceville KIMT-TV , +SFMM5,3,304.0000 ,44.00620 ,-92.46270,IEM ,KIMT-TV ,Rochester (Friedell) KIMT-TV , +SJAM5,3,317.0000 ,44.05660 ,-92.48650,IEM ,KIMT-TV ,Rochester (John Adams) KIMT-TV , +SKGM5,3,319.0000 ,44.04150 ,-92.45510,IEM ,KIMT-TV ,Rochester (Kellogg) KIMT-TV , +SWLM5,3,312.0000 ,43.98610 ,-92.44260,IEM ,KIMT-TV ,Rochester (Willow Creek) KIMT-TV , +SRRI4,3,316.0000 ,43.05000 ,-92.93000,IEM ,KIMT-TV ,Rockford KIMT-TV , +SRSI4,3,351.0000 ,42.98000 ,-93.10000,IEM ,KIMT-TV ,Rockwell KIMT-TV , +SSAI4,3,358.0000 ,43.37490 ,-92.91670,IEM ,KIMT-TV ,St Ansgar KIMT-TV , +SNII4,3,384.9000 ,43.36000 ,-93.70000,IEM ,KIMT-TV ,Thompson KIMT-TV , +STKI4,3,348.0000 ,43.24050 ,-94.03909,IEM ,KIMT-TV ,Titonka KIMT-TV , +SVTI4,3,386.0000 ,43.12640 ,-93.47770,IEM ,KIMT-TV ,Ventura KIMT-TV , +STMM5,3,387.0000 ,44.14000 ,-92.90000,IEM ,KIMT-TV ,West Concord KIMT-TV , +IN001,3,183.1060 ,41.56906 ,-87.29751,INDOT , ,I-94 @ I-65 , +IN002,3,200.8800 ,41.65879 ,-86.90262,INDOT , ,I-94 @ US-421 , +IN003,3,243.1170 ,41.11952 ,-85.16308,INDOT , ,Fort Wayne , +IN004,3,252.5640 ,41.27082 ,-86.27204,INDOT , ,Argos , +IN005,3,200.4240 ,40.90937 ,-87.20648,INDOT , ,Rensselaer , +IN006,3,196.0790 ,40.36300 ,-86.75052,INDOT , ,Frankfort , +IN007,3,236.4080 ,40.64460 ,-86.22701,INDOT , ,Kokomo , +IN008,3,271.5170 ,40.50170 ,-85.54587,INDOT , ,Gas City , +IN009,3,282.3320 ,39.98053 ,-86.64356,INDOT , ,I-65 @ SR28 , +IN010,3,334.8080 ,39.85865 ,-85.23626,INDOT , ,New Castle , +IN011,3,253.4930 ,39.52242 ,-86.80119,INDOT , ,Cloverdale , +IN012,3,289.4630 ,39.34605 ,-85.48264,INDOT , ,Greensburg , +IN013,3,167.9370 ,38.91312 ,-85.97779,INDOT , ,Seymour , +IN014,3,160.2550 ,38.66026 ,-86.91135,INDOT , ,Loogootee , +IN015,3,126.5490 ,38.59129 ,-87.54577,INDOT , ,Vincennes , +IN016,3,119.5110 ,38.03357 ,-87.49419,INDOT , ,Evansville , +IN017,3,155.5530 ,38.22643 ,-86.70901,INDOT , ,Birdseye , +IN018,3,139.4340 ,38.28941 ,-85.76469,INDOT , ,Jeffersonville , +IN019,3,179.0140 ,41.67067 ,-87.52294,INDOT , ,MP 1 - West Point , +IN020,3,181.0460 ,41.63712 ,-87.45404,INDOT , ,MP 10 - Cline Ave , +IN021,3,215.9630 ,41.67197 ,-86.74304,INDOT , ,MP 49 - LaPorte , +IN022,3,212.8400 ,41.71589 ,-86.26726,INDOT , ,MP 77 - South Bend , +IN023,3,258.0990 ,41.74571 ,-85.43666,INDOT , ,MP 121- Howe - Lagrange , +IN024,3,305.7720 ,41.73465 ,-85.00330,INDOT , ,MP 144 - Angola , +IN025,3,241.1710 ,41.72250 ,-86.00608,INDOT , ,MP-96 Elkhart East Plaza , +IN026,3,242.9280 ,39.84631 ,-86.24075,INDOT , ,Georgetown Rd Bridge over I-65 , +IN027,3,229.9340 ,39.90990 ,-86.10602,INDOT , ,82nd St Bridge over White River , +IN028,3,220.4930 ,39.78701 ,-86.14384,INDOT , ,Market St. to I65 & I70 , +IN029,3,246.8320 ,39.75350 ,-86.07410,INDOT , ,Brookville Rd. over Conrail , +IN030,3,257.2870 ,39.70451 ,-86.05283,INDOT , ,Mcgregor Rd. over Buck Creek , +IN031,3,236.1420 ,39.80739 ,-86.26759,INDOT , ,I-74 @ I-465 , +FORC2,3,1524.800 ,40.57610 ,-105.0858,INTERNET ,ColoState ,CSU Campus ColoState , +CSUF ,3,1569.700 ,40.60000 ,-105.1400,INTERNET ,ColoState ,CSU Foothills Campus ColoState , +NCARM,3,1885.000 ,39.97810 ,-105.2756,INTERNET ,NCAR ,NCAR Table Mesa NCAR , +NCARF,3,1625.000 ,40.03500 ,-105.2431,INTERNET ,NCAR ,NCAR Foothills Lab NCAR , +SADDL,3,3528.000 ,40.05472 ,-105.5892,INTERNET ,NiwotRidge ,Niwot Ridge Saddle NiwotRidge , +C1 ,3,3021.000 ,40.03583 ,-105.5358,INTERNET ,NiwotRidge ,Niwot Ridge C1 NiwotRidge , +D1 ,3,3739.000 ,40.05944 ,-105.6167,INTERNET ,NiwotRidge ,Niwot Ridge D1 NiwotRidge , +ALBIO,3,3259.000 ,40.04278 ,-105.5922,INTERNET ,NiwotRidge ,Niwot Ridge Albion NiwotRidge , +ARICK,3,3814.000 ,40.04889 ,-105.6400,INTERNET ,NiwotRidge ,Niwot Ridge Arickaree Glacier NiwotRidge , +GL4 ,3,3570.800 ,40.05460 ,-105.6185,INTERNET ,NiwotRidge ,Niwot Ridge Green Lake 4 NiwotRidge , +NWTC ,3,1855.000 ,39.91360 ,-105.2469,INTERNET ,NREL ,Rocky Flats Nat Wind Tech Ctr NREL , +SRRL ,3,1829.000 ,39.74000 ,-105.1800,INTERNET ,NREL ,Solar Radiation Research Lab NREL , +SPMD ,3,2944.400 ,39.27000 ,-105.6200,INTERNET ,NREL ,South Park Mountain Data (NREL) NREL , +XECS ,3,1490.000 ,38.21000 ,-104.5700,INTERNET ,XCEL ,XCEL Energy Comanche Station XCEL , +STM ,3,3200.000 ,40.45000 ,-106.7300,INTERNET ,DRI ,Storm Peak DRI , +PIKES,3,4300.000 ,38.84000 ,-105.0450,INTERNET ,PP_CogRR ,Pikes Peak Summit PP_CogRR , +ITD46,3,1448.100 ,42.87937 ,-112.6634,ITD , ,Arbon Valley ID US ITD , +ITD06,3,791.9000 ,43.87000 ,-116.7800,ITD , ,Black Canyon ID US ITD , +ITD26,3,1389.900 ,43.30153 ,-112.2720,ITD , ,Blackfoot R.A. ID US ITD , +ITD35,3,2529.800 ,42.22000 ,-111.0633,ITD , ,Border ID US ITD , +ITD56,3,1826.400 ,43.87870 ,-111.3629,ITD , ,Botts RWIS ID US ITD , +ITD03,3,883.0000 ,43.57000 ,-116.1800,ITD , ,Broadway ID US ITD , +ITD07,3,730.9000 ,43.67000 ,-116.6800,ITD , ,Caldwell ID US ITD , +ITD54,3,1908.100 ,44.42526 ,-112.2036,ITD , ,Camp Creek RWIS ID US ITD , +ITD52,3,1780.000 ,44.32860 ,-112.1750,ITD , ,China Point RWIS ID US ITD , +ITD34,3,1286.300 ,42.63433 ,-113.0910,ITD , ,Coldwater ID US ITD , +ITD45,3,1745.900 ,42.33099 ,-113.4997,ITD , ,Conner Summit ID US ITD , +ITD27,3,1853.200 ,42.62651 ,-111.9195,ITD , ,Fish Creek Summit ID US ITD , +ITD19,3,1006.100 ,47.62000 ,-116.5200,ITD , ,Fourth Of July Canyon ID US ITD , +ITD33,3,1827.300 ,42.43000 ,-111.3700,ITD , ,Georgetown ID US ITD , +ITD31,3,908.3000 ,42.94427 ,-115.1170,ITD , ,Glenns Ferry ID US ITD , +ITD53,3,1469.100 ,43.12421 ,-114.6606,ITD , ,Gwynn Ranch Hill RWIS ID US ITD , +ITD09,3,1218.900 ,42.57000 ,-114.3900,ITD , ,Hansen Bridge ID US ITD , +ITD55,3,2016.900 ,44.61831 ,-111.3355,ITD , ,Henry's Lake ID US ITD , +ITD49,3,1268.000 ,42.56833 ,-113.7303,ITD , ,Heyburn Interchange ID US ITD , +ITD16,3,1448.100 ,43.65000 ,-112.1200,ITD , ,I-15 mp 130 near Osgood ID US ITD , +ITD15,3,1463.000 ,43.50000 ,-112.0600,ITD , ,Idaho Falls ID US ITD , +ITD48,3,1352.100 ,42.41330 ,-113.3179,ITD , ,Idahome Interchange ID US ITD , +ITD22,3,1674.900 ,42.00000 ,-114.6700,ITD , ,Jackpot ID US ITD , +ITD47,3,1585.900 ,42.14474 ,-112.9806,ITD , ,Juniper Interchange ID US ITD , +ITD43,3,1399.900 ,43.09615 ,-114.3716,ITD , ,Kinsey Butte ID US ITD , +ITD28,3,1595.600 ,46.63496 ,-114.5796,ITD , ,Lolo Pass ID US ITD , +ITD24,3,1706.900 ,42.34315 ,-112.2268,ITD , ,Malad Summit ID US ITD , +ITD40,3,923.5000 ,47.05482 ,-116.8615,ITD , ,Marsh Hill ID US ITD , +ITD23,3,1799.800 ,44.32000 ,-111.4500,ITD , ,Osborne Bridge ID US ITD , +ITD08,3,1099.100 ,42.63000 ,-114.4500,ITD , ,Perrine Bridge ID US ITD , +ITD51,3,1667.000 ,43.31365 ,-115.2665,ITD , ,Pine Turnoff ID US ITD , +ITD01,3,670.9000 ,47.71000 ,-117.0200,ITD , ,Pleasant View ID US ITD , +ITD25,3,1402.100 ,42.85082 ,-112.4150,ITD , ,Pocatello ID US ITD , +ITD10,3,1341.100 ,42.57000 ,-113.9700,ITD , ,Ridgeway ID US ITD , +ITD18,3,1676.100 ,43.61000 ,-111.7000,ITD , ,Ririe ID US ITD , +ITD44,3,1496.900 ,42.21482 ,-114.5948,ITD , ,Rogerson ID US ITD , +ITD42,3,2190.900 ,43.90958 ,-114.7952,ITD , ,Smiley Creek Airport ID US ITD , +ITD36,3,1524.000 ,44.30000 ,-116.1000,ITD , ,Smiths Ferry ID US ITD , +ITD32,3,1335.000 ,43.04518 ,-112.7400,ITD , ,Sterling ID US ITD , +ITD13,3,1584.000 ,42.21000 ,-113.0500,ITD , ,Sweetzer Summit ID US ITD , +ITD17,3,1524.000 ,43.76000 ,-111.8500,ITD , ,Thornton ID US ITD , +ITD50,3,1501.100 ,43.32534 ,-114.2808,ITD , ,Timmerman Hill ID US ITD , +ITD20,3,732.1000 ,47.63000 ,-116.6800,ITD , ,Vets Memorial Bridge ID US ITD , +ITD57,3,2182.400 ,44.23082 ,-113.9754,ITD , ,Willow Creek Summit RWIS ID US ITD , +ITD41,3,1209.100 ,46.25521 ,-116.6050,ITD , ,Winchester ID US ITD , +ITD29,3,1694.700 ,43.59457 ,-114.3440,ITD , ,Wood River ID US ITD , +ITD12,3,1325.900 ,42.52000 ,-113.4200,ITD , ,Yale ID US ITD , +ITD58,3,800.0000 ,46.51325 ,-116.9523,ITD , ,Shirrod ID US ITD , +ITD60,3,257.8190 ,46.49972 ,-116.7136,ITD , ,Cottonwood ID US ITD , +ITD61,3,878.7240 ,46.79889 ,-116.5519,ITD , ,Deary ID US ITD , +ITD62,3,1203.999 ,45.82778 ,-115.4403,ITD , ,Elk City ID US ITD , +ITD63,3,956.8590 ,46.38222 ,-116.1275,ITD , ,Greer ID US ITD , +ITD64,3,446.0860 ,46.24667 ,-116.0149,ITD , ,Kamiah ID US ITD , +ITD65,3,963.8620 ,44.44500 ,-116.8006,ITD , ,Midvale ID US ITD , +ITD66,3,791.7270 ,48.57432 ,-116.9577,ITD , ,Priest ID US ITD , +ITD67,3,690.3250 ,43.97861 ,-116.9233,ITD , ,I84 and US95 ID US ITD , +ITD68,3,1570.961 ,44.58028 ,-116.0394,ITD , ,Donner ID US ITD , +ITD69,3,1627.053 ,44.92944 ,-116.1553,ITD , ,Goose Creek ID US ITD , +ITD70,3,964.9920 ,43.04806 ,-115.5800,ITD , ,Hammett ID US ITD , +ITD71,3,1227.794 ,43.57000 ,-116.0139,ITD , ,Highland ID US ITD , +ITD72,3,1154.601 ,45.11639 ,-116.3036,ITD , ,Boundary ID US ITD , +ITD73,3,1402.317 ,42.85082 ,-112.4150,ITD , ,Concrete ID US ITD , +ITD74,3,1132.093 ,46.11306 ,-116.3542,ITD , ,Five Mile ID US ITD , +ITD75,3,1402.317 ,42.85082 ,-112.4150,ITD , ,Frei Hill ID US ITD , +ITD76,3,797.2430 ,47.92611 ,-116.8503,ITD , ,Seasons ID US ITD , +K1BSP,2,296.6500 ,39.07860 ,-94.87910,KSDOT , ,K-7 @ Kansas R. Bonner Springs , +K1EGN,2,323.3890 ,38.81470 ,-94.88060,KSDOT , ,I-35 @ Bull Cr. Edgerton , +K1LVW,2,243.8340 ,39.31100 ,-94.91090,KSDOT , ,US-73 @ Salt Cr. Leavenworth , +K5NIC,2,418.0120 ,37.75020 ,-97.21060,KSDOT , ,K-96 @ Webb St. Wichita , +K5WSU,2,399.0430 ,37.71690 ,-97.31160,KSDOT , ,I-135 @ 17th St. , +K5BRP,2,335.1540 ,39.68190 ,-96.63440,KSDOT , ,US-77 @ Blue R. Blue Rapids , +K5FVW,2,334.1770 ,39.83430 ,-96.04730,KSDOT , ,US-36 @ Delaware R. Sabetha , +K5TPK,2,269.4980 ,39.07980 ,-95.72800,KSDOT , ,US-75 @ Kansas R. Topeka , +K5EMP,2,338.0640 ,38.40910 ,-96.09360,KSDOT , ,I-35 @ Neosho R. Emporia , +K5LWR,2,245.2130 ,38.95420 ,-95.12120,KSDOT , ,K-10 @ Wakarusa R. Lawrence , +K5TRY,2,338.0000 ,39.79620 ,-95.12030,KSDOT , ,US-36 - Troy , +K5MAN,2,309.2930 ,39.17370 ,-96.55280,KSDOT , ,K-177 @ Kansas R. Manhattan , +K5EHT,2,1034.280 ,37.11690 ,-101.8941,KSDOT , ,K-27 @ Cimarron R. Elkhart , +K5COO,2,1016.320 ,38.02920 ,-102.0059,KSDOT , ,US-50 @ MP 4.4 Syracuse , +K5KSM,2,801.3570 ,37.14740 ,-100.7291,KSDOT , ,US-54 @ Cimarron R. Liberal , +K5FRD,2,737.8580 ,37.64510 ,-99.79950,KSDOT , ,K-154 @ Arkansas R. Ford , +K5SCT,2,897.3110 ,38.67530 ,-100.8997,KSDOT , ,US-83 @ K-95 Scott , +K5NES,2,693.1600 ,38.25190 ,-99.90540,KSDOT , ,US-283 @ Pawnee R. Ness , +K5JCT,2,355.4520 ,39.03090 ,-96.77900,KSDOT , ,I-70 - Junction City , +K5ELW,2,527.4880 ,38.84260 ,-98.07040,KSDOT , ,I-70 @ MP 229 Lincoln Co. , +K5MCP,2,453.8230 ,38.36430 ,-97.66060,KSDOT , ,K-61 @ K-153 Interchange McPherson , +K5SLN,2,373.4460 ,38.87730 ,-97.64890,KSDOT , ,I-70 @ I-135 Salina , +K5CNC,2,422.7280 ,39.56860 ,-97.66060,KSDOT , ,US-81 @ Republican R. Concordia , +K5PEA,2,414.8010 ,38.14720 ,-97.12360,KSDOT , ,US-50 - Peabody Overpass , +K5ED7,2,1098.466 ,39.32640 ,-101.5822,KSDOT , ,I-70 - Edson Interchange , +K5OK7,2,923.3150 ,39.11190 ,-100.8056,KSDOT , ,I-70 - East Oakley Interchange , +K5ADT,2,949.7400 ,39.78310 ,-101.1859,KSDOT , ,US-36 - 9 mi. W of Atwood , +K5HJN,2,780.2920 ,39.66400 ,-100.2915,KSDOT , ,K-383 - 2 mi. SW of Jennings , +K5WKY,2,743.1510 ,39.00860 ,-99.88450,KSDOT , ,I-70 - East Wakeeney Interchange , +K5WKR,2,598.3910 ,38.88150 ,-99.18290,KSDOT , ,I-70 - Walker Interchange , +K5BCR,2,737.9090 ,39.48520 ,-99.84700,KSDOT , ,US-183 - 8 mi. N of Stockton , +K5LEA,2,534.2550 ,39.77120 ,-98.56170,KSDOT , ,US-36 - Lebanon Interchange , +K5WLC,2,1039.955 ,38.91730 ,-101.6732,KSDOT , ,US-40 - 2 mi. W of Wallace , +K5GTB,2,573.1610 ,38.33040 ,-98.84630,KSDOT , ,US-56 - Great Bend , +K5PTT,2,570.8730 ,37.64070 ,-98.73450,KSDOT , ,US-54 - Pratt , +K5KIO,2,406.2380 ,37.15180 ,-98.04030,KSDOT , ,K-2 - Anthony , +K5EUR,2,375.1400 ,37.80910 ,-96.42460,KSDOT , ,US-54 - Eureka , +K5GAR,2,314.4360 ,38.26260 ,-95.25020,KSDOT , ,US-59/169 Garnett , +K5CNE,2,233.3540 ,37.00930 ,-95.92670,KSDOT , ,US-75 - Caney , +K5CHE,2,250.0030 ,37.03450 ,-95.09700,KSDOT , ,US-166 @ Neosho R. Chetopa , +K5CHN,2,304.9020 ,37.52570 ,-95.45870,KSDOT , ,K-39 @ Neosho R. Chanute , +K5TOP,2,270.9650 ,39.04470 ,-95.63330,KSDOT , ,US-40 @ Bridge over Deer Ck Topeka , +K5CHY,2,405.3480 ,37.60100 ,-97.77200,KSDOT , ,375 th st w. - Cheney , +K5GRD,2,860.7470 ,37.98280 ,-100.8300,KSDOT , ,US-50 @ K-156 bridge Garden City , +K5000,2,352.4950 ,37.07056 ,-97.33861,KSDOT , ,bridge over I-35 , +K5001,2,360.3220 ,37.38194 ,-97.32417,KSDOT , ,I-35 bridge over Ninnescah River , +K5002,2,380.9560 ,37.75778 ,-97.00750,KSDOT , ,I-35 bridge over Whitewater River , +K5003,2,408.6380 ,37.93139 ,-96.77389,KSDOT , ,I-35 bridge Walnut River/El Dorado Lake , +K5004,2,446.2780 ,38.15694 ,-96.48833,KSDOT , ,I-35 bridge over Sharps Creek , +K5005,2,378.5560 ,38.64250 ,-96.03611,KSDOT , ,I-335 bridge over Missouri Pacific RR , +K5006,2,302.1870 ,38.99139 ,-95.69222,KSDOT , ,I-470 bridge over US-75 , +K5007,2,329.8290 ,39.00000 ,-95.41055,KSDOT , ,I-70 bridge over Edgewood Rd , +K5008,2,263.0870 ,38.99000 ,-95.25972,KSDOT , ,I-70 bridge over US-59 , +K5009,2,253.7850 ,39.08805 ,-94.92250,KSDOT , ,I-70 bridge over Wolf Creek , +KY010,3,97.69900 ,36.97382 ,-89.09555,KYTC-RWIS , ,US-51 @ Willow Slough Br. (Wickliffe) , +KY011,3,119.7880 ,37.14651 ,-88.39977,KYTC-RWIS , ,US-60 @ Cumberland River (Smithland) , +KY012,3,102.1080 ,37.05908 ,-88.22217,KYTC-RWIS , ,I-24 @ Cumberland River , +KY013,3,142.6430 ,36.54685 ,-88.84225,KYTC-RWIS , ,Julian Carroll @ KY 94 (Water Valley) , +KY014,3,183.1860 ,37.29793 ,-88.07928,KYTC-RWIS , ,KY-641 @ MP 5 (Marion) , +KY020,3,130.1490 ,37.85597 ,-87.57622,KYTC-RWIS , ,US-60 @ US-41 (Henderson) , +KY021,3,167.0320 ,36.68163 ,-87.40473,KYTC-RWIS , ,I-24 @ KY-115 (Oak Grove) , +KY022,3,122.2230 ,37.87253 ,-86.70798,KYTC-RWIS , ,US-60 @ mp 13 (Hawesville) , +KY023,3,128.9290 ,37.68775 ,-87.94527,KYTC-RWIS , ,KY 56 near Spring Grove , +KY024,3,131.0570 ,37.21262 ,-87.43478,KYTC-RWIS , ,Wendell Ford @ Edward Breathitt , +KY025,3,128.6230 ,37.57665 ,-87.48110,KYTC-RWIS , ,Edward Brethitt near KY370 , +KY026,3,151.8480 ,37.27873 ,-87.12365,KYTC-RWIS , ,Wendell Ford @ Central City , +KY027,3,131.3930 ,37.37697 ,-86.82748,KYTC-RWIS , ,Wendell Ford @ Beaver Dam Service Area , +KY028,3,141.1300 ,37.73667 ,-87.06852,KYTC-RWIS , ,Willian Natcher @ US-60 Bypass , +KY030,3,218.8480 ,36.67563 ,-86.54732,KYTC-RWIS , ,I-65 @ MP 2 (Franklin) , +KY031,3,182.8800 ,37.03876 ,-86.22697,KYTC-RWIS , ,I-65 @ MP 41 Smiths Grove , +KY040,3,236.8310 ,37.68248 ,-85.84282,KYTC-RWIS , ,I-65 @ Western KY Pkwy (Elizabethtown) , +KY041,3,178.3090 ,37.77727 ,-85.52119,KYTC-RWIS , ,Bluegrass Parkway @ Bardstown , +KY043,3,201.7800 ,37.46642 ,-86.28275,KYTC-RWIS , ,Wendell Ford @ Leitchfield , +KY050,3,216.4080 ,38.29710 ,-85.54702,KYTC-RWIS , ,I-64 @ River Road (Downtown Louisville) , +KY051,3,216.4080 ,38.29768 ,-85.54678,KYTC-RWIS , ,I-265 @ Westport Road (East Louisville) , +KY052,3,189.5810 ,38.16258 ,-84.85078,KYTC-RWIS , ,I-64 WB @ KY River Bridge (Frankfort) , +KY053,3,212.1420 ,38.21687 ,-85.40794,KYTC-RWIS , ,I-64 EB @ MP 25 (old rest area) , +KY054,3,138.0740 ,38.18762 ,-85.78403,KYTC-RWIS , ,I-264 @ Taylor Blvd , +KY060,3,150.5520 ,39.02960 ,-84.53349,KYTC-RWIS , ,I-275 @ KY-17 (Covington) , +KY061,3,216.8350 ,39.09352 ,-84.81319,KYTC-RWIS , ,I-275 @ MP 13 , +KY062,3,252.9920 ,38.77887 ,-84.76662,KYTC-RWIS , ,I-71 @ MP 66 (Verona) , +KY063,3,279.9340 ,38.62528 ,-84.57225,KYTC-RWIS , ,I-75 @ KY 36 (Williamstown) , +KY064,3,277.9760 ,38.95710 ,-84.63512,KYTC-RWIS , ,I-75 @ MP 178 , +KY070,3,235.6070 ,37.88635 ,-84.34215,KYTC-RWIS , ,I-75 NB @ Clays Ferry Bridge , +KY071,3,300.8350 ,38.05377 ,-84.43055,KYTC-RWIS , ,I-75 South @ I-64 (Lexington) , +KY080,3,265.4590 ,36.99725 ,-84.60757,KYTC-RWIS , ,US-27 @ KY-90 (Burnside) , +KY090,3,159.1150 ,38.68325 ,-83.78677,KYTC-RWIS , ,US-68 @ Maysville Bridge , +KY091,3,284.3810 ,38.18365 ,-83.55605,KYTC-RWIS , ,I-64 @ KY-801 (Farmers) , +KY100,3,381.9160 ,37.78985 ,-83.64845,KYTC-RWIS , ,Mountain Parkway @ MP 36 (Slade) , +KY111,3,303.8870 ,36.61812 ,-84.10606,KYTC-RWIS , ,I-75 NB @ KY Welcome Center , +KY112,3,370.0290 ,37.14640 ,-84.11027,KYTC-RWIS , ,I-75 NB @ KY-80 (London) , +KY120,3,796.1490 ,37.07570 ,-82.81020,KYTC-RWIS , ,US-119 @ Pine Mountain (Whitesburg) , +LA001,3,47.27500 ,32.42220 ,-93.64080,LSU-JSU ,LAIS ,Bossier City/Red River Research Stn LAIS , +ALDL1,3,21.35000 ,31.17780 ,-92.41060,LSU-JSU ,LAIS ,Alexandria/Dean Lee Research Station LAIS , +BHFL1,3,6.405000 ,30.36440 ,-91.16720,LSU-JSU ,LAIS ,Baton Rouge/Ben Hur Farm LAIS , +BRPL1,3,9.760000 ,30.40750 ,-91.14580,LSU-JSU ,LAIS ,Baton Rouge/Burden Research Plantation LAIS , +PCVL1,3,7.625000 ,29.98560 ,-91.07920,LSU-JSU ,LAIS ,Paincourtville/USDA LAIS , +PSCL1,3,1.220000 ,29.58110 ,-89.82250,LSU-JSU ,LAIS ,Port Sulphur/Citrus LAIS , +LA007,3,23.79000 ,31.94970 ,-91.23360,LSU-JSU ,LAIS ,St. Joseph/Northeast Research Station LAIS , +LA008,3,22.87500 ,32.10060 ,-91.70310,LSU-JSU ,LAIS ,Chase/Sweet Potato Research Station LAIS , +FRSL1,3,73.20000 ,30.78500 ,-90.20440,LSU-JSU ,LAIS ,Franklinton/Southeast Research Station LAIS , +CRLL1,3,7.625000 ,30.24110 ,-92.34750,LSU-JSU ,LAIS ,Crowley/Rice Research Station LAIS , +AFHL1,3,4.575000 ,29.63420 ,-90.84390,LSU-JSU ,LAIS ,Houma/Ardoyne Farm LAIS , +HRSL1,3,10.67500 ,30.50310 ,-90.37720,LSU-JSU ,LAIS ,Hammond Research Station LAIS , +RDRL1,3,9.150000 ,30.61360 ,-91.97530,LSU-JSU ,LAIS ,R&D Research Farm LAIS , +RPRL1,3,68.58000 ,30.94670 ,-93.27890,LSU-JSU ,LAIS ,Rosepine Research Station LAIS , +LA016,3,115.9000 ,32.75000 ,-93.07000,LSU-JSU ,LAIS ,Homer/Hill Farm Research Station LAIS , +LA018,3,51.85000 ,32.51330 ,-92.34860,LSU-JSU ,LAIS ,Calhoun Research Station LAIS , +JNRL1,3,5.490000 ,29.96500 ,-91.71500,LSU-JSU ,LAIS ,Jeanerette/Iberia Research Station LAIS , +LNLL1,3,18.91000 ,30.56250 ,-90.77470,LSU-JSU ,LAIS ,Livingston/LIGO North LAIS , +TCML1,3,0.305000 ,30.29220 ,-90.33580,LSU-JSU ,LAIS ,Manchac/Turtle Cove Research Station LAIS , +LA022,3,22.87500 ,32.53000 ,-92.04000,LSU-JSU ,LAIS ,Monroe/University of Louisiana LAIS , +SLLL1,3,18.91000 ,30.52920 ,-90.76140,LSU-JSU ,LAIS ,Livingston/LIGO South LAIS , +LWLL1,3,18.91000 ,30.55190 ,-90.81360,LSU-JSU ,LAIS ,Livingston/LIGO West LAIS , +SGRL1,3,5.795000 ,30.26140 ,-91.09470,LSU-JSU ,LAIS ,St. Gabriel Research Station LAIS , +LA026,3,76.25000 ,32.32890 ,-93.07330,LSU-JSU ,LAIS ,Bienville LAIS , +LCPL1,3,3.050000 ,30.13420 ,-93.21250,LSU-JSU ,LAIS ,Lake Charles/Calcasieu Parish Ag Cntr LAIS , +NWTM6,3,106.7500 ,32.33190 ,-89.08310,LSU-JSU ,MS-Mesonet ,Newton MS/Jackson State University MS-Mesonet , +MS207,3,74.98080 ,33.85220 ,-89.31670,LSU-JSU ,MS-Mesonet ,Calhoun City MS-Mesonet , +CEPM6,3,3.048000 ,30.35944 ,-88.52111,LSU-JSU ,U-South-AL ,Pascagoula/Cherokee Elementary School U-South-AL , +MS225,3,68.88480 ,32.20690 ,-90.51440,LSU-JSU ,MS-Mesonet ,Oakly/Brown Loam Branch Exp. Station MS-Mesonet , +AESM6,3,67.97040 ,30.81652 ,-88.52063,LSU-JSU ,U-South-AL ,Agricola/Agricola Elementary School U-South-AL , +MVSA1,3,12.19200 ,31.09000 ,-87.99900,LSU-JSU ,U-South-AL ,Mt. Vernon/Belsaw Mt. Vernon School U-South-AL , +BCHA1,3,24.38400 ,30.89500 ,-87.79700,LSU-JSU ,U-South-AL ,Bay Minnette/Baldwin County High Sch. U-South-AL , +ATACA,3,1085.000 ,39.20000 ,-120.8200,MAP ,PSD ,ALTA CA (3GHZ) PSD , +BBDCA,3,1739.000 ,39.30000 ,-120.5200,MAP ,PSD ,BIG BEND CA PSD , +BBYCA,3,12.00000 ,38.32000 ,-123.0700,MAP ,PSD ,BODEGA BAY CA PSD , +BLUCA,3,1610.000 ,39.28000 ,-120.7100,MAP ,PSD ,BLUE CANYON CA PSD , +BOCAZ,3,1556.000 ,31.56000 ,-110.5400,MAP ,PSD ,BLACK OAK AZ PSD , +CCLCA,3,76.00000 ,37.11000 ,-120.2400,MAP ,PSD ,CHOWCHILLA CA PSD , +CCOCA,3,41.00000 ,39.69000 ,-121.9100,MAP ,PSD ,CHICO CA PSD , +CFCCA,3,644.0000 ,39.08000 ,-120.9400,MAP ,PSD ,COLFAX CA PSD , +CFXCA,3,725.0000 ,39.09000 ,-120.9500,MAP ,PSD ,COLFAX CA PSD , +CNHCA,3,2020.000 ,39.18000 ,-120.5300,MAP ,PSD ,CANADA HILL CA PSD , +CNLAZ,3,1505.000 ,31.55000 ,-110.5200,MAP ,PSD ,CANELO AZ PSD , +CZCCA,3,475.0000 ,38.61000 ,-123.2200,MAP ,PSD ,CAZADERO CA (3GHZ) PSD , +ELGAZ,3,985.0000 ,31.59000 ,-110.5100,MAP ,PSD ,ELGIN AZ PSD , +FHLCA,3,1042.000 ,39.04000 ,-120.8000,MAP ,PSD ,FORESTHILL CA PSD , +FMSAZ,3,1537.000 ,31.57000 ,-110.5500,MAP ,PSD ,FREEMAN SPRINGS AZ PSD , +GKSCA,3,1728.000 ,39.08000 ,-120.5600,MAP ,PSD ,GREEK STORE CA PSD , +GLBCA,3,3.000000 ,34.43000 ,-119.8500,MAP ,PSD ,GOLETA, CA (449 MHZ 1/4 SCALE) PSD , +HBGCA,3,62.00000 ,38.65000 ,-122.8700,MAP ,PSD ,HEALDSBURG CA PSD , +HYSCA,3,2011.000 ,39.28000 ,-120.5200,MAP ,PSD ,HUYSINK CA PSD , +LHSCA,3,80.00000 ,35.62000 ,-119.6900,MAP ,PSD ,LOST HILLS CA PSD , +LVNCA,3,2148.000 ,37.94000 ,-119.1300,MAP ,PSD ,LEE VINING CA PSD , +NDNCA,3,2100.000 ,39.32000 ,-120.3700,MAP ,PSD ,NORDEN, CA PSD , +OCRCA,3,1886.000 ,39.27000 ,-120.3600,MAP ,PSD ,ONION CREEK CA PSD , +PPBCA,3,11.00000 ,35.66000 ,-121.2900,MAP ,PSD ,PT. PIEDRAS BLANCAS CA PSD , +PTSCA,3,10.00000 ,36.30000 ,-121.8900,MAP ,PSD ,POINT SUR CA PSD , +RODCA,3,30.00000 ,38.51000 ,-122.9600,MAP ,PSD ,RIO NIDO CA PSD , +SHSCA,3,50.00000 ,38.49000 ,-121.2100,MAP ,PSD ,SLOUGHHOUSE CA PSD , +SKGCO,3,1679.000 ,39.99000 ,-105.2600,MAP ,PSD ,BOULDER CO PSD , +TBTCA,3,1780.000 ,39.19000 ,-120.3800,MAP ,PSD ,TALBOT CA PSD , +TRKCA,3,1805.000 ,39.32000 ,-120.1400,MAP ,PSD ,TRUCKEE CA PSD , +WDCCA,3,2012.000 ,38.14000 ,-120.2000,MAP ,PSD ,WARD CREEK, CA PSD , +WSEAZ,3,1277.000 ,31.69000 ,-110.2800,MAP ,PSD ,WHETSTONE AZ PSD , +MD000,3,41.96500 ,38.94512 ,-76.85775,MDDOT , ,US-50 @ I-95 , +MD001,3,137.0780 ,39.12129 ,-77.19848,MDDOT , ,I-270 @ I-370 , +MD002,3,14.22600 ,38.96843 ,-77.17974,MDDOT , ,I-495 at Am Lgn Br , +MD003,3,42.72500 ,39.02195 ,-76.95042,MDDOT , ,I-95 at I-495 , +MD004,3,0.000000 ,38.57895 ,-76.05747,MDDOT , ,US-50 at Choptank , +MD005,3,30.24500 ,39.66491 ,-76.17157,MDDOT , ,US-1at Conowingo , +MD006,3,55.34000 ,39.11483 ,-76.87369,MDDOT , ,I-95 at Patuxent Riv. , +MD007,3,115.7870 ,39.30586 ,-76.74421,MDDOT , ,I-70 at I-695 , +MD008,3,95.46700 ,39.41977 ,-76.64065,MDDOT , ,I-83 at I-695 , +MD009,3,189.6960 ,39.59190 ,-76.67338,MDDOT , ,I-83 at MD-137 , +MD010,3,28.93600 ,39.20070 ,-76.69483,MDDOT , ,I-195 @ MD-295 , +MD011,3,152.1470 ,39.61661 ,-77.78568,MDDOT , ,I-70 @ I-81 , +MD012,3,300.0200 ,39.70993 ,-78.27573,MDDOT , ,I-68 at Sideling Hill , +MD013,3,190.8270 ,39.64921 ,-78.76698,MDDOT , ,I-68 at MP43 (Cumberland) , +MD014,3,878.3910 ,39.68929 ,-79.24981,MDDOT , ,I-68 @ US-219 , +MD015,3,366.3080 ,39.53946 ,-77.60618,MDDOT , ,I-70 at Frederick / Wash. Co line , +MD016,3,134.7860 ,39.35582 ,-77.58311,MDDOT , ,US-340 @ MD-180 , +MD017,3,247.1330 ,39.35883 ,-77.16696,MDDOT , ,I-70 at MD-27 , +MD018,3,240.3560 ,39.59074 ,-76.99942,MDDOT , ,MD-140 at MD-526 , +MD019,3,38.99100 ,39.22398 ,-76.71925,MDDOT , ,I-95 at Howard / Baltimore Co. Line , +MD020,3,297.2210 ,39.71993 ,-76.91596,MDDOT , ,MD-30 at PA Line , +MD021,3,75.46200 ,39.47763 ,-76.40820,MDDOT , ,US-1 at Baltimore / Harford Co. Line , +MD022,3,280.8820 ,39.48394 ,-79.04688,MDDOT , ,MD-135 at Salt Dome , +MD023,3,-2.000000,38.35905 ,-77.01524,MDDOT , ,US-301at Potomac Riv. , +MD024,3,0.000000 ,39.58273 ,-76.10132,MDDOT , ,I-95 at Tydings Br , +MD025,3,273.7480 ,39.68380 ,-78.66689,MDDOT , ,I-68 at Street Rd , +MD026,3,31.55900 ,39.06287 ,-76.64088,MDDOT , ,I-97 at MD-32 , +MD027,3,27.41300 ,39.15272 ,-76.64537,MDDOT , ,I-97 at MD-100 , +MD028,3,42.01700 ,39.20255 ,-76.63055,MDDOT , ,I-97 at I-695 , +MD029,3,31.77200 ,39.01498 ,-76.49085,MDDOT , ,US-50 at MD-2 , +MD030,3,36.43400 ,38.95407 ,-76.71657,MDDOT , ,US-50 at US-301 , +MD031,3,83.00700 ,39.14022 ,-76.75590,MDDOT , ,MD-175 at MD-295 , +MD032,3,144.0470 ,39.27571 ,-77.13486,MDDOT , ,MD 94 at Patuxent Riv. , +MD033,3,287.9300 ,39.63392 ,-77.44904,MDDOT , ,Md 77 at Cactoctin St. Park , +MD034,3,87.22800 ,39.63708 ,-76.41125,MDDOT , ,MD-24 at Rocks State Park , +MD035,3,586.1630 ,39.64278 ,-78.90050,MDDOT , ,I-68 at Md 55 , +MD037,3,13.97000 ,38.36921 ,-75.53798,MDDOT , ,US-13 at US-50 , +MD038,3,3.214000 ,38.49297 ,-75.83933,MDDOT , ,US-50 at MD-331 , +MD039,3,0.000000 ,39.36436 ,-75.88240,MDDOT , ,MD-213 at Sassafras , +MD040,3,1.732000 ,38.97107 ,-76.24923,MDDOT , ,US-50 at Kent Narrows , +MD041,3,68.98400 ,38.69267 ,-76.87199,MDDOT , ,US-301at MD-5 , +MD042,3,127.3650 ,39.69061 ,-76.30318,MDDOT , ,MD-136 at MD-646 , +MD043,3,214.7270 ,39.47325 ,-76.83664,MDDOT , ,I-795 at MD-140 , +MD044,3,23.48700 ,39.35204 ,-76.49693,MDDOT , ,I-95 at I-695 , +MD045,3,9.135000 ,38.32957 ,-76.46776,MDDOT , ,MD-4 at Patuxent , +MD046,3,194.5210 ,39.71203 ,-77.74233,MDDOT , ,I-81at Showalter Rd. , +MD047,3,163.0100 ,39.70755 ,-78.18432,MDDOT , ,I-70 at MD-522 , +MD049,3,747.9670 ,39.65670 ,-78.95448,MDDOT , ,I-68 at Savage , +MD050,3,97.28400 ,39.40428 ,-77.35915,MDDOT , ,I-70 at Monacacy , +MD051,3,122.3630 ,39.70264 ,-77.31435,MDDOT , ,US-15 at MD-140 , +MD052,3,158.5430 ,39.30870 ,-76.95265,MDDOT , ,I-70 at MD-32 , +MD053,3,81.76400 ,39.13206 ,-76.91898,MDDOT , ,US-29 at Mid Patuxent , +MD054,3,89.77500 ,38.83948 ,-76.86711,MDDOT , ,I-495 @ MD-4 , +MD055,3,802.2040 ,39.29303 ,-79.36497,MDDOT , ,US-50 at Table Rock Rd , +MD056,3,109.0810 ,39.27781 ,-77.32369,MDDOT , ,I-270 at MD-109 , +MD057,3,70.35000 ,39.00509 ,-77.07774,MDDOT , ,I-495 @ Connecticut Ave , +MD058,3,202.6710 ,39.68974 ,-76.52937,MDDOT , ,MD 23 @ MeadowTree Rd. , +MD059,3,175.6140 ,39.58467 ,-76.38776,MDDOT , ,MD 24 @ Old Jarretsville Rd. , +MD060,3,16.10800 ,39.21894 ,-76.71175,MDDOT , ,I-895 / Levering Ave. , +MD061,3,11.05700 ,39.31715 ,-76.53366,MDDOT , ,I-95 / I-895 Split , +ME001,3,19.50720 ,44.81575 ,-68.78796,MEDOT , ,Bangor I-95 Southbound , +ME002,3,19.50720 ,44.81575 ,-68.78796,MEDOT , ,Bangor I-95 Northbound , +ME003,3,86.86800 ,44.84203 ,-68.07082,MEDOT , ,Route 9 Beddington , +ME004,3,163.3728 ,44.82053 ,-68.46719,MEDOT , ,Route 9 Clifton , +ME005,3,27.12720 ,43.77403 ,-70.20050,MEDOT , ,Yarmouth I-95 Southbound , +ME006,3,27.12720 ,43.77403 ,-70.20050,MEDOT , ,Yarmouth I-95 Northbound , +ME007,3,361.4928 ,46.91515 ,-68.51628,MEDOT , ,Soucey Hill , +ME008,3,37.49040 ,44.56217 ,-68.79190,MEDOT , ,Route 1 Verona , +DPG10,3,1308.800 ,40.18169 ,-113.0218,MesoWest ,DUGWAY ,BAKER LAB UT US DUGWAY , +DPG20,3,1380.700 ,39.94554 ,-113.7015,MesoWest ,DUGWAY ,CALLAO UT US DUGWAY , +DPG02,3,1295.400 ,40.04613 ,-113.2081,MesoWest ,DUGWAY ,CALLAO GATE UT US DUGWAY , +DPG06,3,1547.500 ,40.11945 ,-112.9542,MesoWest ,DUGWAY ,CAMEL BACK MTN UT US DUGWAY , +DPG18,3,1294.200 ,40.11649 ,-113.5334,MesoWest ,DUGWAY ,CAUSEWAY UT US DUGWAY , +DPG01,3,1324.400 ,40.18380 ,-112.9217,MesoWest ,DUGWAY ,DITTO UT US DUGWAY , +DPG13,3,1383.200 ,40.10670 ,-112.8082,MesoWest ,DUGWAY ,DURAND ROAD UT US DUGWAY , +DPG07,3,1459.400 ,40.22690 ,-112.7253,MesoWest ,DUGWAY ,ENGLISH VILLAGE UT US DUGWAY , +DPG19,3,1305.200 ,39.90445 ,-113.3441,MesoWest ,DUGWAY ,FISH SPRINGS UT US DUGWAY , +DPG08,3,1298.800 ,40.19662 ,-113.1671,MesoWest ,DUGWAY ,HORIZONTAL GRID UT US DUGWAY , +DPG17,3,1257.300 ,40.72728 ,-113.4691,MesoWest ,DUGWAY ,INTERSTATE 80 UT US DUGWAY , +DPG12,3,1318.000 ,40.09075 ,-113.1096,MesoWest ,DUGWAY ,JULIET ROAD UT US DUGWAY , +DPG23,3,1370.100 ,40.27838 ,-112.9811,MesoWest ,DUGWAY ,LOWER CEDAR MTN UT US DUGWAY , +DPG25,3,1285.600 ,40.51593 ,-113.7465,MesoWest ,DUGWAY ,NORTH SALT FLATS UT US DUGWAY , +DPG22,3,1335.000 ,40.20812 ,-112.9596,MesoWest ,DUGWAY ,NW DECON PAD UT US DUGWAY , +DPG09,3,1304.500 ,40.24254 ,-113.0930,MesoWest ,DUGWAY ,PLAYA STATION UT US DUGWAY , +DPG15,3,1300.000 ,40.34109 ,-113.2353,MesoWest ,DUGWAY ,SALT FLATS UT US DUGWAY , +DPG21,3,1415.800 ,39.91933 ,-112.9390,MesoWest ,DUGWAY ,SIMPSON SPRINGS UT US DUGWAY , +DPG04,3,1325.600 ,40.04602 ,-113.0455,MesoWest ,DUGWAY ,TARGET S UT US DUGWAY , +DPG11,3,1324.700 ,40.10345 ,-112.9804,MesoWest ,DUGWAY ,TOWER GRID UT US DUGWAY , +DPG16,3,2149.500 ,40.36726 ,-113.0044,MesoWest ,DUGWAY ,UPPER CEDAR MTN UT US DUGWAY , +DPG03,3,1288.100 ,40.20802 ,-113.3386,MesoWest ,DUGWAY ,V-GRID UT US DUGWAY , +DPG24,3,1298.100 ,40.45272 ,-113.4724,MesoWest ,DUGWAY ,WEST OF WILDCAT MTN UT US DUGWAY , +DPG26,3,1291.400 ,40.28214 ,-113.7002,MesoWest ,DUGWAY ,WEST SALT FLATS UT US DUGWAY , +DPG05,3,1329.800 ,40.15694 ,-112.8937,MesoWest ,DUGWAY ,WHITE SAGE UT US DUGWAY , +DPG14,3,1326.500 ,40.35306 ,-113.0764,MesoWest ,DUGWAY ,WIG MOUNTAIN UT US DUGWAY , +UT11 ,3,1343.300 ,40.58690 ,-111.8990,MesoWest ,UTAH DOT ,9000S/I15 NB UT US UTAH DOT , +BAC ,3,1576.400 ,40.63330 ,-112.0550,MesoWest ,UTAH DOT ,BACCUS/SR111 UT US UTAH DOT , +UT8 ,3,1432.600 ,40.47541 ,-111.9048,MesoWest ,UTAH DOT ,BLUFFDALE UT US UTAH DOT , +UT7 ,3,1432.600 ,40.47541 ,-111.9048,MesoWest ,UTAH DOT ,BLUFFDALE UT US UTAH DOT , +BHCU1,3,3191.900 ,37.66278 ,-112.8375,MesoWest ,UTAH DOT ,Brian Head 2S UT US UTAH DOT , +BUNUT,3,2682.200 ,40.31496 ,-111.5630,MesoWest ,UTAH DOT ,Bunnells UT US UTAH DOT , +CSC ,3,3314.400 ,40.31201 ,-111.5882,MesoWest ,UTAH DOT ,Cascade Peak UT US UTAH DOT , +CEN ,3,1286.300 ,40.95000 ,-111.8910,MesoWest ,UTAH DOT ,CENTERVILLE UT US UTAH DOT , +UTCKH,3,1571.200 ,41.91130 ,-112.6052,MesoWest ,UTAH DOT ,Chaulk Hill UT US UTAH DOT , +CCS ,3,2165.000 ,38.59100 ,-112.4944,MesoWest ,UTAH DOT ,Clear Creek Summit I70 UT US UTAH DOT , +UTDOG,3,1883.700 ,38.63636 ,-112.6091,MesoWest ,UTAH DOT ,Dog Valley UT US UTAH DOT , +FRE ,3,2072.900 ,38.75500 ,-111.3810,MesoWest ,UTAH DOT ,FREMONT JUNCTION UT US UTAH DOT , +GHO ,3,2158.000 ,38.86400 ,-110.8100,MesoWest ,UTAH DOT ,GHOST ROCKS UT US UTAH DOT , +HO1 ,3,1652.000 ,41.13400 ,-111.7830,MesoWest ,UTAH DOT ,HORSESHOE BEND UT US UTAH DOT , +HOR ,3,1652.000 ,41.13400 ,-111.7830,MesoWest ,UTAH DOT ,HORSESHOE BEND UT US UTAH DOT , +UTBLK,3,1572.800 ,37.48211 ,-113.2200,MesoWest ,UTAH DOT ,I-15 @ Black Ridge UT US UTAH DOT , +UT29 ,3,1370.100 ,41.88607 ,-112.1692,MesoWest ,UTAH DOT ,I-15 @ Plymouth UT US UTAH DOT , +UTPVO,3,1380.700 ,40.23578 ,-111.6860,MesoWest ,UTAH DOT ,I-15 @ Provo Center St UT US UTAH DOT , +UTSCI,3,1816.600 ,39.20329 ,-112.1734,MesoWest ,UTAH DOT ,I-15 @ Scipio Summit UT US UTAH DOT , +UT26 ,3,1506.000 ,39.40973 ,-112.0517,MesoWest ,UTAH DOT ,I-15 @ Sevier River NB UT US UTAH DOT , +UT27 ,3,1506.000 ,39.40973 ,-112.0517,MesoWest ,UTAH DOT ,I-15 @ Sevier River SB UT US UTAH DOT , +UT28 ,3,1309.100 ,41.69038 ,-112.1628,MesoWest ,UTAH DOT ,I-15 @ Tremonton UT US UTAH DOT , +UTWLD,3,1286.300 ,41.44021 ,-112.0564,MesoWest ,UTAH DOT ,I-15 @ Willard POE UT US UTAH DOT , +UT23 ,3,1286.000 ,40.71710 ,-111.9044,MesoWest ,UTAH DOT ,I-15/2400 S Spaghetti UT US UTAH DOT , +UT17 ,3,1286.000 ,40.78260 ,-111.9098,MesoWest ,UTAH DOT ,I-15/600 N SALT LAKE CITY UT US UTAH DOT , +UT14 ,3,1328.900 ,40.63150 ,-111.8824,MesoWest ,UTAH DOT ,I-215/280E MURRAY UT US UTAH DOT , +UT15 ,3,1310.900 ,40.64450 ,-111.9315,MesoWest ,UTAH DOT ,I-215/JORDAN RIVER SALT LAKE CNT UT US UTAH DOT , +UTCRE,3,1489.000 ,38.93820 ,-109.8278,MesoWest ,UTAH DOT ,I-70 @ Crescent Jct UT US UTAH DOT , +UTGRS,3,1417.300 ,40.76157 ,-113.0104,MesoWest ,UTAH DOT ,I-80 @ Grassey UT US UTAH DOT , +UTSVC,3,1980.600 ,40.73205 ,-111.4983,MesoWest ,UTAH DOT ,I-80 @ Silver Ck Jct UT US UTAH DOT , +UT25 ,3,1301.500 ,40.71810 ,-111.9019,MesoWest ,UTAH DOT ,I-80 to I-15 (WB to SB) UT US UTAH DOT , +UT16 ,3,1286.000 ,40.76610 ,-111.9384,MesoWest ,UTAH DOT ,I-80/REDWOOD ROAD SALT LAKE CITY UT US UTAH DOT , +UTWTV,3,1562.100 ,41.81014 ,-112.3394,MesoWest ,UTAH DOT ,I-84 @ Whites Valley UT US UTAH DOT , +UT18 ,3,1341.100 ,40.78130 ,-111.9105,MesoWest ,UTAH DOT ,I15 400S SB UT US UTAH DOT , +UT19 ,3,1341.100 ,40.78130 ,-111.9105,MesoWest ,UTAH DOT ,I15 400S SB (HOV/Deck) UT US UTAH DOT , +UT20 ,3,1341.100 ,40.75840 ,-111.9042,MesoWest ,UTAH DOT ,I15 500S WB (Gateway) UT US UTAH DOT , +UT21 ,3,1341.100 ,40.75390 ,-111.9098,MesoWest ,UTAH DOT ,I15 600S NB UT US UTAH DOT , +UT12 ,3,1343.300 ,40.63730 ,-111.9042,MesoWest ,UTAH DOT ,I15/I215 SB UT US UTAH DOT , +UT13 ,3,1343.300 ,40.63730 ,-111.9042,MesoWest ,UTAH DOT ,I15/I215 SB Deck UT US UTAH DOT , +UTICS,3,2758.400 ,39.88570 ,-110.7479,MesoWest ,UTAH DOT ,Indian Canyon Summit UT US UTAH DOT , +KIJ ,3,1951.000 ,40.72700 ,-111.5430,MesoWest ,UTAH DOT ,Kimball Junction I80 UT US UTAH DOT , +KCWU1,3,1915.100 ,39.07439 ,-113.6382,MesoWest ,UTAH DOT ,King Canyon UT US UTAH DOT , +KNC ,3,1402.100 ,40.63840 ,-111.8136,MesoWest ,UTAH DOT ,KNUDSENS CORNER UT US UTAH DOT , +UT9 ,3,1310.900 ,40.69300 ,-112.2650,MesoWest ,UTAH DOT ,LAKE POINT I-80 UT US UTAH DOT , +UT10 ,3,1310.900 ,40.69300 ,-112.2650,MesoWest ,UTAH DOT ,LAKE POINT SR36 UT US UTAH DOT , +UTLGP,3,1284.700 ,40.90800 ,-111.9150,MesoWest ,UTAH DOT ,Legacy Parkway UT US UTAH DOT , +LGS ,3,2322.600 ,41.95160 ,-111.4916,MesoWest ,UTAH DOT ,Logan Summit UT US UTAH DOT , +UT5 ,3,1498.100 ,40.71220 ,-111.8019,MesoWest ,UTAH DOT ,MOUTH PARLEYS UT US UTAH DOT , +UT6 ,3,1498.100 ,40.71220 ,-111.8019,MesoWest ,UTAH DOT ,MOUTH PARLEYS UT US UTAH DOT , +UTQRY,3,1554.500 ,40.72580 ,-111.7681,MesoWest ,UTAH DOT ,Parleys Canyon @ Quarry UT US UTAH DOT , +UTPSH,3,1706.900 ,40.75257 ,-111.7117,MesoWest ,UTAH DOT ,Parleys Canyon Maintenance Stati UT US UTAH DOT , +PSS ,3,2145.800 ,40.75300 ,-111.6250,MesoWest ,UTAH DOT ,PARLEYS SUMMIT UT US UTAH DOT , +UT3 ,3,2145.800 ,40.75300 ,-111.6250,MesoWest ,UTAH DOT ,PARLEYS SUMMIT UT US UTAH DOT , +UT4 ,3,2145.800 ,40.75300 ,-111.6250,MesoWest ,UTAH DOT ,PARLEYS SUMMIT UT US UTAH DOT , +UTALP,3,1447.800 ,40.44965 ,-111.9116,MesoWest ,UTAH DOT ,Point of the Mountain (I-15 Alpi UT US UTAH DOT , +UTPWD,3,2711.800 ,41.36990 ,-111.7640,MesoWest ,UTAH DOT ,Powder Mountain UT US UTAH DOT , +PDM ,3,2286.000 ,41.37700 ,-111.7840,MesoWest ,UTAH DOT ,Powder Mountain UT US UTAH DOT , +PWR ,3,1768.100 ,41.13900 ,-111.8870,MesoWest ,UTAH DOT ,POWER PLANT UT US UTAH DOT , +PW1 ,3,1768.100 ,41.13900 ,-111.8870,MesoWest ,UTAH DOT ,POWER PLANT UT US UTAH DOT , +RTB ,3,2012.000 ,38.89900 ,-110.5740,MesoWest ,UTAH DOT ,RATTLESNAKE BENCH UT US UTAH DOT , +RDN ,3,1737.100 ,39.99000 ,-111.3700,MesoWest ,UTAH DOT ,Red Narrows UT US UTAH DOT , +HQ2 ,3,1270.100 ,40.72670 ,-111.9596,MesoWest ,UTAH DOT ,REGION 2 HEADQUARTERS UT US UTAH DOT , +SWH ,3,1724.600 ,41.58500 ,-111.9750,MesoWest ,UTAH DOT ,Sherwood Hills UT US UTAH DOT , +SW1 ,3,1535.900 ,41.58500 ,-111.9750,MesoWest ,UTAH DOT ,SHERWOOD HILLS UT US UTAH DOT , +SKY ,3,2843.800 ,39.63600 ,-111.3291,MesoWest ,UTAH DOT ,Skyline UT US UTAH DOT , +UTSLD,3,2282.000 ,39.92872 ,-111.0838,MesoWest ,UTAH DOT ,Soldier Summit UT US UTAH DOT , +UTS16,3,1991.300 ,41.42100 ,-111.0510,MesoWest ,UTAH DOT ,SR-16 @ MP1 UT US UTAH DOT , +UT24 ,3,1341.100 ,40.72440 ,-111.9136,MesoWest ,UTAH DOT ,SR-201 EB to I-80 EB UT US UTAH DOT , +UT248,3,2103.100 ,40.63380 ,-111.3849,MesoWest ,UTAH DOT ,SR-248 UT US UTAH DOT , +UT22 ,3,1341.100 ,40.72439 ,-111.9139,MesoWest ,UTAH DOT ,SR201 800W EB/WB UT US UTAH DOT , +TPR ,3,1759.900 ,41.21700 ,-111.7990,MesoWest ,UTAH DOT ,TRAPPERS LOOP ROAD UT US UTAH DOT , +ELBUT,3,2316.500 ,40.57579 ,-111.6877,MesoWest ,UTAH DOT ,UDOT LCC Elberts UT US UTAH DOT , +UTSTV,3,1743.500 ,40.17258 ,-110.4930,MesoWest ,UTAH DOT ,US-40 @ Starvation UT US UTAH DOT , +UTHEB,3,1747.400 ,40.56360 ,-111.4288,MesoWest ,UTAH DOT ,US-40 Heber UT US UTAH DOT , +UTMFS,3,2112.000 ,40.65290 ,-111.4569,MesoWest ,UTAH DOT ,US-40 Mayflower Summit UT US UTAH DOT , +UTPRT,3,2366.200 ,40.27680 ,-111.2153,MesoWest ,UTAH DOT ,US-40 near Strawberry UT US UTAH DOT , +UTMCO,3,2208.300 ,37.75608 ,-109.3977,MesoWest ,UTAH DOT ,UT-191 @ Monticello UT US UTAH DOT , +UTR20,3,2411.000 ,38.03036 ,-112.5307,MesoWest ,UTAH DOT ,UT-20 UT US UTAH DOT , +UT2 ,3,2115.000 ,41.19900 ,-111.1090,MesoWest ,UTAH DOT ,WAHSATCH HILL EB UT US UTAH DOT , +UT1 ,3,2115.000 ,41.20000 ,-111.1100,MesoWest ,UTAH DOT ,WASATCH HILLS UT US UTAH DOT , +WPOE ,3,1288.400 ,40.74590 ,-113.9910,MesoWest ,UTAH DOT ,Wendover Port of Entry UT US UTAH DOT , +KMS ,3,2196.100 ,40.55800 ,-111.1310,MesoWest ,UTAH DOT ,WOLF CREEK UT US UTAH DOT , +ATB ,3,2609.100 ,40.58900 ,-111.6370,MesoWest ,AVALANCHE ,ALTA - BASE UT US AVALANCHE , +CLN ,3,2945.000 ,40.57630 ,-111.6383,MesoWest ,AVALANCHE ,ALTA - COLLINS UT US AVALANCHE , +AGD ,3,2681.900 ,40.59050 ,-111.6380,MesoWest ,AVALANCHE ,ALTA - GUARD HOUSE UT US AVALANCHE , +AMB ,3,3372.900 ,40.56770 ,-111.6374,MesoWest ,AVALANCHE ,ALTA - MT BALDY UT US AVALANCHE , +ALT ,3,3183.000 ,40.57100 ,-111.6310,MesoWest ,AVALANCHE ,ALTA - TOP OF COLLINS UT US AVALANCHE , +BEV ,3,2329.000 ,41.96450 ,-111.5559,MesoWest ,AVALANCHE ,BEAVER MTN AVAL CENTER UT US AVALANCHE , +BAVMT,3,2926.100 ,45.27083 ,-111.4513,MesoWest ,AVALANCHE ,BIG SKY - BAVARIA MT US AVALANCHE , +CHMID,3,2895.600 ,45.28500 ,-111.4324,MesoWest ,AVALANCHE ,BIG SKY - CHALLENGER MID MT US AVALANCHE , +BGC ,3,2953.500 ,45.28350 ,-111.4362,MesoWest ,AVALANCHE ,BIG SKY - CHALLENGER TOP MT US AVALANCHE , +LMTMT,3,3398.500 ,45.27720 ,-111.4518,MesoWest ,AVALANCHE ,BIG SKY - LONE MOUNTAIN MT US AVALANCHE , +BBALP,3,2286.000 ,45.82520 ,-110.9230,MesoWest ,AVALANCHE ,BRIDGER BOWL - ALPINE MT US AVALANCHE , +BBBAS,3,1865.400 ,45.81730 ,-110.8972,MesoWest ,AVALANCHE ,BRIDGER BOWL - BASE MT US AVALANCHE , +BBMID,3,2133.600 ,45.81700 ,-110.9161,MesoWest ,AVALANCHE ,BRIDGER BOWL - BRIDGER MID MT US AVALANCHE , +BBM ,3,2438.400 ,45.81630 ,-110.9260,MesoWest ,AVALANCHE ,BRIDGER BOWL - BRIDGER TOP MT US AVALANCHE , +BBCST,3,2590.800 ,45.81670 ,-110.9289,MesoWest ,AVALANCHE ,BRIDGER BOWL - CREST MT US AVALANCHE , +BBVAC,3,1981.200 ,45.81620 ,-110.9075,MesoWest ,AVALANCHE ,BRIDGER BOWL - VIRGINIA CITY MT US AVALANCHE , +BRT ,3,2988.000 ,40.59450 ,-111.5962,MesoWest ,AVALANCHE ,BRIGHTON AVAL CENTER UT US AVALANCHE , +BRC ,3,2895.600 ,40.58725 ,-111.5768,MesoWest ,AVALANCHE ,BRIGHTON CREST UT US AVALANCHE , +BRW ,3,3220.200 ,40.59230 ,-111.5616,MesoWest ,AVALANCHE ,BRIGHTON GREAT WESTERN UT US AVALANCHE , +IFF ,3,3066.000 ,40.59500 ,-111.6519,MesoWest ,AVALANCHE ,CARDIFF PEAK UT US AVALANCHE , +DCC ,3,2033.000 ,40.40175 ,-111.5201,MesoWest ,AVALANCHE ,DEER CREEK DAM CHUTE UT US AVALANCHE , +GSTPS,3,0.000000 ,40.83630 ,-111.0543,MesoWest ,AVALANCHE ,Giant Steps UT US AVALANCHE , +LSL ,3,3567.700 ,38.45660 ,-109.2455,MesoWest ,AVALANCHE ,LA SAL UT US AVALANCHE , +LHEAD,3,2584.700 ,44.70450 ,-111.3202,MesoWest ,AVALANCHE ,LIONHEAD MT US AVALANCHE , +OGP ,3,2916.900 ,41.20000 ,-111.8810,MesoWest ,AVALANCHE ,OGDEN PEAK UT US AVALANCHE , +PKW ,3,2681.900 ,40.67910 ,-111.5966,MesoWest ,AVALANCHE ,PARK WEST AVAL CENTER UT US AVALANCHE , +SWI ,3,2347.900 ,41.20150 ,-111.8635,MesoWest ,AVALANCHE ,SNOWBASIN - WILDCAT UT US AVALANCHE , +SOL ,3,3013.900 ,40.60830 ,-111.6044,MesoWest ,AVALANCHE ,SOLITUDE UT US AVALANCHE , +SPC ,3,2256.100 ,40.64100 ,-111.6360,MesoWest ,AVALANCHE ,SPRUCES UT US AVALANCHE , +SND ,3,2514.900 ,40.36850 ,-111.5934,MesoWest ,AVALANCHE ,SUNDANCE - ARROWHEAD UT US AVALANCHE , +SNM ,3,2286.900 ,40.37390 ,-111.5940,MesoWest ,AVALANCHE ,SUNDANCE - MID MNT UT US AVALANCHE , +TML ,3,2744.100 ,40.65860 ,-111.6360,MesoWest ,AVALANCHE ,TOMS HILL UT US AVALANCHE , +WDYPK,3,3249.800 ,40.84148 ,-111.0206,MesoWest ,AVALANCHE ,Windy Peak UT US AVALANCHE , +YCAND,3,2697.500 ,45.26070 ,-111.4124,MesoWest ,AVALANCHE ,YELLOWSTONE CLUB - ANDESITE TOP MT US AVALANCHE , +YCBAS,3,2194.600 ,45.24110 ,-111.4113,MesoWest ,AVALANCHE ,YELLOWSTONE CLUB - BASE MT US AVALANCHE , +YCPIO,3,2987.000 ,45.23280 ,-111.4507,MesoWest ,AVALANCHE ,YELLOWSTONE CLUB - PIONEER PEAK MT US AVALANCHE , +YCTIM,3,2865.100 ,45.23250 ,-111.4466,MesoWest ,AVALANCHE ,YELLOWSTONE CLUB - TIMBERLINE MT US AVALANCHE , +BCP ,3,2827.000 ,39.99004 ,-112.5437,MesoWest ,TOOELE ,BLACK CROOK PEAK UT US TOOELE , +URM ,3,1286.000 ,40.68024 ,-112.4437,MesoWest ,TOOELE ,BURMESTER UT US TOOELE , +CFO ,3,1585.000 ,40.30917 ,-112.1013,MesoWest ,TOOELE ,CEDAR FORT UT US TOOELE , +CRL ,3,1573.100 ,40.33667 ,-112.4357,MesoWest ,TOOELE ,CLOVER-RUSSELL LANE UT US TOOELE , +POR ,3,1328.900 ,40.60966 ,-112.3475,MesoWest ,TOOELE ,ERDA AIRPORT UT US TOOELE , +FFD ,3,1494.100 ,40.26267 ,-112.0947,MesoWest ,TOOELE ,FAIRFIELD UT US TOOELE , +FAU ,3,1622.100 ,40.17449 ,-112.4273,MesoWest ,TOOELE ,FAUST-CLELL LEE UT US TOOELE , +FMP ,3,1640.100 ,40.23162 ,-112.1773,MesoWest ,TOOELE ,FIVE MILE PASS UT US TOOELE , +FLU ,3,1286.000 ,40.70452 ,-112.5297,MesoWest ,TOOELE ,FLUX UT US TOOELE , +GRS ,3,1360.900 ,40.58735 ,-112.4769,MesoWest ,TOOELE ,GRANTSVILLE UT US TOOELE , +RES ,3,1670.000 ,40.54568 ,-112.5121,MesoWest ,TOOELE ,GRANTSVILLE RESERVOIR UT US TOOELE , +LAK ,3,1298.100 ,40.67998 ,-112.2688,MesoWest ,TOOELE ,LAKE POINT UT US TOOELE , +LOFUT,3,1768.100 ,40.03473 ,-112.2860,MesoWest ,TOOELE ,LOFGREEN UT US TOOELE , +CUR ,3,1749.900 ,40.30656 ,-112.2609,MesoWest ,TOOELE ,MERCUR CANYON UT US TOOELE , +MTB ,3,1645.900 ,40.45016 ,-112.4756,MesoWest ,TOOELE ,MORMON TRAIL BAR UT US TOOELE , +MS1 ,3,1555.100 ,40.29000 ,-112.3300,MesoWest ,TOOELE ,MS1 UT US TOOELE , +MS10 ,3,1627.000 ,40.32000 ,-112.3100,MesoWest ,TOOELE ,MS10 UT US TOOELE , +MS2 ,3,1545.000 ,40.26000 ,-112.3300,MesoWest ,TOOELE ,MS2 UT US TOOELE , +MS3 ,3,1539.900 ,40.26000 ,-112.3600,MesoWest ,TOOELE ,MS3 UT US TOOELE , +MS4 ,3,1535.000 ,40.26000 ,-112.3900,MesoWest ,TOOELE ,MS4 UT US TOOELE , +MS5 ,3,1535.000 ,40.29000 ,-112.4000,MesoWest ,TOOELE ,MS5 UT US TOOELE , +MS6 ,3,1535.000 ,40.31000 ,-112.4000,MesoWest ,TOOELE ,MS6 UT US TOOELE , +MS7 ,3,1560.000 ,40.33000 ,-112.3600,MesoWest ,TOOELE ,MS7 UT US TOOELE , +MS8 ,3,1615.100 ,40.32000 ,-112.3200,MesoWest ,TOOELE ,MS8 UT US TOOELE , +MS9 ,3,1545.000 ,40.29000 ,-112.3700,MesoWest ,TOOELE ,MS9 UT US TOOELE , +OPH ,3,1695.000 ,40.35188 ,-112.3056,MesoWest ,TOOELE ,OPHIR STATION UT US TOOELE , +PEN ,3,1560.900 ,40.38873 ,-112.3861,MesoWest ,TOOELE ,PENNYS UT US TOOELE , +PEM ,3,1553.900 ,40.20623 ,-112.2935,MesoWest ,TOOELE ,PONY EXPRESS MARKER UT US TOOELE , +RVF ,3,1627.900 ,40.33748 ,-112.4605,MesoWest ,TOOELE ,RUSH VALLEY FIRE STN UT US TOOELE , +SMT ,3,1829.100 ,40.45973 ,-112.4100,MesoWest ,TOOELE ,SOUTH MOUNTAIN UT US TOOELE , +SJS ,3,1535.000 ,40.36817 ,-112.4548,MesoWest ,TOOELE ,ST. JOHN SUBSTATION UT US TOOELE , +STO ,3,1573.100 ,40.46492 ,-112.3654,MesoWest ,TOOELE ,STOCKTON BAR UT US TOOELE , +TEN ,3,1371.900 ,40.56440 ,-112.3994,MesoWest ,TOOELE ,TEAD NORTH UT US TOOELE , +TES ,3,1567.000 ,40.32994 ,-112.4080,MesoWest ,TOOELE ,TEAD SOUTH UT US TOOELE , +TOO ,3,1565.200 ,40.51435 ,-112.3126,MesoWest ,TOOELE ,TOOELE CITY UT US TOOELE , +VRN ,3,1695.000 ,40.09193 ,-112.4306,MesoWest ,TOOELE ,VERNON UT US TOOELE , +VRH ,3,1756.000 ,40.13013 ,-112.3847,MesoWest ,TOOELE ,VERNON HILL UT US TOOELE , +WPK ,3,1550.500 ,40.75290 ,-114.0198,MesoWest ,TOOELE ,WENDOVER PEAK UT US TOOELE , +SNX ,3,1279.900 ,41.03941 ,-112.2313,MesoWest ,SNOWNET ,ANTELOPE ISLAND S.P. UT US SNOWNET , +BGRUT,3,1279.900 ,40.94380 ,-112.5639,MesoWest ,SNOWNET ,BADGER ISLAND UT US SNOWNET , +BR2 ,3,1282.900 ,41.47000 ,-112.3200,MesoWest ,SNOWNET ,BEAR RIVER REFUGE #2 UT US SNOWNET , +BR4 ,3,1282.900 ,41.43980 ,-112.1580,MesoWest ,SNOWNET ,BEAR RIVER REFUGE #4 UT US SNOWNET , +SNZ ,3,1450.900 ,40.87540 ,-111.8716,MesoWest ,SNOWNET ,BOUNTIFUL/F G HOUSE UT US SNOWNET , +BULLF,3,1127.800 ,37.51750 ,-110.7289,MesoWest ,SNOWNET ,Bullfrog Marina UT US SNOWNET , +CCD ,3,2742.900 ,40.69000 ,-111.5940,MesoWest ,SNOWNET ,CANYONS - CONDOR UT US SNOWNET , +CLK ,3,2528.900 ,40.68300 ,-111.5740,MesoWest ,SNOWNET ,CANYONS - LOOKOUT UT US SNOWNET , +C99 ,3,3045.000 ,40.65900 ,-111.5940,MesoWest ,SNOWNET ,CANYONS - PEAK 9990 UT US SNOWNET , +CRN ,3,1799.800 ,38.28980 ,-111.2619,MesoWest ,SNOWNET ,CAPITOL REEF NP UT US SNOWNET , +LAYUT,3,1371.600 ,41.08474 ,-111.9779,MesoWest ,SNOWNET ,Davis Conference Center UT US SNOWNET , +CAU ,3,1283.200 ,41.07400 ,-112.2225,MesoWest ,SNOWNET ,Davis County Causeway Site UT US SNOWNET , +CRM ,3,2944.400 ,40.32420 ,-111.5809,MesoWest ,SNOWNET ,DAVIS PEAK UT US SNOWNET , +FARM ,3,1432.600 ,41.00400 ,-111.8907,MesoWest ,SNOWNET ,Farmington Bench UT US SNOWNET , +FWP ,3,2796.900 ,40.65900 ,-112.2020,MesoWest ,SNOWNET ,FARNSWORTH PEAK UT US SNOWNET , +FPKUT,3,2913.900 ,41.03302 ,-111.8388,MesoWest ,SNOWNET ,FRANCIS PEAK UT US SNOWNET , +AUDUT,3,1289.900 ,40.83820 ,-112.1275,MesoWest ,SNOWNET ,GSL AUDOBON REFUGE UT US SNOWNET , +GNI ,3,1293.000 ,41.33300 ,-112.8540,MesoWest ,SNOWNET ,GUNNISON ISLAND DNR UT US SNOWNET , +HGP ,3,1585.600 ,40.45707 ,-111.9038,MesoWest ,SNOWNET ,HANGGLIDER PORT UT US SNOWNET , +HATUT,3,1293.000 ,41.07060 ,-112.5851,MesoWest ,SNOWNET ,HAT ISLAND UT US SNOWNET , +KAYUT,3,1316.700 ,41.03690 ,-111.9528,MesoWest ,SNOWNET ,Kaysville UT US SNOWNET , +LMR ,3,1535.900 ,41.06070 ,-112.8908,MesoWest ,SNOWNET ,Lakeside Mountain UT US SNOWNET , +LDS1 ,3,1449.900 ,40.77100 ,-111.8890,MesoWest ,SNOWNET ,LDS CHURCH OFFICE UT US SNOWNET , +LMS ,3,1293.000 ,41.70090 ,-112.8475,MesoWest ,SNOWNET ,Locomotive Springs UT US SNOWNET , +MFP ,3,3354.000 ,40.81000 ,-110.9537,MesoWest ,SNOWNET ,MOFFIT PEAK UT US SNOWNET , +MGPR ,3,1499.900 ,41.14660 ,-111.7976,MesoWest ,SNOWNET ,Mountain Green Park and Ride UT US SNOWNET , +HOL ,3,1402.100 ,40.67560 ,-111.8259,MesoWest ,SNOWNET ,NORTH HOLLADAY UT US SNOWNET , +NOB ,3,1560.600 ,41.32253 ,-111.9383,MesoWest ,SNOWNET ,NORTH OGDEN BENCH UT US SNOWNET , +SNC ,3,2089.400 ,40.66000 ,-111.5149,MesoWest ,SNOWNET ,PARK CITY MUN G.C. UT US SNOWNET , +PAY ,3,2580.100 ,45.07000 ,-116.2500,MesoWest ,SNOWNET ,Payette ID US SNOWNET , +PPCUT,3,1310.000 ,38.67485 ,-109.4164,MesoWest ,SNOWNET ,Porcupine Canyon UT US SNOWNET , +PRP ,3,2111.000 ,41.25750 ,-112.4398,MesoWest ,SNOWNET ,PROMONTORY POINT UT US SNOWNET , +SLT ,3,1291.100 ,41.64150 ,-112.2686,MesoWest ,SNOWNET ,SALT CREEK UT US SNOWNET , +SNHUT,3,1449.900 ,40.55260 ,-111.8511,MesoWest ,SNOWNET ,SANDY HOREL/U UTAH UT US SNOWNET , +SSPR ,3,2023.900 ,40.70990 ,-111.4791,MesoWest ,SNOWNET ,Silver Summit Park and Ride UT US SNOWNET , +SNLUT,3,1292.000 ,40.77200 ,-111.9600,MesoWest ,SNOWNET ,SLC NWSFO RAD UT US SNOWNET , +SBE ,3,1925.100 ,41.21510 ,-111.8582,MesoWest ,SNOWNET ,SNOWBASIN - BASE UT US SNOWNET , +SBB ,3,2835.000 ,41.20520 ,-111.8829,MesoWest ,SNOWNET ,SNOWBASIN-ALLENS PK UT US SNOWNET , +SBW ,3,2670.100 ,41.20310 ,-111.8805,MesoWest ,SNOWNET ,SNOWBASIN-JOHN PAUL UT US SNOWNET , +SNI ,3,2256.100 ,41.19950 ,-111.8590,MesoWest ,SNOWNET ,SNOWBASIN-MID. BOWL UT US SNOWNET , +SSS ,3,2423.200 ,41.20230 ,-111.8771,MesoWest ,SNOWNET ,SNOWBASIN-SHOOTING STAR UT US SNOWNET , +SB1 ,3,2000.100 ,41.19150 ,-111.8351,MesoWest ,SNOWNET ,SNOWBASIN-STRAW BASE UT US SNOWNET , +SB2 ,3,2742.900 ,41.18560 ,-111.8696,MesoWest ,SNOWNET ,SNOWBASIN-STRAW TOP UT US SNOWNET , +WMP ,3,1712.700 ,40.47900 ,-111.5002,MesoWest ,SNOWNET ,SOLDIER HOLLOW UT US SNOWNET , +WMG ,3,1763.900 ,40.47990 ,-111.5079,MesoWest ,SNOWNET ,Soldier Hollow Valley UT US SNOWNET , +WMH ,3,1769.700 ,40.47600 ,-111.5041,MesoWest ,SNOWNET ,Soldier Hollow West Slope UT US SNOWNET , +WM2 ,3,1688.900 ,40.48060 ,-111.4923,MesoWest ,SNOWNET ,Soldier Hollow Whales Tail UT US SNOWNET , +SLDMT,3,2904.700 ,43.48455 ,-114.9071,MesoWest ,SNOWNET ,Soldier Mountain Peak 2 ID US SNOWNET , +SVB ,3,2746.300 ,43.66120 ,-114.4021,MesoWest ,SNOWNET ,SUN VALLEY-BALD MTN ID US SNOWNET , +SNFEC,3,1737.400 ,41.35922 ,-111.9040,MesoWest ,SNOWNET ,Swansons North Fork Environmenta UT US SNOWNET , +TETWY,3,3538.700 ,43.73490 ,-110.8092,MesoWest ,SNOWNET ,Teton Saddle WY US SNOWNET , +TPC ,3,2438.100 ,40.44060 ,-111.7063,MesoWest ,SNOWNET ,TIMPANOGOS CAVE UT US SNOWNET , +SVT ,3,3072.100 ,43.83660 ,-114.7104,MesoWest ,SNOWNET ,TITUS PEAK ID US SNOWNET , +TTSID,3,2830.100 ,43.85780 ,-114.7142,MesoWest ,SNOWNET ,Titus Study Plot ID US SNOWNET , +TRJO ,3,1585.300 ,40.55680 ,-112.0609,MesoWest ,SNOWNET ,Trans-Jordan Landfill UT US SNOWNET , +MOAB ,3,1364.300 ,38.53736 ,-109.5104,MesoWest ,SNOWNET ,USGS/NPS Building: Moab UT US SNOWNET , +WBB ,3,1464.900 ,40.76623 ,-111.8475,MesoWest ,SNOWNET ,WBB/U UTAH UT US SNOWNET , +PAY2 ,3,2194.600 ,44.38500 ,-116.1360,MesoWest ,SNOWNET ,West Mountains ID US SNOWNET , +WCRUT,3,2438.400 ,40.54670 ,-111.3214,MesoWest ,SNOWNET ,WOLF CREEK RANCH UT US SNOWNET , +WBU ,3,2182.400 ,40.71060 ,-111.5596,MesoWest ,SNOWNET ,WSP BEAR UPPER UT US SNOWNET , +WBE ,3,2127.500 ,40.70890 ,-111.5626,MesoWest ,SNOWNET ,WSP BOB LOWER UT US SNOWNET , +WBS ,3,2158.000 ,40.70740 ,-111.5626,MesoWest ,SNOWNET ,WSP BOB START UT US SNOWNET , +WBL ,3,2188.500 ,40.70950 ,-111.5583,MesoWest ,SNOWNET ,WSP ROVER UT US SNOWNET , +SNW ,3,1450.900 ,41.19000 ,-111.9400,MesoWest ,SNOWNET ,WSU FOOTBALL STADIUM UT US SNOWNET , +ZNP ,3,1749.900 ,37.23390 ,-112.8741,MesoWest ,SNOWNET ,ZION NATIONAL PARK UT US SNOWNET , +QAM ,3,1304.900 ,40.76000 ,-111.9000,MesoWest ,AQ ,AIR MON CENTER (SLC) UT US AQ , +QB4 ,3,1279.900 ,40.73000 ,-112.2100,MesoWest ,AQ ,BEACH (MAGNA) UT US AQ , +QBT ,3,1323.100 ,40.89650 ,-111.8822,MesoWest ,AQ ,BOUNTIFUL UT US AQ , +QBV ,3,1309.100 ,40.90310 ,-111.8830,MesoWest ,AQ ,BOUNTIFUL UT US AQ , +QBR ,3,1334.100 ,41.49230 ,-112.0194,MesoWest ,AQ ,BRIGHAM CITY UT US AQ , +QC4 ,3,1681.900 ,37.72000 ,-113.1200,MesoWest ,AQ ,CEDAR CITY #4 UT US AQ , +QCW ,3,1323.100 ,40.64450 ,-111.8497,MesoWest ,AQ ,COTTONWOOD (HOLLADAY) UT US AQ , +QGV ,3,1317.000 ,40.60000 ,-112.4700,MesoWest ,AQ ,GRANTSVILLE UT US AQ , +QHV ,3,1331.100 ,41.30380 ,-111.9906,MesoWest ,AQ ,HARRISVILLE UT US AQ , +QHW ,3,1310.900 ,40.73440 ,-111.8720,MesoWest ,AQ ,HAWTHORNE UT US AQ , +QHE ,3,1474.900 ,40.52000 ,-112.0200,MesoWest ,AQ ,HERRIMAN UT US AQ , +QHG ,3,1494.100 ,40.42830 ,-111.8039,MesoWest ,AQ ,HIGHLAND UT US AQ , +QLN ,3,1450.900 ,40.33950 ,-111.7135,MesoWest ,AQ ,LINDON UT US AQ , +QL4 ,3,1380.100 ,41.73100 ,-111.8376,MesoWest ,AQ ,LOGAN UT US AQ , +QMG ,3,1323.100 ,40.70610 ,-112.0947,MesoWest ,AQ ,MAGNA UT US AQ , +QM6 ,3,1396.000 ,38.78000 ,-109.7700,MesoWest ,AQ ,MOAB UT US AQ , +QON ,3,1359.100 ,41.31000 ,-111.9700,MesoWest ,AQ ,NORTH OGDEN UT US AQ , +QNP ,3,1396.000 ,40.25340 ,-111.6633,MesoWest ,AQ ,NORTH PROVO UT US AQ , +QN2 ,3,1328.900 ,40.80550 ,-111.9209,MesoWest ,AQ ,NORTH SALT LAKE #2 UT US AQ , +QOG ,3,1335.000 ,41.22000 ,-111.9700,MesoWest ,AQ ,OGDEN UT US AQ , +QO2 ,3,1316.100 ,41.20640 ,-111.9747,MesoWest ,AQ ,OGDEN #2 UT US AQ , +QSG ,3,805.0000 ,37.10480 ,-113.5775,MesoWest ,AQ ,SAINT GEORGE UT US AQ , +QSA ,3,1282.900 ,40.83000 ,-112.0100,MesoWest ,AQ ,SALT AIR UT US AQ , +QSO ,3,1420.100 ,40.27000 ,-111.6800,MesoWest ,AQ ,SOUTH OREM UT US AQ , +QSF ,3,1380.100 ,40.13750 ,-111.6593,MesoWest ,AQ ,SPANISH FORK UT US AQ , +QSV ,3,1396.000 ,40.18000 ,-111.6100,MesoWest ,AQ ,SPRINGVILLE UT US AQ , +QS2 ,3,1317.000 ,40.77000 ,-111.8900,MesoWest ,AQ ,STATE ST #2 (SLC) UT US AQ , +QS3 ,3,1304.900 ,40.74000 ,-111.8900,MesoWest ,AQ ,STATE ST #3 (SLC) UT US AQ , +QSY ,3,1279.900 ,41.08910 ,-112.1172,MesoWest ,AQ ,SYRACUSE UT US AQ , +QU2 ,3,1389.900 ,40.24000 ,-111.6600,MesoWest ,AQ ,UNIVER AVE #2 (PROVO) UT US AQ , +QW2 ,3,1335.000 ,41.22000 ,-111.9700,MesoWest ,AQ ,WASH BLVD #2 (OGDEN) UT US AQ , +QWT ,3,1346.900 ,41.17949 ,-111.9838,MesoWest ,AQ ,WASHINGTON TERRACE UT US AQ , +QWJ ,3,1409.700 ,40.61530 ,-111.9973,MesoWest ,AQ ,WEST JORDAN UT US AQ , +QWO ,3,1407.900 ,40.30000 ,-111.7200,MesoWest ,AQ ,WEST OREM UT US AQ , +QWV ,3,1295.100 ,40.71180 ,-111.9603,MesoWest ,AQ ,WEST VALLEY UT US AQ , +A01 ,3,1264.600 ,37.03390 ,-116.0989,MesoWest ,ARL SORD ,AREA 1 NV US ARL SORD , +A12 ,3,2283.600 ,37.19670 ,-116.2275,MesoWest ,ARL SORD ,AREA 12 MESA NV US ARL SORD , +A08 ,3,1473.400 ,36.90650 ,-116.1925,MesoWest ,ARL SORD ,Area 14 W NV US ARL SORD , +A21 ,3,1439.600 ,37.03140 ,-116.1728,MesoWest ,ARL SORD ,AREA 16 NV US ARL SORD , +A22 ,3,1389.300 ,36.91300 ,-116.1733,MesoWest ,ARL SORD ,Area 16 East NV US ARL SORD , +A11 ,3,1650.500 ,36.99667 ,-116.1510,MesoWest ,ARL SORD ,Area 16 SE NV US ARL SORD , +A18 ,3,1540.500 ,37.10670 ,-116.3231,MesoWest ,ARL SORD ,AREA 18 NV US ARL SORD , +A02 ,3,1351.800 ,37.14280 ,-116.1117,MesoWest ,ARL SORD ,AREA 2 NV US ARL SORD , +A26 ,3,1143.900 ,36.81970 ,-116.2581,MesoWest ,ARL SORD ,AREA 25 EAST NV US ARL SORD , +A25 ,3,849.5000 ,36.68560 ,-116.4069,MesoWest ,ARL SORD ,AREA 25 SOUTH NV US ARL SORD , +A27 ,3,1385.300 ,36.77250 ,-116.1075,MesoWest ,ARL SORD ,AREA 27 NV US ARL SORD , +A03 ,3,1258.800 ,37.05183 ,-115.9965,MesoWest ,ARL SORD ,Area 3 North NV US ARL SORD , +A15 ,3,1258.800 ,37.05183 ,-115.9965,MesoWest ,ARL SORD ,Area 3 North NV US ARL SORD , +A04 ,3,1346.600 ,37.10060 ,-116.1231,MesoWest ,ARL SORD ,AREA 4 NV US ARL SORD , +A13 ,3,964.4000 ,36.85720 ,-115.9558,MesoWest ,ARL SORD ,AREA 5 NORTH NV US ARL SORD , +A09 ,3,1284.700 ,37.13670 ,-116.0469,MesoWest ,ARL SORD ,AREA 9 NV US ARL SORD , +A49 ,3,1287.800 ,37.10390 ,-116.0919,MesoWest ,ARL SORD ,BEEF NV US ARL SORD , +A16 ,3,1268.000 ,37.07140 ,-116.0561,MesoWest ,ARL SORD ,BJY TOWER NV US ARL SORD , +A17 ,3,1237.500 ,37.07140 ,-116.0561,MesoWest ,ARL SORD ,Buster Jangle "Y" NV US ARL SORD , +A30 ,3,1007.100 ,36.62400 ,-116.0197,MesoWest ,ARL SORD ,Desert Rock NV US ARL SORD , +A46 ,3,1808.100 ,37.17170 ,-116.1869,MesoWest ,ARL SORD ,G TUNNEL NV US ARL SORD , +A34 ,3,963.2000 ,36.84360 ,-115.9083,MesoWest ,ARL SORD ,HAZMAT N/E NV US ARL SORD , +A23 ,3,1120.400 ,36.66140 ,-116.0050,MesoWest ,ARL SORD ,MERCURY NV US ARL SORD , +A14 ,3,1405.700 ,36.93700 ,-116.1717,MesoWest ,ARL SORD ,Mid-Valley NV US ARL SORD , +A36 ,3,937.6000 ,36.54030 ,-115.5367,MesoWest ,ARL SORD ,NELLIS RANGE 63 NV US ARL SORD , +A20 ,3,2003.500 ,37.26080 ,-116.4369,MesoWest ,ARL SORD ,PAHUTE MESA 1 NV US ARL SORD , +A41 ,3,1217.400 ,37.02170 ,-116.0597,MesoWest ,ARL SORD ,Rebound Angle Road (east) NV US ARL SORD , +A45 ,3,1216.200 ,37.00640 ,-116.0664,MesoWest ,ARL SORD ,Rebound MEDA (South) NV US ARL SORD , +A19 ,3,2012.000 ,37.00140 ,-116.2089,MesoWest ,ARL SORD ,STATION 19 NV US ARL SORD , +A28 ,3,1106.700 ,36.90060 ,-116.0428,MesoWest ,ARL SORD ,Station 28 NV US ARL SORD , +A42 ,3,888.5000 ,36.70560 ,-116.3589,MesoWest ,ARL SORD ,STATION 42 NV US ARL SORD , +A44 ,3,1122.900 ,36.66780 ,-116.0167,MesoWest ,ARL SORD ,STATION 44 NV US ARL SORD , +A07 ,3,1666.300 ,37.15220 ,-116.4039,MesoWest ,ARL SORD ,Station 7 NV US ARL SORD , +A10 ,3,1563.000 ,36.94500 ,-116.0897,MesoWest ,ARL SORD ,THE MONASTERY NV US ARL SORD , +A35 ,3,1665.700 ,37.80140 ,-116.7594,MesoWest ,ARL SORD ,Tonopah Test Range NV US ARL SORD , +A05 ,3,942.4000 ,36.80330 ,-115.9772,MesoWest ,ARL SORD ,WELL 5B NV US ARL SORD , +SRD06,3,1195.100 ,36.96060 ,-116.0589,MesoWest ,ARL SORD ,YUCCA FLAT NV US ARL SORD , +A24 ,3,1509.100 ,36.84330 ,-116.4700,MesoWest ,ARL SORD ,YUCCA MOUNTAIN NV US ARL SORD , +ABEI ,3,1341.100 ,42.95333 ,-112.8267,MesoWest ,AGRIMET ,Aberdeen ID US AGRIMET , +AFTY ,3,1893.100 ,42.73333 ,-110.9358,MesoWest ,AGRIMET ,AFTON WY US AGRIMET , +AGKO ,3,1264.900 ,42.56528 ,-121.9825,MesoWest ,AGRIMET ,Agency Lake OR US AGRIMET , +AHTI ,3,1615.100 ,44.02500 ,-111.4667,MesoWest ,AGRIMET ,ASHTON ID US AGRIMET , +ARAO ,3,43.00000 ,45.28194 ,-122.7503,MesoWest ,AGRIMET ,AURORA OR US AGRIMET , +BKVO ,3,1042.400 ,44.88194 ,-117.9636,MesoWest ,AGRIMET ,Baker Valley OR US AGRIMET , +BANO ,3,24.10000 ,43.09111 ,-124.4172,MesoWest ,AGRIMET ,BANDON OR US AGRIMET , +BATO ,3,1316.700 ,42.47800 ,-121.2739,MesoWest ,AGRIMET ,Beatty OR US AGRIMET , +BEWO ,3,1112.500 ,44.04750 ,-121.3203,MesoWest ,AGRIMET ,Bend OR US AGRIMET , +BFTM ,3,945.8000 ,48.83556 ,-108.5639,MesoWest ,AGRIMET ,Big Flat / Turner MT US AGRIMET , +BFAM ,3,1190.200 ,48.67500 ,-112.5889,MesoWest ,AGRIMET ,BLACKFEET MT US AGRIMET , +BOII ,3,829.1000 ,43.60028 ,-116.1767,MesoWest ,AGRIMET ,BOISE ID US AGRIMET , +BNDW ,3,24.10000 ,45.64778 ,-121.9311,MesoWest ,AGRIMET ,Bonneville Dam WA US AGRIMET , +BOZM ,3,1455.400 ,45.67361 ,-111.1500,MesoWest ,AGRIMET ,BOZEMAN MT US AGRIMET , +BOMT ,3,1185.700 ,47.52056 ,-112.2469,MesoWest ,AGRIMET ,BROKEN O RANCH MT US AGRIMET , +BRKO ,3,24.10000 ,42.03000 ,-124.2408,MesoWest ,AGRIMET ,BROOKINGS OR US AGRIMET , +BRGM ,3,652.3000 ,46.98778 ,-104.8031,MesoWest ,AGRIMET ,BUFFALO RAPIDS/GLEND MT US AGRIMET , +BRTM ,3,691.9000 ,46.77806 ,-105.2994,MesoWest ,AGRIMET ,BUFFALO RAPIDS/TERRY MT US AGRIMET , +CEDC ,3,1402.100 ,41.58528 ,-120.1714,MesoWest ,AGRIMET ,CEDARVILLE CA US AGRIMET , +CHAW ,3,594.4000 ,48.03132 ,-117.7392,MesoWest ,AGRIMET ,Chamokane: WA WA US AGRIMET , +CJDW ,3,303.6000 ,47.99083 ,-119.6356,MesoWest ,AGRIMET ,Chief Joseph Dam WA US AGRIMET , +CHVO ,3,1328.900 ,43.24139 ,-120.7281,MesoWest ,AGRIMET ,CHRISTMAS VALLEY OR US AGRIMET , +CRVO ,3,70.10000 ,44.63417 ,-123.1900,MesoWest ,AGRIMET ,CORVALLIS OR US AGRIMET , +COVM ,3,1096.100 ,46.33333 ,-114.0833,MesoWest ,AGRIMET ,CORVALLIS MT US AGRIMET , +CRSM ,3,898.9000 ,48.18750 ,-114.1278,MesoWest ,AGRIMET ,CRESTON MT US AGRIMET , +DEFO ,3,384.0000 ,45.58639 ,-121.6406,MesoWest ,AGRIMET ,DEE FLAT OR US AGRIMET , +DRLM ,3,1425.900 ,46.33556 ,-112.7667,MesoWest ,AGRIMET ,DEER LODGE MT US AGRIMET , +DTRO ,3,510.5000 ,44.73000 ,-122.1792,MesoWest ,AGRIMET ,Detroit Lake OR US AGRIMET , +DLNM ,3,1524.000 ,45.33333 ,-112.5092,MesoWest ,AGRIMET ,DILLON MT US AGRIMET , +DENI ,3,505.7000 ,46.62333 ,-116.2206,MesoWest ,AGRIMET ,Dworshak - Dent Acres ID US AGRIMET , +ECHO ,3,231.0000 ,45.71861 ,-119.3111,MesoWest ,AGRIMET ,ECHO OR US AGRIMET , +EURN ,3,1797.400 ,39.68528 ,-115.9786,MesoWest ,AGRIMET ,Eureka NV US AGRIMET , +FAFI ,3,1535.900 ,43.30833 ,-114.8250,MesoWest ,AGRIMET ,FAIRFIELD ID US AGRIMET , +FALN ,3,1208.500 ,39.45806 ,-118.7769,MesoWest ,AGRIMET ,Fallon NV US AGRIMET , +FOGO ,3,54.90000 ,45.55306 ,-123.0836,MesoWest ,AGRIMET ,FOREST GROVE OR US AGRIMET , +FTHI ,3,1355.100 ,43.07139 ,-112.4311,MesoWest ,AGRIMET ,FORT HALL ID US AGRIMET , +GERW ,3,351.1000 ,47.04389 ,-119.6422,MesoWest ,AGRIMET ,GEORGE WA US AGRIMET , +GLGM ,3,635.2000 ,48.14333 ,-106.6092,MesoWest ,AGRIMET ,GLASGOW MT US AGRIMET , +GFRI ,3,922.0000 ,42.86667 ,-115.3569,MesoWest ,AGRIMET ,GLENNS FERRY ID US AGRIMET , +GOLW ,3,512.1000 ,45.81194 ,-120.8244,MesoWest ,AGRIMET ,GOLDENDALE WA US AGRIMET , +GCDW ,3,403.6000 ,47.94528 ,-118.9536,MesoWest ,AGRIMET ,Grand Coulee Dam WA US AGRIMET , +GDVI ,3,786.1000 ,42.91250 ,-116.0561,MesoWest ,AGRIMET ,GRAND VIEW ID US AGRIMET , +GFMT ,3,1164.300 ,47.65833 ,-111.8125,MesoWest ,AGRIMET ,GREENFIELDS MT US AGRIMET , +HRLM ,3,718.7000 ,48.54333 ,-108.8347,MesoWest ,AGRIMET ,HARLEM MT US AGRIMET , +HRHW ,3,259.1000 ,46.38472 ,-120.5744,MesoWest ,AGRIMET ,HARRA WA US AGRIMET , +HVMT ,3,1119.500 ,46.67917 ,-111.9833,MesoWest ,AGRIMET ,HELENA VALLEY MT US AGRIMET , +HRFO ,3,1097.000 ,44.48806 ,-118.0200,MesoWest ,AGRIMET ,HEREFORD OR US AGRIMET , +HERO ,3,167.6000 ,45.82111 ,-119.5214,MesoWest ,AGRIMET ,HERMISTON OR US AGRIMET , +HRMO ,3,185.0000 ,45.81944 ,-119.2833,MesoWest ,AGRIMET ,HERMISTON R&E OR US AGRIMET , +HCKO ,3,475.5000 ,43.70972 ,-122.4214,MesoWest ,AGRIMET ,Hills Creek Dam OR US AGRIMET , +HOXO ,3,155.4000 ,45.68444 ,-121.5181,MesoWest ,AGRIMET ,HOOD RIVER OR US AGRIMET , +IMBO ,3,837.9000 ,45.43333 ,-117.9667,MesoWest ,AGRIMET ,IMBLER OR US AGRIMET , +JVWM ,3,1345.700 ,45.79778 ,-112.1653,MesoWest ,AGRIMET ,Jefferson River Valley MT US AGRIMET , +KTBI ,3,1565.200 ,43.54861 ,-112.3258,MesoWest ,AGRIMET ,Kettle Butte ID US AGRIMET , +KFLW ,3,407.5000 ,48.59500 ,-118.1242,MesoWest ,AGRIMET ,Kettle Falls WA US AGRIMET , +AKFLO,3,1250.000 ,42.16472 ,-121.7550,MesoWest ,AGRIMET ,KLAMATH FALLS OR US AGRIMET , +LBRW ,3,192.0000 ,46.69750 ,-117.6542,MesoWest ,AGRIMET ,Lake Bryan - Rice Bar WA US AGRIMET , +LAKO ,3,1453.900 ,42.12222 ,-120.5231,MesoWest ,AGRIMET ,LAKEVIEW OR US AGRIMET , +RBVM ,3,1599.900 ,45.24000 ,-112.1100,MesoWest ,AGRIMET ,LAURIN MT US AGRIMET , +LEGW ,3,177.1000 ,46.20528 ,-118.9361,MesoWest ,AGRIMET ,LEGRO WA US AGRIMET , +LIDW ,3,449.9000 ,46.86722 ,-118.7394,MesoWest ,AGRIMET ,LIND WA US AGRIMET , +LKPO ,3,286.5000 ,43.91556 ,-122.7522,MesoWest ,AGRIMET ,Lookout Point Dam OR US AGRIMET , +LORO ,3,1268.000 ,42.07778 ,-121.2242,MesoWest ,AGRIMET ,Lorella OR US AGRIMET , +LMMM ,3,899.2000 ,46.56278 ,-108.0058,MesoWest ,AGRIMET ,Lower Musselshell MT US AGRIMET , +MRSO ,3,744.0000 ,44.68000 ,-121.1486,MesoWest ,AGRIMET ,MADRAS OR US AGRIMET , +MATM ,3,691.9000 ,48.37361 ,-107.7764,MesoWest ,AGRIMET ,MALTA MT US AGRIMET , +MALI ,3,1344.200 ,42.43750 ,-113.4139,MesoWest ,AGRIMET ,MALTA ID US AGRIMET , +MASW ,3,601.1000 ,47.91694 ,-120.1244,MesoWest ,AGRIMET ,MANSON WA US AGRIMET , +MDFO ,3,408.1000 ,42.33111 ,-122.9378,MesoWest ,AGRIMET ,MEDFORD OR US AGRIMET , +MWSM ,3,1293.300 ,47.05889 ,-109.9508,MesoWest ,AGRIMET ,Moccasin MT US AGRIMET , +MNTI ,3,1479.800 ,44.01500 ,-112.5358,MesoWest ,AGRIMET ,Monteview ID US AGRIMET , +NMPI ,3,803.1000 ,43.44167 ,-116.6369,MesoWest ,AGRIMET ,NAMPA ID US AGRIMET , +ODSW ,3,502.9000 ,47.30889 ,-118.8786,MesoWest ,AGRIMET ,ODESSA WA US AGRIMET , +OMAW ,3,376.1000 ,48.40250 ,-119.5761,MesoWest ,AGRIMET ,OMAK WA US AGRIMET , +ONTO ,3,688.8000 ,43.97778 ,-117.0153,MesoWest ,AGRIMET ,ONTARIO OR US AGRIMET , +PARO ,3,451.1000 ,45.54444 ,-121.6167,MesoWest ,AGRIMET ,PARKDALE OR US AGRIMET , +PMAI ,3,702.9000 ,43.80000 ,-116.9333,MesoWest ,AGRIMET ,PARMA ID US AGRIMET , +PICI ,3,1493.500 ,43.31167 ,-114.1658,MesoWest ,AGRIMET ,PICABO ID US AGRIMET , +PNGO ,3,189.0000 ,45.65222 ,-121.5092,MesoWest ,AGRIMET ,PINEGROVE OR US AGRIMET , +POBO ,3,975.1000 ,44.24833 ,-120.9497,MesoWest ,AGRIMET ,POWELL BUTTE OR US AGRIMET , +PCYO ,3,1143.900 ,44.44083 ,-118.6278,MesoWest ,AGRIMET ,PRARIE CITY OR US AGRIMET , +RXGI ,3,1485.900 ,43.85000 ,-111.7667,MesoWest ,AGRIMET ,REXBURG ID US AGRIMET , +RDBM ,3,926.6000 ,47.53944 ,-114.2806,MesoWest ,AGRIMET ,ROUND BUTTE MT US AGRIMET , +RZWW ,3,380.1000 ,46.28000 ,-119.7500,MesoWest ,AGRIMET ,ROZA WA US AGRIMET , +RBYM ,3,1600.200 ,45.34500 ,-112.1503,MesoWest ,AGRIMET ,RUBY VALLEY MT US AGRIMET , +RPTI ,3,1266.100 ,42.59500 ,-113.8381,MesoWest ,AGRIMET ,RUPERT ID US AGRIMET , +SBMW ,3,418.8000 ,47.85528 ,-118.3411,MesoWest ,AGRIMET ,Seven Bays Marina WA US AGRIMET , +SVWM ,3,1618.500 ,46.04667 ,-110.6528,MesoWest ,AGRIMET ,Shields River Valley MT US AGRIMET , +SILW ,3,251.5000 ,46.41861 ,-117.1847,MesoWest ,AGRIMET ,Silcott Island WA US AGRIMET , +SIGM ,3,896.1000 ,47.31333 ,-114.0981,MesoWest ,AGRIMET ,ST. IGNATIOUS MT US AGRIMET , +TRFM ,3,1174.700 ,47.90056 ,-112.1597,MesoWest ,AGRIMET ,Teton River MT US AGRIMET , +TOSM ,3,1236.900 ,46.12222 ,-111.4947,MesoWest ,AGRIMET ,TOSTON MT US AGRIMET , +TWFI ,3,1195.100 ,42.54611 ,-114.3453,MesoWest ,AGRIMET ,TWIN FALLS ID US AGRIMET , +UMHM ,3,1328.900 ,46.44722 ,-109.9400,MesoWest ,AGRIMET ,Upper Musselshell MT US AGRIMET , +WSSM ,3,1514.600 ,46.55333 ,-110.9467,MesoWest ,AGRIMET ,White Sulphur Springs MT US AGRIMET , +WRDO ,3,1243.600 ,42.01694 ,-121.7869,MesoWest ,AGRIMET ,Worden OR US AGRIMET , +ALG80,3,1281.100 ,40.66424 ,-112.3554,MesoWest ,MISC ,Along I-80 UT US MISC , +BLUF ,3,1420.100 ,40.57270 ,-111.9783,MesoWest ,MISC ,BLUFFDALE UT US MISC , +CSBFL,3,114.3000 ,35.34661 ,-119.1000,MesoWest ,MISC ,CAL STATE U BAKERSFIELD CA US MISC , +EYSC ,3,1438.700 ,40.24715 ,-111.6500,MesoWest ,MISC ,Eyring Science Center UT US MISC , +HVBC ,3,1724.900 ,40.54000 ,-111.4200,MesoWest ,MISC ,HEBER VALLEY UT US MISC , +KEM ,3,2098.900 ,41.76000 ,-110.5800,MesoWest ,MISC ,KEMMERER - PACIFICORP WY US MISC , +LVHF ,3,2715.200 ,37.96515 ,-119.1455,MesoWest ,MISC ,Lee Vining Hill CA US MISC , +MCNCA,3,53.30000 ,39.30880 ,-123.8000,MesoWest ,MISC ,Mendocino CA US MISC , +MSPRT,3,1295.100 ,40.58380 ,-112.3893,MesoWest ,MISC ,Miller Motorsportspark UT US MISC , +ORMS ,3,1435.600 ,40.57270 ,-111.9783,MesoWest ,MISC ,OAKRIDGE MIDDLE SCHOOL UT US MISC , +PEOUT,3,1850.100 ,40.72000 ,-111.3400,MesoWest ,MISC ,PEOA UT US MISC , +PWD ,3,623.0000 ,48.78000 ,-104.5300,MesoWest ,MISC ,PLENTYWOOD MT US MISC , +SUPEX,3,1293.900 ,40.62498 ,-112.4530,MesoWest ,MISC ,Superior Excavating UT US MISC , +WNN ,3,869.0000 ,46.93000 ,-108.2000,MesoWest ,MISC ,WINNETT MT US MISC , +LGCUT,3,1357.900 ,41.76550 ,-111.8551,MesoWest ,CAMPBELL ,LOGAN CAMPBELL HDQ UT US CAMPBELL , +LGP ,3,2731.000 ,41.71000 ,-111.7100,MesoWest ,CAMPBELL ,LOGAN PEAK UT US CAMPBELL , +MEN ,3,1378.900 ,41.71000 ,-111.9800,MesoWest ,CAMPBELL ,MENDON UT US CAMPBELL , +PST1 ,3,2484.100 ,41.91310 ,-111.5129,MesoWest ,CAMPBELL ,Peter Sinks UT US CAMPBELL , +SMI ,3,1450.900 ,41.83770 ,-111.8159,MesoWest ,CAMPBELL ,SMITHFIELD UT US CAMPBELL , +MABR ,3,1250.000 ,45.02839 ,-107.3173,MesoWest ,MT DOT ,Aberdeen Hill I-90 MP 552.3 MT US MT DOT , +MALZ ,3,1318.900 ,45.00275 ,-104.3736,MesoWest ,MT DOT ,Alzada US-212 MP 139.4 MT US MT DOT , +MARC ,3,1128.100 ,45.78000 ,-108.1634,MesoWest ,MT DOT ,Arrow Creek Hill I-90 MP 468.6 MT US MT DOT , +MAVN ,3,1549.900 ,46.69679 ,-112.6594,MesoWest ,MT DOT ,Avon North MT-141 MP 8.1 MT US MT DOT , +MBRM ,3,1189.000 ,46.71854 ,-113.2953,MesoWest ,MT DOT ,Bearmouth I-90 MP 145.8 MT US MT DOT , +MBVR ,3,853.1000 ,47.02198 ,-104.3300,MesoWest ,MT DOT ,Beaver Hill I-94 MP 234.8 MT US MT DOT , +MBHP ,3,2255.500 ,45.31545 ,-113.3097,MesoWest ,MT DOT ,Big Hole Pass CTY-278 MP 32 MT US MT DOT , +MBOU ,3,1905.000 ,46.32330 ,-112.0689,MesoWest ,MT DOT ,Boulder Hill I-15 MP 170.9 MT US MT DOT , +MBOW ,3,1310.900 ,47.29220 ,-112.1518,MesoWest ,MT DOT ,Bowmans MT-200 MP 110.4 MT US MT DOT , +MBZH ,3,1752.000 ,45.66682 ,-110.8039,MesoWest ,MT DOT ,Bozeman Pass I-90 MP 321.8 MT US MT DOT , +MBUL ,3,1188.100 ,46.24744 ,-108.4612,MesoWest ,MT DOT ,Bull Mountain US-87 MP 33.3 MT US MT DOT , +MCOM ,3,640.1000 ,48.81000 ,-104.2529,MesoWest ,MT DOT ,Comertown Turn-Off MT-5 MP 13.4 MT US MT DOT , +MCOT ,3,1341.100 ,45.88000 ,-112.0000,MesoWest ,MT DOT ,COTTONWOOD HILL I-90 MT US MT DOT , +MCOW ,3,762.0000 ,47.68837 ,-105.4919,MesoWest ,MT DOT ,Cow Creek MT-13 MP 19.9 MT US MT DOT , +MCRY ,3,1157.900 ,48.11760 ,-115.4200,MesoWest ,MT DOT ,Crystal Creek US-2 MP 53.1 MT US MT DOT , +MDKY ,3,1063.100 ,48.69453 ,-114.7844,MesoWest ,MT DOT ,Dickey Lake US-93 MP 160.2 MT US MT DOT , +MELV ,3,1371.900 ,45.68554 ,-110.5044,MesoWest ,MT DOT ,East Livingston I-90 MP 337.7 MT US MT DOT , +MDEN ,3,1111.900 ,47.30023 ,-109.8512,MesoWest ,MT DOT ,East of Denton MT-81 MP 17 MT US MT DOT , +MEKA ,3,1067.100 ,46.08359 ,-104.4355,MesoWest ,MT DOT ,Ekalaka MT-7 MP 14.2 MT US MT DOT , +MESX ,3,1172.900 ,48.28176 ,-113.6066,MesoWest ,MT DOT ,Essex US-2 MP 179.9 MT US MT DOT , +MFLT ,3,869.0000 ,48.21908 ,-114.2379,MesoWest ,MT DOT ,Flathead River MT 35 MP49 MT US MT DOT , +MGAR ,3,1318.900 ,46.52361 ,-112.8084,MesoWest ,MT DOT ,Garrison I-90 MP 174.4 MT US MT DOT , +MYEP ,3,1157.900 ,47.13948 ,-111.8591,MesoWest ,MT DOT ,Gary Cooper Bridge I-15 MP 242 MT US MT DOT , +MGOV ,3,954.0000 ,46.39924 ,-105.6283,MesoWest ,MT DOT ,Government Hill MT US MT DOT , +MGRN ,3,1157.900 ,46.90280 ,-113.4230,MesoWest ,MT DOT ,Greenough Hill MT-200 MP 22.1 MT US MT DOT , +MHAY ,3,1126.800 ,47.91928 ,-108.7261,MesoWest ,MT DOT ,Hays Site MT-66 MP 10.5 MT US MT DOT , +MHLM ,3,1279.900 ,46.96826 ,-112.9749,MesoWest ,MT DOT ,Helmville MT-200 MP 53.3 MT US MT DOT , +MHIL ,3,914.1000 ,46.83370 ,-106.2713,MesoWest ,MT DOT ,Hillside MT-59 MP 36.5 MT US MT DOT , +MHYH ,3,1082.000 ,46.16492 ,-107.3093,MesoWest ,MT DOT ,Hysham Hills I-94 MP 59.9 MT US MT DOT , +MINV ,3,1006.100 ,48.55321 ,-110.6482,MesoWest ,MT DOT ,Inverness US-2 MP 337.6 MT US MT DOT , +MJUD ,3,1393.900 ,46.68765 ,-109.7502,MesoWest ,MT DOT ,Judith Gap US-191 MP 18.6 MT US MT DOT , +MKAR ,3,1737.100 ,45.34534 ,-111.1726,MesoWest ,MT DOT ,Karst US-191 MP 55.3 MT US MT DOT , +MLAM ,3,1318.900 ,45.62886 ,-106.5113,MesoWest ,MT DOT ,Lame Deer Divide US-212 MP 50.1 MT US MT DOT , +MLEW ,3,1409.400 ,47.06180 ,-109.1844,MesoWest ,MT DOT ,Lewistown Divide MT-200 MP 90.3 MT US MT DOT , +MLND ,3,975.1000 ,47.28294 ,-105.2939,MesoWest ,MT DOT ,Lindsay Divide MT-200 MP 296.5 MT US MT DOT , +MLOS ,3,1595.900 ,46.63580 ,-114.5805,MesoWest ,MT DOT ,Lolo Pass US-12 MP 0 MT US MT DOT , +MLOM ,3,823.0000 ,47.95103 ,-110.5048,MesoWest ,MT DOT ,Loma US-87 MP 53.1 MT US MT DOT , +MLPS ,3,1439.900 ,47.45357 ,-115.6951,MesoWest ,MT DOT ,Lookout Pass I-90 MP 0.2 MT US MT DOT , +MLUF ,3,914.1000 ,47.07813 ,-107.5720,MesoWest ,MT DOT ,Lufborough Hill MT-200 MP 175.3 MT US MT DOT , +MMDP ,3,1927.900 ,46.56148 ,-112.3093,MesoWest ,MT DOT ,MacDonald Pass US-12 MP 27.9 MT US MT DOT , +MMAL ,3,946.4000 ,47.96113 ,-108.3055,MesoWest ,MT DOT ,Malta South US-191 MP 122.5 MT US MT DOT , +MMCD ,3,732.1000 ,48.42732 ,-105.4423,MesoWest ,MT DOT ,McDonalds MT-13 MP 125.5 MT US MT DOT , +MMON ,3,1584.000 ,47.14290 ,-110.8231,MesoWest ,MT DOT ,Monarch Canyon US-89 MP 53.5 MT US MT DOT , +MMQM ,3,2080.000 ,44.55767 ,-112.3137,MesoWest ,MT DOT ,Monida Pass I-15 MP 0.3 MT US MT DOT , +MMUS ,3,929.9000 ,46.50000 ,-108.1300,MesoWest ,MT DOT ,MUSSELSHELL HILL US-12 MT US MT DOT , +MNNM ,3,1310.900 ,47.02299 ,-114.3887,MesoWest ,MT DOT ,Ninemile I-90 MP 81.8 MT US MT DOT , +MNOR ,3,1645.900 ,45.49960 ,-111.6962,MesoWest ,MT DOT ,Norris Hill US-287 MP 60 MT US MT DOT , +MPAB ,3,898.9000 ,47.60192 ,-114.1132,MesoWest ,MT DOT ,Pablo US-93 MP 52.4 MT US MT DOT , +MPND ,3,1279.900 ,48.07322 ,-112.3342,MesoWest ,MT DOT ,Pendroy US-89 MP 62.6 MT US MT DOT , +MPPC ,3,1202.100 ,46.91392 ,-112.1167,MesoWest ,MT DOT ,Prickley Pear I-15 MP 218.6 MT US MT DOT , +MRAY ,3,2083.000 ,44.72814 ,-111.4701,MesoWest ,MT DOT ,Raynolds Pass MT-87 MP 1.2 MT US MT DOT , +MRED ,3,701.0000 ,48.81845 ,-104.9971,MesoWest ,MT DOT ,Redstone Hill MT-5 MP 19.8 MT US MT DOT , +MRDP ,3,1172.900 ,45.71006 ,-109.5783,MesoWest ,MT DOT ,Reedpoint I-90 MP 390.8 MT US MT DOT , +MROH ,3,1143.000 ,45.33858 ,-109.4936,MesoWest ,MT DOT ,Roscoe Hill MT-78 MP 18.8 MT US MT DOT , +MSCO ,3,664.5000 ,48.45138 ,-107.3017,MesoWest ,MT DOT ,Saco US-2 MP 502.5 MT US MT DOT , +MSBN ,3,1279.900 ,46.88748 ,-112.1111,MesoWest ,MT DOT ,Sieben I-15 MP 216 MT US MT DOT , +MSOO ,3,755.9000 ,47.91973 ,-104.3262,MesoWest ,MT DOT ,Sioux Pass MT-16 MP 21 MT US MT DOT , +MSWN ,3,1082.000 ,47.59103 ,-113.7557,MesoWest ,MT DOT ,Swan Lake South MT-83 MP 47 MT US MT DOT , +MSWC ,3,791.9000 ,46.26671 ,-106.3079,MesoWest ,MT DOT ,Sweeney Creek I-94 MP 112.6 MT US MT DOT , +MSWT ,3,1058.000 ,48.96017 ,-111.9407,MesoWest ,MT DOT ,Sweetgrass I-15 MP 395.3 MT US MT DOT , +MBRN ,3,1448.100 ,48.45265 ,-113.1951,MesoWest ,MT DOT ,Two Medicine Bridge US-2 MP 210. MT US MT DOT , +MSTA ,3,640.1000 ,48.13764 ,-104.0469,MesoWest ,MT DOT ,US-2 @Stateline US2 MP 667.1 MT US MT DOT , +MYAK ,3,670.9000 ,48.58340 ,-115.9841,MesoWest ,MT DOT ,Yaak Hill US-2 MP 4.8 MT US MT DOT , +MYRB ,3,990.9000 ,45.79376 ,-108.4680,MesoWest ,MT DOT ,Yellowstone River Bridge I-90 MP MT US MT DOT , +AOMC1,3,2042.200 ,34.67030 ,-118.9801,MesoWest ,LOXWFO ,Alamo Mountain CA US LOXWFO , +AIDC1,3,27.40000 ,33.33800 ,-118.3305,MesoWest ,LOXWFO ,Avalon CA US LOXWFO , +CRXC1,3,518.2000 ,34.10917 ,-118.9361,MesoWest ,LOXWFO ,Circle X Ranch CA US LOXWFO , +OXERO,3,23.80000 ,34.23000 ,-119.1800,MesoWest ,LOXWFO ,EL RIO CA US LOXWFO , +OXFIG,3,975.4000 ,34.75140 ,-120.0072,MesoWest ,LOXWFO ,Figueroa Mountain CA US LOXWFO , +OXFFH,3,141.7000 ,34.40000 ,-118.8800,MesoWest ,LOXWFO ,FILLMORE CA US LOXWFO , +OXAHV,3,1264.900 ,34.78000 ,-118.8700,MesoWest ,LOXWFO ,HUNGRY VLY CA US LOXWFO , +LCTC1,3,6.100000 ,34.34528 ,-119.4183,MesoWest ,LOXWFO ,La Conchita CA US LOXWFO , +LCPC1,3,1164.300 ,34.50222 ,-119.7267,MesoWest ,LOXWFO ,La Cumbre Peak CA US LOXWFO , +LGRC1,3,679.7000 ,34.41722 ,-119.4236,MesoWest ,LOXWFO ,La Granada Mountain CA US LOXWFO , +OXLAN,3,487.7000 ,34.20000 ,-118.8000,MesoWest ,LOXWFO ,LANG RANCH CA US LOXWFO , +LOKC1,3,1569.700 ,34.73389 ,-119.1006,MesoWest ,LOXWFO ,Lockwood Valley CA US LOXWFO , +OXLBA,3,6.100000 ,33.77000 ,-118.2000,MesoWest ,LOXWFO ,LONG BEACH AQUARIUM CA US LOXWFO , +OXMBY,3,6.100000 ,35.37080 ,-120.8581,MesoWest ,LOXWFO ,Morro Bay Harbor CA US LOXWFO , +MWSC1,3,1737.400 ,34.22580 ,-118.0570,MesoWest ,LOXWFO ,Mount Wilson CA US LOXWFO , +OXOJI,3,233.2000 ,34.45000 ,-119.2300,MesoWest ,LOXWFO ,OJAI CA US LOXWFO , +PPBC1,3,12.20000 ,35.66660 ,-121.2833,MesoWest ,LOXWFO ,Point Piedras Blancas CA US LOXWFO , +OXL97,3,41.10000 ,33.74190 ,-118.4104,MesoWest ,LOXWFO ,Point Vicente CA US LOXWFO , +RSVC1,3,1036.300 ,34.53944 ,-119.1872,MesoWest ,LOXWFO ,Rose Valley CA US LOXWFO , +OXSLB,3,6.100000 ,35.16778 ,-120.7533,MesoWest ,LOXWFO ,San Luis Harbor CA US LOXWFO , +SBTC1,3,1615.400 ,34.77056 ,-119.6519,MesoWest ,LOXWFO ,Santa Barbara Portrero CA US LOXWFO , +OXSMB,3,57.00000 ,34.95000 ,-120.4300,MesoWest ,LOXWFO ,SANTA MARIA CA US LOXWFO , +OXSIM,3,278.6000 ,34.28000 ,-118.8200,MesoWest ,LOXWFO ,SIMI VALLEY CA US LOXWFO , +SMNC1,3,201.2000 ,34.28278 ,-119.0933,MesoWest ,LOXWFO ,South Mountain West CA US LOXWFO , +STWC1,3,292.6000 ,34.46000 ,-119.2467,MesoWest ,LOXWFO ,Stewart Canyon CA US LOXWFO , +TJGC1,3,106.7000 ,34.47690 ,-120.1305,MesoWest ,LOXWFO ,Tajiguas Landfill CA US LOXWFO , +VTUC1,3,69.20000 ,34.26730 ,-119.2108,MesoWest ,LOXWFO ,Ventura County Government Center CA US LOXWFO , +WBPC1,3,1938.500 ,34.69056 ,-119.6644,MesoWest ,LOXWFO ,West Big Pine CA US LOXWFO , +CASD ,3,1699.900 ,39.22000 ,-111.0200,MesoWest ,REC ,CASTLE DALE UT US REC , +ELMO ,3,1730.400 ,39.40417 ,-110.8186,MesoWest ,REC ,ELMO UT US REC , +ELSI ,3,1627.900 ,38.66000 ,-112.1700,MesoWest ,REC ,ELSINORE-RICHFIELD CANAL UT US REC , +FERR ,3,1830.000 ,39.06500 ,-111.1503,MesoWest ,REC ,FERRON UT US REC , +GLEN ,3,1629.200 ,38.56500 ,-111.4120,MesoWest ,REC ,GLENANNA UT US REC , +GRAS ,3,2699.900 ,39.31444 ,-111.3292,MesoWest ,REC ,GRASSY FLATS UT US REC , +GUNN ,3,1585.000 ,39.15829 ,-111.8126,MesoWest ,REC ,GUNNISON UT US REC , +HUNT ,3,1761.700 ,39.33960 ,-110.9616,MesoWest ,REC ,HUNTINGTON NORTH UT US REC , +JOES ,3,2094.000 ,39.28778 ,-111.2681,MesoWest ,REC ,JOES VALLEY DAMSITE UT US REC , +LITW ,3,2130.600 ,39.30389 ,-111.2853,MesoWest ,REC ,LITTLE CREEK UT US REC , +MOLE ,3,1758.700 ,39.08528 ,-111.0750,MesoWest ,REC ,MOLEN UT US REC , +RICH ,3,1605.700 ,38.74000 ,-112.0958,MesoWest ,REC ,RICHFIELD AIRPORT UT US REC , +SPGC ,3,1767.800 ,39.48250 ,-111.4952,MesoWest ,REC ,SPRING CITY UT US REC , +VENI ,3,1599.900 ,38.82000 ,-112.0200,MesoWest ,REC ,VENICE UT US REC , +CUPA ,3,2313.100 ,40.33000 ,-111.0500,MesoWest ,CUP ,CURRANT CREEK DAM UT US CUP , +CUPD ,3,1855.000 ,40.60000 ,-111.4200,MesoWest ,CUP ,JORDANELLE DAM UT US CUP , +CUPE ,3,1655.100 ,40.49000 ,-111.4700,MesoWest ,CUP ,SNAKE CREEK-CHARLESTON UT US CUP , +CUPG ,3,2320.100 ,40.37000 ,-111.0300,MesoWest ,CUP ,SOLDIER CREEK DAM UT US CUP , +CUPH ,3,1745.000 ,40.19000 ,-110.4400,MesoWest ,CUP ,STARVATION DAM UT US CUP , +CUPF ,3,2318.900 ,40.22000 ,-111.1100,MesoWest ,CUP ,STRAWBERRY RESEVOIR UT US CUP , +CUPI ,3,2450.000 ,40.56000 ,-110.7000,MesoWest ,CUP ,UPPER STILLWATER DAM UT US CUP , +CUPC ,3,1370.100 ,40.35990 ,-111.8952,MesoWest ,CUP ,UTAH LAKE - SARATOGA UT US CUP , +CUPB ,3,1926.000 ,40.61000 ,-111.3100,MesoWest ,CUP ,WEBER PROVO CANAL UT US CUP , +KCC01,3,1289.300 ,40.73580 ,-112.1963,MesoWest ,KENNECOTT ,BEACH TWO - B2 UT US KENNECOTT , +KCC11,3,1664.200 ,40.71580 ,-112.2069,MesoWest ,KENNECOTT ,BLACKROCK TOWER- BT UT US KENNECOTT , +KCC13,3,1353.300 ,40.74880 ,-112.1281,MesoWest ,KENNECOTT ,CENTER TAILINGS - CT UT US KENNECOTT , +KCC08,3,1658.100 ,40.56717 ,-112.0902,MesoWest ,KENNECOTT ,COPPERTON AQ - C2 UT US KENNECOTT , +KCC05,3,1338.100 ,40.74358 ,-112.0862,MesoWest ,KENNECOTT ,DIKE STATION - DS UT US KENNECOTT , +KCC09,3,1770.000 ,40.56000 ,-112.1300,MesoWest ,KENNECOTT ,DRY FORK - DF UT US KENNECOTT , +KCC06,3,1359.100 ,40.69570 ,-112.1022,MesoWest ,KENNECOTT ,LITTLE VALLEY - LV UT US KENNECOTT , +KCC02,3,1286.300 ,40.73433 ,-112.2103,MesoWest ,KENNECOTT ,MARINA - MR UT US KENNECOTT , +KCC03,3,1295.400 ,40.72445 ,-112.2014,MesoWest ,KENNECOTT ,MONITORING CENTER - MC UT US KENNECOTT , +KCC10,3,1289.300 ,40.75570 ,-112.1670,MesoWest ,KENNECOTT ,OUTFALL TWELVE- 0T UT US KENNECOTT , +KCC12,3,1793.800 ,40.70950 ,-112.1581,MesoWest ,KENNECOTT ,REFINERY TOWER- RT UT US KENNECOTT , +KCC07,3,1318.300 ,40.70678 ,-112.0945,MesoWest ,KENNECOTT ,STATE TWO - S2 UT US KENNECOTT , +KCC04,3,1286.300 ,40.72858 ,-112.2052,MesoWest ,KENNECOTT ,WEST POND - WP UT US KENNECOTT , +MA67 ,3,371.9000 ,33.62000 ,-112.2000,MesoWest ,AZ ALERT ,ACDC @ 67th Ave. AZ US AZ ALERT , +YABA ,3,1271.000 ,34.59583 ,-113.1700,MesoWest ,AZ ALERT ,Bagdad Airport AZ US AZ ALERT , +MABL ,3,509.0000 ,33.84000 ,-111.6400,MesoWest ,AZ ALERT ,Bartlett Lake AZ US AZ ALERT , +YABC ,3,649.2000 ,34.05780 ,-112.1514,MesoWest ,AZ ALERT ,Black Canyon City AZ US AZ ALERT , +MABU ,3,309.4000 ,33.42500 ,-112.6252,MesoWest ,AZ ALERT ,Buckeye FRS #1 AZ US AZ ALERT , +MACR ,3,902.2000 ,33.87000 ,-111.8500,MesoWest ,AZ ALERT ,Carefree Ranch AZ US AZ ALERT , +MACH ,3,729.1000 ,34.02000 ,-112.3500,MesoWest ,AZ ALERT ,Columbia Hill AZ US AZ ALERT , +YACJ ,3,1148.500 ,34.32420 ,-112.1169,MesoWest ,AZ ALERT ,Cordes Junction AZ US AZ ALERT , +YACW ,3,1091.200 ,34.73170 ,-112.0422,MesoWest ,AZ ALERT ,Cottonwood PW Yard AZ US AZ ALERT , +MACY ,3,550.2000 ,33.69700 ,-112.9236,MesoWest ,AZ ALERT ,Coyote Wash AZ US AZ ALERT , +MACP ,3,387.1000 ,33.32000 ,-111.7400,MesoWest ,AZ ALERT ,Crossroads Park AZ US AZ ALERT , +MADM ,3,551.7000 ,33.80933 ,-112.0772,MesoWest ,AZ ALERT ,Desert Mtn. School AZ US AZ ALERT , +MADC ,3,320.0000 ,33.42000 ,-112.1200,MesoWest ,AZ ALERT ,Durango Complex AZ US AZ ALERT , +MAEF ,3,434.0000 ,33.27000 ,-112.3200,MesoWest ,AZ ALERT ,Estrella Fan AZ US AZ ALERT , +MAFH ,3,695.9000 ,33.61000 ,-111.7200,MesoWest ,AZ ALERT ,Fountain Hills FD AZ US AZ ALERT , +MAGC ,3,344.4000 ,33.45028 ,-111.9981,MesoWest ,AZ ALERT ,Gateway C.College AZ US AZ ALERT , +MAGL ,3,228.9000 ,32.99000 ,-112.6800,MesoWest ,AZ ALERT ,Gila Bend Landfill AZ US AZ ALERT , +MAGB ,3,475.5000 ,33.24000 ,-113.2000,MesoWest ,AZ ALERT ,Gila Bend Mountains AZ US AZ ALERT , +MAHR ,3,309.4000 ,33.46000 ,-112.7600,MesoWest ,AZ ALERT ,Hassayampa R @ I-10 AZ US AZ ALERT , +MAHL ,3,609.9000 ,33.98000 ,-111.7100,MesoWest ,AZ ALERT ,Horseshoe Lake AZ US AZ ALERT , +MAHB ,3,2041.900 ,34.14000 ,-112.2700,MesoWest ,AZ ALERT ,Horsethief Basin AZ US AZ ALERT , +MAHM ,3,1584.000 ,33.97000 ,-111.7900,MesoWest ,AZ ALERT ,Humboldt Mountain AZ US AZ ALERT , +MAPL ,3,553.2000 ,33.84739 ,-112.2781,MesoWest ,AZ ALERT ,Lake Pleasant AZ US AZ ALERT , +MALP ,3,533.4000 ,33.90464 ,-112.2708,MesoWest ,AZ ALERT ,Lake Pleasant North AZ US AZ ALERT , +MAMF ,3,533.4000 ,33.12000 ,-111.4000,MesoWest ,AZ ALERT ,Magma FRS AZ US AZ ALERT , +MAMD ,3,411.5000 ,33.67700 ,-112.4235,MesoWest ,AZ ALERT ,McMicken Dam AZ US AZ ALERT , +MAMC ,3,406.9000 ,33.68531 ,-112.4086,MesoWest ,AZ ALERT ,McMicken Floodway AZ US AZ ALERT , +YAMM ,3,2381.400 ,34.70110 ,-112.1178,MesoWest ,AZ ALERT ,Mingus Mountain AZ US AZ ALERT , +MAMO ,3,408.4000 ,33.03840 ,-112.2441,MesoWest ,AZ ALERT ,Mobile AZ US AZ ALERT , +MAMU ,3,2283.900 ,34.41000 ,-112.4100,MesoWest ,AZ ALERT ,Mt. Union AZ US AZ ALERT , +MAIS ,3,382.5000 ,33.48511 ,-111.9427,MesoWest ,AZ ALERT ,Osborn @ 64th St. AZ US AZ ALERT , +MAPJ ,3,663.9000 ,33.72000 ,-111.8900,MesoWest ,AZ ALERT ,Pima @ Jomax AZ US AZ ALERT , +YAPV ,3,1555.700 ,34.59500 ,-112.3314,MesoWest ,AZ ALERT ,Prescott Valley PD AZ US AZ ALERT , +MRKC ,3,1377.700 ,33.90164 ,-111.8451,MesoWest ,AZ ALERT ,Rackensack Canyon AZ US AZ ALERT , +MAGU ,3,472.1000 ,33.58000 ,-111.5400,MesoWest ,AZ ALERT ,Saguaro Lake AZ US AZ ALERT , +YASD ,3,1443.800 ,34.84390 ,-111.7931,MesoWest ,AZ ALERT ,Sedona Airport AZ US AZ ALERT , +YASL ,3,1596.200 ,35.33420 ,-112.8858,MesoWest ,AZ ALERT ,Seligman Airport AZ US AZ ALERT , +MASF ,3,381.0000 ,33.31000 ,-112.1400,MesoWest ,AZ ALERT ,South Mountain Fan AZ US AZ ALERT , +MASP ,3,651.1000 ,33.34000 ,-112.0300,MesoWest ,AZ ALERT ,South Mountain Park AZ US AZ ALERT , +MATP ,3,1217.100 ,33.64000 ,-111.8200,MesoWest ,AZ ALERT ,Thompson Peak AZ US AZ ALERT , +MATA ,3,441.0000 ,33.60000 ,-111.9200,MesoWest ,AZ ALERT ,Thunderbird Academy AZ US AZ ALERT , +MATW ,3,488.9000 ,33.67000 ,-113.3100,MesoWest ,AZ ALERT ,Tiger Wash Fan AZ US AZ ALERT , +MAUP ,3,644.0000 ,33.48000 ,-111.6100,MesoWest ,AZ ALERT ,Usery Park WS AZ US AZ ALERT , +MAWA ,3,726.0000 ,33.97000 ,-112.8000,MesoWest ,AZ ALERT ,Wickenburg Airport AZ US AZ ALERT , +YAYA ,3,1668.200 ,34.53360 ,-112.4661,MesoWest ,AZ ALERT ,Yavapai FCD AZ US AZ ALERT , +AUSNV,3,2283.900 ,39.48161 ,-117.0378,MesoWest ,NV DOT ,AUSTIN SUMMIT NV US NV DOT , +BKRNV,3,1710.800 ,39.06962 ,-114.1720,MesoWest ,NV DOT ,Baker NV US NV DOT , +BTMNV,3,1386.800 ,40.61103 ,-116.8342,MesoWest ,NV DOT ,BATTLE MOUNTAIN NV US NV DOT , +BMRNV,3,1376.200 ,40.62026 ,-116.9142,MesoWest ,NV DOT ,Battle Mountain Remote NV US NV DOT , +BFTNV,3,1922.400 ,39.49750 ,-116.5075,MesoWest ,NV DOT ,Bean Flat Monitor Valley NV US NV DOT , +BSPNV,3,1830.000 ,41.26903 ,-114.8271,MesoWest ,NV DOT ,Bishop Flat NV US NV DOT , +BLCNV,3,1576.700 ,39.60408 ,-119.8414,MesoWest ,NV DOT ,BLACK SPRINGS NV US NV DOT , +XMSNV,3,2111.000 ,39.33769 ,-119.8616,MesoWest ,NV DOT ,BULLS EYE NV US NV DOT , +CTENV,3,1538.600 ,40.71991 ,-116.0106,MesoWest ,NV DOT ,Carlin Tunnel E NV US NV DOT , +CERNV,3,1538.600 ,40.71991 ,-116.0106,MesoWest ,NV DOT ,Carlin Tunnel E Remote NV US NV DOT , +CTWNV,3,1535.300 ,40.72328 ,-116.0671,MesoWest ,NV DOT ,Carlin Tunnel W NV US NV DOT , +CWRNV,3,1535.300 ,40.72328 ,-116.0671,MesoWest ,NV DOT ,Carlin Tunnel W Remote NV US NV DOT , +JCTNV,3,1449.600 ,39.11936 ,-119.7749,MesoWest ,NV DOT ,CARSON CITY NV US NV DOT , +MNDNV,3,1428.000 ,38.99914 ,-119.7799,MesoWest ,NV DOT ,CARSON VALLEY NV US NV DOT , +CVRNV,3,1924.500 ,39.04797 ,-119.9463,MesoWest ,NV DOT ,CAVE ROCK NV US NV DOT , +CNRNV,3,2203.100 ,39.04760 ,-114.6155,MesoWest ,NV DOT ,Conners Summit NV US NV DOT , +CRLNV,3,1961.400 ,39.23019 ,-120.0033,MesoWest ,NV DOT ,CRYSTAL BAY NV US NV DOT , +CRTNV,3,2132.100 ,38.81850 ,-115.2834,MesoWest ,NV DOT ,Currant Summit NV US NV DOT , +DCRNV,3,2504.900 ,36.32139 ,-115.6189,MesoWest ,NV DOT ,DEER CREEK HWY NV US NV DOT , +DXCNV,3,2484.100 ,39.28325 ,-119.9358,MesoWest ,NV DOT ,DIAMOND PEAK NV US NV DOT , +DBLNV,3,1817.800 ,38.80183 ,-119.6038,MesoWest ,NV DOT ,DOUBLE SPRING FLAT NV US NV DOT , +ESPNV,3,1336.900 ,39.52897 ,-119.7203,MesoWest ,NV DOT ,EAST SPARKS NV US NV DOT , +ESRNV,3,1336.900 ,39.52899 ,-119.7202,MesoWest ,NV DOT ,East Sparks Blvd Remote NV US NV DOT , +EKSNV,3,1763.900 ,40.80340 ,-115.7179,MesoWest ,NV DOT ,ELKO SUMMIT NV US NV DOT , +EKWNV,3,1557.800 ,40.80625 ,-115.8270,MesoWest ,NV DOT ,ELKO WEST NV US NV DOT , +EKRNV,3,1536.800 ,40.80617 ,-115.8270,MesoWest ,NV DOT ,Elko West Remote NV US NV DOT , +EMPNV,3,1870.000 ,40.65478 ,-116.2766,MesoWest ,NV DOT ,EMIGRANT PASS NV US NV DOT , +EMRNV,3,1870.000 ,40.65478 ,-116.2766,MesoWest ,NV DOT ,Emigrant Remote NV US NV DOT , +FMFNV,3,1934.900 ,39.36820 ,-119.6672,MesoWest ,NV DOT ,FIVE MILE FLAT NV US NV DOT , +GLVNV,3,1461.800 ,38.88703 ,-119.7223,MesoWest ,NV DOT ,GARDNERVILLE NV US NV DOT , +GLNNV,3,2078.400 ,39.08881 ,-119.9113,MesoWest ,NV DOT ,GLENBROOK CANYON NV US NV DOT , +GCSNV,3,1574.000 ,40.92125 ,-117.3938,MesoWest ,NV DOT ,GOLCONDA SUMMIT NV US NV DOT , +GCRNV,3,1572.200 ,40.92125 ,-117.3938,MesoWest ,NV DOT ,Golconda Summit Remote NV US NV DOT , +HALNV,3,1631.900 ,40.95706 ,-115.4786,MesoWest ,NV DOT ,HALLECK JUNCTION NV US NV DOT , +HARNV,3,1625.800 ,40.95704 ,-115.4786,MesoWest ,NV DOT ,Halleck Remote NV US NV DOT , +HDSNV,3,1914.800 ,41.34797 ,-114.8056,MesoWest ,NV DOT ,HD Summit NV US NV DOT , +HKSNV,3,1998.300 ,39.44433 ,-116.7433,MesoWest ,NV DOT ,Hickison Summit NV US NV DOT , +HBKNV,3,1632.800 ,38.72778 ,-119.5554,MesoWest ,NV DOT ,HOLBROOK JUNCTION NV US NV DOT , +ICNNV,3,1973.300 ,39.25297 ,-119.9710,MesoWest ,NV DOT ,INCLINE NV US NV DOT , +KAHNV,3,1922.400 ,38.97019 ,-119.9349,MesoWest ,NV DOT ,KAHLE DRIVE NV US NV DOT , +KBYNV,3,1639.800 ,38.96075 ,-119.8469,MesoWest ,NV DOT ,KINGSBURY EAST GRADE NV US NV DOT , +KCYNV,3,1959.900 ,36.27111 ,-115.5728,MesoWest ,NV DOT ,KYLE CANYON NV US NV DOT , +LMRNV,3,1763.600 ,40.80167 ,-115.7178,MesoWest ,NV DOT ,Lamoille Summit Remote NV US NV DOT , +LEENV,3,2008.900 ,36.37972 ,-115.6108,MesoWest ,NV DOT ,LEE CANYON NV US NV DOT , +LASNV,3,2283.000 ,39.39750 ,-115.4677,MesoWest ,NV DOT ,LITTLE ANTELOPE SUMMIT NV US NV DOT , +WLRNV,3,1801.700 ,41.10163 ,-114.9082,MesoWest ,NV DOT ,Moor/Wells Remote NV US NV DOT , +RSMNV,3,2709.400 ,39.31158 ,-119.8994,MesoWest ,NV DOT ,MOUNT ROSE SUMMIT NV US NV DOT , +MSSNV,3,1672.700 ,36.01500 ,-115.5011,MesoWest ,NV DOT ,MOUNTAIN SPRINGS SUMMIT NV US NV DOT , +MRSNV,3,2222.000 ,39.21700 ,-114.9701,MesoWest ,NV DOT ,Murray Summit NV US NV DOT , +ONLNV,3,1727.300 ,41.61893 ,-114.8064,MesoWest ,NV DOT ,O'Neil NV US NV DOT , +PANNV,3,1989.100 ,39.40908 ,-115.6965,MesoWest ,NV DOT ,Pancake Summit NV US NV DOT , +PEQNV,3,2133.000 ,41.07833 ,-114.5696,MesoWest ,NV DOT ,PEQUOP SUMMIT NV US NV DOT , +PQRNV,3,2120.800 ,41.07831 ,-114.5697,MesoWest ,NV DOT ,Pequop Summit Remote NV US NV DOT , +PPKNV,3,1423.700 ,40.84469 ,-114.2107,MesoWest ,NV DOT ,PILOT PEAK JUNCTION NV US NV DOT , +PPRNV,3,1423.700 ,40.84550 ,-114.2107,MesoWest ,NV DOT ,Pilot Remote NV US NV DOT , +PINNV,3,2249.700 ,39.45042 ,-115.9340,MesoWest ,NV DOT ,PINTO SUMMIT NV US NV DOT , +RRYNV,3,1359.700 ,39.53191 ,-119.7860,MesoWest ,NV DOT ,RENO RAIL YARD NV US NV DOT , +ROBNV,3,2329.000 ,39.41464 ,-115.0881,MesoWest ,NV DOT ,ROBINSON SUMMIT NV US NV DOT , +RSENV,3,1337.800 ,40.88850 ,-117.9090,MesoWest ,NV DOT ,ROSE CREEK NV US NV DOT , +RSRNV,3,1329.500 ,40.88840 ,-117.9092,MesoWest ,NV DOT ,Rose Creek Remote NV US NV DOT , +SACNV,3,2085.800 ,39.15745 ,-114.3502,MesoWest ,NV DOT ,Sacramento Summit NV US NV DOT , +SANNV,3,1905.300 ,39.19464 ,-119.9266,MesoWest ,NV DOT ,SAND HARBOR NV US NV DOT , +SCHNV,3,2038.200 ,39.09957 ,-114.7594,MesoWest ,NV DOT ,Schell Creek Elk View NV US NV DOT , +SECNV,3,2091.200 ,39.14186 ,-119.9249,MesoWest ,NV DOT ,SECRET CREEK NV US NV DOT , +IEINV,3,1378.000 ,39.44994 ,-119.7766,MesoWest ,NV DOT ,SOUTH RENO NV US NV DOT , +SPONV,3,1817.800 ,39.11738 ,-119.8455,MesoWest ,NV DOT ,SPOONER EAST GRADE NV US NV DOT , +SPRNV,3,2181.200 ,39.10381 ,-119.8963,MesoWest ,NV DOT ,SPOONER SUMMIT NV US NV DOT , +NEMNV,3,1449.900 ,39.22441 ,-119.6465,MesoWest ,NV DOT ,SR341 / US50 NV US NV DOT , +TOUNV,3,1201.800 ,40.06331 ,-118.6479,MesoWest ,NV DOT ,TOULON NV US NV DOT , +TORNV,3,1202.700 ,40.06331 ,-118.6479,MesoWest ,NV DOT ,Toulon Remote NV US NV DOT , +TCYNV,3,1371.600 ,39.56858 ,-119.5259,MesoWest ,NV DOT ,TRACY CLARK NV US NV DOT , +WLKNV,3,1250.900 ,38.58675 ,-118.7088,MesoWest ,NV DOT ,WALKER LAKE NV US NV DOT , +WASNV,3,1536.500 ,39.27381 ,-119.8188,MesoWest ,NV DOT ,WASHOE VALLEY NV US NV DOT , +WLSNV,3,1790.700 ,41.10169 ,-114.9082,MesoWest ,NV DOT ,WELLS/MOOR GRADE NV US NV DOT , +ZEPNV,3,1934.300 ,39.00214 ,-119.9494,MesoWest ,NV DOT ,ZEPHYR COVE NV US NV DOT , +FLOC2,3,2738.600 ,37.35889 ,-107.7181,MesoWest ,CBRFC ,A-12 MISSIONARY RIDGE (FLORIDA CO US CBRFC , +JAKC2,3,2598.400 ,37.40000 ,-107.5950,MesoWest ,CBRFC ,A-4 MISSIONARY RIDGE (JACK CREEK CO US CBRFC , +TWRC2,3,2728.000 ,37.33917 ,-107.8244,MesoWest ,CBRFC ,A-7 MISSIONARY RIDGE CO US CBRFC , +CBEA3,3,1682.500 ,34.12111 ,-110.4169,MesoWest ,CBRFC ,CARRIZO CK - CIBECUE AZ US CBRFC , +CRZA3,3,1447.800 ,33.98583 ,-110.2803,MesoWest ,CBRFC ,CARRIZO CK - SHOW LOW AZ US CBRFC , +CBQA3,3,975.4000 ,33.84306 ,-110.5569,MesoWest ,CBRFC ,CIBECUE CK - CHRYSOTILE AZ US CBRFC , +OVGA3,3,2194.600 ,34.15722 ,-110.5111,MesoWest ,CBRFC ,CIBECUE CK - OVERGAARD AZ US CBRFC , +SOWA3,3,1706.900 ,34.05833 ,-110.2131,MesoWest ,CBRFC ,CORDUROY CK - SHOW LOW AZ US CBRFC , +DRKC2,3,2243.300 ,38.16750 ,-107.6897,MesoWest ,CBRFC ,DRY CREEK MET STN NR RIDGWAY CO US CBRFC , +LIXC2,3,1732.800 ,40.54722 ,-108.4236,MesoWest ,CBRFC ,LITTLE SNAKE - LILY: NR CO US CBRFC , +SOMC2,3,1914.100 ,38.92583 ,-107.4336,MesoWest ,CBRFC ,NF GUNNISON - SOMERSET: NR CO US CBRFC , +OMSC2,3,2426.200 ,38.01667 ,-107.6667,MesoWest ,CBRFC ,OURAY CO US CBRFC , +PLEC2,3,2295.100 ,38.14556 ,-107.8561,MesoWest ,CBRFC ,PLEASANT VALLEY MET STN NR RID CO US CBRFC , +RIDC2,3,2133.600 ,38.15444 ,-107.7561,MesoWest ,CBRFC ,RIDGWAY MET STATION AT RIDGWAY CO US CBRFC , +RMSC2,3,2045.200 ,38.23944 ,-107.7583,MesoWest ,CBRFC ,RIDGWAY RSVR MET STATION CO US CBRFC , +VAMA3,3,539.5000 ,31.95111 ,-112.3472,MesoWest ,CBRFC ,VAMORI WASH @ KOM VO AZ US CBRFC , +WLMC2,3,2889.500 ,38.05667 ,-107.7458,MesoWest ,CBRFC ,WHITEHOUSE CR MET STATION CO US CBRFC , +WTPC2,3,2774.600 ,39.89028 ,-105.7617,MesoWest ,CBRFC ,WINTER PARK CO US CBRFC , +APWN2,3,865.9000 ,36.17000 ,-115.3100,MesoWest ,LAS VEGAS ,ANGEL PARK NV US LAS VEGAS , +LV24 ,3,807.7000 ,36.18694 ,-115.2814,MesoWest ,LAS VEGAS ,ANGEL PARK DB NV US LAS VEGAS , +AGCA3,3,1661.200 ,35.29330 ,-113.0317,MesoWest ,LAS VEGAS ,AUDLEY GRADE AZ US LAS VEGAS , +BDMA3,3,586.1000 ,36.91720 ,-113.9256,MesoWest ,LAS VEGAS ,BEAVER DAM AZ US LAS VEGAS , +MBDN2,3,1495.400 ,37.50000 ,-114.0600,MesoWest ,LAS VEGAS ,Beaver Dam State Park NV US LAS VEGAS , +BDSN2,3,1474.900 ,36.08000 ,-115.3900,MesoWest ,LAS VEGAS ,BLUE DIAMOND RIDGE NV US LAS VEGAS , +BOUN2,3,1049.100 ,36.00000 ,-114.8600,MesoWest ,LAS VEGAS ,BOULDER CITY NV US LAS VEGAS , +BCYN2,3,589.5000 ,35.79000 ,-115.0300,MesoWest ,LAS VEGAS ,Boulder City SW NV US LAS VEGAS , +BHCA3,3,171.9000 ,35.10780 ,-114.6083,MesoWest ,LAS VEGAS ,BULLHEAD CITY AZ US LAS VEGAS , +BUNN2,3,869.9000 ,36.71000 ,-114.0800,MesoWest ,LAS VEGAS ,BUNKERVILLE NV US LAS VEGAS , +CLFN2,3,634.0000 ,36.48000 ,-114.7100,MesoWest ,LAS VEGAS ,CALIFORNIA WASH NV US LAS VEGAS , +CNAN2,3,898.9000 ,35.32000 ,-114.8000,MesoWest ,LAS VEGAS ,CALNEVARI NV US LAS VEGAS , +MCHA3,3,1285.000 ,35.17640 ,-113.7883,MesoWest ,LAS VEGAS ,CEDAR HILLS AZ US LAS VEGAS , +CDCN2,3,1645.600 ,36.44500 ,-115.6869,MesoWest ,LAS VEGAS ,COLD CREEK NV US LAS VEGAS , +MCOA3,3,1518.500 ,36.97970 ,-112.9733,MesoWest ,LAS VEGAS ,COLORADO CITY AZ US LAS VEGAS , +HTCN2,3,801.9000 ,35.98000 ,-115.2500,MesoWest ,LAS VEGAS ,DESERT TORTOISE NV US LAS VEGAS , +MDLA3,3,1014.400 ,35.58230 ,-114.2778,MesoWest ,LAS VEGAS ,DOLAN SPRINGS AZ US LAS VEGAS , +RFCN2,3,658.1000 ,36.17000 ,-115.1400,MesoWest ,LAS VEGAS ,DOWNTOWN LAS VEGAS (CCRFCD) NV US LAS VEGAS , +FOSN2,3,1097.000 ,36.43000 ,-115.2900,MesoWest ,LAS VEGAS ,FOSSIL RIDGE NV US LAS VEGAS , +MGSA3,3,193.9000 ,34.77610 ,-114.4789,MesoWest ,LAS VEGAS ,GOLDEN SHORES AZ US LAS VEGAS , +GDSN2,3,1535.900 ,35.81000 ,-115.4700,MesoWest ,LAS VEGAS ,GOODSPRINGS NV US LAS VEGAS , +TIMN2,3,561.1000 ,36.05000 ,-115.0000,MesoWest ,LAS VEGAS ,HENDERSON NV US LAS VEGAS , +YHSA3,3,1211.000 ,34.44000 ,-112.9300,MesoWest ,LAS VEGAS ,Hillside AZ US LAS VEGAS , +HMTA3,3,1979.100 ,35.09890 ,-113.8853,MesoWest ,LAS VEGAS ,HUALAPAI MOUNTAIN AZ US LAS VEGAS , +JEAN2,3,864.1000 ,35.77000 ,-115.3300,MesoWest ,LAS VEGAS ,JEAN NV US LAS VEGAS , +JSEN2,3,966.2000 ,35.73000 ,-115.1900,MesoWest ,LAS VEGAS ,Jean SE 2 NV US LAS VEGAS , +JNSN2,3,844.0000 ,35.67000 ,-115.3100,MesoWest ,LAS VEGAS ,Jean SE 3 NV US LAS VEGAS , +JSWN2,3,888.8000 ,35.74000 ,-115.4000,MesoWest ,LAS VEGAS ,Jean SW NV US LAS VEGAS , +MYKA3,3,1041.800 ,35.23000 ,-114.0006,MesoWest ,LAS VEGAS ,KINGMAN AZ US LAS VEGAS , +MHCA3,3,222.5000 ,34.47580 ,-114.3186,MesoWest ,LAS VEGAS ,LAKE HAVASU CITY AZ US LAS VEGAS , +MLMA3,3,1028.100 ,35.96190 ,-114.0925,MesoWest ,LAS VEGAS ,LAKE MEAD CITY AZ US LAS VEGAS , +LALN2,3,737.9000 ,35.18000 ,-114.6800,MesoWest ,LAS VEGAS ,LAUGHLIN NV US LAS VEGAS , +MMVA3,3,910.4000 ,36.00190 ,-114.0065,MesoWest ,LAS VEGAS ,MEADVIEW AZ US LAS VEGAS , +MSQN2,3,599.8000 ,36.84000 ,-114.0600,MesoWest ,LAS VEGAS ,MESQUITE NV US LAS VEGAS , +MYMA3,3,141.4000 ,34.86780 ,-114.5611,MesoWest ,LAS VEGAS ,MOHAVE VALLEY AZ US LAS VEGAS , +MMTN2,3,609.9000 ,36.66000 ,-114.4200,MesoWest ,LAS VEGAS ,MORMON MESA NV US LAS VEGAS , +NPKN2,3,1508.200 ,35.70000 ,-114.8900,MesoWest ,LAS VEGAS ,NELSON PEAK NV US LAS VEGAS , +NLNN2,3,579.1000 ,36.25000 ,-115.0400,MesoWest ,LAS VEGAS ,NORTH NELLIS NV US LAS VEGAS , +NVON2,3,805.0000 ,36.34000 ,-115.1700,MesoWest ,LAS VEGAS ,NORTH VALLEY NV US LAS VEGAS , +NWSN2,3,693.1000 ,36.05000 ,-115.1900,MesoWest ,LAS VEGAS ,NWS LAS VEGAS NV US LAS VEGAS , +OVRN2,3,413.9000 ,36.57000 ,-114.4400,MesoWest ,LAS VEGAS ,OVERTON AIRPORT NV US LAS VEGAS , +OVBN2,3,390.1000 ,36.44000 ,-114.3600,MesoWest ,LAS VEGAS ,OVERTON BEACH NV US LAS VEGAS , +PPMA3,3,1584.000 ,35.14280 ,-113.9153,MesoWest ,LAS VEGAS ,PINION PINES AZ US LAS VEGAS , +PRIN2,3,805.3000 ,35.65000 ,-115.3900,MesoWest ,LAS VEGAS ,Primm NV US LAS VEGAS , +MSMA3,3,688.8000 ,35.03250 ,-114.1753,MesoWest ,LAS VEGAS ,SACRAMENTO VALLEY AZ US LAS VEGAS , +STCA3,3,1079.300 ,35.34420 ,-114.1961,MesoWest ,LAS VEGAS ,SANTA CLAUS AZ US LAS VEGAS , +SSWN2,3,1131.100 ,35.40000 ,-115.0300,MesoWest ,LAS VEGAS ,SEARCHLIGHT NV US LAS VEGAS , +SLIN2,3,830.9000 ,35.93000 ,-115.1900,MesoWest ,LAS VEGAS ,SLOAN NV US LAS VEGAS , +MRTA3,3,1582.800 ,35.55000 ,-113.3400,MesoWest ,LAS VEGAS ,SR66 @ MP109 AZ US LAS VEGAS , +SLTN2,3,682.8000 ,36.14440 ,-114.9956,MesoWest ,LAS VEGAS ,SUNRISE LANDFILL NV US LAS VEGAS , +LAKN2,3,798.6000 ,36.12440 ,-115.2856,MesoWest ,LAS VEGAS ,THE LAKES NV US LAS VEGAS , +MVVA3,3,951.3000 ,35.41890 ,-113.8653,MesoWest ,LAS VEGAS ,VALLE VISTA AZ US LAS VEGAS , +SLCN2,3,666.9000 ,36.46000 ,-114.5000,MesoWest ,LAS VEGAS ,VALLEY OF FIRE NV US LAS VEGAS , +MVCA3,3,1146.400 ,35.42000 ,-114.0700,MesoWest ,LAS VEGAS ,Vock Canyon AZ US LAS VEGAS , +MWPA3,3,616.9000 ,34.71440 ,-113.6150,MesoWest ,LAS VEGAS ,WIKIEUP AZ US LAS VEGAS , +ADMC1,3,1889.800 ,41.24000 ,-120.7900,MesoWest ,SNOTEL ,ADIN MTN CA US SNOTEL , +AGUU1,3,2712.700 ,37.52000 ,-112.2700,MesoWest ,SNOTEL ,AGUA CANYON UT US SNOTEL , +ABRM8,3,2529.800 ,45.60000 ,-111.9600,MesoWest ,SNOTEL ,ALBRO LAKE MT US SNOTEL , +APSW1,3,1066.800 ,47.78000 ,-121.7000,MesoWest ,SNOTEL ,ALPINE MEADOWS WA US SNOTEL , +ANRA2,3,503.8000 ,59.86000 ,-151.3100,MesoWest ,SNOTEL ,ANCHOR RIVER DIVIDE AK US SNOTEL , +HILA2,3,634.0000 ,61.11000 ,-149.6700,MesoWest ,SNOTEL ,ANCHORAGE HILLSIDE AK US SNOTEL , +ANRO3,3,2225.000 ,45.21000 ,-117.1900,MesoWest ,SNOTEL ,ANEROID LAKE #2 OR US SNOTEL , +ANSO3,3,1834.900 ,42.87000 ,-122.1700,MesoWest ,SNOTEL ,ANNIE SPRINGS OR US SNOTEL , +APSC2,3,3048.000 ,37.33000 ,-105.0700,MesoWest ,SNOTEL ,APISHAPA CO US SNOTEL , +ARPC2,3,3340.600 ,40.35000 ,-106.3800,MesoWest ,SNOTEL ,ARAPAHO RIDGE CO US SNOTEL , +ARBO3,3,1645.900 ,45.19000 ,-119.2500,MesoWest ,SNOTEL ,ARBUCKLE MTN OR US SNOTEL , +AROC2,3,2950.500 ,39.92000 ,-105.7600,MesoWest ,SNOTEL ,ARROW CO US SNOTEL , +ATGA2,3,1463.000 ,68.13000 ,-149.4800,MesoWest ,SNOTEL ,ATIGUN PASS AK US SNOTEL , +ATAI1,3,2310.400 ,43.76000 ,-115.2400,MesoWest ,SNOTEL ,ATLANTA SUMMIT ID US SNOTEL , +BADM8,3,2103.100 ,48.13000 ,-113.0200,MesoWest ,SNOTEL ,BADGER PASS MT US SNOTEL , +BKBA3,3,2225.000 ,34.46000 ,-111.4100,MesoWest ,SNOTEL ,BAKER BUTTE AZ US SNOTEL , +BLDW4,3,2859.000 ,44.80000 ,-107.8400,MesoWest ,SNOTEL ,BALD MTN. WY US SNOTEL , +BLDA3,3,2781.300 ,33.98000 ,-109.5000,MesoWest ,SNOTEL ,BALDY AZ US SNOTEL , +BANM8,3,1706.900 ,48.57000 ,-115.4500,MesoWest ,SNOTEL ,BANFIELD MOUNTAIN MT US SNOTEL , +BASI1,3,2145.800 ,44.30000 ,-115.2300,MesoWest ,SNOTEL ,BANNER SUMMIT ID US SNOTEL , +BRLM8,3,2514.600 ,46.10000 ,-113.1300,MesoWest ,SNOTEL ,BARKER LAKES MT US SNOTEL , +BSCW4,3,2142.700 ,43.95000 ,-110.4500,MesoWest ,SNOTEL ,BASE CAMP WY US SNOTEL , +BSCM8,3,2188.500 ,45.80000 ,-112.5200,MesoWest ,SNOTEL ,BASIN CREEK MT US SNOTEL , +BAMN5,3,2834.600 ,36.51000 ,-106.3200,MesoWest ,SNOTEL ,BATEMAN NM US SNOTEL , +BTLW4,3,2267.700 ,41.05000 ,-107.2700,MesoWest ,SNOTEL ,BATTLE MOUNTAIN WY US SNOTEL , +BEAM8,3,2697.500 ,44.47000 ,-112.9800,MesoWest ,SNOTEL ,BEAGLE SPRINGS MT US SNOTEL , +BRBI1,3,1630.700 ,44.95000 ,-116.1400,MesoWest ,SNOTEL ,BEAR BASIN ID US SNOTEL , +BECI1,3,2407.900 ,43.74000 ,-113.9400,MesoWest ,SNOTEL ,BEAR CANYON ID US SNOTEL , +BERN2,3,2377.400 ,41.83000 ,-115.4500,MesoWest ,SNOTEL ,BEAR CREEK NV US SNOTEL , +BLKC2,3,2895.600 ,40.31000 ,-105.6400,MesoWest ,SNOTEL ,BEAR LAKE CO US SNOTEL , +BRMI1,3,1645.900 ,48.31000 ,-116.0700,MesoWest ,SNOTEL ,BEAR MOUNTAIN ID US SNOTEL , +BRRC2,3,2767.600 ,40.06000 ,-107.0100,MesoWest ,SNOTEL ,BEAR RIVER CO US SNOTEL , +BSDI1,3,1883.700 ,44.61000 ,-116.9800,MesoWest ,SNOTEL ,BEAR SADDLE ID US SNOTEL , +BTNW4,3,2499.400 ,43.89000 ,-107.0600,MesoWest ,SNOTEL ,BEAR TRAP MEADOW WY US SNOTEL , +BLTW4,3,2827.000 ,44.94000 ,-109.5700,MesoWest ,SNOTEL ,BEARTOOTH LAKE WY US SNOTEL , +BRTC2,3,3535.700 ,37.71000 ,-107.5100,MesoWest ,SNOTEL ,BEARTOWN CO US SNOTEL , +BCVC2,3,2590.800 ,39.60000 ,-106.5100,MesoWest ,SNOTEL ,BEAVER CK VILLAGE CO US SNOTEL , +BEVM8,3,2392.700 ,44.95000 ,-111.3600,MesoWest ,SNOTEL ,BEAVER CREEK MT US SNOTEL , +BVDU1,3,2438.400 ,39.14000 ,-111.5600,MesoWest ,SNOTEL ,BEAVER DAMS UT US SNOTEL , +NWZU1,3,2523.700 ,40.61000 ,-111.1000,MesoWest ,SNOTEL ,BEAVER DIVIDE UT US SNOTEL , +XBHA3,3,2435.400 ,33.69000 ,-109.2200,MesoWest ,SNOTEL ,BEAVER HEAD AZ US SNOTEL , +BVPW1,3,1103.400 ,48.88000 ,-121.2600,MesoWest ,SNOTEL ,BEAVER PASS WA US SNOTEL , +BVRO3,3,1569.700 ,45.15000 ,-118.2200,MesoWest ,SNOTEL ,BEAVER RESERVOIR OR US SNOTEL , +BLPU1,3,2438.400 ,41.38000 ,-111.9400,MesoWest ,SNOTEL ,BEN LOMOND PEAK UT US SNOTEL , +BLTU1,3,1828.800 ,41.38000 ,-111.9200,MesoWest ,SNOTEL ,BEN LOMOND TRAIL UT US SNOTEL , +BRCN2,3,2773.700 ,39.32000 ,-114.6200,MesoWest ,SNOTEL ,BERRY CREEK NV US SNOTEL , +BTSC2,3,3444.200 ,39.80000 ,-105.7800,MesoWest ,SNOTEL ,BERTHOUD SUMMIT CO US SNOTEL , +TEM14,3,195.1000 ,66.92000 ,-151.5300,MesoWest ,SNOTEL ,BETTLES FIELD AK US SNOTEL , +BIGN2,3,2042.200 ,41.76000 ,-115.6900,MesoWest ,SNOTEL ,BIG BEND NV US SNOTEL , +BCSN2,3,2651.800 ,39.29000 ,-117.1100,MesoWest ,SNOTEL ,BIG CREEK SUM NV US SNOTEL , +BKSI1,3,2005.600 ,44.63000 ,-115.7900,MesoWest ,SNOTEL ,BIG CREEK SUMMIT ID US SNOTEL , +BGFU1,3,3136.400 ,38.30000 ,-112.3600,MesoWest ,SNOTEL ,BIG FLAT UT US SNOTEL , +BGEW4,3,2435.400 ,44.58000 ,-107.2000,MesoWest ,SNOTEL ,BIG GOOSE WY US SNOTEL , +BMWN2,3,2529.800 ,39.46000 ,-119.9400,MesoWest ,SNOTEL ,BIG MEADOW NV US SNOTEL , +BRMO3,3,1905.000 ,42.05000 ,-122.8500,MesoWest ,SNOTEL ,BIG RED MOUNTAIN OR US SNOTEL , +BGSW4,3,2767.600 ,42.65000 ,-109.2600,MesoWest ,SNOTEL ,BIG SANDY OPENING WY US SNOTEL , +BGCO3,3,1560.600 ,42.08000 ,-123.3400,MesoWest ,SNOTEL ,BIGELOW CAMP OR US SNOTEL , +BCDO3,3,1615.400 ,42.41000 ,-122.2700,MesoWest ,SNOTEL ,BILLIE CREEK DIVIDE OR US SNOTEL , +BLSC2,3,3316.200 ,39.76000 ,-107.3600,MesoWest ,SNOTEL ,BISON LAKE CO US SNOTEL , +BISM8,3,1501.100 ,47.68000 ,-114.0000,MesoWest ,SNOTEL ,BISSON CREEK MT US SNOTEL , +BLBM8,3,2484.100 ,44.51000 ,-111.1300,MesoWest ,SNOTEL ,BLACK BEAR MT US SNOTEL , +BFTU1,3,2865.100 ,38.68000 ,-111.6000,MesoWest ,SNOTEL ,BLACK FLAT-U.M. CK UT US SNOTEL , +BLKM8,3,2197.600 ,46.41000 ,-113.4300,MesoWest ,SNOTEL ,BLACK PINE MT US SNOTEL , +BLWW4,3,2980.900 ,44.38000 ,-109.7900,MesoWest ,SNOTEL ,BLACKWATER WY US SNOTEL , +BLAO3,3,1112.500 ,45.43000 ,-121.8600,MesoWest ,SNOTEL ,BLAZED ALDER OR US SNOTEL , +BPAW1,3,1301.500 ,47.35000 ,-120.6800,MesoWest ,SNOTEL ,BLEWETT PASS WA US SNOTEL , +BBSW4,3,2712.700 ,42.96000 ,-110.6100,MesoWest ,SNOTEL ,BLIND BULL SUM WY US SNOTEL , +BLPS2,3,2100.100 ,44.11000 ,-103.9800,MesoWest ,SNOTEL ,BLIND PARK SD US SNOTEL , +BLOM8,3,2301.200 ,45.17000 ,-113.5000,MesoWest ,SNOTEL ,BLOODY DICK MT US SNOTEL , +BLAC1,3,2438.400 ,38.61000 ,-119.9200,MesoWest ,SNOTEL ,BLUE LAKES CA US SNOTEL , +BLPO3,3,1798.300 ,44.25000 ,-118.5200,MesoWest ,SNOTEL ,BLUE MOUNTAIN SPRING OR US SNOTEL , +BOGI1,3,1932.400 ,43.76000 ,-116.1000,MesoWest ,SNOTEL ,BOGUS BASIN ID US SNOTEL , +TEM15,3,351.1000 ,64.75000 ,-148.3000,MesoWest ,SNOTEL ,BONANZA CREEK AK US SNOTEL , +BSDW4,3,2849.900 ,44.68000 ,-107.5800,MesoWest ,SNOTEL ,BONE SPRINGS DIV WY US SNOTEL , +BTRI1,3,2286.000 ,42.16000 ,-114.1900,MesoWest ,SNOTEL ,BOSTETTER R.S. ID US SNOTEL , +BOMM8,3,2423.200 ,46.56000 ,-111.2900,MesoWest ,SNOTEL ,BOULDER MOUNTAIN MT US SNOTEL , +BORO3,3,1767.800 ,44.83000 ,-118.1900,MesoWest ,SNOTEL ,BOURNE OR US SNOTEL , +BMSO3,3,1396.000 ,45.36000 ,-118.4700,MesoWest ,SNOTEL ,BOWMAN SPRINGS OR US SNOTEL , +BOXM8,3,2042.200 ,45.27000 ,-110.2500,MesoWest ,SNOTEL ,BOX CANYON MT US SNOTEL , +BXCU1,3,2987.000 ,38.51000 ,-112.0200,MesoWest ,SNOTEL ,BOX CREEK UT US SNOTEL , +BZMM8,3,1455.100 ,45.67000 ,-111.1500,MesoWest ,SNOTEL ,BOZEMAN EXPL FARM MT US SNOTEL , +BRCM8,3,2231.100 ,45.89000 ,-110.9400,MesoWest ,SNOTEL ,BRACKETT CREEK MT US SNOTEL , +BRIU1,3,2667.000 ,40.60000 ,-111.5800,MesoWest ,SNOTEL ,BRIGHTON UT US SNOTEL , +BRSN2,3,2736.800 ,36.31580 ,-115.6954,MesoWest ,SNOTEL ,BRISTLECONE TRAIL NV US SNOTEL , +BKLW4,3,3115.100 ,41.36000 ,-106.2300,MesoWest ,SNOTEL ,BROOKLYN LAKE WY US SNOTEL , +BNDU1,3,3230.900 ,40.58000 ,-110.5900,MesoWest ,SNOTEL ,BROWN DUCK UT US SNOTEL , +BRMC2,3,3230.900 ,39.09000 ,-106.5400,MesoWest ,SNOTEL ,BRUMLEY CO US SNOTEL , +BRRI1,3,1920.200 ,45.04000 ,-116.1300,MesoWest ,SNOTEL ,BRUNDAGE RESERVOIR ID US SNOTEL , +BUFU1,3,2987.000 ,39.13000 ,-111.4400,MesoWest ,SNOTEL ,BUCK FLAT UT US SNOTEL , +BKSA3,3,2255.500 ,34.12000 ,-109.8500,MesoWest ,SNOTEL ,BUCK SPRING AZ US SNOTEL , +BUCC2,3,3398.500 ,39.30000 ,-106.1100,MesoWest ,SNOTEL ,BUCKSKIN JOE CO US SNOTEL , +BKLN2,3,2042.200 ,41.75000 ,-117.5300,MesoWest ,SNOTEL ,BUCKSKIN LOWER NV US SNOTEL , +BUFC2,3,2816.400 ,40.23000 ,-106.6000,MesoWest ,SNOTEL ,BUFFALO PARK CO US SNOTEL , +BULU1,3,2423.200 ,41.68000 ,-111.4200,MesoWest ,SNOTEL ,BUG LAKE UT US SNOTEL , +BMPW1,3,1402.100 ,46.81000 ,-121.3300,MesoWest ,SNOTEL ,BUMPING RIDGE WA US SNOTEL , +BGMW1,3,1524.000 ,48.69000 ,-117.1800,MesoWest ,SNOTEL ,BUNCHGRASS MDW WA US SNOTEL , +BRJW4,3,2401.800 ,44.79000 ,-107.5300,MesoWest ,SNOTEL ,BURGESS JUNCTION WY US SNOTEL , +BSKC1,3,2480.800 ,38.72000 ,-119.8900,MesoWest ,SNOTEL ,BURNSIDE LAKE CA US SNOTEL , +BSCK1,3,2481.100 ,38.72000 ,-119.8800,MesoWest ,SNOTEL ,BURNSIDE LAKE CA US SNOTEL , +BUSW1,3,1280.200 ,47.04000 ,-121.9400,MesoWest ,SNOTEL ,BURNT MOUNTAIN WA US SNOTEL , +BMTM8,3,1792.200 ,45.24000 ,-109.4600,MesoWest ,SNOTEL ,BURNT MTN MT US SNOTEL , +BURC2,3,2865.100 ,39.88000 ,-107.6000,MesoWest ,SNOTEL ,BURRO MOUNTAIN CO US SNOTEL , +BRCW4,3,2667.000 ,43.70000 ,-109.6700,MesoWest ,SNOTEL ,BURROUGHS CREEK WY US SNOTEL , +BUTC2,3,3096.800 ,38.89000 ,-106.9500,MesoWest ,SNOTEL ,BUTTE CO US SNOTEL , +CLVM8,3,1959.900 ,45.88000 ,-113.3300,MesoWest ,SNOTEL ,CALVERT CREEK MT US SNOTEL , +CCDI1,3,1740.400 ,43.27000 ,-115.3500,MesoWest ,SNOTEL ,CAMAS CREEK DIVIDE ID US SNOTEL , +CJSU1,3,2621.300 ,37.81000 ,-109.4900,MesoWest ,SNOTEL ,CAMP JACKSON UT US SNOTEL , +CANW4,3,2465.800 ,44.72000 ,-110.5100,MesoWest ,SNOTEL ,CANYON WY US SNOTEL , +TEM16,3,274.0000 ,65.15000 ,-147.5500,MesoWest ,SNOTEL ,CARIBOU SNOW PILLOW AK US SNOTEL , +CRRM8,3,2743.200 ,44.96000 ,-111.2900,MesoWest ,SNOTEL ,CARROT BASIN MT US SNOTEL , +CXSC1,3,2590.800 ,38.69000 ,-119.9900,MesoWest ,SNOTEL ,CARSON PASS CA US SNOTEL , +CSCC2,3,2706.600 ,37.65000 ,-107.8100,MesoWest ,SNOTEL ,CASCADE CO US SNOTEL , +CADC2,3,2718.800 ,37.66000 ,-107.8000,MesoWest ,SNOTEL ,CASCADE #2 CO US SNOTEL , +CAMU1,3,2367.700 ,40.28000 ,-111.6100,MesoWest ,SNOTEL ,CASCADE MOUNTAIN UT US SNOTEL , +CSTO3,3,1487.400 ,43.59000 ,-122.0600,MesoWest ,SNOTEL ,CASCADE SUMMIT OR US SNOTEL , +CSPW4,3,2392.700 ,42.73000 ,-106.3200,MesoWest ,SNOTEL ,CASPER MTN. WY US SNOTEL , +CVYU1,3,2920.000 ,37.66000 ,-112.7400,MesoWest ,SNOTEL ,CASTLE VALLEY UT US SNOTEL , +CDRC1,3,2164.100 ,41.58000 ,-120.3000,MesoWest ,SNOTEL ,CEDAR PASS CA US SNOTEL , +CHCU1,3,2773.700 ,40.85000 ,-111.0500,MesoWest ,SNOTEL ,CHALK CREEK #1 UT US SNOTEL , +CCKU1,3,2499.400 ,40.89000 ,-111.0700,MesoWest ,SNOTEL ,CHALK CREEK #2 UT US SNOTEL , +CHAN5,3,2560.300 ,36.96000 ,-106.6600,MesoWest ,SNOTEL ,CHAMITA NM US SNOTEL , +CHUO3,3,1450.900 ,43.23000 ,-121.8100,MesoWest ,SNOTEL ,CHEMULT ALTERNATE OR US SNOTEL , +CWHU1,3,3139.400 ,40.77000 ,-110.0100,MesoWest ,SNOTEL ,CHEPETA UT US SNOTEL , +LSHI1,3,1962.900 ,43.77000 ,-114.4200,MesoWest ,SNOTEL ,CHOCOLATE GULCH ID US SNOTEL , +CHRW4,3,3041.900 ,42.58000 ,-108.9200,MesoWest ,SNOTEL ,CHRISTINA LAKE WY US SNOTEL , +CINW4,3,2953.500 ,41.24000 ,-106.2300,MesoWest ,SNOTEL ,CINNABAR PARK WY US SNOTEL , +CLLO3,3,1036.300 ,45.10000 ,-121.7500,MesoWest ,SNOTEL ,CLACKAMAS LAKE OR US SNOTEL , +CSPU1,3,3048.000 ,37.97000 ,-111.8300,MesoWest ,SNOTEL ,CLAYTON SPRINGS UT US SNOTEL , +CLCU1,3,2804.200 ,39.87000 ,-111.2800,MesoWest ,SNOTEL ,CLEAR CREEK #1 UT US SNOTEL , +CRKU1,3,2529.800 ,39.89000 ,-111.2500,MesoWest ,SNOTEL ,CLEAR CREEK #2 UT US SNOTEL , +CLKO3,3,1066.800 ,45.19000 ,-121.6900,MesoWest ,SNOTEL ,CLEAR LAKE OR US SNOTEL , +CPKW4,3,3005.300 ,44.40000 ,-107.0600,MesoWest ,SNOTEL ,CLOUD PEAK RESERVOIR WY US SNOTEL , +CMDM8,3,2682.200 ,45.02000 ,-111.8500,MesoWest ,SNOTEL ,CLOVER MEADOW MT US SNOTEL , +CZSC2,3,3054.100 ,38.16000 ,-106.6000,MesoWest ,SNOTEL ,COCHETOPA PASS CO US SNOTEL , +COSW4,3,2935.200 ,43.28000 ,-109.4500,MesoWest ,SNOTEL ,COLD SPRINGS WY US SNOTEL , +CSCO3,3,1859.300 ,42.53000 ,-122.1800,MesoWest ,SNOTEL ,COLD SPRINGS CAMP OR US SNOTEL , +COFA2,3,317.0000 ,67.25000 ,-150.1800,MesoWest ,SNOTEL ,COLDFOOT AK US SNOTEL , +CLCW4,3,1801.400 ,44.49000 ,-104.4100,MesoWest ,SNOTEL ,COLE CANYON WY US SNOTEL , +CLCM8,3,2392.700 ,45.19000 ,-109.3500,MesoWest ,SNOTEL ,COLE CREEK MT US SNOTEL , +COLC2,3,2792.000 ,40.39000 ,-106.6000,MesoWest ,SNOTEL ,COLUMBINE CO US SNOTEL , +CPSC2,3,2865.100 ,38.42000 ,-108.3800,MesoWest ,SNOTEL ,COLUMBINE PASS CO US SNOTEL , +CMBC2,3,3287.300 ,37.44000 ,-108.0200,MesoWest ,SNOTEL ,COLUMBUS BASIN CO US SNOTEL , +CMBM8,3,1706.900 ,46.47000 ,-113.3900,MesoWest ,SNOTEL ,COMBINATION MT US SNOTEL , +COLI1,3,1914.100 ,46.76000 ,-115.3000,MesoWest ,SNOTEL ,COOL CREEK ID US SNOTEL , +CORA2,3,365.8000 ,60.39000 ,-149.6900,MesoWest ,SNOTEL ,COOPER LAKE AK US SNOTEL , +COPC2,3,2621.300 ,40.21000 ,-105.5700,MesoWest ,SNOTEL ,COPELAND LAKE CO US SNOTEL , +COPM8,3,1585.000 ,47.06000 ,-112.6000,MesoWest ,SNOTEL ,COPPER BOTTOM MT US SNOTEL , +CPCM8,3,2118.400 ,47.08000 ,-112.7300,MesoWest ,SNOTEL ,COPPER CAMP MT US SNOTEL , +CPMC2,3,3200.400 ,39.49000 ,-106.1700,MesoWest ,SNOTEL ,COPPER MOUNTAIN CO US SNOTEL , +CNDA3,3,2560.300 ,33.80000 ,-109.1500,MesoWest ,SNOTEL ,CORONADO TRAIL AZ US SNOTEL , +COLN2,3,2590.800 ,40.28000 ,-115.5300,MesoWest ,SNOTEL ,CORRAL CANYON NV US SNOTEL , +COPW1,3,1828.800 ,47.02000 ,-121.4700,MesoWest ,SNOTEL ,CORRAL PASS WA US SNOTEL , +CLWW4,3,2316.500 ,42.65000 ,-110.8100,MesoWest ,SNOTEL ,COTTONWOOD CREEK WY US SNOTEL , +CUMW1,3,975.4000 ,47.28000 ,-121.6700,MesoWest ,SNOTEL ,COUGAR MOUNTAIN WA US SNOTEL , +COUW4,3,2139.700 ,44.17000 ,-110.5700,MesoWest ,SNOTEL ,COULTER CREEK WY US SNOTEL , +COLO3,3,1463.000 ,45.19000 ,-118.5500,MesoWest ,SNOTEL ,COUNTY LINE OR US SNOTEL , +COZI1,3,1639.800 ,44.29000 ,-115.6600,MesoWest ,SNOTEL ,COZY COVE ID US SNOTEL , +CRBI1,3,2090.900 ,44.44000 ,-111.9900,MesoWest ,SNOTEL ,CRAB CREEK ID US SNOTEL , +CRAI1,3,1816.600 ,46.56000 ,-115.2900,MesoWest ,SNOTEL ,CRATER MEADOWS ID US SNOTEL , +CZFO3,3,1859.300 ,42.64000 ,-120.9500,MesoWest ,SNOTEL ,CRAZYMAN FLAT OR US SNOTEL , +CRSC2,3,2773.700 ,40.17000 ,-107.0600,MesoWest ,SNOTEL ,CROSHO CO US SNOTEL , +CRWW4,3,2539.000 ,41.23000 ,-105.3800,MesoWest ,SNOTEL ,CROW CREEK WY US SNOTEL , +CRWC1,3,1554.500 ,41.89000 ,-120.7500,MesoWest ,SNOTEL ,CROWDER FLAT CA US SNOTEL , +20H02,3,1553.900 ,41.88000 ,-120.7500,MesoWest ,SNOTEL ,CROWDER FLAT CA US SNOTEL , +CRYM8,3,1844.000 ,46.79000 ,-109.5100,MesoWest ,SNOTEL ,CRYSTAL LAKE MT US SNOTEL , +CSSC1,3,2103.100 ,39.33000 ,-120.3700,MesoWest ,SNOTEL ,CSS LAB CA US SNOTEL , +CULC2,3,3200.400 ,37.21000 ,-105.2000,MesoWest ,SNOTEL ,CULEBRA #2 CO US SNOTEL , +CUMC2,3,3054.100 ,37.02000 ,-106.4500,MesoWest ,SNOTEL ,CUMBRES TRESTLE CO US SNOTEL , +CUCU1,3,2438.400 ,40.36000 ,-111.0900,MesoWest ,SNOTEL ,CURRANT CREEK UT US SNOTEL , +DAZM8,3,2316.500 ,46.67000 ,-110.3300,MesoWest ,SNOTEL ,DAISY PEAK MT US SNOTEL , +DALM8,3,1761.700 ,46.18000 ,-113.8500,MesoWest ,SNOTEL ,DALY CREEK MT US SNOTEL , +DALO3,3,1097.300 ,44.52000 ,-122.0900,MesoWest ,SNOTEL ,DALY LAKE OR US SNOTEL , +DSTU1,3,2438.400 ,40.29000 ,-111.2600,MesoWest ,SNOTEL ,DANIELS-STRAWBERRY UT US SNOTEL , +DHLM8,3,2651.800 ,45.17000 ,-113.5800,MesoWest ,SNOTEL ,DARKHORSE LAKE MT US SNOTEL , +DDMM8,3,1966.000 ,46.79000 ,-110.6800,MesoWest ,SNOTEL ,DEADMAN CREEK MT US SNOTEL , +DDMC2,3,3115.100 ,40.81000 ,-105.7700,MesoWest ,SNOTEL ,DEADMAN HILL CO US SNOTEL , +DDSI1,3,2090.900 ,44.54000 ,-115.5600,MesoWest ,SNOTEL ,DEADWOOD SUMMIT ID US SNOTEL , +DPKW4,3,2956.600 ,42.59000 ,-108.9000,MesoWest ,SNOTEL ,DEER PARK WY US SNOTEL , +DERO3,3,1728.200 ,44.45000 ,-119.9300,MesoWest ,SNOTEL ,DERR. OR US SNOTEL , +DPKU1,3,2819.400 ,40.47000 ,-112.6200,MesoWest ,SNOTEL ,DESERET PEAK UT US SNOTEL , +DIAO3,3,1620.000 ,43.19000 ,-122.1400,MesoWest ,SNOTEL ,DIAMOND LAKE OR US SNOTEL , +DPKN2,3,2438.400 ,39.56000 ,-115.8400,MesoWest ,SNOTEL ,DIAMOND PEAK NV US SNOTEL , +DCPU1,3,2804.200 ,39.05000 ,-111.4700,MesoWest ,SNOTEL ,DILL'S CAMP UT US SNOTEL , +DSPN2,3,1981.200 ,41.97000 ,-118.1900,MesoWest ,SNOTEL ,DISASTER PEAK NV US SNOTEL , +DMLC1,3,2133.600 ,41.99000 ,-120.1800,MesoWest ,SNOTEL ,DISMAL SWAMP CA US SNOTEL , +DIVM8,3,2377.400 ,44.79000 ,-112.0600,MesoWest ,SNOTEL ,DIVIDE MT US SNOTEL , +DVDW4,3,2700.500 ,41.30000 ,-107.1500,MesoWest ,SNOTEL ,DIVIDE PEAK WY US SNOTEL , +DHDI1,3,2566.400 ,43.60000 ,-114.6700,MesoWest ,SNOTEL ,DOLLARHIDE SUMMIT ID US SNOTEL , +DMLW4,3,2706.600 ,44.57000 ,-107.3000,MesoWest ,SNOTEL ,DOME LAKE WY US SNOTEL , +DRSU1,3,2987.000 ,38.21000 ,-111.4800,MesoWest ,SNOTEL ,DONKEY RESERVOIR UT US SNOTEL , +DRBN2,3,2468.900 ,40.89000 ,-115.2000,MesoWest ,SNOTEL ,DORSEY BASIN NV US SNOTEL , +DRCN2,3,2194.600 ,41.66000 ,-115.3200,MesoWest ,SNOTEL ,DRAW CREEK NV US SNOTEL , +DBPU1,3,2545.100 ,41.41000 ,-111.5400,MesoWest ,SNOTEL ,DRY BREAD POND UT US SNOTEL , +DRFU1,3,2182.400 ,40.57000 ,-112.1700,MesoWest ,SNOTEL ,DRY FORK UT US SNOTEL , +DRLC2,3,2560.300 ,40.53000 ,-106.7800,MesoWest ,SNOTEL ,DRY LAKE CO US SNOTEL , +DGSW1,3,1249.700 ,47.87000 ,-123.0800,MesoWest ,SNOTEL ,DUNGENESS WA US SNOTEL , +DPYM8,3,1752.600 ,48.06000 ,-112.7600,MesoWest ,SNOTEL ,DUPUYER CREEK MT US SNOTEL , +EAGA2,3,1112.500 ,65.49000 ,-145.4100,MesoWest ,SNOTEL ,EAGLE SUMMIT AK US SNOTEL , +EGHM8,3,3039.200 ,45.22000 ,-111.1200,MesoWest ,SNOTEL ,EAGLEHEAD MT US SNOTEL , +EBMM8,3,1930.900 ,45.30000 ,-110.0667,MesoWest ,SNOTEL ,EAST BOULDER MINE MT US SNOTEL , +ERDW4,3,2417.100 ,43.13000 ,-110.2000,MesoWest ,SNOTEL ,EAST RIM DIVIDE WY US SNOTEL , +EWCU1,3,2514.600 ,39.31000 ,-109.5300,MesoWest ,SNOTEL ,EAST WILLOW CREEK UT US SNOTEL , +EBTC1,3,2651.800 ,38.55000 ,-119.8000,MesoWest ,SNOTEL ,EBBETTS PASS CA US SNOTEL , +ECLC2,3,3230.900 ,39.66000 ,-105.5900,MesoWest ,SNOTEL ,ECHO LAKE CO US SNOTEL , +ECOC1,3,2377.400 ,38.85000 ,-120.0800,MesoWest ,SNOTEL ,ECHO PEAK CA US SNOTEL , +EIMO3,3,1645.900 ,44.87000 ,-118.1100,MesoWest ,SNOTEL ,EILERTSON MEADOWS OR US SNOTEL , +EDSC2,3,3109.000 ,37.79000 ,-108.0200,MesoWest ,SNOTEL ,EL DIENTE PEAK CO US SNOTEL , +ELSW1,3,975.4000 ,48.69000 ,-121.9100,MesoWest ,SNOTEL ,ELBOW LAKE WA US SNOTEL , +ELBI1,3,1734.300 ,46.84000 ,-116.1200,MesoWest ,SNOTEL ,ELK BUTTE ID US SNOTEL , +ELCN5,3,2502.400 ,35.70000 ,-105.8100,MesoWest ,SNOTEL ,ELK CABIN NM US SNOTEL , +WHSM8,3,2316.500 ,46.43333 ,-110.7000,MesoWest ,SNOTEL ,ELK PEAK MT US SNOTEL , +ELKC2,3,2651.800 ,40.85000 ,-106.9700,MesoWest ,SNOTEL ,ELK RIVER CO US SNOTEL , +EKPW4,3,2865.100 ,43.01000 ,-109.7600,MesoWest ,SNOTEL ,ELKHART PARK G.S. WY US SNOTEL , +EMCM8,3,1325.900 ,48.43000 ,-113.9400,MesoWest ,SNOTEL ,EMERY CREEK MT US SNOTEL , +ESPO3,3,1196.300 ,45.56000 ,-118.4500,MesoWest ,SNOTEL ,EMIGRANT SPRINGS OR US SNOTEL , +EMSI1,3,2252.500 ,42.36000 ,-111.5600,MesoWest ,SNOTEL ,EMIGRANT SUMMIT ID US SNOTEL , +TEM07,3,152.1000 ,47.51000 ,-123.5500,MesoWest ,SNOTEL ,EPA HOH CANOPY WA US SNOTEL , +TEM08,3,152.1000 ,47.51000 ,-123.5500,MesoWest ,SNOTEL ,EPA HOH OPEN WA US SNOTEL , +TEM10,3,91.10000 ,46.29000 ,-123.5800,MesoWest ,SNOTEL ,EPA QUINAULT CAN WA US SNOTEL , +TEM09,3,91.10000 ,46.29000 ,-123.5800,MesoWest ,SNOTEL ,EPA QUINAULT OPEN WA US SNOTEL , +TEM12,3,1524.000 ,47.94000 ,-123.4200,MesoWest ,SNOTEL ,EPA WATERHOLE CAN WA US SNOTEL , +TEM04,3,951.0000 ,44.15000 ,-121.2800,MesoWest ,SNOTEL ,EPA_JUNIPER OR US SNOTEL , +ESIA2,3,15.20000 ,60.80000 ,-148.1000,MesoWest ,SNOTEL ,ESTHER ISLAND AK US SNOTEL , +EVNW4,3,2804.200 ,44.65000 ,-109.7800,MesoWest ,SNOTEL ,EVENING STAR WY US SNOTEL , +TEM17,3,136.9000 ,64.85000 ,-147.8000,MesoWest ,SNOTEL ,FAIRBANKS F.O. AK US SNOTEL , +FLFC1,3,1920.200 ,38.93000 ,-120.0500,MesoWest ,SNOTEL ,FALLEN LEAF CA US SNOTEL , +FMNU1,3,2438.400 ,40.97000 ,-111.8100,MesoWest ,SNOTEL ,FARMINGTON UT US SNOTEL , +FARU1,3,2066.200 ,40.99000 ,-111.8200,MesoWest ,SNOTEL ,FARMINGTON LOWER UT US SNOTEL , +FRLU1,3,2926.100 ,38.77000 ,-111.6800,MesoWest ,SNOTEL ,FARNSWORTH LAKE UT US SNOTEL , +FWCN2,3,2133.600 ,41.82000 ,-116.1000,MesoWest ,SNOTEL ,FAWN CREEK NV US SNOTEL , +FCKO3,3,2407.900 ,42.71000 ,-118.6300,MesoWest ,SNOTEL ,FISH CREEK OR US SNOTEL , +FISW1,3,1027.500 ,47.54000 ,-121.0900,MesoWest ,SNOTEL ,FISH LAKE WA US SNOTEL , +FISO3,3,1421.900 ,42.38000 ,-122.3500,MesoWest ,SNOTEL ,FISH LK. OR US SNOTEL , +FSHM8,3,2773.700 ,45.06000 ,-109.9400,MesoWest ,SNOTEL ,FISHER CREEK MT US SNOTEL , +FPLU1,3,3328.400 ,40.72000 ,-110.4700,MesoWest ,SNOTEL ,FIVE POINTS LAKE UT US SNOTEL , +FTMM8,3,1920.200 ,48.80000 ,-113.8600,MesoWest ,SNOTEL ,FLATTOP MTN. MT US SNOTEL , +FDCC1,3,2447.200 ,38.68000 ,-119.9600,MesoWest ,SNOTEL ,FORESTDALE CREEK CA US SNOTEL , +FYNA2,3,131.1000 ,66.57000 ,-145.2500,MesoWest ,SNOTEL ,FORT YUKON AK US SNOTEL , +FRLO3,3,1828.800 ,42.44000 ,-122.2300,MesoWest ,SNOTEL ,FOURMILE LAKE OR US SNOTEL , +FBNI1,3,2490.200 ,42.05000 ,-111.6000,MesoWest ,SNOTEL ,FRANKLIN BASIN ID US SNOTEL , +FMTC2,3,3474.700 ,39.38000 ,-106.2000,MesoWest ,SNOTEL ,FREMONT PASS CO US SNOTEL , +FRDN5,3,2438.400 ,33.74000 ,-108.9500,MesoWest ,SNOTEL ,FRISCO DIVIDE NM US SNOTEL , +FRHM8,3,1975.100 ,46.44000 ,-112.1900,MesoWest ,SNOTEL ,FROHNER MEADOW MT US SNOTEL , +FRYA3,3,2194.600 ,35.07000 ,-111.8400,MesoWest ,SNOTEL ,FRY AZ US SNOTEL , +GLNI1,3,2267.700 ,43.88000 ,-114.6700,MesoWest ,SNOTEL ,GALENA ID US SNOTEL , +GLSI1,3,2676.100 ,43.87000 ,-114.7100,MesoWest ,SNOTEL ,GALENA SUMMIT ID US SNOTEL , +GLGN5,3,2987.000 ,36.19000 ,-105.5600,MesoWest ,SNOTEL ,GALLEGOS PEAK NM US SNOTEL , +GARU1,3,2545.100 ,37.40000 ,-113.4600,MesoWest ,SNOTEL ,GARDNER PEAK UT US SNOTEL , +GARI1,3,1999.500 ,43.61000 ,-113.9300,MesoWest ,SNOTEL ,GARFIELD R.S. ID US SNOTEL , +GVRM8,3,1295.400 ,48.98000 ,-115.8200,MesoWest ,SNOTEL ,GARVER CREEK MT US SNOTEL , +GSTO3,3,1478.300 ,42.21000 ,-121.1300,MesoWest ,SNOTEL ,GERBER RESERVOIR OR US SNOTEL , +GIVI1,3,2112.300 ,42.41000 ,-111.1700,MesoWest ,SNOTEL ,GIVEOUT ID US SNOTEL , +GLNC2,3,3493.000 ,38.88000 ,-105.0700,MesoWest ,SNOTEL ,GLEN COVE CO US SNOTEL , +GOBA2,3,618.7000 ,66.74000 ,-150.6700,MesoWest ,SNOTEL ,GOBBLERS KNOB AK US SNOTEL , +GLDO3,3,1627.600 ,44.76000 ,-118.3100,MesoWest ,SNOTEL ,GOLD CENTER OR US SNOTEL , +GOOU1,3,2414.000 ,38.80000 ,-111.6800,MesoWest ,SNOTEL ,GOOSEBERRY R.S. UT US SNOTEL , +GGSI1,3,1734.300 ,43.95000 ,-115.2700,MesoWest ,SNOTEL ,GRAHAM GUARD STA ID US SNOTEL , +GTHW4,3,2822.500 ,43.78000 ,-110.9300,MesoWest ,SNOTEL ,GRAND TARGHEE WY US SNOTEL , +GRVA2,3,335.3000 ,60.61000 ,-149.0600,MesoWest ,SNOTEL ,GRANDVIEW AK US SNOTEL , +GRCW4,3,2063.500 ,43.34000 ,-110.4300,MesoWest ,SNOTEL ,GRANITE CREEK WY US SNOTEL , +GCKA2,3,378.0000 ,63.94000 ,-145.4000,MesoWest ,SNOTEL ,GRANITE CRK AK US SNOTEL , +GRPN2,3,2377.400 ,41.67000 ,-117.5700,MesoWest ,SNOTEL ,GRANITE PEAK NV US SNOTEL , +GRSW4,3,2214.400 ,44.13000 ,-110.8300,MesoWest ,SNOTEL ,GRASSY LAKE WY US SNOTEL , +GRCM8,3,1310.600 ,48.91000 ,-114.7700,MesoWest ,SNOTEL ,GRAVE CREEK MT US SNOTEL , +GVSW4,3,2606.000 ,43.47000 ,-107.2400,MesoWest ,SNOTEL ,GRAVE SPRINGS WY US SNOTEL , +GYBC2,3,3541.800 ,37.47000 ,-106.5400,MesoWest ,SNOTEL ,GRAYBACK CO US SNOTEL , +GRLW1,3,1828.800 ,46.55000 ,-121.1700,MesoWest ,SNOTEL ,GREEN LAKE WA US SNOTEL , +GRMN2,3,2438.400 ,40.38000 ,-115.5300,MesoWest ,SNOTEL ,GREEN MOUNTAIN NV US SNOTEL , +GRPO3,3,975.4000 ,45.62000 ,-121.7000,MesoWest ,SNOTEL ,GREENPOINT OR US SNOTEL , +GZPC2,3,3383.300 ,39.65000 ,-105.8700,MesoWest ,SNOTEL ,GRIZZLY PEAK CO US SNOTEL , +GRVW4,3,2667.000 ,43.39000 ,-110.1300,MesoWest ,SNOTEL ,GROS VENTRE SUMMIT WY US SNOTEL , +GRCW1,3,1639.800 ,47.28000 ,-120.4900,MesoWest ,SNOTEL ,GROUSE CAMP WA US SNOTEL , +GCRA2,3,213.4000 ,60.26000 ,-149.3400,MesoWest ,SNOTEL ,GROUSE CREEK DIVIDE AK US SNOTEL , +GUNW4,3,2993.100 ,43.38000 ,-109.8800,MesoWest ,SNOTEL ,GUNSIGHT PASS WY US SNOTEL , +HGNC1,3,2438.400 ,38.85000 ,-119.9400,MesoWest ,SNOTEL ,HAGAN'S MEADOW CA US SNOTEL , +HMKW4,3,2389.600 ,42.15000 ,-110.6800,MesoWest ,SNOTEL ,HAMS FORK WY US SNOTEL , +HANM8,3,1534.700 ,48.31000 ,-114.8400,MesoWest ,SNOTEL ,HAND CREEK MT US SNOTEL , +HNMA3,3,2749.300 ,33.65000 ,-109.3100,MesoWest ,SNOTEL ,HANNAGAN MEADOWS AZ US SNOTEL , +HNSW4,3,2548.100 ,44.26000 ,-106.9800,MesoWest ,SNOTEL ,HANSEN SAWMILL WY US SNOTEL , +XHJA3,3,2325.600 ,34.75000 ,-111.4100,MesoWest ,SNOTEL ,HAPPY JACK AZ US SNOTEL , +HARU1,3,2209.800 ,40.87000 ,-111.7200,MesoWest ,SNOTEL ,HARDSCRABBLE UT US SNOTEL , +HRSU1,3,2377.400 ,37.72000 ,-112.5800,MesoWest ,SNOTEL ,HARRIS FLAT UT US SNOTEL , +HRPW1,3,1981.200 ,48.72000 ,-120.6600,MesoWest ,SNOTEL ,HARTS PASS WA US SNOTEL , +HAWM8,3,1966.000 ,48.97000 ,-115.9500,MesoWest ,SNOTEL ,HAWKINS LAKE MT US SNOTEL , +HFKU1,3,2773.700 ,40.80000 ,-110.8800,MesoWest ,SNOTEL ,HAYDEN FORK UT US SNOTEL , +HVNC1,3,2697.500 ,38.92000 ,-119.9200,MesoWest ,SNOTEL ,HEAVENLY VALLEY CA US SNOTEL , +HBEA3,3,2328.700 ,34.31000 ,-110.7500,MesoWest ,SNOTEL ,HEBER AZ US SNOTEL , +HEMI1,3,1770.900 ,46.48000 ,-115.6300,MesoWest ,SNOTEL ,HEMLOCK BUTTE ID US SNOTEL , +HEWU1,3,2895.600 ,40.95000 ,-110.4800,MesoWest ,SNOTEL ,HEWINTA UT US SNOTEL , +HPSU1,3,2773.700 ,40.91000 ,-109.9600,MesoWest ,SNOTEL ,HICKERSON PARK UT US SNOTEL , +HDLI1,3,1536.200 ,48.89000 ,-116.7600,MesoWest ,SNOTEL ,HIDDEN LAKE ID US SNOTEL , +HIRO3,3,1517.900 ,45.70000 ,-118.1100,MesoWest ,SNOTEL ,HIGH RIDGE OR US SNOTEL , +HLTI1,3,2438.400 ,44.02000 ,-113.4700,MesoWest ,SNOTEL ,HILTS CREEK ID US SNOTEL , +HBBW4,3,3078.500 ,42.87000 ,-109.0900,MesoWest ,SNOTEL ,HOBBS PARK WY US SNOTEL , +HOPO3,3,1450.900 ,44.42000 ,-121.8600,MesoWest ,SNOTEL ,HOGG PASS OR US SNOTEL , +HIMN2,3,2407.900 ,40.94000 ,-115.1000,MesoWest ,SNOTEL ,HOLE-IN-MOUNTAIN NV US SNOTEL , +HIRU1,3,2788.900 ,40.92000 ,-110.1900,MesoWest ,SNOTEL ,HOLE-IN-ROCK UT US SNOTEL , +HLMO3,3,1493.500 ,43.67000 ,-122.5700,MesoWest ,SNOTEL ,HOLLAND MEADOWS OR US SNOTEL , +HOOM8,3,1844.000 ,46.98000 ,-115.0300,MesoWest ,SNOTEL ,HOODOO BASIN MT US SNOTEL , +HOOC2,3,3474.700 ,39.36000 ,-106.0600,MesoWest ,SNOTEL ,HOOSIER PASS CO US SNOTEL , +HPWN5,3,3048.000 ,36.72000 ,-106.2600,MesoWest ,SNOTEL ,HOPEWELL NM US SNOTEL , +HORC1,3,2630.700 ,38.84000 ,-119.8900,MesoWest ,SNOTEL ,HORSE MEADOW CA US SNOTEL , +TEM13,3,2631.000 ,38.83000 ,-119.8800,MesoWest ,SNOTEL ,HORSE MEADOW CA US SNOTEL , +HRGU1,3,2487.200 ,41.31000 ,-111.4500,MesoWest ,SNOTEL ,HORSE RIDGE UT US SNOTEL , +HWCI1,3,2432.300 ,42.32000 ,-113.6200,MesoWest ,SNOTEL ,HOWELL CANYON ID US SNOTEL , +HZOW1,3,502.9000 ,48.98000 ,-121.0800,MesoWest ,SNOTEL ,HOZOMEEN CAMP WA US SNOTEL , +HKSW1,3,609.6000 ,47.07000 ,-121.5900,MesoWest ,SNOTEL ,HUCKLEBERRY CREEK WA US SNOTEL , +HUGI1,3,1295.400 ,47.53000 ,-115.7800,MesoWest ,SNOTEL ,HUMBOLDT GULCH ID US SNOTEL , +HUNC1,3,6.100000 ,33.72000 ,-118.9800,MesoWest ,SNOTEL ,HUNTINGTON BEACH CA US SNOTEL , +HYNI1,3,2267.700 ,43.71000 ,-114.1600,MesoWest ,SNOTEL ,HYNDMAN ID US SNOTEL , +IDRC2,3,2987.000 ,37.93000 ,-107.6800,MesoWest ,SNOTEL ,IDARADO CO US SNOTEL , +IKAA2,3,198.1000 ,68.05000 ,-163.0300,MesoWest ,SNOTEL ,IKALUKROK CREEK AK US SNOTEL , +TOOA2,3,929.6000 ,68.62000 ,-149.3000,MesoWest ,SNOTEL ,IMNAVIAT CREEK AK US SNOTEL , +ICPC1,3,2133.600 ,39.45000 ,-120.2900,MesoWest ,SNOTEL ,INDEPENDENCE CAMP CA US SNOTEL , +ICKC1,3,1981.200 ,39.49000 ,-120.2800,MesoWest ,SNOTEL ,INDEPENDENCE CREEK CA US SNOTEL , +ILKC1,3,2575.600 ,39.43000 ,-120.3100,MesoWest ,SNOTEL ,INDEPENDENCE LAKE CA US SNOTEL , +HATA2,3,1082.000 ,61.79000 ,-149.2800,MesoWest ,SNOTEL ,INDEPENDENCE MINE AK US SNOTEL , +IDPC2,3,3230.900 ,39.08000 ,-106.6100,MesoWest ,SNOTEL ,INDEPENDENCE PASS CO US SNOTEL , +ICYU1,3,2773.700 ,39.89000 ,-110.7500,MesoWest ,SNOTEL ,INDIAN CANYON UT US SNOTEL , +INCW4,3,2872.700 ,42.30000 ,-110.6800,MesoWest ,SNOTEL ,INDIAN CREEK WY US SNOTEL , +INPA2,3,716.3000 ,61.07000 ,-149.4900,MesoWest ,SNOTEL ,INDIAN PASS AK US SNOTEL , +BEDO3,3,1676.400 ,43.80000 ,-121.9500,MesoWest ,SNOTEL ,IRISH TAYLOR OR US SNOTEL , +ISPI1,3,1917.200 ,44.42000 ,-111.3900,MesoWest ,SNOTEL ,ISLAND PARK ID US SNOTEL , +IVHC2,3,3169.900 ,39.29000 ,-106.5500,MesoWest ,SNOTEL ,IVANHOE CO US SNOTEL , +JCUN2,3,2209.800 ,41.55000 ,-116.0100,MesoWest ,SNOTEL ,JACK CREEK UPPER NV US SNOTEL , +JAPN2,3,2566.400 ,41.53000 ,-116.0100,MesoWest ,SNOTEL ,JACKS PEAK NV US SNOTEL , +JKPI1,3,2154.900 ,44.05000 ,-115.4400,MesoWest ,SNOTEL ,JACKSON PEAK ID US SNOTEL , +JWGC2,3,3340.600 ,39.57000 ,-105.8000,MesoWest ,SNOTEL ,JACKWHACKER GULCH CO US SNOTEL , +JWRC2,3,3084.600 ,40.53000 ,-105.8900,MesoWest ,SNOTEL ,JOE WRIGHT CO US SNOTEL , +JOHA2,3,7.600000 ,64.56000 ,-164.2900,MesoWest ,SNOTEL ,JOHNSON'S CAMP AK US SNOTEL , +JNPC2,3,3169.900 ,39.76000 ,-105.9100,MesoWest ,SNOTEL ,JONES PASS CO US SNOTEL , +JOJO3,3,1066.800 ,44.39000 ,-122.1700,MesoWest ,SNOTEL ,JUMP OFF JOE OR US SNOTEL , +MRBW1,3,1018.000 ,46.15000 ,-122.1500,MesoWest ,SNOTEL ,JUNE LAKE WA US SNOTEL , +KCKA2,3,506.0000 ,59.73000 ,-150.6600,MesoWest ,SNOTEL ,KACHEMAK CREEK AK US SNOTEL , +KTSA2,3,472.4000 ,63.54000 ,-150.9900,MesoWest ,SNOTEL ,KANTISHNA AK US SNOTEL , +KLLW4,3,2493.300 ,42.27000 ,-110.8100,MesoWest ,SNOTEL ,KELLEY R.S. WY US SNOTEL , +KNPA2,3,91.40000 ,60.73000 ,-150.4800,MesoWest ,SNOTEL ,KENAI MOOSE PENS AK US SNOTEL , +KNDW4,3,2359.200 ,43.25000 ,-110.0200,MesoWest ,SNOTEL ,KENDALL R.S. WY US SNOTEL , +KLNC2,3,2926.100 ,39.32000 ,-106.6100,MesoWest ,SNOTEL ,KILN CO US SNOTEL , +KMNU1,3,2834.600 ,38.48000 ,-112.3900,MesoWest ,SNOTEL ,KIMBERLY MINE UT US SNOTEL , +KIMO3,3,1219.200 ,42.72000 ,-123.2000,MesoWest ,SNOTEL ,KING MOUNTAIN OR US SNOTEL , +KGCU1,3,2660.900 ,40.72000 ,-109.5400,MesoWest ,SNOTEL ,KING'S CABIN UT US SNOTEL , +KRWW4,3,2910.800 ,43.86000 ,-109.3200,MesoWest ,SNOTEL ,KIRWIN WY US SNOTEL , +KLBU1,3,2819.400 ,37.53000 ,-113.0500,MesoWest ,SNOTEL ,KOLOB UT US SNOTEL , +KRCM8,3,1447.800 ,47.43000 ,-113.7800,MesoWest ,SNOTEL ,KRAFT CREEK MT US SNOTEL , +LKCO3,3,1585.000 ,44.21000 ,-118.6400,MesoWest ,SNOTEL ,LAKE CREEK R.S. OR US SNOTEL , +LELC2,3,2956.600 ,39.94000 ,-105.5900,MesoWest ,SNOTEL ,LAKE ELDORA CO US SNOTEL , +LKIC2,3,3261.400 ,40.41000 ,-105.8200,MesoWest ,SNOTEL ,LAKE IRENE CO US SNOTEL , +LKFU1,3,3078.500 ,40.60000 ,-110.4300,MesoWest ,SNOTEL ,LAKEFORK #1 UT US SNOTEL , +LBNU1,3,3322.300 ,40.74000 ,-110.6200,MesoWest ,SNOTEL ,LAKEFORK BASIN UT US SNOTEL , +LVRM8,3,2255.500 ,44.59000 ,-111.8200,MesoWest ,SNOTEL ,LAKEVIEW RIDGE MT US SNOTEL , +LMCN2,3,1828.800 ,41.52000 ,-117.6300,MesoWest ,SNOTEL ,LAMANCE CREEK NV US SNOTEL , +LMLN2,3,2347.000 ,40.65000 ,-115.3800,MesoWest ,SNOTEL ,LAMOILLE #3 NV US SNOTEL , +LPPW4,3,2552.700 ,42.44000 ,-105.8600,MesoWest ,SNOTEL ,LAPRELE CREEK WY US SNOTEL , +LSMU1,3,3002.300 ,38.48000 ,-109.2700,MesoWest ,SNOTEL ,LASAL MOUNTAIN UT US SNOTEL , +LADN2,3,2042.200 ,41.78000 ,-116.0300,MesoWest ,SNOTEL ,LAUREL DRAW NV US SNOTEL , +LELC1,3,2865.100 ,38.28000 ,-119.6100,MesoWest ,SNOTEL ,LEAVITT LAKE CA US SNOTEL , +LVTC1,3,2194.600 ,38.30000 ,-119.5500,MesoWest ,SNOTEL ,LEAVITT MEADOWS CA US SNOTEL , +LCAN2,3,2629.200 ,36.30540 ,-115.6751,MesoWest ,SNOTEL ,LEE CANYON NV US SNOTEL , +LMHM8,3,2468.900 ,44.99000 ,-113.4400,MesoWest ,SNOTEL ,LEMHI RIDGE MT US SNOTEL , +LWSW4,3,2392.700 ,44.21000 ,-110.6700,MesoWest ,SNOTEL ,LEWIS LAKE DIVIDE WY US SNOTEL , +LWPN2,3,2255.500 ,40.36000 ,-116.8600,MesoWest ,SNOTEL ,LEWIS PEAK NV US SNOTEL , +LCKM8,3,2090.900 ,45.50000 ,-110.9700,MesoWest ,SNOTEL ,LICK CREEK MT US SNOTEL , +LIGU1,3,2503.900 ,41.36000 ,-111.4900,MesoWest ,SNOTEL ,LIGHTNING RIDGE UT US SNOTEL , +LLKU1,3,2758.400 ,40.86000 ,-110.8000,MesoWest ,SNOTEL ,LILY LAKE UT US SNOTEL , +LPDC2,3,3352.800 ,37.38000 ,-106.5500,MesoWest ,SNOTEL ,LILY POND CO US SNOTEL , +LTBU1,3,1996.400 ,41.41000 ,-111.8300,MesoWest ,SNOTEL ,LITTLE BEAR UT US SNOTEL , +LCHA2,3,609.6000 ,65.12000 ,-146.7300,MesoWest ,SNOTEL ,LITTLE CHENA RIDGE AK US SNOTEL , +LGCU1,3,1859.300 ,37.49000 ,-113.8500,MesoWest ,SNOTEL ,LITTLE GRASSY UT US SNOTEL , +LMDO3,3,1219.200 ,44.61000 ,-122.2300,MesoWest ,SNOTEL ,LITTLE MEADOWS OR US SNOTEL , +LITW4,3,2717.300 ,41.07000 ,-106.9400,MesoWest ,SNOTEL ,LITTLE SNAKE RIVER WY US SNOTEL , +LTWW4,3,2856.000 ,43.50000 ,-109.7500,MesoWest ,SNOTEL ,LITTLE WARM WY US SNOTEL , +LIZC2,3,3109.000 ,37.80000 ,-107.9200,MesoWest ,SNOTEL ,LIZARD HEAD PASS CO US SNOTEL , +LOBC1,3,2804.200 ,38.44000 ,-119.3700,MesoWest ,SNOTEL ,LOBDELL LAKE CA US SNOTEL , +LPSI1,3,1597.200 ,46.63000 ,-114.5800,MesoWest ,SNOTEL ,LOLO PASS ID US SNOTEL , +LNCC2,3,2926.100 ,37.89000 ,-108.2000,MesoWest ,SNOTEL ,LONE CONE CO US SNOTEL , +BSKM8,3,2706.600 ,45.27000 ,-111.4300,MesoWest ,SNOTEL ,LONE MOUNTAIN MT US SNOTEL , +LPSW1,3,1158.200 ,46.27000 ,-121.9600,MesoWest ,SNOTEL ,LONE PINE WA US SNOTEL , +LGFU1,3,2438.400 ,37.51000 ,-113.4000,MesoWest ,SNOTEL ,LONG FLAT UT US SNOTEL , +LLKA2,3,249.9000 ,58.19000 ,-133.8300,MesoWest ,SNOTEL ,LONG LAKE AK US SNOTEL , +LGVI1,3,1490.500 ,44.79000 ,-116.0900,MesoWest ,SNOTEL ,LONG VALLEY ID US SNOTEL , +LVJU1,3,2243.300 ,37.49000 ,-112.5100,MesoWest ,SNOTEL ,LONG VALLEY JCT UT US SNOTEL , +LKTI1,3,1566.700 ,47.46000 ,-115.7100,MesoWest ,SNOTEL ,LOOKOUT ID US SNOTEL , +LKTN5,3,2590.800 ,33.36000 ,-107.8300,MesoWest ,SNOTEL ,LOOKOUT MOUNTAIN NM US SNOTEL , +LOPU1,3,2499.400 ,40.84000 ,-111.7100,MesoWest ,SNOTEL ,LOOKOUT PEAK UT US SNOTEL , +LOPW4,3,2511.600 ,43.17000 ,-110.1400,MesoWest ,SNOTEL ,LOOMIS PARK WY US SNOTEL , +LSTW4,3,2462.800 ,43.52000 ,-107.2700,MesoWest ,SNOTEL ,LOST CREEK WY US SNOTEL , +LOTC2,3,2840.700 ,40.82000 ,-106.7500,MesoWest ,SNOTEL ,LOST DOG CO US SNOTEL , +LOHW1,3,1524.000 ,46.36000 ,-121.0800,MesoWest ,SNOTEL ,LOST HORSE WA US SNOTEL , +LSLI1,3,1862.300 ,47.07000 ,-115.9600,MesoWest ,SNOTEL ,LOST LAKE ID US SNOTEL , +LWDI1,3,2407.900 ,43.82000 ,-114.2600,MesoWest ,SNOTEL ,LOST-WOOD DIVIDE ID US SNOTEL , +LMSU1,3,2042.200 ,40.83000 ,-111.7600,MesoWest ,SNOTEL ,LOUIS MEADOW UT US SNOTEL , +LBAC2,3,3474.700 ,39.67000 ,-105.9000,MesoWest ,SNOTEL ,LOVELAND BASIN CO US SNOTEL , +LWTM8,3,2407.900 ,45.51000 ,-111.9200,MesoWest ,SNOTEL ,LOWER TWIN MT US SNOTEL , +LUBM8,3,1426.500 ,46.88000 ,-113.3200,MesoWest ,SNOTEL ,LUBRECHT FLUME MT US SNOTEL , +LUKO3,3,1539.200 ,45.27000 ,-118.8500,MesoWest ,SNOTEL ,LUCKY STRIKE OR US SNOTEL , +LYLW1,3,1798.300 ,48.19000 ,-120.9200,MesoWest ,SNOTEL ,LYMAN LAKE WA US SNOTEL , +LYNC2,3,2706.600 ,40.08000 ,-106.6700,MesoWest ,SNOTEL ,LYNX PASS CO US SNOTEL , +MDBO3,3,1600.200 ,45.11000 ,-119.5000,MesoWest ,SNOTEL ,MADISON BUTTE OR US SNOTEL , +MPLM8,3,2362.200 ,44.59000 ,-111.1200,MesoWest ,SNOTEL ,MADISON PLATEAU MT US SNOTEL , +MGMI1,3,2097.000 ,42.18000 ,-114.2900,MesoWest ,SNOTEL ,MAGIC MOUNTAIN ID US SNOTEL , +MCDU1,3,2682.200 ,39.68000 ,-111.3200,MesoWest ,SNOTEL ,MAMMOTH-COTTONWOOD UT US SNOTEL , +MNCC2,3,3048.000 ,37.43000 ,-108.1700,MesoWest ,SNOTEL ,MANCOS CO US SNOTEL , +MANM8,3,1493.500 ,48.80000 ,-113.6700,MesoWest ,SNOTEL ,MANY GLACIER MT US SNOTEL , +MRFO3,3,792.5000 ,44.59000 ,-121.9700,MesoWest ,SNOTEL ,MARION FORKS OR US SNOTEL , +MRLN2,3,2438.400 ,39.16000 ,-119.9000,MesoWest ,SNOTEL ,MARLETTE LAKE NV US SNOTEL , +MRQW4,3,2670.100 ,44.30000 ,-109.2400,MesoWest ,SNOTEL ,MARQUETTE WY US SNOTEL , +MRTW1,3,1085.100 ,48.76000 ,-121.7000,MesoWest ,SNOTEL ,MARTEN RIDGE WA US SNOTEL , +MVFA3,3,2804.200 ,33.92000 ,-109.4600,MesoWest ,SNOTEL ,MAVERICK FORK AZ US SNOTEL , +TEM26,3,1893.100 ,45.82000 ,-110.9000,MesoWest ,SNOTEL ,MAYNARD CREEK MT US SNOTEL , +MCPC2,3,2895.600 ,39.13000 ,-107.2900,MesoWest ,SNOTEL ,MC CLURE PASS CO US SNOTEL , +MCYC2,3,2889.500 ,39.60000 ,-106.5400,MesoWest ,SNOTEL ,MCCOY PARK CO US SNOTEL , +MKZO3,3,1463.000 ,44.21000 ,-121.8700,MesoWest ,SNOTEL ,MCKENZIE OR US SNOTEL , +MCKN5,3,2816.400 ,33.01000 ,-107.8700,MesoWest ,SNOTEL ,MCKNIGHT CABIN NM US SNOTEL , +TEM27,3,2816.100 ,33.00000 ,-107.8700,MesoWest ,SNOTEL ,MCKNIGHT CABIN NM US SNOTEL , +MCNA2,3,402.3000 ,59.75000 ,-151.2600,MesoWest ,SNOTEL ,MCNEIL CANYON AK US SNOTEL , +MDLI1,3,2788.900 ,44.44000 ,-113.3200,MesoWest ,SNOTEL ,MEADOW LAKE ID US SNOTEL , +MPSW1,3,1066.800 ,47.28000 ,-121.4700,MesoWest ,SNOTEL ,MEADOWS PASS WA US SNOTEL , +MDPC2,3,2932.200 ,37.85000 ,-105.4400,MesoWest ,SNOTEL ,MEDANO PASS CO US SNOTEL , +MVYU1,3,2667.000 ,38.30000 ,-112.4400,MesoWest ,SNOTEL ,MERCHANT VALLEY UT US SNOTEL , +MESC2,3,3048.000 ,39.06000 ,-108.0600,MesoWest ,SNOTEL ,MESA LAKES CO US SNOTEL , +MNOW1,3,1517.900 ,48.82000 ,-121.9300,MesoWest ,SNOTEL ,MF NOOKSACK WA US SNOTEL , +MCKI1,3,1447.800 ,47.15000 ,-116.2700,MesoWest ,SNOTEL ,MICA CREEK ID US SNOTEL , +MIHC2,3,3230.900 ,39.43000 ,-105.9200,MesoWest ,SNOTEL ,MICHIGAN CREEK CO US SNOTEL , +MDLC2,3,3429.000 ,37.62000 ,-107.0300,MesoWest ,SNOTEL ,MIDDLE CREEK CO US SNOTEL , +TEM18,3,701.0000 ,59.78000 ,-150.7500,MesoWest ,SNOTEL ,MIDDLE FORK BRADLEY AK US SNOTEL , +MFKC2,3,2743.200 ,39.80000 ,-106.0300,MesoWest ,SNOTEL ,MIDDLE FORK CAMP CO US SNOTEL , +MDDW4,3,2365.300 ,43.63000 ,-107.1800,MesoWest ,SNOTEL ,MIDDLE POWDER WY US SNOTEL , +MDVU1,3,2987.000 ,37.57000 ,-112.8400,MesoWest ,SNOTEL ,MIDWAY VALLEY UT US SNOTEL , +MLKO3,3,1706.900 ,45.98000 ,-117.9500,MesoWest ,SNOTEL ,MILK SHAKES OR US SNOTEL , +MLKI1,3,2682.200 ,44.47000 ,-114.4900,MesoWest ,SNOTEL ,MILL CREEK SUMMIT ID US SNOTEL , +MLDU1,3,2731.000 ,40.66000 ,-111.6400,MesoWest ,SNOTEL ,MILL-D NORTH UT US SNOTEL , +MWDO3,3,137.2000 ,45.24000 ,-123.2600,MesoWest ,SNOTEL ,MILLER WOODS OR US SNOTEL , +MINC2,3,3060.200 ,37.85000 ,-107.7300,MesoWest ,SNOTEL ,MINERAL CREEK CO US SNOTEL , +MIRW1,3,1889.800 ,48.20000 ,-120.9600,MesoWest ,SNOTEL ,MINERS RIDGE WA US SNOTEL , +MFKU1,3,2438.400 ,40.49000 ,-112.6100,MesoWest ,SNOTEL ,MINING FORK UT US SNOTEL , +TEM19,3,274.0000 ,64.80000 ,-141.2000,MesoWest ,SNOTEL ,MISSION CREEK AK US SNOTEL , +MLSC2,3,3200.400 ,37.75000 ,-107.6900,MesoWest ,SNOTEL ,MOLAS LAKE CO US SNOTEL , +TEM20,3,826.0000 ,63.30000 ,-147.6500,MesoWest ,SNOTEL ,MONAHAN FLAT AK US SNOTEL , +MNPC1,3,2545.100 ,38.67000 ,-119.6100,MesoWest ,SNOTEL ,MONITOR PASS CA US SNOTEL , +MCRU1,3,2731.000 ,41.47000 ,-111.5000,MesoWest ,SNOTEL ,MONTE CRISTO UT US SNOTEL , +MNCA2,3,563.9000 ,65.08000 ,-145.8700,MesoWest ,SNOTEL ,MONUMENT CREEK AK US SNOTEL , +MNPM8,3,2697.500 ,45.22000 ,-110.2400,MesoWest ,SNOTEL ,MONUMENT PEAK MT US SNOTEL , +MNSI1,3,2267.700 ,44.41000 ,-113.4000,MesoWest ,SNOTEL ,MOONSHINE ID US SNOTEL , +MOKI1,3,1889.800 ,45.67000 ,-113.9500,MesoWest ,SNOTEL ,MOOSE CREEK ID US SNOTEL , +MORA2,3,640.1000 ,61.38000 ,-149.0000,MesoWest ,SNOTEL ,MORAINE AK US SNOTEL , +MRKI1,3,1859.300 ,43.93000 ,-115.6700,MesoWest ,SNOTEL ,MORES CREEK SUMMIT ID US SNOTEL , +MRGI1,3,2316.500 ,44.84000 ,-114.2700,MesoWest ,SNOTEL ,MORGAN CREEK ID US SNOTEL , +MRMA3,3,2286.000 ,34.94000 ,-111.5200,MesoWest ,SNOTEL ,MORMON MOUNTAIN AZ US SNOTEL , +MRSW1,3,1645.900 ,46.91000 ,-121.4800,MesoWest ,SNOTEL ,MORSE LAKE WA US SNOTEL , +MMTU1,3,2895.600 ,40.61000 ,-109.8900,MesoWest ,SNOTEL ,MOSBY MTN. UT US SNOTEL , +MSCI1,3,1432.600 ,46.81000 ,-116.8500,MesoWest ,SNOTEL ,MOSCOW MOUNTAIN ID US SNOTEL , +MMSW1,3,1615.400 ,48.36000 ,-119.0800,MesoWest ,SNOTEL ,MOSES MTN WA US SNOTEL , +MOQI1,3,1585.000 ,48.06000 ,-116.2300,MesoWest ,SNOTEL ,MOSQUITO RIDGE ID US SNOTEL , +MSPM8,3,2066.500 ,47.68000 ,-113.9600,MesoWest ,SNOTEL ,MOSS PEAK MT US SNOTEL , +MOSO3,3,1783.100 ,45.27000 ,-117.6900,MesoWest ,SNOTEL ,MOSS SPRINGS OR US SNOTEL , +MTCW1,3,1234.400 ,47.76000 ,-123.0300,MesoWest ,SNOTEL ,MOUNT CRAG WA US SNOTEL , +MGSW1,3,914.4000 ,47.36000 ,-121.5700,MesoWest ,SNOTEL ,MOUNT GARDNER WA US SNOTEL , +MTKM8,3,1950.700 ,47.92000 ,-112.8200,MesoWest ,SNOTEL ,MOUNT LOCKHART MT US SNOTEL , +MTMI1,3,1938.500 ,45.70000 ,-115.2300,MesoWest ,SNOTEL ,MOUNTAIN MEADOWS ID US SNOTEL , +MHSW1,3,960.1000 ,46.93000 ,-121.9500,MesoWest ,SNOTEL ,MOWICH WA US SNOTEL , +MTHO3,3,1645.900 ,45.32000 ,-121.7200,MesoWest ,SNOTEL ,MT HOOD TEST SITE OR US SNOTEL , +MRSN2,3,2697.500 ,39.32000 ,-119.8900,MesoWest ,SNOTEL ,MT ROSE SKI AREA NV US SNOTEL , +TEM21,3,469.1000 ,60.97000 ,-149.0800,MesoWest ,SNOTEL ,MT. ALYESKA AK US SNOTEL , +EYKA2,3,428.2000 ,60.55000 ,-145.7500,MesoWest ,SNOTEL ,MT. EYAK AK US SNOTEL , +MHWO3,3,2411.000 ,45.27000 ,-117.1700,MesoWest ,SNOTEL ,MT. HOWARD OR US SNOTEL , +MTRA2,3,853.4000 ,65.25000 ,-146.1500,MesoWest ,SNOTEL ,MT. RYAN AK US SNOTEL , +MDFI1,3,1746.500 ,42.60000 ,-116.5600,MesoWest ,SNOTEL ,MUD FLAT ID US SNOTEL , +MUDO3,3,1158.200 ,45.25000 ,-121.7400,MesoWest ,SNOTEL ,MUD RIDGE OR US SNOTEL , +MULM8,3,2529.800 ,45.41000 ,-112.9600,MesoWest ,SNOTEL ,MULE CREEK MT US SNOTEL , +MSOA2,3,944.9000 ,64.85000 ,-146.2100,MesoWest ,SNOTEL ,MUNSON RIDGE AK US SNOTEL , +MYRI1,3,1072.900 ,48.72000 ,-116.4600,MesoWest ,SNOTEL ,MYRTLE CREEK ID US SNOTEL , +NFEM8,3,1905.000 ,46.87000 ,-113.2800,MesoWest ,SNOTEL ,N FK ELK CREEK MT US SNOTEL , +NSSC2,3,2651.800 ,39.30000 ,-106.6100,MesoWest ,SNOTEL ,NAST LAKE CO US SNOTEL , +NEVM8,3,1975.100 ,46.83000 ,-112.5200,MesoWest ,SNOTEL ,NEVADA CREEK MT US SNOTEL , +NVRM8,3,2139.700 ,46.84000 ,-112.5100,MesoWest ,SNOTEL ,NEVADA RIDGE MT US SNOTEL , +NEVC2,3,3133.400 ,40.40000 ,-105.9600,MesoWest ,SNOTEL ,NEVER SUMMER CO US SNOTEL , +NCLO3,3,1463.000 ,43.51000 ,-121.9800,MesoWest ,SNOTEL ,NEW CRESCENT LAKE OR US SNOTEL , +NFLW4,3,2542.000 ,43.11000 ,-109.9500,MesoWest ,SNOTEL ,NEW FORK LAKE WY US SNOTEL , +NZCM8,3,1722.100 ,45.73000 ,-114.4800,MesoWest ,SNOTEL ,NEZ PERCE CAMP MT US SNOTEL , +NIWC2,3,3020.600 ,40.04000 ,-105.5400,MesoWest ,SNOTEL ,NIWOT CO US SNOTEL , +NOIM8,3,1841.000 ,48.16000 ,-113.9500,MesoWest ,SNOTEL ,NOISY BASIN MT US SNOTEL , +NCSN5,3,3230.900 ,36.99000 ,-105.2600,MesoWest ,SNOTEL ,NORTH COSTILLA NM US SNOTEL , +NFRO3,3,951.0000 ,45.55000 ,-122.0000,MesoWest ,SNOTEL ,NORTH FORK OR US SNOTEL , +NFJM8,3,1929.400 ,47.27000 ,-113.7600,MesoWest ,SNOTEL ,NORTH FORK JOCKO MT US SNOTEL , +NFCW4,3,3087.600 ,41.33000 ,-106.3800,MesoWest ,SNOTEL ,NORTH FRENCH CREEK WY US SNOTEL , +NLSC2,3,2804.200 ,39.08000 ,-107.1400,MesoWest ,SNOTEL ,NORTH LOST TRAIL CO US SNOTEL , +NRPS2,3,1868.400 ,44.21000 ,-103.7900,MesoWest ,SNOTEL ,NORTH RAPID CREEK SD US SNOTEL , +NORM8,3,2240.300 ,45.01000 ,-110.0100,MesoWest ,SNOTEL ,NORTHEAST ENTRANCE MT US SNOTEL , +NUKA2,3,381.0000 ,59.70000 ,-150.7100,MesoWest ,SNOTEL ,NUKA GLACIER AK US SNOTEL , +TEM11,3,1268.000 ,48.51000 ,-121.4000,MesoWest ,SNOTEL ,NWA HEATHER MDWS WA US SNOTEL , +OCMO3,3,1585.000 ,44.43000 ,-120.3300,MesoWest ,SNOTEL ,OCHOCO MEADOWS OR US SNOTEL , +OMWW1,3,1127.800 ,47.37000 ,-121.4400,MesoWest ,SNOTEL ,OLALLIE MEADOWS WA US SNOTEL , +OLDW4,3,3023.600 ,41.15000 ,-106.9700,MesoWest ,SNOTEL ,OLD BATTLE WY US SNOTEL , +ONPM8,3,2258.600 ,46.91000 ,-110.8500,MesoWest ,SNOTEL ,ONION PARK MT US SNOTEL , +ORRI1,3,960.1000 ,43.32000 ,-116.0000,MesoWest ,SNOTEL ,ORCHARD RANGE SITE ID US SNOTEL , +OVRC2,3,3011.400 ,39.09000 ,-107.6300,MesoWest ,SNOTEL ,OVERLAND RES. CO US SNOTEL , +OLWW4,3,2735.600 ,43.66000 ,-109.0100,MesoWest ,SNOTEL ,OWL CREEK WY US SNOTEL , +OXSI1,3,2054.400 ,42.26000 ,-112.1300,MesoWest ,SNOTEL ,OXFORD SPRING ID US SNOTEL , +PANN5,3,2560.300 ,35.83000 ,-105.6700,MesoWest ,SNOTEL ,PANCHUELA NM US SNOTEL , +AFSW1,3,1560.600 ,46.78000 ,-121.7500,MesoWest ,SNOTEL ,PARADISE WA US SNOTEL , +PCRA2,3,91.40000 ,64.99000 ,-163.1000,MesoWest ,SNOTEL ,PARGON CREEK AK US SNOTEL , +PKCC2,3,2926.100 ,38.82000 ,-106.5900,MesoWest ,SNOTEL ,PARK CONE CO US SNOTEL , +PCRW1,3,1402.100 ,48.44000 ,-120.9200,MesoWest ,SNOTEL ,PARK CREEK RIDGE WA US SNOTEL , +PRVC2,3,3035.800 ,39.05000 ,-107.8700,MesoWest ,SNOTEL ,PARK RESERVOIR CO US SNOTEL , +PRKW4,3,2865.100 ,44.73000 ,-109.9100,MesoWest ,SNOTEL ,PARKER PEAK WY US SNOTEL , +PSUU1,3,2286.000 ,40.76000 ,-111.6300,MesoWest ,SNOTEL ,PARLEY'S SUMMIT UT US SNOTEL , +PCRU1,3,2359.200 ,40.93000 ,-111.8100,MesoWest ,SNOTEL ,PARRISH CREEK UT US SNOTEL , +PYSU1,3,2453.600 ,39.93000 ,-111.6300,MesoWest ,SNOTEL ,PAYSON R.S. UT US SNOTEL , +PVRO3,3,1066.800 ,45.04000 ,-121.9300,MesoWest ,SNOTEL ,PEAVINE RIDGE OR US SNOTEL , +PTNM8,3,2194.600 ,46.13000 ,-113.3100,MesoWest ,SNOTEL ,PETERSON MEADOWS MT US SNOTEL , +PHTC2,3,2752.300 ,40.40000 ,-105.8500,MesoWest ,SNOTEL ,PHANTOM VALLEY CO US SNOTEL , +PHBW4,3,2499.400 ,43.52000 ,-110.9100,MesoWest ,SNOTEL ,PHILLIPS BENCH WY US SNOTEL , +PCKM8,3,2026.900 ,46.58000 ,-111.2700,MesoWest ,SNOTEL ,PICKFOOT CREEK MT US SNOTEL , +PKLU1,3,2926.100 ,39.01000 ,-111.5800,MesoWest ,SNOTEL ,PICKLE KEG UT US SNOTEL , +PGPW1,3,1798.300 ,46.62000 ,-121.3900,MesoWest ,SNOTEL ,PIGTAIL PEAK WA US SNOTEL , +PICM8,3,1807.500 ,48.30000 ,-113.3300,MesoWest ,SNOTEL ,PIKE CREEK MT US SNOTEL , +PCKU1,3,2682.200 ,38.97000 ,-112.2500,MesoWest ,SNOTEL ,PINE CREEK UT US SNOTEL , +PCPI1,3,2048.300 ,43.57000 ,-111.2100,MesoWest ,SNOTEL ,PINE CREEK PASS ID US SNOTEL , +PLCM8,3,2691.400 ,45.42000 ,-110.0900,MesoWest ,SNOTEL ,PLACER BASIN MT US SNOTEL , +PTMA2,3,61.00000 ,61.39000 ,-150.0200,MesoWest ,SNOTEL ,POINT MACKENZIE AK US SNOTEL , +XXXC1,3,2407.900 ,38.51000 ,-119.6300,MesoWest ,SNOTEL ,POISON FLAT CA US SNOTEL , +PRSN2,3,2539.000 ,41.87000 ,-115.2500,MesoWest ,SNOTEL ,POLE CREEK R.S. NV US SNOTEL , +PMNM8,3,1554.500 ,48.13000 ,-115.6200,MesoWest ,SNOTEL ,POORMAN CREEK MT US SNOTEL , +PPRW1,3,1079.000 ,47.99000 ,-120.5700,MesoWest ,SNOTEL ,POPE RIDGE WA US SNOTEL , +PRPM8,3,1981.200 ,46.11000 ,-110.4700,MesoWest ,SNOTEL ,PORCUPINE MT US SNOTEL , +PRPC2,3,3279.700 ,38.49000 ,-106.3400,MesoWest ,SNOTEL ,PORPHYRY CREEK CO US SNOTEL , +PGRA2,3,91.40000 ,59.35000 ,-151.8500,MesoWest ,SNOTEL ,PORT GRAHAM AK US SNOTEL , +PSJA2,3,15.20000 ,60.05000 ,-148.0700,MesoWest ,SNOTEL ,PORT SAN JUAN AK US SNOTEL , +PTHW1,3,1371.600 ,46.35000 ,-121.5100,MesoWest ,SNOTEL ,POTATO HILL WA US SNOTEL , +PWDW4,3,2889.500 ,44.16000 ,-107.1300,MesoWest ,SNOTEL ,POWDER RIVER PASS WY US SNOTEL , +PRAI1,3,1463.000 ,43.51000 ,-115.5700,MesoWest ,SNOTEL ,PRAIRIE ID US SNOTEL , +PROA3,3,2417.100 ,34.37000 ,-111.0100,MesoWest ,SNOTEL ,PROMONTORY AZ US SNOTEL , +QRMO3,3,1737.400 ,42.32000 ,-120.8300,MesoWest ,SNOTEL ,QUARTZ MOUNTAIN OR US SNOTEL , +QUPW1,3,1432.600 ,47.88000 ,-117.0900,MesoWest ,SNOTEL ,QUARTZ PEAK WA US SNOTEL , +QMZN5,3,2895.600 ,35.92000 ,-106.3900,MesoWest ,SNOTEL ,QUEMAZON NM US SNOTEL , +RESC2,3,2865.100 ,40.37000 ,-106.7400,MesoWest ,SNOTEL ,RABBIT EARS CO US SNOTEL , +RROO3,3,838.2000 ,43.66000 ,-122.2100,MesoWest ,SNOTEL ,RAILROAD OVERPASS OR US SNOTEL , +RACN2,3,2430.800 ,36.24930 ,-115.6297,MesoWest ,SNOTEL ,RAINBOW CANYON NV US SNOTEL , +RAIW1,3,1456.900 ,48.52000 ,-120.7400,MesoWest ,SNOTEL ,RAINY PASS WA US SNOTEL , +RAWC2,3,2749.300 ,40.71000 ,-106.0100,MesoWest ,SNOTEL ,RAWAH CO US SNOTEL , +REDO3,3,1341.100 ,45.46000 ,-121.7000,MesoWest ,SNOTEL ,RED HILL OR US SNOTEL , +RMPC2,3,3398.500 ,37.89000 ,-107.7100,MesoWest ,SNOTEL ,RED MOUNTAIN PASS CO US SNOTEL , +RPRU1,3,2804.200 ,39.45000 ,-111.2700,MesoWest ,SNOTEL ,RED PINE RIDGE UT US SNOTEL , +RRPN5,3,3002.300 ,36.70000 ,-105.3400,MesoWest ,SNOTEL ,RED RIVER PASS #2 NM US SNOTEL , +RNHW4,3,2590.800 ,42.57000 ,-106.0900,MesoWest ,SNOTEL ,RENO HILL WY US SNOTEL , +RXSW1,3,1219.200 ,47.30000 ,-121.6000,MesoWest ,SNOTEL ,REX RIVER WA US SNOTEL , +TEM22,3,373.1000 ,63.93000 ,-145.3300,MesoWest ,SNOTEL ,RHOADS CREEK AK US SNOTEL , +RPRN5,3,2578.600 ,35.23000 ,-108.2700,MesoWest ,SNOTEL ,RICE PARK NM US SNOTEL , +RCPC2,3,3151.600 ,40.11000 ,-107.2900,MesoWest ,SNOTEL ,RIPPLE CREEK CO US SNOTEL , +ROAC2,3,2956.600 ,40.88000 ,-106.0500,MesoWest ,SNOTEL ,ROACH CO US SNOTEL , +RORO3,3,1493.500 ,43.90000 ,-122.0300,MesoWest ,SNOTEL ,ROARING RIVER OR US SNOTEL , +RCKU1,3,2407.900 ,40.55000 ,-110.6900,MesoWest ,SNOTEL ,ROCK CREEK UT US SNOTEL , +TEM23,3,686.1000 ,63.72000 ,-148.9700,MesoWest ,SNOTEL ,ROCK CREEK BOTTOM AK US SNOTEL , +RCSO3,3,1691.600 ,44.01000 ,-118.8400,MesoWest ,SNOTEL ,ROCK SPRINGS OR US SNOTEL , +RKPM8,3,2438.400 ,46.36000 ,-112.2600,MesoWest ,SNOTEL ,ROCKER PEAK MT US SNOTEL , +RBSU1,3,2712.700 ,40.44000 ,-112.2200,MesoWest ,SNOTEL ,ROCKY BASIN-SETTLEME UT US SNOTEL , +ROCM8,3,1432.600 ,48.17000 ,-109.6500,MesoWest ,SNOTEL ,ROCKY BOY MT US SNOTEL , +RPTA2,3,152.4000 ,64.55000 ,-163.4800,MesoWest ,SNOTEL ,ROCKY POINT AK US SNOTEL , +ROUC2,3,3157.700 ,39.03000 ,-106.0800,MesoWest ,SNOTEL ,ROUGH AND TUMBLE CO US SNOTEL , +RUBC1,3,2286.000 ,39.00000 ,-120.1300,MesoWest ,SNOTEL ,RUBICON #2 CA US SNOTEL , +SFSM8,3,2468.900 ,46.09000 ,-110.4300,MesoWest ,SNOTEL ,S FORK SHIELDS MT US SNOTEL , +SAJM8,3,1996.400 ,45.87000 ,-110.9300,MesoWest ,SNOTEL ,SACAJAWEA MT US SNOTEL , +SDMO3,3,990.6000 ,45.54000 ,-123.3700,MesoWest ,SNOTEL ,SADDLE MOUNTAIN OR US SNOTEL , +SDMM8,3,2407.900 ,45.69000 ,-113.9700,MesoWest ,SNOTEL ,SADDLE MTN. MT US SNOTEL , +SGBW4,3,2392.700 ,41.40000 ,-107.2600,MesoWest ,SNOTEL ,SAGE CREEK BASIN WY US SNOTEL , +TEM24,3,305.1000 ,69.43000 ,-148.7000,MesoWest ,SNOTEL ,SAGWON AK US SNOTEL , +SAMW1,3,1371.600 ,48.66000 ,-119.8400,MesoWest ,SNOTEL ,SALMON MEADOWS WA US SNOTEL , +SCFO3,3,1219.200 ,43.61000 ,-122.1200,MesoWest ,SNOTEL ,SALT CREEK FALLS OR US SNOTEL , +SLTW4,3,2316.500 ,42.51000 ,-110.9100,MesoWest ,SNOTEL ,SALT RIVER SUMMIT WY US SNOTEL , +SNLW4,3,3063.200 ,41.46000 ,-106.2800,MesoWest ,SNOTEL ,SAND LAKE WY US SNOTEL , +SRSW4,3,2484.100 ,41.11000 ,-107.1700,MesoWest ,SNOTEL ,SANDSTONE RS WY US SNOTEL , +SFSN5,3,3488.400 ,35.77000 ,-105.7800,MesoWest ,SNOTEL ,SANTA FE NM US SNOTEL , +SAJO3,3,1143.000 ,44.44000 ,-121.9500,MesoWest ,SNOTEL ,SANTIAM JCT. OR US SNOTEL , +SASW1,3,1280.200 ,47.38000 ,-121.0600,MesoWest ,SNOTEL ,SASSE RIDGE WA US SNOTEL , +SVPI1,3,1880.600 ,46.47000 ,-114.6300,MesoWest ,SNOTEL ,SAVAGE PASS ID US SNOTEL , +SAWW1,3,1432.600 ,47.16000 ,-121.4200,MesoWest ,SNOTEL ,SAWMILL RIDGE WA US SNOTEL , +SCHO3,3,1645.900 ,45.00000 ,-117.1700,MesoWest ,SNOTEL ,SCHNEIDER MEADOWS OR US SNOTEL , +SOSC2,3,3261.400 ,39.02000 ,-107.0500,MesoWest ,SNOTEL ,SCHOFIELD PASS CO US SNOTEL , +SCHI1,3,2627.400 ,44.85000 ,-113.8400,MesoWest ,SNOTEL ,SCHWARTZ LAKE ID US SNOTEL , +STZI1,3,1856.200 ,48.37000 ,-116.6400,MesoWest ,SNOTEL ,SCHWEITZER BASIN ID US SNOTEL , +SCWI1,3,1862.300 ,48.37000 ,-116.6400,MesoWest ,SNOTEL ,SCHWEITZER SADDLE ID US SNOTEL , +SHSC2,3,2773.700 ,37.65000 ,-108.0100,MesoWest ,SNOTEL ,SCOTCH CREEK CO US SNOTEL , +SCSI1,3,1987.300 ,45.19000 ,-115.9700,MesoWest ,SNOTEL ,SECESH SUMMIT ID US SNOTEL , +SEPI1,3,2392.700 ,42.52000 ,-111.9600,MesoWest ,SNOTEL ,SEDGWICK PEAK ID US SNOTEL , +SEEU1,3,3048.000 ,39.31000 ,-111.4300,MesoWest ,SNOTEL ,SEELEY CREEK UT US SNOTEL , +SECO3,3,609.6000 ,45.53000 ,-123.3000,MesoWest ,SNOTEL ,SEINE CREEK OR US SNOTEL , +SENN5,3,2621.300 ,36.00000 ,-106.8300,MesoWest ,SNOTEL ,SENORITA DIVIDE #2 NM US SNOTEL , +SENW1,3,1499.600 ,48.86000 ,-118.4000,MesoWest ,SNOTEL ,SENTINEL BUTTE WA US SNOTEL , +SVMO3,3,1889.800 ,42.70000 ,-122.1400,MesoWest ,SNOTEL ,SEVENMILE MARSH OR US SNOTEL , +SSCN2,3,2164.100 ,41.74000 ,-115.4700,MesoWest ,SNOTEL ,SEVENTYSIX CREEK NV US SNOTEL , +SHAI1,3,1392.900 ,46.57000 ,-115.7400,MesoWest ,SNOTEL ,SHANGHI SUMMIT ID US SNOTEL , +SKZC2,3,3267.500 ,37.50000 ,-108.1100,MesoWest ,SNOTEL ,SHARKSTOOTH CO US SNOTEL , +SHPW1,3,1228.300 ,46.19000 ,-122.2500,MesoWest ,SNOTEL ,SHEEP CANYON WA US SNOTEL , +SPMI1,3,2002.500 ,43.21000 ,-111.6900,MesoWest ,SNOTEL ,SHEEP MTN. ID US SNOTEL , +SHEN2,3,1786.100 ,41.90000 ,-119.4400,MesoWest ,SNOTEL ,SHELDON NV US SNOTEL , +SHNN2,3,1786.100 ,41.90000 ,-119.4500,MesoWest ,SNOTEL ,SHELDON NV US SNOTEL , +SHLN2,3,1786.100 ,41.90000 ,-119.4500,MesoWest ,SNOTEL ,SHELDON #4 NV US SNOTEL , +SCRW4,3,2920.000 ,44.50000 ,-107.4300,MesoWest ,SNOTEL ,SHELL CREEK WY US SNOTEL , +SHWI1,3,975.4000 ,46.95000 ,-116.3400,MesoWest ,SNOTEL ,SHERWIN ID US SNOTEL , +SHCM8,3,2133.600 ,44.98000 ,-111.9500,MesoWest ,SNOTEL ,SHORT CREEK MT US SNOTEL , +SHFM8,3,2468.900 ,45.40000 ,-110.9600,MesoWest ,SNOTEL ,SHOWER FALLS MT US SNOTEL , +SIEN5,3,3133.400 ,33.40000 ,-105.7900,MesoWest ,SNOTEL ,SIERRA BLANCA NM US SNOTEL , +SGNN5,3,2548.100 ,32.92000 ,-108.1500,MesoWest ,SNOTEL ,SIGNAL PEAK NM US SNOTEL , +SVCO3,3,1743.500 ,42.96000 ,-121.1800,MesoWest ,SNOTEL ,SILVER CREEK OR US SNOTEL , +SCDN5,3,2743.200 ,33.37000 ,-108.7100,MesoWest ,SNOTEL ,SILVER CREEK DIVIDE NM US SNOTEL , +SILM8,3,2020.800 ,45.15000 ,-109.3500,MesoWest ,SNOTEL ,SILVER RUN MT US SNOTEL , +SLVO3,3,2103.100 ,42.75000 ,-118.6900,MesoWest ,SNOTEL ,SILVIES OR US SNOTEL , +SKAM8,3,2209.800 ,46.24000 ,-113.7700,MesoWest ,SNOTEL ,SKALKAHO SUMMIT MT US SNOTEL , +KUSW1,3,1194.800 ,47.68000 ,-121.6100,MesoWest ,SNOTEL ,SKOOKUM CREEK WA US SNOTEL , +SQPM8,3,1874.500 ,47.18000 ,-114.3300,MesoWest ,SNOTEL ,SLEEPING WOMAN MT US SNOTEL , +SLGI1,3,2202.200 ,42.56000 ,-111.3000,MesoWest ,SNOTEL ,SLUG CREEK DIVIDE ID US SNOTEL , +SLMC2,3,3523.500 ,37.99000 ,-107.2000,MesoWest ,SNOTEL ,SLUMGULLION CO US SNOTEL , +SMMI1,3,2901.700 ,43.73000 ,-113.8300,MesoWest ,SNOTEL ,SMILEY MOUNTAIN ID US SNOTEL , +SMMU1,3,2316.500 ,40.79000 ,-111.1200,MesoWest ,SNOTEL ,SMITH & MOREHOUSE UT US SNOTEL , +SKRW4,3,2109.200 ,44.13000 ,-110.6700,MesoWest ,SNOTEL ,SNAKE RIVER STATION WY US SNOTEL , +SNIW4,3,2456.700 ,42.49000 ,-110.5300,MesoWest ,SNOTEL ,SNIDER BASIN WY US SNOTEL , +SNWO3,3,1895.900 ,43.95000 ,-119.5400,MesoWest ,SNOTEL ,SNOW MOUNTAIN OR US SNOTEL , +SBDU1,3,2938.300 ,40.56000 ,-111.6600,MesoWest ,SNOTEL ,SNOWBIRD UT US SNOTEL , +XSCA3,3,2965.700 ,35.34000 ,-111.6500,MesoWest ,SNOTEL ,SNOWSLIDE CANYON AZ US SNOTEL , +SRSI1,3,1749.600 ,43.48000 ,-114.8300,MesoWest ,SNOTEL ,SOLDIER R.S. ID US SNOTEL , +TEM25,3,9.100000 ,61.08000 ,-146.3000,MesoWest ,SNOTEL ,SOLOMAN GULCH AK US SNOTEL , +SORI1,3,2072.600 ,42.95000 ,-111.3600,MesoWest ,SNOTEL ,SOMSEN RANCH ID US SNOTEL , +SRAC1,3,2682.200 ,38.31000 ,-119.6000,MesoWest ,SNOTEL ,SONORA PASS CA US SNOTEL , +SGUW1,3,1219.200 ,46.24000 ,-117.3900,MesoWest ,SNOTEL ,SOURDOUGH GULCH WA US SNOTEL , +SBCW4,3,2572.500 ,41.33000 ,-106.5000,MesoWest ,SNOTEL ,SOUTH BRUSH CREEK WY US SNOTEL , +SCYC2,3,3291.800 ,37.97000 ,-105.5400,MesoWest ,SNOTEL ,SOUTH COLONY CO US SNOTEL , +SFBO3,3,801.6000 ,45.45000 ,-122.0300,MesoWest ,SNOTEL ,SOUTH FORK BULL RUN OR US SNOTEL , +SMTI1,3,1981.200 ,42.76000 ,-116.9000,MesoWest ,SNOTEL ,SOUTH MTN. ID US SNOTEL , +SPSW4,3,2755.400 ,42.57000 ,-108.8400,MesoWest ,SNOTEL ,SOUTH PASS WY US SNOTEL , +SPMW1,3,1036.300 ,46.18000 ,-121.9300,MesoWest ,SNOTEL ,SPENCER MEADOW WA US SNOTEL , +SPTW1,3,951.0000 ,46.26000 ,-122.1800,MesoWest ,SNOTEL ,SPIRIT LAKE WA US SNOTEL , +SPCC1,3,1889.800 ,38.67000 ,-119.8200,MesoWest ,SNOTEL ,SPRATT CREEK CA US SNOTEL , +SCDW4,3,2743.200 ,42.53000 ,-110.6600,MesoWest ,SNOTEL ,SPRING CREEK DIVIDE WY US SNOTEL , +SPGW1,3,1737.400 ,46.18000 ,-117.5400,MesoWest ,SNOTEL ,SPRUCE SPRINGS WA US SNOTEL , +SPSC2,3,3249.200 ,37.70000 ,-107.7800,MesoWest ,SNOTEL ,SPUD MOUNTAIN CO US SNOTEL , +SPRM8,3,2468.900 ,46.78000 ,-110.6200,MesoWest ,SNOTEL ,SPUR PARK MT US SNOTEL , +SQFI1,3,1902.000 ,44.77000 ,-116.2500,MesoWest ,SNOTEL ,SQUAW FLAT ID US SNOTEL , +SQWC1,3,2499.400 ,39.19000 ,-120.2600,MesoWest ,SNOTEL ,SQUAW VALLEY G.C. CA US SNOTEL , +SLAW4,3,2627.400 ,43.03000 ,-109.1700,MesoWest ,SNOTEL ,ST. LAWRENCE ALT WY US SNOTEL , +STAM8,3,1837.900 ,48.91000 ,-114.8600,MesoWest ,SNOTEL ,STAHL PEAK MT US SNOTEL , +SMPW1,3,1176.500 ,47.27000 ,-121.3400,MesoWest ,SNOTEL ,STAMPEDE PASS WA US SNOTEL , +STRO3,3,1615.400 ,44.27000 ,-119.0200,MesoWest ,SNOTEL ,STARR RIDGE OR US SNOTEL , +SCKU1,3,3078.500 ,40.91000 ,-110.5000,MesoWest ,SNOTEL ,STEEL CREEK PARK UT US SNOTEL , +SVNW1,3,1240.500 ,47.75000 ,-121.0900,MesoWest ,SNOTEL ,STEVENS PASS WA US SNOTEL , +STMI1,3,2264.700 ,43.86000 ,-114.2100,MesoWest ,SNOTEL ,STICKNEY MILL ID US SNOTEL , +SCSC2,3,2657.900 ,40.23000 ,-105.9200,MesoWest ,SNOTEL ,STILLWATER CREEK CO US SNOTEL , +STWO3,3,1755.700 ,42.13000 ,-120.8400,MesoWest ,SNOTEL ,STRAWBERRY OR US SNOTEL , +STDU1,3,2560.300 ,40.19000 ,-111.2200,MesoWest ,SNOTEL ,STRAWBERRY DIVIDE UT US SNOTEL , +SRFA2,3,9.100000 ,60.23000 ,-144.8600,MesoWest ,SNOTEL ,STRAWBERRY REEF AK US SNOTEL , +STCM8,3,1996.400 ,46.93000 ,-110.9000,MesoWest ,SNOTEL ,STRINGER CREEK MT US SNOTEL , +STTM8,3,2255.500 ,47.00000 ,-113.9300,MesoWest ,SNOTEL ,STUART MOUNTAIN MT US SNOTEL , +STPC2,3,3413.800 ,37.48000 ,-107.6300,MesoWest ,SNOTEL ,STUMP LAKES CO US SNOTEL , +SUCW4,3,2706.600 ,44.72000 ,-107.4000,MesoWest ,SNOTEL ,SUCKER CREEK WY US SNOTEL , +SGLA3,3,1865.400 ,34.62000 ,-111.5200,MesoWest ,SNOTEL ,SUGAR LOAF AZ US SNOTEL , +SMRO3,3,2164.100 ,42.70000 ,-120.8000,MesoWest ,SNOTEL ,SUMMER RIM OR US SNOTEL , +SUUA2,3,426.7000 ,60.62000 ,-149.5300,MesoWest ,SNOTEL ,SUMMIT CREEK AK US SNOTEL , +SMLO3,3,1706.900 ,43.45000 ,-122.1400,MesoWest ,SNOTEL ,SUMMIT LAKE OR US SNOTEL , +SDWC1,3,2780.400 ,38.40000 ,-119.5400,MesoWest ,SNOTEL ,SUMMIT MEADOW CA US SNOTEL , +SUMC2,3,2865.100 ,39.72000 ,-106.1600,MesoWest ,SNOTEL ,SUMMIT RANCH CO US SNOTEL , +SSSO3,3,1706.900 ,42.79000 ,-121.9800,MesoWest ,SNOTEL ,SUN PASS OR US SNOTEL , +SNSI1,3,1688.600 ,47.56000 ,-115.8200,MesoWest ,SNOTEL ,SUNSET ID US SNOTEL , +SPLW1,3,1295.400 ,46.09000 ,-121.7600,MesoWest ,SNOTEL ,SURPRISE LAKES WA US SNOTEL , +SUVA2,3,114.3000 ,62.13000 ,-150.0400,MesoWest ,SNOTEL ,SUSITNA VALLEY HIGH AK US SNOTEL , +20A41,3,1218.900 ,48.60000 ,-120.8000,MesoWest ,SNOTEL ,SWAMP CREEK WA US SNOTEL , +SWSW1,3,1219.200 ,48.57000 ,-120.7800,MesoWest ,SNOTEL ,SWAMP CREEK WA US SNOTEL , +SWNO3,3,2072.600 ,42.41000 ,-121.7400,MesoWest ,SNOTEL ,SWAN LAKE MTN OR US SNOTEL , +SWPI1,3,2328.700 ,43.63000 ,-113.9700,MesoWest ,SNOTEL ,SWEDE PEAK ID US SNOTEL , +SWCW1,3,1149.100 ,46.16000 ,-122.1800,MesoWest ,SNOTEL ,SWIFT CREEK WA US SNOTEL , +SYLW4,3,2566.400 ,44.48000 ,-110.1600,MesoWest ,SNOTEL ,SYLVAN LAKE WY US SNOTEL , +SYRW4,3,2170.200 ,44.48000 ,-110.0400,MesoWest ,SNOTEL ,SYLVAN ROAD WY US SNOTEL , +TABM8,3,1455.400 ,45.80000 ,-111.5900,MesoWest ,SNOTEL ,TABLE MOUNTAIN MT US SNOTEL , +THOC1,3,2057.400 ,39.17000 ,-120.1500,MesoWest ,SNOTEL ,TAHOE CITY CROSS CA US SNOTEL , +TTKA2,3,15.20000 ,60.86000 ,-146.6800,MesoWest ,SNOTEL ,TATITLEK AK US SNOTEL , +TYBO3,3,1554.500 ,42.69000 ,-121.4300,MesoWest ,SNOTEL ,TAYLOR BUTTE OR US SNOTEL , +TACN2,3,1889.800 ,41.23000 ,-116.0300,MesoWest ,SNOTEL ,TAYLOR CANYON NV US SNOTEL , +TYLO3,3,1749.600 ,45.08000 ,-117.5500,MesoWest ,SNOTEL ,TAYLOR GREEN OR US SNOTEL , +TPKU1,3,2257.400 ,41.79000 ,-111.5500,MesoWest ,SNOTEL ,TEMPLE FORK UT US SNOTEL , +TPEM8,3,2438.400 ,44.79000 ,-111.7100,MesoWest ,SNOTEL ,TEPEE CREEK MT US SNOTEL , +TEUA2,3,499.9000 ,64.95000 ,-145.5200,MesoWest ,SNOTEL ,TEUCHET CREEK AK US SNOTEL , +THCU1,3,2804.200 ,40.62000 ,-111.5300,MesoWest ,SNOTEL ,THAYNES CANYON UT US SNOTEL , +TCMO3,3,1722.100 ,44.14000 ,-121.6400,MesoWest ,SNOTEL ,THREE CREEKS MEADOW OR US SNOTEL , +THUW4,3,2432.300 ,44.37000 ,-110.5800,MesoWest ,SNOTEL ,THUMB DIVIDE WY US SNOTEL , +THBW1,3,1280.200 ,48.53000 ,-120.9900,MesoWest ,SNOTEL ,THUNDER BASIN WA US SNOTEL , +TIEW4,3,2094.000 ,44.81000 ,-107.4100,MesoWest ,SNOTEL ,TIE CREEK WY US SNOTEL , +07E39,3,2093.100 ,44.80000 ,-107.4000,MesoWest ,SNOTEL ,TIE CREEK WY US SNOTEL , +TICW4,3,2423.200 ,44.03000 ,-109.1800,MesoWest ,SNOTEL ,TIMBER CREEK WY US SNOTEL , +TIMU1,3,2481.100 ,40.43000 ,-111.6200,MesoWest ,SNOTEL ,TIMPANOGOS DIVIDE UT US SNOTEL , +TKSW1,3,935.7000 ,47.33000 ,-121.4700,MesoWest ,SNOTEL ,TINKHAM CREEK WA US SNOTEL , +TIPO3,3,1569.700 ,44.66000 ,-118.4300,MesoWest ,SNOTEL ,TIPTON OR US SNOTEL , +TIBM8,3,2084.800 ,46.35000 ,-111.8500,MesoWest ,SNOTEL ,TIZER BASIN MT US SNOTEL , +TOGW4,3,3002.300 ,43.75000 ,-110.0600,MesoWest ,SNOTEL ,TOGWOTEE PASS WY US SNOTEL , +TOKO3,3,987.6000 ,43.23000 ,-122.4300,MesoWest ,SNOTEL ,TOKETEE AIRSTRIP OR US SNOTEL , +TKVA2,3,259.1000 ,62.63000 ,-150.7800,MesoWest ,SNOTEL ,TOKOSITNA VALLEY AK US SNOTEL , +TOLN5,3,3102.900 ,36.47000 ,-105.1900,MesoWest ,SNOTEL ,TOLBY NM US SNOTEL , +TGLU1,3,2560.300 ,41.90000 ,-111.6300,MesoWest ,SNOTEL ,TONY GROVE LAKE UT US SNOTEL , +TOHW1,3,1685.500 ,46.12000 ,-117.8500,MesoWest ,SNOTEL ,TOUCHET WA US SNOTEL , +TOWC2,3,3200.400 ,40.54000 ,-106.6800,MesoWest ,SNOTEL ,TOWER CO US SNOTEL , +TWNW4,3,2651.800 ,42.70000 ,-108.9000,MesoWest ,SNOTEL ,TOWNSEND CREEK WY US SNOTEL , +TLSC2,3,2956.600 ,40.00000 ,-107.2400,MesoWest ,SNOTEL ,TRAPPER LAKE CO US SNOTEL , +TREN5,3,2621.300 ,36.13000 ,-105.5300,MesoWest ,SNOTEL ,TRES RITOS NM US SNOTEL , +TRLU1,3,3035.800 ,40.68000 ,-110.9500,MesoWest ,SNOTEL ,TRIAL LAKE UT US SNOTEL , +TCHC2,3,3310.100 ,37.35000 ,-105.2300,MesoWest ,SNOTEL ,TRINCHERA CO US SNOTEL , +TRMI1,3,2368.300 ,43.63000 ,-115.4400,MesoWest ,SNOTEL ,TRINITY MTN. ID US SNOTEL , +TRPW4,3,2590.800 ,42.76000 ,-110.5900,MesoWest ,SNOTEL ,TRIPLE PEAK WY US SNOTEL , +TRGW1,3,1615.400 ,47.23000 ,-120.2900,MesoWest ,SNOTEL ,TROUGH WA US SNOTEL , +BUSW4,3,2560.000 ,44.58000 ,-109.4500,MesoWest ,SNOTEL ,TROUT CK WY US SNOTEL , +TCKU1,3,2865.100 ,40.74000 ,-109.6700,MesoWest ,SNOTEL ,TROUT CREEK UT US SNOTEL , +TRUC1,3,1950.700 ,39.30000 ,-120.1800,MesoWest ,SNOTEL ,TRUCKEE #2 CA US SNOTEL , +TUGA2,3,573.0000 ,60.78000 ,-149.1800,MesoWest ,SNOTEL ,TURNAGAIN PASS AK US SNOTEL , +TMCM8,3,1706.900 ,46.14000 ,-114.4500,MesoWest ,SNOTEL ,TWELVEMILE CREEK MT US SNOTEL , +TWLM8,3,1950.700 ,46.14000 ,-114.5100,MesoWest ,SNOTEL ,TWIN LAKES MT US SNOTEL , +TOPW4,3,2816.400 ,44.15000 ,-110.2200,MesoWest ,SNOTEL ,TWO OCEAN PLATEAU WY US SNOTEL , +UVCC2,3,3139.400 ,40.03000 ,-105.5800,MesoWest ,SNOTEL ,UNIVERSITY CAMP CO US SNOTEL , +UCEA2,3,868.7000 ,65.10000 ,-144.9300,MesoWest ,SNOTEL ,UPPER CHENA AK US SNOTEL , +UNCA2,3,807.7000 ,65.37000 ,-146.5900,MesoWest ,SNOTEL ,UPPER NOME CREEK AK US SNOTEL , +URGC2,3,2865.100 ,37.72000 ,-107.2600,MesoWest ,SNOTEL ,UPPER RIO GRANDE CO US SNOTEL , +USJC2,3,3087.600 ,37.49000 ,-106.8400,MesoWest ,SNOTEL ,UPPER SAN JUAN CO US SNOTEL , +UPWW1,3,1341.100 ,47.29000 ,-120.3700,MesoWest ,SNOTEL ,UPPER WHEELER WA US SNOTEL , +TEM05,3,853.1000 ,45.26000 ,-121.5500,MesoWest ,SNOTEL ,USFS NANNY CREEK OR US SNOTEL , +UTCC2,3,3246.100 ,37.61000 ,-105.3700,MesoWest ,SNOTEL ,UTE CREEK CO US SNOTEL , +VACN5,3,2836.500 ,36.03000 ,-106.8100,MesoWest ,SNOTEL ,VACAS LOCAS NM US SNOTEL , +VLMC2,3,3139.400 ,39.62000 ,-106.3800,MesoWest ,SNOTEL ,VAIL MOUNTAIN CO US SNOTEL , +VALC2,3,3316.200 ,37.49000 ,-107.5100,MesoWest ,SNOTEL ,VALLECITO CO US SNOTEL , +VWGI1,3,1499.600 ,44.38000 ,-116.3400,MesoWest ,SNOTEL ,VAN WYCK ID US SNOTEL , +VNCU1,3,2286.000 ,39.94000 ,-112.4100,MesoWest ,SNOTEL ,VERNON CREEK UT US SNOTEL , +VNNI1,3,2731.000 ,43.80000 ,-114.8500,MesoWest ,SNOTEL ,VIENNA MINE ID US SNOTEL , +VGAC1,3,2804.200 ,38.07000 ,-119.2300,MesoWest ,SNOTEL ,VIRGINIA LAKES RIDGE CA US SNOTEL , +CHUM8,3,1706.900 ,47.92000 ,-112.7900,MesoWest ,SNOTEL ,WALDRON MT US SNOTEL , +WRDC1,3,2057.400 ,39.14000 ,-120.2200,MesoWest ,SNOTEL ,WARD CREEK #3 CA US SNOTEL , +WDMN2,3,2804.200 ,39.13000 ,-114.9600,MesoWest ,SNOTEL ,WARD MOUNTAIN NV US SNOTEL , +WRMM8,3,2377.400 ,46.27000 ,-113.1600,MesoWest ,SNOTEL ,WARM SPRINGS MT US SNOTEL , +WRRW4,3,1987.300 ,44.40000 ,-104.4300,MesoWest ,SNOTEL ,WARREN PEAK WY US SNOTEL , +WHSW1,3,1524.000 ,47.94000 ,-123.4300,MesoWest ,SNOTEL ,WATERHOLE WA US SNOTEL , +WBSW4,3,2819.400 ,41.16000 ,-106.9300,MesoWest ,SNOTEL ,WEBBER SPRINGS WY US SNOTEL , +WFLU1,3,2804.200 ,37.57000 ,-112.9000,MesoWest ,SNOTEL ,WEBSTER FLAT UT US SNOTEL , +WCSW1,3,1280.200 ,48.87000 ,-121.7900,MesoWest ,SNOTEL ,WELLS CREEK WA US SNOTEL , +WSSN5,3,3389.400 ,35.78000 ,-105.5400,MesoWest ,SNOTEL ,WESNER SPRINGS NM US SNOTEL , +WBRI1,3,1694.700 ,45.07000 ,-116.4500,MesoWest ,SNOTEL ,WEST BRANCH ID US SNOTEL , +WYSM8,3,2042.200 ,44.66000 ,-111.0900,MesoWest ,SNOTEL ,WEST YELLOWSTONE MT US SNOTEL , +WSKC2,3,3115.100 ,37.21000 ,-105.1200,MesoWest ,SNOTEL ,WHISKEY CK CO US SNOTEL , +WSKM8,3,2072.600 ,44.61000 ,-111.1500,MesoWest ,SNOTEL ,WHISKEY CREEK MT US SNOTEL , +WPKW4,3,2728.000 ,41.00000 ,-106.9100,MesoWest ,SNOTEL ,WHISKEY PARK WY US SNOTEL , +WHEI1,3,2350.000 ,44.53000 ,-111.4100,MesoWest ,SNOTEL ,WHITE ELEPHANT ID US SNOTEL , +WHLA3,3,2188.500 ,35.14000 ,-112.1500,MesoWest ,SNOTEL ,WHITE HORSE LAKE AZ US SNOTEL , +WHTM8,3,2651.800 ,45.05000 ,-109.9100,MesoWest ,SNOTEL ,WHITE MILL MT US SNOTEL , +WHPW1,3,1371.600 ,46.64000 ,-121.3800,MesoWest ,SNOTEL ,WHITE PASS E.S. WA US SNOTEL , +WRVU1,3,2606.000 ,39.96000 ,-110.9900,MesoWest ,SNOTEL ,WHITE RIVER #1 UT US SNOTEL , +WSTU1,3,2895.600 ,37.84000 ,-111.8800,MesoWest ,SNOTEL ,WIDTSOE #3 UT US SNOTEL , +WLBC2,3,2913.900 ,40.20000 ,-105.6000,MesoWest ,SNOTEL ,WILD BASIN CO US SNOTEL , +WCTA3,3,2392.700 ,33.76000 ,-109.4800,MesoWest ,SNOTEL ,WILDCAT AZ US SNOTEL , +WHDI1,3,1978.200 ,42.76000 ,-112.4800,MesoWest ,SNOTEL ,WILDHORSE DIVIDE ID US SNOTEL , +WILW4,3,2575.600 ,42.82000 ,-110.8400,MesoWest ,SNOTEL ,WILLOW CREEK WY US SNOTEL , +WLLC2,3,2907.800 ,40.35000 ,-106.0900,MesoWest ,SNOTEL ,WILLOW CREEK PASS CO US SNOTEL , +WPRC2,3,3261.400 ,40.43000 ,-105.7300,MesoWest ,SNOTEL ,WILLOW PARK CO US SNOTEL , +WLCI1,3,2170.200 ,42.01000 ,-115.0000,MesoWest ,SNOTEL ,WILSON CREEK ID US SNOTEL , +WNDW4,3,2407.900 ,42.28000 ,-105.5800,MesoWest ,SNOTEL ,WINDY PEAK WY US SNOTEL , +WFCO3,3,1737.400 ,45.07000 ,-118.1500,MesoWest ,SNOTEL ,WOLF CREEK OR US SNOTEL , +WFC03,3,1737.100 ,45.07000 ,-118.1300,MesoWest ,SNOTEL ,WOLF CREEK OR US SNOTEL , +WCSC2,3,3352.800 ,37.48000 ,-106.8000,MesoWest ,SNOTEL ,WOLF CREEK SUMMIT CO US SNOTEL , +WLVW4,3,2331.700 ,44.80000 ,-109.6600,MesoWest ,SNOTEL ,WOLVERINE WY US SNOTEL , +WODM8,3,1816.600 ,47.45000 ,-112.8100,MesoWest ,SNOTEL ,WOOD CREEK MT US SNOTEL , +WKMA3,3,2103.100 ,33.81000 ,-110.9200,MesoWest ,SNOTEL ,WORKMAN CREEK AZ US SNOTEL , +YOUW4,3,2545.100 ,43.93000 ,-109.8200,MesoWest ,SNOTEL ,YOUNTS PEAK WY US SNOTEL , +ZIRC2,3,2846.800 ,40.79000 ,-106.6000,MesoWest ,SNOTEL ,ZIRKEL CO US SNOTEL , +BSF1 ,3,1279.900 ,40.78000 ,-113.8300,MesoWest ,UTAH CLIMAT,BONNEVILLE SALT FLATS UT US UTAH CLIMAT, +BYUF ,3,1417.000 ,40.07000 ,-111.6300,MesoWest ,UTAH CLIMAT,BYU FARM (SPANISH FORK) UT US UTAH CLIMAT, +CEDG ,3,1748.900 ,38.91000 ,-107.9300,MesoWest ,UTAH CLIMAT,CEDAREDGE CO US UTAH CLIMAT, +ESPA ,3,1754.100 ,36.15000 ,-105.9900,MesoWest ,UTAH CLIMAT,ESPANOLA NM US UTAH CLIMAT, +FRUT ,3,601.1000 ,43.99000 ,-116.9200,MesoWest ,UTAH CLIMAT,FRUITLAND ID US UTAH CLIMAT, +GARL ,3,1310.900 ,41.76000 ,-112.1500,MesoWest ,UTAH CLIMAT,GARLAND UT US UTAH CLIMAT, +UKAYS,3,1371.900 ,41.02000 ,-111.9300,MesoWest ,UTAH CLIMAT,KAYSVILLE UT US UTAH CLIMAT, +MOOR ,3,1951.000 ,38.30000 ,-111.9600,MesoWest ,UTAH CLIMAT,MOORHOUSE FLAT UT US UTAH CLIMAT, +PAON ,3,1751.100 ,38.89000 ,-107.5800,MesoWest ,UTAH CLIMAT,PAONIA CO US UTAH CLIMAT, +PERR ,3,1371.900 ,41.45000 ,-112.0400,MesoWest ,UTAH CLIMAT,PERRY UT US UTAH CLIMAT, +PERW ,3,1676.100 ,37.89000 ,-113.1700,MesoWest ,UTAH CLIMAT,PERRY WELL UT US UTAH CLIMAT, +POMO ,3,771.1000 ,43.83000 ,-116.7700,MesoWest ,UTAH CLIMAT,POMOLOGY - PARMA ID US UTAH CLIMAT, +SANT ,3,1494.100 ,39.99000 ,-111.7800,MesoWest ,UTAH CLIMAT,SANTAQUIN UT US UTAH CLIMAT, +SILP ,3,1341.100 ,40.85000 ,-113.8500,MesoWest ,UTAH CLIMAT,SILVER ISLAND PASS - SALT FLATS UT US UTAH CLIMAT, +SUNP ,3,880.0000 ,43.59000 ,-116.7200,MesoWest ,UTAH CLIMAT,SUNNY SLOPE ID US UTAH CLIMAT, +LUSU ,3,1460.000 ,42.90000 ,-111.8100,MesoWest ,UTAH CLIMAT,UTAH STATE UNIVERSITY LOGAN UT US UTAH CLIMAT, +WESM ,3,1371.900 ,40.13000 ,-111.8200,MesoWest ,UTAH CLIMAT,WEST MOUNATAIN UT US UTAH CLIMAT, +WILC ,3,1335.900 ,32.03000 ,-109.2300,MesoWest ,UTAH CLIMAT,WILCOX AZ US UTAH CLIMAT, +MTNMT,3,1022.600 ,48.69604 ,-110.9790,MesoWest ,MCSCN ,Adobe Ridge MT US MCSCN , +JONMT,3,1410.000 ,46.31513 ,-109.8688,MesoWest ,MCSCN ,Baxter MT US MCSCN , +SLMMT,3,907.4000 ,48.37542 ,-110.6423,MesoWest ,MCSCN ,Black Coulee MT US MCSCN , +KNBMT,3,986.9000 ,48.41944 ,-109.6161,MesoWest ,MCSCN ,Bullhook MT US MCSCN , +CCHMT,3,1432.600 ,45.60889 ,-109.3847,MesoWest ,MCSCN ,Church MT US MCSCN , +COLMT,3,1080.200 ,47.93862 ,-111.8111,MesoWest ,MCSCN ,Collins MT US MCSCN , +HNKMT,3,901.6000 ,48.33480 ,-110.8429,MesoWest ,MCSCN ,Cottonwood Coulee MT US MCSCN , +KNGMT,3,976.6000 ,48.54979 ,-111.5634,MesoWest ,MCSCN ,Crooked Coulee MT US MCSCN , +DAHMT,3,1159.800 ,47.79403 ,-111.6040,MesoWest ,MCSCN ,Dahlman MT US MCSCN , +BRKMT,3,1246.000 ,46.97248 ,-109.7259,MesoWest ,MCSCN ,Dawkins Springs MT US MCSCN , +DELMT,3,1435.900 ,47.98488 ,-112.6053,MesoWest ,MCSCN ,Dellwo MT US MCSCN , +DEVMT,3,975.4000 ,48.47310 ,-111.5367,MesoWest ,MCSCN ,Devon MT US MCSCN , +GOLMT,3,1279.600 ,47.77167 ,-112.4075,MesoWest ,MCSCN ,Gollehan MT US MCSCN , +HABMT,3,1036.600 ,47.95383 ,-111.5563,MesoWest ,MCSCN ,Habel - NE Teton MT US MCSCN , +HODMT,3,1422.500 ,47.64713 ,-112.2856,MesoWest ,MCSCN ,Hodgkiss MT US MCSCN , +KTGMT,3,1345.700 ,45.82722 ,-109.0889,MesoWest ,MCSCN ,Keating MT US MCSCN , +LGRMT,3,1219.200 ,45.78472 ,-108.9658,MesoWest ,MCSCN ,Linger MT US MCSCN , +DMTMT,3,1002.800 ,48.46556 ,-111.2261,MesoWest ,MCSCN ,Lothair MT US MCSCN , +MCBMT,3,1263.100 ,47.56483 ,-112.3395,MesoWest ,MCSCN ,McBratny MT US MCSCN , +DSKMT,3,853.7000 ,48.87111 ,-109.6892,MesoWest ,MCSCN ,Mud Lake MT US MCSCN , +RDHMT,3,1194.800 ,47.32306 ,-110.9294,MesoWest ,MCSCN ,Neil Creek MT US MCSCN , +VSBMT,3,864.1000 ,48.85628 ,-110.3688,MesoWest ,MCSCN ,Ninemile Coulee MT US MCSCN , +GALMT,3,1011.900 ,48.54620 ,-111.2936,MesoWest ,MCSCN ,North Galata MT US MCSCN , +PRKMT,3,1214.600 ,47.98140 ,-112.3017,MesoWest ,MCSCN ,Perkins Ranch MT US MCSCN , +RICMT,3,1245.100 ,48.03728 ,-112.1966,MesoWest ,MCSCN ,Rice Ridge MT US MCSCN , +KEVMT,3,1021.100 ,48.73590 ,-111.9802,MesoWest ,MCSCN ,Scott Bye Farm MT US MCSCN , +SUNMT,3,1075.900 ,48.82670 ,-111.8121,MesoWest ,MCSCN ,Sunburst MT US MCSCN , +SWZMT,3,1409.700 ,46.04417 ,-109.0342,MesoWest ,MCSCN ,Swartz MT US MCSCN , +TWOMT,3,1424.000 ,46.46122 ,-110.1953,MesoWest ,MCSCN ,Twodot MT US MCSCN , +VANMT,3,1260.400 ,45.79889 ,-109.4186,MesoWest ,MCSCN ,Van Oosten MT US MCSCN , +FGSMT,3,860.1000 ,48.66567 ,-109.8821,MesoWest ,MCSCN ,West Flagstaff Rd MT US MCSCN , +SLVMT,3,1041.200 ,47.58730 ,-109.4446,MesoWest ,MCSCN ,Yaaps Corner MT US MCSCN , +AAMA1,3,262.1000 ,34.78000 ,-86.55000,MesoWest ,SCAN ,AAMU/JTG AL US SCAN , +ABRK1,3,363.9000 ,37.13000 ,-97.09000,MesoWest ,SCAN ,ABRAMS KS US SCAN , +ADRN5,3,1882.100 ,34.25000 ,-105.4200,MesoWest ,SCAN ,ADAMS RANCH #1 NM US SCAN , +ALKU1,3,1966.300 ,37.66667 ,-109.3500,MesoWest ,SCAN ,ALKALI MESA UT US SCAN , +ALFT1,3,214.9000 ,35.07000 ,-86.89000,MesoWest ,SCAN ,ALLEN FARMS TN US SCAN , +AMMI4,3,327.1000 ,42.02000 ,-93.73000,MesoWest ,SCAN ,AMES IA US SCAN , +ANIA2,3,24.40000 ,61.58000 ,-159.5700,MesoWest ,SCAN ,ANIAK AK US SCAN , +BSYM6,3,35.10000 ,33.38000 ,-90.65000,MesoWest ,SCAN ,BEASLEY LAKE MS US SCAN , +BLUU1,3,1581.600 ,41.93333 ,-112.4333,MesoWest ,SCAN ,BLUE CREEK UT US SCAN , +BOSP4,3,164.9000 ,17.97000 ,-66.87000,MesoWest ,SCAN ,BOSQUE SECO PR US SCAN , +BRAA1,3,243.2000 ,34.89000 ,-86.60000,MesoWest ,SCAN ,BRAGG FARM AL US SCAN , +BUST2,3,1164.300 ,35.17000 ,-102.1000,MesoWest ,SCAN ,BUSHLAND #1 TX US SCAN , +CAJU1,3,1350.600 ,41.80000 ,-111.9667,MesoWest ,SCAN ,CACHE JUNCTION UT US SCAN , +CTRK1,3,396.9000 ,39.70000 ,-96.16000,MesoWest ,SCAN ,CENTRALIA LAKE KS US SCAN , +CHAN2,3,2047.700 ,36.36640 ,-115.8203,MesoWest ,SCAN ,CHARKILN NV US SCAN , +CLZU1,3,1865.400 ,38.15000 ,-112.2500,MesoWest ,SCAN ,CIRCLEVILLE UT US SCAN , +COBP4,3,10.10000 ,17.98000 ,-67.17000,MesoWest ,SCAN ,COMBATE PR US SCAN , +COAM8,3,1129.600 ,48.30000 ,-111.9200,MesoWest ,SCAN ,CONRAD AG RC MT US SCAN , +CRDN5,3,1236.000 ,33.54000 ,-103.2400,MesoWest ,SCAN ,CROSSROADS NM US SCAN , +CNSA1,3,243.5000 ,34.19000 ,-86.80000,MesoWest ,SCAN ,CULLMAN-NAHRC AL US SCAN , +DEXM7,3,93.00000 ,36.78000 ,-89.93000,MesoWest ,SCAN ,DEXTER MO US SCAN , +ELDU1,3,2086.400 ,37.76667 ,-109.1667,MesoWest ,SCAN ,EASTLAND UT US SCAN , +EAST1,3,321.3000 ,35.14000 ,-86.19000,MesoWest ,SCAN ,EASTVIEW FARM TN US SCAN , +ENPU1,3,1599.900 ,37.63333 ,-113.6333,MesoWest ,SCAN ,ENTERPRISE UT US SCAN , +EMPU1,3,1677.600 ,39.41667 ,-111.5667,MesoWest ,SCAN ,EPHRAIM UT US SCAN , +EROS2,3,488.3000 ,43.74000 ,-96.61000,MesoWest ,SCAN ,EROS DATA CENTER SD US SCAN , +EARF1,3,2.700000 ,25.50000 ,-80.55000,MesoWest ,SCAN ,EVERGLADES ARS FL US SCAN , +FASM8,3,826.0000 ,48.48000 ,-109.8000,MesoWest ,SCAN ,FORT ASSINIBOINE #1 MT US SCAN , +FTRO2,3,426.7000 ,35.55000 ,-98.02000,MesoWest ,SCAN ,FORT RENO #1 OK US SCAN , +FORP4,3,28.30000 ,18.03333 ,-66.53333,MesoWest ,SCAN ,FORTUNA PR US SCAN , +GVAN6,3,221.0000 ,42.88000 ,-77.03000,MesoWest ,SCAN ,GENEVA #1 NY US SCAN , +GLRM5,3,342.9000 ,47.72000 ,-96.27000,MesoWest ,SCAN ,GLACIAL RIDGE MN US SCAN , +GCPM6,3,97.50000 ,34.25000 ,-89.87000,MesoWest ,SCAN ,GOODWIN CK PASTURE MS US SCAN , +GCTM6,3,97.50000 ,34.23000 ,-89.90000,MesoWest ,SCAN ,GOODWIN CK TIMBER MS US SCAN , +GREU1,3,1251.800 ,39.01667 ,-110.1500,MesoWest ,SCAN ,GREEN RIVER UT US SCAN , +GUIP4,3,1019.600 ,18.15000 ,-66.77000,MesoWest ,SCAN ,GUILARTE FOREST PR US SCAN , +HARA1,3,192.9000 ,34.43000 ,-87.00000,MesoWest ,SCAN ,HARTSELLE USDA AL US SCAN , +WYPN2,3,3013.300 ,36.65810 ,-115.2009,MesoWest ,SCAN ,HAYFORD PEAK NV US SCAN , +HDGA1,3,222.5000 ,34.45000 ,-86.15000,MesoWest ,SCAN ,HODGES AL US SCAN , +HLDU1,3,1445.100 ,39.18333 ,-112.4000,MesoWest ,SCAN ,HOLDEN UT US SCAN , +HUBN3,3,451.1000 ,43.93000 ,-71.72000,MesoWest ,SCAN ,HUBBARD BROOK NH US SCAN , +HTPA1,3,544.1000 ,34.87000 ,-86.10000,MesoWest ,SCAN ,HYTOP AL US SCAN , +ISAP4,3,15.20000 ,18.47000 ,-67.04000,MesoWest ,SCAN ,ISABELA PR US SCAN , +JOFN1,3,1018.300 ,40.37000 ,-101.7200,MesoWest ,SCAN ,JOHNSON FARM NE US SCAN , +JRDM8,3,859.5000 ,47.52000 ,-107.1300,MesoWest ,SCAN ,Jordan MT US SCAN , +KCYN2,3,2137.000 ,36.26530 ,-115.6085,MesoWest ,SCAN ,KYLE CANYON NV US SCAN , +LEHT2,3,1148.200 ,33.63000 ,-102.7500,MesoWest ,SCAN ,LEHMAN TX US SCAN , +LVLT2,3,1069.900 ,33.55000 ,-102.3700,MesoWest ,SCAN ,LEVELLAND TX US SCAN , +S1056,3,2503.900 ,41.36667 ,-111.4833,MesoWest ,SCAN ,LIGHTNING RIDGE UT US SCAN , +LDDW1,3,499.9000 ,47.00000 ,-118.5700,MesoWest ,SCAN ,LIND #1 WA US SCAN , +LDSM8,3,816.9000 ,47.21000 ,-105.1900,MesoWest ,SCAN ,LINDSAY 1 MT US SCAN , +LRVG1,3,106.7000 ,31.50000 ,-83.55000,MesoWest ,SCAN ,LITTLE RIVER GA US SCAN , +LWAO2,3,358.1000 ,34.95000 ,-97.98000,MesoWest ,SCAN ,LITTLE WASHITA #1 OK US SCAN , +LVSA1,3,43.90000 ,32.61000 ,-88.20000,MesoWest ,SCAN ,LIVINGSTON-UWA AL US SCAN , +LSMN2,3,2009.600 ,36.16560 ,-115.6120,MesoWest ,SCAN ,LOVELL SUMMIT NV US SCAN , +LUVN2,3,1199.100 ,40.03000 ,-118.1800,MesoWest ,SCAN ,LOVELOCK NNR NV US SCAN , +LBKV1,3,742.2000 ,43.05000 ,-73.03000,MesoWest ,SCAN ,LYE BROOK VT US SCAN , +LYNO3,3,1247.200 ,42.02000 ,-121.3900,MesoWest ,SCAN ,LYNHART RANCH OR US SCAN , +MHCP1,3,222.5000 ,40.67000 ,-76.67000,MesoWest ,SCAN ,MAHANTANGO CK PA US SCAN , +MAMK2,3,243.8000 ,37.19000 ,-86.04000,MesoWest ,SCAN ,MAMMOTH CAVE KY US SCAN , +MNDN8,3,588.3000 ,46.77000 ,-100.9200,MesoWest ,SCAN ,MANDAN #1 ND US SCAN , +MAFP4,3,746.8000 ,18.15000 ,-67.00000,MesoWest ,SCAN ,MARICAO FOREST PR US SCAN , +MSRN3,3,4.300000 ,43.78000 ,-72.03000,MesoWest ,SCAN ,MASCOMA RIVER NH US SCAN , +MASI2,3,173.7000 ,40.32000 ,-89.90000,MesoWest ,SCAN ,MASON #1 IL US SCAN , +MYZP4,3,9.400000 ,18.21000 ,-67.14000,MesoWest ,SCAN ,MAYAGUEZ TARS PR US SCAN , +MAYM6,3,32.90000 ,32.86000 ,-90.52000,MesoWest ,SCAN ,MAYDAY MS US SCAN , +MCAT1,3,278.3000 ,35.06000 ,-86.59000,MesoWest ,SCAN ,MCALISTER FARM TN US SCAN , +RACU1,3,1621.200 ,37.43333 ,-109.3333,MesoWest ,SCAN ,MCCRACKEN MESA UT US SCAN , +MFRU1,3,1523.100 ,38.33333 ,-113.0000,MesoWest ,SCAN ,MILFORD UT US SCAN , +MSCM8,3,1297.200 ,47.06000 ,-109.9500,MesoWest ,SCAN ,MOCCASIN MT US SCAN , +MOLO1,3,323.1000 ,39.95000 ,-83.45000,MesoWest ,SCAN ,MOLLY CAREN #1 OH US SCAN , +MOIA2,3,40.20000 ,59.68000 ,-151.3700,MesoWest ,SCAN ,MOOSE INC AK US SCAN , +MRGU1,3,1569.400 ,40.98333 ,-111.6667,MesoWest ,SCAN ,MORGAN UT US SCAN , +MMSV1,3,681.5000 ,44.53000 ,-72.83000,MesoWest ,SCAN ,MOUNT MANSFIELD VT US SCAN , +MHMU1,3,2118.400 ,40.36667 ,-110.4000,MesoWest ,SCAN ,MOUNTAIN HOME UT US SCAN , +MVEM7,3,350.5000 ,37.07000 ,-93.88000,MesoWest ,SCAN ,MT VERNON MO US SCAN , +NPAV2,3,158.5000 ,38.23000 ,-78.12000,MesoWest ,SCAN ,N PIEDMONT AREC VA US SCAN , +NESA2,3,126.5000 ,64.69000 ,148.9100 ,MesoWest ,SCAN ,NENANA AK US SCAN , +NPIU1,3,1601.700 ,39.63333 ,-111.8667,MesoWest ,SCAN ,NEPHI UT US SCAN , +NWBA1,3,249.9000 ,34.85000 ,-86.88000,MesoWest ,SCAN ,NEWBY FARM AL US SCAN , +NORM6,3,34.10000 ,33.00000 ,-91.06000,MesoWest ,SCAN ,NORTH ISSAQUENA MS US SCAN , +NUNC2,3,1798.300 ,40.87000 ,-104.7300,MesoWest ,SCAN ,NUNN #1 CO US SCAN , +OONM6,3,30.50000 ,32.75000 ,-90.93000,MesoWest ,SCAN ,ONWARD MS US SCAN , +PDDS1,3,36.60000 ,34.30000 ,-79.73000,MesoWest ,SCAN ,PEE DEE SC US SCAN , +PERM6,3,61.00000 ,33.97000 ,-90.90000,MesoWest ,SCAN ,PERTHSHIRE MS US SCAN , +PHBK1,3,605.3000 ,39.79000 ,-99.33000,MesoWest ,SCAN ,PHILLIPSBURG KS US SCAN , +NUTN2,3,2063.500 ,36.57290 ,-115.2042,MesoWest ,SCAN ,PINE NUT NV US SCAN , +PWDM2,3,32.00000 ,39.02000 ,-76.85000,MesoWest ,SCAN ,POWDER MILL MD US SCAN , +PWGM7,3,292.6000 ,38.87000 ,-94.03000,MesoWest ,SCAN ,POWELL GARDENS MO US SCAN , +PRVT2,3,82.30000 ,30.08000 ,-95.98000,MesoWest ,SCAN ,PRAIRIE VIEW #1 TX US SCAN , +PCEU1,3,1721.200 ,39.51667 ,-110.8000,MesoWest ,SCAN ,PRICE UT US SCAN , +PTNK2,3,187.5000 ,37.10000 ,-87.83000,MesoWest ,SCAN ,PRINCETON #1 KY US SCAN , +REET2,3,1015.900 ,33.62000 ,-102.0400,MesoWest ,SCAN ,REESE CENTER TX US SCAN , +RYCI1,3,1706.900 ,43.07000 ,-116.7500,MesoWest ,SCAN ,REYNOLDS CREEK ID US SCAN , +REYV2,3,343.5000 ,36.63000 ,-80.13000,MesoWest ,SCAN ,REYNOLDS HOMESTEAD VA US SCAN , +RSPP1,3,371.9000 ,40.72000 ,-77.93000,MesoWest ,SCAN ,ROCK SPRINGS PA PA US SCAN , +ROFN1,3,370.3000 ,40.85000 ,-96.47000,MesoWest ,SCAN ,ROGERS FARM #1 NE US SCAN , +SRXM6,3,42.10000 ,33.66000 ,-90.57000,MesoWest ,SCAN ,SANDY RIDGE MS US SCAN , +SCHA2,3,119.8000 ,59.68000 ,-151.3800,MesoWest ,SCAN ,SCHOR GARDEN AK US SCAN , +SCOM6,3,50.30000 ,33.62000 ,-91.10000,MesoWest ,SCAN ,SCOTT MS US SCAN , +SLKF1,3,22.90000 ,29.10000 ,-81.63000,MesoWest ,SCAN ,SELLERS LAKE #1 FL US SCAN , +SHAI4,3,426.7000 ,42.43000 ,-95.77000,MesoWest ,SCAN ,SHAGBARK HILLS IA US SCAN , +SHDV2,3,537.4000 ,37.92000 ,-79.20000,MesoWest ,SCAN ,SHENANDOAH VA US SCAN , +SILM6,3,35.10000 ,33.09000 ,-90.51000,MesoWest ,SCAN ,SILVER CITY MS US SCAN , +SPCM7,3,277.7000 ,40.25000 ,-93.72000,MesoWest ,SCAN ,SPICKARD MO US SCAN , +STAA1,3,193.5000 ,34.43000 ,-86.68000,MesoWest ,SCAN ,STANLEY FARM AL US SCAN , +STKM6,3,103.6000 ,33.63000 ,-88.77000,MesoWest ,SCAN ,STARKVILLE MS US SCAN , +SLFO1,3,204.2000 ,41.80000 ,-81.08000,MesoWest ,SCAN ,SUNLEAF NURSERY OH US SCAN , +TIDN7,3,6.100000 ,35.87000 ,-76.65000,MesoWest ,SCAN ,TIDEWATER #1 NC US SCAN , +TDWV2,3,24.40000 ,36.68000 ,-76.77000,MesoWest ,SCAN ,TIDEWATER AREC VA US SCAN , +TFBM6,3,13.10000 ,30.47000 ,-88.74000,MesoWest ,SCAN ,TNC FORT BAYOU MS US SCAN , +TOSA2,3,496.8000 ,63.35000 ,142.9800 ,MesoWest ,SCAN ,TOK AK US SCAN , +TRGW4,3,1304.500 ,42.07000 ,-104.1300,MesoWest ,SCAN ,TORRINGTON #1 WY US SCAN , +TRUN2,3,2392.100 ,36.37350 ,-115.7813,MesoWest ,SCAN ,TROUGH SPRINGS NV US SCAN , +TNAM6,3,79.20000 ,34.68000 ,-90.42000,MesoWest ,SCAN ,TUNICA MS US SCAN , +TKSA1,3,121.9000 ,32.43000 ,-85.75000,MesoWest ,SCAN ,TUSKEGEE AL US SCAN , +UAPA4,3,70.70000 ,34.25000 ,-92.03000,MesoWest ,SCAN ,UAPB CAMPUS-PB AR US SCAN , +DWTA4,3,60.00000 ,34.28000 ,-91.35000,MesoWest ,SCAN ,UAPB DeWitt AR US SCAN , +POIA4,3,96.00000 ,35.21000 ,-92.92000,MesoWest ,SCAN ,UAPB POINT REMOVE AR US SCAN , +UAEA4,3,64.90000 ,35.28000 ,-90.45000,MesoWest ,SCAN ,UAPB-EARLE AR US SCAN , +LNKA4,3,76.20000 ,34.85000 ,-91.88000,MesoWest ,SCAN ,UAPB-LONOKE FARM AR US SCAN , +UAMA4,3,66.10000 ,34.78000 ,-90.82000,MesoWest ,SCAN ,UAPB-MARIANNA AR US SCAN , +VNCM6,3,45.70000 ,34.07000 ,-90.35000,MesoWest ,SCAN ,VANCE MS US SCAN , +VIOM8,3,983.0000 ,48.44000 ,-111.1800,MesoWest ,SCAN ,VIOLETT MT US SCAN , +WABW3,3,481.6000 ,45.47000 ,-88.58000,MesoWest ,SCAN ,WABENO #1 WI US SCAN , +WAKF1,3,45.70000 ,30.30000 ,-84.42000,MesoWest ,SCAN ,WAKULLA #1 FL US SCAN , +WGHA3,3,1371.600 ,31.73000 ,-110.0500,MesoWest ,SCAN ,WALNUT GULCH #1 AZ US SCAN , +WRMA2,3,384.0000 ,63.95000 ,-145.0800,MesoWest ,SCAN ,WARD FARM AK US SCAN , +WKSG1,3,234.7000 ,33.88000 ,-83.43000,MesoWest ,SCAN ,WATKINSVILLE #1 GA US SCAN , +WSMU1,3,2134.800 ,38.00000 ,-109.1167,MesoWest ,SCAN ,WEST SUMMIT UT US SCAN , +WILN5,3,1382.900 ,33.53000 ,-103.6300,MesoWest ,SCAN ,WILLOW WELLS NM US SCAN , +WTAA1,3,190.5000 ,34.90000 ,-86.53000,MesoWest ,SCAN ,WTARS AL US SCAN , +YMFS1,3,22.90000 ,32.67000 ,-81.20000,MesoWest ,SCAN ,YOUMANS FARM SC US SCAN , +CLR14,3,757.1000 ,35.34896 ,-116.5938,MesoWest ,CLR ,4-Corners CA US CLR , +CLR24,3,1741.900 ,35.52565 ,-116.3671,MesoWest ,CLR ,Avawatz CA US CLR , +CLR03,3,684.6000 ,35.77333 ,-117.7772,MesoWest ,CLR ,Baker CA US CLR , +CLR09,3,718.1000 ,35.27920 ,-116.6475,MesoWest ,CLR ,BYS CA US CLR , +CLR11,3,588.0000 ,34.85341 ,-116.7875,MesoWest ,CLR ,Daggett CA US CLR , +CLR15,3,781.5000 ,35.38396 ,-116.3612,MesoWest ,CLR ,East-Gate CA US CLR , +CLR22,3,1232.000 ,35.51326 ,-116.7595,MesoWest ,CLR ,Gary-Owens CA US CLR , +CLR18,3,1027.200 ,35.30396 ,-116.8032,MesoWest ,CLR ,Goldstone CA US CLR , +CLR21,3,1190.200 ,35.42858 ,-116.5500,MesoWest ,CLR ,Granite-Pass CA US CLR , +CLR16,3,826.6000 ,35.23068 ,-116.5645,MesoWest ,CLR ,Hill-831 CA US CLR , +CLR04,3,864.7000 ,35.87722 ,-117.7364,MesoWest ,CLR ,J75 CA US CLR , +CLR02,3,1724.600 ,36.04722 ,-117.5047,MesoWest ,CLR ,JR CA US CLR , +CLR12,3,668.4000 ,35.20649 ,-116.0009,MesoWest ,CLR ,Langford-Lake CA US CLR , +CLR06,3,1364.000 ,35.48000 ,-117.6839,MesoWest ,CLR ,Laurel CA US CLR , +CLR23,3,1452.100 ,35.36389 ,-116.5479,MesoWest ,CLR ,LFA-12.5 CA US CLR , +CLR20,3,1075.300 ,35.49175 ,-116.4857,MesoWest ,CLR ,Live-Fire CA US CLR , +CLR10,3,766.9000 ,35.26820 ,-116.6858,MesoWest ,CLR ,MPHP CA US CLR , +CLR17,3,947.3000 ,35.41966 ,-116.7596,MesoWest ,CLR ,Nelson-Lake CA US CLR , +CLR08,3,2553.600 ,36.08298 ,-117.4817,MesoWest ,CLR ,Parrot CA US CLR , +CLR05,3,730.3000 ,35.51056 ,-117.2722,MesoWest ,CLR ,RBW CA US CLR , +CLR13,3,683.1000 ,35.25900 ,-116.3736,MesoWest ,CLR ,Red-Pass-Lake CA US CLR , +CLR07,3,959.5000 ,35.31500 ,-117.1192,MesoWest ,CLR ,Superior CA US CLR , +CLR19,3,1030.200 ,35.20473 ,-116.7626,MesoWest ,CLR ,TA-Bravo CA US CLR , +CLR01,3,665.7000 ,35.75889 ,-117.6833,MesoWest ,CLR ,Tower8 CA US CLR , +DMB ,3,7.900000 ,36.61000 ,-121.8700,MesoWest ,BAMI ,BAMI1 CA US BAMI , +M4B ,3,2.100000 ,36.18000 ,-122.4600,MesoWest ,BAMI ,BAMI10 CA US BAMI , +BAM11,3,47.90000 ,36.93000 ,-121.8000,MesoWest ,BAMI ,BAMI11 CA US BAMI , +MBA ,3,22.90000 ,36.62000 ,-121.9000,MesoWest ,BAMI ,BAMI12 CA US BAMI , +MJV ,3,850.1000 ,35.09000 ,-118.1500,MesoWest ,BAMI ,BAMI13 CA US BAMI , +TMR ,3,520.0000 ,36.90000 ,-119.3100,MesoWest ,BAMI ,BAMI14 CA US BAMI , +LHS ,3,79.90000 ,35.62000 ,-119.6900,MesoWest ,BAMI ,BAMI15 CA US BAMI , +TJP ,3,930.9000 ,34.88000 ,-118.9000,MesoWest ,BAMI ,BAMI16 CA US BAMI , +PCP ,3,453.8000 ,37.07000 ,-121.2200,MesoWest ,BAMI ,BAMI17 CA US BAMI , +SVS ,3,25.00000 ,37.34000 ,-120.8300,MesoWest ,BAMI ,BAMI18 CA US BAMI , +ASM ,3,20.10000 ,37.00000 ,-122.0600,MesoWest ,BAMI ,BAMI19 CA US BAMI , +BAMI2,3,50.90000 ,36.69000 ,-121.7600,MesoWest ,BAMI ,BAMI2 CA US BAMI , +LML ,3,335.0000 ,36.95000 ,-122.0700,MesoWest ,BAMI ,BAMI20 CA US BAMI , +GLA ,3,3.000000 ,34.43000 ,-119.8500,MesoWest ,BAMI ,BAMI3 CA US BAMI , +PSGCA,3,10.10000 ,38.77000 ,-121.5200,MesoWest ,BAMI ,BAMI4 CA US BAMI , +BAMI5,3,153.9000 ,40.52000 ,-122.3000,MesoWest ,BAMI ,BAMI5 CA US BAMI , +RMD ,3,110.9000 ,37.95000 ,-122.4000,MesoWest ,BAMI ,BAMI6 CA US BAMI , +PTS ,3,11.90000 ,36.30000 ,-121.8900,MesoWest ,BAMI ,BAMI7 CA US BAMI , +M1B ,3,2.100000 ,36.75000 ,-122.0100,MesoWest ,BAMI ,BAMI8 CA US BAMI , +M2B ,3,2.100000 ,36.69000 ,-122.4000,MesoWest ,BAMI ,BAMI9 CA US BAMI , +SARC ,3,914.4000 ,45.92278 ,-108.2453,MesoWest ,SARC ,SOUTHERN AG. RESEARCH CENTER MT US SARC , +MSI02,3,1545.300 ,40.66810 ,-111.7999,MesoWest ,MSI ,Olympus Cove - MSI UT US MSI , +MSI01,3,1341.100 ,40.72330 ,-111.8591,MesoWest ,MSI ,SUGARHOUSE - MSI UT US MSI , +T130T,3,107.9000 ,47.72600 ,-122.3240,MesoWest ,WA DOT ,130th Street WA US WA DOT , +TAENE,3,725.1000 ,48.66100 ,-119.1980,MesoWest ,WA DOT ,Aeneas Valley Rd WA US WA DOT , +TALPE,3,876.0000 ,47.42700 ,-121.4180,MesoWest ,WA DOT ,Alpental Exit WA US WA DOT , +TALPO,3,541.0000 ,46.43600 ,-117.3500,MesoWest ,WA DOT ,Alpowa Summit WA US WA DOT , +TANAC,3,10.10000 ,48.50800 ,-122.6760,MesoWest ,WA DOT ,Anacortes WA US WA DOT , +TCURT,3,563.9000 ,47.39330 ,-121.4734,MesoWest ,WA DOT ,Asahel Curtis WA US WA DOT , +TBAIN,3,10.10000 ,47.62200 ,-122.5080,MesoWest ,WA DOT ,Bainbridge Island WA US WA DOT , +TBEAR,3,1000.100 ,46.30700 ,-122.3530,MesoWest ,WA DOT ,Bear Creek Bridge WA US WA DOT , +TBLAI,3,0.000000 ,49.00000 ,-122.7352,MesoWest ,WA DOT ,Blaine WA US WA DOT , +TBLEW,3,1250.000 ,47.33480 ,-120.5771,MesoWest ,WA DOT ,Blewett Pass WA US WA DOT , +TBLUE,3,336.8000 ,47.55000 ,-119.4600,MesoWest ,WA DOT ,Blue Lake WA US WA DOT , +TBULL,3,605.9000 ,47.18210 ,-121.0313,MesoWest ,WA DOT ,Bullfrog WA US WA DOT , +TBELL,3,235.0000 ,45.56900 ,-122.2030,MesoWest ,WA DOT ,Cape Horn WA US WA DOT , +TCASH,3,274.0000 ,47.52700 ,-120.4838,MesoWest ,WA DOT ,Cashmere WA US WA DOT , +TCHEL,3,271.9000 ,47.87270 ,-119.9202,MesoWest ,WA DOT ,Chelan WA US WA DOT , +TCLAY,3,670.0000 ,47.98200 ,-117.5600,MesoWest ,WA DOT ,Clayton Rd WA US WA DOT , +TCOSM,3,118.0000 ,46.93400 ,-123.7280,MesoWest ,WA DOT ,Cosmopolis Hill WA US WA DOT , +TCOUL,3,780.9000 ,47.97230 ,-119.1970,MesoWest ,WA DOT ,Coulee Dam West WA US WA DOT , +TDELA,3,280.1000 ,46.49640 ,-117.9716,MesoWest ,WA DOT ,Delaney @ US 12 WA US WA DOT , +TDENN,3,771.1000 ,47.41870 ,-121.4439,MesoWest ,WA DOT ,Denny Creek WA US WA DOT , +TDIAM,3,96.90000 ,48.05020 ,-122.9476,MesoWest ,WA DOT ,Diamond Point WA US WA DOT , +TDODS,3,351.1000 ,47.10360 ,-119.5586,MesoWest ,WA DOT ,Dodson Road WA US WA DOT , +TDRYD,3,321.9000 ,47.55550 ,-120.5866,MesoWest ,WA DOT ,Dryden Road WA US WA DOT , +TEAST,3,801.9000 ,47.26910 ,-121.2392,MesoWest ,WA DOT ,Easton Hill WA US WA DOT , +TSR18,3,143.9000 ,47.50900 ,-121.8850,MesoWest ,WA DOT ,EB I-90 SR-18 Echo Lake WA US WA DOT , +TELKH,3,677.0000 ,47.11300 ,-120.7860,MesoWest ,WA DOT ,Elk Heights WA US WA DOT , +EVPTB,3,7.000000 ,47.64000 ,-122.2590,MesoWest ,WA DOT ,Evergreen Point Floating Bridge WA US WA DOT , +TFAUN,3,4.600000 ,47.52700 ,-122.3900,MesoWest ,WA DOT ,Fauntleroy WA US WA DOT , +TFERR,3,957.1000 ,48.66100 ,-118.8350,MesoWest ,WA DOT ,Ferry County Line WA US WA DOT , +TFRAN,3,829.1000 ,47.42600 ,-121.4320,MesoWest ,WA DOT ,Franklin Falls WA US WA DOT , +TGLAD,3,0.000000 ,46.37790 ,-120.8002,MesoWest ,WA DOT ,Glade Rd WA US WA DOT , +THECK,3,282.9000 ,48.06900 ,-124.0470,MesoWest ,WA DOT ,Heckelville Shed WA US WA DOT , +THOOD,3,0.000000 ,47.86000 ,-122.6230,MesoWest ,WA DOT ,Hood Canal Bridge WA US WA DOT , +THORS,3,374.9000 ,46.04460 ,-119.2246,MesoWest ,WA DOT ,Horse Heaven @ I-82 WA US WA DOT , +TI182,3,252.1000 ,46.25040 ,-119.3695,MesoWest ,WA DOT ,I-182 @ I-82 WA US WA DOT , +TNISQ,3,12.20000 ,47.06720 ,-122.7186,MesoWest ,WA DOT ,I-5 @ Nisqually WA US WA DOT , +TSUNS,3,24.40000 ,47.53200 ,-121.9850,MesoWest ,WA DOT ,I-90 at Sunset WA US WA DOT , +TINDV,3,0.000000 ,48.06910 ,-123.6260,MesoWest ,WA DOT ,Indian Valley @ SR101 WA US WA DOT , +TKEYS,3,3.000000 ,48.15920 ,-122.6716,MesoWest ,WA DOT ,Keystone WA US WA DOT , +TKING,3,10.10000 ,47.79400 ,-122.4940,MesoWest ,WA DOT ,Kingston WA US WA DOT , +TKMMO,3,0.000000 ,46.34560 ,-123.5097,MesoWest ,WA DOT ,KM Mountain WA US WA DOT , +TKNAP,3,405.1000 ,47.78900 ,-120.1340,MesoWest ,WA DOT ,Knapps Tunnel WA US WA DOT , +TSAMI,3,177.1000 ,48.68800 ,-122.4000,MesoWest ,WA DOT ,Lake Samish Park and Ride WA US WA DOT , +TLAUR,3,499.9000 ,48.98900 ,-118.2230,MesoWest ,WA DOT ,Laurier WA US WA DOT , +TLIBE,3,623.6000 ,47.68800 ,-117.0790,MesoWest ,WA DOT ,Liberty Lake at 296 WA US WA DOT , +TMANE,3,768.1000 ,46.88700 ,-120.4270,MesoWest ,WA DOT ,Manastash Ridge Eastbound WA US WA DOT , +TMANW,3,431.9000 ,46.92800 ,-120.5000,MesoWest ,WA DOT ,Manastash Ridge Westbound WA US WA DOT , +TMANS,3,658.1000 ,47.81560 ,-119.3630,MesoWest ,WA DOT ,Mansfield WA US WA DOT , +TMARY,3,0.000000 ,45.69810 ,-120.8147,MesoWest ,WA DOT ,Maryhill WA US WA DOT , +TMEDI,3,729.1000 ,47.59170 ,-117.5621,MesoWest ,WA DOT ,Medical Lake at 272 WA US WA DOT , +TMETH,3,313.9000 ,48.07840 ,-120.0113,MesoWest ,WA DOT ,Methow WA US WA DOT , +TWALK,3,143.0000 ,47.75470 ,-122.8932,MesoWest ,WA DOT ,Mt Walker WA US WA DOT , +TMUKI,3,10.10000 ,47.94900 ,-122.3050,MesoWest ,WA DOT ,Mukilteo WA US WA DOT , +TNACH,3,0.000000 ,46.49230 ,-121.0238,MesoWest ,WA DOT ,Naches Tieton Rd WA US WA DOT , +TNESP,3,594.1000 ,48.20200 ,-119.0040,MesoWest ,WA DOT ,Nespelem WA US WA DOT , +TNWEN,3,0.000000 ,46.42940 ,-120.9119,MesoWest ,WA DOT ,North Wenas Rd WA US WA DOT , +TOLDR,3,0.000000 ,46.32080 ,-120.6883,MesoWest ,WA DOT ,Old River Rd WA US WA DOT , +TOTHE,3,335.0000 ,46.80910 ,-119.1287,MesoWest ,WA DOT ,Othello WA US WA DOT , +TOYST,3,29.90000 ,47.08500 ,-123.0330,MesoWest ,WA DOT ,Oyster Bay Rd WA US WA DOT , +TPALI,3,255.1000 ,47.30190 ,-120.0678,MesoWest ,WA DOT ,Palisades WA US WA DOT , +TPERR,3,0.000000 ,47.65120 ,-117.3973,MesoWest ,WA DOT ,Perry Curves WA US WA DOT , +TPRIC,3,765.0000 ,47.32570 ,-121.3268,MesoWest ,WA DOT ,Price Creek WA US WA DOT , +TGREN,3,27.10000 ,47.30300 ,-124.2500,MesoWest ,WA DOT ,Pt. Grenville WA US WA DOT , +TQUEE,3,21.90000 ,47.53600 ,-124.3330,MesoWest ,WA DOT ,Queets WA US WA DOT , +TQUIN,3,451.1000 ,47.23310 ,-119.9582,MesoWest ,WA DOT ,Quincy Rest Area WA US WA DOT , +TRIVE,3,274.0000 ,48.50040 ,-119.5094,MesoWest ,WA DOT ,Riverside WA US WA DOT , +TCAND,3,167.0000 ,47.03400 ,-123.0970,MesoWest ,WA DOT ,Rock Candy Mountain WA US WA DOT , +TROCK,3,566.0000 ,47.07800 ,-120.7240,MesoWest ,WA DOT ,Rocky Canyon WA US WA DOT , +TRYEG,3,690.1000 ,46.94300 ,-120.1650,MesoWest ,WA DOT ,Ryegrass Summit WA US WA DOT , +TSATU,3,950.1000 ,45.98500 ,-120.6520,MesoWest ,WA DOT ,Satus Pass WA US WA DOT , +T195T,3,14.90000 ,47.76960 ,-122.1906,MesoWest ,WA DOT ,SB I-405 N.E. 195th WA US WA DOT , +T144T,3,66.10000 ,47.47480 ,-122.2704,MesoWest ,WA DOT ,SB I-5 144th WA US WA DOT , +TSEIB,3,86.90000 ,48.09340 ,-123.2719,MesoWest ,WA DOT ,Seibert Creek Bridge WA US WA DOT , +TSELL,3,328.9000 ,46.13140 ,-119.6017,MesoWest ,WA DOT ,Sellards Rd @ SR 221 WA US WA DOT , +TSHER,3,1676.400 ,48.60800 ,-118.4790,MesoWest ,WA DOT ,Sherman Pass WA US WA DOT , +TSILI,3,374.0000 ,47.04300 ,-119.9160,MesoWest ,WA DOT ,Silica Road WA US WA DOT , +THOME,3,341.1000 ,47.44350 ,-121.6694,MesoWest ,WA DOT ,Snoqualmie River Bridge WA US WA DOT , +TSOAP,3,335.9000 ,47.36720 ,-119.4885,MesoWest ,WA DOT ,Soap Lake WA US WA DOT , +TSBLE,3,771.1000 ,47.25310 ,-120.6932,MesoWest ,WA DOT ,South Blewett WA US WA DOT , +TSUMT,3,627.9000 ,46.71370 ,-120.4140,MesoWest ,WA DOT ,South Umtanum Ridge WA US WA DOT , +TSOUT,3,10.10000 ,47.51300 ,-122.4950,MesoWest ,WA DOT ,Southworth WA US WA DOT , +TSPAN,3,744.9000 ,47.44920 ,-117.3853,MesoWest ,WA DOT ,Spangle WA US WA DOT , +TSPA1,3,609.0000 ,47.62500 ,-117.5351,MesoWest ,WA DOT ,Spokane Int AP WA US WA DOT , +T2195,3,579.1000 ,47.65200 ,-117.4310,MesoWest ,WA DOT ,SR 2/SR 195 Int. (Garden Springs WA US WA DOT , +TNINE,3,0.000000 ,47.77700 ,-117.5440,MesoWest ,WA DOT ,SR 291 Nine Mile WA US WA DOT , +THAST,3,0.000000 ,47.71600 ,-117.4216,MesoWest ,WA DOT ,SR 395 @ Hastings Rd WA US WA DOT , +TRITZ,3,555.7000 ,47.11200 ,-118.3950,MesoWest ,WA DOT ,SR 395 Ritzville WA US WA DOT , +T902I,3,725.1000 ,47.61000 ,-117.5210,MesoWest ,WA DOT ,SR 902 Interchange WA US WA DOT , +T904I,3,709.0000 ,47.46200 ,-117.7510,MesoWest ,WA DOT ,SR 904 Interchange WA US WA DOT , +TSR24,3,385.0000 ,46.53440 ,-119.8797,MesoWest ,WA DOT ,SR24 @ SR241 WA US WA DOT , +TCAMP,3,0.000000 ,47.14020 ,-123.8923,MesoWest ,WA DOT ,State Camp Hill WA US WA DOT , +TSTEV,3,1225.000 ,47.74590 ,-121.0891,MesoWest ,WA DOT ,Stevens Pass WA US WA DOT , +TSUMA,3,11.00000 ,48.99200 ,-122.2720,MesoWest ,WA DOT ,Sumas WA US WA DOT , +TTIET,3,0.000000 ,46.59300 ,-120.6358,MesoWest ,WA DOT ,Tieton Drive WA US WA DOT , +TUNIN,3,815.0000 ,46.51720 ,-117.0811,MesoWest ,WA DOT ,Uniontown WA US WA DOT , +TYACL,3,491.0000 ,46.04560 ,-120.5671,MesoWest ,WA DOT ,US97 @ Yakima County Line WA US WA DOT , +TVANT,3,206.0000 ,46.95560 ,-119.9485,MesoWest ,WA DOT ,Vantage WA US WA DOT , +TSWAN,3,299.0000 ,46.38240 ,-120.7412,MesoWest ,WA DOT ,W.White Swan WA US WA DOT , +TWARD,3,346.9000 ,47.08500 ,-119.0060,MesoWest ,WA DOT ,Warden Interchange WA US WA DOT , +TWAST,3,0.000000 ,47.62680 ,-117.5072,MesoWest ,WA DOT ,Waste-Energy Plant WA US WA DOT , +TWATE,3,658.1000 ,47.65040 ,-120.1475,MesoWest ,WA DOT ,Waterville WA US WA DOT , +TTANN,3,248.1000 ,47.47300 ,-121.7420,MesoWest ,WA DOT ,WB I-90 near Tanner Crossing WA US WA DOT , +TWHIT,3,1313.100 ,46.63800 ,-121.3900,MesoWest ,WA DOT ,White Pass Summit WA US WA DOT , +TWINT,3,643.1000 ,47.72920 ,-120.7391,MesoWest ,WA DOT ,Winton WA US WA DOT , +ALPW1,3,1645.900 ,47.44000 ,-121.4200,MesoWest ,NWAVAL ,Alpental Ski Area WA US NWAVAL , +ALP31,3,951.0000 ,47.44000 ,-121.4200,MesoWest ,NWAVAL ,Alpental-base WA US NWAVAL , +ALP55,3,1684.900 ,47.44000 ,-121.4400,MesoWest ,NWAVAL ,Alpental-Denny Mtn WA US NWAVAL , +MU101,3,3078.500 ,46.83560 ,-121.7320,MesoWest ,NWAVAL ,Camp Muir-Mt. Rainier WA US NWAVAL , +CHP56,3,1695.000 ,46.87000 ,-121.5200,MesoWest ,NWAVAL ,Chinook Pass WA US NWAVAL , +CHPW1,3,1902.000 ,46.87000 ,-121.5200,MesoWest ,NWAVAL ,Chinook Pass WA US NWAVAL , +CHP62,3,1902.000 ,46.88000 ,-121.5200,MesoWest ,NWAVAL ,Chinook Pass 1km N WA US NWAVAL , +MSHW1,3,975.1000 ,46.32000 ,-121.3200,MesoWest ,NWAVAL ,Coldwater Mt. St. Helens WA US NWAVAL , +MSH32,3,975.1000 ,46.30000 ,-122.2600,MesoWest ,NWAVAL ,Coldwater Ridge-Mt St Helens WA US NWAVAL , +CRAO3,3,1951.000 ,42.91000 ,-122.1400,MesoWest ,NWAVAL ,Crater Lake WA US NWAVAL , +CMTW1,3,2094.000 ,46.94000 ,-121.4700,MesoWest ,NWAVAL ,Crystal Mountain WA US NWAVAL , +CMT44,3,1356.100 ,46.94000 ,-121.4700,MesoWest ,NWAVAL ,Crystal Mtn-base WA US NWAVAL , +CMT69,3,2094.000 ,46.94000 ,-121.5000,MesoWest ,NWAVAL ,Crystal Mtn-top WA US NWAVAL , +DIR60,3,1825.500 ,47.86700 ,-120.8170,MesoWest ,NWAVAL ,Dirty Face Mtn WA US NWAVAL , +GOV36,3,1097.300 ,45.30200 ,-121.7750,MesoWest ,NWAVAL ,Government Camp - Base OR US NWAVAL , +GOV50,3,1524.000 ,45.28800 ,-121.7810,MesoWest ,NWAVAL ,Government Camp - Top OR US NWAVAL , +HUR52,3,1570.000 ,47.97200 ,-123.5030,MesoWest ,NWAVAL ,Hurricane Ridge WA US NWAVAL , +SNO37,3,1128.100 ,47.35900 ,-121.3620,MesoWest ,NWAVAL ,Keechelus Snowshed WA US NWAVAL , +LAK19,3,585.2000 ,47.81700 ,-120.7330,MesoWest ,NWAVAL ,Lake Wenatchee State Park WA US NWAVAL , +MAZW1,3,670.9000 ,48.59000 ,-120.4000,MesoWest ,NWAVAL ,Mazama WA US NWAVAL , +MAZ22,3,670.9000 ,48.59000 ,-120.4000,MesoWest ,NWAVAL ,Mazama WA US NWAVAL , +MSRW1,3,2054.100 ,47.28000 ,-120.4100,MesoWest ,NWAVAL ,Mission Ridge WA US NWAVAL , +MSR53,3,1615.100 ,47.28000 ,-120.4100,MesoWest ,NWAVAL ,Mission Ridge-mid WA US NWAVAL , +MSR67,3,2054.100 ,47.27000 ,-120.4400,MesoWest ,NWAVAL ,Mission Ridge-top WA US NWAVAL , +MBKW1,3,1286.000 ,48.86500 ,-121.6820,MesoWest ,NWAVAL ,Mount Baker WA US NWAVAL , +BAK42,3,1286.000 ,48.86500 ,-121.6780,MesoWest ,NWAVAL ,Mount Baker WA US NWAVAL , +BAK50,3,1524.000 ,48.85300 ,-121.6780,MesoWest ,NWAVAL ,Mount Baker-Panorama Dome WA US NWAVAL , +MHM52,3,1599.900 ,45.33100 ,-121.6500,MesoWest ,NWAVAL ,Mount Hood Meadows - Base OR US NWAVAL , +MHM66,3,2012.000 ,45.34600 ,-121.6710,MesoWest ,NWAVAL ,Mount Hood Meadows - Top OR US NWAVAL , +PVCW1,3,1676.100 ,46.79000 ,-121.7300,MesoWest ,NWAVAL ,Paradise Mt. Rainier WA US NWAVAL , +PVC55,3,1676.100 ,46.78000 ,-121.7400,MesoWest ,NWAVAL ,Paradise-Mt. Rainier WA US NWAVAL , +SNO30,3,914.1000 ,47.42000 ,-121.4100,MesoWest ,NWAVAL ,Snoqualmie Pass WA US NWAVAL , +STSW1,3,1218.900 ,47.73000 ,-121.1100,MesoWest ,NWAVAL ,Stevens Pass Highway WA US NWAVAL , +SK9W1,3,1585.000 ,47.75000 ,-121.1100,MesoWest ,NWAVAL ,Stevens Pass Ski Area WA US NWAVAL , +STB49,3,1492.900 ,47.74000 ,-121.1100,MesoWest ,NWAVAL ,Stevens Pass-Brooks Chair WA US NWAVAL , +STBRK,3,1492.900 ,47.74000 ,-121.1100,MesoWest ,NWAVAL ,Stevens Pass-Brooks Chair WA US NWAVAL , +STD43,3,1310.900 ,47.74000 ,-121.0950,MesoWest ,NWAVAL ,Stevens Pass-Daisy Chair WA US NWAVAL , +STG48,3,1463.000 ,47.74000 ,-121.1100,MesoWest ,NWAVAL ,Stevens Pass-Grace Lakes WA US NWAVAL , +ST9W1,3,1450.900 ,47.74000 ,-121.1100,MesoWest ,NWAVAL ,Stevens Pass-Grace Lakes WA US NWAVAL , +STSCH,3,1218.900 ,47.75000 ,-121.0900,MesoWest ,NWAVAL ,Stevens Pass-Schmidt Haus WA US NWAVAL , +STP40,3,1218.900 ,47.75000 ,-121.0900,MesoWest ,NWAVAL ,Stevens Pass-Schmidt Haus WA US NWAVAL , +STSKY,3,1573.100 ,47.74000 ,-121.1100,MesoWest ,NWAVAL ,Stevens Pass-Skyline Express Cha WA US NWAVAL , +STS52,3,1573.100 ,47.74000 ,-121.1100,MesoWest ,NWAVAL ,Stevens Pass-Skyline Express Cha WA US NWAVAL , +STT54,3,1645.900 ,47.73000 ,-121.0870,MesoWest ,NWAVAL ,Stevens Pass-Tye Mill Chair WA US NWAVAL , +SNOW1,3,1157.900 ,47.43000 ,-121.4100,MesoWest ,NWAVAL ,Summit West Ski Area WA US NWAVAL , +SNO38,3,1157.900 ,47.42000 ,-121.4300,MesoWest ,NWAVAL ,Summit West-top WA US NWAVAL , +SUN69,3,2103.100 ,46.92000 ,-121.6380,MesoWest ,NWAVAL ,Sunrise-Mt. Rainier WA US NWAVAL , +SUN64,3,1951.000 ,46.91530 ,-121.6422,MesoWest ,NWAVAL ,Sunrise-Mt. Rainier WA US NWAVAL , +TIM60,3,1829.100 ,45.33200 ,-121.7130,MesoWest ,NWAVAL ,Timberline Lodge - Base OR US NWAVAL , +TIM70,3,2133.900 ,45.34500 ,-121.7120,MesoWest ,NWAVAL ,Timberline Lodge - Top OR US NWAVAL , +TUM43,3,1303.900 ,47.61000 ,-120.7000,MesoWest ,NWAVAL ,Tumwater Mt. Leavenworth WA US NWAVAL , +WAP55,3,1676.100 ,48.52770 ,-120.6500,MesoWest ,NWAVAL ,Washington Pass WA US NWAVAL , +WAP66,3,2021.100 ,48.53320 ,-120.6497,MesoWest ,NWAVAL ,Washington Pass-Ridge to N WA US NWAVAL , +WHTW1,3,1829.100 ,46.62000 ,-121.4200,MesoWest ,NWAVAL ,White Pass WA US NWAVAL , +WPS45,3,1371.900 ,46.64000 ,-121.3900,MesoWest ,NWAVAL ,White Pass-base WA US NWAVAL , +WPS59,3,1801.100 ,46.62000 ,-121.3900,MesoWest ,NWAVAL ,White Pass-top WA US NWAVAL , +HBENT,3,321.9000 ,46.29000 ,-119.6080,MesoWest ,HMMN ,Benton City WA US HMMN , +HBVLY,3,168.9000 ,46.75200 ,-119.9440,MesoWest ,HMMN ,Beverly WA US HMMN , +HEDNA,3,125.0000 ,46.58700 ,-119.3970,MesoWest ,HMMN ,Edna WA US HMMN , +HGABL,3,331.0000 ,46.59800 ,-119.4600,MesoWest ,HMMN ,Gable Mountain WA US HMMN , +HGABW,3,149.0000 ,46.61200 ,-119.5580,MesoWest ,HMMN ,Gable West WA US HMMN , +HHAMR,3,137.2000 ,46.35600 ,-119.3260,MesoWest ,HMMN ,Hammer WA US HMMN , +HHMS ,3,223.1000 ,46.56300 ,-119.5990,MesoWest ,HMMN ,Hanford WA US HMMN , +H100A,3,139.9000 ,46.68900 ,-119.5510,MesoWest ,HMMN ,Hanford 100 WA US HMMN , +H100F,3,125.0000 ,46.63500 ,-119.4520,MesoWest ,HMMN ,Hanford 100F Area WA US HMMN , +H100K,3,136.9000 ,46.65700 ,-119.5780,MesoWest ,HMMN ,Hanford 100K Area WA US HMMN , +H200E,3,207.0000 ,46.55600 ,-119.5210,MesoWest ,HMMN ,Hanford 200 East Area WA US HMMN , +H200W,3,198.1000 ,46.54300 ,-119.6630,MesoWest ,HMMN ,Hanford 200 West Area WA US HMMN , +HPFP ,3,206.0000 ,46.54500 ,-119.6330,MesoWest ,HMMN ,Hanford 200 West Area #2 WA US HMMN , +H300A,3,118.9000 ,46.36400 ,-119.2860,MesoWest ,HMMN ,Hanford 300 Area WA US HMMN , +HARMY,3,171.9000 ,46.48900 ,-119.5510,MesoWest ,HMMN ,Hanford Army Loop Road WA US HMMN , +HEOC ,3,378.0000 ,46.39200 ,-119.5370,MesoWest ,HMMN ,Hanford Emergency Operations Cen WA US HMMN , +HFFTF,3,174.0000 ,46.43000 ,-119.3600,MesoWest ,HMMN ,Hanford Fast Flux Test Facility WA US HMMN , +HFRNK,3,267.0000 ,46.41700 ,-119.2380,MesoWest ,HMMN ,Hanford Franklin County WA US HMMN , +HWPPS,3,136.9000 ,46.47000 ,-119.3450,MesoWest ,HMMN ,Hanford Nuclear WNP-2 WA US HMMN , +HVSTA,3,153.0000 ,46.21800 ,-119.2010,MesoWest ,HMMN ,Kennewick Vista Field WA US HMMN , +HPASC,3,125.0000 ,46.25700 ,-119.1140,MesoWest ,HMMN ,Pasco Airport WA US HMMN , +HPROS,3,146.0000 ,46.39200 ,-119.4120,MesoWest ,HMMN ,Prosser Barricade (Hanford) WA US HMMN , +HRMTN,3,1085.100 ,46.39400 ,-119.5930,MesoWest ,HMMN ,Rattlesnake Mountain WA US HMMN , +HRSPG,3,207.0000 ,46.50600 ,-119.7000,MesoWest ,HMMN ,Rattlesnake Springs WA US HMMN , +HRICH,3,118.9000 ,46.30100 ,-119.3010,MesoWest ,HMMN ,Richland Airport WA US HMMN , +HRING,3,189.0000 ,46.54500 ,-119.2380,MesoWest ,HMMN ,Ringold WA US HMMN , +HSURF,3,106.7000 ,45.74400 ,-120.2180,MesoWest ,HMMN ,Roosevelt WA US HMMN , +HVERN,3,131.1000 ,46.64100 ,-119.7280,MesoWest ,HMMN ,Vernita Bridge (Hanford) WA US HMMN , +HWYEB,3,167.9000 ,46.48200 ,-119.3910,MesoWest ,HMMN ,Wye Barricade (Hanford) WA US HMMN , +HYAKB,3,242.0000 ,46.57800 ,-119.7260,MesoWest ,HMMN ,Yakima Barricade (Hanford) WA US HMMN , +AZM07,3,655.0000 ,33.95000 ,-113.1900,MesoWest ,AZMET ,Aguila AZ US AZMET , +AZM09,3,1346.000 ,32.46000 ,-109.9300,MesoWest ,AZMET ,Bonita AZ US AZMET , +AZM26,3,303.9000 ,33.40000 ,-112.6800,MesoWest ,AZMET ,Buckeye AZ US AZMET , +AZM05,3,422.1000 ,32.98000 ,-111.6000,MesoWest ,AZMET ,Coolidge AZ US AZMET , +AZM17,3,163.1000 ,32.99000 ,-113.5000,MesoWest ,AZMET ,Dateland AZ US AZMET , +AZM27,3,518.2000 ,33.68800 ,-111.9650,MesoWest ,AZMET ,Desert Ridge AZ US AZMET , +AZM16,3,460.9000 ,32.77000 ,-111.5600,MesoWest ,AZMET ,Eloy AZ US AZMET , +AZM30,3,2056.500 ,35.20972 ,-111.5792,MesoWest ,AZMET ,Flagstaff AZ US AZMET , +AZM23,3,349.9000 ,33.48000 ,-113.1200,MesoWest ,AZMET ,Harquahala AZ US AZMET , +AZM21,3,314.9000 ,33.38000 ,-112.1500,MesoWest ,AZMET ,Laveen AZ US AZMET , +AZM11,3,309.1000 ,33.47000 ,-112.4000,MesoWest ,AZMET ,Litchfield AZ US AZMET , +AZM13,3,601.1000 ,32.46000 ,-111.2300,MesoWest ,AZMET ,Marana AZ US AZMET , +AZM06,3,360.9000 ,33.07000 ,-111.9700,MesoWest ,AZMET ,Maricopa AZ US AZMET , +AZM29,3,366.4000 ,33.38670 ,-111.8675,MesoWest ,AZMET ,Mesa AZ US AZMET , +AZM20,3,146.0000 ,34.97000 ,-114.6100,MesoWest ,AZMET ,Mohave AZ US AZMET , +AZM28,3,150.6000 ,34.93056 ,-114.5639,MesoWest ,AZMET ,Mojave #2 AZ US AZMET , +AZM19,3,219.2000 ,32.93000 ,-112.9000,MesoWest ,AZMET ,Paloma AZ US AZMET , +AZM08,3,93.90000 ,33.88000 ,-114.4500,MesoWest ,AZMET ,Parker AZ US AZMET , +AZM32,3,1478.000 ,34.22528 ,-111.3442,MesoWest ,AZMET ,Payson AZ US AZMET , +AZM15,3,335.0000 ,33.48000 ,-112.1000,MesoWest ,AZMET ,Phoenix Encanto AZ US AZMET , +AZM12,3,401.1000 ,33.62000 ,-112.1100,MesoWest ,AZMET ,Phoenix Greenway AZ US AZMET , +AZM31,3,1582.500 ,34.59194 ,-112.4197,MesoWest ,AZMET ,Prescott AZ US AZMET , +AZM22,3,430.1000 ,33.26000 ,-111.6400,MesoWest ,AZMET ,Queen Creek AZ US AZMET , +AZM24,3,91.10000 ,32.74000 ,-113.9600,MesoWest ,AZMET ,Roll AZ US AZMET , +AZM04,3,901.0000 ,32.81000 ,-109.6800,MesoWest ,AZMET ,Safford AZ US AZMET , +AZM18,3,469.1000 ,33.64000 ,-111.9000,MesoWest ,AZMET ,Scottsdale AZ US AZMET , +AZM01,3,712.9000 ,32.28000 ,-110.9500,MesoWest ,AZMET ,Tucson AZ US AZMET , +AZM10,3,406.9000 ,33.62000 ,-112.4600,MesoWest ,AZMET ,Waddell AZ US AZMET , +AZM03,3,57.90000 ,32.61000 ,-114.6300,MesoWest ,AZMET ,Yuma Mesa AZ US AZMET , +AZM14,3,43.90000 ,32.74000 ,-114.5300,MesoWest ,AZMET ,Yuma North Gila AZ US AZMET , +AZM02,3,32.00000 ,32.71000 ,-114.7100,MesoWest ,AZMET ,Yuma Valley AZ US AZMET , +WISHW,3,182.0000 ,45.66400 ,-121.0000,MesoWest ,WAAQ ,1 MI W OF WISHRAM OFF HWY 14 WA US WAAQ , +ANABA,3,4.900000 ,48.47000 ,-122.5600,MesoWest ,WAAQ ,ANACORTES BARTHOLOMEW AVE WA US WAAQ , +BARNG,3,224.9000 ,47.77000 ,-121.4800,MesoWest ,WAAQ ,Baring WA US WAAQ , +BCCW1,3,130.1000 ,47.59000 ,-122.1500,MesoWest ,WAAQ ,Bellevue Community College WA US WAAQ , +BLGYE,3,36.00000 ,48.76000 ,-122.4400,MesoWest ,WAAQ ,BELLINGHAM YEW STREET WA US WAAQ , +BRYNT,3,73.20000 ,47.67000 ,-122.2900,MesoWest ,WAAQ ,Bryant School WA US WAAQ , +BURMA,3,113.4000 ,46.20000 ,-119.0080,MesoWest ,WAAQ ,BURBANK - 755 MAPLE STREET WA US WAAQ , +PTAMA,3,3.000000 ,48.13300 ,-123.4640,MesoWest ,WAAQ ,DAISHOWA AMERICA MET SITE 1815 M WA US WAAQ , +ENU21,3,195.1000 ,47.21000 ,-122.0600,MesoWest ,WAAQ ,ENUMCLAW 212TH SE WA US WAAQ , +ENUMU,3,303.9000 ,47.14100 ,-121.9330,MesoWest ,WAAQ ,ENUMCLAW MUD MOUNTAIN ROAD WA US WAAQ , +EVTHO,3,39.90000 ,47.94000 ,-122.2200,MesoWest ,WAAQ ,EVERETT HOYT AVENUE WA US WAAQ , +HDRVR,3,100.0000 ,45.69000 ,-121.5500,MesoWest ,WAAQ ,Hood River WA US WAAQ , +KNTJC,3,20.10000 ,47.39000 ,-122.2300,MesoWest ,WAAQ ,KENT JAMES ST AND CENTRAL AVENUE WA US WAAQ , +SILVR,3,14.90000 ,47.66300 ,-122.6850,MesoWest ,WAAQ ,KITSAP COUNTY FIRE STATION #51 WA US WAAQ , +LACCO,3,60.00000 ,47.03000 ,-122.8200,MesoWest ,WAAQ ,LACEY COLLEGE STREET MT VIEW EL WA US WAAQ , +LFPBO,3,11.90000 ,47.75000 ,-122.2800,MesoWest ,WAAQ ,LAKE FOREST PARK TOWNE CENTER WA US WAAQ , +LYN21,3,100.6000 ,47.80700 ,-122.3160,MesoWest ,WAAQ ,LYNNWOOD - SNOHOMISH PUD WA US WAAQ , +MRVJH,3,7.000000 ,48.06000 ,-122.1700,MesoWest ,WAAQ ,MARYSVILLE JUNIOR HIGH SCHOOL WA US WAAQ , +SOMTN,3,914.1000 ,47.32000 ,-123.3500,MesoWest ,WAAQ ,MASON COUNTY 20 MI NW OF SHELTON WA US WAAQ , +MCLUR,3,116.1000 ,47.64000 ,-122.3600,MesoWest ,WAAQ ,McClure High School WA US WAAQ , +MEAKI,3,50.90000 ,47.63000 ,-122.6400,MesoWest ,WAAQ ,MEADOWDALE KITSAP COUNTY WA US WAAQ , +MONIT,3,228.9000 ,47.48000 ,-120.4000,MesoWest ,WAAQ ,Monitor WA US WAAQ , +MTZIO,3,141.1000 ,45.57000 ,-122.2000,MesoWest ,WAAQ ,MT ZION GRAVEL RD OFF HWY 14 WA US WAAQ , +NBDNB,3,139.9000 ,47.49000 ,-121.7700,MesoWest ,WAAQ ,NORTH BEND SE NORTH BEND WAY WA US WAAQ , +POUFJ,3,3.000000 ,47.73000 ,-122.6400,MesoWest ,WAAQ ,POULSBO 6TH AVENUE & FJORD DR WA US WAAQ , +PUYSO,3,134.1000 ,47.22000 ,-122.3000,MesoWest ,WAAQ ,PUYALLUP SOUTH HILL WA US WAAQ , +TACLS,3,103.6000 ,47.18630 ,-122.4516,MesoWest ,WAAQ ,S END NEIGHBORHOOD CENTER WA US WAAQ , +SEAOL,3,7.600000 ,47.61300 ,-122.3300,MesoWest ,WAAQ ,SEATTLE - OLIVE AND BOREN WA US WAAQ , +SEABE,3,91.10000 ,47.57000 ,-122.3100,MesoWest ,WAAQ ,SEATTLE BEACON HILL RESERVOIR WA US WAAQ , +SEADU,3,14.90000 ,47.56000 ,-122.3400,MesoWest ,WAAQ ,SEATTLE DUWAMISH EAST MARGINAL WA US WAAQ , +SEASA,3,7.900000 ,47.69000 ,-122.2500,MesoWest ,WAAQ ,SEATTLE SAND POINT WAY NE WA US WAAQ , +SPOFE,3,588.0000 ,47.66000 ,-117.3600,MesoWest ,WAAQ ,SPOKANE E FERRY WA US WAAQ , +SPORC,3,530.0000 ,47.74000 ,-117.4100,MesoWest ,WAAQ ,SPOKANE N COUNTRY HOMES BLVD WA US WAAQ , +SPOMO,3,638.9000 ,47.70000 ,-117.4200,MesoWest ,WAAQ ,SPOKANE N MONROE ST WA US WAAQ , +TACNE,3,128.0000 ,47.28000 ,-122.3700,MesoWest ,WAAQ ,TACOMA 27TH ST NE & 54TH AVE NE WA US WAAQ , +TACAL,3,3.000000 ,47.27000 ,-122.3800,MesoWest ,WAAQ ,TACOMA ALEXANDER AVE WA US WAAQ , +TACE1,3,10.10000 ,47.25000 ,-122.4400,MesoWest ,WAAQ ,TACOMA E 11TH ST (FS#12)" WA US WAAQ , +TACIN,3,157.9000 ,47.30000 ,-122.4100,MesoWest ,WAAQ ,TACOMA INDIAN HILL RESERVOIR WA US WAAQ , +UWASH,3,57.90000 ,47.65000 ,-122.3100,MesoWest ,WAAQ ,UNIVERSITY OF WASHINGTON WA US WAAQ , +VANHW,3,61.00000 ,45.66000 ,-122.6500,MesoWest ,WAAQ ,VANCOUVER ROSS SUBSTATION NE 54 WA US WAAQ , +WOODI,3,41.10000 ,45.89000 ,-122.7900,MesoWest ,WAAQ ,WOODLAND DIKE ROAD WA US WAAQ , +BCI09,3,2143.100 ,43.78000 ,-116.1000,MesoWest ,KBCI ,Bogus Basin ID US KBCI , +BCI13,3,2238.200 ,45.00000 ,-116.1300,MesoWest ,KBCI ,Brundage ID US KBCI , +BCI01,3,716.0000 ,43.65000 ,-116.6500,MesoWest ,KBCI ,Caldwell D&B Supply ID US KBCI , +BCI14,3,1455.100 ,44.50000 ,-116.0300,MesoWest ,KBCI ,Cascade ID US KBCI , +BCI08,3,725.1000 ,43.90000 ,-116.5100,MesoWest ,KBCI ,Emmett - Youth Ranch ID US KBCI , +BCI07,3,682.1000 ,43.60000 ,-116.9200,MesoWest ,KBCI ,Homedale Paul's Market ID US KBCI , +BCI02,3,914.1000 ,43.57000 ,-116.1500,MesoWest ,KBCI ,Ice World ID US KBCI , +BCI05,3,786.1000 ,43.63000 ,-116.4800,MesoWest ,KBCI ,Idaho Center ID US KBCI , +BCI03,3,794.9000 ,43.62000 ,-116.3700,MesoWest ,KBCI ,Meridian D&B Supply ID US KBCI , +BCI10,3,951.9000 ,43.12000 ,-115.6800,MesoWest ,KBCI ,Mtn. Home D&B Supply ID US KBCI , +BCI11,3,833.0000 ,43.50000 ,-116.5300,MesoWest ,KBCI ,Nampa D&B Supply ID US KBCI , +BCI06,3,655.0000 ,44.00000 ,-116.9900,MesoWest ,KBCI ,Ontario D&B Supply ID US KBCI , +BCI12,3,655.0000 ,44.08000 ,-116.9300,MesoWest ,KBCI ,Payette - Youth Ranch ID US KBCI , +BCI15,3,537.1000 ,45.49000 ,-116.3300,MesoWest ,KBCI ,Riggins ID US KBCI , +BCI04,3,837.9000 ,43.60000 ,-116.2500,MesoWest ,KBCI ,Statesman ID US KBCI , +BCI16,3,2189.100 ,44.25000 ,-116.9700,MesoWest ,KBCI ,Weiser - Champion/Redman ID US KBCI , +AMBC1,3,2115.000 ,39.16361 ,-120.2386,MesoWest ,CNRFC ,ALPINE MEADOWS CA US CNRFC , +ALMN2,3,1877.600 ,39.46472 ,-119.8725,MesoWest ,CNRFC ,ALUM CREEK NV US CNRFC , +ACUN2,3,2447.900 ,39.18000 ,-119.8556,MesoWest ,CNRFC ,ASH CANYON UPPER NV US CNRFC , +BLYN2,3,1661.200 ,40.43333 ,-116.0000,MesoWest ,CNRFC ,BAILEY NV US CNRFC , +BRTC1,3,495.0000 ,32.68056 ,-116.6694,MesoWest ,CNRFC ,BARRET LAKE CA US CNRFC , +BNRC1,3,683.1000 ,38.91556 ,-122.7722,MesoWest ,CNRFC ,BERINGER VINEYARD CA US CNRFC , +BLUC1,3,1609.000 ,39.28333 ,-120.7000,MesoWest ,CNRFC ,BLUE CANYON (BUREC) CA US CNRFC , +BHCC1,3,22.90000 ,38.54694 ,-121.3378,MesoWest ,CNRFC ,BRANCH CENTER CA US CNRFC , +BUCC1,3,536.1000 ,39.91667 ,-121.3333,MesoWest ,CNRFC ,BUCKS CREEK CA US CNRFC , +CRSC1,3,305.1000 ,37.61667 ,-121.5500,MesoWest ,CNRFC ,CARNEGIE SVRA CA US CNRFC , +CAPN2,3,1435.900 ,39.19611 ,-119.7336,MesoWest ,CNRFC ,CARSON CITY AIRPORT NV US CNRFC , +CCUN2,3,2371.000 ,39.08944 ,-119.8892,MesoWest ,CNRFC ,CLEAR CREEK UPPER (NV) NV US CNRFC , +CSKC1,3,898.9000 ,40.26667 ,-124.2500,MesoWest ,CNRFC ,COOSKIE MOUNTAIN (BLM) CA US CNRFC , +BASC1,3,1049.100 ,37.28333 ,-119.5333,MesoWest ,CNRFC ,CRANE VALLEY (PGE) NV US CNRFC , +CRLO3,3,1973.900 ,42.90000 ,-122.1333,MesoWest ,CNRFC ,CRATER LAKE OR (CO-OP) OR US CNRFC , +DRSC1,3,609.6000 ,39.31667 ,-121.1000,MesoWest ,CNRFC ,DORRIS RANCH (CDF) CA US CNRFC , +DRCC1,3,43.00000 ,38.74889 ,-121.2803,MesoWest ,CNRFC ,DRY CK - ROYER PARK CA US CNRFC , +DYCN2,3,1450.900 ,39.45111 ,-119.7981,MesoWest ,CNRFC ,DRY CREEK NV US CNRFC , +ECUN2,3,2481.100 ,39.43278 ,-119.9022,MesoWest ,CNRFC ,EVANS CREEK UPPER NV US CNRFC , +FSLC1,3,167.9000 ,38.69167 ,-121.1300,MesoWest ,CNRFC ,FOLSOM LAKE - DYKE 8 CA US CNRFC , +FWPC1,3,128.9000 ,38.68667 ,-121.1494,MesoWest ,CNRFC ,FOLSOM WATER TREATMENT PLANT CA US CNRFC , +GCPN2,3,1932.100 ,39.35444 ,-119.8575,MesoWest ,CNRFC ,GALENA CK - GALENA STATE PARK NV US CNRFC , +GTWC1,3,990.9000 ,38.91667 ,-120.7667,MesoWest ,CNRFC ,GEORGETOWN RANGER STATION CA US CNRFC , +GNFC1,3,1951.000 ,36.56667 ,-118.7833,MesoWest ,CNRFC ,GIANT FOREST (COE) CA US CNRFC , +GINC1,3,2194.900 ,37.76667 ,-119.7733,MesoWest ,CNRFC ,GIN FLAT CA US CNRFC , +HATC1,3,919.0000 ,40.93333 ,-121.5500,MesoWest ,CNRFC ,HAT CREEK PH #1 (PGE) CA US CNRFC , +HYKC1,3,708.1000 ,40.55000 ,-123.1650,MesoWest ,CNRFC ,HAYFORK(RAWS) CA US CNRFC , +HDVN2,3,1622.100 ,39.47944 ,-119.7436,MesoWest ,CNRFC ,HIDDEN VALLEY NV US CNRFC , +JNDC1,3,1432.900 ,35.97167 ,-118.5450,MesoWest ,CNRFC ,JOHNSONDALE(RAWS) CA US CNRFC , +JUMN2,3,1853.200 ,39.29611 ,-119.7197,MesoWest ,CNRFC ,JUMBO GRADE NV US CNRFC , +KSYC1,3,413.9000 ,38.99500 ,-122.8583,MesoWest ,CNRFC ,KELSEYVILLE CA US CNRFC , +KCNN2,3,2268.000 ,39.16250 ,-119.8369,MesoWest ,CNRFC ,KINGS CANYON NORTH UPPER NV US CNRFC , +LKEC1,3,408.1000 ,39.00806 ,-122.9003,MesoWest ,CNRFC ,LAKEPORT CA US CNRFC , +LNCC1,3,46.00000 ,38.90417 ,-121.3500,MesoWest ,CNRFC ,LINCOLN WTP CA US CNRFC , +ALHC1,3,152.4000 ,35.70250 ,-119.9533,MesoWest ,CNRFC ,LOST HILLS CA US CNRFC , +MVRC1,3,846.1000 ,40.46333 ,-123.5239,MesoWest ,CNRFC ,MAD RIVER(RAWS) CA US CNRFC , +MRIC1,3,640.1000 ,37.49500 ,-119.9858,MesoWest ,CNRFC ,MARIPOSA R S (CDF) CA US CNRFC , +COUC1,3,750.1000 ,37.65278 ,-120.0883,MesoWest ,CNRFC ,MERCED RIVER (BLM) CA US CNRFC , +MINC1,3,1485.900 ,40.35000 ,-121.6000,MesoWest ,CNRFC ,MINERAL CA US CNRFC , +MITC1,3,2956.900 ,36.73333 ,-118.7167,MesoWest ,CNRFC ,MITCHELL MEADOW CA US CNRFC , +MNRN2,3,2535.900 ,39.32917 ,-119.8872,MesoWest ,CNRFC ,MOUNT ROSE SKI NV US CNRFC , +NPYC1,3,6.100000 ,38.30833 ,-122.2867,MesoWest ,CNRFC ,NAPA CORPORATION YARD CA US CNRFC , +MBKC1,3,2484.100 ,37.08111 ,-118.8619,MesoWest ,CNRFC ,NF KINGS - MEADOW BROOK CA US CNRFC , +PCHC1,3,1049.100 ,38.75000 ,-120.5000,MesoWest ,CNRFC ,PACIFIC HOUSE CA US CNRFC , +TMPC1,3,11.90000 ,38.11694 ,-122.8572,MesoWest ,CNRFC ,PACIFIC OCEAN - TOMASINI POINT CA US CNRFC , +PSCC1,3,2783.100 ,35.96667 ,-118.3500,MesoWest ,CNRFC ,PASCOES CA US CNRFC , +PVEN2,3,1749.600 ,39.56611 ,-119.8619,MesoWest ,CNRFC ,PEAVINE EAST NV US CNRFC , +PTBC1,3,3.000000 ,38.23833 ,-122.6367,MesoWest ,CNRFC ,PETALUMA - LYNCH CK CA US CNRFC , +PSTC1,3,1706.900 ,38.18694 ,-120.0056,MesoWest ,CNRFC ,PINECREST (PGE) CA US CNRFC , +PTRC1,3,878.1000 ,40.98333 ,-121.5000,MesoWest ,CNRFC ,PIT P H #1 (PGE) CA US CNRFC , +PRPC1,3,444.1000 ,40.98333 ,-121.9833,MesoWest ,CNRFC ,PIT P H #5 (PGE) CA US CNRFC , +PLKC1,3,1829.100 ,39.72500 ,-122.8500,MesoWest ,CNRFC ,PLASKETT MEADOWS CA US CNRFC , +PREC1,3,24.40000 ,38.10056 ,-122.9303,MesoWest ,CNRFC ,POINT REYES CA US CNRFC , +PORC1,3,438.9000 ,39.36667 ,-123.1264,MesoWest ,CNRFC ,POTTER VALLEY DIVERSION CA US CNRFC , +RLYC1,3,1015.000 ,34.60000 ,-119.2000,MesoWest ,CNRFC ,ROSE VALLEY CA US CNRFC , +RTPC1,3,116.1000 ,38.72500 ,-121.2167,MesoWest ,CNRFC ,ROSEVILLE WATER TRMT PLT CA US CNRFC , +SAPC1,3,6.100000 ,38.69833 ,-121.5936,MesoWest ,CNRFC ,SACRAMENTO METRO AIRPORT CA US CNRFC , +SMTC1,3,7.900000 ,38.58333 ,-121.5000,MesoWest ,CNRFC ,SACRAMENTO POST OFFICE CA US CNRFC , +SPGC1,3,1128.100 ,38.50000 ,-120.2167,MesoWest ,CNRFC ,SALT SPRINGS P H (PGE) CA US CNRFC , +SCVC1,3,427.0000 ,39.07722 ,-122.9453,MesoWest ,CNRFC ,SCOTTS VALLEY CA US CNRFC , +SODC1,3,2098.900 ,39.31917 ,-120.3667,MesoWest ,CNRFC ,SIERRA SNOW LAB CA US CNRFC , +LSPC1,3,1571.900 ,39.31667 ,-120.6333,MesoWest ,CNRFC ,SOUTH YUBA - LANGS CROSSING CA US CNRFC , +SCFN2,3,1670.000 ,40.80444 ,-115.6814,MesoWest ,CNRFC ,SPRING CREEK FS/55 NV US CNRFC , +SFBC1,3,1553.900 ,38.16667 ,-120.1000,MesoWest ,CNRFC ,SPRING GAP FOREBAY (PGE) CA US CNRFC , +SPNC1,3,1241.100 ,36.20000 ,-118.6500,MesoWest ,CNRFC ,SPRINGVILLE(PG&E) CA US CNRFC , +STZC1,3,3151.900 ,36.93333 ,-118.5667,MesoWest ,CNRFC ,STATE LAKES CA US CNRFC , +STAN2,3,1900.100 ,38.96667 ,-119.9478,MesoWest ,CNRFC ,STATELINE NV US CNRFC , +SYFC1,3,356.0000 ,39.38333 ,-122.5500,MesoWest ,CNRFC ,STONYFORD(RAWS) CA US CNRFC , +THLN2,3,1841.000 ,39.39111 ,-119.8381,MesoWest ,CNRFC ,THOMAS CK - RENO (LOWER) NV US CNRFC , +TOQN2,3,745.5000 ,36.91667 ,-114.7667,MesoWest ,CNRFC ,TOQUOP WASH NV US CNRFC , +TRCC1,3,1786.100 ,39.28806 ,-120.2044,MesoWest ,CNRFC ,TRUCKEE - TRUCKEE: NR CA US CNRFC , +UTYC1,3,3463.100 ,36.63333 ,-118.3667,MesoWest ,CNRFC ,UPPER TYNDALL CREEK (COE) CA US CNRFC , +WSHN2,3,2407.900 ,39.15000 ,-117.2583,MesoWest ,CNRFC ,WASHINGTON CREEK NV US CNRFC , +WCKC1,3,2606.000 ,37.01667 ,-118.9167,MesoWest ,CNRFC ,WEST WOODCHUCK MEADOW CA US CNRFC , +WTMC1,3,2728.000 ,36.35000 ,-118.5667,MesoWest ,CNRFC ,WET MEADOWS (COE) CA US CNRFC , +WDFC1,3,1737.100 ,38.76528 ,-119.8069,MesoWest ,CNRFC ,WOODFORDS CA US CNRFC , +WDDC1,3,21.00000 ,38.68833 ,-121.7947,MesoWest ,CNRFC ,WOODLAND CA US CNRFC , +CBS ,3,3250.100 ,38.88700 ,-106.9480,MesoWest ,GRAND ,Crested Butte Snow CO US GRAND , +CBW ,3,3707.000 ,38.88300 ,-106.9430,MesoWest ,GRAND ,Crested Butte Wind CO US GRAND , +LIZP ,3,3505.200 ,37.81100 ,-107.9060,MesoWest ,GRAND ,Lizard Head Pass CO US GRAND , +TAONM,3,3661.300 ,36.57443 ,-105.4533,MesoWest ,GRAND ,Taos Ski Valley NM US GRAND , +TELL ,3,3627.100 ,37.91600 ,-107.8220,MesoWest ,GRAND ,Telluride Ski Resort CO US GRAND , +BOUNT,3,1539.200 ,40.86030 ,-111.8644,MesoWest ,KSL ,BOUNTIFUL UT US KSL , +BBN ,3,1521.000 ,40.89000 ,-111.8500,MesoWest ,KSL ,BOUNTIFUL BENCH UT US KSL , +BBSBT,3,2743.200 ,42.97011 ,-110.6192,MesoWest ,BTAVAL ,Blind Bull Summit WY US BTAVAL , +BOXBT,3,2026.900 ,42.87700 ,-110.7180,MesoWest ,BTAVAL ,BOX Y RANCH WY US BTAVAL , +BROBT,3,2846.800 ,43.73300 ,-110.0100,MesoWest ,BTAVAL ,BROOKS LAKE LODGE WY US BTAVAL , +DEABT,3,3154.700 ,43.01000 ,-110.6650,MesoWest ,BTAVAL ,DEADMAN PEAK WY US BTAVAL , +GROBT,3,3163.800 ,43.72217 ,-110.2575,MesoWest ,BTAVAL ,Grouse Mountain WY US BTAVAL , +JHA ,3,2652.100 ,43.61000 ,-110.8400,MesoWest ,BTAVAL ,JACKSON HOLE-APRES WY US BTAVAL , +JHB ,3,1932.100 ,43.58000 ,-110.8500,MesoWest ,BTAVAL ,JACKSON HOLE-BASE WY US BTAVAL , +JHMWY,3,2493.000 ,43.59000 ,-110.8400,MesoWest ,BTAVAL ,JACKSON HOLE-MID MT WY US BTAVAL , +JHR ,3,2852.900 ,43.60000 ,-110.8500,MesoWest ,BTAVAL ,JACKSON HOLE-RAYMER WY US BTAVAL , +JHS ,3,3144.900 ,43.59000 ,-110.8500,MesoWest ,BTAVAL ,JACKSON HOLE-SUMMIT WY US BTAVAL , +LAVBT,3,3179.100 ,43.66000 ,-110.0210,MesoWest ,BTAVAL ,LAVA MOUNTAIN WY US BTAVAL , +MCOBT,3,3313.200 ,42.63653 ,-110.6355,MesoWest ,BTAVAL ,Mount Coffin WY US BTAVAL , +SNKWY,3,2380.500 ,43.46310 ,-110.7630,MesoWest ,BTAVAL ,SNOW KING WY US BTAVAL , +COWBT,3,2654.800 ,43.82600 ,-110.1890,MesoWest ,BTAVAL ,Togwotee Mountain Lodge WY US BTAVAL , +ODT39,3,136.9000 ,45.71260 ,-120.2001,MesoWest ,ODOT ,Arlington OR (I-84 MP 137.5) - N OR US ODOT , +ODT21,3,1295.400 ,45.27070 ,-118.9778,MesoWest ,ODOT ,Battle Mountain (US 395 MP 39.7) OR US ODOT , +ODT30,3,1081.100 ,44.08954 ,-121.3067,MesoWest ,ODOT ,Bend (US 97 MP 134) OR US ODOT , +ODT01,3,1082.000 ,44.07790 ,-121.3043,MesoWest ,ODOT ,Bend Parkway / North Canal (US 9 OR US ODOT , +ODT55,3,1226.500 ,45.20790 ,-121.6980,MesoWest ,ODOT ,Blue Box Pass (US 26 MP 63.4) OR US ODOT , +ODT04,3,1499.600 ,42.34287 ,-121.3991,MesoWest ,ODOT ,Bly Mountain (Ore 140 MP 30.6) OR US ODOT , +ODT46,3,198.1000 ,46.17100 ,-123.4402,MesoWest ,ODOT ,Bradley Wayside (US 30 MP 74.9) OR US ODOT , +ODT15,3,326.1000 ,45.37585 ,-122.0353,MesoWest ,ODOT ,Brightwood Weigh Station (US 26 OR US ODOT , +ODT37,3,1389.900 ,43.57617 ,-119.9341,MesoWest ,ODOT ,Buck Creek (US 20 MP 68) OR US ODOT , +ODT59,3,1524.000 ,42.38400 ,-122.2373,MesoWest ,ODOT ,Butte Creek (OR 140 MP 35.0) OR US ODOT , +ODT61,3,1274.100 ,42.43300 ,-122.1499,MesoWest ,ODOT ,Butte Creek Ice Sign E (OR 140 M OR US ODOT , +ODT60,3,914.4000 ,42.38940 ,-122.4726,MesoWest ,ODOT ,Butte Creek Ice Sign W (OR 140 M OR US ODOT , +ODT77,3,442.0000 ,43.06517 ,-123.6495,MesoWest ,ODOT ,Camas Mountain (OR 42 MP 57.5) OR US ODOT , +ODT63,3,38.10000 ,45.34213 ,-122.6349,MesoWest ,ODOT ,Canemah (OR 99E MP 14) OR US ODOT , +ODT16,3,68.60000 ,45.64340 ,-120.9794,MesoWest ,ODOT ,Celilo West of The Dalles (I-84 OR US ODOT , +ODT67,3,866.9000 ,45.23400 ,-120.1850,MesoWest ,ODOT ,Condon: OR (Ore 19 MP 40.8) OR US ODOT , +ODT36,3,947.9000 ,44.89445 ,-120.9373,MesoWest ,ODOT ,Cow Canyon (US 97 MP 68.9) OR US ODOT , +ODT72,3,7.600000 ,43.98460 ,-124.0455,MesoWest ,ODOT ,Cushman (OR 126 MP 3) OR US ODOT , +ODT45,3,1603.300 ,43.12670 ,-122.1322,MesoWest ,ODOT ,Diamond Lake (Ore 138 MP 83) OR US ODOT , +ODT70,3,1456.900 ,42.35260 ,-121.9826,MesoWest ,ODOT ,Doak Mountain (OR 140 MP 53.8) OR US ODOT , +ODT47,3,152.4000 ,44.82414 ,-123.0185,MesoWest ,ODOT ,Enchanted Way/South Salem (I-5 M OR US ODOT , +ODT11,3,30.50000 ,45.53913 ,-122.6813,MesoWest ,ODOT ,Fremont Bridge East (I-405 MP 3) OR US ODOT , +ODT10,3,30.50000 ,45.53685 ,-122.6844,MesoWest ,ODOT ,Fremont Bridge West (I-405 MP 3. OR US ODOT , +ODT08,3,16.80000 ,45.59142 ,-122.5472,MesoWest ,ODOT ,Glen Jackson Bridge North Channe OR US ODOT , +ODT07,3,16.80000 ,45.57434 ,-122.5471,MesoWest ,ODOT ,Glen Jackson Bridge South Channe OR US ODOT , +ODT69,3,18.30000 ,42.42890 ,-124.4131,MesoWest ,ODOT ,Gold Beach (US 101 MP 327.6 OR US ODOT , +ODT75,3,1216.200 ,45.30100 ,-121.7420,MesoWest ,ODOT ,Government Camp (US-26 MP 54.2) OR US ODOT , +ODT23,3,499.9000 ,42.33000 ,-123.5914,MesoWest ,ODOT ,Hayes Hill (US 199 MP 16.4) OR US ODOT , +ODT28,3,136.6000 ,42.96320 ,-123.8470,MesoWest ,ODOT ,Highway 42 at Coos County Line ( OR US ODOT , +ODT33,3,1268.000 ,43.90014 ,-120.9872,MesoWest ,ODOT ,Horse Ridge (US 20 MP 21) OR US ODOT , +ODT58,3,15.20000 ,42.68630 ,-124.4460,MesoWest ,ODOT ,Humbug Mt. (US 101 MP 306) OR US ODOT , +ODT14,3,82.30000 ,45.50245 ,-122.5650,MesoWest ,ODOT ,I-205 at Division (I-205 MP 19.6 OR US ODOT , +ODT06,3,22.90000 ,45.62139 ,-122.6732,MesoWest ,ODOT ,Interstate Bridge North Span (I- OR US ODOT , +ODT05,3,22.90000 ,45.61737 ,-122.6756,MesoWest ,ODOT ,Interstate Bridge South Span (I- OR US ODOT , +ODT17,3,93.00000 ,45.72930 ,-120.6523,MesoWest ,ODOT ,John Day River Bridge (I-84 MP 1 OR US ODOT , +ODT42,3,824.5000 ,45.19405 ,-120.6964,MesoWest ,ODOT ,Kent (US 97 MP 40.9) OR US ODOT , +ODT35,3,1332.900 ,44.55176 ,-120.0436,MesoWest ,ODOT ,Keys Butte (HWY 41 MP 74) OR US ODOT , +ODT18,3,883.9000 ,45.23230 ,-118.0134,MesoWest ,ODOT ,Ladd Canyon at Charles Reynolds OR US ODOT , +ODT19,3,1106.400 ,45.18780 ,-117.9920,MesoWest ,ODOT ,Ladd Canyon at the Summit (I-84 OR US ODOT , +ODT68,3,957.1000 ,45.21470 ,-118.0255,MesoWest ,ODOT ,Ladd Creek (I-84 MP 270.9) OR US ODOT , +ODT62,3,1402.100 ,43.67410 ,-121.5011,MesoWest ,ODOT ,LaPine (US 97 MP 167) OR US ODOT , +ODT02,3,1356.400 ,43.90870 ,-121.3563,MesoWest ,ODOT ,Lava Butte (US 97 MP 151) OR US ODOT , +ODT44,3,399.3000 ,45.71220 ,-118.9962,MesoWest ,ODOT ,Lorenzen Road (I-84 MP 198.5) OR US ODOT , +ODT40,3,1136.600 ,45.51190 ,-118.4250,MesoWest ,ODOT ,Meacham OR (I-84 MP 238.3) - NOA OR US ODOT , +ODT26,3,414.5000 ,42.33090 ,-122.8708,MesoWest ,ODOT ,Medford Viaduct (I-5 MP 28.9) OR US ODOT , +ODT76,3,108.2000 ,46.19510 ,-123.8515,MesoWest ,ODOT ,Megler Bridge (US-101 MP 2) OR US ODOT , +ODT71,3,1264.900 ,42.44413 ,-121.8681,MesoWest ,ODOT ,Modoc Point (US 97 MP 257.9) OR US ODOT , +ODT66,3,551.1000 ,45.48400 ,-120.7312,MesoWest ,ODOT ,Moro: OR (US 97 MP 18.2) OR US ODOT , +ODT43,3,1060.700 ,44.99000 ,-120.8491,MesoWest ,ODOT ,Mount Identifier (US 97 MP 61.6) OR US ODOT , +ODT57,3,189.0000 ,45.07230 ,-123.7162,MesoWest ,ODOT ,Murphy Hill (OR 18 MP 15.4) OR US ODOT , +ODT48,3,73.20000 ,44.67004 ,-123.0594,MesoWest ,ODOT ,North Albany (I-5 MP 236) OR US ODOT , +ODT56,3,997.6000 ,45.01380 ,-117.9168,MesoWest ,ODOT ,North Powder (I-84 MP 288.6) OR US ODOT , +ODT25,3,518.2000 ,42.00130 ,-123.7226,MesoWest ,ODOT ,OBrien (US 199 MP 41) OR US ODOT , +ODT54,3,1124.100 ,44.13167 ,-119.9663,MesoWest ,ODOT ,Paulina OR (Ore 380 MP 55.5) OR US ODOT , +ODT27,3,27.40000 ,42.74310 ,-124.4900,MesoWest ,ODOT ,Port Orford (US 101 MP 301.5) OR US ODOT , +ODT09,3,350.5000 ,45.84190 ,-123.5185,MesoWest ,ODOT ,Quartz Creek Bridge (US 26 MP 24 OR US ODOT , +ODT53,3,937.9000 ,44.25410 ,-121.1485,MesoWest ,ODOT ,Redmond Airport (US 97 MP 123.2) OR US ODOT , +ODT64,3,7.600000 ,45.96500 ,-123.9242,MesoWest ,ODOT ,Seaside Flood Warning (US 101 MP OR US ODOT , +ODT24,3,603.5000 ,42.60050 ,-123.3835,MesoWest ,ODOT ,Sexton Summit (I-5 MP 69) OR US ODOT , +ODT34,3,1018.000 ,45.00345 ,-120.7529,MesoWest ,ODOT ,Shaniko (US 97 MP 56) OR US ODOT , +ODT22,3,1310.600 ,42.06320 ,-122.6031,MesoWest ,ODOT ,Siskiyou Summit (I-5 MP 4.5) OR US ODOT , +ODT52,3,973.8000 ,44.29540 ,-121.5591,MesoWest ,ODOT ,Sisters (US 20 MP 100.0) OR US ODOT , +ODT32,3,1054.600 ,44.42594 ,-121.7287,MesoWest ,ODOT ,Suttle Lake (US 20 MP 87) OR US ODOT , +ODT13,3,237.7000 ,45.75952 ,-123.3009,MesoWest ,ODOT ,Timber Junction (US 26 MP 37.7) OR US ODOT , +ODT50,3,1292.400 ,44.39565 ,-122.1420,MesoWest ,ODOT ,Tombstone Summit (US 20 MP 64) OR US ODOT , +ODT73,3,829.1000 ,45.29510 ,-118.0383,MesoWest ,ODOT ,Traffic Gate at Union Interchang OR US ODOT , +ODT74,3,829.1000 ,45.29230 ,-118.0339,MesoWest ,ODOT ,Traffic Gate at Union Interchang OR US ODOT , +ODT29,3,9.100000 ,45.54514 ,-122.3863,MesoWest ,ODOT ,Troutdale (I-84 MP 17.5) OR US ODOT , +ODT51,3,1318.000 ,42.48310 ,-120.2825,MesoWest ,ODOT ,Valley Falls (US 395 MP 121) OR US ODOT , +ODT31,3,1829.100 ,43.98314 ,-121.5803,MesoWest ,ODOT ,Wanoga Butte (HWY 372 MP 17) OR US ODOT , +ODT49,3,219.5000 ,43.75070 ,-123.1145,MesoWest ,ODOT ,Wards Butte / Cottage Grove (I-5 OR US ODOT , +ODT41,3,335.3000 ,45.60870 ,-120.7248,MesoWest ,ODOT ,Wasco Junction (US 97 MP 7.5) OR US ODOT , +ODT20,3,728.5000 ,44.49618 ,-117.3677,MesoWest ,ODOT ,Weatherby Rest Area (I-84 MP 336 OR US ODOT , +ODT03,3,1548.400 ,43.59775 ,-122.0349,MesoWest ,ODOT ,Willamette Pass (Ore 58 MP 62.3) OR US ODOT , +ODT38,3,36.60000 ,44.62370 ,-124.0584,MesoWest ,ODOT ,Yaquina Bridge Wind Alert (US 10 OR US ODOT , +ODT65,3,36.60000 ,44.62280 ,-124.0573,MesoWest ,ODOT ,Yaquina Bridge Wind Alert 2 (US OR US ODOT , +ODT12,3,182.9000 ,45.50690 ,-122.7192,MesoWest ,ODOT ,Zoo Bridge (US 26 MP 72) OR US ODOT , +CMP01,3,1051.600 ,37.36417 ,-115.1633,MesoWest ,CEMP ,Alamo NV US CEMP , +CMP02,3,739.1000 ,36.56889 ,-116.4589,MesoWest ,CEMP ,Amargosa Valley NV US CEMP , +CMP03,3,979.9000 ,36.91250 ,-116.7556,MesoWest ,CEMP ,Beatty NV US CEMP , +CMP04,3,734.6000 ,35.98500 ,-114.8414,MesoWest ,CEMP ,Boulder City NV US CEMP , +CMP05,3,1335.000 ,37.61288 ,-114.5140,MesoWest ,CEMP ,Caliente NV US CEMP , +CMP06,3,1796.800 ,37.66611 ,-113.0728,MesoWest ,CEMP ,Cedar City UT US CEMP , +CMP08,3,1412.800 ,39.35306 ,-112.5783,MesoWest ,CEMP ,Delta UT US CEMP , +CMP25,3,1905.000 ,39.29361 ,-114.8369,MesoWest ,CEMP ,Ely NV US CEMP , +CMP07,3,1574.600 ,38.03417 ,-115.4378,MesoWest ,CEMP ,Garden Valley NV US CEMP , +CMP09,3,1714.500 ,37.71333 ,-117.2403,MesoWest ,CEMP ,Goldfield NV US CEMP , +CMP10,3,667.5000 ,36.00750 ,-114.9656,MesoWest ,CEMP ,Henderson NV US CEMP , +CMP11,3,963.2000 ,36.57444 ,-115.6758,MesoWest ,CEMP ,Indian Springs NV US CEMP , +CMP12,3,620.3000 ,36.11389 ,-115.1478,MesoWest ,CEMP ,Las Vegas NV US CEMP , +CMP13,3,1364.000 ,37.40233 ,-115.5383,MesoWest ,CEMP ,Medlins Ranch NV US CEMP , +CMP27,3,538.6000 ,36.81444 ,-114.0503,MesoWest ,CEMP ,Mesquite NV US CEMP , +CMP14,3,1524.600 ,38.39389 ,-113.0128,MesoWest ,CEMP ,Milford UT US CEMP , +CMP15,3,1470.700 ,38.24833 ,-115.7289,MesoWest ,CEMP ,Nyala NV US CEMP , +CMP16,3,384.0000 ,36.54583 ,-114.4456,MesoWest ,CEMP ,Overton NV US CEMP , +CMP17,3,804.7000 ,36.22111 ,-115.9953,MesoWest ,CEMP ,Pahrump NV US CEMP , +CMP18,3,1777.000 ,37.93694 ,-114.4514,MesoWest ,CEMP ,Pioche NV US CEMP , +CMP19,3,1478.300 ,37.64333 ,-115.7392,MesoWest ,CEMP ,Rachel NV US CEMP , +CMP20,3,1224.100 ,37.27944 ,-117.0233,MesoWest ,CEMP ,Sarcobatus Flats NV US CEMP , +CMP28,3,462.4000 ,35.95970 ,-116.2619,MesoWest ,CEMP ,Shoshone CA US CEMP , +CMP21,3,819.9000 ,37.10306 ,-113.5683,MesoWest ,CEMP ,St. George UT US CEMP , +CMP22,3,1767.800 ,38.21167 ,-116.6261,MesoWest ,CEMP ,Stone Cabin NV US CEMP , +CMP23,3,1862.300 ,38.06583 ,-117.2256,MesoWest ,CEMP ,Tonopah NV US CEMP , +CMP24,3,1541.100 ,38.20389 ,-116.1761,MesoWest ,CEMP ,Twin Springs NV US CEMP , +CMP26,3,2301.200 ,38.19167 ,-116.4178,MesoWest ,CEMP ,Warm Springs Summit NV US CEMP , +LANL2,3,1996.100 ,35.82580 ,-106.2228,MesoWest ,LANL ,LANLTA54 NM US LANL , +LANL1,3,2263.100 ,35.86140 ,-106.3218,MesoWest ,LANL ,LANLTA6 NM US LANL , +LANL6,3,3157.700 ,35.88642 ,-106.3948,MesoWest ,LANL ,PAJARITO MTN NM US LANL , +LANL3,3,2107.400 ,35.87639 ,-106.2959,MesoWest ,LANL ,TA41 NM US LANL , +LANL4,3,2147.300 ,35.81328 ,-106.2988,MesoWest ,LANL ,TA49 NM US LANL , +LANL5,3,2130.600 ,35.87011 ,-106.2209,MesoWest ,LANL ,TA53 NM US LANL , +GSE01,3,1432.600 ,37.38360 ,-111.0326,MesoWest ,GSE ,40 MILE RIDGE UT US GSE , +GSE13,3,1859.300 ,37.46430 ,-112.0491,MesoWest ,GSE ,BETWEEN THE CREEKS UT US GSE , +GSE05,3,1999.500 ,37.50520 ,-111.5793,MesoWest ,GSE ,BIG SAGE UT US GSE , +GSE09,3,1719.100 ,37.21480 ,-111.9026,MesoWest ,GSE ,BRIGHAM PLAINS UT US GSE , +GSE10,3,1755.700 ,37.07890 ,-112.0472,MesoWest ,GSE ,BUCKSKIN MOUNTAIN UT US GSE , +GSE08,3,1999.500 ,37.90930 ,-111.1170,MesoWest ,GSE ,CIRCLE CLIFFS UT US GSE , +GSE19,3,1783.100 ,37.84790 ,-111.3715,MesoWest ,GSE ,Deer Creek Climate Station UT US GSE , +GSE14,3,2121.400 ,37.32320 ,-112.1835,MesoWest ,GSE ,DEER SPRINGS POINT UT US GSE , +GSE07,3,1804.400 ,37.77380 ,-111.6159,MesoWest ,GSE ,ESCALANTE OFFICE UT US GSE , +GSE15,3,1877.600 ,37.34370 ,-111.6784,MesoWest ,GSE ,FOUR MILE BENCH UT US GSE , +GSE04,3,1438.700 ,37.13630 ,-111.2160,MesoWest ,GSE ,GRAND BENCH UT US GSE , +GSE18,3,1493.500 ,37.03573 ,-112.5297,MesoWest ,GSE ,KANAB UT US GSE , +GSE03,3,2267.700 ,37.29700 ,-111.1398,MesoWest ,GSE ,LAKE UT US GSE , +GSE17,3,2145.800 ,37.60340 ,-111.8749,MesoWest ,GSE ,MUD SPRINGS UT US GSE , +GSE12,3,1950.700 ,37.19050 ,-112.1919,MesoWest ,GSE ,NEPHI UT US GSE , +GSE02,3,1743.500 ,37.73590 ,-111.0869,MesoWest ,GSE ,SILVER FALLS UT US GSE , +GSE11,3,1706.900 ,37.20190 ,-111.4635,MesoWest ,GSE ,SMOKY MOUNTAIN UT US GSE , +GSE16,3,1627.600 ,37.51480 ,-111.2614,MesoWest ,GSE ,SUNSET UT US GSE , +GSE06,3,2084.800 ,37.89150 ,-111.4693,MesoWest ,GSE ,WILLOW GULCH UT US GSE , +4UT01,3,1630.700 ,40.82944 ,-111.8822,MesoWest ,4UTAH ,NORTH SALT LAKE BENCH UT US 4UTAH , +MWQAR,3,136.9000 ,45.71260 ,-120.1986,MesoWest ,PDTWFO ,Arlington OR US PDTWFO , +MWQRL,3,107.0000 ,45.74100 ,-120.0300,MesoWest ,PDTWFO ,Arlington 8ENE OR US PDTWFO , +MWQBS,3,182.9000 ,46.54200 ,-119.2340,MesoWest ,PDTWFO ,Basin City 5SW WA US PDTWFO , +KBDN ,3,1053.100 ,44.09480 ,-121.2006,MesoWest ,PDTWFO ,Bend Airport AWOS OR US PDTWFO , +MWQBR,3,100.9000 ,45.89780 ,-119.4611,MesoWest ,PDTWFO ,Boardman OR US PDTWFO , +MWQEE,3,609.9000 ,47.19700 ,-120.9590,MesoWest ,PDTWFO ,Cle Elum WA US PDTWFO , +MWQCM,3,640.1000 ,47.20470 ,-120.9758,MesoWest ,PDTWFO ,Cle Elum 2NW WA US PDTWFO , +MWQCN,3,859.5000 ,45.23160 ,-120.1820,MesoWest ,PDTWFO ,Condon OR US PDTWFO , +MWQCR,3,1360.000 ,43.43000 ,-121.7000,MesoWest ,PDTWFO ,Crescent OR US PDTWFO , +MWQDT,3,495.9000 ,46.32000 ,-117.9700,MesoWest ,PDTWFO ,Dayton WA US PDTWFO , +MWQ10,3,210.0000 ,45.86000 ,-119.4200,MesoWest ,PDTWFO ,Depot NE OR US PDTWFO , +MWQ11,3,195.1000 ,45.85000 ,-119.4500,MesoWest ,PDTWFO ,Depot NW OR US PDTWFO , +MWQ12,3,198.1000 ,45.85000 ,-119.4300,MesoWest ,PDTWFO ,Depot S OR US PDTWFO , +MWQYC,3,409.0000 ,46.84310 ,-120.4627,MesoWest ,PDTWFO ,Ellensburg 13S Yakima Canyon WA US PDTWFO , +MWQIA,3,127.1000 ,46.43900 ,-119.0090,MesoWest ,PDTWFO ,Eltopia WA US PDTWFO , +MWQGV,3,253.9000 ,46.25300 ,-119.8940,MesoWest ,PDTWFO ,Grandview WA US PDTWFO , +MWQHP,3,609.9000 ,45.36140 ,-119.5635,MesoWest ,PDTWFO ,Heppner OR US PDTWFO , +MWQWC,3,657.2000 ,45.34000 ,-119.5500,MesoWest ,PDTWFO ,Heppner-Willow Creek Dam OR US PDTWFO , +MWQ08,3,146.0000 ,45.87000 ,-119.3100,MesoWest ,PDTWFO ,Hermiston N OR US PDTWFO , +MWQ06,3,207.0000 ,45.89000 ,-119.3400,MesoWest ,PDTWFO ,Hermiston NW OR US PDTWFO , +MWQ09,3,180.1000 ,45.81000 ,-119.3700,MesoWest ,PDTWFO ,Hermiston SW OR US PDTWFO , +MWQ07,3,159.1000 ,45.84000 ,-119.3400,MesoWest ,PDTWFO ,Hermiston W OR US PDTWFO , +KQHD ,3,192.0000 ,45.67260 ,-121.5364,MesoWest ,PDTWFO ,Hood River Airport AWOS OR US PDTWFO , +MWQHR,3,1268.000 ,43.90000 ,-120.9900,MesoWest ,PDTWFO ,Horse Ridge OR US PDTWFO , +MWQIM,3,833.9000 ,45.46210 ,-117.9665,MesoWest ,PDTWFO ,Imbler HS OR US PDTWFO , +MWQ02,3,100.9000 ,45.89000 ,-119.5000,MesoWest ,PDTWFO ,Irrigon Middle School OR US PDTWFO , +MWQ01,3,100.9000 ,45.90000 ,-119.4600,MesoWest ,PDTWFO ,Irrigon SE OR US PDTWFO , +MWQ03,3,103.9000 ,45.88000 ,-119.5400,MesoWest ,PDTWFO ,Irrigon SW OR US PDTWFO , +MWQJD,3,1128.100 ,44.42000 ,-118.9400,MesoWest ,PDTWFO ,John Day AWOS OR US PDTWFO , +MWQKT,3,826.0000 ,45.19000 ,-120.6900,MesoWest ,PDTWFO ,Kent OR US PDTWFO , +MWQKE,3,1332.900 ,44.55000 ,-120.0400,MesoWest ,PDTWFO ,Keyes Summit OR US PDTWFO , +MWQLE,3,872.9000 ,45.32000 ,-118.1000,MesoWest ,PDTWFO ,LaGrande Central Elementary OR US PDTWFO , +MWQLP,3,1303.000 ,43.62994 ,-121.5684,MesoWest ,PDTWFO ,Lapine OR US PDTWFO , +MWQNE,3,1279.900 ,43.71800 ,-121.4890,MesoWest ,PDTWFO ,LaPine 3N OR US PDTWFO , +KQLX ,3,495.0000 ,45.44000 ,-119.6900,MesoWest ,PDTWFO ,Lexington Airport AWOS OR US PDTWFO , +MWQLC,3,1150.000 ,44.71367 ,-119.0995,MesoWest ,PDTWFO ,Long Creek OR US PDTWFO , +MWQAN,3,823.0000 ,46.97000 ,-120.8000,MesoWest ,PDTWFO ,Manastash Canyon WA US PDTWFO , +MWQMP,3,317.0000 ,45.17600 ,-121.0790,MesoWest ,PDTWFO ,Maupin School OR US PDTWFO , +MWQMN,3,578.8000 ,45.47403 ,-120.7405,MesoWest ,PDTWFO ,Moro OR US PDTWFO , +MWQCO,3,965.9000 ,44.30000 ,-120.7140,MesoWest ,PDTWFO ,Ochoco Lake OR US PDTWFO , +MWQ04,3,139.9000 ,45.84000 ,-119.5600,MesoWest ,PDTWFO ,Ordnance W OR US PDTWFO , +MWQPR,3,872.0000 ,44.30000 ,-120.8400,MesoWest ,PDTWFO ,Prineville OR US PDTWFO , +KRLD ,3,120.1000 ,46.30560 ,-119.3042,MesoWest ,PDTWFO ,Richland AP AWOS WA US PDTWFO , +MWQTG,3,730.9000 ,45.21820 ,-121.3966,MesoWest ,PDTWFO ,Rock Creek Reservoir OR US PDTWFO , +MWQRU,3,85.00000 ,45.73000 ,-120.6500,MesoWest ,PDTWFO ,Rufus 2E OR US PDTWFO , +MWQSL,3,395.0000 ,46.72000 ,-120.5400,MesoWest ,PDTWFO ,Selah 5N WA US PDTWFO , +MWQSH,3,1018.000 ,45.00000 ,-120.7500,MesoWest ,PDTWFO ,Shaniko OR US PDTWFO , +MWQSY,3,545.0000 ,44.84000 ,-119.7900,MesoWest ,PDTWFO ,Spray OR US PDTWFO , +MWQSR,3,1279.900 ,43.85000 ,-121.4600,MesoWest ,PDTWFO ,Sunriver OR US PDTWFO , +MWQSU,3,1054.900 ,44.42700 ,-121.7277,MesoWest ,PDTWFO ,Suttle Lake OR US PDTWFO , +MWQKI,3,1036.900 ,45.14000 ,-118.9400,MesoWest ,PDTWFO ,Ukiak USFS - North Fork John Day OR US PDTWFO , +MWQUM,3,57.90000 ,45.91644 ,-119.3340,MesoWest ,PDTWFO ,Umatilla OR US PDTWFO , +MWQ05,3,98.10000 ,45.91000 ,-119.4000,MesoWest ,PDTWFO ,Umatilla W OR US PDTWFO , +KFCT ,3,417.6000 ,46.66650 ,-120.4540,MesoWest ,PDTWFO ,Vagabond Army Airfield WA US PDTWFO , +MWQIT,3,323.1000 ,46.07000 ,-118.3300,MesoWest ,PDTWFO ,Walla Walla-Whitman College WA US PDTWFO , +MWQWG,3,1829.100 ,43.98000 ,-121.5800,MesoWest ,PDTWFO ,Wanoga Butte OR US PDTWFO , +MWQFS,3,960.1000 ,44.91200 ,-119.8920,MesoWest ,PDTWFO ,Winlock OR US PDTWFO , +ANGM8,3,898.9000 ,47.98000 ,-114.1700,MesoWest ,MSOWFO ,Angel Point MT US MSOWFO , +ARLM8,3,944.9000 ,47.15000 ,-114.0800,MesoWest ,MSOWFO ,Arlee MT US MSOWFO , +BGAM8,3,898.9000 ,47.79000 ,-114.3100,MesoWest ,MSOWFO ,Big Arm MT US MSOWFO , +VICM8,3,1015.000 ,46.44000 ,-114.1200,MesoWest ,MSOWFO ,Bitterroot at Bell Crossing MT US MSOWFO , +BBYM8,3,880.9000 ,47.83000 ,-114.0300,MesoWest ,MSOWFO ,Blue Bay MT US MSOWFO , +COLM8,3,944.9000 ,48.36000 ,-114.1400,MesoWest ,MSOWFO ,Columbia Falls MT US MSOWFO , +CRUM8,3,885.1000 ,47.50000 ,-114.2300,MesoWest ,MSOWFO ,Crow Dam MT US MSOWFO , +DRCM8,3,1839.200 ,46.89000 ,-114.5600,MesoWest ,MSOWFO ,Deer Creek MT US MSOWFO , +EBDM8,3,885.4000 ,48.06390 ,-114.0993,MesoWest ,MSOWFO ,Eagle Bend SKT Alert MT US MSOWFO , +GRDWL,3,2240.000 ,48.73000 ,-113.7300,MesoWest ,MSOWFO ,Garden Wall USGS MT US MSOWFO , +GVLI1,3,1008.900 ,45.94000 ,-116.1200,MesoWest ,MSOWFO ,Grangeville 1N ID US MSOWFO , +HMNM8,3,1089.100 ,46.25000 ,-114.1500,MesoWest ,MSOWFO ,Hamilton MT US MSOWFO , +HELM8,3,1125.900 ,47.71000 ,-114.0200,MesoWest ,MSOWFO ,Hellroaring Dam MT US MSOWFO , +HSPM8,3,841.9000 ,47.61000 ,-114.6100,MesoWest ,MSOWFO ,Hot Springs MT US MSOWFO , +JOCM8,3,1455.100 ,47.20000 ,-113.7600,MesoWest ,MSOWFO ,Jocko Dam MT US MSOWFO , +KLSM8,3,897.6000 ,48.19000 ,-114.3100,MesoWest ,MSOWFO ,Kalispell Downtown MT US MSOWFO , +KICM8,3,921.1000 ,47.45000 ,-114.0800,MesoWest ,MSOWFO ,Kicking Horse Dam MT US MSOWFO , +LAIM8,3,1293.900 ,45.87000 ,-114.0500,MesoWest ,MSOWFO ,Laird Creek near Sula MT US MSOWFO , +LDWM8,3,750.1000 ,48.47000 ,-115.3200,MesoWest ,MSOWFO ,Libby Dam MT US MSOWFO , +LBDM8,3,1182.000 ,48.08000 ,-114.7000,MesoWest ,MSOWFO ,Little Bitterroot Dam MT US MSOWFO , +LDFM8,3,866.9000 ,47.70000 ,-114.6600,MesoWest ,MSOWFO ,Lower Dry Fork Dam MT US MSOWFO , +LYGM8,3,1439.900 ,46.84000 ,-114.1600,MesoWest ,MSOWFO ,Lyons Gulch MT US MSOWFO , +MACM8,3,1092.100 ,47.43000 ,-113.9900,MesoWest ,MSOWFO ,Mcdonald Dam MT US MSOWFO , +MISM8,3,1036.000 ,47.31000 ,-114.0200,MesoWest ,MSOWFO ,Mission Dam MT US MSOWFO , +NIPM8,3,903.1000 ,47.46000 ,-114.1500,MesoWest ,MSOWFO ,Ninepipe Dam MT US MSOWFO , +FCFM8,3,958.9000 ,48.50000 ,-114.1300,MesoWest ,MSOWFO ,North Fork Flathead MT US MSOWFO , +OLYM8,3,965.0000 ,48.55000 ,-114.5700,MesoWest ,MSOWFO ,Olney MT US MSOWFO , +ORSI1,3,324.6000 ,46.48000 ,-116.2400,MesoWest ,MSOWFO ,Orofino School ID US MSOWFO , +PABM8,3,967.1000 ,47.64000 ,-114.1300,MesoWest ,MSOWFO ,Pablo Dam MT US MSOWFO , +PMAM8,3,783.0000 ,47.36000 ,-114.5400,MesoWest ,MSOWFO ,Perma MT US MSOWFO , +PISM8,3,1332.000 ,47.67000 ,-112.4900,MesoWest ,MSOWFO ,Pishkun River MT US MSOWFO , +POIM8,3,2055.000 ,46.71000 ,-114.4300,MesoWest ,MSOWFO ,Point 118 MT US MSOWFO , +PT6M8,3,2414.000 ,47.10000 ,-113.9800,MesoWest ,MSOWFO ,Point Six Radar MT US MSOWFO , +PLSM8,3,898.9000 ,47.69000 ,-114.1700,MesoWest ,MSOWFO ,Polson MT US MSOWFO , +SODM8,3,926.9000 ,47.54000 ,-114.1000,MesoWest ,MSOWFO ,SOD Ronan MT US MSOWFO , +TBOM8,3,1246.000 ,47.26000 ,-113.9400,MesoWest ,MSOWFO ,Tabor Dam MT US MSOWFO , +THFM8,3,737.6000 ,47.59000 ,-115.3200,MesoWest ,MSOWFO ,Thompson Falls MT US MSOWFO , +TURM8,3,946.1000 ,47.67000 ,-114.0700,MesoWest ,MSOWFO ,Turtle Dam MT US MSOWFO , +UDFM8,3,889.1000 ,47.75000 ,-114.6700,MesoWest ,MSOWFO ,Upper Dry Fork Dam MT US MSOWFO , +WOOM8,3,898.9000 ,47.99000 ,-114.0600,MesoWest ,MSOWFO ,Woods Bay MT US MSOWFO , +MHWD ,3,1008.900 ,47.50000 ,-110.8800,MesoWest ,GTFWFO ,HIGHWOOD HAM MT US GTFWFO , +CQ089,3,627.0000 ,32.84222 ,-116.7683,MesoWest ,CARB ,Alpine-Victoria Dr CA US CARB , +CQ043,3,41.10000 ,33.83056 ,-117.9386,MesoWest ,CARB ,Anaheim-Loara School CA US CARB , +CQ153,3,41.10000 ,33.83056 ,-117.9386,MesoWest ,CARB ,Anaheim-Pampas Ln CA US CARB , +CQ001,3,140.2000 ,35.20889 ,-118.7764,MesoWest ,CARB ,Arvin-Bear Mountain Blvd CA US CARB , +CQ109,3,250.9000 ,35.49167 ,-120.6681,MesoWest ,CARB ,Atascadero-Lewis Ave CA US CARB , +CQ066,3,182.0000 ,34.13611 ,-117.9239,MesoWest ,CARB ,Azusa CA US CARB , +CQ002,3,117.0000 ,35.35611 ,-119.0403,MesoWest ,CARB ,Bakersfield-California Avenue CA US CARB , +CQ122,3,150.9000 ,35.38528 ,-119.0144,MesoWest ,CARB ,Bakersfield-Golden State Fwy CA US CARB , +CQ050,3,473.1000 ,33.92111 ,-116.8583,MesoWest ,CARB ,Banning-Airport CA US CARB , +CQ103,3,691.9000 ,34.89389 ,-117.0244,MesoWest ,CARB ,Barstow CA US CARB , +CQ032,3,6.100000 ,38.00667 ,-121.6414,MesoWest ,CARB ,Bethel Island Road CA US CARB , +CQ179,3,121.0000 ,33.61220 ,-114.6010,MesoWest ,CARB ,Blythe-West Murphy Street CA US CARB , +CQ067,3,170.7000 ,34.17583 ,-118.3172,MesoWest ,CARB ,Burbank CA US CARB , +CQ037,3,10.10000 ,32.67417 ,-115.3911,MesoWest ,CARB ,Calexico-East CA US CARB , +CQ004,3,1.800000 ,32.67639 ,-115.4833,MesoWest ,CARB ,Calexico-Ethel Street CA US CARB , +CQ114,3,-2.100000,32.67389 ,-115.5164,MesoWest ,CARB ,Calexico-Grant St CA US CARB , +CQ126,3,14.90000 ,33.21694 ,-117.3961,MesoWest ,CARB ,Camp Pendleton CA US CARB , +CQ076,3,199.9000 ,36.48194 ,-121.7333,MesoWest ,CARB ,Carmel Valley-Ford Rd CA US CARB , +CQ116,3,177.1000 ,34.40333 ,-119.4572,MesoWest ,CARB ,Carpinteria-Gobernador Rd CA US CARB , +CQ172,3,609.0000 ,35.35470 ,-120.0402,MesoWest ,CARB ,Carrizo Plains CA US CARB , +CQ006,3,1900.100 ,39.04361 ,-119.9492,MesoWest ,CARB ,Cave Rock CA US CARB , +CQ144,3,52.10000 ,37.71900 ,-122.0981,MesoWest ,CARB ,Chabot CA US CARB , +CQ003,3,61.90000 ,39.75750 ,-121.8422,MesoWest ,CARB ,Chico-Manzanita CA US CARB , +CQ093,3,52.10000 ,32.63139 ,-117.0592,MesoWest ,CARB ,Chula Vista CA US CARB , +CQ036,3,86.00000 ,36.81944 ,-119.7167,MesoWest ,CARB ,Clovis-N Villa Avenue CA US CARB , +CQ005,3,17.10000 ,39.18889 ,-121.9981,MesoWest ,CARB ,Colusa-Sunrise Blvd CA US CARB , +CQ031,3,25.90000 ,37.93917 ,-122.0247,MesoWest ,CARB ,Concord CA US CARB , +CQ170,3,27.10000 ,37.93600 ,-122.0300,MesoWest ,CARB ,Concord-2956 A Treat Blvd CA US CARB , +CQ167,3,516.9000 ,38.88860 ,-121.0000,MesoWest ,CARB ,Cool-Highway 193 CA US CARB , +CQ038,3,61.90000 ,36.10222 ,-119.5658,MesoWest ,CARB ,Corcoran-Patterson Avenue CA US CARB , +CQ105,3,82.00000 ,33.67389 ,-117.9258,MesoWest ,CARB ,Costa Mesa-Mesa Verde Dr CA US CARB , +CQ085,3,27.10000 ,37.01194 ,-122.1939,MesoWest ,CARB ,Davenport CA US CARB , +CQ007,3,14.00000 ,38.53528 ,-121.7731,MesoWest ,CARB ,Davis-UCD Campus CA US CARB , +CQ162,3,125.0000 ,36.50700 ,-116.8478,MesoWest ,CARB ,Death Valley Natl Park CA US CARB , +CQ087,3,35.10000 ,32.95250 ,-117.2633,MesoWest ,CARB ,Del Mar-Mira Costa College CA US CARB , +CQ024,3,2250.000 ,38.81167 ,-120.0325,MesoWest ,CARB ,Echo Summit CA US CARB , +CQ008,3,171.9000 ,35.34583 ,-118.8506,MesoWest ,CARB ,Edison CA US CARB , +CQ084,3,132.0000 ,32.79111 ,-116.9422,MesoWest ,CARB ,El Cajon-Redwood Ave CA US CARB , +CQ074,3,7.000000 ,34.46040 ,-120.0258,MesoWest ,CARB ,El Capitan Beach CA US CARB , +CQ091,3,9.100000 ,32.79222 ,-115.5631,MesoWest ,CARB ,El Centro-9th Street CA US CARB , +CQ053,3,7.000000 ,38.30306 ,-121.4203,MesoWest ,CARB ,Elk Grove - Bruceville Road CA US CARB , +CQ082,3,207.9000 ,33.12778 ,-117.0753,MesoWest ,CARB ,Escondido-E Valley Pkwy CA US CARB , +CQ138,3,10.10000 ,38.22722 ,-122.0756,MesoWest ,CARB ,Fairfield-Chadbourne Rd CA US CARB , +CQ115,3,113.7000 ,38.04860 ,-120.2997,MesoWest ,CARB ,Five Mile Learning Center CA US CARB , +CQ054,3,98.10000 ,38.68389 ,-121.1636,MesoWest ,CARB ,Folsom-Natoma Street CA US CARB , +CQ057,3,282.9000 ,34.10056 ,-117.4922,MesoWest ,CARB ,Fontana-Arrow Highway CA US CARB , +CQ111,3,23.20000 ,37.83361 ,-122.5336,MesoWest ,CARB ,Fort Cronkhite CA US CARB , +CQ143,3,17.40000 ,37.71300 ,-122.4994,MesoWest ,CARB ,Fort Funston CA US CARB , +CQ009,3,98.10000 ,36.78306 ,-119.7725,MesoWest ,CARB ,Fresno - First Street CA US CARB , +CQ035,3,98.10000 ,36.84167 ,-119.8828,MesoWest ,CARB ,Fresno - Skypark CA US CARB , +CQ075,3,120.1000 ,36.70556 ,-119.7414,MesoWest ,CARB ,Fresno-Drummond St CA US CARB , +CQ106,3,302.1000 ,34.47333 ,-120.1942,MesoWest ,CARB ,Gaviota-GTC Site B CA US CARB , +CQ060,3,47.90000 ,36.99972 ,-121.5753,MesoWest ,CARB ,Gilroy-9th Street CA US CARB , +CQ073,3,84.10000 ,34.14444 ,-117.8500,MesoWest ,CARB ,Glendora-Laurel CA US CARB , +CQ123,3,15.80000 ,34.44556 ,-119.8283,MesoWest ,CARB ,Goleta-Fairview CA US CARB , +CQ010,3,25.90000 ,39.32722 ,-121.6686,MesoWest ,CARB ,Gridley CA US CARB , +CQ097,3,7.900000 ,35.12389 ,-120.6322,MesoWest ,CARB ,Grover City-Lesage Dr CA US CARB , +CQ169,3,98.10000 ,36.31280 ,-119.6436,MesoWest ,CARB ,Hanford-S Irwin Street CA US CARB , +CQ072,3,21.00000 ,33.93056 ,-118.3689,MesoWest ,CARB ,Hawthorne CA US CARB , +CQ096,3,965.9000 ,34.41639 ,-117.2856,MesoWest ,CARB ,Hesperia-Olive Street CA US CARB , +CQ095,3,125.9000 ,36.84333 ,-121.3622,MesoWest ,CARB ,Hollister-Fairview Rd CA US CARB , +CQ047,3,-4.000000,33.70833 ,-116.2158,MesoWest ,CARB ,Indio-Jackson Street CA US CARB , +CQ011,3,377.0000 ,38.34278 ,-120.7647,MesoWest ,CARB ,Jackson-Clinton Road CA US CARB , +CQ168,3,1143.000 ,37.54470 ,-119.8417,MesoWest ,CARB ,Jerseydale-6440 Jerseydale CA US CARB , +CQ163,3,1239.900 ,34.06760 ,-116.3889,MesoWest ,CARB ,Joshua Tree-National Monument CA US CARB , +CQ173,3,844.9000 ,35.75326 ,-118.4174,MesoWest ,CARB ,Kernville-NPS CA US CARB , +CQ100,3,93.00000 ,36.22694 ,-121.1153,MesoWest ,CARB ,King City-750 Metz Rd CA US CARB , +CQ135,3,175.9000 ,37.94310 ,-122.0949,MesoWest ,CARB ,Kregor Peak CA US CARB , +CQ081,3,82.00000 ,33.92528 ,-117.9522,MesoWest ,CARB ,La Habra CA US CARB , +CQ059,3,1749.900 ,34.23333 ,-117.2167,MesoWest ,CARB ,Lake Arrowhead CA US CARB , +CQ048,3,402.3000 ,33.67639 ,-117.3308,MesoWest ,CARB ,Lake Elsinore-W Flint Street CA US CARB , +CQ056,3,1387.100 ,34.24139 ,-117.2756,MesoWest ,CARB ,Lake Gregory CA US CARB , +CQ039,3,440.1000 ,39.03306 ,-122.9219,MesoWest ,CARB ,Lakeport-Lakeport Blvd CA US CARB , +CQ148,3,725.1000 ,34.66944 ,-118.1306,MesoWest ,CARB ,Lancaster-43301 Division St CA US CARB , +CQ118,3,189.0000 ,34.48917 ,-120.0469,MesoWest ,CARB ,Las Flores Canyon #1 CA US CARB , +CQ158,3,1791.000 ,40.53520 ,-121.5764,MesoWest ,CARB ,Lassen Volcanic NP-Manzanita Lk CA US CARB , +CQ065,3,145.1000 ,37.69389 ,-121.7986,MesoWest ,CARB ,Livermore - Rincon CA US CARB , +CQ112,3,107.0000 ,34.72333 ,-120.4258,MesoWest ,CARB ,Lompoc-HS&P CA US CARB , +CQ070,3,86.90000 ,34.06694 ,-118.2267,MesoWest ,CARB ,Los Angeles-North Main Street CA US CARB , +CQ157,3,31.10000 ,33.95320 ,-118.4304,MesoWest ,CARB ,Los Angeles-Westchester Parkway CA US CARB , +CQ092,3,39.90000 ,33.92889 ,-118.2108,MesoWest ,CARB ,Lynwood CA US CARB , +CQ040,3,85.00000 ,36.96306 ,-120.0167,MesoWest ,CARB ,Madera - Pump Yard CA US CARB , +CQ102,3,296.9000 ,35.05139 ,-119.4028,MesoWest ,CARB ,Maricopa-Stanislaus St CA US CARB , +CQ041,3,107.0000 ,37.28167 ,-120.4336,MesoWest ,CARB ,Merced - Coffee Road CA US CARB , +CQ049,3,230.1000 ,34.00194 ,-117.5225,MesoWest ,CARB ,Mira Loma CA US CARB , +CQ171,3,219.2000 ,33.99507 ,-117.4922,MesoWest ,CARB ,Mira Loma-Van Buren CA US CARB , +CQ042,3,180.1000 ,33.63028 ,-117.6750,MesoWest ,CARB ,Mission Viejo CA US CARB , +CQ012,3,27.10000 ,37.64250 ,-120.9936,MesoWest ,CARB ,Modesto-14th Street CA US CARB , +CQ013,3,844.9000 ,35.05028 ,-118.1475,MesoWest ,CARB ,Mojave CA US CARB , +CQ083,3,18.00000 ,35.36639 ,-120.8428,MesoWest ,CARB ,Morro Bay CA US CARB , +CQ128,3,4.900000 ,36.80417 ,-121.7867,MesoWest ,CARB ,Moss Landing-Sandholt Rd CA US CARB , +CQ137,3,232.3000 ,37.92560 ,-122.5873,MesoWest ,CARB ,Mount Tamalpais CA US CARB , +CQ125,3,-53.90000,33.21361 ,-115.5453,MesoWest ,CARB ,Niland-English Rd CA US CARB , +CQ133,3,50.00000 ,35.03167 ,-120.5008,MesoWest ,CARB ,Nipomo-Regional Park CA US CARB , +CQ068,3,6.100000 ,33.82417 ,-118.1894,MesoWest ,CARB ,North Long Beach CA US CARB , +CQ151,3,11.00000 ,33.20100 ,-117.3672,MesoWest ,CARB ,Oceanside-Mission Ave CA US CARB , +CQ014,3,182.9000 ,35.43861 ,-119.0169,MesoWest ,CARB ,Oildale CA US CARB , +CQ104,3,18.00000 ,32.55167 ,-116.9383,MesoWest ,CARB ,Otay Mesa-Paseo International CA US CARB , +CQ044,3,171.0000 ,33.81944 ,-116.4900,MesoWest ,CARB ,Palm Springs-Fire Station CA US CARB , +CQ030,3,392.9000 ,39.70861 ,-121.6172,MesoWest ,CARB ,Paradise - Airport CA US CARB , +CQ107,3,547.1000 ,34.54167 ,-119.7911,MesoWest ,CARB ,Paradise Road-Los Padres NF CA US CARB , +CQ034,3,78.00000 ,36.59667 ,-119.5042,MesoWest ,CARB ,Parlier CA US CARB , +CQ080,3,249.9000 ,34.13278 ,-118.1272,MesoWest ,CARB ,Pasadena-S Wilson Ave CA US CARB , +CQ016,3,248.1000 ,35.64389 ,-120.6561,MesoWest ,CARB ,Paso Robles CA US CARB , +CQ046,3,442.0000 ,33.78889 ,-117.2278,MesoWest ,CARB ,Perris CA US CARB , +CQ099,3,1268.900 ,34.42500 ,-117.5897,MesoWest ,CARB ,Phelan-Beekley Rd & Phelan Rd CA US CARB , +CQ069,3,53.90000 ,34.01417 ,-118.0606,MesoWest ,CARB ,Pico Rivera CA US CARB , +CQ174,3,1250.000 ,36.69546 ,-119.0188,MesoWest ,CARB ,Pinehurst-NPS CA US CARB , +CQ159,3,335.0000 ,36.49720 ,-121.1717,MesoWest ,CARB ,Pinnacles National Monument CA US CARB , +CQ015,3,584.9000 ,38.72472 ,-120.8219,MesoWest ,CARB ,Placerville-Gold Nugget Way CA US CARB , +CQ142,3,30.20000 ,37.69700 ,-121.9123,MesoWest ,CARB ,Pleasanton CA US CARB , +CQ176,3,100.0000 ,38.12278 ,-122.9083,MesoWest ,CARB ,Point Reyes CA US CARB , +CQ101,3,270.1000 ,34.06667 ,-117.7500,MesoWest ,CARB ,Pomona CA US CARB , +CQ098,3,149.0000 ,40.55139 ,-122.3808,MesoWest ,CARB ,Redding-Health Dept Roof CA US CARB , +CQ078,3,481.0000 ,34.05889 ,-117.1478,MesoWest ,CARB ,Redlands-Dearborn CA US CARB , +CQ088,3,68.90000 ,34.19917 ,-118.5328,MesoWest ,CARB ,Reseda CA US CARB , +CQ079,3,11.00000 ,37.94806 ,-122.3650,MesoWest ,CARB ,Richmond-7th Street CA US CARB , +CQ141,3,11.00000 ,38.18850 ,-121.7056,MesoWest ,CARB ,Rio Vista CA US CARB , +CQ045,3,249.9000 ,34.00056 ,-117.4153,MesoWest ,CARB ,Riverside-Rubidoux CA US CARB , +CQ017,3,49.10000 ,38.74611 ,-121.2647,MesoWest ,CARB ,Roseville-N Sunrise Blvd CA US CARB , +CQ018,3,4.900000 ,38.56806 ,-121.4936,MesoWest ,CARB ,Sacramento - 1309 T Street CA US CARB , +CQ131,3,4.900000 ,38.63667 ,-121.5142,MesoWest ,CARB ,Sacramento-3801 Airport Rd CA US CARB , +CQ052,3,38.10000 ,38.61389 ,-121.3683,MesoWest ,CARB ,Sacramento-Del Paso Manor CA US CARB , +CQ051,3,7.900000 ,38.55611 ,-121.4578,MesoWest ,CARB ,Sacramento-Health Dept CA US CARB , +CQ145,3,15.80000 ,36.69417 ,-121.6233,MesoWest ,CARB ,Salinas HS CA US CARB , +CQ019,3,324.9000 ,38.20194 ,-120.6894,MesoWest ,CARB ,San Andreas-Gold Strike Road CA US CARB , +CQ058,3,305.1000 ,34.10667 ,-117.2736,MesoWest ,CARB ,San Bernardino CA US CARB , +CQ134,3,0.300000 ,37.51710 ,-122.2518,MesoWest ,CARB ,San Carlos CA US CARB , +CQ108,3,4.900000 ,32.70917 ,-117.1539,MesoWest ,CARB ,San Diego-12th Avenue CA US CARB , +CQ077,3,132.0000 ,32.83639 ,-117.1289,MesoWest ,CARB ,San Diego-Overland Ave CA US CARB , +CQ147,3,1.500000 ,37.73870 ,-122.3903,MesoWest ,CARB ,San Fran Sewage Treatment Plant CA US CARB , +CQ155,3,249.9000 ,37.73361 ,-122.3833,MesoWest ,CARB ,San Francisco-Hunters Point CA US CARB , +CQ156,3,0.600000 ,38.27910 ,-122.3899,MesoWest ,CARB ,San Francisco-Mission Bay CA US CARB , +CQ177,3,70.10000 ,35.25639 ,-120.6689,MesoWest ,CARB ,San Luis Obispo - South Higuera CA US CARB , +CQ022,3,70.10000 ,35.28194 ,-120.6578,MesoWest ,CARB ,San Luis Obispo-Marsh Street CA US CARB , +CQ061,3,86.90000 ,37.07944 ,-121.6000,MesoWest ,CARB ,San Martin CA US CARB , +CQ152,3,40.50000 ,33.25480 ,-119.4869,MesoWest ,CARB ,San Nicolas Island-Building 98 CA US CARB , +CQ033,3,14.90000 ,37.96333 ,-122.3400,MesoWest ,CARB ,San Pablo - El Portal CA US CARB , +CQ150,3,9.100000 ,37.96000 ,-122.3564,MesoWest ,CARB ,San Pablo-Rumrill Blvd CA US CARB , +CQ149,3,20.10000 ,34.42778 ,-119.6908,MesoWest ,CARB ,Santa Barbara-700 Canon Perdido CA US CARB , +CQ071,3,374.9000 ,34.38361 ,-118.5256,MesoWest ,CARB ,Santa Clarita-Placerita CA US CARB , +CQ127,3,6.100000 ,36.98389 ,-121.9908,MesoWest ,CARB ,Santa Cruz-2544 Soquel Ave CA US CARB , +CQ025,3,75.90000 ,34.94120 ,-120.4356,MesoWest ,CARB ,Santa Maria - South Broadway CA US CARB , +CQ063,3,49.10000 ,38.44361 ,-122.7092,MesoWest ,CARB ,Santa Rosa CA US CARB , +CQ094,3,203.0000 ,34.60833 ,-120.0747,MesoWest ,CARB ,Santa Ynez-Airport Rd CA US CARB , +CQ120,3,121.9000 ,37.05222 ,-122.0144,MesoWest ,CARB ,Scotts Valley Dr CA US CARB , +CQ164,3,561.1000 ,36.48750 ,-118.8269,MesoWest ,CARB ,Sequoia & Kings Canyon Np CA US CARB , +CQ161,3,1900.100 ,36.56611 ,-118.7778,MesoWest ,CARB ,Sequoia Natl Park-Lower Kaweah CA US CARB , +CQ021,3,125.9000 ,35.50361 ,-119.2728,MesoWest ,CARB ,Shafter CA US CARB , +CQ129,3,70.10000 ,38.49444 ,-121.2111,MesoWest ,CARB ,Sloughhouse CA US CARB , +CQ140,3,0.300000 ,39.93380 ,-122.4610,MesoWest ,CARB ,Sonoma Baylds CA US CARB , +CQ026,3,570.9000 ,37.96889 ,-120.3867,MesoWest ,CARB ,Sonora - Barretta Street CA US CARB , +CQ023,3,1905.000 ,38.94583 ,-119.9667,MesoWest ,CARB ,South Lake Tahoe-Sandy Way CA US CARB , +CQ175,3,36.00000 ,37.43026 ,-122.1866,MesoWest ,CARB ,Stanford University CA US CARB , +CQ020,3,4.000000 ,37.95167 ,-121.2689,MesoWest ,CARB ,Stockton-Hazelton CA US CARB , +CQ139,3,42.70000 ,37.59190 ,-121.8752,MesoWest ,CARB ,Sunol CA US CARB , +CQ178,3,60.40000 ,37.68250 ,-121.4406,MesoWest ,CARB ,Tracy-Airport CA US CARB , +CQ130,3,498.0000 ,35.77444 ,-117.3722,MesoWest ,CARB ,Trona-Athol & Telegraph CA US CARB , +CQ113,3,29.90000 ,37.48806 ,-120.8358,MesoWest ,CARB ,Turlock-S Minaret St CA US CARB , +CQ124,3,572.1000 ,40.26222 ,-122.0928,MesoWest ,CARB ,Tuscan Butte CA US CARB , +CQ119,3,652.0000 ,34.14194 ,-116.0553,MesoWest ,CARB ,Twentynine Palms-Adobe Rd #2 CA US CARB , +CQ055,3,378.9000 ,34.10389 ,-117.6292,MesoWest ,CARB ,Upland CA US CARB , +CQ154,3,32.90000 ,38.35667 ,-121.9500,MesoWest ,CARB ,Vacaville-Ulatis Dr CA US CARB , +CQ062,3,29.90000 ,38.10250 ,-122.2381,MesoWest ,CARB ,Vallejo CA US CARB , +CQ136,3,4.600000 ,38.30660 ,-122.8963,MesoWest ,CARB ,Valley Ford CA US CARB , +CQ117,3,96.90000 ,34.59611 ,-120.6328,MesoWest ,CARB ,Vandenberg AFB-STS Power CA US CARB , +CQ146,3,912.9000 ,34.51083 ,-117.3256,MesoWest ,CARB ,Victorville-14306 Park Ave CA US CARB , +CQ027,3,96.90000 ,36.33278 ,-119.2908,MesoWest ,CARB ,Visalia CA US CARB , +CQ064,3,89.90000 ,36.31389 ,-119.3922,MesoWest ,CARB ,Visalia-Airport CA US CARB , +CQ110,3,61.00000 ,36.93250 ,-121.7872,MesoWest ,CARB ,Watsonville-Airport Blvd CA US CARB , +CQ090,3,61.00000 ,34.05056 ,-118.4567,MesoWest ,CARB ,West Los Angeles-VA Hospital CA US CARB , +CQ121,3,-32.00000,33.03250 ,-115.6236,MesoWest ,CARB ,Westmorland-W 1st Street CA US CARB , +CQ166,3,1299.100 ,39.31610 ,-120.8456,MesoWest ,CARB ,White Cloud Mountain CA US CARB , +CQ028,3,41.10000 ,39.51694 ,-122.1897,MesoWest ,CARB ,Willows-E Laurel Street CA US CARB , +CQ132,3,11.00000 ,38.66056 ,-121.7306,MesoWest ,CARB ,Woodland-Gibson Rd CA US CARB , +CQ165,3,1220.100 ,37.74306 ,-119.5939,MesoWest ,CARB ,Yosemite NP-Merced River CA US CARB , +CQ160,3,1610.900 ,37.71140 ,-119.7058,MesoWest ,CARB ,Yosemite NP-Turtleback Dome CA US CARB , +CQ086,3,1213.100 ,37.74861 ,-119.5869,MesoWest ,CARB ,Yosemite Village-Visitor Center CA US CARB , +CQ029,3,18.00000 ,39.13889 ,-121.6192,MesoWest ,CARB ,Yuba City CA US CARB , +MSCAS,3,1789.200 ,41.23806 ,-122.3692,MesoWest ,SHASAVAL ,Castle Lake CA US SHASAVAL , +MSGRB,3,2438.400 ,41.34560 ,-122.1944,MesoWest ,SHASAVAL ,Grey Butte CA US SHASAVAL , +MSMED,3,1983.900 ,41.33556 ,-122.4333,MesoWest ,SHASAVAL ,Mt. Eddy CA US SHASAVAL , +MSSKI,3,2316.500 ,41.35890 ,-122.2057,MesoWest ,SHASAVAL ,Ski Bowl CA US SHASAVAL , +CTAND,3,903.1000 ,41.79080 ,-122.5885,MesoWest ,CALTRANS ,Anderson Grade CA US CALTRANS , +CTANT,3,329.2000 ,40.88480 ,-122.3826,MesoWest ,CALTRANS ,Antlers CA US CALTRANS , +CTBBS,3,1202.400 ,41.35470 ,-122.3527,MesoWest ,CALTRANS ,Black Butte Summit CA US CALTRANS , +CTBOG,3,1724.900 ,40.58570 ,-121.0883,MesoWest ,CALTRANS ,Bogard Rest Area CA US CALTRANS , +CTBSN,3,825.1000 ,40.65450 ,-122.7545,MesoWest ,CALTRANS ,Buckhorn Sandhouse CA US CALTRANS , +CTDUN,3,762.0000 ,41.21000 ,-122.2747,MesoWest ,CALTRANS ,Dunsmuir CA US CALTRANS , +CTFPE,3,1431.000 ,40.39000 ,-120.7900,MesoWest ,CALTRANS ,Fredonyer Pass East CA US CALTRANS , +CTFYP,3,1737.700 ,40.36030 ,-120.8653,MesoWest ,CALTRANS ,Fredonyer Pass Summit CA US CALTRANS , +CTHAT,3,1330.800 ,40.85216 ,-121.7620,MesoWest ,CALTRANS ,Hatchet Mountain CA US CALTRANS , +CTHLT,3,971.7000 ,41.99260 ,-122.6088,MesoWest ,CALTRANS ,Hilt CA US CALTRANS , +CTHRN,3,694.9000 ,41.91030 ,-122.5678,MesoWest ,CALTRANS ,Hornbrook CA US CALTRANS , +CTWED,3,1050.000 ,41.42850 ,-122.3987,MesoWest ,CALTRANS ,North Weed CA US CALTRANS , +CTOMS,3,869.9000 ,40.73930 ,-122.9804,MesoWest ,CALTRANS ,Oregon Mountain Summit CA US CALTRANS , +CTSNS,3,1364.900 ,41.26900 ,-122.2114,MesoWest ,CALTRANS ,Snowman's Summit CA US CALTRANS , +CTSPG,3,1176.500 ,39.91170 ,-120.8118,MesoWest ,CALTRANS ,Spring Garden Overhead CA US CALTRANS , +CTVOL,3,405.4000 ,40.94180 ,-122.4268,MesoWest ,CALTRANS ,Vollmers CA US CALTRANS , +CTWDA,3,890.3000 ,41.47270 ,-122.4530,MesoWest ,CALTRANS ,Weed Airport CA US CALTRANS , +YM1 ,3,1143.000 ,36.84920 ,-116.4411,MesoWest ,DOERD ,YUCCA MOUNTAIN 1 NV US DOERD , +ALPHA,3,2333.900 ,38.80389 ,-120.2158,MesoWest ,DRI ,ALPHA CA US DRI , +ASHM ,3,704.1000 ,36.42389 ,-116.3058,MesoWest ,DRI ,ASH MEADOWS NWR NV US DRI , +BRCFT,3,3782.600 ,37.58306 ,-118.2372,MesoWest ,DRI ,BARCROFT RESEARCH LAB CA US DRI , +BSVLY,3,1779.700 ,39.04556 ,-117.0008,MesoWest ,DRI ,BIG SMOKEY VALLEY NV US DRI , +CICP ,3,442.0000 ,33.33583 ,-118.4361,MesoWest ,DRI ,Cactus Peak - Santa Catalina Is. CA US DRI , +CSNSK,3,1182.900 ,39.91111 ,-118.3872,MesoWest ,DRI ,CARSON SINK NV US DRI , +CSSL ,3,2097.900 ,39.32556 ,-120.3667,MesoWest ,DRI ,CENTRAL SIERRA SNOW LAB CA US DRI , +CISCO,3,2017.800 ,39.30611 ,-120.5628,MesoWest ,DRI ,CISCO BUTTE CA US DRI , +OCLB ,3,1884.900 ,42.95444 ,-122.0900,MesoWest ,DRI ,CRATER LAKE BUOY OR US DRI , +OCLR ,3,2148.800 ,42.91167 ,-122.1486,MesoWest ,DRI ,CRATER LAKE RIM OR US DRI , +CCRF ,3,3094.000 ,37.54306 ,-118.2044,MesoWest ,DRI ,CROOKED CREEK RESEARCH FACILITY CA US DRI , +CIDP ,3,480.1000 ,33.35056 ,-118.3519,MesoWest ,DRI ,Dakin Peak - Santa Catalina Is. CA US DRI , +NNSC ,3,1508.800 ,39.57083 ,-119.8017,MesoWest ,DRI ,DRI - NNSC NV US DRI , +SAGE ,3,1524.000 ,39.64167 ,-119.8753,MesoWest ,DRI ,DRI - SAGE BUILDING NV US DRI , +DUCK ,3,1665.100 ,38.92167 ,-115.7011,MesoWest ,DRI ,DUCKWATER NV US DRI , +DYER ,3,1488.300 ,37.60610 ,-117.9886,MesoWest ,DRI ,DYER - WALLACE FARMS NV US DRI , +EDCVY,3,1582.500 ,39.53250 ,-117.7472,MesoWest ,DRI ,Edwards Creek Valley NV US DRI , +FVVLY,3,1290.800 ,39.32417 ,-118.2228,MesoWest ,DRI ,FAIRVIEW VALLEY NV US DRI , +FREY ,3,1200.900 ,39.38610 ,-118.7761,MesoWest ,DRI ,FREY RANCH - FALLON NV US DRI , +GDNSP,3,1479.200 ,37.27194 ,-114.2942,MesoWest ,DRI ,GARDEN SPRING NV US DRI , +HAYFD,3,212.8000 ,33.34861 ,-118.4244,MesoWest ,DRI ,Hayfield CA US DRI , +HLPK ,3,759.0000 ,36.06750 ,-121.5592,MesoWest ,DRI ,HIGHLANDS PEAK CA US DRI , +INCCK,3,2081.800 ,39.25389 ,-119.9250,MesoWest ,DRI ,INCLINE CREEK NV US DRI , +OWENS,3,1201.200 ,36.80222 ,-118.1961,MesoWest ,DRI ,INDEPENDENCE - OWENS VALLEY CA US DRI , +KGVAL,3,1898.900 ,39.31583 ,-120.4556,MesoWest ,DRI ,KINGVALE - DONNER TRAIL ES CA US DRI , +LGAPK,3,440.7000 ,34.10861 ,-119.0653,MesoWest ,DRI ,Laguna Peak CA US DRI , +LOBSV,3,1534.700 ,38.37222 ,-117.4717,MesoWest ,DRI ,LOWER BIG SMOKEY VALLEY NV US DRI , +WARR ,3,3757.300 ,37.98972 ,-119.2236,MesoWest ,DRI ,MT WARREN SUMMIT CA US DRI , +NTHO ,3,1966.000 ,39.17083 ,-120.1453,MesoWest ,DRI ,NORTH TAHOE HS CA US DRI , +ONION,3,1881.500 ,39.27444 ,-120.3558,MesoWest ,DRI ,ONION CREEK CA US DRI , +PLAND,3,122.8000 ,33.46750 ,-118.5469,MesoWest ,DRI ,Parsons Landing CA US DRI , +PMUGU,3,4.000000 ,34.11030 ,-119.1105,MesoWest ,DRI ,Point Mugu CA US DRI , +PHUEN,3,28.00000 ,34.14639 ,-119.2136,MesoWest ,DRI ,Port Hueneme CA US DRI , +PTREY,3,160.3000 ,37.99639 ,-123.0206,MesoWest ,DRI ,PT REYES LIGHTHOUSE CA US DRI , +PTRCA,3,26.50000 ,38.09417 ,-122.9500,MesoWest ,DRI ,PT REYES RCA CA US DRI , +PYRLK,3,1161.300 ,39.94333 ,-119.5914,MesoWest ,DRI ,PYRAMID LAKE FISHERIES NV US DRI , +RHDFL,3,1184.500 ,39.14194 ,-118.6669,MesoWest ,DRI ,RAWHIDE FLATS NV US DRI , +SGHEN,3,1931.500 ,39.43250 ,-120.2369,MesoWest ,DRI ,SAGEHEN CREEK FIELD STATION CA US DRI , +SMIGL,3,253.9000 ,34.03306 ,-120.3642,MesoWest ,DRI ,San Miguel Island CA US DRI , +SNICH,3,9.100000 ,33.26000 ,-119.5722,MesoWest ,DRI ,San Nicolas Island West CA US DRI , +SR01 ,3,1736.400 ,36.76694 ,-118.2761,MesoWest ,DRI ,Sierra Rotors Site #1 CA US DRI , +SR10 ,3,1179.000 ,36.77306 ,-118.1633,MesoWest ,DRI ,Sierra Rotors Site #10 CA US DRI , +SR11 ,3,1146.400 ,36.78083 ,-118.1275,MesoWest ,DRI ,Sierra Rotors Site #11 CA US DRI , +SR12 ,3,1137.200 ,36.78528 ,-118.1067,MesoWest ,DRI ,Sierra Rotors Site #12 CA US DRI , +SR13 ,3,1439.900 ,36.71917 ,-118.2042,MesoWest ,DRI ,Sierra Rotors Site #13 CA US DRI , +SR14 ,3,1232.600 ,36.72861 ,-118.1711,MesoWest ,DRI ,Sierra Rotors Site #14 CA US DRI , +SR15 ,3,1136.000 ,36.74111 ,-118.1156,MesoWest ,DRI ,Sierra Rotors Site #15 CA US DRI , +SR16 ,3,1136.300 ,36.73972 ,-118.0883,MesoWest ,DRI ,Sierra Rotors Site #16 CA US DRI , +SR02 ,3,1475.800 ,36.77778 ,-118.2433,MesoWest ,DRI ,Sierra Rotors Site #2 CA US DRI , +SR03 ,3,1274.100 ,36.78639 ,-118.2078,MesoWest ,DRI ,Sierra Rotors Site #3 CA US DRI , +SR04 ,3,1169.800 ,36.79472 ,-118.1661,MesoWest ,DRI ,Sierra Rotors Site #4 CA US DRI , +SR05 ,3,1144.800 ,36.80056 ,-118.1328,MesoWest ,DRI ,Sierra Rotors Site #5 CA US DRI , +SR06 ,3,1215.800 ,36.81083 ,-118.0942,MesoWest ,DRI ,Sierra Rotors Site #6 CA US DRI , +SR07 ,3,1574.900 ,36.75417 ,-118.2544,MesoWest ,DRI ,Sierra Rotors Site #7 CA US DRI , +SR08 ,3,1439.900 ,36.76111 ,-118.2292,MesoWest ,DRI ,Sierra Rotors Site #8 CA US DRI , +SR09 ,3,1237.800 ,36.76583 ,-118.1897,MesoWest ,DRI ,Sierra Rotors Site #9 CA US DRI , +SSGC ,3,1566.700 ,39.63306 ,-119.8897,MesoWest ,DRI ,SIERRA SAGE GOLF COURSE NV US DRI , +CITR ,3,542.5000 ,33.44611 ,-118.5431,MesoWest ,DRI ,Silver Peak Trail - Santa Catali CA US DRI , +SLIDE,3,2941.300 ,39.30722 ,-119.8839,MesoWest ,DRI ,SLIDE MOUNTAIN NV US DRI , +SSVB ,3,1523.400 ,38.57250 ,-118.1756,MesoWest ,DRI ,SODA SPRING VALLEY BENCH NV US DRI , +SSVF ,3,1354.200 ,38.54083 ,-118.2914,MesoWest ,DRI ,SODA SPRING VALLEY FLOOR NV US DRI , +WRUN ,3,1487.400 ,39.41639 ,-119.8014,MesoWest ,DRI ,SOUTH RENO - WOLF RUN GOLF COURS NV US DRI , +STORM,3,3209.900 ,40.45000 ,-106.7300,MesoWest ,DRI ,Storm Peak Observatory CO US DRI , +SUGAR,3,2126.000 ,39.30333 ,-120.3408,MesoWest ,DRI ,SUGAR BOWL SKI CA US DRI , +GLSH ,3,1828.800 ,39.36250 ,-120.0997,MesoWest ,DRI ,TRUCKEE - GLENSHIRE ES CA US DRI , +UNRC ,3,1365.500 ,39.53917 ,-119.8058,MesoWest ,DRI ,UNR CAMPUS NV US DRI , +VAPK ,3,2529.500 ,39.75417 ,-119.4622,MesoWest ,DRI ,VIRGINIA PEAK (KRGX) NV US DRI , +WNCC ,3,1534.700 ,39.18583 ,-119.7969,MesoWest ,DRI ,WESTERN NV COMMUNITY COLLEGE NV US DRI , +WHALE,3,189.0000 ,36.07222 ,-121.5958,MesoWest ,DRI ,WHALE POINT CA US DRI , +WMSRS,3,4342.200 ,37.63417 ,-118.2558,MesoWest ,DRI ,WHITE MTN SUMMIT RESEARCH STN CA US DRI , +WHWTR,3,3043.400 ,39.05139 ,-108.1947,MesoWest ,DRI ,Whitewater Creek - Grand Mesa CO US DRI , +CIWP ,3,442.0000 ,33.37250 ,-118.3758,MesoWest ,DRI ,Whitleys Peak - Santa Catalina I CA US DRI , +WBGLY,3,221.9000 ,33.32444 ,-118.4392,MesoWest ,DRI ,Wild Boar Gully CA US DRI , +UP364,3,1262.800 ,35.23513 ,-103.5954,MesoWest ,UPR ,Adberg NM US UPR , +UP100,3,576.1000 ,40.88350 ,-98.43657,MesoWest ,UPR ,Alda NE US UPR , +UP269,3,266.1000 ,32.69708 ,-97.60419,MesoWest ,UPR ,Aledo TX US UPR , +UP157,3,97.50000 ,34.63200 ,-92.44260,MesoWest ,UPR ,ALEX1 AR US UPR , +UP093,3,1732.200 ,42.65497 ,-111.7299,MesoWest ,UPR ,Alexander ID US UPR , +UP111,3,424.6000 ,40.23040 ,-97.34965,MesoWest ,UPR ,Alexandria NE US UPR , +UP428,3,335.9000 ,38.97663 ,-96.34433,MesoWest ,UPR ,Alma West KS US UPR , +UP270,3,1378.900 ,30.37413 ,-103.6128,MesoWest ,UPR ,Alpine East TX US UPR , +UP057,3,1327.400 ,42.33360 ,-104.0693,MesoWest ,UPR ,Alsop WY US UPR , +UP021,3,550.2000 ,40.44883 ,-98.14595,MesoWest ,UPR ,Anan NE US UPR , +UP052,3,733.0000 ,36.34095 ,-114.9180,MesoWest ,UPR ,Apex NV US UPR , +UP166,3,1813.300 ,41.17605 ,-104.6376,MesoWest ,UPR ,Archer WY US UPR , +UP076,3,740.1000 ,36.02857 ,-115.2255,MesoWest ,UPR ,Arden NV US UPR , +UP271,3,199.0000 ,33.07983 ,-97.19811,MesoWest ,UPR ,Argyle South TX US UPR , +UP405,3,438.0000 ,32.84856 ,-111.7114,MesoWest ,UPR ,Arizola AZ US UPR , +UP342,3,362.7000 ,41.44149 ,-96.27014,MesoWest ,UPR ,Arlington East NE US UPR , +UP274,3,173.1000 ,34.40832 ,-96.10890,MesoWest ,UPR ,Atoka North OK US UPR , +UP470,3,14.00000 ,47.34458 ,-122.2388,MesoWest ,UPR ,Auburn WA US UPR , +UP427,3,198.1000 ,30.22435 ,-97.77687,MesoWest ,UPR ,Austin TX US UPR , +UP275,3,411.5000 ,39.86826 ,-96.24828,MesoWest ,UPR ,Axtell KS US UPR , +UP033,3,293.2000 ,35.04440 ,-116.0768,MesoWest ,UPR ,Balch CA US UPR , +UP298,3,231.6000 ,41.41918 ,-87.63579,MesoWest ,UPR ,Balmoral IL US UPR , +UP276,3,666.0000 ,33.92716 ,-116.8459,MesoWest ,UPR ,Banning CA US UPR , +UP031,3,1345.100 ,42.83658 ,-112.7718,MesoWest ,UPR ,Bannock ID US UPR , +UP184,3,271.6000 ,45.65348 ,-118.9485,MesoWest ,UPR ,Barnhart OR US UPR , +UP277,3,86.00000 ,30.91997 ,-96.71107,MesoWest ,UPR ,Barton TX US UPR , +UP257,3,1930.600 ,41.63045 ,-109.0439,MesoWest ,UPR ,Baxter WY US UPR , +UP278,3,12.80000 ,28.91917 ,-96.00464,MesoWest ,UPR ,Bay City South TX US UPR , +UP371,3,312.1000 ,37.99279 ,-95.16307,MesoWest ,UPR ,Bayard KS US UPR , +UP133,3,312.7000 ,42.03650 ,-94.14717,MesoWest ,UPR ,Beaver IA US UPR , +UP258,3,435.6000 ,41.43435 ,-97.26343,MesoWest ,UPR ,Behlen NE US UPR , +UP214,3,242.9000 ,41.89583 ,-92.29067,MesoWest ,UPR ,Belle Plaine IA US UPR , +UP402,3,1011.900 ,41.29576 ,-101.9137,MesoWest ,UPR ,Belmar NE US UPR , +UP242,3,1578.900 ,37.86478 ,-113.7507,MesoWest ,UPR ,Beryl UT US UPR , +UP280,3,86.30000 ,35.97274 ,-90.53573,MesoWest ,UPR ,Bethel South AR US UPR , +UP281,3,103.9000 ,32.79510 ,-94.95934,MesoWest ,UPR ,Bettie South TX US UPR , +UP196,3,1022.300 ,41.07420 ,-102.0125,MesoWest ,UPR ,Big Springs NE US UPR , +UP244,3,2045.200 ,41.58080 ,-108.5103,MesoWest ,UPR ,Bitter Creek WY US UPR , +UP072,3,2009.600 ,41.57535 ,-108.7025,MesoWest ,UPR ,Black Butte WY US UPR , +UP094,3,1478.300 ,38.77817 ,-112.9056,MesoWest ,UPR ,Black Rock UT US UPR , +UP063,3,85.30000 ,45.71440 ,-120.2888,MesoWest ,UPR ,Blalock OR US UPR , +UP180,3,1585.600 ,42.69427 ,-112.0214,MesoWest ,UPR ,Blaser ID US UPR , +UP160,3,973.8000 ,42.92548 ,-115.0199,MesoWest ,UPR ,Bliss ID US UPR , +UP153,3,1418.800 ,39.01907 ,-112.7793,MesoWest ,UPR ,Bloom UT US UPR , +UP359,3,1332.000 ,31.06774 ,-105.1293,MesoWest ,UPR ,Bola TX US UPR , +UP236,3,9.100000 ,38.71480 ,-121.4859,MesoWest ,UPR ,Bombay CA US UPR , +UP211,3,625.1000 ,45.64622 ,-118.3587,MesoWest ,UPR ,Bonifer OR US UPR , +UP220,3,27.70000 ,45.62878 ,-121.9673,MesoWest ,UPR ,Bonneville OR US UPR , +UP282,3,1327.400 ,31.07290 ,-104.3467,MesoWest ,UPR ,Boracho East TX US UPR , +UP183,3,795.2000 ,35.66195 ,-115.3553,MesoWest ,UPR ,Borax NV US UPR , +UP004,3,1961.400 ,41.08510 ,-104.9577,MesoWest ,UPR ,Borie WY US UPR , +UP283,3,54.90000 ,32.58515 ,-93.73190,MesoWest ,UPR ,Bossier City LA US UPR , +UP234,3,1845.600 ,39.95192 ,-112.2394,MesoWest ,UPR ,Boulter UT US UPR , +UP099,3,807.1000 ,41.01742 ,-100.3623,MesoWest ,UPR ,Brady NE US UPR , +UP075,3,1464.600 ,42.63850 ,-104.0993,MesoWest ,UPR ,Braun WY US UPR , +UP284,3,242.9000 ,32.66936 ,-98.10294,MesoWest ,UPR ,Brazos East TX US UPR , +UP159,3,400.5000 ,39.90410 ,-96.84355,MesoWest ,UPR ,Bremen KS US UPR , +UP112,3,12.80000 ,45.53913 ,-122.2392,MesoWest ,UPR ,Bridal Veil OR US UPR , +UP030,3,2015.300 ,41.40758 ,-110.5763,MesoWest ,UPR ,Bridger WY US UPR , +UP467,3,64.30000 ,34.82168 ,-91.22608,MesoWest ,UPR ,Brinkley AR US UPR , +UP286,3,1286.300 ,41.19124 ,-103.1259,MesoWest ,UPR ,Brownson NE US UPR , +UP108,3,999.1000 ,41.09303 ,-101.8798,MesoWest ,UPR ,Brule NE US UPR , +UP287,3,1917.200 ,41.55320 ,-109.6404,MesoWest ,UPR ,Bryan East WY US UPR , +UP091,3,257.6000 ,39.05435 ,-95.29910,MesoWest ,UPR ,Buck Creek KS US UPR , +UP414,3,78.90000 ,33.35642 ,-93.42940,MesoWest ,UPR ,Buckner AR US UPR , +UP443,3,217.0000 ,41.31395 ,-89.69001,MesoWest ,UPR ,Buda IL US UPR , +UP173,3,2402.700 ,41.12200 ,-105.3091,MesoWest ,UPR ,Buford WY US UPR , +UP203,3,2432.000 ,41.11408 ,-105.3419,MesoWest ,UPR ,Buford WY US UPR , +UP006,3,1473.100 ,41.23317 ,-103.8458,MesoWest ,UPR ,Bushnell NE US UPR , +UP118,3,307.2000 ,41.55620 ,-95.93530,MesoWest ,UPR ,California Jct. IA US UPR , +UP267,3,1287.800 ,32.22696 ,-107.3255,MesoWest ,UPR ,Cambray NM US UPR , +UP297,3,163.1000 ,34.23467 ,-96.20956,MesoWest ,UPR ,Caney OK US UPR , +UP317,3,484.0000 ,38.38454 ,-97.44465,MesoWest ,UPR ,Canton West KS US UPR , +UP135,3,466.3000 ,40.27975 ,-97.61395,MesoWest ,UPR ,Carleton NE US UPR , +UP189,3,811.7000 ,37.17088 ,-114.4765,MesoWest ,UPR ,Carp NV US UPR , +UP318,3,164.6000 ,38.90447 ,-89.87814,MesoWest ,UPR ,Carpenter East IL US UPR , +UP288,3,1705.400 ,40.84215 ,-104.8498,MesoWest ,UPR ,Carr South CO US UPR , +UP003,3,380.4000 ,42.06943 ,-94.88207,MesoWest ,UPR ,Carroll IA US UPR , +UP123,3,32.90000 ,45.65492 ,-121.9055,MesoWest ,UPR ,Cascade Locks OR US UPR , +UP143,3,86.30000 ,45.83343 ,-119.7709,MesoWest ,UPR ,Castle OR US UPR , +UP029,3,1905.000 ,41.11198 ,-111.2036,MesoWest ,UPR ,Castle Rock UT US UPR , +UP138,3,1296.300 ,40.98520 ,-111.9002,MesoWest ,UPR ,CENEWS UT US UPR , +UP224,3,509.0000 ,41.12797 ,-97.98212,MesoWest ,UPR ,Central City NE US UPR , +UP208,3,510.8000 ,41.13520 ,-97.96932,MesoWest ,UPR ,Central City NE US UPR , +UP028,3,1285.600 ,40.93860 ,-111.8977,MesoWest ,UPR ,CENWWS UT US UPR , +UP290,3,1206.100 ,36.14622 ,-102.3883,MesoWest ,UPR ,Chamberoin TX US UPR , +UP140,3,541.9000 ,41.01878 ,-98.16375,MesoWest ,UPR ,Chapman NE US UPR , +UP469,3,1097.900 ,41.00639 ,-102.3823,MesoWest ,UPR ,Chappell NE US UPR , +UP034,3,1248.200 ,35.25893 ,-115.4736,MesoWest ,UPR ,Cima CA US UPR , +UP292,3,490.7000 ,32.38712 ,-99.03180,MesoWest ,UPR ,Cisco West TX US UPR , +UP106,3,1539.200 ,40.26128 ,-112.3948,MesoWest ,UPR ,Clover UT US UPR , +UP444,3,595.0000 ,32.41240 ,-99.57072,MesoWest ,UPR ,Clyde West TX US UPR , +UP452,3,200.6000 ,39.29011 ,-89.30356,MesoWest ,UPR ,Coalton IL US UPR , +UP065,3,637.9000 ,44.26725 ,-117.1334,MesoWest ,UPR ,Cobb ID US UPR , +UP096,3,317.6000 ,42.01850 ,-93.32050,MesoWest ,UPR ,Colo IA US UPR , +UP164,3,2046.100 ,41.90930 ,-106.3750,MesoWest ,UPR ,Como WY US UPR , +UP295,3,484.6000 ,29.70380 ,-101.2231,MesoWest ,UPR ,Comstock West TX US UPR , +UP296,3,1140.000 ,36.27096 ,-102.1781,MesoWest ,UPR ,Conlen East TX US UPR , +UP472,3,1288.100 ,41.21587 ,-112.4926,MesoWest ,UPR ,Corinne UT US UPR , +UP308,3,2017.800 ,34.26127 ,-105.5821,MesoWest ,UPR ,Corona North NM US UPR , +UP051,3,606.2000 ,40.80818 ,-98.63630,MesoWest ,UPR ,Cory NE US UPR , +UP326,3,1194.800 ,41.86718 ,-103.7363,MesoWest ,UPR ,Costin NE US UPR , +UP299,3,129.5000 ,40.39393 ,-122.2590,MesoWest ,UPR ,Cottonwood CA US UPR , +UP358,3,1053.100 ,41.45370 ,-102.4858,MesoWest ,UPR ,Coumbe Bluff NE US UPR , +UP207,3,1485.900 ,42.72033 ,-104.3055,MesoWest ,UPR ,Crandall WY US UPR , +UP262,3,2158.000 ,41.71090 ,-107.7320,MesoWest ,UPR ,Creston WY US UPR , +UP206,3,2161.000 ,41.69983 ,-107.7664,MesoWest ,UPR ,Creston WY US UPR , +UP273,3,1458.500 ,35.05689 ,-104.3543,MesoWest ,UPR ,Cuervo East NM US UPR , +UP011,3,1630.100 ,41.07427 ,-115.2514,MesoWest ,UPR ,Deeth NV US UPR , +UP340,3,318.8000 ,29.36765 ,-100.8293,MesoWest ,UPR ,Del Rio East TX US UPR , +UP097,3,296.6000 ,39.23825 ,-95.96547,MesoWest ,UPR ,Delia KS US UPR , +UP369,3,189.9000 ,33.23149 ,-97.10473,MesoWest ,UPR ,Denton TX US UPR , +UP171,3,41.80000 ,33.46182 ,-91.44642,MesoWest ,UPR ,Dermott AR US UPR , +UP151,3,1243.600 ,42.90830 ,-114.2623,MesoWest ,UPR ,Dietrich ID US UPR , +UP261,3,1383.200 ,41.23408 ,-103.4694,MesoWest ,UPR ,Dix NE US UPR , +UP060,3,238.4000 ,41.83098 ,-89.41727,MesoWest ,UPR ,Dixon IL US UPR , +UP013,3,617.2000 ,36.50288 ,-114.7636,MesoWest ,UPR ,Dry Lake NV US UPR , +UP301,3,207.3000 ,40.84742 ,-89.65364,MesoWest ,UPR ,Dunlap IL US UPR , +UP178,3,449.6000 ,35.03615 ,-116.3216,MesoWest ,UPR ,Dunn CA US UPR , +UP304,3,438.9000 ,38.50808 ,-97.20760,MesoWest ,UPR ,Durham North KS US UPR , +UP016,3,2086.400 ,41.83615 ,-106.6814,MesoWest ,UPR ,Durrant WY US UPR , +UP305,3,441.0000 ,38.83429 ,-96.62936,MesoWest ,UPR ,Dwight West KS US UPR , +UP168,3,17.70000 ,29.95907 ,-95.17803,MesoWest ,UPR ,Dyersdale Jct. TX US UPR , +UP162,3,26.80000 ,30.46640 ,-93.36867,MesoWest ,UPR ,E.DeQuincy LA US UPR , +UP306,3,1461.500 ,40.50814 ,-104.7044,MesoWest ,UPR ,Eaton South CO US UPR , +UP253,3,207.3000 ,45.71123 ,-119.1541,MesoWest ,UPR ,Echo OR US UPR , +UP445,3,28.00000 ,27.97365 ,-97.67808,MesoWest ,UPR ,Edroy TX US UPR , +UP008,3,1596.200 ,41.16048 ,-104.2317,MesoWest ,UPR ,Egbert WY US UPR , +UP082,3,1047.000 ,37.36173 ,-114.5439,MesoWest ,UPR ,Elgin NV US UPR , +UP347,3,1008.900 ,37.32422 ,-114.5059,MesoWest ,UPR ,Elgin South NV US UPR , +UP042,3,345.0000 ,41.28012 ,-96.23022,MesoWest ,UPR ,Elkhorn NE US UPR , +UP457,3,383.4000 ,43.83385 ,-93.31032,MesoWest ,UPR ,Ellendale South MN US UPR , +UP226,3,2049.500 ,41.08202 ,-105.0375,MesoWest ,UPR ,Emkay WY US UPR , +UP191,3,1309.100 ,37.57345 ,-114.5492,MesoWest ,UPR ,Etna NV US UPR , +UP265,3,1315.200 ,32.18424 ,-107.1583,MesoWest ,UPR ,Fairacres NM US UPR , +UP232,3,401.7000 ,40.15483 ,-97.20027,MesoWest ,UPR ,Fairbury NE US UPR , +UP312,3,1170.400 ,31.97135 ,-110.2141,MesoWest ,UPR ,Fenner AZ US UPR , +UP086,3,237.1000 ,41.89632 ,-89.13557,MesoWest ,UPR ,Flagg IL US UPR , +UP161,3,9.100000 ,30.58968 ,-91.61045,MesoWest ,UPR ,Fordoche LA US UPR , +UP247,3,2234.200 ,41.24722 ,-105.5593,MesoWest ,UPR ,Forelle WY US UPR , +UP020,3,237.7000 ,39.06303 ,-94.84512,MesoWest ,UPR ,Forest Lake KS US UPR , +UP024,3,2127.500 ,41.81988 ,-110.6618,MesoWest ,UPR ,Fossil WY US UPR , +UP403,3,86.00000 ,30.67168 ,-96.48304,MesoWest ,UPR ,Fountain TX US UPR , +UP389,3,6.100000 ,38.37912 ,-121.4511,MesoWest ,UPR ,Franklin CA US UPR , +UP314,3,1425.900 ,39.08067 ,-108.4801,MesoWest ,UPR ,Fruitvale East CO US UPR , +UP316,3,1378.300 ,32.21689 ,-108.1824,MesoWest ,UPR ,Gage West NM US UPR , +UP181,3,194.5000 ,41.78813 ,-89.76368,MesoWest ,UPR ,Galt IL US UPR , +UP069,3,1287.200 ,40.75052 ,-112.0351,MesoWest ,UPR ,Garfield UT US UPR , +UP366,3,68.30000 ,35.15555 ,-91.76742,MesoWest ,UPR ,Garner East AR US UPR , +UP321,3,42.40000 ,28.36173 ,-98.12939,MesoWest ,UPR ,George West TX US UPR , +UP319,3,50.30000 ,30.95208 ,-92.59665,MesoWest ,UPR ,Glenmora South LA US UPR , +UP155,3,1326.800 ,40.98140 ,-117.3794,MesoWest ,UPR ,Golconda NV US UPR , +UP241,3,1107.300 ,42.95107 ,-114.6345,MesoWest ,UPR ,Gooding ID US UPR , +UP320,3,983.0000 ,36.62620 ,-101.5718,MesoWest ,UPR ,Goodwell East OK US UPR , +UP045,3,200.9000 ,40.58115 ,-87.78057,MesoWest ,UPR ,Goodwine IL US UPR , +UP322,3,333.1000 ,43.86407 ,-89.67240,MesoWest ,UPR ,Grand Marsh WI US UPR , +UP122,3,219.5000 ,41.82283 ,-90.63383,MesoWest ,UPR ,Grand Mound IA US UPR , +UP186,3,1904.400 ,41.61740 ,-109.9116,MesoWest ,UPR ,GRANG1 WY US UPR , +UP027,3,2202.200 ,41.09957 ,-105.1368,MesoWest ,UPR ,Granite WY US UPR , +UP250,3,266.4000 ,39.08388 ,-95.55812,MesoWest ,UPR ,Grantville KS US UPR , +UP068,3,1285.000 ,41.22320 ,-112.6663,MesoWest ,UPR ,Great Salt Lake UT US UPR , +UP323,3,671.2000 ,37.60961 ,-99.25026,MesoWest ,UPR ,Greensburg East KS US UPR , +UP074,3,100.9000 ,32.50687 ,-94.87400,MesoWest ,UPR ,Greggton TX US UPR , +UP324,3,455.1000 ,38.30206 ,-97.72059,MesoWest ,UPR ,Groveland KS US UPR , +UP251,3,2084.800 ,41.77448 ,-107.4069,MesoWest ,UPR ,Hadsel WY US UPR , +UP325,3,2090.900 ,41.77374 ,-107.4083,MesoWest ,UPR ,Hadsell West WY US UPR , +UP179,3,1020.500 ,44.85397 ,-117.8974,MesoWest ,UPR ,Haines OR US UPR , +UP092,3,1993.100 ,41.64170 ,-108.7678,MesoWest ,UPR ,Hallville WY US UPR , +UP327,3,1999.500 ,41.60896 ,-108.7363,MesoWest ,UPR ,Hallville WY US UPR , +UP254,3,765.0000 ,42.94448 ,-115.4102,MesoWest ,UPR ,Hammet ID US UPR , +UP146,3,1956.200 ,41.51987 ,-110.3321,MesoWest ,UPR ,Hampton WY US UPR , +UP044,3,2270.800 ,41.00630 ,-105.2542,MesoWest ,UPR ,Harriman WY US UPR , +UP145,3,1319.500 ,42.74232 ,-113.4338,MesoWest ,UPR ,Hawley ID US UPR , +UP080,3,612.3000 ,40.65138 ,-98.54322,MesoWest ,UPR ,Hayland NE US UPR , +UP407,3,846.1000 ,37.09922 ,-100.8071,MesoWest ,UPR ,Hayne KS US UPR , +UP433,3,349.0000 ,43.75927 ,-122.5118,MesoWest ,UPR ,Hemlock OR US UPR , +UP077,3,1634.000 ,41.01068 ,-111.4816,MesoWest ,UPR ,Henefred UT US UPR , +UP066,3,1610.600 ,41.03612 ,-111.5078,MesoWest ,UPR ,Henefred UT US UPR , +UP185,3,76.20000 ,34.57252 ,-92.21105,MesoWest ,UPR ,Hensley AR US UPR , +UP110,3,95.10000 ,45.79557 ,-120.0206,MesoWest ,UPR ,Heppner Jct. OR US UPR , +UP449,3,43.90000 ,28.18172 ,-97.88649,MesoWest ,UPR ,Hideaway Hill TX US UPR , +UP015,3,1712.400 ,41.21100 ,-104.4375,MesoWest ,UPR ,Hillsdale WY US UPR , +UP331,3,687.3000 ,33.94366 ,-117.0453,MesoWest ,UPR ,Hinda CA US UPR , +UP121,3,79.60000 ,33.56640 ,-93.85660,MesoWest ,UPR ,Homan AR US UPR , +UP333,3,900.7000 ,36.90242 ,-101.1465,MesoWest ,UPR ,Hooker East OK US UPR , +UP446,3,420.3000 ,43.11275 ,-95.89669,MesoWest ,UPR ,Hospers North IA US UPR , +UP334,3,2170.200 ,41.45150 ,-105.6248,MesoWest ,UPR ,Howell North WY US UPR , +UP335,3,53.30000 ,45.17030 ,-122.8218,MesoWest ,UPR ,Hubbard South OR US UPR , +UP410,3,481.6000 ,38.11478 ,-97.86411,MesoWest ,UPR ,Hutchinson North KS US UPR , +UP361,3,137.2000 ,34.00299 ,-117.8892,MesoWest ,UPR ,Industry CA US UPR , +UP195,3,1403.900 ,42.73882 ,-112.2140,MesoWest ,UPR ,Inkom ID US UPR , +UP338,3,1487.100 ,40.12246 ,-104.8085,MesoWest ,UPR ,Ione CO US UPR , +UP182,3,1633.700 ,37.52280 ,-114.2480,MesoWest ,UPR ,Islen NV US UPR , +UP461,3,118.0000 ,37.74454 ,-89.53397,MesoWest ,UPR ,Jacob IL US UPR , +UP201,3,1583.400 ,39.71190 ,-112.2073,MesoWest ,UPR ,Jericho UT US UPR , +UP329,3,225.9000 ,44.57842 ,-93.89078,MesoWest ,UPR ,Jessenland MN US UPR , +UP047,3,1252.700 ,41.94448 ,-103.9794,MesoWest ,UPR ,Joyce NE US UPR , +UP124,3,1892.200 ,41.55038 ,-109.3167,MesoWest ,UPR ,Kanda WY US UPR , +UP001,3,1305.200 ,41.00057 ,-111.9240,MesoWest ,UPR ,Kaysville UT US UPR , +UP101,3,840.3000 ,41.09033 ,-100.5651,MesoWest ,UPR ,Keith NE US UPR , +UP346,3,59.70000 ,32.34809 ,-93.82723,MesoWest ,UPR ,Keithville North LA US UPR , +UP009,3,154.8000 ,38.43905 ,-88.89748,MesoWest ,UPR ,Kell IL US UPR , +UP071,3,611.1000 ,34.99642 ,-115.6825,MesoWest ,UPR ,Kelso CA US UPR , +UP169,3,65.50000 ,35.24692 ,-91.64835,MesoWest ,UPR ,Kensett AR US UPR , +UP255,3,373.7000 ,43.34530 ,-93.20680,MesoWest ,UPR ,Kensett IA US UPR , +UP468,3,29.90000 ,37.54894 ,-120.9089,MesoWest ,UPR ,Keyes CA US UPR , +UP043,3,586.7000 ,40.59058 ,-98.34470,MesoWest ,UPR ,Kics Road NE US UPR , +UP198,3,1295.100 ,42.84072 ,-113.8005,MesoWest ,UPR ,Kimama ID US UPR , +UP411,3,79.90000 ,32.45662 ,-94.79783,MesoWest ,UPR ,Kinsloe North TX US UPR , +UP343,3,206.7000 ,39.57129 ,-88.66939,MesoWest ,UPR ,Kirksville IL US UPR , +UP345,3,117.3000 ,35.37906 ,-93.36492,MesoWest ,UPR ,Knoxville AR US UPR , +UP172,3,20.10000 ,30.54053 ,-91.74285,MesoWest ,UPR ,Krotz Siding LA US UPR , +UP083,3,842.8000 ,43.45820 ,-116.3522,MesoWest ,UPR ,Kuna ID US UPR , +UP246,3,285.3000 ,42.02867 ,-93.03967,MesoWest ,UPR ,La Moille IA US UPR , +UP348,3,11.00000 ,28.79263 ,-96.66912,MesoWest ,UPR ,La Salle TX US UPR , +UP473,3,1281.100 ,41.22389 ,-112.8775,MesoWest ,UPR ,Lakeside UT US UPR , +UP423,3,519.1000 ,37.83505 ,-98.37068,MesoWest ,UPR ,Langdon West KS US UPR , +UP448,3,68.00000 ,35.25286 ,-90.38728,MesoWest ,UPR ,Lansing AR US UPR , +UP465,3,2185.100 ,41.45151 ,-105.6248,MesoWest ,UPR ,Laramie WY US UPR , +UP039,3,1554.500 ,38.06247 ,-113.3640,MesoWest ,UPR ,Latimer UT US UPR , +UP349,3,434.0000 ,38.74431 ,-96.82348,MesoWest ,UPR ,Latimer East KS US UPR , +UP309,3,16.20000 ,30.48371 ,-92.77446,MesoWest ,UPR ,Lauderdale LA US UPR , +UP463,3,5.800000 ,29.51587 ,-95.09729,MesoWest ,UPR ,League City TX US UPR , +UP350,3,153.0000 ,29.09624 ,-98.48729,MesoWest ,UPR ,Leming North TX US UPR , +UP368,3,21.30000 ,31.11893 ,-92.40582,MesoWest ,UPR ,Lemourie South LA US UPR , +UP434,3,119.5000 ,29.90532 ,-97.03723,MesoWest ,UPR ,Lena North TX US UPR , +UP351,3,2046.700 ,41.32343 ,-110.6201,MesoWest ,UPR ,Leroy WY US UPR , +UP019,3,734.0000 ,40.78305 ,-99.77635,MesoWest ,UPR ,Lexington NE US UPR , +UP352,3,878.1000 ,37.01428 ,-100.9672,MesoWest ,UPR ,Liberal West OK US UPR , +UP103,3,379.8000 ,39.61022 ,-96.29852,MesoWest ,UPR ,Lillis KS US UPR , +UP054,3,244.8000 ,38.97938 ,-95.09218,MesoWest ,UPR ,Linwood KS US UPR , +UP379,3,273.1000 ,29.57042 ,-98.35489,MesoWest ,UPR ,Live Oak TX US UPR , +UP219,3,1146.400 ,41.11847 ,-102.5439,MesoWest ,UPR ,Lodgepole NE US UPR , +UP363,3,1156.400 ,35.34639 ,-103.4096,MesoWest ,UPR ,Logan South NM US UPR , +UP354,3,2190.600 ,41.67957 ,-105.8382,MesoWest ,UPR ,Lookout West WY US UPR , +UP355,3,1487.100 ,34.98744 ,-104.5587,MesoWest ,UPR ,Los Tanos NM US UPR , +UP026,3,219.5000 ,41.85567 ,-90.93400,MesoWest ,UPR ,Lowden IA US UPR , +UP216,3,192.9000 ,41.79793 ,-90.31712,MesoWest ,UPR ,Lowmoor IA US UPR , +UP357,3,2.400000 ,29.93223 ,-90.36780,MesoWest ,UPR ,Luling LA US UPR , +UP114,3,1529.800 ,42.76088 ,-104.4798,MesoWest ,UPR ,Lusk WY US UPR , +UP204,3,2197.300 ,41.02458 ,-105.1563,MesoWest ,UPR ,Lynch WY US UPR , +UP154,3,1459.100 ,39.49658 ,-112.4025,MesoWest ,UPR ,Lynndyl UT US UPR , +UP215,3,278.9000 ,41.93018 ,-88.85275,MesoWest ,UPR ,Malta IL US UPR , +UP240,3,545.6000 ,34.97432 ,-116.6123,MesoWest ,UPR ,Manix CA US UPR , +UP079,3,1769.700 ,42.60533 ,-111.5193,MesoWest ,UPR ,Manson ID US UPR , +UP036,3,7.000000 ,30.47417 ,-91.50508,MesoWest ,UPR ,Marinqouin LA US UPR , +UP362,3,979.9000 ,41.25423 ,-101.6342,MesoWest ,UPR ,Martin East NE US UPR , +UP365,3,1399.000 ,42.98892 ,-121.8134,MesoWest ,UPR ,Mazama OR US UPR , +UP310,3,12.20000 ,38.36074 ,-121.3466,MesoWest ,UPR ,McConnel CA US UPR , +UP035,3,271.3000 ,41.90233 ,-91.26000,MesoWest ,UPR ,Mechanicsville IA US UPR , +UP450,3,337.4000 ,44.17208 ,-93.24123,MesoWest ,UPR ,Medford MN US UPR , +UP087,3,2016.300 ,41.88663 ,-106.1647,MesoWest ,UPR ,Medicine Bow WY US UPR , +UP205,3,1162.200 ,41.76657 ,-103.4723,MesoWest ,UPR ,Melba NE US UPR , +UP073,3,29.90000 ,45.70495 ,-121.6158,MesoWest ,UPR ,Meno OR US UPR , +UP188,3,267.3000 ,41.89537 ,-88.51383,MesoWest ,UPR ,Meredith IL US UPR , +UP453,3,1245.400 ,35.81472 ,-102.8274,MesoWest ,UPR ,Middle Water TX US UPR , +UP294,3,747.1000 ,32.28279 ,-101.3704,MesoWest ,UPR ,Midway TX US UPR , +UP218,3,2127.500 ,41.20413 ,-110.8581,MesoWest ,UPR ,Mills WY US UPR , +UP200,3,2112.300 ,41.21323 ,-110.8721,MesoWest ,UPR ,Mills WY US UPR , +UP313,3,781.5000 ,37.43262 ,-100.0480,MesoWest ,UPR ,Minneola West KS US UPR , +UP370,3,81.10000 ,35.97448 ,-91.02779,MesoWest ,UPR ,Minturn AR US UPR , +UP067,3,376.4000 ,45.66932 ,-118.6638,MesoWest ,UPR ,Mission OR US UPR , +UP194,3,531.3000 ,36.76270 ,-114.6560,MesoWest ,UPR ,Moapa NV US UPR , +UP451,3,312.4000 ,41.68978 ,-96.02091,MesoWest ,UPR ,Mondamin South IA US UPR , +UP439,3,2046.400 ,41.57857 ,-108.5126,MesoWest ,UPR ,Monell WY US UPR , +UP315,3,1350.300 ,32.24051 ,-108.0077,MesoWest ,UPR ,Mongola NM US UPR , +UP409,3,1318.600 ,35.09700 ,-104.0633,MesoWest ,UPR ,Montoya NM US UPR , +UP165,3,979.9000 ,35.41203 ,-115.2598,MesoWest ,UPR ,Moore CA US UPR , +UP005,3,1517.600 ,41.04980 ,-111.6830,MesoWest ,UPR ,Morgan UT US UPR , +UP466,3,207.9000 ,41.84089 ,-90.03556,MesoWest ,UPR ,Morrison IL US UPR , +UP455,3,634.0000 ,48.22210 ,-116.6899,MesoWest ,UPR ,Morton North ID US UPR , +UP113,3,29.90000 ,45.69122 ,-121.4417,MesoWest ,UPR ,Mosier OR US UPR , +UP078,3,941.8000 ,43.06483 ,-115.6422,MesoWest ,UPR ,Mountain Home ID US UPR , +UP391,3,1188.700 ,31.87255 ,-106.4053,MesoWest ,UPR ,Mountain View TX US UPR , +UP202,3,1935.500 ,41.65010 ,-110.0571,MesoWest ,UPR ,Moxa WY US UPR , +UP372,3,717.2000 ,37.57642 ,-99.51430,MesoWest ,UPR ,Mullinville West KS US UPR , +UP010,3,1510.300 ,38.48657 ,-112.9840,MesoWest ,UPR ,Murdock UT US UPR , +UP373,3,115.8000 ,37.76068 ,-89.36262,MesoWest ,UPR ,Murphysboro IL US UPR , +UP129,3,1628.200 ,42.78467 ,-104.6622,MesoWest ,UPR ,Myles WY US UPR , +UP268,3,1264.600 ,32.25964 ,-107.4567,MesoWest ,UPR ,Myndus NM US UPR , +UP377,3,1272.800 ,35.66411 ,-103.0245,MesoWest ,UPR ,Nara Visa East NM US UPR , +UP375,3,303.3000 ,40.68736 ,-95.86597,MesoWest ,UPR ,Nebraska City NE US UPR , +UP134,3,91.40000 ,36.51775 ,-90.51145,MesoWest ,UPR ,Neelyville MO US UPR , +UP053,3,780.3000 ,44.55208 ,-117.4254,MesoWest ,UPR ,Nelson OR US UPR , +UP376,3,1690.700 ,39.55432 ,-107.5799,MesoWest ,UPR ,New Castle East CO US UPR , +UP412,3,230.4000 ,40.65987 ,-122.3936,MesoWest ,UPR ,Newtown CA US UPR , +UP302,3,255.1000 ,29.28129 ,-98.93589,MesoWest ,UPR ,Noonan West TX US UPR , +UP152,3,236.8000 ,41.90050 ,-91.92300,MesoWest ,UPR ,Norway IA US UPR , +UP307,3,41.10000 ,29.54037 ,-96.15466,MesoWest ,UPR ,Nottawa TX US UPR , +UP341,3,71.00000 ,35.56358 ,-91.35599,MesoWest ,UPR ,Nuckles AR US UPR , +UP017,3,661.4000 ,43.92310 ,-116.9854,MesoWest ,UPR ,Nyssa OR US UPR , +UP380,3,86.60000 ,36.14931 ,-90.84329,MesoWest ,UPR ,O'Kean West AR US UPR , +UP378,3,24.10000 ,30.64318 ,-92.75052,MesoWest ,UPR ,Oberlin Nort LA US UPR , +UP018,3,673.9000 ,40.69962 ,-99.24057,MesoWest ,UPR ,Odessa NE US UPR , +UP233,3,966.2000 ,41.13233 ,-101.6782,MesoWest ,UPR ,Ogallala NE US UPR , +UP225,3,975.4000 ,41.13267 ,-101.6722,MesoWest ,UPR ,Ogallala NE US UPR , +UP381,3,472.1000 ,32.41817 ,-98.76142,MesoWest ,UPR ,Olden TX US UPR , +UP266,3,331.0000 ,39.46419 ,-96.15926,MesoWest ,UPR ,Onaga KS US UPR , +UP260,3,329.2000 ,39.46305 ,-96.15898,MesoWest ,UPR ,Onaga KS US UPR , +UP222,3,2006.800 ,41.78027 ,-110.2367,MesoWest ,UPR ,Opal WY US UPR , +UP058,3,645.6000 ,40.73322 ,-98.91270,MesoWest ,UPR ,Optic NE US UPR , +UP383,3,901.9000 ,36.74307 ,-101.3828,MesoWest ,UPR ,Optima West OK US UPR , +UP384,3,262.1000 ,38.52552 ,-94.94547,MesoWest ,UPR ,Osawa KS US UPR , +UP385,3,1018.600 ,41.37124 ,-102.2447,MesoWest ,UPR ,Oshkosh East NE US UPR , +UP148,3,52.70000 ,45.64712 ,-121.0303,MesoWest ,UPR ,OT Jct OR US UPR , +UP413,3,2136.700 ,41.09163 ,-105.0880,MesoWest ,UPR ,Otto WY US UPR , +UP002,3,701.3000 ,40.73590 ,-99.52222,MesoWest ,UPR ,Overton NE US UPR , +UP386,3,116.1000 ,32.31449 ,-94.95820,MesoWest ,UPR ,Overton North TX US UPR , +UP289,3,1091.200 ,41.00639 ,-102.3823,MesoWest ,UPR ,Ovid North NE US UPR , +UP174,3,930.6000 ,43.38805 ,-116.1488,MesoWest ,UPR ,Owyhee ID US UPR , +UP442,3,345.9000 ,33.90425 ,-116.6429,MesoWest ,UPR ,Palm Springs CA US UPR , +UP228,3,684.3000 ,43.75538 ,-116.8920,MesoWest ,UPR ,Parma ID US UPR , +UP394,3,492.9000 ,37.96282 ,-98.09186,MesoWest ,UPR ,Partridge KS US UPR , +UP387,3,1604.800 ,34.79979 ,-104.9141,MesoWest ,UPR ,Pastura East NM US UPR , +UP388,3,299.0000 ,39.06283 ,-96.13252,MesoWest ,UPR ,Paxico East KS US UPR , +UP239,3,933.6000 ,41.15983 ,-101.3770,MesoWest ,UPR ,Paxton NE US UPR , +UP344,3,87.80000 ,36.29620 ,-90.63912,MesoWest ,UPR ,Peach Orchard AR US UPR , +UP130,3,1834.600 ,42.14388 ,-111.1505,MesoWest ,UPR ,Pegram ID US UPR , +UP056,3,1667.300 ,40.13988 ,-112.3534,MesoWest ,UPR ,Pehrson UT US UPR , +UP088,3,102.1000 ,34.36968 ,-92.77090,MesoWest ,UPR ,Perla AR US UPR , +UP055,3,1805.300 ,42.40065 ,-111.3558,MesoWest ,UPR ,Pescadero ID US UPR , +UP291,3,1286.300 ,42.60574 ,-121.8576,MesoWest ,UPR ,Pine Ridge OR US UPR , +UP238,3,1882.400 ,42.03053 ,-110.9462,MesoWest ,UPR ,Pixley WY US UPR , +UP332,3,839.7000 ,37.27649 ,-100.5531,MesoWest ,UPR ,Plains East KS US UPR , +UP432,3,226.2000 ,39.17006 ,-94.76205,MesoWest ,UPR ,Pomeroy KS US UPR , +UP392,3,598.6000 ,37.64255 ,-98.80774,MesoWest ,UPR ,Pratt West KS US UPR , +UP193,3,91.70000 ,33.81502 ,-93.36648,MesoWest ,UPR ,Prescott AR US UPR , +UP243,3,67.40000 ,35.16935 ,-90.16360,MesoWest ,UPR ,Presley AR US UPR , +UP393,3,569.1000 ,37.74570 ,-98.59179,MesoWest ,UPR ,Preston West KS US UPR , +UP285,3,96.00000 ,31.90136 ,-95.41381,MesoWest ,UPR ,Prices TX US UPR , +UP395,3,456.0000 ,32.37394 ,-99.24934,MesoWest ,UPR ,Putnam West TX US UPR , +UP156,3,1348.100 ,42.73102 ,-113.1067,MesoWest ,UPR ,Quigley ID US UPR , +UP190,3,39.90000 ,30.26268 ,-95.45620,MesoWest ,UPR ,Raford TX US UPR , +UP062,3,1302.700 ,40.90682 ,-117.9415,MesoWest ,UPR ,Ragland NV US UPR , +UP396,3,1927.900 ,39.74534 ,-107.0182,MesoWest ,UPR ,Range South CO US UPR , +UP249,3,2226.000 ,41.18208 ,-105.5953,MesoWest ,UPR ,Red Buttes WY US UPR , +UP117,3,2048.300 ,41.65225 ,-108.1104,MesoWest ,UPR ,Red Desert WY US UPR , +UP136,3,2049.800 ,41.64497 ,-108.1488,MesoWest ,UPR ,Red Desert WY US UPR , +UP458,3,1229.600 ,35.97778 ,-102.6330,MesoWest ,UPR ,Rehm TX US UPR , +UP397,3,422.1000 ,41.44155 ,-97.16822,MesoWest ,UPR ,Richland East NE US UPR , +UP095,3,285.0000 ,42.28438 ,-88.39110,MesoWest ,UPR ,Ridgefield IL US UPR , +UP212,3,64.00000 ,35.29192 ,-91.48205,MesoWest ,UPR ,Rio Vista AR US UPR , +UP330,3,416.1000 ,38.62189 ,-97.02355,MesoWest ,UPR ,Rishel KS US UPR , +UP398,3,64.90000 ,33.94582 ,-92.20152,MesoWest ,UPR ,Rison South AR US UPR , +UP462,3,25.90000 ,32.16884 ,-92.09440,MesoWest ,UPR ,Riverton LA US UPR , +UP149,3,398.4000 ,41.46625 ,-96.90178,MesoWest ,UPR ,Rogers NE US UPR , +UP102,3,30.20000 ,45.69595 ,-121.3188,MesoWest ,UPR ,Rowena OR US UPR , +UP048,3,32.60000 ,45.67730 ,-121.2831,MesoWest ,UPR ,Rowena OR US UPR , +UP050,3,388.3000 ,40.04205 ,-97.02550,MesoWest ,UPR ,Rudy NE US UPR , +UP150,3,56.40000 ,45.69122 ,-120.7519,MesoWest ,UPR ,Rufus OR US UPR , +UP460,3,274.9000 ,44.90813 ,-91.83599,MesoWest ,UPR ,Rusk WI US UPR , +UP399,3,71.60000 ,35.36125 ,-91.50988,MesoWest ,UPR ,Russell AR US UPR , +UP400,3,1432.900 ,30.46958 ,-104.3483,MesoWest ,UPR ,Ryan North TX US UPR , +UP217,3,616.9000 ,40.72725 ,-98.74822,MesoWest ,UPR ,S.Gibbon NE US UPR , +UP401,3,411.5000 ,39.89240 ,-95.86480,MesoWest ,UPR ,Sabetha West KS US UPR , +UP454,3,296.9000 ,29.33927 ,-99.38762,MesoWest ,UPR ,Sabinal East TX US UPR , +UP098,3,1943.100 ,41.82380 ,-110.9234,MesoWest ,UPR ,Sage WY US UPR , +UP404,3,1201.200 ,35.47200 ,-103.2844,MesoWest ,UPR ,Sand Springs NM US UPR , +UP300,3,1412.800 ,34.93132 ,-104.7000,MesoWest ,UPR ,Santa Rosa NM US UPR , +UP374,3,216.1000 ,34.81097 ,-95.86034,MesoWest ,UPR ,Savanna South OK US UPR , +UP192,3,358.4000 ,42.01852 ,-94.54612,MesoWest ,UPR ,Scranton IA US UPR , +UP131,3,512.1000 ,40.33450 ,-97.87612,MesoWest ,UPR ,Sedan NE US UPR , +UP163,3,331.3000 ,41.22140 ,-96.02528,MesoWest ,UPR ,Seymour NE US UPR , +UP120,3,1525.800 ,42.75898 ,-104.9569,MesoWest ,UPR ,Shawnee WY US UPR , +UP406,3,113.1000 ,29.48493 ,-97.15184,MesoWest ,UPR ,Shiner North TX US UPR , +UP471,3,1207.900 ,41.15493 ,-102.7773,MesoWest ,UPR ,Sidney NE US UPR , +UP141,3,475.5000 ,41.30018 ,-97.69455,MesoWest ,UPR ,Silver Creek NE US UPR , +UP408,3,467.6000 ,41.33189 ,-97.62666,MesoWest ,UPR ,Silver Creek East NE US UPR , +UP237,3,968.7000 ,43.27662 ,-115.9394,MesoWest ,UPR ,Simco ID US UPR , +UP279,3,1993.400 ,41.77933 ,-107.0500,MesoWest ,UPR ,Sinclair East WY US UPR , +UP293,3,1112.500 ,31.63335 ,-106.2648,MesoWest ,UPR ,Socorro TX US UPR , +UP248,3,279.2000 ,39.12432 ,-95.79798,MesoWest ,UPR ,Soldier Creek KS US UPR , +UP459,3,1201.800 ,41.15493 ,-102.7773,MesoWest ,UPR ,Sonol West NE US UPR , +UP390,3,5.800000 ,30.26171 ,-91.21896,MesoWest ,UPR ,St Louis LA US UPR , +UP382,3,54.90000 ,31.92691 ,-92.20433,MesoWest ,UPR ,Standard LA US UPR , +UP230,3,99.10000 ,36.68783 ,-90.45745,MesoWest ,UPR ,Stanley MO US UPR , +UP175,3,1884.900 ,41.61378 ,-109.7400,MesoWest ,UPR ,Stauffer WY US UPR , +UP116,3,100.0000 ,30.32132 ,-95.87542,MesoWest ,UPR ,Stoneham TX US UPR , +UP415,3,1099.400 ,36.37132 ,-102.0079,MesoWest ,UPR ,Stratford East TX US UPR , +UP437,3,1253.600 ,31.87516 ,-106.7121,MesoWest ,UPR ,Strauss NM US UPR , +UP438,3,321.9000 ,32.53871 ,-98.55239,MesoWest ,UPR ,Strawn West TX US UPR , +UP223,3,85.30000 ,33.33503 ,-94.05808,MesoWest ,UPR ,Sulphur TX US UPR , +UP252,3,1201.500 ,41.15505 ,-102.7813,MesoWest ,UPR ,Sunol NE US UPR , +UP264,3,2073.900 ,41.60287 ,-108.4237,MesoWest ,UPR ,Table Rock WY US UPR , +UP440,3,2072.900 ,41.60352 ,-108.4209,MesoWest ,UPR ,Table Rock West WY US UPR , +UP259,3,252.1000 ,41.96500 ,-92.60817,MesoWest ,UPR ,Tama IA US UPR , +UP353,3,1074.400 ,41.53412 ,-102.6950,MesoWest ,UPR ,Tar Valley NE US UPR , +UP424,3,1065.300 ,36.49078 ,-101.8043,MesoWest ,UPR ,Texhoma West TX US UPR , +UP328,3,24.40000 ,29.60170 ,-95.68820,MesoWest ,UPR ,Thompson Chapel TX US UPR , +UP339,3,76.20000 ,34.89816 ,-92.07293,MesoWest ,UPR ,Tonyville AR US UPR , +UP081,3,1487.700 ,42.62732 ,-112.1442,MesoWest ,UPR ,Topaz ID US UPR , +UP303,3,1949.200 ,34.39315 ,-105.4769,MesoWest ,UPR ,Torrence North NM US UPR , +UP417,3,1104.300 ,41.63306 ,-102.9759,MesoWest ,UPR ,Towers West NE US UPR , +UP436,3,2426.200 ,40.11200 ,-106.8862,MesoWest ,UPR ,Trapper North CO US UPR , +UP464,3,591.9000 ,32.51307 ,-100.2107,MesoWest ,UPR ,Trent TX US UPR , +UP419,3,91.40000 ,32.14583 ,-96.08792,MesoWest ,UPR ,Trinidad TX US UPR , +UP418,3,2243.900 ,40.05771 ,-106.3086,MesoWest ,UPR ,Troublesome CO US UPR , +UP105,3,374.0000 ,41.45108 ,-96.59028,MesoWest ,UPR ,Troxel NE US UPR , +UP441,3,1263.700 ,35.14879 ,-103.8018,MesoWest ,UPR ,Tucumcari NM US UPR , +UP421,3,1346.000 ,32.25739 ,-107.8721,MesoWest ,UPR ,Tunis East NM US UPR , +UP422,3,89.90000 ,44.83269 ,-122.9515,MesoWest ,UPR ,Turner South OR US UPR , +UP425,3,550.2000 ,32.45800 ,-99.89560,MesoWest ,UPR ,Tye West TX US UPR , +UP176,3,1356.400 ,41.15117 ,-111.9647,MesoWest ,UPR ,Uinta UT US UPR , +UP456,3,1359.100 ,41.14802 ,-111.9565,MesoWest ,UPR ,Uintah West UT US UPR , +UP416,3,64.00000 ,34.56246 ,-91.47564,MesoWest ,UPR ,Ulm South AR US UPR , +UP007,3,858.3000 ,45.18873 ,-117.8971,MesoWest ,UPR ,Union OR US UPR , +UP104,3,823.0000 ,45.24478 ,-117.9577,MesoWest ,UPR ,Union Jct OR US UPR , +UP231,3,1527.400 ,38.27183 ,-113.1106,MesoWest ,UPR ,Upton UT US UPR , +UP227,3,1746.500 ,37.70508 ,-114.0742,MesoWest ,UPR ,Uvada NV US UPR , +UP272,3,6.100000 ,29.99830 ,-90.72163,MesoWest ,UPR ,Vacherie LA US UPR , +UP132,3,380.7000 ,42.05568 ,-95.20443,MesoWest ,UPR ,Vail IA US UPR , +UP360,3,278.9000 ,39.08382 ,-95.90515,MesoWest ,UPR ,Valencia West KS US UPR , +UP256,3,196.9000 ,42.15672 ,-87.80655,MesoWest ,UPR ,Valley IL US UPR , +UP137,3,1400.300 ,39.28993 ,-112.6316,MesoWest ,UPR ,Van UT US UPR , +UP420,3,76.50000 ,35.77904 ,-91.16410,MesoWest ,UPR ,Vance North AR US UPR , +UP426,3,1757.800 ,34.63032 ,-105.1506,MesoWest ,UPR ,Vaughn East NM US UPR , +UP199,3,1928.500 ,41.57042 ,-110.1032,MesoWest ,UPR ,Verne WY US UPR , +UP336,3,60.70000 ,34.38550 ,-91.76815,MesoWest ,UPR ,Wabbaseka North AR US UPR , +UP142,3,2061.100 ,41.23217 ,-111.0841,MesoWest ,UPR ,Wahsatch UT US UPR , +UP147,3,1452.400 ,40.55803 ,-112.3018,MesoWest ,UPR ,Warner UT US UPR , +UP061,3,123.4000 ,38.39522 ,-90.26940,MesoWest ,UPR ,Warnock IL US UPR , +UP170,3,2067.800 ,41.75867 ,-110.4667,MesoWest ,UPR ,Waterfall WY US UPR , +UP367,3,752.9000 ,37.33137 ,-100.2707,MesoWest ,UPR ,Watson KS US UPR , +UP429,3,106.7000 ,30.55162 ,-96.30151,MesoWest ,UPR ,Wellborn TX US UPR , +UP430,3,651.1000 ,37.61787 ,-99.06315,MesoWest ,UPR ,Wellsford West KS US UPR , +UP431,3,228.0000 ,41.87700 ,-88.18460,MesoWest ,UPR ,West Chicago IL US UPR , +UP356,3,1288.100 ,41.24449 ,-112.1597,MesoWest ,UPR ,West Warrem UT US UPR , +UP263,3,2124.500 ,41.79770 ,-105.9854,MesoWest ,UPR ,Wilcox WY US UPR , +UP235,3,769.3000 ,40.88558 ,-100.0652,MesoWest ,UPR ,Willow Island NE US UPR , +UP447,3,228.0000 ,29.49937 ,-98.34576,MesoWest ,UPR ,Windcrest TX US UPR , +UP337,3,95.10000 ,32.48367 ,-95.16954,MesoWest ,UPR ,Winona TX US UPR , +UP210,3,185.6000 ,42.51535 ,-87.81708,MesoWest ,UPR ,Winthrop Harbor WI US UPR , +UP126,3,649.2000 ,44.13202 ,-116.9044,MesoWest ,UPR ,Wood ID US UPR , +UP059,3,29.60000 ,45.68805 ,-121.6980,MesoWest ,UPR ,Wyeth OR US UPR , +UP435,3,518.2000 ,32.68220 ,-111.4438,MesoWest ,UPR ,Wymola West AZ US UPR , +UP311,3,64.00000 ,34.99626 ,-91.15599,MesoWest ,UPR ,Zent AR US UPR , +CI203,3,64.00000 ,35.86250 ,-119.5036,MesoWest ,CIMIS ,Alpaugh CA US CIMIS , +CI090,3,1342.600 ,41.43300 ,-120.4790,MesoWest ,CIMIS ,Alturas CA US CIMIS , +CI114,3,71.60000 ,36.35900 ,-121.2900,MesoWest ,CIMIS ,Arroyo Seco CA US CIMIS , +CI125,3,152.4000 ,35.20600 ,-118.7780,MesoWest ,CIMIS ,Arvin-Edison CA US CIMIS , +CI163,3,269.7000 ,35.47200 ,-120.6460,MesoWest ,CIMIS ,Atascadero CA US CIMIS , +CI195,3,285.0000 ,38.88750 ,-121.1031,MesoWest ,CIMIS ,Auburn CA US CIMIS , +CI134,3,621.8000 ,34.88400 ,-116.9830,MesoWest ,CIMIS ,Barstow NE CA US CIMIS , +CI146,3,125.0000 ,35.50500 ,-119.6900,MesoWest ,CIMIS ,Belridge CA US CIMIS , +CI158,3,82.30000 ,38.41900 ,-122.6570,MesoWest ,CIMIS ,Bennett Valley CA US CIMIS , +CI199,3,2106.200 ,34.23806 ,-116.8653,MesoWest ,CIMIS ,Big Bear Lake CA US CIMIS , +CI035,3,1271.000 ,37.35800 ,-118.4040,MesoWest ,CIMIS ,Bishop CA US CIMIS , +CI187,3,0.300000 ,38.09100 ,-122.5270,MesoWest ,CIMIS ,Black Point CA US CIMIS , +CI054,3,214.9000 ,35.65000 ,-119.9580,MesoWest ,CIMIS ,Blackwells Corner CA US CIMIS , +CI135,3,83.80000 ,33.55700 ,-114.6660,MesoWest ,CIMIS ,Blythe NE CA US CIMIS , +CI207,3,176.2000 ,33.27000 ,-116.3700,MesoWest ,CIMIS ,Borrego Springs CA US CIMIS , +CI047,3,13.70000 ,37.92900 ,-121.6590,MesoWest ,CIMIS ,Brentwood CA US CIMIS , +CI084,3,286.5000 ,39.27100 ,-121.3110,MesoWest ,CIMIS ,Browns Valley CA US CIMIS , +CI155,3,12.20000 ,38.59900 ,-121.5400,MesoWest ,CIMIS ,Bryte CA US CIMIS , +CI057,3,1220.700 ,40.29000 ,-120.4340,MesoWest ,CIMIS ,Buntingville CA US CIMIS , +CI041,3,-33.50000,33.04400 ,-115.4150,MesoWest ,CIMIS ,Calipatria/Mulberry CA US CIMIS , +CI152,3,39.60000 ,34.23200 ,-118.9940,MesoWest ,CIMIS ,Camarillo CA US CIMIS , +CI013,3,847.3000 ,38.75400 ,-120.7320,MesoWest ,CIMIS ,Camino CA US CIMIS , +CI210,3,22.90000 ,36.54000 ,-121.8800,MesoWest ,CIMIS ,Carmel CA US CIMIS , +CI109,3,1.500000 ,38.21900 ,-122.3540,MesoWest ,CIMIS ,Carneros CA US CIMIS , +CI019,3,2.700000 ,36.76800 ,-121.7740,MesoWest ,CIMIS ,Castroville CA US CIMIS , +CI118,3,119.5000 ,33.84300 ,-116.4790,MesoWest ,CIMIS ,Cathedral City CA US CIMIS , +CI082,3,493.8000 ,34.13000 ,-117.6960,MesoWest ,CIMIS ,Claremont CA US CIMIS , +CI032,3,16.80000 ,39.22600 ,-122.0240,MesoWest ,CIMIS ,Colusa CA US CIMIS , +CI170,3,10.70000 ,38.00400 ,-122.0200,MesoWest ,CIMIS ,Concord CA US CIMIS , +CI088,3,698.0000 ,34.93200 ,-119.6050,MesoWest ,CIMIS ,Cuyama CA US CIMIS , +CI006,3,18.30000 ,38.53600 ,-121.7750,MesoWest ,CIMIS ,Davis CA US CIMIS , +CI104,3,91.40000 ,36.99800 ,-121.9960,MesoWest ,CIMIS ,De Laveaga CA US CIMIS , +CI182,3,91.40000 ,35.83300 ,-119.2560,MesoWest ,CIMIS ,Delano CA US CIMIS , +CI168,3,42.70000 ,37.55700 ,-120.7830,MesoWest ,CIMIS ,Denair CA US CIMIS , +CI121,3,11.30000 ,38.41500 ,-121.7870,MesoWest ,CIMIS ,Dixon CA US CIMIS , +CI012,3,39.60000 ,39.60900 ,-121.8230,MesoWest ,CIMIS ,Durham CA US CIMIS , +CI153,3,118.9000 ,33.08100 ,-116.9760,MesoWest ,CIMIS ,Escondido SPV CA US CIMIS , +CI196,3,53.00000 ,38.69220 ,-122.0129,MesoWest ,CIMIS ,Esparto CA US CIMIS , +CI131,3,80.80000 ,38.65100 ,-121.2180,MesoWest ,CIMIS ,Fair Oaks CA US CIMIS , +CI138,3,126.5000 ,35.60400 ,-119.2130,MesoWest ,CIMIS ,Famoso CA US CIMIS , +CI007,3,56.40000 ,36.85100 ,-120.5900,MesoWest ,CIMIS ,Firebaugh/Telles CA US CIMIS , +CI002,3,86.90000 ,36.33600 ,-120.1130,MesoWest ,CIMIS ,Five Points CA US CIMIS , +CI190,3,82.30000 ,36.38600 ,-120.2370,MesoWest ,CIMIS ,Five Points SW CA US CIMIS , +CI080,3,103.3000 ,36.82100 ,-119.7420,MesoWest ,CIMIS ,Fresno State CA US CIMIS , +CI008,3,76.20000 ,40.04500 ,-122.1640,MesoWest ,CIMIS ,Gerber CA US CIMIS , +CI133,3,338.6000 ,34.20000 ,-118.2320,MesoWest ,CIMIS ,Glendale CA US CIMIS , +CI094,3,195.1000 ,34.47200 ,-119.8680,MesoWest ,CIMIS ,Goleta Foothills CA US CIMIS , +CI111,3,33.50000 ,36.94100 ,-121.7670,MesoWest ,CIMIS ,Green Valley Road CA US CIMIS , +CI122,3,3.000000 ,38.28300 ,-121.7900,MesoWest ,CIMIS ,Hastings Tract CA US CIMIS , +CI085,3,353.6000 ,39.00700 ,-123.0790,MesoWest ,CIMIS ,Hopland FS CA US CIMIS , +CI162,3,12.20000 ,33.74600 ,-116.2580,MesoWest ,CIMIS ,Indio CA US CIMIS , +CI200,3,12.20000 ,33.74611 ,-116.2578,MesoWest ,CIMIS ,Indio CA US CIMIS , +CI075,3,125.0000 ,33.68900 ,-117.7210,MesoWest ,CIMIS ,Irvine CA US CIMIS , +CI092,3,22.90000 ,37.03300 ,-120.8800,MesoWest ,CIMIS ,Kesterson CA US CIMIS , +CI021,3,103.6000 ,35.86900 ,-119.8940,MesoWest ,CIMIS ,Kettleman CA US CIMIS , +CI113,3,164.6000 ,36.12100 ,-121.0840,MesoWest ,CIMIS ,King City-Oasis Rd. CA US CIMIS , +CI176,3,12.80000 ,33.68600 ,-116.3060,MesoWest ,CIMIS ,La Quinta CA US CIMIS , +CI208,3,11.00000 ,33.67806 ,-116.2731,MesoWest ,CIMIS ,La Quinta II CA US CIMIS , +CI192,3,1569.100 ,34.25778 ,-117.2189,MesoWest ,CIMIS ,Lake Arrowhead CA US CIMIS , +CI086,3,146.3000 ,36.35700 ,-119.0590,MesoWest ,CIMIS ,Lindcove CA US CIMIS , +CI166,3,7.600000 ,38.13000 ,-121.3830,MesoWest ,CIMIS ,Lodi West CA US CIMIS , +CI174,3,5.200000 ,33.79700 ,-118.0940,MesoWest ,CIMIS ,Long Beach CA US CIMIS , +CI056,3,29.00000 ,37.00900 ,-120.7600,MesoWest ,CIMIS ,Los Banos CA US CIMIS , +CI145,3,70.10000 ,37.01800 ,-120.1870,MesoWest ,CIMIS ,Madera CA US CIMIS , +CI070,3,10.10000 ,37.83500 ,-121.2230,MesoWest ,CIMIS ,Manteca CA US CIMIS , +CI043,3,1008.900 ,41.06500 ,-121.4540,MesoWest ,CIMIS ,McArthur CA US CIMIS , +CI141,3,-54.90000,33.53800 ,-115.9920,MesoWest ,CIMIS ,Mecca CA US CIMIS , +CI087,3,-15.20000,32.80700 ,-115.4460,MesoWest ,CIMIS ,Meloland CA US CIMIS , +CI148,3,61.00000 ,37.31400 ,-120.3860,MesoWest ,CIMIS ,Merced CA US CIMIS , +CI150,3,135.6000 ,32.88600 ,-117.1420,MesoWest ,CIMIS ,Miramar CA US CIMIS , +CI071,3,10.70000 ,37.64500 ,-121.1880,MesoWest ,CIMIS ,Modesto CA US CIMIS , +CI159,3,181.4000 ,34.14500 ,-117.9850,MesoWest ,CIMIS ,Monrovia CA US CIMIS , +CI178,3,155.4000 ,37.83800 ,-122.1390,MesoWest ,CIMIS ,Moraga CA US CIMIS , +CI132,3,117.3000 ,37.15100 ,-121.6350,MesoWest ,CIMIS ,Morgan Hill CA US CIMIS , +CI030,3,9.800000 ,38.87100 ,-121.5450,MesoWest ,CIMIS ,Nicolaus CA US CIMIS , +CI202,3,77.70000 ,35.02830 ,-120.5600,MesoWest ,CIMIS ,Nipomo CA US CIMIS , +CI194,3,50.30000 ,37.71861 ,-120.8508,MesoWest ,CIMIS ,Oakdale CA US CIMIS , +CI149,3,44.20000 ,37.78100 ,-122.1790,MesoWest ,CIMIS ,Oakland Foothills CA US CIMIS , +CI077,3,57.90000 ,38.43400 ,-122.4100,MesoWest ,CIMIS ,Oakville CA US CIMIS , +CI136,3,3.700000 ,33.51600 ,-116.1540,MesoWest ,CIMIS ,Oasis CA US CIMIS , +CI049,3,15.20000 ,33.25600 ,-117.3200,MesoWest ,CIMIS ,Oceanside CA US CIMIS , +CI142,3,137.2000 ,36.72100 ,-119.3880,MesoWest ,CIMIS ,Orange Cove CA US CIMIS , +CI061,3,60.40000 ,39.69200 ,-122.1520,MesoWest ,CIMIS ,Orland CA US CIMIS , +CI147,3,176.8000 ,32.63000 ,-116.9380,MesoWest ,CIMIS ,Otay Lake CA US CIMIS , +CI183,3,1122.900 ,36.48900 ,-117.9190,MesoWest ,CIMIS ,Owens Lake North CA US CIMIS , +CI189,3,1122.300 ,36.35900 ,-117.9460,MesoWest ,CIMIS ,Owens Lake South CA US CIMIS , +CI156,3,14.60000 ,34.23400 ,-119.1970,MesoWest ,CIMIS ,Oxnard CA US CIMIS , +CI129,3,19.80000 ,36.90300 ,-121.7420,MesoWest ,CIMIS ,Pajaro CA US CIMIS , +CI197,3,777.2000 ,34.61500 ,-118.0325,MesoWest ,CIMIS ,Palmdale CA US CIMIS , +CI175,3,70.10000 ,33.38900 ,-114.7260,MesoWest ,CIMIS ,Palo Verde II CA US CIMIS , +CI124,3,55.80000 ,36.89000 ,-120.7320,MesoWest ,CIMIS ,Panoche CA US CIMIS , +CI039,3,102.7000 ,36.59800 ,-119.5030,MesoWest ,CIMIS ,Parlier CA US CIMIS , +CI161,3,55.80000 ,37.44000 ,-121.1390,MesoWest ,CIMIS ,Patterson CA US CIMIS , +CI144,3,29.60000 ,38.26700 ,-122.6160,MesoWest ,CIMIS ,Petaluma East CA US CIMIS , +CI101,3,195.1000 ,34.37500 ,-118.7890,MesoWest ,CIMIS ,Piru CA US CIMIS , +CI191,3,102.1000 ,37.66389 ,-120.8850,MesoWest ,CIMIS ,Pleasanton CA US CIMIS , +CI157,3,1.500000 ,37.99200 ,-122.4700,MesoWest ,CIMIS ,Point San Pedro CA US CIMIS , +CI078,3,222.5000 ,34.05800 ,-117.8120,MesoWest ,CIMIS ,Pomona CA US CIMIS , +CI169,3,121.9000 ,36.08100 ,-119.0920,MesoWest ,CIMIS ,Porterville CA US CIMIS , +CI151,3,76.50000 ,33.53200 ,-114.6340,MesoWest ,CIMIS ,Ripley CA US CIMIS , +CI116,3,18.60000 ,36.71700 ,-121.6910,MesoWest ,CIMIS ,Salinas North CA US CIMIS , +CI089,3,36.60000 ,36.61000 ,-121.5290,MesoWest ,CIMIS ,Salinas South CA US CIMIS , +CI128,3,-68.90000,33.22000 ,-115.5800,MesoWest ,CIMIS ,Salton Sea East CA US CIMIS , +CI154,3,-61.00000,33.50400 ,-115.9160,MesoWest ,CIMIS ,Salton Sea North CA US CIMIS , +CI127,3,-68.60000,33.32700 ,-115.9500,MesoWest ,CIMIS ,Salton Sea West CA US CIMIS , +CI126,3,103.6000 ,36.85400 ,-121.3620,MesoWest ,CIMIS ,San Benito CA US CIMIS , +CI184,3,114.9000 ,32.73000 ,-117.1390,MesoWest ,CIMIS ,San Diego II CA US CIMIS , +CI143,3,74.70000 ,36.82300 ,-121.4680,MesoWest ,CIMIS ,San Juan Valley CA US CIMIS , +CI052,3,100.6000 ,35.30600 ,-120.6600,MesoWest ,CIMIS ,San Luis Obispo CA US CIMIS , +CI160,3,86.90000 ,35.33500 ,-120.7340,MesoWest ,CIMIS ,San Luis Obispo West CA US CIMIS , +CI106,3,160.0000 ,38.98300 ,-123.0920,MesoWest ,CIMIS ,Sanel Valley CA US CIMIS , +CI107,3,76.20000 ,34.43800 ,-119.7360,MesoWest ,CIMIS ,Santa Barbara CA US CIMIS , +CI204,3,429.8000 ,34.42694 ,-118.5172,MesoWest ,CIMIS ,Santa Clarita CA US CIMIS , +CI099,3,103.6000 ,34.04400 ,-118.4760,MesoWest ,CIMIS ,Santa Monica CA US CIMIS , +CI198,3,66.40000 ,34.32500 ,-119.1042,MesoWest ,CIMIS ,Santa Paula CA US CIMIS , +CI083,3,24.40000 ,38.40100 ,-122.7960,MesoWest ,CIMIS ,Santa Rosa CA US CIMIS , +CI064,3,149.4000 ,34.58300 ,-120.0780,MesoWest ,CIMIS ,Santa Ynez CA US CIMIS , +CI068,3,12.20000 ,32.75900 ,-115.7320,MesoWest ,CIMIS ,Seeley CA US CIMIS , +CI005,3,109.7000 ,35.53300 ,-119.2810,MesoWest ,CIMIS ,Shafter/USDA CA US CIMIS , +CI165,3,163.4000 ,34.84100 ,-120.2120,MesoWest ,CIMIS ,Sisquoc CA US CIMIS , +CI015,3,58.80000 ,36.15800 ,-119.8500,MesoWest ,CIMIS ,Stratford CA US CIMIS , +CI123,3,10.70000 ,38.23400 ,-122.1170,MesoWest ,CIMIS ,Suisun Valley CA US CIMIS , +CI062,3,432.8000 ,33.49000 ,-117.2220,MesoWest ,CIMIS ,Temecula CA US CIMIS , +CI137,3,468.2000 ,33.55700 ,-117.0300,MesoWest ,CIMIS ,Temecula East II CA US CIMIS , +CI173,3,102.1000 ,32.90100 ,-117.2500,MesoWest ,CIMIS ,Torrey Pines CA US CIMIS , +CI167,3,25.00000 ,37.72600 ,-121.4740,MesoWest ,CIMIS ,Tracy CA US CIMIS , +CI091,3,1229.900 ,41.95900 ,-121.4710,MesoWest ,CIMIS ,Tulelake FS CA US CIMIS , +CI140,3,0.300000 ,38.11700 ,-121.6580,MesoWest ,CIMIS ,Twitchell Island CA US CIMIS , +CI044,3,310.9000 ,33.96500 ,-117.3360,MesoWest ,CIMIS ,U.C. Riverside CA US CIMIS , +CI201,3,36.60000 ,32.72580 ,-114.7250,MesoWest ,CIMIS ,UC-Andrade CA US CIMIS , +CI186,3,14.60000 ,32.49300 ,-114.8260,MesoWest ,CIMIS ,UC-San Luis CA US CIMIS , +CI171,3,4.900000 ,37.59900 ,-122.0520,MesoWest ,CIMIS ,Union City CA US CIMIS , +CI117,3,880.9000 ,34.47800 ,-117.2610,MesoWest ,CIMIS ,Victorville CA US CIMIS , +CI033,3,106.7000 ,36.30100 ,-119.2230,MesoWest ,CIMIS ,Visalia CA US CIMIS , +CI177,3,64.60000 ,36.90000 ,-121.8130,MesoWest ,CIMIS ,Watsonville West CA US CIMIS , +CI209,3,73.20000 ,36.91000 ,-121.8200,MesoWest ,CIMIS ,Watsonville West II CA US CIMIS , +CI105,3,58.20000 ,36.63000 ,-120.3800,MesoWest ,CIMIS ,Westlands CA US CIMIS , +CI181,3,-61.00000,33.07861 ,-115.6606,MesoWest ,CIMIS ,Westmorland North CA US CIMIS , +CI179,3,495.6000 ,33.66300 ,-117.0930,MesoWest ,CIMIS ,Winchester CA US CIMIS , +CI103,3,25.90000 ,38.52600 ,-122.8330,MesoWest ,CIMIS ,Windsor CA US CIMIS , +CI139,3,41.50000 ,38.50100 ,-121.9730,MesoWest ,CIMIS ,Winters CA US CIMIS , +CI027,3,15.20000 ,38.80800 ,-121.9080,MesoWest ,CIMIS ,Zamora CA US CIMIS , +WPSPT,3,2894.400 ,42.96780 ,-109.7471,MesoWest ,WHITEPINE ,Spirit Lift WY US WHITEPINE , +WPBAS,3,2575.600 ,42.97780 ,-109.7566,MesoWest ,WHITEPINE ,White Pine Base WY US WHITEPINE , +GDNWL,3,2255.500 ,48.74167 ,-113.7373,MesoWest ,GNP ,Garden Wall MT US GNP , +LGPVC,3,2065.000 ,48.69490 ,-113.7169,MesoWest ,GNP ,Logan Pass Visitors Center MT US GNP , +SNSLP,3,2139.700 ,48.25515 ,-113.5023,MesoWest ,GNP ,Snowslip MT US GNP , +HP002,3,1146.100 ,32.70150 ,-116.7634,MesoWest ,HPWREN ,LYONS PEAK CA US HPWREN , +HP001,3,1920.200 ,32.89200 ,-116.4199,MesoWest ,HPWREN ,MT. LAGUNA CA US HPWREN , +K1U7 ,3,1806.900 ,42.24970 ,-111.3416,MesoWest ,PIHWFO ,Bear Lake County Airport ID US PIHWFO , +KDGS ,3,1916.000 ,43.73050 ,-111.1125,MesoWest ,PIHWFO ,DRIGGS ID US PIHWFO , +KIPR ,3,1917.200 ,44.41890 ,-111.3714,MesoWest ,PIHWFO ,Island Park ID US PIHWFO , +AAWC1,3,76.20000 ,35.86390 ,-119.3939,MesoWest ,HNXWFO ,ALLENSWORTH STATE PARK CA US HNXWFO , +ACHC1,3,74.70000 ,37.15750 ,-120.2500,MesoWest ,HNXWFO ,CHOWCHILLA CA US HNXWFO , +ACOC1,3,132.6000 ,36.85940 ,-119.6006,MesoWest ,HNXWFO ,COLLINS CORNER CA US HNXWFO , +ALMC1,3,175.3000 ,35.28917 ,-118.8569,MesoWest ,HNXWFO ,LAMONT CA US HNXWFO , +AMNC1,3,49.40000 ,36.75670 ,-120.3714,MesoWest ,HNXWFO ,MENDOTA 1NE CA US HNXWFO , +ARDC1,3,106.7000 ,36.60940 ,-119.4619,MesoWest ,HNXWFO ,REEDLEY COLLEGE CA US HNXWFO , +AWSC1,3,83.80000 ,35.54390 ,-119.4092,MesoWest ,HNXWFO ,WASCO 5SW CA US HNXWFO , +KQCI ,3,755.9000 ,47.41580 ,-105.5905,MesoWest ,GGWWFO ,Circle MT US GGWWFO , +KQDC ,3,701.0000 ,47.96000 ,-106.5100,MesoWest ,GGWWFO ,Duck Creek MT US GGWWFO , +KQFP ,3,694.9000 ,48.00840 ,-106.3962,MesoWest ,GGWWFO ,East of Fort Peck Dam MT US GGWWFO , +KQSC ,3,656.5000 ,48.24855 ,-106.6353,MesoWest ,GGWWFO ,GGW4N MT US GGWWFO , +KQML ,3,694.9000 ,48.34000 ,-107.8700,MesoWest ,GGWWFO ,Malta MT US GGWWFO , +KQNS ,3,618.1000 ,48.13570 ,-106.3537,MesoWest ,GGWWFO ,Nashua GGW Remote MT US GGWWFO , +KQOP ,3,993.0000 ,48.85000 ,-106.4100,MesoWest ,GGWWFO ,Opheim MT US GGWWFO , +KQPW ,3,686.1000 ,48.82000 ,-104.5300,MesoWest ,GGWWFO ,Plentywood MT US GGWWFO , +KQSH ,3,951.0000 ,48.02000 ,-106.2900,MesoWest ,GGWWFO ,Signal Hill MT US GGWWFO , +KQPE ,3,726.9000 ,47.83599 ,-106.6355,MesoWest ,GGWWFO ,The Pines MT US GGWWFO , +KQWL ,3,755.9000 ,49.00000 ,-105.1700,MesoWest ,GGWWFO ,Whitetail 7N MT US GGWWFO , +KQWW ,3,709.9000 ,48.76000 ,-107.6200,MesoWest ,GGWWFO ,Whitewater MT US GGWWFO , +KQWT ,3,905.0000 ,47.01000 ,-108.3600,MesoWest ,GGWWFO ,Winnett MT US GGWWFO , +KQYI ,3,716.0000 ,47.92000 ,-106.4600,MesoWest ,GGWWFO ,York Island MT US GGWWFO , +SDAGU,3,606.6000 ,33.44000 ,-116.8580,MesoWest ,SGXWFO ,Aguanga CA US SGXWFO , +SDAPN,3,387.1000 ,32.83194 ,-116.8133,MesoWest ,SGXWFO ,Alpine 3W CA US SGXWFO , +SDAOK,3,1748.900 ,34.14315 ,-116.9824,MesoWest ,SGXWFO ,Angelus Oaks CA US SGXWFO , +SDAPL,3,841.9000 ,34.53600 ,-117.2780,MesoWest ,SGXWFO ,Apple Valley CA US SGXWFO , +SDBDN,3,2067.500 ,34.27927 ,-116.7928,MesoWest ,SGXWFO ,Baldwin Lake CA US SGXWFO , +SDBSG,3,219.5000 ,33.22782 ,-116.3860,MesoWest ,SGXWFO ,Borrego Springs CA US SGXWFO , +SDBLC,3,903.7000 ,32.96811 ,-116.6522,MesoWest ,SGXWFO ,Boulder Creek (9-372131) CA US SGXWFO , +SDCHU,3,36.60000 ,32.64950 ,-117.0702,MesoWest ,SGXWFO ,Chula Vista North CA US SGXWFO , +SDCHC,3,414.5000 ,33.73100 ,-117.4330,MesoWest ,SGXWFO ,Corona Horsethief Canyon CA US SGXWFO , +SDCMX,3,3.700000 ,32.41410 ,-117.2437,MesoWest ,SGXWFO ,Coronado Island Mexico MX SGXWFO , +SDCOT,3,283.5000 ,32.60609 ,-116.6940,MesoWest ,SGXWFO ,Cottonwood (12-50060) CA US SGXWFO , +SDDPT,3,4.600000 ,33.46100 ,-117.7070,MesoWest ,SGXWFO ,Dana Point CA US SGXWFO , +SDDEZ,3,457.2000 ,33.51470 ,-117.2025,MesoWest ,SGXWFO ,De Luz 8NE CA US SGXWFO , +SDOCH,3,89.90000 ,32.95430 ,-117.2572,MesoWest ,SGXWFO ,Del Mar SE1 CA US SGXWFO , +SDTSR,3,1014.700 ,32.91080 ,-116.6261,MesoWest ,SGXWFO ,Descanso 4N CA US SGXWFO , +SDETS,3,82.30000 ,33.05800 ,-117.2530,MesoWest ,SGXWFO ,Encinitas CA US SGXWFO , +SDESN,3,260.9000 ,33.16180 ,-117.0995,MesoWest ,SGXWFO ,Escondido 3N CA US SGXWFO , +SDEHM,3,469.4000 ,33.22600 ,-117.1150,MesoWest ,SGXWFO ,Escondido Hidden Meadows CA US SGXWFO , +SDFBK,3,207.3000 ,33.33860 ,-117.2208,MesoWest ,SGXWFO ,Fallbrook 3SE CA US SGXWFO , +SDMGR,3,173.4000 ,33.43250 ,-117.1956,MesoWest ,SGXWFO ,Fallbrook 5NE CA US SGXWFO , +SDFAL,3,212.8000 ,33.38360 ,-117.2483,MesoWest ,SGXWFO ,Fallbrook FS CA US SGXWFO , +SDGRV,3,1417.300 ,33.59800 ,-116.6140,MesoWest ,SGXWFO ,Garner Valley CA US SGXWFO , +SDGUA,3,1066.800 ,32.85423 ,-116.5985,MesoWest ,SGXWFO ,Guatay (10-173056) CA US SGXWFO , +SDHET,3,624.8000 ,33.74000 ,-116.8880,MesoWest ,SGXWFO ,Hemet Valle Vista CA US SGXWFO , +SDHEM,3,466.3000 ,33.73000 ,-117.0030,MesoWest ,SGXWFO ,Hemet West CA US SGXWFO , +SDHEN,3,841.2000 ,33.24218 ,-116.7640,MesoWest ,SGXWFO ,Henshaw (4-118154) CA US SGXWFO , +HESC1,3,932.7000 ,34.42000 ,-117.2650,MesoWest ,SGXWFO ,Hesperia CA US SGXWFO , +SDHTB,3,1.500000 ,33.70780 ,-118.0300,MesoWest ,SGXWFO ,Huntington Beach CA US SGXWFO , +SDIBS,3,3.000000 ,32.57960 ,-117.1327,MesoWest ,SGXWFO ,Imperial Beach 1W CA US SGXWFO , +SDIPR,3,3.000000 ,32.57960 ,-117.1348,MesoWest ,SGXWFO ,Imperial Beach Fishing Pier CA US SGXWFO , +SDKTC,3,976.9000 ,32.71355 ,-116.4726,MesoWest ,SGXWFO ,Kitchen Creek (11-40571) CA US SGXWFO , +SDLJS,3,54.90000 ,32.86833 ,-117.2533,MesoWest ,SGXWFO ,La Jolla CA US SGXWFO , +SDPMS,3,3.000000 ,32.86700 ,-117.2569,MesoWest ,SGXWFO ,La Jolla 2N CA US SGXWFO , +SDUSS,3,130.1000 ,32.88470 ,-117.2405,MesoWest ,SGXWFO ,La Jolla 4SW CA US SGXWFO , +SDLAM,3,149.4000 ,32.77170 ,-117.0333,MesoWest ,SGXWFO ,La Mesa CA US SGXWFO , +SDLNB,3,18.30000 ,33.54500 ,-117.7810,MesoWest ,SGXWFO ,Laguna Beach CA US SGXWFO , +SDLBT,3,301.8000 ,33.54800 ,-117.7540,MesoWest ,SGXWFO ,Laguna Beach Top CA US SGXWFO , +SDLNG,3,143.3000 ,33.53710 ,-117.6899,MesoWest ,SGXWFO ,Laguna Niguel CA US SGXWFO , +SDLKA,3,1562.100 ,34.26500 ,-117.2160,MesoWest ,SGXWFO ,Lake Arrowhead CA US SGXWFO , +SDLEL,3,388.6000 ,33.67000 ,-117.3700,MesoWest ,SGXWFO ,Lake Elsinore CA US SGXWFO , +SDUNC,3,432.8000 ,33.70440 ,-117.2047,MesoWest ,SGXWFO ,Menifee Valley CA US SGXWFO , +SDMRO,3,586.7000 ,33.96000 ,-117.2330,MesoWest ,SGXWFO ,Moreno Valley CA US SGXWFO , +SDHLX,3,332.2000 ,32.76500 ,-116.9828,MesoWest ,SGXWFO ,Mount Helix CA US SGXWFO , +SDMEA,3,378.0000 ,33.56810 ,-117.2522,MesoWest ,SGXWFO ,Murrieta CA US SGXWFO , +SDNAC,3,7.600000 ,32.67100 ,-117.1010,MesoWest ,SGXWFO ,National City CA US SGXWFO , +SDOSN,3,35.10000 ,33.27400 ,-117.3040,MesoWest ,SGXWFO ,Oceanside North CA US SGXWFO , +SDPAL,3,101.5000 ,33.35907 ,-117.1066,MesoWest ,SGXWFO ,Pala (3-104971) CA US SGXWFO , +SDPRR,3,457.2000 ,33.82000 ,-117.1950,MesoWest ,SGXWFO ,Perris CA US SGXWFO , +SDPOY,3,182.0000 ,32.96060 ,-117.0192,MesoWest ,SGXWFO ,Poway NE1 CA US SGXWFO , +SDPON,3,228.6000 ,33.02900 ,-117.0360,MesoWest ,SGXWFO ,Poway North CA US SGXWFO , +SDSGX,3,210.3000 ,33.02170 ,-117.0814,MesoWest ,SGXWFO ,Rancho Bernardo CA US SGXWFO , +SDRLT,3,530.0000 ,34.16053 ,-117.4235,MesoWest ,SGXWFO ,Rialto CA US SGXWFO , +SDRVS,3,338.3000 ,33.95400 ,-117.3280,MesoWest ,SGXWFO ,Riverside Canyon Crest CA US SGXWFO , +SDSCL,3,495.3000 ,32.91499 ,-118.4880,MesoWest ,SGXWFO ,San Clemente Island CA US SGXWFO , +SDFEL,3,1063.800 ,33.22036 ,-116.5906,MesoWest ,SGXWFO ,San Felipe (5-118304) CA US SGXWFO , +SDSJA,3,467.9000 ,33.78500 ,-116.9730,MesoWest ,SGXWFO ,San Jacinto CA US SGXWFO , +SDSMP,3,192.0000 ,33.15100 ,-117.1820,MesoWest ,SGXWFO ,San Marcos Palomar CA US SGXWFO , +SDPAS,3,102.1000 ,33.06821 ,-117.0318,MesoWest ,SGXWFO ,San Pasqual (7-16582_83) CA US SGXWFO , +SDVIC,3,364.2000 ,32.99073 ,-116.8610,MesoWest ,SGXWFO ,San Vicente (8-415768) CA US SGXWFO , +SDYSA,3,1091.200 ,33.09016 ,-116.6620,MesoWest ,SGXWFO ,Santa Ysabel (6-505005) CA US SGXWFO , +SDSNT,3,106.1000 ,32.84028 ,-116.9747,MesoWest ,SGXWFO ,Santee FS CA US SGXWFO , +SDSNL,3,132.6000 ,32.85250 ,-117.0103,MesoWest ,SGXWFO ,Santee Lakes CA US SGXWFO , +SDTEC,3,362.7000 ,33.46470 ,-117.0955,MesoWest ,SGXWFO ,Temecula 3SE CA US SGXWFO , +SDNSM,3,334.7000 ,33.45760 ,-117.1707,MesoWest ,SGXWFO ,Temecula 3SW CA US SGXWFO , +SDMDY,3,15.20000 ,32.71390 ,-117.1744,MesoWest ,SGXWFO ,USS Midway CA US SGXWFO , +SDVTL,3,890.0000 ,34.52420 ,-117.3106,MesoWest ,SGXWFO ,Victorville FS CA US SGXWFO , +SDWAR,3,269.7000 ,33.43339 ,-117.3452,MesoWest ,SGXWFO ,Warren Canyon CA US SGXWFO , +SDDHS,3,460.2000 ,33.95833 ,-116.5930,MesoWest ,SGXWFO ,Whitewater CA US SGXWFO , +SDWDM,3,396.2000 ,33.61300 ,-117.2920,MesoWest ,SGXWFO ,Wildomar CA US SGXWFO , +SDWRI,3,1820.300 ,34.36206 ,-117.6386,MesoWest ,SGXWFO ,Wrightwood CA US SGXWFO , +SBIRD,3,2468.900 ,40.58140 ,-111.6558,MesoWest ,SNOWBIRD ,SNOWBIRD - BASE UT US SNOWBIRD , +GAC ,3,3036.100 ,40.56820 ,-111.6575,MesoWest ,SNOWBIRD ,SNOWBIRD - GAD UT US SNOWBIRD , +HDP ,3,3351.000 ,40.56080 ,-111.6442,MesoWest ,SNOWBIRD ,SNOWBIRD - HIDDEN PEAK UT US SNOWBIRD , +SUNUT,3,1859.300 ,40.48042 ,-111.8371,MesoWest ,SUNCREST ,SunCrest UT US SUNCREST , +NAM01,3,2116.500 ,35.16053 ,-111.6658,MesoWest ,FGZWFO ,Aspen Trails AZ US FGZWFO , +NAM14,3,2115.300 ,35.21600 ,-111.6227,MesoWest ,FGZWFO ,Coconino HS AZ US FGZWFO , +NAM04,3,2036.100 ,35.25825 ,-111.5396,MesoWest ,FGZWFO ,Doney Park AZ US FGZWFO , +NAM17,3,2164.100 ,35.23567 ,-111.6629,MesoWest ,FGZWFO ,Flagstaff Arts and Leadership Ac AZ US FGZWFO , +NAM07,3,1439.900 ,35.29725 ,-111.0080,MesoWest ,FGZWFO ,Leupp Schools Incorporated AZ US FGZWFO , +NAM02,3,2109.200 ,35.19120 ,-111.6532,MesoWest ,FGZWFO ,Northern Arizona University AZ US FGZWFO , +NAM12,3,1645.900 ,36.96300 ,-109.3830,MesoWest ,FGZWFO ,Red Mesa HS AZ US FGZWFO , +NAM20,3,1969.600 ,36.59318 ,-110.6571,MesoWest ,FGZWFO ,Shonto Preparatory School AZ US FGZWFO , +NAM09,3,1540.200 ,36.13868 ,-111.2354,MesoWest ,FGZWFO ,Tuba City Junior High School AZ US FGZWFO , +PARKS,3,2218.900 ,35.29000 ,-111.9400,MesoWest ,FGZWFO ,Two Lamb Ranch - Parks AZ US FGZWFO , +NAM18,3,2063.800 ,35.19643 ,-111.5631,MesoWest ,FGZWFO ,Walnut Meadows AZ US FGZWFO , +E1BEN,3,1043.900 ,44.09290 ,-121.2622,MesoWest ,ODEQ ,Bend/Pine Nursery OR US ODEQ , +E3CAR,3,816.9000 ,45.25920 ,-121.4130,MesoWest ,ODEQ ,Carus/Spangler Rd OR US ODEQ , +E9GRA,3,277.4000 ,42.43410 ,-123.3485,MesoWest ,ODEQ ,Grants Pass/Parkside School OR US ODEQ , +E3HAL,3,86.00000 ,44.38900 ,-123.0850,MesoWest ,ODEQ ,Halsey/Central Linn HS OR US ODEQ , +E8KLA,3,1255.800 ,42.18890 ,-121.7225,MesoWest ,ODEQ ,Klamath Falls/Peterson School OR US ODEQ , +E3LAK,3,1447.800 ,42.18530 ,-120.3519,MesoWest ,ODEQ ,Lakeview /Center & M OR US ODEQ , +E0MED,3,410.0000 ,42.34200 ,-122.9098,MesoWest ,ODEQ ,Medford/MTV OR US ODEQ , +E6PEN,3,335.3000 ,45.65190 ,-118.8186,MesoWest ,ODEQ ,Pendleton /McKay Creek OR US ODEQ , +E0POR,3,64.00000 ,45.56070 ,-122.6715,MesoWest ,ODEQ ,Portland /Jefferson HS OR US ODEQ , +E5POR,3,6.100000 ,45.76810 ,-122.7719,MesoWest ,ODEQ ,Portland/Sauvie Island OR US ODEQ , +E3POR,3,70.10000 ,45.49660 ,-122.6029,MesoWest ,ODEQ ,Portland/SE Lafayette OR US ODEQ , +E0SAL,3,150.9000 ,44.80970 ,-122.9941,MesoWest ,ODEQ ,Salem-Turner/Cascade JHS OR US ODEQ , +3CLO3,3,6.100000 ,46.22000 ,-124.0000,MesoWest ,PDXWFO ,Clatsop Spit OR US PDXWFO , +FCGO3,3,7.900000 ,44.01000 ,-124.1200,MesoWest ,PDXWFO ,Florence/Siuslaw Jetty OR US PDXWFO , +GARO3,3,22.90000 ,45.57000 ,-123.9500,MesoWest ,PDXWFO ,Garibaldi OR US PDXWFO , +KPQR ,3,12.80000 ,45.56056 ,-122.5381,MesoWest ,PDXWFO ,Portland - NWS WFO OR US PDXWFO , +RRWO3,3,9.100000 ,45.54000 ,-122.2800,MesoWest ,PDXWFO ,Rooster Rock OR US PDXWFO , +K92S ,3,57.00000 ,42.83333 ,-124.5667,MesoWest ,MFRWFO ,Cape Blanco Coast Guard Station OR US MFRWFO , +CPC01,3,428.2000 ,45.72330 ,-118.6578,MesoWest ,CPCRC ,Duff OR US CPCRC , +CPC06,3,698.6000 ,45.34978 ,-119.7834,MesoWest ,CPCRC ,Jepsen OR US CPCRC , +CPC02,3,453.2000 ,45.72140 ,-118.6275,MesoWest ,CPCRC ,Pendleton Agricultural Research OR US CPCRC , +CPC03,3,545.9000 ,45.81670 ,-118.6433,MesoWest ,CPCRC ,Reeder OR US CPCRC , +CPC04,3,315.2000 ,45.73190 ,-119.0575,MesoWest ,CPCRC ,Reese OR US CPCRC , +CPC05,3,1091.500 ,45.75920 ,-118.2839,MesoWest ,CPCRC ,Upper Wildhorse OR US CPCRC , +MTH04,3,2715.800 ,37.65070 ,-119.0374,MesoWest ,MAMMOTH ,Mammoth Base (Main Lodge) CA US MAMMOTH , +MTH01,3,3033.100 ,37.64205 ,-119.0361,MesoWest ,MAMMOTH ,Mammoth Chair 1 CA US MAMMOTH , +MTH02,3,3098.300 ,37.63713 ,-119.0171,MesoWest ,MAMMOTH ,Mammoth Chair 22 CA US MAMMOTH , +MTH03,3,3378.100 ,37.63060 ,-119.0325,MesoWest ,MAMMOTH ,Mammoth G2 (top) CA US MAMMOTH , +MTH05,3,2758.800 ,37.64977 ,-119.0417,MesoWest ,MAMMOTH ,Mammoth Sesame Snow Sudy Plot CA US MAMMOTH , +AGWC1,3,304.8000 ,37.15111 ,-119.5053,MesoWest ,CNRFC ,AG WISHON POWERPLANT NEAR NORTH CA US CNRFC , +ADRC1,3,365.8000 ,38.88194 ,-121.0450,MesoWest ,CNRFC ,AUBURN DAM RIDGE NEAR AUBURN 2SE CA US CNRFC , +DNPC1,3,524.3000 ,36.90917 ,-119.0886,MesoWest ,CNRFC ,BALCH POWERHOUSE NEAR TRIMMER 12 CA US CNRFC , +BMOC1,3,1438.700 ,37.06167 ,-119.4083,MesoWest ,CNRFC ,BALD MOUNTAIN NEAR AUBERRY 5E CA US CNRFC , +BTRC1,3,1036.300 ,40.33306 ,-121.7500,MesoWest ,CNRFC ,BATTLE RIDGE NEAR PAYNES CREEK 8 CA US CNRFC , +BCHC1,3,2331.700 ,36.12410 ,-118.2930,MesoWest ,CNRFC ,BEACH MEADOWS NEAR OLANCHA 20SW CA US CNRFC , +ROLC1,3,592.8000 ,39.13556 ,-120.9486,MesoWest ,CNRFC ,BEAR RVR AT ROLLINS RESERVOIR NE CA US CNRFC , +BFLC1,3,1554.500 ,41.08500 ,-122.9433,MesoWest ,CNRFC ,BIG FLAT NEAR TRINITY CENTER 13W CA US CNRFC , +BIMC1,3,2316.200 ,36.71500 ,-118.8417,MesoWest ,CNRFC ,BIG MEADOWS NEAR WILSONIA 7E CA US CNRFC , +BSHC1,3,3649.100 ,37.10000 ,-118.5567,MesoWest ,CNRFC ,BISHOP PASS NEAR BIG PINE 15WSW CA US CNRFC , +BLSC1,3,1981.200 ,38.37694 ,-120.1969,MesoWest ,CNRFC ,BLACK SPRINGS NEAR BIG MEADOWS 5 CA US CNRFC , +BCBC1,3,3139.400 ,37.06667 ,-118.7700,MesoWest ,CNRFC ,BLACKCAP BASIN NEAR BISHOP 29SW CA US CNRFC , +BLCC1,3,2194.600 ,38.45000 ,-120.0350,MesoWest ,CNRFC ,BLOODS CREEK NEAR BEAR VALLEY 1S CA US CNRFC , +BCYC1,3,1609.300 ,39.27611 ,-120.7081,MesoWest ,CNRFC ,BLUE CANYON NEAR EMIGRANT GAP 2S CA US CNRFC , +BNKC1,3,1966.000 ,41.08306 ,-122.6281,MesoWest ,CNRFC ,BONANZA KING NEAR TRINITY CENTER CA US CNRFC , +BDYC1,3,396.2000 ,40.61694 ,-122.5669,MesoWest ,CNRFC ,BRANDY CREEK NEAR SHASTA 4WNW CA US CNRFC , +CVSC1,3,1024.100 ,38.19806 ,-120.3669,MesoWest ,CNRFC ,CALAVERAS RANGER STATION NEAR AV CA US CNRFC , +CPLC1,3,2438.400 ,38.71000 ,-120.0417,MesoWest ,CNRFC ,CAPLES LAKE NEAR KIRKWOOD 1E CA US CNRFC , +CVMC1,3,2590.800 ,36.20000 ,-118.2681,MesoWest ,CNRFC ,CASA VIEJA MEADOWS NEAR OLANCHA CA US CNRFC , +CHPC1,3,2880.400 ,36.47333 ,-118.4633,MesoWest ,CNRFC ,CHAGOOPA PLATEAU NEAR MINERAL KI CA US CNRFC , +CRLC1,3,3169.900 ,36.79694 ,-118.4219,MesoWest ,CNRFC ,CHARLOTTE LAKE NEAR INDEPENDNCE CA US CNRFC , +CHMC1,3,2179.300 ,37.40806 ,-119.4900,MesoWest ,CNRFC ,CHILKOOT MEADOW NEAR BASS LAKE 8 CA US CNRFC , +CLCC1,3,1005.800 ,40.63889 ,-122.6669,MesoWest ,CNRFC ,CLEAR CREEK NEAR WHISKEYTOWN 7W CA US CNRFC , +CFRC1,3,926.6000 ,41.07667 ,-122.7117,MesoWest ,CNRFC ,COFFEE RIDGE NEAR TRINITY CENTER CA US CNRFC , +CTZC2,3,1875.400 ,37.34444 ,-108.5931,MesoWest ,CBRFC ,CORTEZ 1SW CO US CBRFC , +CWDC1,3,3093.700 ,36.48250 ,-118.1756,MesoWest ,CNRFC ,COTTONWOOD LAKES NEAR LONE PINE CA US CNRFC , +CTNC1,3,1036.300 ,40.31694 ,-122.8811,MesoWest ,CNRFC ,COTTONWOOD NEAR PLATINA 7WSW CA US CNRFC , +CCEC1,3,865.6000 ,40.60306 ,-121.8531,MesoWest ,CNRFC ,COW CREEK NEAR WHITMORE 4SE CA US CNRFC , +CBTC1,3,3261.400 ,36.56333 ,-118.3450,MesoWest ,CNRFC ,CRABTREE MEADOWS MET STN NR LONE CA US CNRFC , +DVRC1,3,167.6000 ,40.35333 ,-122.4567,MesoWest ,CNRFC ,DAVIS RANCH NEAR COTTONWOOD 9WSW CA US CNRFC , +DDMC1,3,2819.400 ,38.33194 ,-119.6531,MesoWest ,CNRFC ,DEADMAN CREEK NEAR KENNEDY MEADO CA US CNRFC , +DKFC1,3,1357.900 ,39.30000 ,-120.8250,MesoWest ,CNRFC ,DEER CREEK FOREBAY NEAR DUTCH FL CA US CNRFC , +DDWC1,3,396.2000 ,40.70000 ,-122.1000,MesoWest ,CNRFC ,DIDDY WELLS NEAR REDDING 18SW CA US CNRFC , +DLLC2,3,2763.000 ,39.62611 ,-106.0356,MesoWest ,CBRFC ,DILLON 1E CO US CBRFC , +DNRC1,3,1805.600 ,39.32500 ,-120.2814,MesoWest ,CNRFC ,DONNER LAKE NEAR TRUCKEE 5W CA US CNRFC , +DPHC1,3,1036.300 ,39.26389 ,-120.7667,MesoWest ,CNRFC ,DRUM POWERHOUSE NEAR BLUE CANYON CA US CNRFC , +COVC1,3,461.5000 ,39.82194 ,-123.0931,MesoWest ,CNRFC ,EEL RIVER RANGER STATION NEAR CO CA US CNRFC , +ELTC2,3,2436.900 ,39.87444 ,-106.3292,MesoWest ,CBRFC ,ELLIOT CK CANAL NR GREEN MOUNTAI CO US CBRFC , +TRHC1,3,566.9000 ,40.72667 ,-122.7933,MesoWest ,CNRFC ,FISH HATCHERY AT LEWISTON CA US CNRFC , +FBSC1,3,865.6000 ,39.51694 ,-121.2661,MesoWest ,CNRFC ,FORBESTOWN 4NNW CA US CNRFC , +FOIC1,3,2316.500 ,38.80500 ,-120.2131,MesoWest ,CNRFC ,FORNI RIDGE NEAR STRAWBERRY 4W CA US CNRFC , +FRIC1,3,176.2000 ,36.99500 ,-119.6919,MesoWest ,CNRFC ,FRIANT DAM NEAR FRIANT 1NE CA US CNRFC , +JEMC1,3,3276.600 ,37.78000 ,-119.1781,MesoWest ,CNRFC ,GEM PASS NEAR JUNE LAKE 5W CA US CNRFC , +GNLC1,3,2560.300 ,38.20500 ,-119.8919,MesoWest ,CNRFC ,GIANELLI NEAR STRAWBERRY 6E CA US CNRFC , +GRDC1,3,1463.000 ,41.13306 ,-122.2831,MesoWest ,CNRFC ,GIRARD RIDGE NEAR CASTELLA 2ESE CA US CNRFC , +GTMC1,3,1377.700 ,37.27000 ,-119.5431,MesoWest ,CNRFC ,GOAT MOUNTAIN NEAR OAKHURST 7SE CA US CNRFC , +GVYC1,3,2103.100 ,37.46500 ,-119.2900,MesoWest ,CNRFC ,GRAVEYARD MEADOW NEAR BASS LAKE CA US CNRFC , +GKSC1,3,1706.900 ,39.07306 ,-120.5619,MesoWest ,CNRFC ,GREEK STORE NEAR SODA SPRINGS 20 CA US CNRFC , +GRMC1,3,2407.900 ,37.55500 ,-119.2381,MesoWest ,CNRFC ,GREEN MOUNTAIN NEAR MAMMOTH LAKE CA US CNRFC , +GRZC1,3,2103.100 ,39.91694 ,-120.6450,MesoWest ,CNRFC ,GRIZZLY RIDGE NEAR PORTOLA 12WNW CA US CNRFC , +HIGC1,3,1800.800 ,41.09167 ,-122.4917,MesoWest ,CNRFC ,HIGHLAND LAKES NEAR TRINITY CENT CA US CNRFC , +HHMC1,3,2377.400 ,38.62500 ,-120.1333,MesoWest ,CNRFC ,HIGHLAND MEADOW NEAR KIT CARSON CA US CNRFC , +HLCC1,3,1048.500 ,40.86694 ,-121.8831,MesoWest ,CNRFC ,HILLCREST 2E CA US CNRFC , +HRZC1,3,1082.000 ,40.89667 ,-122.2450,MesoWest ,CNRFC ,HIRZ NEAR LAKEHEAD 8ESE CA US CNRFC , +HDLC1,3,1396.000 ,40.68306 ,-122.7500,MesoWest ,CNRFC ,HOADLEY NEAR LEWISTON 3SE CA US CNRFC , +HRSC1,3,2560.300 ,38.15833 ,-119.6617,MesoWest ,CNRFC ,HORSE MEADOWS NEAR PINECREST 19E CA US CNRFC , +HNTC1,3,2139.700 ,37.22750 ,-119.2206,MesoWest ,CNRFC ,HUNTINGTON LAKE NEAR BIG CREEK 2 CA US CNRFC , +HYSC1,3,2072.600 ,39.28194 ,-120.5269,MesoWest ,CNRFC ,HUYSINK NEAR SODA SPRINGS 9SW CA US CNRFC , +ILAC1,3,2118.100 ,39.45194 ,-120.2897,MesoWest ,CNRFC ,INDEPENDENCE LAKE NEAR TRUCKEE 1 CA US CNRFC , +KSPC1,3,2783.100 ,37.29833 ,-119.1033,MesoWest ,CNRFC ,KAISER POINT NEAR LAKESHORE 4ENE CA US CNRFC , +KRKC1,3,2225.000 ,40.13306 ,-120.7169,MesoWest ,CNRFC ,KETTLE ROCK NEAR TAYLORSVILLE 8N CA US CNRFC , +LLSC1,3,2545.100 ,38.92500 ,-120.1969,MesoWest ,CNRFC ,LAKE LOIS NEAR SOUTH LAKE TAHOE CA US CNRFC , +EXQC1,3,267.9000 ,37.58500 ,-120.2672,MesoWest ,CNRFC ,LAKE MCCLURE AT EXCHEQUER DAM CA US CNRFC , +LSHC1,3,335.3000 ,40.86694 ,-122.3831,MesoWest ,CNRFC ,LAKESHORE NEAR LAKEHEAD 3S CA US CNRFC , +KIBC1,3,2042.200 ,38.04500 ,-119.8800,MesoWest ,CNRFC ,LOWER KIBBIE NEAR PINE CREST 12S CA US CNRFC , +RELC1,3,2468.900 ,38.24333 ,-119.7583,MesoWest ,CNRFC ,LOWER RELIEF VALLEY NEAR DARDANE CA US CNRFC , +MAMC1,3,2895.600 ,37.61000 ,-119.0331,MesoWest ,CNRFC ,MAMMOTH PASS NEAR MAMMOTH LAKES CA US CNRFC , +MCUC1,3,819.9000 ,41.13000 ,-122.0711,MesoWest ,CNRFC ,MCCLOUD DAM POWERPLANT NEAR MCCL CA US CNRFC , +MDCC1,3,2049.800 ,41.58694 ,-121.6131,MesoWest ,CNRFC ,MEDICINE LAKE NEAR TUELARE 26SSW CA US CNRFC , +MDHC2,3,2385.100 ,39.36056 ,-106.7489,MesoWest ,CBRFC ,MEREDITH CO US CBRFC , +MDBC1,3,1889.800 ,41.22500 ,-122.8117,MesoWest ,CNRFC ,MIDDLE BOULDER 3 NEAR CALLAHAN 6 CA US CNRFC , +MNCN2,3,1713.000 ,41.83889 ,-115.9661,MesoWest ,CNRFC ,MOUNTAIN CITY RANGER STATION NV US CNRFC , +MUMC1,3,1737.400 ,41.19833 ,-122.5250,MesoWest ,CNRFC ,MUMBO BASIN NEAR DUNSMOIR 13W CA US CNRFC , +NTRC1,3,1569.700 ,37.34194 ,-119.3600,MesoWest ,CNRFC ,NATURE POINT NEAR BASS LAKE 11EN CA US CNRFC , +NMSC1,3,426.7000 ,37.95556 ,-120.5194,MesoWest ,CNRFC ,NEW MELONES NEAR SONORA 10SW CA US CNRFC , +OSTC1,3,2518.900 ,37.63611 ,-119.5511,MesoWest ,CNRFC ,OSTRANDER LAKE NEAR YOSEMITE VIL CA US CNRFC , +OWYN2,3,1644.700 ,41.94556 ,-116.0981,MesoWest ,CNRFC ,OWYHEE NV US CNRFC , +PFHC1,3,1048.500 ,38.75611 ,-120.5003,MesoWest ,CNRFC ,PACIFIC HOUSE CA US CNRFC , +PDSC1,3,2347.000 ,38.04667 ,-119.6667,MesoWest ,CNRFC ,PARADISE NEAR PINECREST 21ESE CA US CNRFC , +HLNC1,3,415.1000 ,40.76611 ,-123.1094,MesoWest ,CNRFC ,PEAR TREE GULCH NEAR HELENA 1ESE CA US CNRFC , +PCKC1,3,1569.700 ,37.25000 ,-119.4581,MesoWest ,CNRFC ,PECKINPAH NEAR SOUTH FORK 2NE CA US CNRFC , +PTFC1,3,2042.200 ,41.31333 ,-122.5250,MesoWest ,CNRFC ,PETERSON FLAT NEAR MOUNT SHASTA CA US CNRFC , +PGRC1,3,743.7000 ,38.40000 ,-120.6333,MesoWest ,CNRFC ,PINE GROVE 2SE CA US CNRFC , +PNCC1,3,1706.900 ,38.20028 ,-119.9833,MesoWest ,CNRFC ,PINECREST 1NNE CA US CNRFC , +PPHC1,3,640.1000 ,40.99806 ,-121.7469,MesoWest ,CNRFC ,PIT #3 POWERPLANT NEAR BURNEY 9N CA US CNRFC , +MVLC1,3,1255.800 ,41.01528 ,-121.1536,MesoWest ,CNRFC ,PIT RVR BLO MUCK VALLEY POWERPLA CA US CNRFC , +POSC1,3,2103.100 ,37.40306 ,-119.5200,MesoWest ,CNRFC ,POISON RIDGE NEAR BASS LAKE 6NNE CA US CNRFC , +PLLC1,3,1377.700 ,40.20917 ,-121.1569,MesoWest ,CNRFC ,PRATTVILLE POWERPLANT NEAR ALMAN CA US CNRFC , +QUAC1,3,2149.100 ,36.12167 ,-118.5450,MesoWest ,CNRFC ,QUAKING ASPEN CA US CNRFC , +GEOC1,3,914.7000 ,38.92472 ,-120.7894,MesoWest ,CNRFC ,RANGER STATION AT GEORGETOWN CA US CNRFC , +RRMC1,3,2042.200 ,41.02306 ,-122.8850,MesoWest ,CNRFC ,RED ROCK MOUNTAIN NEAR TRINITY C CA US CNRFC , +RFSC1,3,225.6000 ,40.57306 ,-122.4150,MesoWest ,CNRFC ,REDDING FIRE STATION AT REDDING CA US CNRFC , +CLSC1,3,23.20000 ,39.33833 ,-122.0217,MesoWest ,CNRFC ,SACRAMENTO RVR AT MOULTON WEIR N CA US CNRFC , +KESC1,3,146.3000 ,40.60167 ,-122.4433,MesoWest ,CNRFC ,SACRAMENTO RVR BLO KESWICK DAM W CA US CNRFC , +RDBC1,3,70.40000 ,40.15333 ,-122.2017,MesoWest ,CNRFC ,SACRAMENTO RVR BLO RED BLUFF DIV CA US CNRFC , +SDCC1,3,1173.500 ,40.16694 ,-122.8008,MesoWest ,CNRFC ,SADDLE CAMP NEAR RED BLUFF 20W CA US CNRFC , +SDFC1,3,2057.400 ,41.35000 ,-122.2450,MesoWest ,CNRFC ,SAND FLAT NEAR MOUNT SHASTA 4SW CA US CNRFC , +SGTC2,3,2581.700 ,38.40389 ,-106.4236,MesoWest ,CBRFC ,SARGENTS CO US CBRFC , +SCMC1,3,1798.300 ,41.27500 ,-122.7200,MesoWest ,CNRFC ,SCOTT MOUNTAIN NEAR CALLAHAN 6ES CA US CNRFC , +SHDC1,3,327.7000 ,40.71666 ,-122.4167,MesoWest ,CNRFC ,SHASTA DAM (SACRAMENTO RVR) CA US CNRFC , +SHMC1,3,1948.300 ,41.00528 ,-122.8017,MesoWest ,CNRFC ,SHIMMY LAKE NEAR TRINITY CENTER CA US CNRFC , +SHIC1,3,1106.400 ,40.49611 ,-121.8500,MesoWest ,CNRFC ,SHINGLETOWN 2E CA US CNRFC , +SILC1,3,2164.100 ,38.67833 ,-120.1200,MesoWest ,CNRFC ,SILVER LAKE NEAR KIT CARSON CA US CNRFC , +SLTC1,3,1737.400 ,41.04611 ,-122.4811,MesoWest ,CNRFC ,SLATE CREEK NEAR DUNSMUIR 16SW CA US CNRFC , +SLIC1,3,2895.600 ,38.09167 ,-119.4367,MesoWest ,CNRFC ,SLIDE CANYON NEAR MONO VILLAGE 5 CA US CNRFC , +SLPC1,3,1075.900 ,38.71667 ,-120.5667,MesoWest ,CNRFC ,SLY PARK NEAR POLLOCK PINES 3S CA US CNRFC , +SNWC1,3,1813.600 ,40.77806 ,-121.7819,MesoWest ,CNRFC ,SNOW MOUNTAIN NEAR BURNEY 10SSW CA US CNRFC , +SFKC1,3,1051.600 ,40.65667 ,-122.5250,MesoWest ,CNRFC ,SOUTH FORK MOUNTAIN NEAR REDDING CA US CNRFC , +SOUC1,3,2920.000 ,37.16833 ,-118.5706,MesoWest ,CNRFC ,SOUTH LAKE CABIN NEAR BISHOP 16S CA US CNRFC , +SLMC1,3,2362.200 ,38.50167 ,-119.9367,MesoWest ,CNRFC ,STANISLAUS MEADOW NEAR TAMARACK CA US CNRFC , +SPWC1,3,323.1000 ,38.13306 ,-120.3669,MesoWest ,CNRFC ,STANISLAUS POWERHOUSE NEAR HATHA CA US CNRFC , +SGEC1,3,243.8000 ,39.58306 ,-122.5331,MesoWest ,CNRFC ,STONY GORGE RESERVOIR NEAR ELK C CA US CNRFC , +STMC1,3,1645.900 ,41.16833 ,-121.9383,MesoWest ,CNRFC ,STOUTS MEADOW NEAR MCCLOUD 12ESE CA US CNRFC , +SGPC1,3,1171.300 ,39.12806 ,-120.7500,MesoWest ,CNRFC ,SUGAR PINE NEAR FORESTHILL 8NNE CA US CNRFC , +TMRC1,3,2320.400 ,37.16361 ,-119.2008,MesoWest ,CNRFC ,TAMARACK SUMMIT NEAR SHAVER LAKE CA US CNRFC , +TYRC1,3,1219.200 ,40.91694 ,-122.8169,MesoWest ,CNRFC ,TAYLOR RIDGE NEAR WEAVERVILLE 15 CA US CNRFC , +TLHC1,3,1136.900 ,38.03000 ,-120.3531,MesoWest ,CNRFC ,TELEGRAPH HILL NEAR COLUMBIA 3E CA US CNRFC , +SFTC1,3,2487.200 ,37.83778 ,-119.4500,MesoWest ,CNRFC ,TENAYA LAKE NEAR YOSEMITE VILLAG CA US CNRFC , +TIGC1,3,717.8000 ,38.44611 ,-120.4833,MesoWest ,CNRFC ,TIGER CREEK POWERHOUSE NEAR WEST CA US CNRFC , +TIOC1,3,2987.000 ,37.89306 ,-119.2569,MesoWest ,CNRFC ,TIOGA PASS-DANA MEADOWS NEAR LEE CA US CNRFC , +TGSC1,3,1250.000 ,40.82500 ,-122.6600,MesoWest ,CNRFC ,TRINITY GUARD STATION NR TRINITY CA US CNRFC , +LEWC1,3,570.0000 ,40.72000 ,-122.8017,MesoWest ,CNRFC ,TRINITY RIVER NEAR LEWISTON 1W CA US CNRFC , +TUNC1,3,2743.200 ,36.36000 ,-118.2883,MesoWest ,CNRFC ,TUNNEL NEAR CATAGO 15W CA US CNRFC , +TUMC1,3,2621.300 ,37.87333 ,-119.3500,MesoWest ,CNRFC ,TUOLUMNE MEADOWS CA US CNRFC , +UBLC2,3,3554.000 ,39.38556 ,-106.1011,MesoWest ,CBRFC ,UPPER BLUE LAKE NEAR BRECKENRIDG CO US CBRFC , +UBCC1,3,2979.400 ,37.18306 ,-118.9367,MesoWest ,CNRFC ,UPPER BURNT CORRAL MEADOW CA US CNRFC , +VKOC1,3,3078.500 ,37.38833 ,-118.9033,MesoWest ,CNRFC ,VOLCANIC KNOB NEAR BISHOP 28W CA US CNRFC , +WSHC1,3,1996.400 ,37.00694 ,-118.9839,MesoWest ,CNRFC ,WISHON DAM POWERPLANT NEAR HUME CA US CNRFC , +JPHN2,3,1613.900 ,41.99330 ,-114.6612,MesoWest ,LKNWFO ,Jackpot 1E NV US LKNWFO , +WEHN2,3,1733.700 ,41.10420 ,-114.9833,MesoWest ,LKNWFO ,Wells 1NNE NV US LKNWFO , +PCB ,3,2133.600 ,40.65180 ,-111.5113,MesoWest ,PCMR ,PARK CITY - BASE UT US PCMR , +PCZ ,3,2804.200 ,40.62600 ,-111.5270,MesoWest ,PCMR ,PARK CITY - BONANZA TOP UT US PCMR , +PCS ,3,2453.600 ,40.64740 ,-111.5197,MesoWest ,PCMR ,PARK CITY - EAGLE UT US PCMR , +PCG ,3,1969.000 ,40.75500 ,-111.5850,MesoWest ,PCMR ,PARK CITY - GORGOZA UT US PCMR , +PKC ,3,3055.300 ,40.61350 ,-111.5395,MesoWest ,PCMR ,PARK CITY - JUPITER UT US PCMR , +PCPD ,3,2522.200 ,40.63500 ,-111.5080,MesoWest ,PCMR ,PARK CITY - PAYDAY TOP UT US PCMR , +PCH ,3,2420.100 ,40.64170 ,-111.5282,MesoWest ,PCMR ,PARK CITY - SILVERLODE BOTTOM UT US PCMR , +PCSL ,3,2807.200 ,40.62800 ,-111.5290,MesoWest ,PCMR ,PARK CITY - SILVERLODE TOP UT US PCMR , +PCT ,3,2834.600 ,40.62500 ,-111.5300,MesoWest ,PCMR ,PARK CITY - SUMMIT UT US PCMR , +DVB ,3,2560.300 ,40.62360 ,-111.4809,MesoWest ,DEERVLY ,DV - BALD EAGLE UT US DEERVLY , +DVE ,3,2235.100 ,40.62280 ,-111.4520,MesoWest ,DEERVLY ,DV - BURNS UT US DEERVLY , +DVG ,3,2002.500 ,40.63599 ,-111.4519,MesoWest ,DEERVLY ,DV - Deer Crest Gondola UT US DEERVLY , +EMPUT,3,2916.900 ,40.61190 ,-111.5272,MesoWest ,DEERVLY ,DV - EMPIRE PK UT US DEERVLY , +MBY ,3,2849.000 ,40.60890 ,-111.4802,MesoWest ,DEERVLY ,DV - MOUNT BALDY UT US DEERVLY , +SNV ,3,2529.800 ,40.61520 ,-111.5110,MesoWest ,DEERVLY ,DV - RUBY UT US DEERVLY , +OXCAR,3,136.9000 ,34.40288 ,-119.4574,MesoWest ,SBCAPCD ,Carpinteria CA US SBCAPCD , +OXELC,3,39.00000 ,34.46244 ,-120.0246,MesoWest ,SBCAPCD ,EL CAPITAN BCH CA US SBCAPCD , +SBELL,3,25.00000 ,34.43111 ,-119.8969,MesoWest ,SBCAPCD ,ELLWOODODOR CA US SBCAPCD , +OXGOL,3,50.00000 ,34.44553 ,-119.8279,MesoWest ,SBCAPCD ,GOLETA CA US SBCAPCD , +OXLFC,3,189.0000 ,34.48985 ,-120.0459,MesoWest ,SBCAPCD ,LAS FLORES CANYON CA US SBCAPCD , +SBLFD,3,38.10000 ,34.43333 ,-119.8639,MesoWest ,SBCAPCD ,LFCODOR CA US SBCAPCD , +OXLPH,3,32.00000 ,34.63791 ,-120.4566,MesoWest ,SBCAPCD ,LOMPOC H ST CA US SBCAPCD , +OXLOM,3,220.1000 ,34.72550 ,-120.4277,MesoWest ,SBCAPCD ,LOMPOC HS & P CA US SBCAPCD , +SBLPD,3,173.1000 ,34.71908 ,-120.4317,MesoWest ,SBCAPCD ,LOMPODOR CA US SBCAPCD , +OXNOJ,3,304.8000 ,34.52753 ,-120.1955,MesoWest ,SBCAPCD ,Nojoqui Summit CA US SBCAPCD , +OXPAR,3,547.1000 ,34.54145 ,-119.7905,MesoWest ,SBCAPCD ,PARADISE RD CA US SBCAPCD , +SBSTB,3,20.10000 ,34.42778 ,-119.6903,MesoWest ,SBCAPCD ,SANTA BARBARA CA US SBCAPCD , +SBSTM,3,75.90000 ,34.94917 ,-120.4367,MesoWest ,SBCAPCD ,SANTA MARIA CA US SBCAPCD , +OXSYZ,3,210.0000 ,34.60829 ,-120.0732,MesoWest ,SBCAPCD ,SANTA YNEZ CA US SBCAPCD , +OXUCS,3,9.100000 ,34.41525 ,-119.8786,MesoWest ,SBCAPCD ,UCSB W Campus CA US SBCAPCD , +OXVBS,3,103.9000 ,34.59595 ,-120.6304,MesoWest ,SBCAPCD ,VANDENBERG SOUTH CA US SBCAPCD , +SBVEN,3,20.10000 ,34.43028 ,-119.9108,MesoWest ,SBCAPCD ,VENOCO CA US SBCAPCD , +21ACR,3,14.00000 ,47.74840 ,-122.1542,MesoWest , ,21 Acres/King WA US , +AHTAN,3,474.9000 ,46.55000 ,-120.7100,MesoWest , ,AHTANUM WA US , +ALDER,3,224.0000 ,45.85800 ,-119.8880,MesoWest , ,ALDERDALE WA US , +ANATO,3,944.9000 ,46.19610 ,-117.1044,MesoWest , ,Anatone/Asotin WA US , +BADGE,3,180.1000 ,46.17900 ,-119.2760,MesoWest , ,BADGER CANYON WA US , +BAKER,3,182.9000 ,47.49400 ,-120.3000,MesoWest , ,BAKER FLAT WA US , +BASIN,3,266.1000 ,46.64500 ,-119.1650,MesoWest , ,BASIN CITY WA US , +BENTO,3,193.9000 ,46.26900 ,-119.4510,MesoWest , ,BENTON CITY WA US , +BENTW,3,289.0000 ,46.30150 ,-119.5676,MesoWest , ,Benton City West/Benton WA US , +BRAYS,3,405.1000 ,47.75010 ,-120.1554,MesoWest , ,Brays Landing/Douglas WA US , +BREWS,3,200.9000 ,48.07200 ,-119.8480,MesoWest , ,BREWSTER WA US , +BUENA,3,260.0000 ,46.43900 ,-120.2940,MesoWest , ,BUENA WA US , +BYRON,3,220.1000 ,46.21130 ,-119.8813,MesoWest , ,Byron/Yakima WA US , +CANOE,3,274.9000 ,45.88220 ,-119.7562,MesoWest , ,Canoe Ridge/Benton WA US , +CARLS,3,435.0000 ,46.14300 ,-119.4610,MesoWest , ,CARLSON WA US , +CBCPA,3,103.0000 ,46.25300 ,-119.1270,MesoWest , ,CBC PASCO WA US , +COFFI,3,370.9000 ,46.04050 ,-119.3087,MesoWest , ,Coffin/Benton WA US , +COLLE,3,210.9000 ,46.02800 ,-118.4000,MesoWest , ,COLLEGE PLACE WA US , +COLUM,3,281.9000 ,47.56570 ,-120.2435,MesoWest , ,Columbia View/Douglas WA US , +CONNE,3,345.9000 ,46.71460 ,-118.9086,MesoWest , ,Connell Bench/Franklin WA US , +COWIC,3,540.1000 ,46.66800 ,-120.7190,MesoWest , ,COWICHE WA US , +CROAG,3,259.1000 ,47.29140 ,-120.0626,MesoWest , ,CRO/Douglas WA US , +DESER,3,143.9000 ,46.70930 ,-119.9173,MesoWest , ,Desert Aire/Grant WA US , +EOROV,3,345.0000 ,48.97960 ,-119.4134,MesoWest , ,East Oroville/Okanogan WA US , +EWENA,3,384.0000 ,47.39960 ,-120.1957,MesoWest , ,East Wenatchee/Douglas WA US , +EBY ,3,358.1000 ,46.08000 ,-119.0800,MesoWest , ,EBY WA US , +EBYAG,3,463.0000 ,46.06610 ,-119.0754,MesoWest , ,Eby/Benton WA US , +ELLEN,3,566.0000 ,46.90400 ,-120.4160,MesoWest , ,ELLENSBURG WA US , +ELLIS,3,271.9000 ,48.79300 ,-119.3970,MesoWest , ,ELLISFORDE WA US , +EPHRA,3,371.9000 ,47.18350 ,-119.6402,MesoWest , ,Ephrata/Grant WA US , +FAIRF,3,752.9000 ,47.41530 ,-117.2557,MesoWest , ,Fairfield/Spokane WA US , +FINLE,3,230.1000 ,46.10000 ,-119.1000,MesoWest , ,FINLEY WA US , +FIRIS,3,0.000000 ,48.35650 ,-122.4219,MesoWest , ,Fir Island/Skagit WA US , +FISHH,3,234.1000 ,46.29400 ,-118.7410,MesoWest , ,FISHHOOK WA US , +FOURM,3,175.9000 ,45.99000 ,-119.3300,MesoWest , ,FOURMILE WA US , +FRENC,3,383.1000 ,47.01550 ,-119.8701,MesoWest , ,Frenchman Hills/Grant WA US , +GLEED,3,449.9000 ,46.68400 ,-120.6340,MesoWest , ,GLEED WA US , +GRAML,3,385.9000 ,46.12400 ,-119.2190,MesoWest , ,GRAMLING WA US , +GRAYL,3,2.100000 ,46.78000 ,-124.0000,MesoWest , ,GRAYLAND WA US , +HATTO,3,398.1000 ,46.79310 ,-118.8586,MesoWest , ,Hatton/Adams WA US , +HORRI,3,269.1000 ,46.07700 ,-119.7690,MesoWest , ,HORRIGAN WA US , +HUNDR,3,209.1000 ,45.92000 ,-119.8000,MesoWest , ,HUNDRED CIRCLES WA US , +JUNIP,3,212.1000 ,46.37970 ,-119.0059,MesoWest , ,Juniper/Franklin WA US , +K2HAG,3,307.8000 ,46.28700 ,-118.6427,MesoWest , ,K2H WA US , +KENNE,3,131.1000 ,46.20300 ,-119.1920,MesoWest , ,KENNEWICK WA US , +KONNO,3,264.9000 ,46.47100 ,-120.3793,MesoWest , ,Konnowac Pass/Yakima WA US , +LAWRE,3,45.10000 ,48.88370 ,-122.3214,MesoWest , ,Lawrence/Whatcom WA US , +LINDA,3,495.0000 ,47.00210 ,-118.5584,MesoWest , ,Lind/Adams WA US , +LOOMG,3,360.0000 ,48.77750 ,-119.4279,MesoWest , ,Loomis Grade/Okanogan WA US , +LOOMV,3,433.1000 ,48.81530 ,-119.5207,MesoWest , ,Loomis Valley/Okanogan WA US , +LYNDE,3,21.00000 ,48.93560 ,-122.5141,MesoWest , ,Lynden/Whatcom WA US , +MABTO,3,256.9000 ,46.17840 ,-119.9287,MesoWest , ,Mabton/Yakima WA US , +MAEAG,3,356.9000 ,47.06660 ,-119.4920,MesoWest , ,Mae/Grant WA US , +MALAG,3,294.1000 ,47.36490 ,-120.2387,MesoWest , ,Malaga/Chelan WA US , +MALOT,3,405.1000 ,48.30470 ,-119.6838,MesoWest , ,Malott/Okanogan WA US , +MARYH,3,207.0000 ,45.67270 ,-120.8732,MesoWest , ,Maryhill/Klickitat WA US , +MATHE,3,276.1000 ,46.42900 ,-119.2000,MesoWest , ,MATHEWS CORNER WA US , +MATTA,3,238.0000 ,46.70100 ,-119.8000,MesoWest , ,MATTAWA WA US , +MCCLU,3,766.9000 ,46.37600 ,-119.7240,MesoWest , ,MCCLURE WA US , +MCKIN,3,326.1000 ,46.00670 ,-119.9168,MesoWest , ,McKinley Springs/Klickitat WA US , +MCNAR,3,219.2000 ,45.97200 ,-119.2570,MesoWest , ,MCNARY WA US , +MCWHO,3,408.1000 ,46.31700 ,-119.6170,MesoWest , ,MCWHORTER WA US , +MESAS,3,248.1000 ,46.53180 ,-119.0025,MesoWest , ,Mesa SE/Franklin WA US , +MONTE,3,7.900000 ,46.98290 ,-123.4968,MesoWest , ,Montesano/Grays Harbor WA US , +MOSES,3,330.1000 ,47.00400 ,-119.2380,MesoWest , ,MOSES LAKE WA US , +MOXEE,3,316.1000 ,46.56000 ,-120.3990,MesoWest , ,MOXEE WA US , +EMOXE,3,399.9000 ,46.55010 ,-120.3021,MesoWest , ,Moxee East/Yakima WA US , +NCASH,3,266.1000 ,47.51030 ,-120.4314,MesoWest , ,N Cashmere/Chelan WA US , +NACHE,3,417.9000 ,46.72100 ,-120.6780,MesoWest , ,NACHES WA US , +NACHV,3,536.1000 ,46.69690 ,-120.6236,MesoWest , ,Naches Valley View/Yakima WA US , +NEWPO,3,388.0000 ,48.43540 ,-119.5277,MesoWest , ,New Pogue Flat/Okanogan WA US , +NOOKS,3,25.00000 ,48.96680 ,-122.3076,MesoWest , ,Nooksack/Whatcom WA US , +NPASC,3,259.1000 ,46.38170 ,-119.2439,MesoWest , ,North Pasco/Franklin WA US , +OROVI,3,278.0000 ,48.94100 ,-119.4180,MesoWest , ,OROVILLE WA US , +OUTLO,3,395.9000 ,46.42000 ,-120.1300,MesoWest , ,OUTLOOK WA US , +OUTLC,3,338.9000 ,46.41350 ,-120.1158,MesoWest , ,Outlook-Chapelle/Yakima WA US , +PARKE,3,267.0000 ,46.51700 ,-120.4790,MesoWest , ,PARKER WA US , +PATER,3,109.1000 ,45.93900 ,-119.4880,MesoWest , ,PATERSON WA US , +PATRW,3,167.9000 ,45.93700 ,-119.6626,MesoWest , ,Paterson West/Benton WA US , +PAWSB,3,239.9000 ,48.05960 ,-119.8711,MesoWest , ,PAWS Brewster/Douglas WA US , +PKMCC,3,250.9000 ,46.36140 ,-118.7964,MesoWest , ,PK_McClenny/Franklin WA US , +POGUE,3,370.9000 ,48.42400 ,-119.5540,MesoWest , ,POGUE FLAT WA US , +POMON,3,415.1000 ,46.69000 ,-120.4720,MesoWest , ,POMONA WA US , +PORTO,3,192.0000 ,46.28320 ,-120.0094,MesoWest , ,Port Of Sunnyside WA US , +PULLM,3,732.1000 ,46.69640 ,-117.1482,MesoWest , ,Pullman/Whitman WA US , +QUINC,3,435.0000 ,47.22500 ,-119.9570,MesoWest , ,QUINCY WA US , +RADAR,3,328.9000 ,46.71870 ,-119.2382,MesoWest , ,Radar Hill/Grant WA US , +RICHL,3,114.0000 ,46.26180 ,-119.2626,MesoWest , ,Richland/Benton WA US , +RINGO,3,267.0000 ,46.48400 ,-119.1774,MesoWest , ,Ringold/Franklin WA US , +RITZV,3,574.9000 ,47.14140 ,-118.4727,MesoWest , ,Ritzville/Adams WA US , +ROOSE,3,121.9000 ,45.73530 ,-120.2439,MesoWest , ,Roosevelt/Klickitat WA US , +ROYLC,3,328.9000 ,46.91250 ,-119.6237,MesoWest , ,Royal City WA US , +ROYLS,3,348.1000 ,46.91540 ,-119.5106,MesoWest , ,Royal Slope East/Grant WA US , +ROZAA,3,342.9000 ,46.29170 ,-119.7327,MesoWest , ,Roza WA US , +SAKUM,3,9.100000 ,48.49730 ,-122.3785,MesoWest , ,Sakuma/Skagit WA US , +SMITH,3,157.0000 ,46.27610 ,-118.9887,MesoWest , ,Smith Canyon East/Franklin WA US , +SNOHO,3,0.000000 ,47.90270 ,-122.1147,MesoWest , ,Snohomish/Snohomish WA US , +STANW,3,0.900000 ,48.23120 ,-122.3725,MesoWest , ,Stanwood/Snohomish WA US , +STAT2,3,153.0000 ,45.96600 ,-119.4570,MesoWest , ,STATION 2 WA US , +STAT4,3,351.1000 ,46.04900 ,-119.4130,MesoWest , ,STATION 4 WA US , +SUNNY,3,267.0000 ,46.39700 ,-119.9960,MesoWest , ,SUNNYSIDE WA US , +SWITZ,3,182.0000 ,45.99000 ,-119.4790,MesoWest , ,SWITZLER WA US , +TENMI,3,21.90000 ,48.86440 ,-122.4730,MesoWest , ,Ten Mile/Whatcom WA US , +TONAS,3,263.0000 ,48.69100 ,-119.4540,MesoWest , ,TONASKET WA US , +TOUCH,3,150.0000 ,46.01900 ,-118.6780,MesoWest , ,TOUCHET WA US , +TRIPL,3,453.8000 ,46.21350 ,-119.5007,MesoWest , ,Triple-S/Benton WA US , +WAHLU,3,360.9000 ,46.76630 ,-119.8200,MesoWest , ,Wahluke Slope/Grant WA US , +WALLA,3,360.9000 ,46.08100 ,-118.2760,MesoWest , ,WALLA WALLA WA US , +WAPAT,3,259.1000 ,46.43000 ,-120.5000,MesoWest , ,WAPATO WA US , +WARDE,3,381.9000 ,46.93370 ,-119.1192,MesoWest , ,Warden Golf/Grant WA US , +WELLA,3,281.9000 ,46.21700 ,-118.7330,MesoWest , ,WELLAND WA US , +WENAT,3,727.9000 ,47.37560 ,-120.4431,MesoWest , ,Wenatchee Heights/Chelan WA US , +WEELE,3,430.1000 ,47.14590 ,-119.0661,MesoWest , ,Wheeler/Grant WA US , +WEELH,3,252.1000 ,46.02540 ,-119.5276,MesoWest , ,Wheelhouse WA US , +WHIDB,3,24.10000 ,48.19940 ,-122.6876,MesoWest , ,Whidbey Island/Island WA US , +WHITC,3,88.10000 ,45.86050 ,-119.7644,MesoWest , ,Whitcomb Island/Benton WA US , +WSUHA,3,252.1000 ,46.25060 ,-119.7391,MesoWest , ,WSU Hamilton/Benton WA US , +WSUHQ,3,256.9000 ,46.25700 ,-119.7400,MesoWest , ,WSU HQ WA US , +WSULO,3,-2.100000,46.36880 ,-124.0327,MesoWest , ,WSU Long Beach/Pacific WA US , +WSUMT,3,3.000000 ,48.43300 ,-122.3830,MesoWest , ,WSU MT VERNON WA US , +WSUOT,3,352.0000 ,46.79300 ,-119.0410,MesoWest , ,WSU OTHELLO WA US , +WSUPU,3,61.00000 ,47.18800 ,-122.3270,MesoWest , ,WSU PUYALLUP WA US , +WSUTC,3,96.90000 ,46.32900 ,-119.2670,MesoWest , ,WSU TC WA US , +WSUTF,3,241.1000 ,47.43950 ,-120.3492,MesoWest , ,WSU TFREC/Chelan WA US , +WSUVA,3,71.00000 ,45.67770 ,-122.6513,MesoWest , ,WSU Vancouver RE/Clark WA US , +BHALU,3,125.0000 ,49.28720 ,-122.4844,MesoWest , ,Alouette Lake forebay BC CN , +BHALH,3,0.000000 ,49.23920 ,-122.5783,MesoWest , ,Alouette R. nr Haney BC CN , +BHARD,3,430.1000 ,49.33830 ,-117.7706,MesoWest , ,Arrow Dam BC CN , +BHFQU,3,445.0000 ,49.87220 ,-118.0800,MesoWest , ,Arrow Res. @ Fauquier BC CN , +BHNAK,3,445.0000 ,50.23670 ,-117.7967,MesoWest , ,Arrow Res. @ Nakusp BC CN , +BHASM,3,0.000000 ,49.36940 ,-124.9828,MesoWest , ,Ash River below Moran Ck BC CN , +BHBAR,3,1620.000 ,50.06670 ,-118.3528,MesoWest , ,Barnes Ck BC CN , +BHBCK,3,419.1000 ,48.50330 ,-123.9139,MesoWest , ,Bear Ck Res. BC CN , +BHBVR,3,780.0000 ,51.50970 ,-117.4617,MesoWest , ,Beaver R. nr the Mouth BC CN , +BHBLN,3,1919.900 ,50.79890 ,-122.7456,MesoWest , ,Bralorne Upper BC CN , +BHBMN,3,1460.000 ,49.86810 ,-119.9889,MesoWest , ,Brenda Mines BC CN , +BHDOW,3,750.1000 ,50.82140 ,-123.2017,MesoWest , ,Bridge R. ab Downton Lk BC CN , +BHBRI,3,1350.000 ,50.85610 ,-123.4503,MesoWest , ,Bridge R. blw Glacier BC CN , +BHBRN,3,89.90000 ,49.69250 ,-125.0853,MesoWest , ,Browns R. nr Courtenay BC CN , +BHBUL,3,800.1000 ,49.49030 ,-115.3639,MesoWest , ,Bull R. @ Wardner BC CN , +BHCAY,3,0.000000 ,50.66920 ,-121.9639,MesoWest , ,Cayoosh Ck nr Lillooet BC CN , +BHCHK,3,640.1000 ,50.07970 ,-123.0339,MesoWest , ,Cheakamus R. ab Millar Ck BC CN , +BHCHB,3,0.000000 ,49.81690 ,-123.1483,MesoWest , ,Cheakamus R. nr Brackendale BC CN , +BHCHW,3,1480.100 ,56.64310 ,-122.7861,MesoWest , ,Chowade Upper BC CN , +BHCLO,3,10.10000 ,49.70830 ,-123.5222,MesoWest , ,Clowhom Falls BC CN , +BHCLW,3,125.0000 ,49.78780 ,-123.4203,MesoWest , ,Clowhom R. nr Clowhom Lake BC CN , +BHBIR,3,410.0000 ,49.17780 ,-117.7164,MesoWest , ,Columbia R. @ Birchbank BC CN , +BHDON,3,769.9000 ,51.48000 ,-117.1700,MesoWest , ,Columbia R. @ Donald BC CN , +BHCNN,3,424.9000 ,49.33060 ,-117.6625,MesoWest , ,Columbia R. blw Norns Ck BC CN , +BHCMX,3,135.0000 ,49.64310 ,-125.0944,MesoWest , ,Comox Dam forebay BC CN , +BHCOX,3,139.9000 ,49.64000 ,-125.0800,MesoWest , ,Comox Lake @ Courtenay BC CN , +BHCOQ,3,160.0000 ,49.35000 ,-122.7700,MesoWest , ,Coquitlam Lake forebay BC CN , +BHCPQ,3,0.000000 ,49.26560 ,-122.7808,MesoWest , ,Coquitlam R. @ Pt. Coquitlam BC CN , +BHCQM,3,289.9000 ,49.48000 ,-122.7900,MesoWest , ,Coquitlam R. ab Lake BC CN , +BHCSC,3,1264.900 ,50.72140 ,-118.1006,MesoWest , ,Coursier Lake - climate BC CN , +BHCSR,3,1285.000 ,50.71000 ,-118.1100,MesoWest , ,Coursier Lake @ the Dam BC CN , +BHCRU,3,150.0000 ,49.57000 ,-125.2000,MesoWest , ,Cruickshank R. nr the Mouth BC CN , +BHCMS,3,390.1000 ,49.97500 ,-123.1347,MesoWest , ,Daisy Lake Dam BC CN , +BHDRL,3,540.1000 ,50.23220 ,-116.9550,MesoWest , ,Duncan R blw Lardeau River BC CN , +BHDBC,3,590.1000 ,50.63000 ,-117.0400,MesoWest , ,Duncan R. blw BB Ck BC CN , +BHDCN,3,580.0000 ,50.25000 ,-116.9400,MesoWest , ,Duncan Res. @ Duncan Dam BC CN , +BHEAC,3,2030.000 ,50.64170 ,-116.9306,MesoWest , ,East Ck - snowpillow BC CN , +BHELA,3,206.0000 ,50.22360 ,-123.5778,MesoWest , ,Elaho R. nr the Mouth BC CN , +BHELR,3,1000.100 ,49.51000 ,-115.0700,MesoWest , ,Elk R. @ Fernie BC CN , +BHELK,3,270.1000 ,49.85000 ,-125.8000,MesoWest , ,Elk R. ab Campbell Lk BC CN , +BHASH,3,339.9000 ,49.43330 ,-125.1417,MesoWest , ,Elsie Lk forebay BC CN , +BHERC,3,280.1000 ,49.60330 ,-125.2950,MesoWest , ,Eric Ck BC CN , +BHFDL,3,1799.800 ,51.23750 ,-117.7000,MesoWest , ,Fidelty Mtn. BC CN , +BHFLK,3,2090.000 ,51.05560 ,-116.1389,MesoWest , ,Floe Lk BC CN , +BHGRP,3,1210.100 ,51.26970 ,-117.5086,MesoWest , ,Glacier nr Roger's Pass BC CN , +BHGOC,3,794.0000 ,49.44720 ,-122.4750,MesoWest , ,Gold Ck BC CN , +BHGLD,3,10.10000 ,49.70580 ,-126.1061,MesoWest , ,Gold R. nr Ucona R. BC CN , +BHGOL,3,599.8000 ,51.66830 ,-118.5969,MesoWest , ,Goldstream R. blw Old Camp Ck BC CN , +BHGRN,3,1780.000 ,50.78800 ,-122.9280,MesoWest , ,Green Mtn. BC CN , +BHHFF,3,480.1000 ,56.25000 ,-121.6200,MesoWest , ,Halfway R. @ Farrell Ck BC CN , +BHCST,3,328.9000 ,49.84110 ,-125.9050,MesoWest , ,Heber Div. @ Crest Lake BC CN , +BHHBD,3,360.9000 ,49.85440 ,-125.9522,MesoWest , ,Heber R. Diversion BC CN , +BHHEB,3,214.9000 ,49.81530 ,-125.9864,MesoWest , ,Heber R. nr Gold R. BC CN , +BHHUR,3,990.0000 ,50.73000 ,-122.9300,MesoWest , ,Hurley R. ab Lone Goat Ck BC CN , +BHILL,3,499.9000 ,51.01000 ,-118.0800,MesoWest , ,Illecilliwaet R. @ Greeley BC CN , +BHING,3,700.1000 ,56.72000 ,-125.1100,MesoWest , ,Ingenika R. ab Swannell R. BC CN , +BHJHT,3,14.90000 ,50.04330 ,-125.3086,MesoWest , ,John Hart sub-station BC CN , +BHJCL,3,38.10000 ,49.31250 ,-121.6267,MesoWest , ,Jones Creek below Laidlaw Bridge BC CN , +BHGRT,3,769.9000 ,51.88000 ,-117.8900,MesoWest , ,Kinbasket Lake blw Garrett BC CN , +BHFST,3,769.9000 ,49.61000 ,-115.6300,MesoWest , ,Kootenay R. @ Fort Steele BC CN , +BHLJU,3,1829.100 ,50.86000 ,-123.1839,MesoWest , ,LaJoie Upper BC CN , +BHMIS,3,1850.100 ,50.75330 ,-122.2361,MesoWest , ,Mission Ridge BC CN , +BHMOL,3,1934.900 ,52.21940 ,-118.2250,MesoWest , ,Molson Ck BC CN , +BHMOR,3,1859.900 ,49.44720 ,-114.9750,MesoWest , ,Morrissey Ridge BC CN , +BHMNC,3,1549.900 ,52.18280 ,-119.3214,MesoWest , ,Mount Cook BC CN , +BHPDY,3,1399.900 ,53.16670 ,-126.8667,MesoWest , ,Mount Pondosy BC CN , +BHMTW,3,1489.900 ,53.73330 ,-126.4167,MesoWest , ,Mount Wells BC CN , +BHMTR,3,1830.000 ,51.03610 ,-118.1444,MesoWest , ,Mt. Revelstoke BC CN , +BHSEY,3,910.1000 ,49.41670 ,-122.9167,MesoWest , ,Mt. Seymour BC CN , +BHNAT,3,725.1000 ,55.43000 ,-123.6100,MesoWest , ,Nation R. nr the Mouth BC CN , +BHNRS,3,860.1000 ,53.76890 ,-125.9708,MesoWest , ,Nechako @ Skins Lake BC CN , +BHNTY,3,1969.000 ,51.13390 ,-122.7575,MesoWest , ,North Tyaughton Ck BC CN , +BHQBY,3,545.0000 ,49.65440 ,-116.9297,MesoWest , ,Queen's Bay - elevation BC CN , +BHQIN,3,280.1000 ,49.93000 ,-125.5000,MesoWest , ,Quinsam R. @ Argonaut Brg BC CN , +BHQSL,3,149.0000 ,49.92970 ,-125.3378,MesoWest , ,Quinsam R. blw Lwr QSM Lk BC CN , +BHQSD,3,296.9000 ,49.94330 ,-125.5081,MesoWest , ,Quinsam R. Diversion BC CN , +BHQSM,3,14.90000 ,50.02000 ,-125.2900,MesoWest , ,Quinsam R. nr Campbell R. BC CN , +BHRFC,3,2105.900 ,49.69000 ,-117.0864,MesoWest , ,Redfish Creek BC CN , +BHSNS,3,0.000000 ,49.06860 ,-117.2769,MesoWest , ,Salmo River nr Salmo BC CN , +BHSMN,3,210.0000 ,50.09000 ,-125.6600,MesoWest , ,Salmon Div. ab Intake BC CN , +BHMKY,3,110.0000 ,50.19890 ,-125.7458,MesoWest , ,Salmon R. ab Memekay R. BC CN , +BHSAM,3,214.9000 ,50.09170 ,-125.6722,MesoWest , ,Salmon R. ab the Diversion BC CN , +BHSON,3,289.9000 ,50.72780 ,-122.2417,MesoWest , ,Shalalth BC CN , +BHLUM,3,0.000000 ,50.30330 ,-118.8167,MesoWest , ,Shuswap R @ Lumby BC CN , +BHSUL,3,0.000000 ,50.34500 ,-118.5467,MesoWest , ,Shuswap R@ Outlet of Sugar LK BC CN , +BHSLC,3,477.0000 ,49.46060 ,-117.5644,MesoWest , ,Slocan R. nr Crescent Vly BC CN , +BHSQR,3,14.90000 ,49.79440 ,-123.2000,MesoWest , ,Squamish R. nr Brackendale BC CN , +BHSLK,3,1799.800 ,50.43470 ,-117.7000,MesoWest , ,St. Leon Ck BC CN , +BHSTA,3,330.1000 ,49.55000 ,-122.3200,MesoWest , ,Stave R. ab Stave Lk BC CN , +BHSTV,3,929.9000 ,49.62500 ,-122.4111,MesoWest , ,Stave R. Upper BC CN , +BHSCA,3,249.0000 ,49.97690 ,-125.5847,MesoWest , ,Strathcona Dam BC CN , +BHSGL,3,675.1000 ,50.35000 ,-118.5300,MesoWest , ,Sugar Lake Res. @ Outlet BC CN , +BHTSO,3,14.90000 ,49.70720 ,-125.0114,MesoWest , ,Tsolum R. @ Courtenay BC CN , +BHCMU,3,880.0000 ,50.12220 ,-123.1333,MesoWest , ,Upper Cheakamus BC CN , +BHWAH,3,641.0000 ,49.23190 ,-121.6186,MesoWest , ,Wahleach (Jones) Res. BC CN , +BHWLA,3,1480.100 ,49.23330 ,-121.5667,MesoWest , ,Wahleach Lk BC CN , +BHWKS,3,0.000000 ,49.89860 ,-125.5333,MesoWest , ,Wokas Lk @ Control BC CN , +BHWOL,3,1489.900 ,49.68060 ,-125.7417,MesoWest , ,Wolf R. Upper BC CN , +RBUM ,3,1036.300 ,46.86860 ,-121.2989,MesoWest ,YAKIMA ,Bumping Reservoir WA US YAKIMA , +RCSPW,3,1822.700 ,46.71390 ,-121.1506,MesoWest ,YAKIMA ,Cash Prairie WA US YAKIMA , +RCLE ,3,643.1000 ,47.24560 ,-121.0733,MesoWest ,YAKIMA ,Cle Elum Reservoir WA US YAKIMA , +RKAC ,3,679.7000 ,47.26470 ,-121.2044,MesoWest ,YAKIMA ,Kachess Reservoir WA US YAKIMA , +RKEE ,3,746.8000 ,47.32220 ,-121.3389,MesoWest ,YAKIMA ,Keechelus Reservoir WA US YAKIMA , +RQSPW,3,1828.800 ,47.07000 ,-121.0800,MesoWest ,YAKIMA ,Quartz Mtn WA US YAKIMA , +RRIM ,3,877.8000 ,46.65280 ,-121.1250,MesoWest ,YAKIMA ,Rimrock Reservoir WA US YAKIMA , +CFLAT,3,0.000000 ,48.38440 ,-124.7147,MesoWest ,USCG PUGET ,Cape Flattery WA US USCG PUGET , +CMUKI,3,0.000000 ,47.94840 ,-122.3064,MesoWest ,USCG PUGET ,Mukilteo WA US USCG PUGET , +CSLIP,3,0.000000 ,48.26080 ,-124.2404,MesoWest ,USCG PUGET ,Pearson Creek (Slip Point) WA US USCG PUGET , +CPR36,3,0.000000 ,47.59000 ,-122.3379,MesoWest ,USCG PUGET ,Pier 36 WA US USCG PUGET , +CPNOP,3,0.000000 ,47.91170 ,-122.5283,MesoWest ,USCG PUGET ,Point No Point WA US USCG PUGET , +CROBI,3,0.000000 ,47.37120 ,-122.3749,MesoWest ,USCG PUGET ,Point Robinson WA US USCG PUGET , +CWILS,3,0.000000 ,48.14330 ,-122.7551,MesoWest ,USCG PUGET ,Point Wilson WA US USCG PUGET , +CPTAN,3,0.000000 ,48.14000 ,-123.4120,MesoWest ,USCG PUGET ,Port Angeles WA US USCG PUGET , +CRUST,3,0.000000 ,47.30240 ,-122.5106,MesoWest ,USCG PUGET ,Ruston WA US USCG PUGET , +CSHAN,3,0.000000 ,48.50880 ,-122.6835,MesoWest ,USCG PUGET ,Shannon Point near Anacortes WA US USCG PUGET , +CLUMM,3,0.000000 ,48.72220 ,-122.7159,MesoWest ,USCG PUGET ,Village Point on Lummi Island WA US USCG PUGET , +CWEST,3,0.000000 ,47.66210 ,-122.4338,MesoWest ,USCG PUGET ,West Point WA US USCG PUGET , +CWHID,3,0.000000 ,48.31460 ,-122.6999,MesoWest ,USCG PUGET ,Whidbey Island WA US USCG PUGET , +AZT15,3,1149.100 ,32.31735 ,-109.4845,MesoWest ,AZDOT ,I-10 @ Bowie AZ US AZDOT , +AZT16,3,1101.900 ,32.26340 ,-109.2282,MesoWest ,AZDOT ,I-10 @ San Simon AZ US AZDOT , +AZT03,3,1898.900 ,35.21985 ,-112.3379,MesoWest ,AZDOT ,I-40 @ Ash Fork Hill AZ US AZDOT , +AZT02,3,1761.700 ,35.25860 ,-112.7138,MesoWest ,AZDOT ,I-40 @ Crookton AZ US AZDOT , +AZT01,3,1536.200 ,35.19062 ,-113.3707,MesoWest ,AZDOT ,I-40 @ Fort Rock AZ US AZDOT , +AZT11,3,1505.700 ,34.96858 ,-110.4337,MesoWest ,AZDOT ,I-40 @ Jackrabbit AZ US AZDOT , +AZT06,3,1479.800 ,35.01235 ,-110.6555,MesoWest ,AZDOT ,I-40 @ Little Colorado AZ US AZDOT , +AZT07,3,1886.700 ,35.35408 ,-109.0553,MesoWest ,AZDOT ,I-40 @ Lupton AZ US AZDOT , +AZT13,3,1751.100 ,35.06370 ,-109.7756,MesoWest ,AZDOT ,I-40 @ Painted Desert NP HQ AZ US AZDOT , +AZT04,3,2087.900 ,35.22290 ,-112.2542,MesoWest ,AZDOT ,I-40 @ Pine Springs AZ US AZDOT , +AZT05,3,2222.000 ,35.19525 ,-111.7390,MesoWest ,AZDOT ,I-40 @ Roirdan Overpass AZ US AZDOT , +AZT09,3,1661.200 ,35.11770 ,-111.0991,MesoWest ,AZDOT ,I-40 @ Two Guns AZ US AZDOT , +AZT14,3,2353.100 ,35.67922 ,-109.2056,MesoWest ,AZDOT ,SR-264 @ Summit Campground AZ US AZDOT , +AZT10,3,1938.500 ,34.46487 ,-110.4762,MesoWest ,AZDOT ,SR-277 @ SR-377 AZ US AZDOT , +AZT12,3,1658.100 ,34.71915 ,-110.1139,MesoWest ,AZDOT ,SR-77 - 14 Mile Hill AZ US AZDOT , +AZT17,3,2090.900 ,34.55420 ,-111.3098,MesoWest ,AZDOT ,SR-87 @ Clints Well AZ US AZDOT , +AZT08,3,640.1000 ,34.57978 ,-113.4926,MesoWest ,AZDOT ,US-93 @ Kaiser Bridge AZ US AZDOT , +MIALB,3,289.0000 ,42.26190 ,-84.77410,MesoWest ,MAWN ,Albion MI US MAWN , +MIARL,3,402.9000 ,44.39660 ,-85.29350,MesoWest ,MAWN ,Arlene MI US MAWN , +MIBBC,3,224.9000 ,42.12670 ,-86.26770,MesoWest ,MAWN ,Bainbridge MI US MAWN , +MIBAT,3,0.000000 ,42.82690 ,-84.36500,MesoWest ,MAWN ,Bath MI US MAWN , +MIBLK,3,242.0000 ,44.37190 ,-86.16270,MesoWest ,MAWN ,Bearlake MI US MAWN , +MIBEL,3,256.6000 ,43.11250 ,-85.31220,MesoWest ,MAWN ,Belding MI US MAWN , +MIBNZ,3,249.9000 ,44.55920 ,-86.12380,MesoWest ,MAWN ,Benzonia MI US MAWN , +MICER,3,288.6000 ,42.22000 ,-85.15260,MesoWest ,MAWN ,Ceresco MI US MAWN , +MICTH,3,270.1000 ,46.34050 ,-86.92730,MesoWest ,MAWN ,Chatham MI US MAWN , +MICLR,3,272.8000 ,42.87330 ,-85.26040,MesoWest ,MAWN ,Clarksville MI US MAWN , +MICMC,3,309.4000 ,42.60410 ,-83.60410,MesoWest ,MAWN ,Commercetwp MI US MAWN , +MICNT,3,253.9000 ,41.82240 ,-85.66110,MesoWest ,MAWN ,Constantine MI US MAWN , +MIELD,3,0.000000 ,45.03010 ,-85.67430,MesoWest ,MAWN ,Eastleland MI US MAWN , +MIEPR,3,0.000000 ,45.08000 ,-85.34000,MesoWest ,MAWN ,Eastport MI US MAWN , +MIELK,3,198.1000 ,44.84480 ,-85.40620,MesoWest ,MAWN ,Elkrapids MI US MAWN , +MIEMT,3,239.9000 ,42.99140 ,-82.75980,MesoWest ,MAWN ,Emmett MI US MAWN , +MIENT,3,289.9000 ,43.35260 ,-85.17610,MesoWest ,MAWN ,Entrican MI US MAWN , +MIESC,3,221.3000 ,45.85510 ,-87.18440,MesoWest ,MAWN ,Escanaba MI US MAWN , +MIFGV,3,0.000000 ,43.52760 ,-83.48640,MesoWest ,MAWN ,Fairgrove MI US MAWN , +MIFEV,3,214.3000 ,42.59510 ,-86.15610,MesoWest ,MAWN ,Fennville MI US MAWN , +MIFRL,3,182.0000 ,43.55260 ,-84.02040,MesoWest ,MAWN ,Freeland MI US MAWN , +MIFRM,3,232.9000 ,43.42250 ,-85.95510,MesoWest ,MAWN ,Fremont MI US MAWN , +MIGRJ,3,0.000000 ,42.40200 ,-86.07310,MesoWest ,MAWN ,Grandjunction MI US MAWN , +MIHRT,3,233.5000 ,43.73660 ,-86.35940,MesoWest ,MAWN ,Hart MI US MAWN , +MIHFD,3,202.1000 ,42.22980 ,-86.15590,MesoWest ,MAWN ,Hartford MI US MAWN , +MIHAW,3,252.4000 ,45.29940 ,-83.85280,MesoWest ,MAWN ,Hawks MI US MAWN , +MIHDN,3,269.7000 ,41.87460 ,-84.23480,MesoWest ,MAWN ,Hudson MI US MAWN , +MIHVL,3,0.000000 ,42.85940 ,-85.88950,MesoWest ,MAWN ,Hudsonville MI US MAWN , +MIITH,3,0.000000 ,43.31540 ,-84.48840,MesoWest ,MAWN ,Ithaca MI US MAWN , +MIKWD,3,0.000000 ,44.94860 ,-85.35570,MesoWest ,MAWN ,Kewadin MI US MAWN , +MILPR,3,251.8000 ,43.07610 ,-83.30790,MesoWest ,MAWN ,Lapeer MI US MAWN , +MILAW,3,250.9000 ,42.16060 ,-85.83210,MesoWest ,MAWN ,Lawton MI US MAWN , +MILIN,3,188.1000 ,43.71990 ,-84.02750,MesoWest ,MAWN ,Linwood MI US MAWN , +MILDT,3,199.6000 ,43.90430 ,-86.37980,MesoWest ,MAWN ,Ludington MI US MAWN , +MIMEN,3,256.0000 ,41.98330 ,-85.43330,MesoWest ,MAWN ,Mendon MI US MAWN , +MIMSU,3,264.0000 ,42.67340 ,-84.48700,MesoWest ,MAWN ,Msuhort MI US MAWN , +MIHTC,3,256.6000 ,42.71100 ,-84.47600,MesoWest ,MAWN ,Msuhtrc MI US MAWN , +MIKBS,3,285.6000 ,42.40810 ,-85.37360,MesoWest ,MAWN ,Msukbs MI US MAWN , +MIMGR,3,171.9000 ,43.56110 ,-83.75710,MesoWest ,MAWN ,Munger MI US MAWN , +MINTH,3,0.000000 ,45.13560 ,-85.65080,MesoWest ,MAWN ,Northport MI US MAWN , +MINWM,3,247.2000 ,44.88310 ,-85.67770,MesoWest ,MAWN ,Nwmhrs MI US MAWN , +MIOLD,3,221.0000 ,44.93190 ,-85.50370,MesoWest ,MAWN ,Oldmission MI US MAWN , +MIPTR,3,211.5000 ,41.93010 ,-83.70110,MesoWest ,MAWN ,Petersburg MI US MAWN , +MIPIG,3,187.5000 ,43.89920 ,-83.26670,MesoWest ,MAWN ,Pigeon MI US MAWN , +MISGA,3,180.1000 ,43.37870 ,-84.11280,MesoWest ,MAWN ,Saginaw MI US MAWN , +MISDK,3,237.1000 ,43.45560 ,-82.83750,MesoWest ,MAWN ,Sandusky MI US MAWN , +MISCD,3,164.9000 ,42.02420 ,-86.43030,MesoWest ,MAWN ,Scottdale MI US MAWN , +MISHV,3,192.0000 ,42.35790 ,-86.28940,MesoWest ,MAWN ,Southhaven MI US MAWN , +MISPO,3,267.0000 ,43.11670 ,-85.75600,MesoWest ,MAWN ,Sparta MI US MAWN , +MISTV,3,0.000000 ,45.40820 ,-87.60960,MesoWest ,MAWN ,Stephenson MI US MAWN , +MISWM,3,220.1000 ,42.08410 ,-86.35700,MesoWest ,MAWN ,Swmrec MI US MAWN , +MIWEO,3,194.5000 ,42.97150 ,-86.07650,MesoWest ,MAWN ,Westolive MI US MAWN , +SAFO2,3,272.8000 ,36.11806 ,-97.09139,MesoWest ,CRN ,AGRONOMY FARM NEAR STILLWATER 2W OK US CRN , +LIZM1,3,91.40000 ,46.96000 ,-67.88000,MesoWest ,CRN ,AROOSTOOK NWR NEAR LIMESTONE ME US CRN , +ADRA3,3,1480.700 ,31.59056 ,-110.5144,MesoWest ,CRN ,AUDUBON RANCH NEAR ELGIN 5S AZ US CRN , +BNCN2,3,1771.500 ,39.75000 ,-117.7500,MesoWest ,CRN ,BERNICE CANYON NEAR DIXIE VALLEY NV US CRN , +BNDI2,3,213.1000 ,40.05278 ,-88.37278,MesoWest ,CRN ,BONDVILLE IL US CRN , +BRXA1,3,51.80000 ,31.14500 ,-87.05167,MesoWest ,CRN ,BREWTON 3NNE HCN AL US CRN , +CVPW2,3,1060.700 ,39.01306 ,-79.47417,MesoWest ,CRN ,CANAAN VALLEY STATE PARK NEAR RE WV US CRN , +CLXA1,3,178.0000 ,32.85167 ,-86.61139,MesoWest ,CRN ,CLANTON HCN AL US CRN , +CRMI1,3,1797.400 ,43.46500 ,-113.5581,MesoWest ,CRN ,CRATERS OF THE MOON NEAR ARCO 18 ID US CRN , +TORU1,3,1891.000 ,38.30280 ,-111.2935,MesoWest ,CRN ,CRN CAPITOL REEF NP GOOSE NECKS UT US CRN , +BHAU1,3,1509.100 ,41.61630 ,-112.5437,MesoWest ,CRN ,CRN GOLDEN SPIKE NHS UT US CRN , +ABDF1,3,45.70000 ,27.15250 ,-81.36889,MesoWest ,CRN ,CRN SITE AT ARCHBOLD NEAR SEBRIN FL US CRN , +BSPM8,3,1820.000 ,45.15778 ,-113.0058,MesoWest ,CRN ,CRN SITE AT BANNACK STATE PARK N MT US CRN , +SKYN7,3,655.6000 ,35.49500 ,-82.61500,MesoWest ,CRN ,CRN SITE AT BIERBAUM ARB NEAR SK NC US CRN , +CCHV2,3,8.800000 ,37.29083 ,-75.92722,MesoWest ,CRN ,CRN SITE AT CAPE CHARLES VA US CRN , +BLVS1,3,96.60000 ,33.35500 ,-81.32778,MesoWest ,CRN ,CRN SITE AT CLEMSON UNIVERSITY E SC US CRN , +CING1,3,7.600000 ,30.80778 ,-81.45972,MesoWest ,CRN ,CRN SITE AT CUMBERLAND ISLAND NE GA US CRN , +NWNG1,3,47.50000 ,31.19222 ,-84.44639,MesoWest ,CRN ,CRN SITE AT DUBIGNON NEAR NEWTON GA US CRN , +DKCN7,3,171.3000 ,35.97056 ,-79.09306,MesoWest ,CRN ,CRN SITE AT DUKE FOREST NEAR DUR NC US CRN , +FPCI3,3,231.6000 ,38.88833 ,-86.57083,MesoWest ,CRN ,CRN SITE AT FELDUN-PURDUE AGRICU IN US CRN , +GOMM8,3,805.6000 ,48.48194 ,-105.2097,MesoWest ,CRN ,CRN SITE AT GIVE OUT MORGAN NEAR MT US CRN , +IWYG1,3,53.60000 ,31.31278 ,-84.47056,MesoWest ,CRN ,CRN SITE AT ICHAUWAY ECOLOGICAL GA US CRN , +CTKF1,3,0.900000 ,28.61583 ,-80.69278,MesoWest ,CRN ,CRN SITE AT KENNEDY SPACE CENTER FL US CRN , +MAJA1,3,58.80000 ,32.45667 ,-87.24222,MesoWest ,CRN ,CRN SITE AT MERION JUNCTION NEAR AL US CRN , +NSSI4,3,280.7000 ,41.55611 ,-93.28556,MesoWest ,CRN ,CRN SITE AT NATIONAL WILDLIFE RE IA US CRN , +NTEM6,3,114.0000 ,32.33778 ,-89.07056,MesoWest ,CRN ,CRN SITE AT NEWTON 6ENE MS US CRN , +PRSM8,3,635.5000 ,48.30806 ,-105.1019,MesoWest ,CRN ,CRN SITE AT POPLAR RIVER NEAR WO MT US CRN , +SVLN5,3,1477.400 ,34.35611 ,-106.8861,MesoWest ,CRN ,CRN SITE AT SEVILLETA NATIONAL W NM US CRN , +SRES1,3,2.700000 ,33.15333 ,-79.36333,MesoWest ,CRN ,CRN SITE AT SOUTH CAROLINA DNR S SC US CRN , +SNPA2,3,6.100000 ,57.15750 ,-170.2119,MesoWest ,CRN ,CRN SITE AT ST PAUL ISLAND AK US CRN , +CADL1,3,10.70000 ,30.09194 ,-91.87306,MesoWest ,CRN ,CRN SITE AT UNIVERSITY OF LOUISI LA US CRN , +VLCN5,3,2656.600 ,35.85833 ,-106.5214,MesoWest ,CRN ,CRN SITE AT VALLES CALDERA NATIO NM US CRN , +FLTN7,3,641.0000 ,35.41861 ,-82.55667,MesoWest ,CRN ,CRN SITE BACKLUND HORT NEAR NEAR NC US CRN , +ABNS2,3,548.6000 ,45.71140 ,-99.12970,MesoWest ,CRN ,CRN SITE NEAR ABERDEEN 35 WNW SD US CRN , +AHCG1,3,225.9000 ,33.78833 ,-83.39333,MesoWest ,CRN ,CRN SITE NEAR ATHENS 12S GA US CRN , +AVOP1,3,121.9000 ,39.85917 ,-75.78611,MesoWest ,CRN ,CRN SITE NEAR AVONDALE 2N PA US CRN , +BKRN2,3,1615.400 ,39.01972 ,-114.2153,MesoWest ,CRN ,CRN SITE NEAR BAKER 5W NV US CRN , +BROA2,3,4.600000 ,71.32139 ,-156.6111,MesoWest ,CRN ,CRN SITE NEAR BARROW 4ENE AK US CRN , +BCRA4,3,138.7000 ,35.82000 ,-91.78111,MesoWest ,CRN ,CRN SITE NEAR BATESVILLE 8WNW AR US CRN , +WRBC2,3,2995.600 ,40.03528 ,-105.5408,MesoWest ,CRN ,CRN SITE NEAR BOULDER 14W CO US CRN , +BCRS2,3,878.7000 ,45.51611 ,-103.3017,MesoWest ,CRN ,CRN SITE NEAR BUFFALO 13 ESE SD US CRN , +CHAV2,3,358.8000 ,37.99750 ,-78.46556,MesoWest ,CRN ,CRN SITE NEAR CHARLOTTESVILLE 2S VA US CRN , +CEFM4,3,266.7000 ,46.33444 ,-86.92000,MesoWest ,CRN ,CRN SITE NEAR CHATHAM 1SE MI US CRN , +CSVT1,3,583.1000 ,36.01389 ,-85.13444,MesoWest ,CRN ,CRN SITE NEAR CROSSVILLE 7 NW TN US CRN , +SMCA1,3,352.0000 ,34.28500 ,-85.96222,MesoWest ,CRN ,CRN SITE NEAR CROSSVILLE NEAR GA AL US CRN , +ERGT2,3,19.50000 ,26.52583 ,-98.06333,MesoWest ,CRN ,CRN SITE NEAR EDINBURG 17NNE TX US CRN , +CFNF1,3,1.200000 ,25.89972 ,-81.31833,MesoWest ,CRN ,CRN SITE NEAR EVERGLADES CITY 5N FL US CRN , +FNEA2,3,347.5000 ,64.97333 ,-147.5100,MesoWest ,CRN ,CRN SITE NEAR FAIRBANKS 11NE AK US CRN , +FRPA1,3,29.00000 ,30.54861 ,-87.87583,MesoWest ,CRN ,CRN SITE NEAR FAIRHOPE 3NE AL US CRN , +GWLO2,3,996.7000 ,36.59944 ,-101.5947,MesoWest ,CRN ,CRN SITE NEAR GOODWELL 2E OK US CRN , +GSTC1,3,24.10000 ,37.23611 ,-120.8825,MesoWest ,CRN ,CRN SITE NEAR GUSTINE 7ESE CA US CRN , +HSNN1,3,1348.700 ,42.42500 ,-103.7431,MesoWest ,CRN ,CRN SITE NEAR HARRISON 20SSE NE US CRN , +ITCN6,3,374.3000 ,42.43361 ,-76.26028,MesoWest ,CRN ,CRN SITE NEAR ITHACA 13E NY US CRN , +RCHW4,3,1761.100 ,42.67528 ,-108.6686,MesoWest ,CRN ,CRN SITE NEAR LANDER 11 SSE WY US CRN , +MRYN2,3,1004.300 ,36.62389 ,-116.0225,MesoWest ,CRN ,CRN SITE NEAR MERCURY 3SSW NV US CRN , +MBKN6,3,118.6000 ,41.79278 ,-73.73694,MesoWest ,CRN ,CRN SITE NEAR MILLBROOK 3W NY US CRN , +MHST2,3,828.8000 ,31.62000 ,-102.8117,MesoWest ,CRN ,CRN SITE NEAR MONAHANS 5ENE TX US CRN , +MWRT2,3,1140.600 ,33.95583 ,-102.7758,MesoWest ,CRN ,CRN SITE NEAR MULESHOE 19S TX US CRN , +NCHW3,3,284.4000 ,44.06028 ,-90.17361,MesoWest ,CRN ,CRN SITE NEAR NECEDAH 5WNW WI US CRN , +NNWC2,3,1642.900 ,40.80667 ,-104.7550,MesoWest ,CRN ,CRN SITE NEAR NUNN 7NNE CO US CRN , +OLDM1,3,61.00000 ,44.92806 ,-68.70000,MesoWest ,CRN ,CRN SITE NEAR OLD TOWN ME US CRN , +PSNT2,3,120.7000 ,31.62000 ,-102.8089,MesoWest ,CRN ,CRN SITE NEAR PALESTINE 6WNW TX US CRN , +PNJT2,3,1065.000 ,29.34833 ,-103.2094,MesoWest ,CRN ,CRN SITE NEAR PANTHER JUNCTION 2 TX US CRN , +PRES2,3,647.4000 ,44.01944 ,-100.3531,MesoWest ,CRN ,CRN SITE NEAR PIERRE 24 S SD US CRN , +QTCW1,3,87.20000 ,47.51389 ,-123.8119,MesoWest ,CRN ,CRN SITE NEAR QUINAULT 4NE WA US CRN , +RLYO3,3,1298.500 ,43.47111 ,-119.6917,MesoWest ,CRN ,CRN SITE NEAR RILEY 10WSW OR US CRN , +SNDM5,3,344.4000 ,46.11306 ,-92.99361,MesoWest ,CRN ,CRN SITE NEAR SANDSTONE 6W MN US CRN , +SBNI2,3,262.4000 ,41.84306 ,-88.85111,MesoWest ,CRN ,CRN SITE NEAR SHABONNA 5NNE IL US CRN , +SIKA2,3,23.80000 ,57.05750 ,-135.3267,MesoWest ,CRN ,CRN SITE NEAR SITKA 1NE AK US CRN , +MRYM8,3,1394.500 ,48.74111 ,-113.4331,MesoWest ,CRN ,CRN SITE NEAR ST MARY 1SSW MT US CRN , +ISWC1,3,24.40000 ,36.60194 ,-117.1450,MesoWest ,CRN ,CRN SITE NEAR STOVEPIPE WELLS 1S CA US CRN , +SDCW4,3,1765.400 ,44.51694 ,-104.4364,MesoWest ,CRN ,CRN SITE NEAR SUNDANCE 8 NNW WY US CRN , +VSLK2,3,271.6000 ,38.09444 ,-84.74639,MesoWest ,CRN ,CRN SITE NEAR VERSAILLES 3NNW KY US CRN , +WHTN1,3,1140.000 ,42.06806 ,-101.4450,MesoWest ,CRN ,CRN SITE NEAR WHITMAN 5ENE NE US CRN , +YVVC1,3,2017.800 ,37.75917 ,-119.8208,MesoWest ,CRN ,CRN SITE NEAR YOSEMITE VILLAGE N CA US CRN , +CUXA1,3,249.9000 ,34.19539 ,-86.79636,MesoWest ,CRN ,Cullman AL US CRN , +DNOC2,3,1828.800 ,40.24472 ,-108.9678,MesoWest ,CRN ,DINOSAUR 2E CO US CRN , +SEFO2,3,274.3000 ,36.13444 ,-97.10806,MesoWest ,CRN ,EFAW FARM NEAR STILLWATER 3WNW OK US CRN , +GVXA1,3,43.00000 ,32.83694 ,-88.13750,MesoWest ,CRN ,GAINESVILLE L&D HCN AL US CRN , +GSGN2,3,1479.200 ,37.27167 ,-114.2931,MesoWest ,CRN ,GARDEN SPRING CLIMATE SITE NEAR NV US CRN , +AGGM5,3,352.3000 ,48.30611 ,-95.87417,MesoWest ,CRN ,GOODRIDGE NEAR HOLT 15E MN US CRN , +GTPW4,3,1974.500 ,43.66139 ,-110.7117,MesoWest ,CRN ,GRAND TETON NP NEAR MOOSE 1 NNE WY US CRN , +GRXA1,3,86.90000 ,32.71694 ,-87.62278,MesoWest ,CRN ,GREENSBORO HCN AL US CRN , +GUXA1,3,192.9000 ,34.33374 ,-86.31564,MesoWest ,CRN ,Guntersville AL US CRN , +HPEC1,3,759.0000 ,36.06750 ,-121.5592,MesoWest ,CRN ,HIGHLANDS PEAK MET STATION NEAR CA US CRN , +KINN3,3,36.60000 ,43.10889 ,-70.94861,MesoWest ,CRN ,KINGMAN FARM AT MADBURY NH US CRN , +LCXA1,3,182.9000 ,34.66021 ,-87.34628,MesoWest ,CRN ,Lawrence County Airport AL US CRN , +MMCW1,3,111.3000 ,48.54056 ,-121.4461,MesoWest ,CRN ,MARBLEMOUNT RANGER STATION WA US CRN , +MLBH1,3,3398.500 ,19.53528 ,-155.5761,MesoWest ,CRN ,MAUNA LOA HI US CRN , +MTSC2,3,2514.600 ,38.54389 ,-107.6928,MesoWest ,CRN ,MONTROSE 11ENE CO US CRN , +MSXA1,3,164.3000 ,34.77111 ,-87.64972,MesoWest ,CRN ,MUSCLE SHOALS HCN AL US CRN , +ONCC1,3,1882.100 ,39.27444 ,-120.3558,MesoWest ,CRN ,ONION CREEK NEAR SERENE LAKES 3S CA US CRN , +ONRL1,3,25.90000 ,32.88306 ,-92.11639,MesoWest ,CRN ,OUACHITA NATIONAL WILDLIFE REFUG LA US CRN , +RENI1,3,1219.200 ,43.20444 ,-116.7506,MesoWest ,CRN ,REYNOLDS ID US CRN , +RUXA1,3,221.0000 ,34.45340 ,-97.71020,MesoWest ,CRN ,Russellville Municipal Airport AL US CRN , +SCXA1,3,188.1000 ,34.69410 ,-85.99800,MesoWest ,CRN ,Scottsboro Municipal Airport AL US CRN , +SLXA1,3,45.10000 ,32.33500 ,-86.97861,MesoWest ,CRN ,SELMA CRAIG FIELD HCN AL US CRN , +SDMA3,3,843.7000 ,32.23944 ,-111.1694,MesoWest ,CRN ,SONORA DESERT MUSEUM NEAR TUCSON AZ US CRN , +TOXA1,3,106.7000 ,31.88139 ,-87.73667,MesoWest ,CRN ,THOMASVILLE 3S HCN AL US CRN , +THON3,3,24.40000 ,43.17167 ,-70.92778,MesoWest ,CRN ,THOMPSON FARM AT DURHAM NH US CRN , +TRXA1,3,143.9000 ,31.79000 ,-86.00028,MesoWest ,CRN ,TROY 1W HCN AL US CRN , +PFKR1,3,37.80000 ,41.47806 ,-71.54167,MesoWest ,CRN ,UNIV OF RI AT PECKHAM FARMS NR K RI US CRN , +PRKR1,3,42.70000 ,41.48583 ,-71.54139,MesoWest ,CRN ,UNIV OF RI ON PLAINS ROAD NR KIN RI US CRN , +VHXA1,3,305.1000 ,34.56527 ,-85.61706,MesoWest ,CRN ,Valley Head AL US CRN , +WEXH1,3,155.4000 ,19.64500 ,-155.0831,MesoWest ,CRN ,WAIAKEA EXPERIMENTAL STATION NEA HI US CRN , +WPOC1,3,182.9000 ,36.08417 ,-121.5728,MesoWest ,CRN ,WHALE POINT MET STATION NEAR LUC CA US CRN , +ODA02,3,68.00000 ,44.94386 ,-123.2596,MesoWest ,ODA ,Baskett Slough Wildlife Refuge OR US ODA , +ODA06,3,107.0000 ,44.39309 ,-122.9847,MesoWest ,ODA ,Brownsville OR US ODA , +ODA10,3,163.1000 ,43.92653 ,-123.0061,MesoWest ,ODA ,Creswell Airport OR US ODA , +ODA07,3,86.00000 ,44.38972 ,-123.0872,MesoWest ,ODA ,Halsey OR US ODA , +ODA08,3,93.90000 ,44.27253 ,-123.1681,MesoWest ,ODA ,Harrisburg OR US ODA , +ODA04,3,105.2000 ,44.53606 ,-122.9230,MesoWest ,ODA ,Lebanon OR US ODA , +ODA03,3,50.00000 ,44.94357 ,-123.0268,MesoWest ,ODA ,Salem OR US ODA , +ODA01,3,110.9000 ,44.99541 ,-122.7909,MesoWest ,ODA ,Silverton (Oregon Garden) OR US ODA , +ODA05,3,74.10000 ,44.47750 ,-123.3040,MesoWest ,ODA ,South Corvallis (Llewellyn Road) OR US ODA , +ODA09,3,127.1000 ,44.04770 ,-123.3521,MesoWest ,ODA ,Veneta OR US ODA , +LDP ,3,1649.900 ,43.73707 ,-116.1221,MesoWest ,DCEW ,Lower Deer Point ID US DCEW , +LW ,3,1150.900 ,43.68853 ,-116.1699,MesoWest ,DCEW ,Lower Weather ID US DCEW , +TL ,3,1610.000 ,43.73019 ,-116.1401,MesoWest ,DCEW ,Treeline ID US DCEW , +ARVDA,3,1640.100 ,39.80033 ,-105.1000,MesoWest ,CDPHE ,Arvada CO US CDPHE , +AURAR,3,1585.900 ,39.74696 ,-105.0036,MesoWest ,CDPHE ,Auraria - Met Station CO US CDPHE , +CAMPD,3,1592.900 ,39.75118 ,-104.9876,MesoWest ,CDPHE ,CAMP Denver CO US CDPHE , +CARRG,3,1620.900 ,39.75176 ,-105.0307,MesoWest ,CDPHE ,Carriage CO US CDPHE , +CHATP,3,1676.100 ,39.53449 ,-105.0704,MesoWest ,CDPHE ,Chatfield Park CO US CDPHE , +ALSUP,3,1565.200 ,39.82601 ,-104.9374,MesoWest ,CDPHE ,Commerce City - Alsup Elem Schoo CO US CDPHE , +DMAS ,3,1594.100 ,39.70401 ,-104.9981,MesoWest ,CDPHE ,Denver Municipal Animal Shelter CO US CDPHE , +RFN ,3,1802.000 ,39.91280 ,-105.1886,MesoWest ,CDPHE ,Rocky Flats - North CO US CDPHE , +RFSE ,3,1717.900 ,39.87639 ,-105.1656,MesoWest ,CDPHE ,Rocky Flats - SE CO US CDPHE , +WELBY,3,1553.900 ,39.83820 ,-104.9498,MesoWest ,CDPHE ,Welby CO US CDPHE , +WELCH,3,1741.900 ,39.63878 ,-105.1395,MesoWest ,CDPHE ,Welch CO US CDPHE , +ANPC1,3,1026.600 ,36.18530 ,-121.6400,MesoWest , ,Anderson Peak CA US , +BCOC1,3,1420.700 ,36.24000 ,-121.6010,MesoWest , ,Black Cone CA US , +SNYC1,3,18.60000 ,36.65280 ,-121.6380,MesoWest , ,Blanco Circle CA US , +BADC1,3,228.0000 ,35.79440 ,-120.7540,MesoWest , ,Camp Roberts CA US , +RALC1,3,1452.700 ,36.29810 ,-121.7140,MesoWest , ,Central CA US , +LOWC1,3,1046.100 ,35.98890 ,-121.4300,MesoWest , ,Chalk Peak CA US , +CHWC1,3,1495.000 ,36.31190 ,-121.5700,MesoWest , ,Chews Ridge CA US , +SJBC1,3,864.7000 ,36.76060 ,-121.4910,MesoWest , ,Fremont Peak CA US , +GGRC1,3,714.1000 ,36.53170 ,-121.2720,MesoWest , ,Gloria Grade CA US , +LPRC1,3,315.8000 ,36.38610 ,-121.6670,MesoWest , ,Los Padres Dam/ Carmel River CA US , +PHAC1,3,826.9000 ,36.66500 ,-121.3650,MesoWest , ,Mcphails Peak CA US , +MNRC1,3,1002.200 ,36.05500 ,-121.5220,MesoWest , ,Mining Ridge CA US , +MTMC1,3,563.0000 ,37.01080 ,-121.7020,MesoWest , ,Mount Madonna CA US , +TORC1,3,712.6000 ,36.54560 ,-121.6310,MesoWest , ,Mount Toro CA US , +MTRC1,3,550.8000 ,36.19530 ,-120.8030,MesoWest , ,Mustang Ridge CA US , +NADC1,3,21.30000 ,36.69310 ,-121.6250,MesoWest , ,Natividad CA US , +CMLC1,3,535.5000 ,36.38810 ,-121.8560,MesoWest , ,Palo Colorado CA US , +PCBC1,3,1008.900 ,36.31610 ,-121.8090,MesoWest , ,Pico Blanco CA US , +PYPC1,3,1594.100 ,36.16920 ,-121.3780,MesoWest , ,Pinyon Peak CA US , +PNRC1,3,807.7000 ,36.39970 ,-121.7230,MesoWest , ,Ponciano CA US , +TPKC1,3,1024.700 ,35.85500 ,-121.3220,MesoWest , ,Three Peaks CA US , +WRRC1,3,848.0000 ,36.41420 ,-121.7910,MesoWest , ,White Rock CA US , +UTE5 ,3,1432.600 ,40.73600 ,-111.8344,MesoWest ,UTES , UT US UTES , +UTE6 ,3,1472.200 ,40.76623 ,-111.8475,MesoWest ,UTES , UT US UTES , +UTE1 ,3,1402.100 ,40.76609 ,-111.8484,MesoWest ,UTES , UT US UTES , +UTE4 ,3,1432.600 ,40.73602 ,-111.8244,MesoWest ,UTES , UT US UTES , +UTE3 ,3,1380.700 ,40.72231 ,-111.8324,MesoWest ,UTES , UT US UTES , +UTE2 ,3,1517.900 ,40.74573 ,-111.8117,MesoWest ,UTES , UT US UTES , +IPX7 ,3,1289.900 ,40.95000 ,-112.0200,MesoWest ,IPEX ,FARMINGTON BAY UT US IPEX , +IPX8 ,3,1300.000 ,41.47000 ,-113.0600,MesoWest ,IPEX ,HOGUP UT US IPEX , +IPX4 ,3,1549.900 ,41.26000 ,-111.7300,MesoWest ,IPEX ,HUNTSVILLE/LEONARD UT US IPEX , +IPX5 ,3,1289.900 ,41.02000 ,-112.8500,MesoWest ,IPEX ,LAKESHORE-WEST UT US IPEX , +IPX6 ,3,1289.900 ,41.18000 ,-112.1600,MesoWest ,IPEX ,OGDEN BAY WILDLIFE UT US IPEX , +IPX3 ,3,1489.900 ,41.26000 ,-111.8800,MesoWest ,IPEX ,OGDEN CANYON UT US IPEX , +IPX9 ,3,1310.000 ,41.44000 ,-112.6700,MesoWest ,IPEX ,ROZEL POINT UT US IPEX , +IPX2 ,3,1289.900 ,40.83000 ,-112.1300,MesoWest ,IPEX ,SOUTHERN CAUSEWAY UT US IPEX , +QRI ,3,1706.900 ,40.75000 ,-111.7100,MesoWest ,TMOS ,Mt. Dell - Parleys Canyon TMOS UT US TMOS , +QRG ,3,1996.100 ,41.21000 ,-111.8500,MesoWest ,TMOS ,Snow Basin TMOS UT US TMOS , +QRJ ,3,1658.100 ,40.48000 ,-111.5000,MesoWest ,TMOS ,Soldier Hollow - Heber TMOS UT US TMOS , +QRH ,3,1959.000 ,40.72000 ,-111.5500,MesoWest ,TMOS ,UOP - Kimball Junction TMOS UT US TMOS , +VPN11,3,1289.000 ,40.70000 ,-111.9100,MesoWest ,PNNL ,CV WATER FACILITY UT US PNNL , +DNAR ,3,1371.600 ,40.44171 ,-111.9211,MesoWest ,PNNL ,DRI NARROWS UT US PNNL , +DTUR ,3,1438.700 ,40.43966 ,-111.9194,MesoWest ,PNNL ,DRI Turbine UT US PNNL , +VPN06,3,1683.100 ,40.57000 ,-111.8100,MesoWest ,PNNL ,GRANITE ELEMENTARY UT US PNNL , +HOB01,3,1288.100 ,40.83630 ,-111.9332,MesoWest ,PNNL ,HOBO 1 PNNL UT US PNNL , +HOB10,3,1420.100 ,40.77880 ,-111.8782,MesoWest ,PNNL ,HOBO 10PNNL UT US PNNL , +HOB11,3,1474.900 ,40.77980 ,-111.8620,MesoWest ,PNNL ,HOBO 11PNNL UT US PNNL , +HOB12,3,1288.100 ,40.74940 ,-111.9436,MesoWest ,PNNL ,HOBO 12PNNL UT US PNNL , +HOB13,3,1288.100 ,40.75180 ,-111.9153,MesoWest ,PNNL ,HOBO 13PNNL UT US PNNL , +HOB14,3,1292.000 ,40.71650 ,-111.9839,MesoWest ,PNNL ,HOBO 14PNNL UT US PNNL , +HOB15,3,1289.000 ,40.73150 ,-111.9257,MesoWest ,PNNL ,HOBO 15PNNL UT US PNNL , +HOB16,3,1366.100 ,40.72970 ,-111.8473,MesoWest ,PNNL ,HOBO 16PNNL UT US PNNL , +HOB17,3,1314.000 ,40.71070 ,-111.8642,MesoWest ,PNNL ,HOBO 17PNNL UT US PNNL , +HOB18,3,1293.000 ,40.71230 ,-111.8899,MesoWest ,PNNL ,HOBO 18PNNL UT US PNNL , +HOB19,3,1435.900 ,40.73530 ,-111.8244,MesoWest ,PNNL ,HOBO 19PNNL UT US PNNL , +HOB02,3,1285.000 ,40.81100 ,-111.9672,MesoWest ,PNNL ,HOBO 2 PNNL UT US PNNL , +HOB20,3,1349.000 ,40.66200 ,-111.9714,MesoWest ,PNNL ,HOBO 20PNNL UT US PNNL , +HOB21,3,1300.000 ,40.67790 ,-111.9342,MesoWest ,PNNL ,HOBO 21PNNL UT US PNNL , +HOB22,3,1314.000 ,40.68320 ,-111.8591,MesoWest ,PNNL ,HOBO 22PNNL UT US PNNL , +HOB23,3,1496.900 ,40.67180 ,-111.8004,MesoWest ,PNNL ,HOBO 23PNNL UT US PNNL , +HOB24,3,1300.000 ,40.65470 ,-111.9234,MesoWest ,PNNL ,HOBO 24PNNL UT US PNNL , +HOB25,3,1338.100 ,40.63260 ,-111.8611,MesoWest ,PNNL ,HOBO 25PNNL UT US PNNL , +HOB26,3,1286.900 ,40.75880 ,-111.9242,MesoWest ,PNNL ,HOBO 26PNNL UT US PNNL , +HOB27,3,1286.900 ,40.75870 ,-111.9186,MesoWest ,PNNL ,HOBO 27PNNL UT US PNNL , +HOB28,3,1286.900 ,40.75940 ,-111.9132,MesoWest ,PNNL ,HOBO 28PNNL UT US PNNL , +HOB29,3,1289.000 ,40.75890 ,-111.9075,MesoWest ,PNNL ,HOBO 29PNNL UT US PNNL , +HOB03,3,1282.900 ,40.80060 ,-111.9384,MesoWest ,PNNL ,HOBO 3 PNNL UT US PNNL , +HOB30,3,1291.100 ,40.75890 ,-111.9016,MesoWest ,PNNL ,HOBO 30PNNL UT US PNNL , +HOB31,3,1296.000 ,40.75890 ,-111.8958,MesoWest ,PNNL ,HOBO 31PNNL UT US PNNL , +HOB32,3,1298.100 ,40.75890 ,-111.8901,MesoWest ,PNNL ,HOBO 32PNNL UT US PNNL , +HOB33,3,1299.100 ,40.75890 ,-111.8842,MesoWest ,PNNL ,HOBO 33PNNL UT US PNNL , +HOB34,3,1303.900 ,40.75890 ,-111.8785,MesoWest ,PNNL ,HOBO 34PNNL UT US PNNL , +HOB35,3,1316.100 ,40.75890 ,-111.8721,MesoWest ,PNNL ,HOBO 35PNNL UT US PNNL , +HOB36,3,1325.000 ,40.75890 ,-111.8671,MesoWest ,PNNL ,HOBO 36PNNL UT US PNNL , +HOB37,3,1342.000 ,40.75890 ,-111.8618,MesoWest ,PNNL ,HOBO 37PNNL UT US PNNL , +HOB38,3,1384.100 ,40.75670 ,-111.8556,MesoWest ,PNNL ,HOBO 38PNNL UT US PNNL , +HOB39,3,1410.900 ,40.75670 ,-111.8491,MesoWest ,PNNL ,HOBO 39PNNL UT US PNNL , +HOB04,3,1285.000 ,40.80350 ,-111.9199,MesoWest ,PNNL ,HOBO 4 PNNL UT US PNNL , +HOB40,3,1425.900 ,40.75670 ,-111.8446,MesoWest ,PNNL ,HOBO 40PNNL UT US PNNL , +HOB41,3,1298.100 ,40.72750 ,-111.8849,MesoWest ,PNNL ,HOBO 41PNNL UT US PNNL , +HOB42,3,1298.100 ,40.73170 ,-111.8845,MesoWest ,PNNL ,HOBO 42PNNL UT US PNNL , +HOB43,3,1293.900 ,40.73650 ,-111.8848,MesoWest ,PNNL ,HOBO 43PNNL UT US PNNL , +HOB44,3,1293.000 ,40.74080 ,-111.8848,MesoWest ,PNNL ,HOBO 44PNNL UT US PNNL , +HOB45,3,1292.000 ,40.74500 ,-111.8847,MesoWest ,PNNL ,HOBO 45PNNL UT US PNNL , +HOB46,3,1293.000 ,40.75120 ,-111.8843,MesoWest ,PNNL ,HOBO 46PNNL UT US PNNL , +HOB47,3,1296.000 ,40.75440 ,-111.8842,MesoWest ,PNNL ,HOBO 47PNNL UT US PNNL , +HOB48,3,1306.100 ,40.76320 ,-111.8842,MesoWest ,PNNL ,HOBO 48PNNL UT US PNNL , +HOB49,3,1325.900 ,40.76730 ,-111.8842,MesoWest ,PNNL ,HOBO 49PNNL UT US PNNL , +HOB05,3,1285.000 ,40.76870 ,-112.1038,MesoWest ,PNNL ,HOBO 5 PNNL UT US PNNL , +HOB50,3,1350.000 ,40.77190 ,-111.8877,MesoWest ,PNNL ,HOBO 50PNNL UT US PNNL , +HOB51,3,1398.100 ,40.77790 ,-111.8845,MesoWest ,PNNL ,HOBO 51PNNL UT US PNNL , +HOB52,3,1474.000 ,40.78500 ,-111.8851,MesoWest ,PNNL ,HOBO 52PNNL UT US PNNL , +HOB53,3,1498.100 ,40.78960 ,-111.8815,MesoWest ,PNNL ,HOBO 53PNNL UT US PNNL , +HOB54,3,1524.000 ,40.78970 ,-111.8882,MesoWest ,PNNL ,HOBO 54PNNL UT US PNNL , +HOB06,3,1285.000 ,40.76260 ,-112.0620,MesoWest ,PNNL ,HOBO 6 PNNL UT US PNNL , +HOB07,3,1285.000 ,40.78180 ,-112.0354,MesoWest ,PNNL ,HOBO 7 PNNL UT US PNNL , +HOB08,3,1286.000 ,40.77080 ,-112.0352,MesoWest ,PNNL ,HOBO 8 PNNL UT US PNNL , +HOB09,3,1299.100 ,40.78650 ,-111.8996,MesoWest ,PNNL ,HOBO 9 PNNL UT US PNNL , +VPN05,3,1555.100 ,40.68000 ,-112.0200,MesoWest ,PNNL ,HUNTER HIGH SCHOOL UT US PNNL , +PNL6 ,3,1449.900 ,40.76000 ,-111.8400,MesoWest ,PNNL ,LDS N CHAPEL 17E/S Cm UT US PNNL , +VPN09,3,1330.100 ,40.75450 ,-111.8909,MesoWest ,PNNL ,MASTR MUFFLR MAIN 7S UT US PNNL , +PNL2 ,3,1330.100 ,40.75450 ,-111.8909,MesoWest ,PNNL ,MASTR MUFFLR MAIN 7S UT US PNNL , +VPN03,3,1427.100 ,40.67000 ,-111.8800,MesoWest ,PNNL ,MOSS ELMENTARY UT US PNNL , +PNL5 ,3,1420.100 ,40.75000 ,-111.8500,MesoWest ,PNNL ,MT OLIVET CEM 14E/7S UT US PNNL , +PNL7 ,3,1499.900 ,40.75000 ,-111.8200,MesoWest ,PNNL ,RED BUTTE GARDEN UT US PNNL , +VPN07,3,1562.100 ,40.58000 ,-111.8700,MesoWest ,PNNL ,SANDY SR. CENTER UT US PNNL , +VPN01,3,1456.900 ,40.55000 ,-111.9400,MesoWest ,PNNL ,SOUTH JORDAN CITY HALL UT US PNNL , +VTMX2,3,2335.700 ,40.57533 ,-111.6843,MesoWest ,PNNL ,VTMX2 LITTLE COTTONWOOD UT US PNNL , +VTMX4,3,1889.800 ,40.63303 ,-111.7216,MesoWest ,PNNL ,VTMX4 BIG COTTONWOOD UT US PNNL , +VTMX6,3,1536.200 ,40.76559 ,-111.8252,MesoWest ,PNNL ,VTMX6 RED BUTTE GARDENS UT US PNNL , +VTMX8,3,2062.300 ,40.46310 ,-111.8531,MesoWest ,PNNL ,VTMX8 Traverse Ridge UT US PNNL , +VTMX9,3,1725.200 ,40.75362 ,-111.7111,MesoWest ,PNNL ,VTMX9 MOUNTAIN DELL UT US PNNL , +VPN08,3,1310.000 ,40.76710 ,-111.9045,MesoWest ,PNNL ,WAREHOUSE 500w 100s UT US PNNL , +PNL1 ,3,1310.000 ,40.76710 ,-111.9045,MesoWest ,PNNL ,WAREHOUSE 500w 100s UT US PNNL , +VPN04,3,1410.000 ,40.71000 ,-111.8200,MesoWest ,PNNL ,WEST PARLEY UT US PNNL , +VPN12,3,1499.900 ,40.54000 ,-112.0200,MesoWest ,PNNL ,WHITEMAN SLOPE UT US PNNL , +PNL4 ,3,1389.900 ,40.76040 ,-111.8691,MesoWest ,PNNL ,WONDER BREAD 7E/4S UT US PNNL , +VPN10,3,1389.900 ,40.76040 ,-111.8691,MesoWest ,PNNL ,WONDER BREAD 7E/4S UT US PNNL , +ABS01,3,41.50000 ,27.18187 ,-81.35147,MISC ,Archbold ,8 mi S/Lk Placid, FL S/SR70 on Old SR8 Archbold , +MN001,3,371.1000 ,43.50833 ,-93.35406,MNDOT , ,Twin Lakes I-35 Mile Post 1 , +MN003,3,304.6000 ,44.47850 ,-93.29243,MNDOT , ,Little Chicago I-35 Mile Post 70 , +MN004,3,281.2000 ,45.64292 ,-92.99275,MNDOT , ,Rush City I-35 Mile Post 157 , +MN005,3,325.8000 ,46.21257 ,-92.83856,MNDOT , ,Rutledge I-35 Mile Post 198 , +MN006,3,442.2000 ,43.60832 ,-96.37794,MNDOT , ,Beaver Creek I-90 Mile Post 4 , +MN007,3,515.4000 ,43.63734 ,-95.76991,MNDOT , ,I-90 Mile Post 35 , +MN008,3,459.7000 ,43.63869 ,-95.11854,MNDOT , ,I-90 Mile Post 67 , +MN009,3,330.4000 ,43.66305 ,-94.12244,MNDOT , ,Blue Earth I-90 Mile Post 119 , +MN010,3,430.0000 ,43.72716 ,-92.68137,MNDOT , ,Dexter I-90 Mile Post 195 , +MN011,3,399.1000 ,43.95564 ,-92.20515,MNDOT , ,Jct CR 7 I-90 Mile Post 226 , +MN012,3,401.9000 ,43.91192 ,-91.54358,MNDOT , ,Ridgeway I-90 Mile Post 261 , +MN013,3,276.7000 ,46.84679 ,-96.66814,MNDOT , ,Dilworth I-94 Mile Post 5 , +MN014,3,370.4000 ,46.49066 ,-96.29125,MNDOT , ,Rothsay I-94 Mile Post 38 , +MN015,3,438.9000 ,45.83765 ,-95.36622,MNDOT , ,Alexandria I-94 Mile Post 104 , +MN016,3,378.5000 ,45.71310 ,-94.93145,MNDOT , ,Sauk Center I-94 Mile Post 128 , +MN017,3,303.4000 ,45.39469 ,-94.02561,MNDOT , ,Clearwater I-94 Mile Post 180 , +MN018,3,412.6000 ,47.87431 ,-94.43243,MNDOT , ,Shooks MN-1 Mile Post 34 , +MN019,3,449.1000 ,47.85440 ,-92.04811,MNDOT , ,Ely MN-1 Mile Post 275 , +MN020,3,383.4000 ,46.68822 ,-93.95449,MNDOT , ,Emily MN-6 Mile Post 29 , +MN021,3,321.2000 ,44.94926 ,-95.40952,MNDOT , ,Clara City MN-7 Mile Post 89 , +MN022,3,286.0000 ,44.90608 ,-93.98643,MNDOT , ,Lester Prairie MN-7 Mile Post 161 , +MN024,3,249.9000 ,48.57236 ,-96.91488,MNDOT , ,MN-7 Mile Post 11 , +MN025,3,327.4000 ,48.81951 ,-95.96101,MNDOT , ,MN-11 Mile Post 62 , +MN026,3,344.8000 ,48.62768 ,-94.06709,MNDOT , ,Brichdale MN-11 Mile Post 157 , +MN027,3,340.4000 ,48.60179 ,-93.37344,MNDOT , ,MN-11 Mile Post 199 , +MN028,3,595.8000 ,44.27026 ,-96.32004,MNDOT , ,Lake Benton US-14 Mile Post 7 , +MN029,3,391.1000 ,44.02163 ,-92.70815,MNDOT , ,Byron US-14 Mile Post 200 , +MN030,3,551.1000 ,44.45889 ,-96.43523,MNDOT , ,Hendricks MN-19 Mile Post 2 , +MN031,3,256.1000 ,44.54471 ,-94.99542,MNDOT , ,Morton MN-19 Mile Post 78 , +MN032,3,314.4000 ,44.54319 ,-94.41412,MNDOT , ,Winthrop MN-19 Mile Post 108 , +MN033,3,325.7000 ,44.69162 ,-95.61401,MNDOT , ,Hanley Falls MN-23 Mile Post 94 , +MN034,3,326.0000 ,45.61643 ,-94.02149,MNDOT , ,MN-23 Mile Post 215 , +MN035,3,396.9000 ,46.14426 ,-94.10410,MNDOT , ,Lastrup MN-25 Mile Post 140 , +MN036,3,347.3000 ,45.55822 ,-96.49392,MNDOT , ,Graceville MN-28 Mile Post 19 , +MN037,3,387.7000 ,45.48841 ,-95.56216,MNDOT , ,Langhei Township MN-29 Mile Post 46 , +MN038,3,476.4000 ,44.05717 ,-95.59730,MNDOT , ,Dovray MN-30 Mile Post 49 , +MN040,3,281.9000 ,43.71933 ,-91.43675,MNDOT , ,Caledonia MN-44 Mile Post 60 , +MN041,3,408.8000 ,47.60357 ,-94.12675,MNDOT , ,Squaw Lake MN-46 Mile Post 25 , +MN042,3,369.9000 ,44.40925 ,-92.85847,MNDOT , ,Cannon Falls US-52 Mile Post 90 , +MN043,3,380.7000 ,45.43236 ,-94.93237,MNDOT , ,Georgeville MN-55 Mile Post 98 , +MN044,3,373.4000 ,47.27417 ,-95.93363,MNDOT , ,Mahnomen US-59 Mile Post 296 , +MN045,3,303.3000 ,44.07556 ,-94.36825,MNDOT , ,Madelia US-60 Mile Post 86 , +MN047,3,316.4000 ,44.60102 ,-92.69779,MNDOT , ,Red Wing US-61 Mile Post 101 , +MN048,3,301.7000 ,47.97642 ,-89.68497,MNDOT , ,Grand Portage MN-61 Mile Post 146 , +MN049,3,446.8000 ,46.91173 ,-94.72292,MNDOT , ,Chamberlain MN-64 Mile Post 42 , +MN050,3,382.5000 ,46.33976 ,-93.26205,MNDOT , ,Pliny MN-65 Mile Post 98 , +MN051,3,379.9000 ,46.97836 ,-93.27369,MNDOT , ,Ball Bluff MN-65 Mile Post 145 , +MN052,3,408.6000 ,47.84037 ,-93.48518,MNDOT , ,Effie MN-1 Mile Post 194 , +MN053,3,359.2000 ,48.20715 ,-94.55401,MNDOT , ,N. of Upper Red Lake MN-72 Mile Post 40 , +MN054,3,299.7000 ,46.04313 ,-96.49418,MNDOT , ,Tenney US-75 Mile Post 188 , +MN055,3,409.7000 ,46.40366 ,-95.60213,MNDOT , ,Ottertail MN-78 Mile Post 34 , +MN056,3,356.3000 ,48.43646 ,-95.73119,MNDOT , ,Gatzke MN-89 Mile Post 96 , +MN057,3,240.1000 ,48.97085 ,-97.20170,MNDOT , ,St. Vincent MN-171 Mile Post 2 , +MN058,3,356.5000 ,47.29594 ,-96.73165,MNDOT , ,Anthony MN-200 Mile Post 9 , +MN059,3,356.5000 ,44.93617 ,-96.44180,MNDOT , ,Mehurin US-212 Mile Post 1 , +MN060,3,255.3030 ,47.86831 ,-96.91684,MNDOT , ,East Grand Forks US-2 Mile Post 8 , +MN061,3,414.0000 ,47.37123 ,-94.47964,MNDOT , ,Cass Lake US-2 Mile Post 131 , +MN062,3,401.5000 ,46.87745 ,-96.11144,MNDOT , ,Lake Park US-10 Mile Post 32 , +MN063,3,411.8000 ,46.41334 ,-95.05439,MNDOT , ,Verndale US-10 Mile Post 94 , +MN064,3,324.2000 ,45.76654 ,-94.23284,MNDOT , ,Rice US-10 Mile Post 162 , +MN065,3,411.0000 ,43.51495 ,-91.88499,MNDOT , ,Canton US-52 Mile Post 2 , +MN066,3,404.7000 ,47.21127 ,-92.48769,MNDOT , ,Cotton US-53 Mile Post 41 , +MN067,3,376.6000 ,48.29424 ,-92.97047,MNDOT , ,Ash Lake US-53 Mile Post 129 , +MN068,3,349.5000 ,47.77035 ,-96.00102,MNDOT , ,Brooks US-59 Mile Post 331 , +MN069,3,226.1000 ,44.28482 ,-91.98967,MNDOT , ,Kellogg US-61 Mile Post 53 , +MN070,3,389.8000 ,43.90234 ,-92.48230,MNDOT , ,Rochester US-63 Mile Post 32 , +MN071,3,435.1000 ,44.08369 ,-95.11995,MNDOT , ,MN-71 Mile Post 43 , +MN072,3,381.6270 ,48.13463 ,-93.87848,MNDOT , ,Margie US-71 Mile Post 379 , +MN073,3,242.9000 ,44.15434 ,-94.03397,MNDOT , ,Mankato US-169 Mile Post 52 , +MN074,3,230.6000 ,44.36554 ,-93.96315,MNDOT , ,St. Peter US-169 Mile Post 69 , +MN075,3,298.4000 ,44.57227 ,-93.84270,MNDOT , ,Belle Plaine US-169 Mile Post 86 , +MN076,3,364.3000 ,45.87584 ,-93.66408,MNDOT , ,Milaca US-169 Mile Post 200 , +MN077,3,314.8000 ,45.98504 ,-92.94818,MNDOT , ,Hinckley I-35 Mile Post 181 , +MN078,3,356.4000 ,48.78936 ,-95.05103,MNDOT , ,Roosevelt MN-11 Mile Post 108 , +MN079,3,307.1000 ,44.54364 ,-93.62482,MNDOT , ,New Prague MN-19 Mile Post 149 , +MN080,3,386.4830 ,46.71665 ,-92.25142,MNDOT , ,Thompson Hill I-35 Mile Post 248 , +MN081,3,185.4760 ,46.74854 ,-92.09998,MNDOT , ,Pier 20 , +MN082,3,351.3980 ,46.77181 ,-92.11499,MNDOT , ,I-35 and Garfield Avenue , +MN083,3,258.3740 ,47.09438 ,-91.55177,MNDOT , ,Lafayette Tunnel MN-61 Mile Post 32 , +MN084,3,435.3660 ,47.50928 ,-92.53288,MNDOT , ,MN-53 and 135 - Midway , +MN085,3,254.1030 ,44.86236 ,-93.21293,MNDOT , ,I-494 and MN-5 I-494 Mile Post 18 , +MN086,3,241.4010 ,44.79849 ,-93.29016,MNDOT , ,Burnsville I-35W Mile Post 4 , +MN087,3,282.3980 ,45.09621 ,-93.45002,MNDOT , ,Maple Grove I-94 Mile Post 217 , +MN088,3,285.2190 ,45.03843 ,-93.06251,MNDOT , ,Little Canada I-694 Mile Post 46 , +MN089,3,254.7700 ,44.96796 ,-93.09065,MNDOT , ,Cayuga Street Br. I-35E Mile Post 109 , +MN090,3,303.4680 ,44.87517 ,-93.07298,MNDOT , ,MN-110 and I-494 MN-10 Mile Post 5 , +MN091,3,409.4580 ,46.92407 ,-92.41307,MNDOT , ,Twig MN-53 Mile Post 21 , +MN092,3,453.3520 ,47.44509 ,-92.88758,MNDOT , ,Mitchell Bridge MN-169 Mile Post 343 , +MN093,3,304.8220 ,47.06749 ,-91.59307,MNDOT , ,Silver Cliff MN-61 Mile Post 30 , +MN094,3,265.8680 ,44.97811 ,-93.24572,MNDOT , ,I-35W at Mississippi I-35W Mile Post 19 , +MN095,3,183.0000 ,46.73409 ,-92.09713,MNDOT , ,Blatnick Bridge South Abutment , +MN096,3,363.6010 ,43.94569 ,-93.26788,MNDOT , ,Albert Lea I-35 Mile Post 30 , +MOA01,3,192.5117 ,39.41278 ,-93.19639,MOComAgNet, ,Brunswick MO US , +MOA02,3,235.3666 ,38.94250 ,-92.32000,MOComAgNet, ,Sanborn Field MO US , +MOA03,3,86.92900 ,36.49083 ,-89.96111,MOComAgNet, ,Clarkton MO US , +MOA04,3,277.3680 ,38.62111 ,-93.41528,MOComAgNet, ,Green Ridge MO US , +MOA05,3,304.2818 ,38.43472 ,-92.85361,MOComAgNet, ,Versailles MO US , +MOA06,3,301.5386 ,37.49306 ,-94.31472,MOComAgNet, ,Lamar MO US , +MOA07,3,649.5288 ,42.78413 ,-100.0275,MOComAgNet, ,Johnstown NE US , +MOA08,3,250.6370 ,40.02056 ,-92.19000,MOComAgNet, ,Novelty MO US , +MOA09,3,259.8420 ,40.24111 ,-94.34389,MOComAgNet, ,Albany MO US , +MOA10,3,282.4582 ,37.79806 ,-91.42972,MOComAgNet, ,Cook Station MO US , +MOA11,3,85.95360 ,36.41389 ,-89.69972,MOComAgNet, ,Portageville-Delta Center MO US , +MOA12,3,313.2430 ,39.75694 ,-94.79472,MOComAgNet, ,St. Joseph MO US , +MOA13,3,251.3076 ,39.85694 ,-93.14722,MOComAgNet, ,Linneus MO US , +MOA14,3,256.0320 ,38.90735 ,-91.73422,MOComAgNet, ,Williamsburg MO US , +MOA15,3,441.0456 ,37.15387 ,-92.26883,MOComAgNet, ,Mountain Grove MO US , +MOA16,3,255.8491 ,38.90699 ,-92.26998,MOComAgNet, ,Columbia MO US , +MOA17,3,229.9411 ,39.30230 ,-91.51300,MOComAgNet, ,Vandalia MO US , +BARM4,3,187.4000 ,46.77060 ,-88.49170,MQT-Meso , , BARAGA , +NMUM4,3,202.7000 ,46.56030 ,-87.40690,MQT-Meso , , N MI UNIVERSITY , +CYGM4,3,194.5000 ,45.65000 ,-84.46700,MQT-Meso , , CHEBOYGAN , +PRIM4,3,218.0000 ,45.36700 ,-83.50000,MQT-Meso , , PRESQUE ISLE , +SPTM4,3,197.0000 ,44.71300 ,-83.27200,MQT-Meso , , STURGEON POINT , +WFPM4,3,204.9000 ,46.76700 ,-84.96700,MQT-Meso , , WHITEFISH POINT , +TAWM4,3,199.4000 ,44.25360 ,-83.44970,MQT-Meso , , TAWAS POINT , +AURO ,2,1.200000 ,35.36232 ,-76.71630,NC-ECONet , ,Pamlico Aquaculture Field Lab , +BEAR ,2,1286.000 ,35.46135 ,-82.35822,NC-ECONet , ,Bearwallow Mountain , +BOON ,2,991.8000 ,36.22140 ,-81.62950,NC-ECONet , ,Boone - ASU Stn , +BUCK ,2,7.600000 ,36.46955 ,-76.76090,NC-ECONet , ,Buckland Elementary , +CAST ,2,13.10000 ,34.32107 ,-77.91611,NC-ECONet , ,Horticultural Crops Res Stn , +CLA2 ,2,76.20000 ,35.59158 ,-78.45889,NC-ECONet , ,DAQ Clayton Profiler , +CLAY ,2,106.7000 ,35.66979 ,-78.49260,NC-ECONet , ,Central Crops Research Station , +CLIN ,2,50.60000 ,35.02218 ,-78.28195,NC-ECONet , ,Horticultural Crops Research Stn , +FLET ,2,630.0000 ,35.42721 ,-82.55888,NC-ECONet , ,Mtn Horticultural Crops Res Stn , +FRYI ,2,1621.500 ,35.39357 ,-82.77427,NC-ECONet , ,Frying Pan Mountain , +GOLD ,2,24.10000 ,35.37935 ,-78.04480,NC-ECONet , ,Cherry Research Station , +HIGH ,2,277.4000 ,35.99000 ,-79.97000,NC-ECONet , ,UNCG - Lindale Farm Stn , +JACK ,2,190.5000 ,35.18782 ,-79.68437,NC-ECONet , ,Sandhills Research Station , +KINS ,2,29.00000 ,35.30288 ,-77.57306,NC-ECONet , ,Cunningham Research Station , +LAKE ,2,116.4000 ,35.72816 ,-78.67981,NC-ECONet , ,Lake Wheeler Rd Field Lab , +LAUR ,2,917.1000 ,36.40232 ,-81.29711,NC-ECONet , ,Upper Mountain Research Stn , +LEWS ,2,18.60000 ,36.13240 ,-77.17552,NC-ECONet , ,Peanut Belt Research Station , +LILE ,2,139.0000 ,34.97043 ,-79.91771,NC-ECONet , ,NC Electric Cooperative Anson Peaking P , +NCAT ,2,241.4000 ,36.06733 ,-79.73447,NC-ECONet , ,NC A&T SU Research Farm , +OXFO ,2,152.4000 ,36.30339 ,-78.61662,NC-ECONet , ,Oxford Tobacco Research Stn , +PLYM ,2,6.100000 ,35.84887 ,-76.65058,NC-ECONet , ,Tidewater Research Station , +REED ,2,128.0000 ,35.80712 ,-78.74412,NC-ECONet , ,Reedy Creek Field Laboratory , +REID ,2,261.5000 ,36.38152 ,-79.69982,NC-ECONet , ,Upper Piedmont Research Stn , +ROCK ,2,26.80000 ,35.89295 ,-77.67996,NC-ECONet , ,Upper Coastal Plain Res Stn , +SALI ,2,214.3000 ,35.69744 ,-80.62186,NC-ECONet , ,Piedmont Research Station , +SILR ,2,187.1000 ,35.70430 ,-79.50419,NC-ECONet , ,Siler City Airport , +WAYN ,2,839.7000 ,35.48752 ,-82.96768,NC-ECONet , ,Mountain Research Station , +WHIT ,2,27.10000 ,34.41347 ,-78.79230,NC-ECONet , ,Border Belt Tobacco Res Stn , +WILL ,2,21.90000 ,35.83903 ,-77.09349,NC-ECONet , ,Highway Patrol Comm Station , +WINE ,2,1667.000 ,35.17310 ,-83.58979,NC-ECONet , ,Wayah Bald Mountain , +ND001,3,598.6272 ,46.82415 ,-100.8276,NDDOT , ,Bismarck I-94 Bridge , +ND002,3,723.9000 ,46.84490 ,-100.2474,NDDOT , ,Sterling I-94 MP 184 , +ND003,3,810.7680 ,46.86160 ,-101.4349,NDDOT , ,New Salem I-94 MP 126 , +ND004,3,659.5872 ,47.29910 ,-102.0458,NDDOT , ,Golden Valley ND 200 MP 131 , +ND005,3,603.1992 ,46.87833 ,-99.27800,NDDOT , ,Medina I-94 MP 231 , +ND006,3,829.0560 ,46.89580 ,-103.2904,NDDOT , ,Fryburg I-94 MP 37 , +ND007,3,665.9880 ,48.90875 ,-103.4349,NDDOT , ,Crosby ND 5 MP 28.7 , +ND008,3,487.3752 ,48.32527 ,-102.0436,NDDOT , ,Blaisdell US 2 MP 106 , +ND009,3,460.2480 ,48.35977 ,-100.0724,NDDOT , ,Rugby US 2 MP 207 , +ND010,3,281.0256 ,47.93258 ,-97.42890,NDDOT , ,Emerado US 2 MP 340.4 , +ND011,3,241.7064 ,48.70942 ,-97.18950,NDDOT , ,Bowesmont I-29 MP 196 , +ND012,3,283.4640 ,47.53970 ,-97.08490,NDDOT , ,Buxton I-29 MP 114 , +ND013,3,265.1760 ,46.84783 ,-96.78300,NDDOT , ,Fargo I-94 RR Bridge , +ND014,3,437.9976 ,47.02230 ,-97.55770,NDDOT , ,Buffalo ND 38 MP 10 , +ND015,3,818.9976 ,47.41478 ,-103.2490,NDDOT , ,Grassy Butte US 85 MP 113.7 , +ND016,3,438.3024 ,48.03639 ,-98.89290,NDDOT , ,Devils Lake ND 20 MP 97.6 , +ND017,3,293.2176 ,46.23132 ,-96.74400,NDDOT , ,Wahpeton ND 13 MP 384.5 , +ND018,3,589.7880 ,47.98139 ,-102.5729,NDDOT , ,New Town ND 23 MP 46 , +ND019,3,279.1968 ,47.98469 ,-97.08570,NDDOT , ,Grand Forks I-29 MP 145 , +ND020,3,887.2728 ,46.11687 ,-103.4107,NDDOT , ,Bowman US 85 MP 12.2 , +ND021,3,581.2536 ,47.54580 ,-101.2301,NDDOT , ,Coleharbor US 83 MP 151.6 , +ND022,3,626.6688 ,47.48067 ,-100.2467,NDDOT , ,Denhoff ND 14 MP 145.6 , +ND023,3,676.3512 ,46.25557 ,-99.75170,NDDOT , ,Wishek ND 3 MP 40.7 , +ND024,3,720.8520 ,48.34220 ,-103.2167,NDDOT , ,Ray US 2 MP 51.3 , +NE000,3,1540.032 ,41.18075 ,-104.0485,NEDOR , ,WY/NE State line on I-80 @ MP .47 , +NE001,3,1509.301 ,41.49496 ,-103.6589,NEDOR , ,Banner Rd on North 71 @ MP 34.5 , +NE002,3,1211.292 ,41.91480 ,-103.7399,NEDOR , ,Scottsbluff on US 26 @ MP 17.7 , +NE003,3,1287.570 ,41.16937 ,-103.1094,NEDOR , ,Sidney West on I-80 @ MP 50.3 , +NE004,3,1109.648 ,41.04392 ,-102.2602,NEDOR , ,Big Springs on I-80 @ MP 97.01 , +NE005,3,935.1220 ,41.12582 ,-101.1363,NEDOR , ,Sutherland & I-80 @ MP 158 , +NE006,3,848.6770 ,40.17625 ,-101.1046,NEDOR , ,Trenton-Macklin Bay on US 34 @ MP 56.06 , +NE007,3,905.9680 ,41.78362 ,-100.5349,NEDOR , ,Dismal River Hill on US 83 @ MP 134.5 , +NE008,3,1077.921 ,42.49408 ,-101.7058,NEDOR , ,Merriman , +NE009,3,796.5410 ,41.83067 ,-100.1002,NEDOR , ,Dunning-Middle Loup Bridge , +NE010,3,655.6140 ,40.28351 ,-99.89870,NEDOR , ,Arapahoe-Republican R. US283 @ MP 19.54 , +NE011,3,685.4640 ,40.69028 ,-99.38160,NEDOR , ,Elm Creek on I-80 @ MP 257.01 , +NE012,3,615.7600 ,40.72061 ,-98.74190,NEDOR , ,Shelton Interchange on I-80 @ MP 291.36 , +NE013,3,570.0390 ,40.82351 ,-98.33230,NEDOR , ,S. Channel Platte R. - I-80 @ MP 314.45 , +NE014,3,503.0780 ,40.82070 ,-97.59780,NEDOR , ,York Int. I-80 & HWY 81 I-80 MP 353.11 , +NE015,3,437.6350 ,40.82212 ,-97.07360,NEDOR , ,Seward BNSF R/R Ovrpas I-80 @ MP 380.63 , +NE016,3,455.8730 ,42.32736 ,-96.65790,NEDOR , ,Hubbard on HWY 35 @ MP 53.85 , +NE017,3,395.3840 ,42.82520 ,-97.40300,NEDOR , ,Yankton Hill on HWY 81 @ MP 212.10 , +NE018,3,477.7990 ,41.83257 ,-97.44210,NEDOR , ,Madison on HWY 81 @ MP 142.88 , +NE019,3,540.6760 ,42.16995 ,-98.15850,NEDOR , ,Clearwater on HWY 275 @ MP 32.77 , +NE020,3,1138.211 ,42.71723 ,-102.4810,NEDOR , ,Rushville on HWY 20 @ MP 89 , +NE021,3,1459.198 ,42.67551 ,-103.6849,NEDOR , ,Summer Crest on HWY 20 @ MP 15 , +NE022,3,1304.093 ,42.61100 ,-102.9697,NEDOR , ,Ester Canyon on HWY 385 @ MP 34 , +NE023,3,1260.669 ,42.32228 ,-102.9752,NEDOR , ,Hemmingford - HWY 385 & 7E Junc @ MP 53 , +NE024,3,1196.673 ,42.05856 ,-102.2826,NEDOR , ,Ellsworth on HWY 2 @ MP 118 , +NE025,3,1299.456 ,41.39548 ,-102.9726,NEDOR , ,Dalton on HWY 385 @ MP , +NE026,3,1005.350 ,41.31101 ,-102.1254,NEDOR , ,Ash Hollow on US 26 @ MP , +NE027,3,1003.251 ,40.03048 ,-101.9693,NEDOR , ,Haigler on US 34 @ MP , +NE028,3,441.1520 ,40.19017 ,-96.98470,NEDOR , ,Harbine on HWY 136 @ MP 161 , +NE029,3,578.7820 ,41.55273 ,-98.17210,NEDOR , ,Cedar Rapids on HWY 56 @ MP 19 , +NE030,3,673.8530 ,42.59365 ,-99.28470,NEDOR , ,Newport on HWY 20 @ MP 273 , +NE031,3,1112.953 ,42.80004 ,-102.0786,NEDOR , ,Gordon on HWY 20 @ MP 112 , +NE032,3,1033.472 ,42.93956 ,-102.5473,NEDOR , ,Whiteclay on HWY 87 @ MP 72 , +NE033,3,1393.631 ,42.32241 ,-103.4447,NEDOR , ,Flaherty's on HWY 71 @ MP 102.95 , +NE034,3,1460.229 ,42.25644 ,-103.7816,NEDOR , ,HWY 29 & Cut Across Road @ MP 34 , +NE035,3,1083.596 ,41.56418 ,-102.7534,NEDOR , ,Lisco on Hwy 26 @ MP 81 , +NE036,3,1156.019 ,41.23643 ,-102.3419,NEDOR , ,Berea on HWY 27 @ MP 107 , +NE037,3,388.1270 ,41.09333 ,-96.25410,NEDOR , ,Gretna NE @ HWY 31 and I-80 exit 431 , +NE038,3,341.5110 ,41.29214 ,-96.29540,NEDOR , ,Valley NE @ HWY 275 & UPRR , +NE039,3,360.1080 ,41.22308 ,-96.08140,NEDOR , ,Omaha @ I-680 & I-80 Interchange , +NE040,3,366.1820 ,41.22815 ,-95.95530,NEDOR , ,Omaha @ US 75 & I-480 Interchange , +NE041,3,439.0350 ,40.46516 ,-96.72130,NEDOR , ,S.Cortland on HWY 77 @ MP 37 , +NE042,3,349.0510 ,40.67333 ,-96.18840,NEDOR , ,Syracuse , +NE043,3,916.0920 ,42.37370 ,-100.5447,NEDOR , ,Thedford , +NE044,3,1195.367 ,42.96773 ,-103.5320,NEDOR , ,Oglala Grasslands , +NE045,3,489.2040 ,41.20667 ,-97.12950,NEDOR , ,David City , +NE046,3,360.6940 ,41.01582 ,-96.64100,NEDOR , ,HWY 77 & Agnew Rd. , +NE047,3,459.9000 ,40.48080 ,-97.17940,NEDOR , ,Wilber , +NE048,3,387.2360 ,41.70419 ,-96.70850,NEDOR , ,HWY 275 & HWY 91 Jct. , +NE049,3,535.5610 ,40.42314 ,-98.05130,NEDOR , ,Clay Center HWY 14 & HWY 74 , +NE050,3,620.0970 ,40.29187 ,-98.70870,NEDOR , ,Campbell HWY 4 @ MP 49.7 , +NE051,3,705.0430 ,40.92855 ,-99.38860,NEDOR , ,Miller HWY 83 & HWY 40 , +NE052,3,701.0050 ,41.39481 ,-99.21130,NEDOR , ,Arcadia HWY 70 , +NE053,3,792.8200 ,42.22307 ,-99.52630,NEDOR , ,Rose , +NE054,3,418.0560 ,40.04441 ,-96.65253,NEDOR , ,Wymore , +NE055,3,304.1820 ,40.05876 ,-95.82264,NEDOR , ,Dawson , +NE056,3,1182.971 ,41.84764 ,-103.6750,NEDOR , ,HWY 71 South of Beltline , +NE057,3,334.2630 ,40.50884 ,-95.85800,NEDOR , ,Auburn/ Nebraska City , +NE058,3,762.9160 ,41.93197 ,-99.86027,NEDOR , ,Brewster , +NE059,3,839.0220 ,40.74011 ,-100.7193,NEDOR , ,Medicine Creek , +HMRA2,3,1.000000 ,59.60140 ,-151.4158,NERRS , ,NERRS METEOROLOGICAL SITE AT KACHEMAK , +KCHA2,3,0.000000 ,59.60440 ,-151.4136,NERRS , ,NERRS WATER QUALITY SITE HOMER SOUTH N , +WKQA1,3,2.931000 ,30.41470 ,-87.82280,NERRS , ,NERRS WATER QUALITY SITE AT WEEKS BAY , +WKXA1,3,2.816000 ,30.41610 ,-87.82610,NERRS , ,NERRS METEOROLOGICAL SITE AT WEEKS BAY , +ELQC1,3,3.336000 ,36.81810 ,-121.7394,NERRS , ,NERRS WATER QUALITY SITE AT ELKHORN SL , +ELXC1,3,3.336000 ,36.81810 ,-121.7394,NERRS , ,NERRS METEOROLOGICAL SITE AT ELKHORN S , +SCQC1,3,7.064000 ,38.20890 ,-122.0267,NERRS , ,NERRS WATER QUALITY SITE AT CHINA CAMP , +SFXC1,3,-0.002000,38.22250 ,-122.0256,NERRS , ,NERRS METEOROLOGICAL SITE AT SUISUN CI , +TIQC1,3,3.644000 ,32.57440 ,-117.1314,NERRS , ,NERRS WATER QUALITY SITE AT TIJUANA RI , +TIXC1,3,2.800000 ,32.56830 ,-117.1269,NERRS , ,NERRS METEOROLOGICAL SITE AT TIJUANA R , +DEQD1,3,1.474000 ,39.11440 ,-75.49920,NERRS , ,NERRS WATER QUALITY SITE LEBANON LANDI , +DRSD1,3,0.000000 ,37.41420 ,-75.43690,NERRS , ,NERRS METEOROLOGICAL SITE SAINT JONES , +SCLD1,3,2.113000 ,39.08440 ,-75.45640,NERRS , ,NERRS WATER QUALITY SITE SCOTTON LANDI , +APQF1,3,0.000000 ,29.79080 ,-84.87530,NERRS , ,NERRS WATER QUALITY SITE NEAR APALACHI , +APXF1,3,1.000000 ,29.78580 ,-84.88330,NERRS , ,NERRS METEOROLOGICAL SITE AT EAST POIN , +GTQF1,3,7.211000 ,29.66310 ,-81.26030,NERRS , ,NERRS WATER QUALITY SITE AT MATANZAS , +GTXF1,3,0.309000 ,29.67080 ,-81.22420,NERRS , ,NERRS METEOROLOGICAL SITE AT MATANZAS , +RKQF1,3,0.303000 ,26.05000 ,-81.73330,NERRS , ,NERRS WATER QUALITY SITE ROOKERY BAY N , +RKXF1,3,0.803000 ,26.02580 ,-81.70140,NERRS , ,NERRS METEOROLOGICAL STATION AT ROOKER , +SAQG1,3,0.698000 ,31.41470 ,-81.29610,NERRS , ,NERRS WATER QUALITY SITE ON SAPELO ISL , +SAXG1,3,0.692000 ,31.41780 ,-81.29360,NERRS , ,NERRS METEOROLOGICAL SITE ON SAPELO IS , +WAQM3,3,1.000000 ,41.55280 ,-70.54860,NERRS , ,NERRS WATER QUALITY SITE AT WAQUOIT BA , +WAXM3,3,5.614000 ,41.58000 ,-70.51500,NERRS , ,NERRS METEOROLOGICAL SITE AT WAQUOIT B , +BRIM2,3,0.964000 ,38.78140 ,-76.70920,NERRS , ,NERRS WATER QUALITY SITE CHESAPEAKE B , +BSLM2,3,0.410000 ,38.77500 ,-76.70810,NERRS , ,NERRS METEOROLOGICAL SITE PATUXENT RIV , +LTQM2,3,6.000000 ,39.45080 ,-76.27470,NERRS , ,NERRS WATER QUALITY SITE CHESAPEAKE BA , +WEQM1,3,7.814000 ,43.34670 ,-70.55390,NERRS , ,NERRS WATER QUALITY SITE WELLS RESERVE , +WEXM1,3,10.19400 ,43.34060 ,-70.54970,NERRS , ,NERRS METEOROLOGICAL SITE AT WELLS RES , +GDQM6,3,0.000000 ,30.36000 ,-88.46280,NERRS , ,NERRS WATER QUALITY SITE AT GRAND BAY , +GDXM6,3,0.000000 ,30.35720 ,-88.41890,NERRS , ,NERRS METEOROLOGICAL SITE AT GRAND BAY , +NOQN7,3,0.322000 ,34.15610 ,-77.84970,NERRS , ,NERRS WATER QUALITY SITE AT NORTH CARO , +NOXN7,3,1.685000 ,34.15940 ,-77.84970,NERRS , ,NERRS METEOROLOGICAL SITE AT NORTH CAR , +BGXN3,3,4.321000 ,43.06500 ,-70.83470,NERRS , ,NERRS METEOROLOGICAL SITE AT GREAT BAY , +GBQN3,3,3.000000 ,43.13440 ,-70.91280,NERRS , ,NERRS WATER QUALITY SITE AT GREAT BAY , +JCQN4,3,-0.399000,39.54780 ,-74.46140,NERRS , ,NERRS WATER QUALITY SITE JACQUES COUST , +JCRN4,3,2.160000 ,39.50940 ,-74.32420,NERRS , ,NERRS METEOROLOGICAL SITE AT NACOTE CR , +JCTN4,3,0.000000 ,39.50470 ,-74.33640,NERRS , ,NERRS WATER QUALITY SITE JACQUES COUST , +ANMN6,3,12.87900 ,42.01810 ,-73.91690,NERRS , ,NERRS METEOROLOGICAL SITE HUDSON RIVER , +ANRN6,3,-3.000000,42.02690 ,-73.92580,NERRS , ,NERRS WATER QUALITY SITE HUDSON RIVER , +HUQN6,3,0.059000 ,42.03280 ,-73.92220,NERRS , ,NERRS WATER QUALITY SITE AT HUDSON RIV , +OWQO1,3,174.7270 ,41.38190 ,-82.51420,NERRS , ,NERRS WATER QUALITY SITE AT OLD WOMAN , +OWXO1,3,184.1980 ,41.37780 ,-82.50810,NERRS , ,NERRS METEOROLOGICAL SITE AT OLD WOMAN , +CHNO3,3,3.599000 ,43.34500 ,-124.3286,NERRS , ,NERRS METEOROLOGICAL SITE AT SOUTH SLO , +CWQO3,3,0.000000 ,43.31720 ,-124.3217,NERRS , ,NERRS WATER QUALITY SITE AT SOUTH SLOU , +SOQO3,3,4.073000 ,43.28250 ,-124.3203,NERRS , ,NERRS WATER QUALITY SITE AT SOUTH SLOU , +JOQP4,3,14.34200 ,17.95640 ,-66.23860,NERRS , ,NERRS WATER QUALITY SITE AT JOBOS BAY , +JOXP4,3,4.000000 ,17.94360 ,-66.23860,NERRS , ,NERRS METEOROLOGICAL SITE JOBOS BAY IN , +NAQR1,3,0.000000 ,41.57860 ,-71.32080,NERRS , ,NERRS WATER QUALITY SITE AT NARRAGANSE , +NAXR1,3,0.742000 ,41.64060 ,-71.34080,NERRS , ,NERRS WATER METEOROLOGICAL AT NARRAGAN , +ACQS1,3,0.739000 ,32.55810 ,-80.44610,NERRS , ,NERRS WATER QUALITY SITE AT ACE BASIN , +ACXS1,3,1.715000 ,32.55940 ,-80.45470,NERRS , ,NERRS METEOROLOGICAL SITE AT ACE BASIN , +NIQS1,3,0.696000 ,33.35030 ,-79.19060,NERRS , ,NERRS WATER QUALITY SITE AT NORTH INLE , +NIWS1,3,0.696000 ,33.35030 ,-79.19060,NERRS , ,NERRS METEOROLOGICAL SITE AT NORTH INL , +MAQT2,3,0.000000 ,28.08140 ,-97.20310,NERRS , ,NERRS WATER QUALITY SITE AT ARANSAS BA , +MAXT2,3,0.000000 ,28.08170 ,-97.20330,NERRS , ,NERRS METEOROLOGICAL SITE AT COPANO BA , +PBFW1,3,1.353000 ,48.46390 ,-122.4681,NERRS , ,NERRS METEOROLOGICAL SITE AT PADILLA B , +PBLW1,3,1.768000 ,48.51810 ,-122.4731,NERRS , ,NERRS WATER QUALITY SITE AT PADILLA BA , +NHWEM,3,348.9000 ,42.92720 ,-72.36925,NHDOT , ,Westmoreland NH-9 , +NHSFD,3,427.3000 ,43.46630 ,-72.10143,NHDOT , ,Springfield I-89 , +NHMCH,3,120.0000 ,43.00240 ,-71.40424,NHDOT , ,Manchester NH-101 , +NHLTN,3,264.8000 ,44.32757 ,-71.87231,NHDOT , ,Littleton I-93 , +NHSLM,3,25.90000 ,42.75400 ,-71.22102,NHDOT , ,Salem I-93 , +NHDRY,3,75.20000 ,42.86076 ,-71.33436,NHDOT , ,Derry I-93 , +NHASL,3,182.8000 ,43.71034 ,-71.65093,NHDOT , ,Ashland I-93 , +NHWOD,3,207.2000 ,43.96998 ,-71.67507,NHDOT , ,Woodstock I-93 , +NHLRV,3,555.3000 ,44.03072 ,-71.78466,NHDOT , ,Lost River NH-112 , +NHSBN,3,219.4000 ,43.49228 ,-71.59939,NHDOT , ,Sanbornton I-93 , +NHCAN,3,178.3000 ,43.37216 ,-71.60934,NHDOT , ,Canterbury I-93 , +NHLBY,3,9.100000 ,43.11596 ,-70.82235,NHDOT , ,Little Bay NH-16 , +KQ34 ,3,33.00000 ,39.82000 ,-74.97000,NJWxNet ,SAFETYNET ,LINDENWOLD - NJ SAFETYNET , +KQ07 ,3,30.00000 ,40.95000 ,-74.15000,NJWxNet ,SAFETYNET ,HAWTHORNE - NJ SAFETYNET , +KQ20 ,3,63.00000 ,40.93000 ,-74.27000,NJWxNet ,SAFETYNET ,WAYNE - NJ SAFETYNET , +KQ03 ,3,61.00000 ,40.75000 ,-74.38000,NJWxNet ,SAFETYNET ,CHATHAM - NJ SAFETYNET , +KQ19 ,3,123.0000 ,41.15000 ,-74.88000,NJWxNet ,SAFETYNET ,WALPACK - NJ SAFETYNET , +KQ00 ,3,30.00000 ,40.48000 ,-74.60000,NJWxNet ,SAFETYNET ,HILLSBOROUGH - NJ SAFETYNET , +KQ22 ,3,305.0000 ,41.32000 ,-74.63000,NJWxNet ,SAFETYNET ,WANTAGE - NJ SAFETYNET , +KQ08 ,3,166.0000 ,40.83000 ,-74.82000,NJWxNet ,SAFETYNET ,HACKETTSTOWN - NJ SAFETYNET , +KQ17 ,3,120.0000 ,40.70000 ,-75.12000,NJWxNet ,SAFETYNET ,STEWARTSVILLE - NJ SAFETYNET , +KQ25 ,3,0.000000 ,39.31000 ,-74.42000,NJWxNet ,SAFETYNET ,ATLANTIC CITY MARINA - NJ SAFETYNET , +KQ38 ,3,23.00000 ,39.88000 ,-74.74000,NJWxNet ,SAFETYNET ,RED LION - NJ SAFETYNET , +KQ26 ,3,0.000000 ,39.23000 ,-75.03000,NJWxNet ,SAFETYNET ,BIVALVE - NJ SAFETYNET , +KQ43 ,3,3.000000 ,39.67000 ,-75.38000,NJWxNet ,SAFETYNET ,WOODSTOWN - NJ SAFETYNET , +KQ40 ,3,2.000000 ,39.60000 ,-74.33000,NJWxNet ,SAFETYNET ,WEST CREEK - NJ SAFETYNET , +KQ32 ,3,152.0000 ,40.52000 ,-75.00000,NJWxNet ,SAFETYNET ,KINGWOOD - NJ SAFETYNET , +KQ37 ,3,0.000000 ,40.07000 ,-74.00000,NJWxNet ,SAFETYNET ,POINT PLEASANT - NJ SAFETYNET , +KQ31 ,3,170.0000 ,40.92000 ,-74.97000,NJWxNet ,SAFETYNET ,HOPE - NJ SAFETYNET , +KQ50 ,3,30.00000 ,39.52000 ,-75.20000,NJWxNet ,NJ-MESONET ,UPPER DEERFIELD - NJ NJ-MESONET , +KQ51 ,3,75.00000 ,40.70000 ,-74.52000,NJWxNet ,NJ-MESONET ,BASKING RIDGE - NJ NJ-MESONET , +KQ59 ,3,411.0000 ,41.30000 ,-74.68000,NJWxNet ,NJ-MESONET ,HIGH POINT - NJ NJ-MESONET , +KQ52 ,3,0.000000 ,40.12000 ,-74.03000,NJWxNet ,NJ-MESONET ,SEA GIRT - NJ NJ-MESONET , +KQ53 ,3,176.0000 ,40.56000 ,-74.96000,NJWxNet ,NJ-MESONET ,PITTSTOWN - NJ NJ-MESONET , +KQ35 ,3,274.0000 ,40.90000 ,-74.70000,NJWxNet ,SAFETYNET ,NETCONG - NJ SAFETYNET , +KQ54 ,3,30.00000 ,40.12000 ,-74.53000,NJWxNet ,NJ-MESONET ,CREAM RIDGE - NJ NJ-MESONET , +KQ55 ,3,7.000000 ,39.22000 ,-74.80000,NJWxNet ,NJ-MESONET ,WOODBINE - NJ NJ-MESONET , +KQ39 ,3,0.000000 ,39.93000 ,-74.08000,NJWxNet ,SAFETYNET ,SEASIDE HEIGHTS - NJ SAFETYNET , +KQ44 ,3,30.00000 ,39.65000 ,-75.10000,NJWxNet ,SAFETYNET ,CLAYTON - NJ SAFETYNET , +KQ36 ,3,85.00000 ,40.85000 ,-74.43000,NJWxNet ,SAFETYNET ,PARSIPPANY - NJ SAFETYNET , +KQ24 ,3,21.00000 ,39.55000 ,-74.73000,NJWxNet ,SAFETYNET ,MULLICA TWP. - NJ SAFETYNET , +KQ11 ,3,0.000000 ,39.71000 ,-74.13000,NJWxNet ,SAFETYNET ,HARVEY CEDARS - NJ SAFETYNET , +KQ56 ,3,15.00000 ,39.72000 ,-74.52000,NJWxNet ,NJ-MESONET ,OSWEGO LAKE - NJ NJ-MESONET , +KQ57 ,3,111.0000 ,41.06000 ,-74.15000,NJWxNet ,SAFETYNET ,RAMSEY - NJ SAFETYNET , +USFS1,3,33.20000 ,39.91000 ,-74.60000,NJWxNet ,USFS ,SILAS LITTLE - NJ USFS , +USFS2,3,45.60000 ,39.97000 ,-74.43000,NJWxNet ,USFS ,FORT DIX I - NJ USFS , +USFS3,3,56.20000 ,39.84000 ,-74.38000,NJWxNet ,USFS ,CEDAR BRIDGE - NJ USFS , +KHZL ,3,487.0000 ,40.99000 ,-75.99000,NJWxNet ,AWOS ,HAZLETON - PA AWOS , +KQ60 ,3,208.0000 ,41.03000 ,-74.43000,NJWxNet ,NJ-MESONET ,CHARLOTTEBURG II - NJ NJ-MESONET , +USFS5,3,45.60000 ,39.97000 ,-74.43000,NJWxNet ,USFS ,FORT DIX II - NJ USFS , +KQ58 ,3,146.0000 ,40.84000 ,-74.95000,NJWxNet ,NJ-MESONET ,PEQUEST - NJ NJ-MESONET , +KQ61 ,3,400.7000 ,41.30000 ,-74.68000,NJWxNet ,SAFETYNET ,HIGH PT. MONUMENT - NJ SAFETYNET , +KQ49 ,3,24.30000 ,39.93000 ,-74.29000,NJWxNet ,NJ-MESONET ,BERKELEY TWP. - NJ NJ-MESONET , +KQ48 ,3,8.800000 ,40.96000 ,-74.01000,NJWxNet ,NJ-MESONET ,HAWORTH - NJ NJ-MESONET , +SLVN4,3,46.40000 ,39.76000 ,-74.98000,NJWxNet ,NJ-MESONET ,SICKLERVILLE - NJ NJ-MESONET , +2NC0 ,3,1350.800 ,35.86872 ,-82.34180,NonFedAWOS,SAI ,BURNSVILLE NC US SAI , +K1B1 ,3,60.30000 ,42.29133 ,-73.71033,NonFedAWOS,SAI ,HUDSON NY US SAI , +K2K3 ,3,1013.100 ,37.58266 ,-101.7328,NonFedAWOS,SAI ,JOHNSON KS US SAI , +K2Q3 ,3,29.80000 ,38.57900 ,-121.8567,NonFedAWOS,SAI ,DAVIS/WOODLAND/WINTERS CA US SAI , +K40N ,3,201.1000 ,39.97900 ,-75.86550,NonFedAWOS,SAI ,COATESVILLE PA US SAI , +K4G6 ,3,371.8000 ,42.38216 ,-77.68216,NonFedAWOS,SAI ,HORNELL NY US SAI , +K5B2 ,3,132.0000 ,43.05000 ,-73.86000,NonFedAWOS,SAI ,SARATOGA SPRINGS NY US SAI , +KAXV ,3,277.9000 ,40.49333 ,-84.29900,NonFedAWOS,SAI ,WAPAKONETA OH US SAI , +KCZG ,3,253.8000 ,42.07850 ,-76.09633,NonFedAWOS,SAI ,ENDICOTT NY US SAI , +KE28 ,3,1192.000 ,32.94050 ,-106.4127,NonFedAWOS,WSMR ,WHITE SANDS SPACE HARBOR NM US WSMR , +KEVU ,3,297.5000 ,40.33333 ,-94.83366,NonFedAWOS,MODOT ,MARYVILLE MO US MODOT , +KFPK ,3,271.5000 ,42.57450 ,-84.81150,NonFedAWOS,SAI ,CHARLOTTE MI US SAI , +KFSK ,3,279.8000 ,37.79833 ,-94.76933,NonFedAWOS,SAI ,FORT SCOTT KS US SAI , +KHAE ,3,235.6000 ,39.72450 ,-91.44366,NonFedAWOS,MODOT ,HANNIBAL MO US MODOT , +KHQG ,3,954.9000 ,37.16300 ,-101.3705,NonFedAWOS,SAI ,HUGOTON KS US SAI , +KLBO ,3,402.6000 ,37.64833 ,-92.65250,NonFedAWOS,MODOT ,LEBANON MO US MODOT , +KLRY ,3,278.9000 ,38.61100 ,-94.34216,NonFedAWOS,MODOT ,HARRISONVILLE MO US MODOT , +KMAW ,3,89.90000 ,36.60050 ,-89.99216,NonFedAWOS,MODOT ,MALDEN MO US MODOT , +KMBY ,3,264.3000 ,39.46383 ,-92.42700,NonFedAWOS,MODOT ,MOBERLY MO US MODOT , +KMHL ,3,237.4000 ,39.09583 ,-93.20284,NonFedAWOS,MODOT ,MARSHALL MO US MODOT , +KMPR ,3,456.3000 ,38.35250 ,-97.69130,NonFedAWOS,SAI ,MCPHERSON KS US SAI , +KMUE ,3,814.1000 ,20.00133 ,-155.6682,NonFedAWOS,SAI ,KAMUELA HI US SAI , +KMYJ ,3,250.9000 ,39.15750 ,-91.81834,NonFedAWOS,MODOT ,MEXICO MO US MODOT , +KN23 ,3,313.0000 ,42.30250 ,-75.41600,NonFedAWOS,SAI ,SIDNEY NY US SAI , +KNVD ,3,271.9000 ,37.85200 ,-94.30483,NonFedAWOS,MODOT ,NEVADA MO US MODOT , +KO70 ,3,515.1000 ,38.37683 ,-120.7940,NonFedAWOS,SAI ,JACKSON CA US SAI , +KOIC ,3,312.4000 ,42.56650 ,-75.52416,NonFedAWOS,SAI ,NORWICH NY US SAI , +KPYN ,3,142.3000 ,37.12667 ,-90.71283,NonFedAWOS,MODOT ,PIEDMONT MO US MODOT , +KSCH ,3,115.2000 ,42.85250 ,-73.92883,NonFedAWOS,SAI ,SCHENECTADY NY US SAI , +KSIK ,3,96.00000 ,36.89883 ,-89.56184,NonFedAWOS,MODOT ,SIKESTON MO US MODOT , +KSNC ,3,126.7000 ,41.38383 ,-72.50583,NonFedAWOS,SAI ,CHESTER CT US SAI , +KTQK ,3,903.1000 ,38.47433 ,-100.8850,NonFedAWOS,SAI ,SCOTT CITY KS US SAI , +KTRK ,3,1798.300 ,39.32000 ,-120.1395,NonFedAWOS,SAI ,TRUCKEE CA US SAI , +KTYQ ,3,281.0000 ,40.03066 ,-86.25150,NonFedAWOS,SAI ,INDIANAPOLIS IN US SAI , +KU42 ,3,1404.200 ,40.61950 ,-111.9928,NonFedAWOS,SAI ,SALT LAKE CITY UT US SAI , +KULS ,3,934.8000 ,37.60400 ,-101.3735,NonFedAWOS,SAI ,ULYSSES KS US SAI , +KUUV ,3,284.4000 ,38.23350 ,-91.16433,NonFedAWOS,MODOT ,SULLIVAN MO US MODOT , +AZ82 ,3,2029.100 ,34.39726 ,-110.5298,NonFedAWOS,SUPERAWOS ,MOGOLLON AIRPARK AZ US SUPERAWOS , +CN01 ,3,32.90000 ,39.43198 ,-123.7997,NonFedAWOS,SUPERAWOS ,MENDOCINO COAST DIST HOSPITAL CA US SUPERAWOS , +K0D8 ,3,628.2000 ,44.98671 ,-99.95283,NonFedAWOS,SUPERAWOS ,GETTYSBURG SD US SUPERAWOS , +K1D1 ,3,340.2000 ,45.23053 ,-96.56596,NonFedAWOS,SUPERAWOS ,MILBANK SD US SUPERAWOS , +K20N ,3,45.40000 ,41.98525 ,-73.96409,NonFedAWOS,SUPERAWOS ,KINGSTONULSTER NY US SUPERAWOS , +K24A ,3,870.8000 ,35.31743 ,-83.20991,NonFedAWOS,SUPERAWOS ,JACKSON COUNTY NC US SUPERAWOS , +K3S4 ,3,424.9000 ,42.10360 ,-123.6824,NonFedAWOS,SUPERAWOS ,ILLINOIS VALLEY OR US SUPERAWOS , +K3S8 ,3,343.2000 ,42.51011 ,-123.3880,NonFedAWOS,SUPERAWOS ,GRANTS PASS OR US SUPERAWOS , +K49B ,3,988.5000 ,44.41800 ,-103.3755,NonFedAWOS,SUPERAWOS ,STURGIS SD US SUPERAWOS , +K4V0 ,3,1607.500 ,40.09398 ,-108.7630,NonFedAWOS,SUPERAWOS ,RANGELY CO US SUPERAWOS , +K5T6 ,3,1253.300 ,31.88098 ,-106.7048,NonFedAWOS,SUPERAWOS ,DONAANA NM US SUPERAWOS , +K61B ,3,670.9000 ,35.94748 ,-114.8611,NonFedAWOS,SUPERAWOS ,BOULDER NV US SUPERAWOS , +K6S8 ,3,1072.000 ,45.70308 ,-108.7611,NonFedAWOS,SUPERAWOS ,LAURELMUNICIPAL MT US SUPERAWOS , +K7S0 ,3,940.0000 ,47.56717 ,-114.1011,NonFedAWOS,SUPERAWOS ,RONANAIRPORT MT US SUPERAWOS , +K7S1 ,3,1456.000 ,45.53377 ,-112.3026,NonFedAWOS,SUPERAWOS ,TWIN BRIDGES MT US SUPERAWOS , +K8V7 ,3,1338.100 ,37.45872 ,-102.6180,NonFedAWOS,SUPERAWOS ,SPRINGFIELD CO US SUPERAWOS , +K97M ,3,1067.700 ,45.87791 ,-104.5375,NonFedAWOS,SUPERAWOS ,EKALAKA AIRPORT MT US SUPERAWOS , +K9S2 ,3,741.3000 ,48.80772 ,-105.4395,NonFedAWOS,SUPERAWOS ,SCOBEY AIRPORT MT US SUPERAWOS , +K9S5 ,3,1246.300 ,45.87811 ,-111.5694,NonFedAWOS,SUPERAWOS ,THREEFORKS MT US SUPERAWOS , +KANP ,3,10.40000 ,38.94287 ,-76.56839,NonFedAWOS,SUPERAWOS ,LEE AIRPORT MD US SUPERAWOS , +KAPV ,3,933.3000 ,34.57533 ,-117.1862,NonFedAWOS,SUPERAWOS ,APPLE VALLEY CA US SUPERAWOS , +KSPZ ,3,1301.200 ,39.40302 ,-119.2512,NonFedAWOS,SUPERAWOS ,SILVER SPRINGS NV US SUPERAWOS , +KBLH ,3,121.6000 ,33.61916 ,-114.7169,NonFedAWOS,SUPERAWOS ,BLYTHE CA US SUPERAWOS , +KBQR ,3,229.2000 ,42.92228 ,-78.61224,NonFedAWOS,SUPERAWOS ,BUFFALO-LANCASTER NY US SUPERAWOS , +KBTN ,3,401.7000 ,45.81522 ,-97.74313,NonFedAWOS,SUPERAWOS ,BRITTON SD US SUPERAWOS , +KEKS ,3,1640.700 ,45.27175 ,-111.6486,NonFedAWOS,SUPERAWOS ,ENNIS BIG SKY MT US SUPERAWOS , +KEOS ,3,382.5000 ,36.81080 ,-94.39169,NonFedAWOS,SUPERAWOS ,NEOSHO AIRPORT MO US SUPERAWOS , +KHWQ ,3,1314.000 ,46.44861 ,-109.8528,NonFedAWOS,SUPERAWOS ,WHEATLAND COUNTY MT US SUPERAWOS , +KIYK ,3,748.3000 ,35.65884 ,-117.8295,NonFedAWOS,SUPERAWOS ,INYOKERN CA US SUPERAWOS , +KLEM ,3,783.6000 ,45.91869 ,-102.1062,NonFedAWOS,SUPERAWOS ,LEMMON SD US SUPERAWOS , +KLLR ,3,174.3000 ,39.26203 ,-123.7537,NonFedAWOS,SUPERAWOS ,LITTLE RIVER AIRPORT CA US SUPERAWOS , +KM75 ,3,687.0000 ,48.36694 ,-107.9193,NonFedAWOS,SUPERAWOS ,MALTA AIRPORT MT US SUPERAWOS , +KMEV ,3,1440.500 ,39.00030 ,-119.7512,NonFedAWOS,SUPERAWOS ,MINDEN TAHOE NV US SUPERAWOS , +KO31 ,3,84.70000 ,38.65272 ,-122.8987,NonFedAWOS,SUPERAWOS ,HEALDSBURG CA US SUPERAWOS , +KO43 ,3,1334.400 ,39.00408 ,-119.1579,NonFedAWOS,SUPERAWOS ,YERINGTON NV US SUPERAWOS , +KO57 ,3,1971.400 ,38.26241 ,-119.2257,NonFedAWOS,SUPERAWOS ,BRYANT FIELD MONO COUNTY CA US SUPERAWOS , +KREI ,3,478.8000 ,34.08526 ,-117.1464,NonFedAWOS,SUPERAWOS ,REDLANDS CA US SUPERAWOS , +KRPX ,3,1064.100 ,46.47499 ,-108.5434,NonFedAWOS,SUPERAWOS ,ROUNDUP MT US SUPERAWOS , +KS01 ,3,1080.500 ,48.16863 ,-111.9765,NonFedAWOS,SUPERAWOS ,CONRAD MT US SUPERAWOS , +KS03 ,3,574.5000 ,42.19028 ,-122.6606,NonFedAWOS,SUPERAWOS ,ASHLAND OR US SUPERAWOS , +KS10 ,3,384.0000 ,47.86601 ,-119.9427,NonFedAWOS,SUPERAWOS ,LAKE-CHELAN WA US SUPERAWOS , +KS34 ,3,750.4000 ,47.47355 ,-114.9071,NonFedAWOS,SUPERAWOS ,PLAINS MT US SUPERAWOS , +KTHM ,3,751.9000 ,47.57350 ,-115.2807,NonFedAWOS,SUPERAWOS ,THOMPSON FALLS MT US SUPERAWOS , +KTME ,3,50.30000 ,29.80717 ,-95.89791,NonFedAWOS,SUPERAWOS ,HOUSTON EXECUTIVE TX US SUPERAWOS , +KTNP ,3,575.2000 ,34.13159 ,-115.9458,NonFedAWOS,SUPERAWOS ,TWENTY NINE PALMS CA US SUPERAWOS , +KU69 ,3,1775.800 ,40.19190 ,-110.3810,NonFedAWOS,SUPERAWOS ,DUCHESNE UT US SUPERAWOS , +KU76 ,3,963.2000 ,43.13125 ,-115.7296,NonFedAWOS,SUPERAWOS ,MOUNTAIN HOME ID US SUPERAWOS , +KVKX ,3,35.10000 ,38.74761 ,-76.95719,NonFedAWOS,SUPERAWOS ,POTOMAC MD US SUPERAWOS , +KVMR ,3,349.6000 ,42.76528 ,-96.93425,NonFedAWOS,SUPERAWOS ,VERMILLION SD US SUPERAWOS , +KX14 ,3,5.500000 ,26.74423 ,-81.43257,NonFedAWOS,SUPERAWOS ,LA BELLE FL US SUPERAWOS , +KX26 ,3,6.400000 ,27.81259 ,-80.49590,NonFedAWOS,SUPERAWOS ,SEBASTIAN FL US SUPERAWOS , +KX59 ,3,7.900000 ,27.96196 ,-80.55977,NonFedAWOS,SUPERAWOS ,VALKARIA FL US SUPERAWOS , +KY14 ,3,461.8000 ,43.45747 ,-96.80199,NonFedAWOS,SUPERAWOS ,LINCOLN COUNTY SD US SUPERAWOS , +KD38 ,3,248.1000 ,42.90716 ,-77.32166,NonFedAWOS,SAI ,CANANDAIGUA NY US SAI , +KMQJ ,3,262.7000 ,39.84350 ,-85.89700,NonFedAWOS,SAI ,INDIANAPOLIS IN US SAI , +KU52 ,3,1787.000 ,38.23050 ,-112.6755,NonFedAWOS,SAI ,BEAVER UT US SAI , +KFFX ,3,235.3000 ,43.43933 ,-85.99483,NonFedAWOS,SAI ,FREMONT MI US SAI , +KRAW ,3,285.2928 ,38.34683 ,-93.34550,NonFedAWOS,MODOT ,WARSAW MO US MODOT , +KOQN ,3,142.0000 ,39.99016 ,-75.58183,NonFedAWOS,SAI ,WEST CHESTER PA US SAI , +K3K3 ,3,1012.500 ,37.99166 ,-101.7463,NonFedAWOS,SAI ,HAMILTON KS US SAI , +KK82 ,3,548.3300 ,39.76100 ,-98.79350,NonFedAWOS,SAI ,SMITH CENTER KS US SAI , +KLZD ,3,72.54000 ,41.81970 ,-72.54240,NonFedAWOS,SAI ,DANIELSON CT US SAI , +KPHG ,3,581.2500 ,39.73500 ,-99.31710,NonFedAWOS,SAI ,PHILLIPSBURG KS US SAI , +KPTD ,3,144.4000 ,44.67666 ,-74.94850,NonFedAWOS,SAI ,POTSDAM NY US SAI , +KCKZ ,3,173.1000 ,40.38916 ,-75.29050,NonFedAWOS,SAI ,PERKASIE PA US SAI , +KVGC ,3,346.3000 ,42.82555 ,-75.54444,NonFedAWOS,SAI ,HAMILTON NY US SAI , +KOLE ,3,650.7400 ,42.23333 ,-78.36667,NonFedAWOS,SAI ,CATTARAUGUS COUNTY-OLEAN NY US SAI , +K9K7 ,3,492.0000 ,38.75040 ,-98.22975,NonFedAWOS,SAI ,ELLSWORTH KS US SAI , +ANVC1,3,0.000000 ,38.91000 ,-123.7100,NOS-NWLON , ,Arena Cove, CA , +SNSN7,3,0.000000 ,33.86500 ,-78.50670,NOS-NWLON , ,Sunset Beach, NC , +LABL1,3,0.000000 ,30.05000 ,-90.36830,NOS-NWLON , ,E Bank, Bayou LaBranche, LA , +GSJT2,3,0.000000 ,29.32670 ,-94.69330,NOS-NWLON , ,Galveston Bay S. Jetty, TX , +ACYN4,3,0.000000 ,39.35500 ,-74.41800,NOS-NWLON , ,Atlantic City, NJ , +ADKA2,3,0.000000 ,51.86300 ,-176.6320,NOS-NWLON , ,Adak Island, AK , +BHBM3,3,0.000000 ,42.35500 ,-71.05200,NOS-NWLON , ,Boston, MA , +BRHC3,3,0.000000 ,41.17300 ,-73.18200,NOS-NWLON , ,Bridgeport, CT , +BZBM3,3,0.000000 ,41.52300 ,-70.67200,NOS-NWLON , ,Woods Hole, MA , +CECC1,3,0.000000 ,41.74500 ,-124.1830,NOS-NWLON , ,Crescent City, CA , +CHAO3,3,0.000000 ,43.34500 ,-124.3220,NOS-NWLON , ,Charleston, OR , +CHAV3,3,0.000000 ,18.33500 ,-64.92000,NOS-NWLON , ,Charlotte Amalie, VI , +CHYW1,3,0.000000 ,48.86300 ,-122.7580,NOS-NWLON , ,Cherry Point, WA , +CWBF1,3,0.000000 ,27.97800 ,-82.83200,NOS-NWLON , ,Clearwater Beach, FL , +EBSW1,3,0.000000 ,47.60500 ,-122.3380,NOS-NWLON , ,Seattle, WA , +FMRF1,3,0.000000 ,26.64700 ,-81.87200,NOS-NWLON , ,Fort Myers, FL , +FPTT2,3,0.000000 ,28.94800 ,-95.30800,NOS-NWLON , ,Freeport, TX , +FRDF1,3,0.000000 ,30.67200 ,-81.46500,NOS-NWLON , ,Fernandina Beach, FL , +FRDW1,3,0.000000 ,48.54700 ,-123.0100,NOS-NWLON , ,Friday Harbor, WA , +HBYC1,3,0.000000 ,40.76700 ,-124.2170,NOS-NWLON , ,North Spit, CA , +KLIH1,3,0.000000 ,20.89800 ,-156.4720,NOS-NWLON , ,Kahului, HI , +KWHH1,3,0.000000 ,20.04000 ,-155.8320,NOS-NWLON , ,Kawaihae, HI , +LJAC1,3,0.000000 ,32.86700 ,-117.2580,NOS-NWLON , ,La Jolla, CA , +LTBV3,3,0.000000 ,17.69700 ,-64.75300,NOS-NWLON , ,Lime Tree Bay, VI , +MGIP4,3,0.000000 ,17.97200 ,-67.04700,NOS-NWLON , ,Magueyes Island, PR , +MQTT2,3,0.000000 ,27.58000 ,-97.21700,NOS-NWLON , ,Corpus Christi, TX , +MROS1,3,0.000000 ,33.65500 ,-78.91800,NOS-NWLON , ,Springmaid Pier, SC , +MTKN6,3,0.000000 ,41.04800 ,-71.96000,NOS-NWLON , ,Montauk, NY , +MTYC1,3,0.000000 ,36.60500 ,-121.8880,NOS-NWLON , ,Monterey, CA , +MYPF1,3,0.000000 ,30.39700 ,-81.43000,NOS-NWLON , ,Mayport (Bar Pilots Dk), FL , +NEAW1,3,0.000000 ,48.36800 ,-124.6170,NOS-NWLON , ,Neah Bay, WA , +NLNC3,3,0.000000 ,41.35500 ,-72.08700,NOS-NWLON , ,New London, CT , +NMTA2,3,0.000000 ,64.50000 ,-165.4300,NOS-NWLON , ,Nome, Norton Sound, AK , +NTKM3,3,0.000000 ,41.28500 ,-70.09700,NOS-NWLON , ,Nantucket Island, MA , +OOUH1,3,0.000000 ,21.30700 ,-157.8670,NOS-NWLON , ,Honolulu Harbor, HI , +PORO3,3,0.000000 ,42.74000 ,-124.4970,NOS-NWLON , ,Port Orford, OR , +PRDA2,3,0.000000 ,70.40000 ,-148.5270,NOS-NWLON , ,Prudhoe Bay, AK , +PRYC1,3,0.000000 ,37.99700 ,-122.9750,NOS-NWLON , ,Point Reyes, CA , +PSBM1,3,0.000000 ,44.90300 ,-66.98500,NOS-NWLON , ,Eastport, ME , +PSLC1,3,0.000000 ,35.17700 ,-120.7600,NOS-NWLON , ,Port San Luis, CA , +PTAW1,3,0.000000 ,48.12500 ,-123.4400,NOS-NWLON , ,Port Angeles, WA , +PTIT2,3,0.000000 ,26.06000 ,-97.21500,NOS-NWLON , ,Port Isabel, TX , +PTWW1,3,0.000000 ,48.11200 ,-122.7580,NOS-NWLON , ,Port Townsend, WA , +SBEO3,3,0.000000 ,44.62500 ,-124.0433,NOS-NWLON , ,South Beach, OR , +SBPT2,3,0.000000 ,29.73000 ,-93.87000,NOS-NWLON , ,Sabine Pass North, TX , +SDBC1,3,0.000000 ,32.71300 ,-117.1730,NOS-NWLON , ,San Diego, CA , +SJNP4,3,0.000000 ,18.45800 ,-66.11700,NOS-NWLON , ,San Juan, PR , +SKTA2,3,0.000000 ,59.45000 ,-135.3270,NOS-NWLON , ,Skagway, AK , +SMOC1,3,0.000000 ,34.00800 ,-118.5000,NOS-NWLON , ,Santa Monica, CA , +TOKW1,3,0.000000 ,46.70800 ,-123.9650,NOS-NWLON , ,Toke Point, WA , +TRDF1,3,0.000000 ,28.41500 ,-80.59300,NOS-NWLON , ,Trident Pier, FL , +VAKF1,3,0.000000 ,25.73200 ,-80.16200,NOS-NWLON , ,Virginia Key, FL , +VCAF1,3,0.000000 ,24.71200 ,-81.10500,NOS-NWLON , ,Vaca Key, FL , +WAVM6,3,0.000000 ,30.28200 ,-89.36700,NOS-NWLON , ,Waveland, MS , +NPSF1,3,0.000000 ,26.13000 ,-81.80700,NOS-NWLON , ,Naples, FL , +BFTN7,3,0.000000 ,34.71720 ,-76.66720,NOS-NWLON , ,Beaufort, NC , +CAMM2,3,0.000000 ,38.56670 ,-76.06670,NOS-NWLON , ,Cambridge, MD , +CASM1,3,0.000000 ,43.65110 ,-70.23560,NOS-NWLON , ,Portland, ME , +CFPN7,3,0.000000 ,35.21780 ,-75.63360,NOS-NWLON , ,Frisco, NC , +DUKN7,3,0.000000 ,36.18330 ,-75.73560,NOS-NWLON , ,Duck, NC , +GISL1,3,0.000000 ,29.26330 ,-89.95670,NOS-NWLON , ,Grand Isle, LA , +ORIN7,3,0.000000 ,35.78560 ,-75.55000,NOS-NWLON , ,Wanchese, NC , +SNDP5,3,0.000000 ,28.21200 ,-177.3600,NOS-NWLON , ,Sand Island, Midway Islands , +WAKP8,3,0.000000 ,19.29000 ,166.6180 ,NOS-NWLON , ,Wake Island , +KWJP8,3,0.000000 ,8.737000 ,167.7380 ,NOS-NWLON , ,Kwajalein, Marshall Islands , +CKYF1,3,0.000000 ,29.13500 ,-83.03200,NOS-NWLON , ,Cedar Key, FL , +PCLF1,3,0.000000 ,30.40300 ,-87.21200,NOS-NWLON , ,Pensacola, FL , +PCBF1,3,0.000000 ,30.21300 ,-85.87800,NOS-NWLON , ,Panama City Beach, FL , +KYWF1,3,0.000000 ,24.55300 ,-81.80800,NOS-NWLON , ,Key West, FL , +APCF1,3,0.000000 ,29.72700 ,-84.98200,NOS-NWLON , ,Apalachicola, FL , +JMPN7,3,0.000000 ,34.21000 ,-77.79500,NOS-NWLON , ,Wrightsville Beach, NC , +THRO1,3,174.5000 ,41.69330 ,-83.39670,NOS-NWLON , ,Harbor View, OH , +ATGM1,3,0.000000 ,44.39160 ,-68.20910,NOS-NWLON , ,Bar Harbor, ME , +TX050,3,0.000000 ,28.02170 ,-97.04670,NOS-NWLON , ,Rockport, TX , +FL097,3,0.000000 ,30.15170 ,-85.66670,NOS-NWLON , ,Panama City, FL , +KECA2,3,0.000000 ,55.33330 ,-131.6250,NOS-NWLON , ,Ketchikan, AK , +ITKA2,3,0.000000 ,57.05170 ,-135.3417,NOS-NWLON , ,Sitka, AK , +YATA2,3,0.000000 ,59.54830 ,-139.7350,NOS-NWLON , ,Yakutat, AK , +CRVA2,3,0.000000 ,60.55830 ,-145.7533,NOS-NWLON , ,Cordova, AK , +VDZA2,3,0.000000 ,61.12500 ,-146.3617,NOS-NWLON , ,Valdez, AK , +SWLA2,3,0.000000 ,60.12000 ,-149.4267,NOS-NWLON , ,Seward, AK , +KDAA2,3,0.000000 ,57.73170 ,-152.5117,NOS-NWLON , ,Kodiak Island, AK , +AK100,3,0.000000 ,55.33670 ,-160.5017,NOS-NWLON , ,Sand Point, AK , +AK120,3,0.000000 ,53.88000 ,-166.5367,NOS-NWLON , ,Unalaska, AK , +NP165,3,0.000000 ,27.66300 ,-82.61800,NOS-NWLON , ,Ccut, FL , +BYGL1,3,0.000000 ,29.77700 ,-90.41800,NOS-NWLON , ,W Bk 1, Bayou Gauche, LA , +CAPL1,3,0.000000 ,29.76500 ,-93.34300,NOS-NWLON , ,Calcasieu Pass, LA , +NP114,3,0.000000 ,29.76000 ,-95.09000,NOS-NWLON , ,Battleship Texas , +NP119,3,0.000000 ,33.76500 ,-118.2200,NOS-NWLON , ,Desmond Bridge , +NY042,3,75.00000 ,43.33830 ,-78.72670,NOS-NWLON , ,Olcott, NY , +NY043,3,106.0000 ,43.10000 ,-79.06000,NOS-NWLON , ,Ashland Ave., NY , +NY046,3,171.0000 ,43.08170 ,-79.06100,NOS-NWLON , ,American Falls, NY , +NY060,3,74.00000 ,42.69000 ,-79.04830,NOS-NWLON , ,Sturgeon Point, NY , +PA012,3,174.0000 ,42.15330 ,-80.07500,NOS-NWLON , ,Erie, PA , +OH010,3,173.0000 ,41.75000 ,-81.28330,NOS-NWLON , ,Fairport, OH , +CNDO1,3,173.0000 ,41.54000 ,-81.63500,NOS-NWLON , ,Cleveland, OH , +MI010,3,174.0000 ,41.96000 ,-83.25830,NOS-NWLON , ,Fermi Power Plant, MI , +LPNM4,3,179.0000 ,45.06330 ,-83.42830,NOS-NWLON , ,Alpena, MI , +MI257,3,176.0000 ,43.14170 ,-82.49330,NOS-NWLON , ,Lakeport, MI , +MI016,3,178.0000 ,43.64170 ,-83.84670,NOS-NWLON , ,Essexville, MI , +MI270,3,177.0000 ,44.66000 ,-83.28670,NOS-NWLON , ,Harrisville, MI , +MI019,3,177.0000 ,45.77830 ,-84.72000,NOS-NWLON , ,Mackinaw City, MI , +MI290,3,177.0000 ,42.76830 ,-86.20170,NOS-NWLON , ,Holland, MI , +WI010,3,177.0000 ,43.00170 ,-87.88670,NOS-NWLON , ,Milwaukee. WI , +KWNW3,3,178.0000 ,44.46500 ,-87.49500,NOS-NWLON , ,Kewaunee Met, WI , +WI020,3,177.0000 ,44.79500 ,-87.31330,NOS-NWLON , ,Sturgeon Bay Canal, WI , +WI040,3,177.0000 ,44.54000 ,-88.00830,NOS-NWLON , ,Green Bay, WI , +MNMM4,3,177.0000 ,45.09700 ,-87.59700,NOS-NWLON , ,Menominee, MI , +PNLM4,3,177.0000 ,45.97000 ,-85.87170,NOS-NWLON , ,Port Inland, MI , +MI145,3,183.0000 ,46.87830 ,-89.32000,NOS-NWLON , ,Ontonagon, MI , +LDTM4,3,179.4000 ,43.94700 ,-86.44200,NOS-NWLON , ,Ludington, MI , +CMTI2,3,179.4000 ,41.73000 ,-87.53800,NOS-NWLON , ,Calumet Harbor, IL , +FTGM4,3,180.1000 ,43.00700 ,-82.42300,NOS-NWLON , ,Fort Gratiot, MI , +OSGN6,3,78.00000 ,43.46300 ,-76.51200,NOS-NWLON , ,Oswego, NY , +BUFN6,3,178.3000 ,42.87700 ,-78.89000,NOS-NWLON , ,Buffalo, NY , +HRBM4,3,179.2000 ,43.84700 ,-82.64300,NOS-NWLON , ,Harbor Beach, MI , +MCGM4,3,187.5000 ,46.54500 ,-87.37800,NOS-NWLON , ,Marquette C.G., MI , +DULM5,3,185.4000 ,46.77500 ,-92.09300,NOS-NWLON , ,Duluth, MN , +GDMM5,3,186.2000 ,47.74800 ,-90.34200,NOS-NWLON , ,Grand Marais, MN , +OHBC1,3,0.000000 ,33.72000 ,-118.2720,NOS-NWLON , ,Los Angeles, CA , +FPKG1,3,0.000000 ,32.03330 ,-80.90170,NOS-NWLON , ,Fort Pulaski, GA , +NY034,3,74.00000 ,44.70300 ,-75.49500,NOS-NWLON , ,Ogdensburg, NY , +MRHO1,3,173.8000 ,41.54690 ,-82.73170,NOS-NWLON , ,Marblehead, OH , +OH030,3,173.0000 ,41.69300 ,-83.47200,NOS-NWLON , ,Toledo, OH , +NY036,3,74.00000 ,44.33170 ,-75.93500,NOS-NWLON , ,Alexandria Bay, NY , +MI240,3,173.0000 ,42.62000 ,-82.52670,NOS-NWLON , ,Algonac, MI , +MI250,3,173.0000 ,42.81330 ,-82.48670,NOS-NWLON , ,St Clair State Police, MI , +MI260,3,173.0000 ,42.94500 ,-82.44330,NOS-NWLON , ,Dry Dock, MI , +MI256,3,173.0000 ,43.00300 ,-82.42170,NOS-NWLON , ,Dunn Paper, MI , +MI230,3,173.0000 ,42.47300 ,-82.88000,NOS-NWLON , ,St Clair Shores, MI , +MI200,3,173.0000 ,42.09200 ,-83.18700,NOS-NWLON , ,Gibraltar, MI , +MI210,3,173.0000 ,42.20300 ,-83.14670,NOS-NWLON , ,Wyandotte, MI , +MI220,3,173.0000 ,42.29800 ,-83.09330,NOS-NWLON , ,Fort Wayne, MI , +NY038,3,75.00000 ,44.13000 ,-76.33670,NOS-NWLON , ,Cape Vincent, NY , +NY041,3,74.00000 ,43.27000 ,-77.62670,NOS-NWLON , ,Rochester, NY , +HI010,3,0.000000 ,21.95500 ,-159.3570,NOS-NWLON , ,Nawiliwili, HI , +HI030,3,0.000000 ,21.43700 ,-157.7930,NOS-NWLON , ,Mokuoloe, HI , +HI050,3,0.000000 ,19.73000 ,-155.0567,NOS-NWLON , ,Hilo, HI , +GA020,3,0.000000 ,31.13200 ,-81.39700,NOS-NWLON , ,St.Simons Island, GA , +UGIL1,3,0.000000 ,29.37200 ,-91.38500,NOS-NWLON , ,Eugene Island, LA , +TX035,3,0.000000 ,29.71800 ,-95.25200,NOS-NWLON , ,Manchester, TX , +CA050,3,0.000000 ,34.40800 ,-119.6850,NOS-NWLON , ,Santa Barbara, CA , +JNEA2,3,0.000000 ,58.29800 ,-134.4120,NOS-NWLON , ,Juneau, AK , +SC020,3,0.000000 ,32.78200 ,-79.92500,NOS-NWLON , ,Charleston, SC , +MI255,3,179.0000 ,42.97300 ,-82.42000,NOS-NWLON , ,Mouth of Black River, MI , +MI221,3,184.0000 ,42.35800 ,-82.93000,NOS-NWLON , ,Windmill Point, MI , +MI110,3,182.0000 ,46.50000 ,-84.34000,NOS-NWLON , ,U.S. Slip, MI , +SCIS1,3,0.000000 ,32.86000 ,-79.71000,NOS-NWLON , ,South Capers Island, SC , +FRPS1,3,0.000000 ,32.34000 ,-80.46000,NOS-NWLON , ,Fripps Inlet, SC , +NN001,3,181.0000 ,46.28800 ,-84.21800,NOS-NWLON , ,Look Out 4, St. Marys River, MI , +NN004,3,181.0000 ,46.28300 ,-84.20500,NOS-NWLON , ,West Neebish Island, MI , +NN002,3,0.000000 ,39.81200 ,-75.41000,NOS-NWLON , ,Marcus Hook, PA , +NN003,3,0.000000 ,40.01200 ,-75.03300,NOS-NWLON , ,Tacony-Palmyra Bridge, NJ , +BISM2,3,0.000000 ,38.22000 ,-76.03800,NOS-NWLON , ,Bishops Head, MD , +PSTL1,3,0.000000 ,28.93200 ,-89.40700,NOS-NWLON , ,Pilots Sta E, SW Pass, LA , +TLBO3,3,0.000000 ,45.55500 ,-123.9120,NOS-NWLON , ,Garibaldi, OR , +LAPW1,3,0.000000 ,47.91300 ,-124.6370,NOS-NWLON , ,La Push, WA , +RDDA2,3,0.000000 ,67.57700 ,-164.0650,NOS-NWLON , ,Red Dog Dock, AK , +NSTP6,3,0.000000 ,14.28000 ,-170.6900,NOS-NWLON , ,Pago Pago, American Samoa , +WELM1,3,0.000000 ,43.32000 ,-70.56300,NOS-NWLON , ,Wells, ME , +ROBN4,3,0.000000 ,40.66000 ,-74.07000,NOS-NWLON , ,Robins Reef, NJ , +COVM2,3,0.000000 ,38.43000 ,-38.43000,NOS-NWLON , ,Cove Point, MD , +PGBP7,3,0.000000 ,13.43000 ,144.8000 ,NOS-NWLON , ,Pago Bay, Guam , +CHTS1,3,0.000000 ,32.78170 ,-79.92500,NOS-NWLON , ,Charleston, SC , +WLON7,3,0.000000 ,34.22671 ,-77.95330,NOS-NWLON , ,Wilmington, NC , +CTGM1,3,0.000000 ,44.62800 ,-67.26900,NOS-NWLON , ,Cutler, ME , +BEPB6,3,0.000000 ,32.37300 ,-64.70300,NOS-NWLON , ,St. Georges, BD , +RSJT2,3,0.000000 ,26.80170 ,-97.47000,NOS-NWLON , ,Norias, TX , +PCNT2,3,0.000000 ,28.44670 ,-96.39670,NOS-NWLON , ,Port O'Connor, TX , +BABT2,3,0.000000 ,27.29500 ,-97.40500,NOS-NWLON , ,Loyola Beach, TX , +IRDT2,3,0.000000 ,27.48000 ,-97.32000,NOS-NWLON , ,S. Bird Island, TX , +NGLT2,3,0.000000 ,27.82000 ,-97.20000,NOS-NWLON , ,Port Ingleside, TX , +RTAT2,3,0.000000 ,27.84000 ,-97.07000,NOS-NWLON , ,Port Aransas, TX , +SDRT2,3,0.000000 ,28.41000 ,-96.71000,NOS-NWLON , ,Seadrift, TX , +CLLT2,3,0.000000 ,29.56000 ,-95.07000,NOS-NWLON , ,Clear Lake, TX , +RLOT2,3,0.000000 ,29.52000 ,-94.51000,NOS-NWLON , ,Rollover Pass, TX , +TX080,3,0.000000 ,29.98000 ,-93.88170,NOS-NWLON , ,Rainbow Bridge, TX , +DILA1,3,0.000000 ,30.25000 ,-88.07500,NOS-NWLON , ,Dauphin Island, AL , +NWWH1,3,0.000000 ,21.95300 ,-159.3550,NOS-NWLON , ,Nawiliwili, HI , +MOKH1,3,0.000000 ,21.43200 ,-157.7900,NOS-NWLON , ,Mokuoloe, HI , +OBGN6,3,0.000000 ,44.70300 ,-75.49500,NOS-NWLON , ,Ogdensburg, NY , +ALXN6,3,0.000000 ,44.33000 ,-75.93300,NOS-NWLON , ,Alexandria Bay, NY , +PACF1,3,0.000000 ,30.15200 ,-85.66700,NOS-NWLON , ,Panama City, FL , +MCGA1,3,0.000000 ,30.64800 ,-88.05800,NOS-NWLON , ,Coast Guard Sector Mobile, AL , +OBLA1,3,0.000000 ,30.70800 ,-88.04300,NOS-NWLON , ,Mobile State Docks, AL , +ULAM6,3,0.000000 ,30.34800 ,-88.50500,NOS-NWLON , ,Dock E, Port of Pascagoula, MS , +PNLM6,3,0.000000 ,30.35800 ,-88.56700,NOS-NWLON , ,Pascagoula NOAA Lab, MS , +NWCL1,3,0.000000 ,30.02700 ,-90.11300,NOS-NWLON , ,New Canal Station, LA , +FCGT2,3,0.000000 ,28.93300 ,-95.30000,NOS-NWLON , ,USCG Freeport, TX , +ELFA2,3,0.000000 ,58.19300 ,-136.3430,NOS-NWLON , ,Elfin Cove, AK , +OVIA2,3,0.000000 ,59.44000 ,-151.7200,NOS-NWLON , ,Seldovia, AK , +ALIA2,3,0.000000 ,56.89800 ,-154.2470,NOS-NWLON , ,Alitak, AK , +WPTW1,3,0.000000 ,46.92700 ,-124.1300,NOS-NWLON , ,Westport, WA , +ILOH1,3,0.000000 ,19.73000 ,-155.0550,NOS-NWLON , ,Hilo, HI , +ATKA2,3,0.000000 ,52.23200 ,-174.1730,NOS-NWLON , ,Atka, AK , +WYCM6,3,0.000000 ,30.32500 ,-89.32500,NOS-NWLON , ,Bay Waveland Yacht Club, MS , +SHBL1,3,0.000000 ,29.86800 ,-89.67300,NOS-NWLON , ,Shell Beach, LA , +AMRL1,3,0.000000 ,29.45000 ,-91.34000,NOS-NWLON , ,LAWMA, Amerada Pass, LA , +CHSV3,3,0.000000 ,17.74800 ,-122.4180,NOS-NWLON , ,Christiansted Harbor, St Croix, VI , +OCIM2,3,0.000000 ,38.32800 ,-75.09200,NOS-NWLON , ,Ocean City Inlet, MD , +AROP4,3,0.000000 ,18.48000 ,-66.70200,NOS-NWLON , ,Arecibo, PR , +FRDP4,3,0.000000 ,18.33500 ,-65.63100,NOS-NWLON , ,Fajardow, PR , +MGZP4,3,0.000000 ,18.21800 ,-67.15900,NOS-NWLON , ,Mayaguez, PR , +PLSP4,3,0.000000 ,17.97300 ,-66.76200,NOS-NWLON , ,Penuelas, PR , +VQSP4,3,0.000000 ,18.15300 ,-65.44400,NOS-NWLON , ,Isabel Segunda, Vieques, PR , +YABP4,3,0.000000 ,18.05500 ,-65.83300,NOS-NWLON , ,Yabucoa Harbor, PR , +FRVM3,3,0.000000 ,41.70500 ,-71.16300,NOS-PORTS , ,Fall River, MA , +NWPR1,3,0.000000 ,41.50500 ,-71.32700,NOS-PORTS , ,Newport, RI , +CPTR1,3,0.000000 ,41.71700 ,-71.34300,NOS-PORTS , ,Conimicut Pt, RI , +PTCR1,3,0.000000 ,41.63500 ,-71.34000,NOS-PORTS , ,Prud Island, RI , +FOXR1,3,0.000000 ,41.80700 ,-71.40200,NOS-PORTS , ,Providence, RI , +QPTR1,3,0.000000 ,41.58500 ,-71.40800,NOS-PORTS , ,Quonset Pt, RI , +NWHC3,3,0.000000 ,41.28300 ,-72.90800,NOS-PORTS , ,New Haven, CT , +KPTN6,3,0.000000 ,40.81000 ,-73.76500,NOS-PORTS , ,Kings Point, NY , +BGNN4,3,0.000000 ,40.64000 ,-74.14700,NOS-PORTS , ,Bergen Point West Reach, NY , +NP016,3,0.000000 ,40.65700 ,-74.06500,NOS-PORTS , ,Robins Reef, NJ , +SDHN4,3,0.000000 ,40.46700 ,-74.01000,NOS-PORTS , ,Sandy Hook, NJ , +CMAN4,3,0.000000 ,38.96800 ,-74.96000,NOS-PORTS , ,Cape May, NJ , +SJSN4,3,0.000000 ,39.30500 ,-75.37500,NOS-PORTS , ,Ship John Shoal, NJ , +BDRN4,3,0.000000 ,40.08000 ,-74.87300,NOS-PORTS , ,Burlington, Delaware Rv NJ , +PHBP1,3,0.000000 ,39.93300 ,-75.14200,NOS-PORTS , ,Philadelphia, PA , +NBLP1,3,0.000000 ,40.13700 ,-74.75200,NOS-PORTS , ,Newbold, PA , +BRND1,3,0.000000 ,38.98700 ,-75.11300,NOS-PORTS , ,Brandywine Shl , +LWSD1,3,0.000000 ,38.78200 ,-75.12000,NOS-PORTS , ,Lewes, DE , +TCBM2,3,0.000000 ,39.21300 ,-76.24500,NOS-PORTS , ,Tolchester, MD , +CHCM2,3,0.000000 ,39.52700 ,-75.81000,NOS-PORTS , ,Chesapeake City, MD , +NP038,3,0.000000 ,38.43200 ,-76.38700,NOS-PORTS , ,Cove Point, MD , +SLIM2,3,0.000000 ,38.31700 ,-76.45200,NOS-PORTS , ,Solomons Island, MD , +PPTM2,3,0.000000 ,38.13300 ,-76.53300,NOS-PORTS , ,Piney Point , +KPTV2,3,0.000000 ,37.16700 ,-75.98800,NOS-PORTS , ,Kiptopeke, VA , +RPLV2,3,0.000000 ,37.53800 ,-76.01500,NOS-PORTS , ,Rappahannock Light, VA , +LWTV2,3,0.000000 ,37.99500 ,-76.46500,NOS-PORTS , ,Lewisetta, MD , +YKRV2,3,0.000000 ,37.25000 ,-76.33300,NOS-PORTS , ,York River E. Rear Rang, VA , +YKTV2,3,0.000000 ,37.22700 ,-76.47800,NOS-PORTS , ,Yorktown CG Train. Cntr, VA , +CRYV2,3,0.000000 ,36.88200 ,-76.34000,NOS-PORTS , ,S. Craney Island , +SWPV2,3,0.000000 ,36.94700 ,-76.33000,NOS-PORTS , ,Sewells Pt, VA , +CBBV2,3,0.000000 ,36.96700 ,-76.11300,NOS-PORTS , ,Chesapeake Bay Bridge, VA , +CHYV2,3,0.000000 ,36.93000 ,-76.00700,NOS-PORTS , ,Cape Henry , +MNPV2,3,0.000000 ,36.77800 ,-76.30200,NOS-PORTS , ,Money Pt, VA , +PMAF1,3,0.000000 ,27.66200 ,-82.59500,NOS-PORTS , ,Port Manatee, FL , +SAPF1,3,0.000000 ,27.76000 ,-82.62700,NOS-PORTS , ,St Petersburg, FL , +OPTF1,3,0.000000 ,27.85700 ,-82.55300,NOS-PORTS , ,Old Port Tampa, FL , +MCYF1,3,0.000000 ,27.91300 ,-82.42500,NOS-PORTS , ,Mckay Bay Entrance, FL , +MGPT2,3,0.000000 ,29.68200 ,-94.98500,NOS-PORTS , ,Morgans Point , +EPTT2,3,0.000000 ,29.48000 ,-94.91800,NOS-PORTS , ,Eagle Point , +GNJT2,3,0.000000 ,29.35800 ,-94.72500,NOS-PORTS , ,North Jetty , +GTOT2,3,0.000000 ,29.31000 ,-94.79300,NOS-PORTS , ,Galveston Pier 21, TX , +GPST2,3,0.000000 ,29.28500 ,-94.78800,NOS-PORTS , ,Galveston Pleasure Pier, TX , +FTPC1,3,0.000000 ,37.80700 ,-122.4650,NOS-PORTS , ,San Francisco, CA , +RTYC1,3,0.000000 ,37.50700 ,-122.2100,NOS-PORTS , ,Redwood City, CA , +AAMC1,3,0.000000 ,37.77200 ,-122.2980,NOS-PORTS , ,Alameda, CA , +NP120,3,0.000000 ,37.77200 ,-122.2980,NOS-PORTS , ,Oakland , +RCMC1,3,0.000000 ,37.92800 ,-122.4000,NOS-PORTS , ,Richmond, CA , +PCOC1,3,0.000000 ,38.05700 ,-122.0380,NOS-PORTS , ,Port Chicago, CA , +ASTO3,3,0.000000 ,46.20800 ,-123.7670,NOS-PORTS , ,Astoria, OR , +LOPW1,3,0.000000 ,46.10800 ,-122.9570,NOS-PORTS , ,Longview, WA , +TCNW1,3,0.000000 ,47.26700 ,-122.4130,NOS-PORTS , ,Tacoma, WA , +NKTA2,3,0.000000 ,60.68300 ,-151.3980,NOS-PORTS , ,Nikiski , +ANTA2,3,0.000000 ,61.23800 ,-149.8900,NOS-PORTS , ,Anchorage, AK , +KPTM2,3,0.000000 ,38.84000 ,-76.37000,NOS-PORTS , ,Kent Point, MD , +NP032,3,0.000000 ,29.36600 ,-94.78300,NOS-PORTS , ,Port Bolivar, TX , +WAHV2,3,0.000000 ,37.61000 ,-75.69000,NOS-PORTS , ,Wachapreague, VA , +BLTM3,3,0.000000 ,41.70500 ,-71.17300,NOS-PORTS , ,Borden Flats, MA , +CHLV2,3,0.000000 ,36.90500 ,-75.69700,NOS-PORTS , ,Chesapeake Light, VA , +GLPV2,3,0.000000 ,37.25000 ,-76.50000,NOS-PORTS , ,Gloucester Pt, VA , +WNDV2,3,0.000000 ,37.61500 ,-76.29000,NOS-PORTS , ,Windmill Pt, VA , +APAM2,3,0.000000 ,38.98300 ,-76.48000,NOS-PORTS , ,Annapolis, MD , +DELD1,3,0.000000 ,39.58170 ,-75.58830,NOS-PORTS , ,Delaware City, DE , +RDYD1,3,0.000000 ,39.55800 ,-75.57300,NOS-PORTS , ,Reedy Point, DE , +BATN6,3,0.000000 ,40.70000 ,-74.01500,NOS-PORTS , ,The Battery, NY , +DTLM4,3,180.0000 ,45.99200 ,-83.89700,NOS-PORTS , ,De Tour Village, MI , +RCKM4,3,179.6000 ,46.26500 ,-84.19200,NOS-PORTS , ,Rock Cut, MI , +LTRM4,3,185.0000 ,46.48500 ,-84.30000,NOS-PORTS , ,Little Rapids, MI , +SWPM4,3,185.7000 ,46.50200 ,-84.37300,NOS-PORTS , ,S.W. Pier, MI , +PTIM4,3,186.1000 ,46.48500 ,-84.63200,NOS-PORTS , ,Point Iroquois, MI , +FSKM2,3,0.000000 ,39.22000 ,-76.52800,NOS-PORTS , ,Baltimore Key Bridge, MD , +BLTM2,3,0.000000 ,39.27000 ,-76.58000,NOS-PORTS , ,Baltimore, MD , +WASD2,3,0.000000 ,38.87300 ,-77.02200,NOS-PORTS , ,Washington, DC , +NP157,3,0.000000 ,33.74600 ,-118.2150,NOS-PORTS , ,Pier F , +NP163,3,0.000000 ,33.76800 ,-118.2260,NOS-PORTS , ,Pier S , +NP027,3,0.000000 ,27.64300 ,-82.65700,NOS-PORTS , ,Sunshine Skyway, FL , +NP158,3,0.000000 ,33.73300 ,-118.1860,NOS-PORTS , ,Pier J , +NP159,3,0.000000 ,33.73500 ,-118.2410,NOS-PORTS , ,Pier 400 , +NP160,3,0.000000 ,33.76600 ,-118.2400,NOS-PORTS , ,Badger Ave. Br. , +NP161,3,0.000000 ,33.76400 ,-118.2650,NOS-PORTS , ,Berth 161 , +NP162,3,0.000000 ,33.71600 ,-118.2460,NOS-PORTS , ,Angels Gate , +DOMV2,3,0.000000 ,36.96200 ,-76.42500,NOS-PORTS , ,Dominion Pier 11, VA , +NP191,3,0.000000 ,36.98200 ,-76.32200,NOS-PORTS , ,Willoughby Degaussing, VA , +ERTF1,3,0.000000 ,27.91700 ,-82.44300,NOS-PORTS , ,Berth 223, FL , +SBLF1,3,0.000000 ,27.92300 ,-82.44500,NOS-PORTS , ,Seabulk, FL , +NP194,3,0.000000 ,27.93300 ,-82.43300,NOS-PORTS , ,Tpa Cruise Terminal 2, FL , +NP195,3,0.000000 ,37.80000 ,-122.3300,NOS-PORTS , ,Oakland Middle Harbor, CA , +NP196,3,0.000000 ,30.64800 ,-88.05800,NOS-PORTS , ,Coast Guard Sector, AL , +NP197,3,0.000000 ,30.70800 ,-88.04300,NOS-PORTS , ,Mobile, AL , +NP198,3,0.000000 ,30.22800 ,-88.02500,NOS-PORTS , ,Fort Morgan, AL , +NP199,3,0.000000 ,47.26700 ,-122.4130,NOS-PORTS , ,Tacoma, WA , +NP200,3,0.000000 ,38.03800 ,-122.1200,NOS-PORTS , ,Union Pacific (Uprr), CA , +NP201,3,0.000000 ,30.25000 ,-88.07500,NOS-PORTS , ,Dauphin Island, AL , +OH001,3,219.3080 ,41.38350 ,-84.55490,OHDOT , ,1-SR127 @ SR249 , +OH002,3,297.3150 ,40.63050 ,-83.61480,OHDOT , ,2-Hardin County Garage , +OH003,3,224.9240 ,41.17300 ,-84.76950,OHDOT , ,3-US24 @ Indiana Line , +OH004,3,223.8570 ,40.94710 ,-84.27200,OHDOT , ,4-US224 @ SR190 , +OH005,3,236.0630 ,40.95320 ,-84.72680,OHDOT , ,5- US30 @ SR49 North , +OH006,3,255.9000 ,40.83310 ,-83.25620,OHDOT , ,6-Wyandot County Garage , +OH007,3,308.0530 ,40.82630 ,-82.97310,OHDOT , ,7-US30 Bypass @ SR4 , +OH008,3,281.1550 ,41.17620 ,-82.56250,OHDOT , ,8-Huron County Garage , +OH009,3,334.8300 ,40.85500 ,-81.41690,OHDOT , ,9-I77 MM109 @ Beldon Village , +OH010,3,300.8380 ,41.32110 ,-80.73150,OHDOT , ,10-Trumbull County Garage , +OH011,3,232.3510 ,40.29780 ,-81.84180,OHDOT , ,11-Coshocton County Garage , +OH012,3,315.6840 ,39.66820 ,-82.61840,OHDOT , ,12-US-33 @ SR793 , +OH013,3,317.9740 ,40.38290 ,-82.51100,OHDOT , ,13-Knox County Garage , +OH014,3,262.8100 ,39.72040 ,-82.21560,OHDOT , ,14-Perry County Garage , +OH015,3,306.1440 ,39.52520 ,-83.47580,OHDOT , ,15-Fayette County Garage , +OH016,3,208.1380 ,39.61080 ,-82.94450,OHDOT , ,16-Pickaway County Garage , +OH017,3,287.8940 ,40.60030 ,-83.13960,OHDOT , ,17-Marion County Garage , +OH018,3,326.0120 ,40.27570 ,-83.53590,OHDOT , ,18-US33 @ SR739 , +OH019,3,293.9440 ,40.03040 ,-83.80110,OHDOT , ,19-US68 @ SLM 1.4 , +OH020,3,339.4900 ,40.10650 ,-84.77060,OHDOT , ,20-SR502 @ SLM 0.5 , +OH021,3,419.9720 ,40.37570 ,-83.74000,OHDOT , ,21-US33 @ SR540 , +OH022,3,266.3330 ,40.54550 ,-84.76460,OHDOT , ,22-SR29 @ SLM 0.8 , +OH023,3,264.8600 ,38.78630 ,-83.55700,OHDOT , ,23-Adams County Garage , +OH024,3,286.3310 ,38.85960 ,-83.87820,OHDOT , ,24-Brown County Garage , +OH025,3,335.4180 ,39.20070 ,-83.60180,OHDOT , ,25-Highland County Garage , +OH026,3,242.5770 ,39.07040 ,-82.57520,OHDOT , ,26-SR32 @ SLM 14.5 , +OH027,3,170.9040 ,38.51570 ,-82.65240,OHDOT , ,27-US52 @ Ice Creek , +OH028,3,170.6760 ,39.04520 ,-83.02500,OHDOT , ,28-US23 @ SLM 6.5 , +OH029,3,211.2600 ,39.36590 ,-83.02260,OHDOT , ,29-US35 @ MM 14.76 , +OH030,3,164.2200 ,38.85970 ,-82.99030,OHDOT , ,30-US23 @ SLM 9.2 , +OH031,3,200.0030 ,39.32640 ,-82.13180,OHDOT , ,31-Athens County Garage , +OH032,3,172.0680 ,38.84160 ,-82.23870,OHDOT , ,32-Gallia County Garage , +OH033,3,231.3930 ,39.53660 ,-82.44280,OHDOT , ,33-Hocking County Garage , +OH034,3,218.1460 ,39.06520 ,-81.94340,OHDOT , ,34-Meigs County Garage , +OH035,3,359.9960 ,39.77700 ,-81.10190,OHDOT , ,35-Monroe County Garage , +OH036,3,207.9490 ,39.67810 ,-81.88400,OHDOT , ,36-Morgan County Garage , +OH037,3,231.5760 ,39.20250 ,-82.48710,OHDOT , ,37-Vinton County Garage , +OH038,3,341.1980 ,40.58810 ,-81.08160,OHDOT , ,38-Carroll County Garage , +OH039,3,351.3620 ,40.76970 ,-80.81170,OHDOT , ,39-Columbiana County Garage , +OH040,3,326.4030 ,39.41410 ,-83.84530,OHDOT , ,40-Clinton County Garage , +OH041,3,250.3170 ,40.52930 ,-81.91910,OHDOT , ,41-Holmes County Garage , +OH042,3,342.3020 ,40.37650 ,-80.72240,OHDOT , ,42-Jefferson County Garage , +OH043,3,339.8480 ,39.83070 ,-84.81360,OHDOT , ,51-IR70 MM 0 , +OH044,3,317.1310 ,39.83830 ,-84.49840,OHDOT , ,52-IR70 MM 16 , +OH045,3,255.8250 ,39.86590 ,-84.05830,OHDOT , ,53-IR70 MM 41 , +OH046,3,319.8730 ,39.92390 ,-83.68780,OHDOT , ,54-IR70 MM 62 , +OH047,3,275.5490 ,39.94020 ,-82.23750,OHDOT , ,55-IR70 MM 142 , +OH048,3,302.7780 ,39.98100 ,-81.73200,OHDOT , ,56-IR70 MM 169 , +OH049,3,361.1530 ,40.05690 ,-81.23680,OHDOT , ,57-IR70 MM 198 , +OH050,3,224.6200 ,40.04760 ,-80.74590,OHDOT , ,58-IR470 MM 6 , +OH051,3,292.7350 ,39.42680 ,-84.08820,OHDOT , ,59-IR71 MM 34 , +OH052,3,325.9710 ,39.57060 ,-83.70470,OHDOT , ,60-IR71 MM 60 , +OH053,3,313.7580 ,39.70500 ,-83.45210,OHDOT , ,61-IR71 MM 75 , +OH054,3,267.0230 ,39.81950 ,-83.18490,OHDOT , ,62-IR71 MM 91 , +OH055,3,326.0810 ,40.37160 ,-82.83560,OHDOT , ,63-IR71 MM 139 , +OH056,3,398.3160 ,40.57020 ,-82.62370,OHDOT , ,64-IR71 MM 158 , +OH057,3,336.7700 ,40.78160 ,-82.41290,OHDOT , ,65-IR71 MM 174 , +OH058,3,322.7160 ,40.91680 ,-82.13330,OHDOT , ,66-IR71 MM 194 , +OH059,3,299.3690 ,41.03320 ,-81.88760,OHDOT , ,67-IR71 MM 209 , +OH060,3,338.8280 ,41.22790 ,-81.62790,OHDOT , ,68-IR271 @ IR77 , +OH061,3,153.0290 ,39.19090 ,-84.77740,OHDOT , ,69-IR275 MM 21 , +OH062,3,233.2480 ,39.18780 ,-84.26350,OHDOT , ,70-IR275 HAM/CLER , +OH063,3,298.0930 ,39.65570 ,-84.11290,OHDOT , ,71-I675 MONT/GRE , +OH064,3,194.2470 ,39.32740 ,-84.42280,OHDOT , ,72-IR75 MM 19 , +OH065,3,209.6000 ,39.44140 ,-84.33680,OHDOT , ,73-IR75 MM 29 , +OH066,3,275.3490 ,39.59510 ,-84.23980,OHDOT , ,74-IR75 MM 40 , +OH067,3,276.1900 ,39.93360 ,-84.19040,OHDOT , ,75-IR75 MM 65 , +OH068,3,280.2400 ,40.18150 ,-84.21760,OHDOT , ,76-IR75 MM 84 , +OH069,3,304.9300 ,40.49610 ,-84.16590,OHDOT , ,77-IR75 MM 105 , +OH070,3,267.4420 ,40.68150 ,-84.12900,OHDOT , ,78-IR75 MM 119 , +OH071,3,257.4000 ,40.88720 ,-83.87430,OHDOT , ,79-IR75 MM 141 , +OH072,3,181.1830 ,39.40520 ,-81.42840,OHDOT , ,80-IR77 MM 0 , +OH073,3,223.9630 ,39.63060 ,-81.46320,OHDOT , ,81-IR77 MM 16 , +OH074,3,246.1600 ,39.90940 ,-81.52720,OHDOT , ,82-IR77 MM 36 , +OH075,3,276.6380 ,40.23760 ,-81.55470,OHDOT , ,83-IR77 MM 59 , +OH076,3,276.2250 ,40.64600 ,-81.45180,OHDOT , ,84-IR77 MM 93 , +OH077,3,182.9700 ,41.37320 ,-82.56910,OHDOT , ,85-SR2 @ Huron River , +OH078,3,201.9850 ,41.42680 ,-82.07760,OHDOT , ,86-IR90 @ SR57 , +OH079,3,246.4120 ,41.76560 ,-80.99270,OHDOT , ,87-IR90 ATB/LAKE , +OH080,3,267.7090 ,41.82810 ,-80.77410,OHDOT , ,88-IR90 @ SR11 , +OH081,3,207.3160 ,41.93720 ,-80.51940,OHDOT , ,89-IR90 @ PA Line , +OH082,3,283.8490 ,41.18430 ,-80.51960,OHDOT , ,90-IR80 @ PA Line , +OH083,3,301.5830 ,41.10080 ,-81.02230,OHDOT , ,91-IR76 MAH/POR , +OH084,3,335.2960 ,41.10010 ,-81.37720,OHDOT , ,92-IR76 POR/SUM , +OH085,3,316.8150 ,41.46480 ,-80.71190,OHDOT , ,94-SR11 ATB/TRUM , +OH086,3,347.6300 ,40.89990 ,-80.72310,OHDOT , ,95-SR11 MAH/COL , +OH087,3,230.4080 ,40.11220 ,-83.03510,OHDOT , ,97-SR315 @ I270 , +OH088,3,297.0130 ,40.08010 ,-82.86460,OHDOT , ,98-SR161@18.1 , +OH089,3,317.0240 ,40.79640 ,-81.75590,OHDOT , ,99-US30 @ Dalton Lake , +OH090,3,322.9180 ,40.98800 ,-81.09910,OHDOT , ,100-SR225 @ Berlin Reservoir , +OH091,3,246.9800 ,41.69140 ,-80.85490,OHDOT , ,101-SR45 @ Rock Creek , +OH092,3,296.5590 ,41.78190 ,-80.57210,OHDOT , ,102-SR7 @ SR167 East , +OH093,3,242.7330 ,39.83960 ,-82.76550,OHDOT , ,103-US33 @ Pickerington Road , +OH094,3,356.7180 ,40.56170 ,-82.27300,OHDOT , ,104-SR 3 KNOX/Ashland , +OH095,3,268.3620 ,39.86530 ,-84.18870,OHDOT , ,105-IR70/IR75 , +OH096,3,298.4990 ,40.50920 ,-81.61360,OHDOT , ,106-SR39 @ Sugarcreek , +OH097,3,268.0240 ,40.40400 ,-81.33250,OHDOT , ,107-US250 @ Ulrichsville , +OH098,3,317.7320 ,40.72790 ,-81.10350,OHDOT , ,108-SR183 @ Minerva , +OH099,3,365.3360 ,40.32500 ,-80.92440,OHDOT , ,109-SR22 @ SR151 , +OH100,3,216.3900 ,40.57010 ,-80.66690,OHDOT , ,110-SR7 @ SR213 , +OH101,3,263.1620 ,39.93360 ,-82.78950,OHDOT , ,111-I70 MM 114 , +OH102,3,304.6360 ,39.55120 ,-84.79950,OHDOT , ,112-SR27 @ SLM 21 , +OH103,3,155.7520 ,39.06060 ,-84.42280,OHDOT , ,113-IR275 @ US52 , +OH104,3,298.2440 ,40.26700 ,-82.92780,OHDOT , ,114-IR71 @ US36 , +OH105,3,279.8070 ,40.10580 ,-82.98020,OHDOT , ,115-IR71 @ Schrock Road , +OH106,3,268.9560 ,39.97610 ,-83.11870,OHDOT , ,116-IR70W @ I270 , +OH107,3,298.5170 ,39.95990 ,-83.34490,OHDOT , ,117-IR70 @ SR29 , +OH108,3,216.0200 ,39.95000 ,-83.01530,OHDOT , ,118-IR70/IR71/SR315 , +OH109,3,225.5720 ,39.89200 ,-83.03930,OHDOT , ,119-IR71S @ I270 , +OH110,3,229.1110 ,39.88880 ,-82.88290,OHDOT , ,120-US33 @ Hamilton Road , +OH111,3,248.2330 ,40.00140 ,-82.92120,OHDOT , ,121-I-670 Over Airport Connector , +OH112,3,323.1980 ,41.20370 ,-81.67860,OHDOT , ,122-Medina Line Rd. Over I-271 , +OH113,3,299.8590 ,41.18110 ,-81.48860,OHDOT , ,123-Steels Corner Rd. /Mud Creek , +OH114,3,313.6020 ,41.28450 ,-81.41910,OHDOT , ,124-Old Mill Rd. Over I-480 , +OH115,3,316.5610 ,41.11140 ,-81.65440,OHDOT , ,125-Ridgewood Rd. Over Rt 21 , +OH116,3,342.2820 ,40.99710 ,-81.49470,OHDOT , ,126-Killian Rd. Over I-77 , +OH117,3,259.1920 ,41.43920 ,-84.80070,OHDOT , ,127-US 6 Williams County , +OH118,3,300.1710 ,41.63490 ,-84.76640,OHDOT , ,128-US 20 @ SLM 1.5 , +OH119,3,262.9060 ,41.64360 ,-84.57380,OHDOT , ,129-US 20 @ SLM 11.5 , +OH120,3,217.4820 ,41.58080 ,-84.33410,OHDOT , ,130-US 20 @ SLM 2.5 Fulton , +OH121,3,222.4170 ,41.67810 ,-84.23210,OHDOT , ,131-US 20 @ SLM 9.5 Fulton , +OH122,3,220.8010 ,41.65830 ,-83.91220,OHDOT , ,132-SR 64 @ SLM 6.0 Fulton , +OH123,3,218.6710 ,41.42290 ,-84.34260,OHDOT , ,133-US 6 @ SLM .5 , +OH124,3,225.3620 ,41.17350 ,-84.13250,OHDOT , ,134-Rt 108 / US 6 @ SLM .5 , +OH125,3,197.6180 ,41.40830 ,-84.05780,OHDOT , ,135-US Rt 6 @ Maumee River , +OH126,3,219.2710 ,41.17120 ,-83.93880,OHDOT , ,136-Rt 65 South Henry County , +OH127,3,204.9790 ,41.53080 ,-83.85400,OHDOT , ,137-SR 64 @ SLM 7.5 Fulton , +OH128,3,195.7950 ,41.41510 ,-83.86030,OHDOT , ,138-US 24 near Grand Rapids , +OH129,3,189.1910 ,41.59240 ,-83.69120,OHDOT , ,139-I-80 & I-475 Lucas , +OH130,3,200.4280 ,41.68760 ,-83.69350,OHDOT , ,140-IR 475 @ US 23 Split , +OH131,3,177.0820 ,41.67460 ,-83.57290,OHDOT , ,141-IR 75 @ SLM 4.9 475 Split , +OH132,3,177.6200 ,41.65846 ,-83.51023,OHDOT , ,142-I-280 @ MP 3.5 - Craig Bridge , +OH133,3,219.2720 ,41.18220 ,-83.65010,OHDOT , ,143-SR 2 @ MP 31.8 Lucas , +OH134,3,202.4900 ,41.43790 ,-83.61940,OHDOT , ,144-IR 75 & Eagleville Rd. , +OH135,3,196.3970 ,41.53320 ,-83.62670,OHDOT , ,145-IR 75 @ SLM 18.36 Wood , +OH136,3,191.5140 ,41.56740 ,-83.57350,OHDOT , ,146-I-75 @ I-475 Wood , +OH137,3,191.5140 ,41.56740 ,-83.57350,OHDOT , ,147-I-75 @ I-80 Wood County , +OH138,3,208.5670 ,41.34100 ,-83.41720,OHDOT , ,148-US-6 @ Rt. 23 , +OH139,3,196.0740 ,41.49460 ,-83.47030,OHDOT , ,149-US-20 @ Lemoyne Rd. , +OH140,3,191.8140 ,41.52230 ,-83.46270,OHDOT , ,150-I-280 @ Libbey Rd. , +OH141,3,176.9090 ,41.51030 ,-82.98790,OHDOT , ,151-SR 2 @ Portage River Bridge , +OH142,3,173.8260 ,41.47930 ,-82.83440,OHDOT , ,152-SR-2@28.5 Bay Br. , +OH143,3,192.5360 ,41.43640 ,-83.32860,OHDOT , ,153-US-20 @ Sugar Creek , +OH144,3,187.4990 ,41.36700 ,-83.10840,OHDOT , ,154-US-6 @ Sandusky River Br , +OH145,3,178.0840 ,41.41450 ,-82.89900,OHDOT , ,155-US 6 @ Pickeral Creek , +OH146,3,231.4330 ,41.28690 ,-82.88860,OHDOT , ,156-CR 296 & US 20 MP 31.0 , +OH147,3,255.8900 ,41.06400 ,-83.40160,OHDOT , ,157-US 23 @ MP 5.5 Seneca , +OH148,3,224.1170 ,41.20620 ,-83.32290,OHDOT , ,158-SR 12 @ Mp 7.0 Seneca , +OH149,3,229.6030 ,41.09680 ,-83.20080,OHDOT , ,159-US 224 @ SR 53 Seneca , +OH150,3,284.5380 ,41.02610 ,-82.90700,OHDOT , ,160-SR 4 @ MP 2.35 Seneca , +OH151,3,206.5160 ,41.46780 ,-81.88560,OHDOT , ,161-I-90 @ SR-252 , +OH152,3,181.1630 ,41.47020 ,-81.67680,OHDOT , ,162-I-90 @ Abbey Rd. , +OH153,3,189.0610 ,41.55370 ,-81.57940,OHDOT , ,163-I-90 @ E. 140th , +OH154,3,265.5760 ,41.57660 ,-81.44110,OHDOT , ,164-I-271 @ I-90 , +OH155,3,239.0700 ,41.37660 ,-81.97240,OHDOT , ,165-I-480 @ SR-10 , +OH156,3,242.9550 ,41.39870 ,-81.80880,OHDOT , ,166-I-71 @ Snow Rd. , +OH157,3,225.6700 ,41.40010 ,-81.64730,OHDOT , ,167-I-77 @ I-480 , +OH158,3,322.8850 ,41.41910 ,-81.51350,OHDOT , ,168-I-480 N @ Miles Rd. , +OH159,3,328.3110 ,41.51490 ,-81.44140,OHDOT , ,169-I-271 @ US-322 , +OH160,3,310.3920 ,41.28930 ,-81.79590,OHDOT , ,170-I-71 @ Drake Rd. , +OH161,3,320.6190 ,41.30800 ,-81.64250,OHDOT , ,171-I-77 @ SR-82 , +OH162,3,243.1420 ,41.43880 ,-81.40650,OHDOT , ,172-US-422 @ Chagrin Blvd. , +OH163,3,341.0960 ,41.38050 ,-81.20490,OHDOT , ,173-US-422 @ SR-44 , +OH164,3,356.1310 ,41.45980 ,-81.05120,OHDOT , ,174-SR-582 @ SR-87 , +OH165,3,356.7210 ,41.56970 ,-81.20270,OHDOT , ,175-SR-44 @ Mentor Rd. , +OH166,3,387.8900 ,41.66450 ,-81.04400,OHDOT , ,176-SR-528 @ SR-166 , +OH167,3,317.0730 ,41.63760 ,-81.29180,OHDOT , ,177-I-90 @ Hermitage Rd. , +OH168,3,263.1250 ,41.71940 ,-81.13080,OHDOT , ,178-I-90 @ Paine Rd. , +OH169,3,207.0430 ,41.78350 ,-81.13450,OHDOT , ,179-US-20 @ Parmly Rd. , +ADAX ,2,295.0000 ,34.79890 ,-96.66920,OK-Meso , ,Ada , +ALTU ,2,416.0000 ,34.58720 ,-99.33780,OK-Meso , ,Altus , +ANTL ,2,179.0000 ,34.22420 ,-95.70060,OK-Meso , ,Antlers , +ARNE ,2,719.0000 ,36.07280 ,-99.90140,OK-Meso , ,Arnett , +BEAV ,2,758.0000 ,36.80220 ,-100.5303,OK-Meso , ,Beaver , +BESS ,2,511.0000 ,35.40170 ,-99.05890,OK-Meso , ,Bessie , +BIXB ,2,184.0000 ,35.96250 ,-95.86610,OK-Meso , ,Bixby , +BLAC ,2,304.0000 ,36.75440 ,-97.25390,OK-Meso , ,Blackwell , +BOIS ,2,1267.000 ,36.69250 ,-102.4972,OK-Meso , ,Boise City , +BOWL ,2,281.0000 ,35.17170 ,-96.63140,OK-Meso , ,Bowlegs , +BREC ,2,352.0000 ,36.41190 ,-97.69420,OK-Meso , ,Breckinridge , +BRIS ,2,239.0000 ,35.78080 ,-96.35390,OK-Meso , ,Bristow , +BUFF ,2,559.0000 ,36.83140 ,-99.64080,OK-Meso , ,Buffalo , +BURB ,2,301.0000 ,36.63420 ,-96.81110,OK-Meso , ,Burbank , +BURN ,2,228.0000 ,33.89390 ,-97.26920,OK-Meso , ,Burneyville , +BUTL ,2,520.0000 ,35.59140 ,-99.27060,OK-Meso , ,Butler , +BYAR ,2,345.0000 ,34.84970 ,-97.00330,OK-Meso , ,Byars , +CALV ,2,234.0000 ,34.99250 ,-96.33420,OK-Meso , ,Calvin , +CAMA ,2,589.0000 ,36.02830 ,-99.34640,OK-Meso , ,Camargo , +CENT ,2,208.0000 ,34.60860 ,-96.33310,OK-Meso , ,Centrahoma , +CHAN ,2,291.0000 ,35.65280 ,-96.80420,OK-Meso , ,Chandler , +CHER ,2,362.0000 ,36.74810 ,-98.36280,OK-Meso , ,Cherokee , +CHEY ,2,694.0000 ,35.54580 ,-99.72750,OK-Meso , ,Cheyenne , +CHIC ,2,328.0000 ,35.03190 ,-97.91440,OK-Meso , ,Chickasha , +CLAY ,2,186.0000 ,34.65560 ,-95.32610,OK-Meso , ,Clayton , +CLOU ,2,221.0000 ,34.22310 ,-95.24940,OK-Meso , ,Cloudy , +COOK ,2,299.0000 ,35.67940 ,-94.84860,OK-Meso , ,Cookson , +COPA ,2,250.0000 ,36.90970 ,-95.88530,OK-Meso , ,Copan , +DURA ,2,197.0000 ,33.92060 ,-96.32000,OK-Meso , ,Durant , +ELRE ,2,419.0000 ,35.54810 ,-98.03580,OK-Meso , ,El Reno , +ERIC ,2,603.0000 ,35.20470 ,-99.80330,OK-Meso , ,Erick , +EUFA ,2,200.0000 ,35.30000 ,-95.65830,OK-Meso , ,Eufaula , +FAIR ,2,405.0000 ,36.26360 ,-98.49780,OK-Meso , ,Fairview , +FORA ,2,330.0000 ,36.84030 ,-96.42780,OK-Meso , ,Foraker , +FREE ,2,530.0000 ,36.72560 ,-99.14220,OK-Meso , ,Freedom , +FTCB ,2,422.0000 ,35.14920 ,-98.46670,OK-Meso , ,Fort Cobb , +GOOD ,2,997.0000 ,36.60170 ,-101.6014,OK-Meso , ,Goodwell , +GUTH ,2,330.0000 ,35.84890 ,-97.48000,OK-Meso , ,Guthrie , +HASK ,2,183.0000 ,35.74750 ,-95.64000,OK-Meso , ,Haskell , +HINT ,2,493.0000 ,35.48440 ,-98.48220,OK-Meso , ,Hinton , +HOBA ,2,478.0000 ,34.98970 ,-99.05250,OK-Meso , ,Hobart , +HOLL ,2,497.0000 ,34.68610 ,-99.83390,OK-Meso , ,Hollis , +HOOK ,2,912.0000 ,36.85530 ,-101.2253,OK-Meso , ,Hooker , +HUGO ,2,175.0000 ,34.03080 ,-95.54000,OK-Meso , ,Hugo , +IDAB ,2,110.0000 ,33.83030 ,-94.88060,OK-Meso , ,Idabel , +JAYX ,2,304.0000 ,36.48170 ,-94.78310,OK-Meso , ,Jay , +KENT ,2,1322.000 ,36.82970 ,-102.8781,OK-Meso , ,Kenton , +KETC ,2,341.0000 ,34.52890 ,-97.76470,OK-Meso , ,Ketchum Ranch , +KING ,2,319.0000 ,35.88060 ,-97.91110,OK-Meso , ,Kingfisher , +LAHO ,2,396.0000 ,36.38440 ,-98.11140,OK-Meso , ,Lahoma , +LANE ,2,181.0000 ,34.30860 ,-95.99750,OK-Meso , ,Lane , +MADI ,2,232.0000 ,34.03610 ,-96.94310,OK-Meso , ,Madill , +MANG ,2,460.0000 ,34.83610 ,-99.42390,OK-Meso , ,Mangum , +MARE ,2,327.0000 ,36.06440 ,-97.21280,OK-Meso , ,Marena , +MAYR ,2,555.0000 ,36.98690 ,-99.01110,OK-Meso , ,May Ranch , +MCAL ,2,230.0000 ,34.88190 ,-95.78080,OK-Meso , ,McAlester , +MEDF ,2,332.0000 ,36.79220 ,-97.74560,OK-Meso , ,Medford , +MEDI ,2,487.0000 ,34.72920 ,-98.56670,OK-Meso , ,Medicine Park , +MIAM ,2,247.0000 ,36.88860 ,-94.84470,OK-Meso , ,Miami , +MINC ,2,430.0000 ,35.27220 ,-97.95560,OK-Meso , ,Minco , +MTHE ,2,285.0000 ,34.31080 ,-94.82280,OK-Meso , ,Mt Herman , +NEWK ,2,366.0000 ,36.89810 ,-96.91060,OK-Meso , ,Newkirk , +NOWA ,2,206.0000 ,36.74360 ,-95.60780,OK-Meso , ,Nowata , +OILT ,2,255.0000 ,36.03140 ,-96.49720,OK-Meso , ,Oilton , +OKEM ,2,263.0000 ,35.43170 ,-96.26280,OK-Meso , ,Okemah , +OKMU ,2,205.0000 ,35.58110 ,-95.91500,OK-Meso , ,Okmulgee , +PAUL ,2,291.0000 ,34.71560 ,-97.22940,OK-Meso , ,Pauls Valley , +PAWN ,2,283.0000 ,36.36110 ,-96.76970,OK-Meso , ,Pawnee , +PERK ,2,292.0000 ,35.99830 ,-97.04810,OK-Meso , ,Perkins , +PRYO ,2,201.0000 ,36.36890 ,-95.27170,OK-Meso , ,Pryor , +PUTN ,2,589.0000 ,35.89920 ,-98.96030,OK-Meso , ,Putnam , +REDR ,2,293.0000 ,36.35560 ,-97.15310,OK-Meso , ,Red Rock , +RETR ,2,538.0000 ,35.12310 ,-99.35970,OK-Meso , ,Retrop , +RING ,2,283.0000 ,34.19390 ,-97.58830,OK-Meso , ,Ringling , +SALL ,2,157.0000 ,35.43810 ,-94.79780,OK-Meso , ,Sallisaw , +SEIL ,2,545.0000 ,36.19030 ,-99.04060,OK-Meso , ,Seiling , +SHAW ,2,328.0000 ,35.36500 ,-96.94830,OK-Meso , ,Shawnee , +SKIA ,2,282.0000 ,36.41470 ,-96.03720,OK-Meso , ,Skiatook , +SLAP ,2,774.0000 ,36.59690 ,-100.2619,OK-Meso , ,Slapout , +SPEN ,2,373.0000 ,35.54220 ,-97.34110,OK-Meso , ,Spencer , +STIG ,2,173.0000 ,35.26530 ,-95.18140,OK-Meso , ,Stigler , +STIL ,2,272.0000 ,36.12110 ,-97.09500,OK-Meso , ,Stillwater , +STUA ,2,256.0000 ,34.87640 ,-96.07000,OK-Meso , ,Stuart , +SULP ,2,320.0000 ,34.56610 ,-96.95060,OK-Meso , ,Sulphur , +TAHL ,2,290.0000 ,35.97280 ,-94.98690,OK-Meso , ,Tahlequah , +TALI ,2,204.0000 ,34.71060 ,-95.01170,OK-Meso , ,Talihina , +TIPT ,2,387.0000 ,34.43940 ,-99.13750,OK-Meso , ,Tipton , +TISH ,2,268.0000 ,34.33280 ,-96.67940,OK-Meso , ,Tishomingo , +VINI ,2,236.0000 ,36.77530 ,-95.22110,OK-Meso , ,Vinita , +WALT ,2,308.0000 ,34.36470 ,-98.32060,OK-Meso , ,Walters , +WASH ,2,345.0000 ,34.98170 ,-97.52080,OK-Meso , ,Washington , +WATO ,2,517.0000 ,35.84220 ,-98.52610,OK-Meso , ,Watonga , +WAUR ,2,283.0000 ,34.16780 ,-97.98780,OK-Meso , ,Waurika , +WEAT ,2,538.0000 ,35.50810 ,-98.77530,OK-Meso , ,Weatherford , +WEBB ,2,145.0000 ,35.47280 ,-95.13220,OK-Meso , ,Webbers Falls , +WEST ,2,348.0000 ,36.01110 ,-94.64500,OK-Meso , ,Westville , +WILB ,2,199.0000 ,34.90080 ,-95.34780,OK-Meso , ,Wilburton , +WIST ,2,143.0000 ,34.98470 ,-94.68810,OK-Meso , ,Wister , +WOOD ,2,625.0000 ,36.42330 ,-99.41690,OK-Meso , ,Woodward , +WYNO ,2,269.0000 ,36.51720 ,-96.34220,OK-Meso , ,Wynona , +NINN ,2,356.0000 ,34.96780 ,-97.95140,OK-Meso , ,Ninnekah , +ACME ,2,397.0000 ,34.80560 ,-98.00560,OK-Meso , ,Acme , +APAC ,2,440.0000 ,34.91390 ,-98.29170,OK-Meso , ,Apache , +HECT ,2,243.0000 ,35.84360 ,-96.00560,OK-Meso , ,Hectorville , +VANO ,2,320.0000 ,34.78900 ,-96.84300,OK-Meso , ,Vanoss , +ALV2 ,2,439.0000 ,36.70830 ,-98.70750,OK-Meso , ,Alva , +GRA2 ,2,341.0000 ,34.23920 ,-98.74440,OK-Meso , ,Grandfield , +PORT ,2,193.0000 ,35.82580 ,-95.56000,OK-Meso , ,Porter , +INOL ,2,190.0000 ,36.14220 ,-95.45050,OK-Meso , ,Inola , +NRMN ,2,357.0000 ,35.23610 ,-97.46490,OK-Meso , ,Norman , +CLRM ,2,207.0000 ,36.32130 ,-95.64610,OK-Meso , ,Claremore , +NEWP ,2,283.0000 ,34.22820 ,-97.20070,OK-Meso , ,Newport , +BROK ,2,113.0000 ,34.04330 ,-94.62440,OK-Meso , ,Broken Bow , +MRSH ,2,311.0000 ,36.11680 ,-97.60680,OK-Meso , ,Marshall , +ARD2 ,2,266.0000 ,34.19260 ,-97.08570,OK-Meso , ,Ardmore , +FITT ,2,350.0000 ,34.55300 ,-96.71790,OK-Meso , ,Fittstown , +B0800,3,296.0000 ,-19.80000,-42.60000,PCDINPE , ,PERD - Parque Estadual do Rio Doce , +B0867,3,529.0000 ,-10.54000,-46.40000,PCDINPE , ,Rio Novo , +B0868,3,219.0000 ,-8.970000,-48.10000,PCDINPE , ,Porto Real , +B0869,3,188.0000 ,-10.79000,-49.60000,PCDINPE , ,Rio Urubu , +B0870,3,254.0000 ,-11.72000,-49.00000,PCDINPE , ,Rio Santo Antonio , +B0871,3,192.0000 ,-11.39000,-49.60000,PCDINPE , , , +B0872,3,217.0000 ,-11.04000,-48.50000,PCDINPE , , , +B0873,3,105.0000 ,-5.720000,-48.10000,PCDINPE , , , +B0874,3,252.0000 ,-11.72000,-48.00000,PCDINPE , , , +B0875,3,464.0000 ,-23.14000,-55.20000,PCDINPE , ,Amambai , +B0876,3,174.0000 ,-20.45000,-55.60000,PCDINPE , ,Aquidauana , +B0877,3,514.0000 ,-19.09000,-51.80000,PCDINPE , ,Cassilandia , +B0878,3,670.0000 ,-19.42000,-54.50000,PCDINPE , ,Sao Grabriel do Oeste , +B0879,3,120.0000 ,-5.510000,-45.20000,PCDINPE , ,Barra do Corda , +B0880,3,100.0000 ,-3.730000,-43.30000,PCDINPE , ,Chapadinha , +B0881,3,40.00000 ,-4.590000,-44.50000,PCDINPE , ,Pedreiras , +B0882,3,35.00000 ,-3.260000,-45.60000,PCDINPE , ,Ze Doca , +B0883,3,41.00000 ,-3.850000,-43.30000,PCDINPE , ,Riacho Feio , +B0884,3,34.00000 ,-3.320000,-43.50000,PCDINPE , ,Sao Benedito do Rio Preto , +B1000,3,563.0000 ,-22.68000,-45.00000,PCDINPE , ,Cachoeira Paulista , +B1700,3,783.0000 ,-16.34000,-48.10000,PCDINPE , ,Luziania , +B1701,3,885.0000 ,-15.94000,-48.20000,PCDINPE , ,Santo Antonio do Descoberto , +B1702,3,863.0000 ,-16.07000,-48.30000,PCDINPE , ,Alexania , +B1703,3,862.0000 ,-16.15000,-48.60000,PCDINPE , ,Abadiania , +B1704,3,820.0000 ,-16.32000,-48.10000,PCDINPE , ,Luziania , +B1705,3,862.0000 ,-16.15000,-48.60000,PCDINPE , ,Abadiania , +B1706,3,41.00000 ,-3.940000,-63.10000,PCDINPE , ,Amazonia , +B1816,3,13.00000 ,-2.870000,-39.90000,PCDINPE , ,Acarau , +B1817,3,317.0000 ,-6.090000,-39.20000,PCDINPE , ,Acopiara , +B1818,3,6.000000 ,-4.560000,-37.80000,PCDINPE , ,Aracati , +B1819,3,107.0000 ,-4.440000,-38.70000,PCDINPE , ,Aracoiaba , +B1820,3,606.0000 ,-7.200000,-40.10000,PCDINPE , ,Araripe , +B1821,3,470.0000 ,-6.850000,-39.80000,PCDINPE , ,Assare , +B1822,3,100.0000 ,-5.320000,-38.90000,PCDINPE , ,Banabuiu , +B1823,3,94.00000 ,-2.930000,-41.10000,PCDINPE , ,Barroquinha , +B1824,3,8.000000 ,-2.890000,-41.00000,PCDINPE , ,Camocim , +B1825,3,138.0000 ,-3.840000,-40.60000,PCDINPE , ,Carire , +B1826,3,580.0000 ,-6.190000,-39.90000,PCDINPE , ,Catarina , +B1827,3,280.0000 ,-6.580000,-39.20000,PCDINPE , ,Cedro , +B1828,3,73.00000 ,-3.640000,-40.80000,PCDINPE , ,Coreau , +B1829,3,427.0000 ,-7.190000,-39.50000,PCDINPE , ,Crato , +B1830,3,11.00000 ,-3.160000,-40.80000,PCDINPE , ,Granja , +B1831,3,110.0000 ,-3.910000,-40.30000,PCDINPE , ,Groairas , +B1832,3,180.0000 ,-4.820000,-38.80000,PCDINPE , ,Ibaretama , +B1833,3,5.000000 ,-4.730000,-37.30000,PCDINPE , ,Icapui , +B1834,3,153.0000 ,-6.420000,-38.80000,PCDINPE , ,Ico , +B1835,3,217.0000 ,-6.390000,-39.20000,PCDINPE , ,Iguatu , +B1836,3,247.0000 ,-4.320000,-40.70000,PCDINPE , ,Ipu , +B1837,3,153.0000 ,-3.780000,-39.70000,PCDINPE , ,Iraucuba , +B1838,3,109.0000 ,-3.570000,-39.60000,PCDINPE , ,Itapipoca , +B1839,3,20.00000 ,-4.840000,-37.70000,PCDINPE , ,Jaguaruana , +B1840,3,435.0000 ,-7.720000,-38.80000,PCDINPE , ,Jati , +B1841,3,22.00000 ,-2.790000,-40.50000,PCDINPE , ,Jipoca de Jericoacara , +B1842,3,239.0000 ,-6.890000,-39.00000,PCDINPE , ,Lavras da Mangabeira , +B1843,3,670.0000 ,-3.540000,-40.40000,PCDINPE , ,Meruoca , +B1844,3,361.0000 ,-7.250000,-39.10000,PCDINPE , ,Missao Velha , +B1845,3,246.0000 ,-5.720000,-39.60000,PCDINPE , ,Mombaca , +B1846,3,89.00000 ,-5.140000,-38.30000,PCDINPE , ,Morada Nova , +B1847,3,189.0000 ,-4.990000,-39.00000,PCDINPE , ,Quixada , +B1848,3,192.0000 ,-5.120000,-39.10000,PCDINPE , ,Quixeramobim , +B1849,3,30.00000 ,-5.080000,-37.80000,PCDINPE , ,Quixere , +B1850,3,198.0000 ,-4.310000,-40.10000,PCDINPE , ,Santa Quiteria , +B1851,3,475.0000 ,-7.150000,-39.70000,PCDINPE , ,Santana do Cariri , +B1852,3,902.0000 ,-4.020000,-40.90000,PCDINPE , ,Sao Benedito , +B1853,3,40.00000 ,-5.490000,-38.00000,PCDINPE , ,Tabuleiro do Norte , +B1854,3,848.0000 ,-3.860000,-41.10000,PCDINPE , ,Ubajaba , +B1855,3,466.0000 ,-6.710000,-40.30000,PCDINPE , ,Aiuaba , +B1856,3,275.0000 ,-5.140000,-39.70000,PCDINPE , ,Boa Viagem , +B1857,3,274.0000 ,-5.280000,-40.60000,PCDINPE , ,Crateus , +B1858,3,343.0000 ,-5.420000,-40.40000,PCDINPE , ,Independencia , +B1859,3,750.0000 ,-4.740000,-40.80000,PCDINPE , ,Poranga , +B1860,3,725.0000 ,-4.570000,-39.70000,PCDINPE , ,Itatira , +B1861,3,239.0000 ,-6.540000,-39.50000,PCDINPE , ,Jucas , +B1862,3,20.00000 ,-5.040000,-38.10000,PCDINPE , ,Russas , +B1863,3,373.0000 ,-7.440000,-38.70000,PCDINPE , ,Mauriti , +B1864,3,500.0000 ,-5.500000,-39.70000,PCDINPE , ,Pedra Branca , +B1865,3,502.0000 ,-6.040000,-38.40000,PCDINPE , ,Pereiro , +B1866,3,177.0000 ,-5.580000,-39.30000,PCDINPE , ,Senador Pompeu , +B1867,3,155.0000 ,-5.690000,-38.90000,PCDINPE , ,Solonopole , +B1868,3,322.0000 ,-4.820000,-40.30000,PCDINPE , ,Tamboril , +B1869,3,300.0000 ,-6.790000,-39.30000,PCDINPE , ,Varzea Alegre , +B1873,3,692.0000 ,-16.46000,-49.90000,PCDINPE , ,Anicuns , +B1874,3,18.00000 ,-8.040000,-34.80000,PCDINPE , ,Olinda , +B1875,3,328.0000 ,-5.890000,-46.70000,PCDINPE , ,Sitio Novo , +B1876,3,146.0000 ,-5.340000,-44.60000,PCDINPE , ,Tuntum , +B1877,3,4.000000 ,0.920000 ,-29.30000,PCDINPE , ,Arquipelo Sao Pedro e Sao paulo , +B1879,3,725.0000 ,-6.090000,-37.90000,PCDINPE , ,Martins , +B1880,3,319.0000 ,-6.690000,-36.60000,PCDINPE , ,Parelhas , +B1886,3,129.0000 ,-9.090000,-35.60000,PCDINPE , ,Camaragibe , +B1887,3,27.00000 ,-9.940000,-36.30000,PCDINPE , ,Coruripe , +B1888,3,18.00000 ,-9.880000,-36.10000,PCDINPE , ,Jequia , +B1889,3,25.00000 ,-9.360000,-35.50000,PCDINPE , ,Jitituba , +B1890,3,25.00000 ,-9.010000,-35.40000,PCDINPE , ,Manguaba , +B1891,3,70.00000 ,-9.410000,-35.70000,PCDINPE , ,Meirim , +B1892,3,25.00000 ,-10.14000,-36.50000,PCDINPE , ,Perucaba , +B1893,3,20.00000 ,-10.16000,-36.30000,PCDINPE , ,Piaui , +B1894,3,25.00000 ,-9.520000,-35.60000,PCDINPE , ,Pratagy , +B1895,3,360.0000 ,-9.320000,-36.40000,PCDINPE , ,Paraiba , +B1896,3,31.00000 ,-9.240000,-35.50000,PCDINPE , ,Santo Antonio , +B1897,3,15.00000 ,-9.760000,-36.10000,PCDINPE , ,Sao Miguel , +B1898,3,145.0000 ,-9.150000,-36.00000,PCDINPE , ,Mundau , +B1900,3,31.00000 ,-1.830000,-61.50000,PCDINPE , ,PARNA Jau , +B1901,3,210.0000 ,-7.440000,-73.60000,PCDINPE , ,PARNA S. Divisor , +B1902,3,100.0000 ,3.360000 ,-61.40000,PCDINPE , ,ESEC Maraca , +B1904,3,259.0000 ,-10.28000,-48.30000,PCDINPE , ,Palmas , +B1905,3,68.00000 ,2.850000 ,-60.60000,PCDINPE , ,Boa Vista , +B1906,3,30.00000 ,-3.120000,-60.00000,PCDINPE , ,Manaus , +B1907,3,97.00000 ,-2.420000,-59.80000,PCDINPE , ,Colosso , +B1908,3,0.000000 ,-20.50000,-29.30000,PCDINPE , ,Trindade , +B1909,3,185.0000 ,-9.950000,-67.80000,PCDINPE , ,Rio Branco , +B1910,3,300.0000 ,-10.20000,-37.40000,PCDINPE , ,Nossa Senhora da Gloria , +B1911,3,183.0000 ,-11.07000,-37.70000,PCDINPE , ,Riachao do Dantas , +B1912,3,260.0000 ,-9.840000,-37.60000,PCDINPE , , , +B1913,3,143.0000 ,-10.44000,-64.10000,PCDINPE , ,Campo Novo , +B1914,3,150.0000 ,-13.08000,-62.20000,PCDINPE , ,Rolim Miguel Guapore , +B1915,3,189.0000 ,-11.69000,-62.70000,PCDINPE , ,Sao Miguel Guapore , +B1916,3,760.0000 ,-29.14000,-50.90000,PCDINPE , ,Caxias do Sul , +B1917,3,420.0000 ,-30.55000,-52.40000,PCDINPE , ,Encruzilhada Sul , +B1918,3,514.0000 ,-29.17000,-53.60000,PCDINPE , ,Julio Castilhos , +B1919,3,99.00000 ,-28.69000,-55.90000,PCDINPE , ,Sao Borja , +B1920,3,109.0000 ,-30.34000,-54.20000,PCDINPE , ,Sao Gabriel , +B1921,3,200.0000 ,-27.17000,-53.70000,PCDINPE , ,Itapiranga , +B1922,3,1200.000 ,-26.11000,-49.00000,PCDINPE , ,Serra do Quiriri , +B1923,3,900.0000 ,-26.44000,-53.00000,PCDINPE , ,Campo Ere , +B1924,3,17.00000 ,-28.60000,-48.80000,PCDINPE , ,Farol Santa Marta , +B1925,3,965.0000 ,-25.96000,-49.20000,PCDINPE , ,Tijucas do Sul , +B1926,3,743.0000 ,-23.46000,-50.30000,PCDINPE , ,Ribeirao do Pinhal , +B1927,3,263.0000 ,-25.46000,-54.40000,PCDINPE , ,Santa Terezinha do Itaipu , +B1928,3,545.0000 ,-24.68000,-52.50000,PCDINPE , ,Nova Cantu , +B1929,3,492.0000 ,-19.50000,-50.00000,PCDINPE , ,Honoropolis , +B1930,3,589.0000 ,-16.50000,-45.40000,PCDINPE , ,Santa fe de Minas , +B1931,3,494.0000 ,-14.70000,-57.30000,PCDINPE , ,Tangara da Serra , +B1932,3,269.0000 ,-9.900000,-55.90000,PCDINPE , ,Alta Floresta , +B1933,3,573.0000 ,-9.120000,-37.70000,PCDINPE , ,Mata Grande , +B1934,3,442.0000 ,-9.370000,-37.20000,PCDINPE , ,Santana Ipanema , +B1935,3,318.0000 ,-8.760000,-38.90000,PCDINPE , ,Belem de Sao Francisco , +B1936,3,157.0000 ,-7.850000,-35.20000,PCDINPE , ,Carpina , +B1937,3,603.0000 ,-8.060000,-37.20000,PCDINPE , ,Sertania , +B1938,3,245.0000 ,-6.350000,-37.70000,PCDINPE , ,Catole do Rocha , +B1939,3,323.0000 ,-7.360000,-38.20000,PCDINPE , ,Itaporanga , +B1940,3,509.0000 ,-6.500000,-36.30000,PCDINPE , ,Picui , +B1941,3,103.0000 ,-6.940000,-35.10000,PCDINPE , ,Capim , +B1942,3,96.00000 ,-5.650000,-35.80000,PCDINPE , ,Joao Camara , +B1943,3,29.00000 ,0.960000 ,-50.80000,PCDINPE , ,Pacui , +B1944,3,0.000000 ,0.040000 ,-51.00000,PCDINPE , ,Macapa , +B1945,3,477.0000 ,-10.45000,-45.10000,PCDINPE , ,Corrente , +B1946,3,322.0000 ,-6.980000,-41.10000,PCDINPE , ,Monsenhor Hipolito , +B1947,3,49.00000 ,-2.940000,-48.90000,PCDINPE , ,Tailandia , +B1948,3,220.0000 ,-5.140000,-55.40000,PCDINPE , ,Novo Progresso , +B1949,3,152.0000 ,-19.02000,-57.60000,PCDINPE , ,Corumba , +B1950,3,563.0000 ,-20.50000,-54.60000,PCDINPE , ,Campo Grande , +B1951,3,241.0000 ,-18.50000,-54.70000,PCDINPE , ,Coxim , +B1952,3,345.0000 ,-23.04000,-54.10000,PCDINPE , ,Navirai , +B1953,3,226.0000 ,-21.47000,-56.10000,PCDINPE , ,Jardim , +B1954,3,871.0000 ,-22.41000,-42.70000,PCDINPE , ,Teresopolis , +B1955,3,475.0000 ,-22.52000,-43.70000,PCDINPE , ,Mendes , +B1956,3,615.0000 ,-21.95000,-42.00000,PCDINPE , ,Santa Maria Madalena , +B1957,3,75.00000 ,-19.37000,-40.00000,PCDINPE , ,Sooretama , +B1958,3,146.0000 ,-20.75000,-41.20000,PCDINPE , ,Jeronimo Monteiro , +B1959,3,727.0000 ,-20.38000,-41.10000,PCDINPE , ,Venda Nova Imigrante , +B1960,3,484.0000 ,-12.07000,-44.90000,PCDINPE , ,Barreiras , +B1961,3,1035.000 ,-13.75000,-45.80000,PCDINPE , ,Arrojolandia , +B1962,3,1000.000 ,-12.89000,-45.10000,PCDINPE , ,Roda Velha , +B1963,3,777.0000 ,-10.56000,-45.60000,PCDINPE , ,Coaceral , +B1964,3,96.00000 ,-4.770000,-43.60000,PCDINPE , ,Caxias , +B1965,3,290.0000 ,-5.970000,-46.50000,PCDINPE , ,Sitio Novo , +B1966,3,1.000000 ,-2.200000,-55.20000,PCDINPE , ,Curuai , +B1967,3,106.0000 ,-3.750000,-49.60000,PCDINPE , ,Tucurui , +B1969,3,126.0000 ,-4.840000,-42.70000,PCDINPE , ,Fazenda Frutan , +B1970,3,297.0000 ,-6.950000,-45.10000,PCDINPE , ,Loreto , +B1971,3,338.0000 ,-7.350000,-46.50000,PCDINPE , ,Riachao , +B1972,3,392.0000 ,-5.030000,-47.50000,PCDINPE , ,Acailandia , +B1973,3,753.0000 ,-22.17000,-47.80000,PCDINPE , ,Sao Carlos , +B1974,3,600.0000 ,-21.24000,-48.30000,PCDINPE , ,Jaboticabal , +B1975,3,538.0000 ,-20.19000,-48.00000,PCDINPE , ,Miguelopolis , +B1976,3,510.0000 ,-20.41000,-49.90000,PCDINPE , ,Votuporanga , +B1977,3,626.0000 ,-23.29000,-47.20000,PCDINPE , ,Itu , +B1978,3,495.0000 ,-22.19000,-48.60000,PCDINPE , ,Jau , +B1979,3,682.0000 ,-22.23000,-49.60000,PCDINPE , ,Garca , +B1980,3,489.0000 ,-22.17000,-51.30000,PCDINPE , ,Presidente Prudente , +B1981,3,682.0000 ,-23.92000,-48.60000,PCDINPE , ,Taquarivai , +B1982,3,10.00000 ,-24.67000,-47.50000,PCDINPE , ,Iguape , +B1983,3,256.0000 ,-11.99000,-60.60000,PCDINPE , ,Eixo da Barragem UHE RONDON II - R1 , +B1984,3,215.0000 ,-11.96000,-60.70000,PCDINPE , ,Canal de Fuga UHE RONDON II - R2 , +B1985,3,302.0000 ,-12.39000,-60.40000,PCDINPE , ,Comemoracao Montante Foz do avila , +B1986,3,785.0000 ,-23.85000,-46.80000,PCDINPE , ,Sitio Morita P-20 , +B1987,3,793.0000 ,-23.88000,-46.70000,PCDINPE , ,Cipo P-26 , +B1988,3,740.0000 ,-23.76000,-46.70000,PCDINPE , ,Barragem Capivari , +B1989,3,741.0000 ,-23.78000,-46.70000,PCDINPE , ,Rio Itaim G-12 , +B1990,3,745.0000 ,-23.89000,-46.80000,PCDINPE , ,Rio Embu-Guacu G-6 , +B1991,3,751.0000 ,-23.84000,-46.80000,PCDINPE , ,Rio Embu-Guacu G-15 , +B1992,3,219.0000 ,-9.930000,-62.90000,PCDINPE , ,Ariquemes , +B1993,3,186.0000 ,-11.48000,-61.30000,PCDINPE , ,Cacoal , +B1994,3,145.0000 ,-12.42000,-64.20000,PCDINPE , ,Costa Marques , +B1995,3,150.0000 ,-10.79000,-65.20000,PCDINPE , ,Guajara Mirim , +B1996,3,159.0000 ,-10.88000,-61.90000,PCDINPE , ,Ji-Parana , +B1997,3,198.0000 ,-9.390000,-62.00000,PCDINPE , ,Machadinho , +B1998,3,95.00000 ,-8.790000,-63.80000,PCDINPE , ,Porto Velho , +B1999,3,612.0000 ,-12.77000,-60.00000,PCDINPE , ,Vilhena , +B2001,3,38.00000 ,-3.770000,-45.40000,PCDINPE , ,Santa Ines , +B2002,3,36.00000 ,-4.130000,-44.10000,PCDINPE , ,Coroata , +B2003,3,62.00000 ,-2.590000,-44.20000,PCDINPE , ,Sao Luis , +B2004,3,86.00000 ,-3.220000,-43.40000,PCDINPE , ,Urbano Santos , +B2005,3,22.00000 ,-2.500000,-45.00000,PCDINPE , ,Pinheiro , +B2006,3,210.0000 ,-5.700000,-44.30000,PCDINPE , ,Sao Domingos Maranhao , +B2007,3,0.000000 ,-23.85000,-42.50000,PCDINPE , ,BOIA , +B2008,3,0.000000 ,-23.55000,-39.80000,PCDINPE , ,BEACON 2 , +B2009,3,0.000000 ,-23.77000,-41.60000,PCDINPE , ,BEACON 3 , +B2010,3,0.000000 ,-23.72000,-42.50000,PCDINPE , ,BEACON 4 , +B2011,3,0.000000 ,-24.07000,-44.60000,PCDINPE , ,BEACON 5 , +B2012,3,0.000000 ,-24.40000,-44.30000,PCDINPE , ,BEACON 6 , +B2013,3,75.00000 ,-1.220000,-60.20000,PCDINPE , ,Uatuma , +B2014,3,149.0000 ,-1.210000,-59.50000,PCDINPE , ,Pitinga , +B2015,3,120.0000 ,-1.920000,-59.40000,PCDINPE , ,USINA BALBINA / MONTANTE , +B2016,3,159.0000 ,-1.910000,-59.40000,PCDINPE , ,USINA BALBINA / JUSANTE , +B2017,3,500.0000 ,-14.47000,-46.40000,PCDINPE , ,Alvorada do Norte , +B2018,3,590.0000 ,-13.41000,-46.30000,PCDINPE , ,UHE - Sao Domingos , +B2019,3,700.0000 ,-16.61000,-49.20000,PCDINPE , ,Montante Goiano , +B2020,3,700.0000 ,-12.95000,-46.30000,PCDINPE , ,UHE - Mosquito , +B2021,3,605.0000 ,-17.39000,-49.20000,PCDINPE , ,UHE - Rochedo Barramento , +B2022,3,586.0000 ,-17.39000,-49.20000,PCDINPE , ,UHE - Rochedo Jussante , +B2023,3,507.0000 ,-8.520000,-41.00000,PCDINPE , ,Afranio , +B2024,3,0.000000 ,-8.820000,-35.10000,PCDINPE , ,Barreiros , +B2025,3,709.0000 ,-9.010000,-36.50000,PCDINPE , ,Brejao , +B2026,3,342.0000 ,-8.600000,-38.50000,PCDINPE , ,Floresta , +B2027,3,571.0000 ,-9.140000,-38.20000,PCDINPE , ,Petrolandia , +B2028,3,432.0000 ,-7.870000,-40.00000,PCDINPE , ,Ouricuri , +B2029,3,108.0000 ,-8.660000,-35.50000,PCDINPE , ,Palmares , +B2030,3,442.0000 ,-8.070000,-39.10000,PCDINPE , ,Salgueiro , +B2031,3,350.0000 ,-8.800000,-39.80000,PCDINPE , ,Santa Maria Boa Vista , +B2032,3,416.0000 ,-7.900000,-35.90000,PCDINPE , ,Vertentes , +B2033,3,663.0000 ,-7.440000,-37.20000,PCDINPE , ,Sao Jose do Egito , +B2034,3,60.00000 ,-3.480000,-39.40000,PCDINPE , ,Baleia , +B2035,3,60.00000 ,-3.480000,-39.40000,PCDINPE , ,Baleia , +B2056,3,0.000000 ,-32.88000,-50.80000,PCDINPE , ,DHN-11 WMO 31978 , +B2061,3,60.00000 ,0.880000 ,-62.60000,PCDINPE , ,Posto Ajuricaba , +B2062,3,82.00000 ,-4.230000,-69.90000,PCDINPE , ,Tabatinga , +B2063,3,124.0000 ,-5.130000,-72.80000,PCDINPE , ,Palmeiras do Javari , +B2064,3,106.0000 ,-4.560000,-71.40000,PCDINPE , ,Santa Maria , +B2065,3,92.00000 ,-4.340000,-70.90000,PCDINPE , ,Estirao do Repouso , +B2066,3,130.0000 ,-4.370000,-70.10000,PCDINPE , ,Santa Izabel , +B2067,3,52.00000 ,-1.880000,-62.40000,PCDINPE , ,Umanapara , +B2068,3,58.00000 ,-2.920000,-69.60000,PCDINPE , ,Ipiranga Novo , +B2069,3,107.0000 ,-5.400000,-69.00000,PCDINPE , ,Colocacao Caxias , +B2070,3,99.00000 ,-4.230000,-67.50000,PCDINPE , ,Barreira Alta , +B2071,3,87.00000 ,-4.320000,-67.30000,PCDINPE , ,Barreira Branca , +B2072,3,45.00000 ,-2.490000,-66.00000,PCDINPE , ,Fonte Boa , +B2073,3,191.0000 ,-7.630000,-72.60000,PCDINPE , ,Foz do Breu , +B2074,3,267.0000 ,-8.940000,-72.70000,PCDINPE , ,Taumaturgo , +B2075,3,245.0000 ,-7.440000,-73.60000,PCDINPE , ,Serra do Moa , +B2076,3,193.0000 ,-7.640000,-72.60000,PCDINPE , ,Cruzeiro do Sul , +B2077,3,196.0000 ,-7.780000,-72.00000,PCDINPE , ,Seringal Bom Futuro , +B2078,3,158.0000 ,-7.050000,-71.60000,PCDINPE , ,Ipixuna , +B2079,3,186.0000 ,-7.720000,-71.40000,PCDINPE , ,Fazenda Paranacre , +B2080,3,124.0000 ,-6.680000,-69.90000,PCDINPE , ,Eurinepe-montante , +B2081,3,187.0000 ,-8.130000,-70.70000,PCDINPE , ,Tarauaca-jusante , +B2082,3,162.0000 ,-8.160000,-70.30000,PCDINPE , ,Iratapuru , +B2083,3,164.0000 ,-8.150000,-70.30000,PCDINPE , ,Feijo , +B2084,3,135.0000 ,-7.420000,-70.00000,PCDINPE , ,Envira , +B2085,3,45.00000 ,-2.010000,-61.50000,PCDINPE , ,Estacao Baruri , +B2086,3,113.0000 ,-6.440000,-68.20000,PCDINPE , ,Santos Dumont , +B2087,3,69.00000 ,-4.840000,-66.80000,PCDINPE , ,Gaviao , +B2088,3,90.00000 ,-1.390000,-69.40000,PCDINPE , ,Vila Bitencourt , +B2089,3,64.00000 ,-1.820000,-66.60000,PCDINPE , ,Acanaui , +B2090,3,43.00000 ,-3.350000,-64.70000,PCDINPE , ,Itupiranga , +B2091,3,68.00000 ,-4.300000,-65.20000,PCDINPE , ,Estirao da Santa Cruz (12) , +B2092,3,20.00000 ,-4.080000,-63.10000,PCDINPE , ,Fazenda Rural Zebu , +B2093,3,70.00000 ,-5.620000,-63.10000,PCDINPE , ,Ladario Jusante , +B2094,3,20.00000 ,-4.080000,-63.10000,PCDINPE , ,Passagem BR-309 , +B2095,3,20.00000 ,-4.080000,-63.10000,PCDINPE , ,Louro Poco , +B2096,3,71.00000 ,-4.580000,-64.30000,PCDINPE , ,Uaracu , +B2097,3,72.00000 ,-5.100000,-63.90000,PCDINPE , ,Seringal Moreira , +B2098,3,39.00000 ,-4.050000,-63.00000,PCDINPE , ,Itapeua , +B2099,3,163.0000 ,-8.840000,-69.20000,PCDINPE , ,Rio Cmte. Fontoura , +B2100,3,163.0000 ,-8.840000,-69.20000,PCDINPE , ,Jusante Rio Preto , +B2101,3,179.0000 ,-8.870000,-69.20000,PCDINPE , ,Manoel Urbano , +B2102,3,146.0000 ,-9.320000,-68.70000,PCDINPE , ,Seringal Sao Jose , +B2103,3,184.0000 ,-9.350000,-69.40000,PCDINPE , ,Seringal Guarany , +B2104,3,153.0000 ,-9.040000,-68.50000,PCDINPE , ,Seringal da Caridade , +B2105,3,241.0000 ,-10.94000,-69.50000,PCDINPE , ,Assis Brasil , +B2106,3,134.0000 ,-10.09000,-67.90000,PCDINPE , ,Fazenda Santo Afonso , +B2107,3,135.0000 ,-9.970000,-67.80000,PCDINPE , ,Rio Branco (6) , +B2108,3,125.0000 ,-8.700000,-67.40000,PCDINPE , ,Valparaiso-montante , +B2109,3,112.0000 ,-7.550000,-67.50000,PCDINPE , ,Fazenda Borangaba , +B2110,3,110.0000 ,-7.680000,-66.90000,PCDINPE , ,Seringal Fortaleza , +B2111,3,96.00000 ,-8.780000,-65.90000,PCDINPE , ,Jurune , +B2112,3,67.00000 ,-7.250000,-64.80000,PCDINPE , ,Labrea , +B2113,3,88.00000 ,-7.250000,-64.20000,PCDINPE , ,Cristo , +B2114,3,51.00000 ,-5.830000,-65.20000,PCDINPE , ,Bacaba , +B2115,3,62.00000 ,-6.530000,-64.30000,PCDINPE , ,Conceicao , +B2116,3,15.00000 ,-4.680000,-62.10000,PCDINPE , ,Aruma-jusante , +B2117,3,18.00000 ,-3.310000,-60.60000,PCDINPE , ,Manacapuru , +B2118,3,65.00000 ,-1.820000,-66.50000,PCDINPE , ,Porto Seguro , +B2119,3,84.00000 ,1.070000 ,-67.50000,PCDINPE , ,Missao Icana , +B2120,3,208.0000 ,-8.270000,-72.70000,PCDINPE , ,Porto Valter , +B2121,3,104.0000 ,0.780000 ,-67.60000,PCDINPE , ,Tanibuca , +B2122,3,98.00000 ,0.130000 ,-68.50000,PCDINPE , ,Taraqua , +B2123,3,127.0000 ,0.240000 ,-69.70000,PCDINPE , ,Pari Cachoeira , +B2124,3,102.0000 ,-0.130000,-67.00000,PCDINPE , ,Seringal Santo Amaro , +B2125,3,75.00000 ,-0.330000,-65.50000,PCDINPE , ,Seringal Sao Luiz , +B2126,3,34.00000 ,-0.970000,-62.90000,PCDINPE , ,Seringal Sao Francisco , +B2127,3,46.00000 ,0.300000 ,-62.70000,PCDINPE , ,Jalauaca , +B2128,3,34.00000 ,-0.970000,-62.90000,PCDINPE , ,Fortes das Garcas , +B2129,3,986.0000 ,4.000000 ,-64.40000,PCDINPE , ,Missao Auaris-jusante , +B2130,3,360.0000 ,3.540000 ,-63.10000,PCDINPE , ,Uaicas , +B2131,3,83.00000 ,3.440000 ,-61.00000,PCDINPE , ,Fazenda Cajupiranga , +B2132,3,88.00000 ,3.360000 ,-59.80000,PCDINPE , ,Bonfim , +B2133,3,117.0000 ,4.190000 ,-60.70000,PCDINPE , ,Vila Surumu , +B2134,3,115.0000 ,4.170000 ,-60.50000,PCDINPE , ,Maloca do Contao , +B2135,3,94.00000 ,2.870000 ,-61.40000,PCDINPE , ,Fe e Esperanca , +B2136,3,70.00000 ,2.470000 ,-60.90000,PCDINPE , ,Mucajai , +B2137,3,59.00000 ,1.820000 ,-61.10000,PCDINPE , ,Caracarai , +B2138,3,207.0000 ,1.750000 ,-62.20000,PCDINPE , ,Missao Catrimani , +B2139,3,5.000000 ,-2.790000,-57.00000,PCDINPE , ,Barreirinha , +B2140,3,29.00000 ,-1.500000,-61.60000,PCDINPE , ,Moura , +B2141,3,85.00000 ,0.520000 ,-60.40000,PCDINPE , ,Fazenda Sao Jose , +B2142,3,88.00000 ,0.880000 ,-60.60000,PCDINPE , ,Base Alalau , +B2143,3,31.00000 ,-3.110000,-60.00000,PCDINPE , ,Manaus , +B2144,3,216.0000 ,-15.01000,-59.90000,PCDINPE , ,Vila Bela da Santis. Trindade , +B2145,3,175.0000 ,-13.49000,-61.00000,PCDINPE , ,Pimenteiras , +B2146,3,418.0000 ,-11.92000,-62.10000,PCDINPE , ,Cachoeira do Cachimbo , +B2147,3,149.0000 ,-12.42000,-64.40000,PCDINPE , ,Principe da Beira , +B2148,3,163.0000 ,-11.30000,-64.80000,PCDINPE , ,Boa Vista do Pacaas (11) , +B2149,3,140.0000 ,-10.79000,-65.30000,PCDINPE , ,Guajara-Mirim , +B2150,3,139.0000 ,-10.34000,-67.10000,PCDINPE , ,Placido de Castro (7) , +B2151,3,107.0000 ,-9.780000,-65.50000,PCDINPE , ,Morada Nova-jusante , +B2152,3,131.0000 ,-9.260000,-64.30000,PCDINPE , ,Jacy-Parana , +B2153,3,88.00000 ,-8.800000,-63.90000,PCDINPE , ,Porto Velho , +B2154,3,136.0000 ,-9.930000,-63.00000,PCDINPE , ,Ariquemes (10) , +B2155,3,293.0000 ,-10.97000,-68.50000,PCDINPE , ,Xapuri , +B2156,3,89.00000 ,-8.760000,-63.90000,PCDINPE , ,Floriano Peixoto , +B2157,3,842.0000 ,4.630000 ,-60.40000,PCDINPE , ,Fazenda Bandeira Branca (5) , +B2158,3,490.0000 ,-12.49000,-60.40000,PCDINPE , ,Cachoeira avila , +B2159,3,401.0000 ,-11.56000,-60.80000,PCDINPE , ,Fazenda Flor do Campo , +B2160,3,189.0000 ,-11.65000,-61.20000,PCDINPE , ,Sitio Bela Vista (3) , +B2161,3,158.0000 ,-10.44000,-62.40000,PCDINPE , ,Jaru , +B2162,3,104.0000 ,-8.930000,-62.00000,PCDINPE , ,Tabajara , +B2163,3,153.0000 ,-9.740000,-61.80000,PCDINPE , ,Fabio Barragem , +B2164,3,87.00000 ,-7.750000,-61.70000,PCDINPE , ,Maloca Tenharim , +B2165,3,44.00000 ,-5.820000,-61.30000,PCDINPE , ,Manicore , +B2166,3,343.0000 ,-10.17000,-59.40000,PCDINPE , ,Humboldt , +B2167,3,118.0000 ,-8.350000,-59.80000,PCDINPE , ,Boca do Guariba (15) , +B2168,3,58.00000 ,-7.650000,-60.80000,PCDINPE , ,Fazenda Boa Lembranca , +B2169,3,176.0000 ,-9.820000,-60.60000,PCDINPE , ,Concisa (9) , +B2170,3,49.00000 ,-4.900000,-60.00000,PCDINPE , ,Fazenda Vista Alegre , +B2171,3,78.00000 ,-6.790000,-59.00000,PCDINPE , ,Sucunduri , +B2172,3,23.00000 ,-3.130000,-58.40000,PCDINPE , ,Itacoatiara , +B2173,3,44.00000 ,-2.110000,-59.30000,PCDINPE , ,Cachoeira Morena , +B2174,3,122.0000 ,-1.030000,-58.60000,PCDINPE , ,Katuema , +B2175,3,4.000000 ,-2.540000,-57.70000,PCDINPE , ,Curicuriari , +B2176,3,4.000000 ,-2.630000,-56.70000,PCDINPE , ,Parintins , +B2177,3,78.00000 ,-4.850000,-58.30000,PCDINPE , ,Castanho , +B2178,3,26.00000 ,-2.190000,-56.70000,PCDINPE , ,Mineracao Caima , +B2179,3,9.000000 ,-1.760000,-55.80000,PCDINPE , ,Vila Conceicao Montante , +B2180,3,88.00000 ,-0.690000,-57.90000,PCDINPE , ,Aldeia Wai-Wai , +B2181,3,343.0000 ,2.220000 ,-55.90000,PCDINPE , ,Tirios , +B2182,3,158.0000 ,-1.000000,-56.10000,PCDINPE , ,Marapi , +B2183,3,143.0000 ,-1.050000,-56.00000,PCDINPE , ,Vista Alegre , +B2184,3,48.00000 ,-1.730000,-55.80000,PCDINPE , ,Oriximina , +B2185,3,18.00000 ,-1.920000,-55.50000,PCDINPE , ,obidos , +B2186,3,58.00000 ,-2.440000,-54.70000,PCDINPE , ,Nova Esperanca , +B2187,3,47.00000 ,-1.570000,-54.80000,PCDINPE , ,Boca do Inferno , +B2188,3,465.0000 ,-13.45000,-59.00000,PCDINPE , ,Fazenda Tucunare , +B2189,3,359.0000 ,-13.03000,-58.30000,PCDINPE , ,Utiariti , +B2190,3,283.0000 ,-11.36000,-58.30000,PCDINPE , ,Fontanilhas , +B2191,3,290.0000 ,-11.67000,-58.00000,PCDINPE , ,Fazenda Tombador , +B2192,3,316.0000 ,-13.38000,-56.60000,PCDINPE , ,Fazenda Taua , +B2193,3,273.0000 ,-11.65000,-57.20000,PCDINPE , ,Porto dos Gauchos , +B2194,3,200.0000 ,-9.870000,-58.20000,PCDINPE , ,EBEC - Diauarum , +B2195,3,437.0000 ,-13.67000,-55.30000,PCDINPE , ,Porto Roncador , +B2196,3,394.0000 ,-12.67000,-55.70000,PCDINPE , ,Teles Pires , +B2197,3,305.0000 ,-11.65000,-55.70000,PCDINPE , ,Cachoeirao , +B2198,3,468.0000 ,-9.360000,-54.90000,PCDINPE , ,Base Cachimbo , +B2199,3,252.0000 ,-10.22000,-54.90000,PCDINPE , ,Estrada Cuiaba-Santarem , +B2200,3,235.0000 ,-9.640000,-56.00000,PCDINPE , ,Jusante Foz Peixoto de Azevedo , +B2201,3,183.0000 ,-8.920000,-57.40000,PCDINPE , ,Santa Rosa , +B2202,3,75.00000 ,-4.270000,-55.90000,PCDINPE , ,Acari BR-230 , +B2203,3,96.00000 ,-4.880000,-56.70000,PCDINPE , ,Acara do Tapajos , +B2204,3,75.00000 ,-4.270000,-55.90000,PCDINPE , ,Base Siderama Jusante , +B2205,3,121.0000 ,-5.500000,-56.70000,PCDINPE , ,Rio Arinos , +B2206,3,75.00000 ,-4.270000,-55.90000,PCDINPE , ,Itaituba , +B2207,3,1.000000 ,-2.410000,-54.70000,PCDINPE , ,Santarem , +B2208,3,336.0000 ,-6.720000,-51.70000,PCDINPE , ,Boa Esperanca , +B2209,3,247.0000 ,-0.970000,-54.40000,PCDINPE , ,Lajeiro , +B2210,3,35.00000 ,-1.750000,-54.40000,PCDINPE , ,Arapari , +B2211,3,325.0000 ,-12.37000,-54.10000,PCDINPE , ,Foz Ronuro , +B2212,3,342.0000 ,-11.00000,-54.80000,PCDINPE , ,Riacho de Deus , +B2213,3,376.0000 ,-12.62000,-52.00000,PCDINPE , ,Santa Cruz do Suia , +B2214,3,328.0000 ,1.220000 ,-54.60000,PCDINPE , ,Apalai , +B2215,3,167.0000 ,0.420000 ,-53.70000,PCDINPE , ,Fazenda Paquira (8) , +B2216,3,411.0000 ,-13.57000,-53.00000,PCDINPE , ,Pousada Matrinxa (13) , +B2217,3,372.0000 ,-13.14000,-54.40000,PCDINPE , ,Fazenda Itaguacu , +B2218,3,321.0000 ,-12.36000,-54.40000,PCDINPE , ,Consul (14) , +B2219,3,269.0000 ,-10.77000,-53.10000,PCDINPE , ,Passagem BR-080 , +B2220,3,278.0000 ,-8.000000,-51.40000,PCDINPE , ,Fazenda Rio Dourado , +B2221,3,232.0000 ,-6.760000,-51.90000,PCDINPE , ,Boa Sorte , +B2222,3,309.0000 ,-8.500000,-53.50000,PCDINPE , ,Alto Iriri , +B2223,3,228.0000 ,-6.830000,-54.00000,PCDINPE , ,Proximo Iucata , +B2224,3,290.0000 ,-7.330000,-54.80000,PCDINPE , ,Aldeia Bau , +B2225,3,233.0000 ,-5.720000,-54.40000,PCDINPE , ,Cajueiro , +B2226,3,180.0000 ,-4.570000,-54.00000,PCDINPE , ,Pedra do o , +B2227,3,86.00000 ,-3.220000,-52.10000,PCDINPE , ,Altamira , +B2228,3,163.0000 ,-4.900000,-51.40000,PCDINPE , ,Aldeia Bacaja , +B2229,3,21.00000 ,-1.750000,-52.20000,PCDINPE , ,Porto de Moz , +B2230,3,13.00000 ,0.110000 ,-51.20000,PCDINPE , ,Sao Domingos do Jari , +B2231,3,54.00000 ,0.570000 ,-51.20000,PCDINPE , ,Sao Francisco , +B2232,3,85.00000 ,0.180000 ,-51.80000,PCDINPE , ,Pancada , +B2233,3,101.0000 ,0.350000 ,-51.80000,PCDINPE , ,Acampamento Bacuri , +B2234,3,0.000000 ,0.040000 ,-51.00000,PCDINPE , ,Macapa , +B2235,3,277.0000 ,-11.76000,-47.80000,PCDINPE , ,Porto Jeronimo , +B2236,3,294.0000 ,-10.10000,-47.30000,PCDINPE , ,Jatoba , +B2237,3,249.0000 ,-9.310000,-47.90000,PCDINPE , ,Porto Real , +B2238,3,213.0000 ,-7.700000,-47.30000,PCDINPE , ,Goiatins , +B2239,3,162.0000 ,-5.790000,-47.40000,PCDINPE , ,Descarreto , +B2240,3,281.0000 ,-14.67000,-52.30000,PCDINPE , ,Xavantina , +B2241,3,179.0000 ,-10.56000,-49.90000,PCDINPE , ,Barreira da Cruz , +B2242,3,267.0000 ,-5.870000,-50.40000,PCDINPE , ,Acampamento Caldeirao , +B2243,3,138.0000 ,-5.780000,-49.80000,PCDINPE , ,Fazenda Rio Branco , +B2244,3,106.0000 ,-3.750000,-49.60000,PCDINPE , ,Tucurui , +B2245,3,35.00000 ,1.390000 ,-51.00000,PCDINPE , ,Tartarugal Grande , +B2246,3,67.00000 ,3.720000 ,-51.90000,PCDINPE , ,Estirao Cricou , +B2247,3,63.00000 ,3.050000 ,-51.30000,PCDINPE , ,Retiro Santa Isabel , +B2248,3,101.0000 ,-3.500000,-48.80000,PCDINPE , ,Tauiri , +B2249,3,112.0000 ,-2.510000,-47.40000,PCDINPE , ,Badajos , +B2250,3,145.0000 ,-2.990000,-47.30000,PCDINPE , ,Alto Gurupi , +B2251,3,28.00000 ,-1.760000,-46.50000,PCDINPE , ,Alto Bonito (1) , +B2252,3,35.00000 ,-2.940000,-45.60000,PCDINPE , ,Alto Turi , +B2253,3,186.0000 ,-4.290000,-46.40000,PCDINPE , ,Ponte BR-222 , +B2254,3,23.00000 ,-3.660000,-45.40000,PCDINPE , ,Pindare Mirim , +B2255,3,158.0000 ,-5.500000,-45.20000,PCDINPE , ,Barra do Corda , +B2256,3,39.00000 ,-4.240000,-44.70000,PCDINPE , ,Bacabal , +B2257,3,240.0000 ,-5.820000,-46.10000,PCDINPE , ,Grajau II , +B2258,3,16.00000 ,-3.770000,-45.10000,PCDINPE , ,Aratoi Grande , +B2259,3,409.0000 ,-6.370000,-44.30000,PCDINPE , ,Mirador (2) , +B2260,3,116.0000 ,-4.450000,-43.80000,PCDINPE , ,Codo , +B2261,3,220.0000 ,-8.110000,-49.90000,PCDINPE , ,Redencao , +B2262,3,29.00000 ,-1.540000,-48.70000,PCDINPE , ,Barcarena , +B2264,3,54.00000 ,-22.94000,-43.20000,PCDINPE , ,Parque Nacional da Tijuca 2 , +B2270,3,480.0000 ,-27.60000,-51.30000,PCDINPE , ,UHE - Campos Novos , +B2271,3,430.0000 ,-8.540000,-40.10000,PCDINPE , ,Saco II , +B2272,3,491.0000 ,-8.510000,-37.70000,PCDINPE , , , +B2273,3,409.0000 ,-8.220000,-39.80000,PCDINPE , ,Entremontes , +B2274,3,535.0000 ,-8.990000,-36.30000,PCDINPE , ,Inhumas , +B2275,3,145.0000 ,-8.040000,-35.10000,PCDINPE , ,Tapacura , +B2276,3,125.0000 ,-7.840000,-35.00000,PCDINPE , ,Botafogo , +B2277,3,289.0000 ,-7.970000,-35.70000,PCDINPE , ,Jucazinho , +B2278,3,734.0000 ,-8.270000,-36.70000,PCDINPE , ,Eng. G. Pontes , +B2279,3,535.0000 ,-7.740000,-37.60000,PCDINPE , ,Brotas , +B2280,3,568.0000 ,-7.770000,-37.40000,PCDINPE , ,Rosario , +B2281,3,108.0000 ,-8.020000,-35.10000,PCDINPE , ,Varzea do Una , +B2282,3,627.0000 ,-8.470000,-35.70000,PCDINPE , ,Prata , +B2283,3,481.0000 ,-8.340000,-38.80000,PCDINPE , ,Serrinha , +B2284,3,734.0000 ,-8.270000,-36.70000,PCDINPE , ,Pao de Acucar , +B2285,3,430.0000 ,-7.930000,-38.20000,PCDINPE , ,Serra Tallhada , +B2286,3,614.0000 ,-8.520000,-36.40000,PCDINPE , ,Sao Bento do Una , +B2287,3,5.000000 ,-8.510000,-35.00000,PCDINPE , ,Ipojuca , +B2288,3,157.0000 ,-8.120000,-35.30000,PCDINPE , ,Vitoria de Santo Antao , +B2289,3,401.0000 ,-8.540000,-37.60000,PCDINPE , ,Ibimirim , +B2290,3,13.00000 ,-7.640000,-34.90000,PCDINPE , ,Goiana , +B2301,3,133.0000 ,-3.770000,-49.70000,PCDINPE , ,Tucurui Jusante , +B2302,3,133.0000 ,-3.770000,-49.70000,PCDINPE , ,Tucurui Barragem , +B2303,3,136.0000 ,-5.500000,-49.20000,PCDINPE , ,Fazenda Alegria , +B2304,3,90.00000 ,-5.350000,-48.80000,PCDINPE , ,Araras , +B2305,3,183.0000 ,-7.330000,-47.40000,PCDINPE , ,Carolina , +B2306,3,163.0000 ,-8.260000,-49.20000,PCDINPE , ,Conceicao do Araguaia , +B2307,3,133.0000 ,-6.320000,-47.40000,PCDINPE , ,Tocantinopolis , +B2308,3,247.0000 ,-10.70000,-48.40000,PCDINPE , ,Porto Nacional , +B2309,3,68.00000 ,0.920000 ,-51.20000,PCDINPE , ,Coroacy Nunes Jusante , +B2310,3,55.00000 ,0.900000 ,-51.20000,PCDINPE , ,Coroacy Nunes Barragem , +B2311,3,78.00000 ,0.700000 ,-51.30000,PCDINPE , ,Porto Platon , +B2312,3,74.00000 ,0.740000 ,-51.50000,PCDINPE , ,Leonidas , +B2313,3,179.0000 ,0.980000 ,-52.00000,PCDINPE , ,Serra do Navio , +B2314,3,84.00000 ,-8.810000,-63.40000,PCDINPE , ,Samuel Jusante , +B2315,3,84.00000 ,-8.810000,-63.40000,PCDINPE , ,Samuel Barragem , +B2316,3,145.0000 ,-9.700000,-63.20000,PCDINPE , ,Ponte Massangana , +B2317,3,100.0000 ,-9.880000,-63.00000,PCDINPE , ,Fazenda Rio Branco , +B2318,3,136.0000 ,-9.930000,-63.00000,PCDINPE , ,Ariquemes , +B2319,3,142.0000 ,-9.470000,-63.20000,PCDINPE , ,Ponte Rio Preto do Crespo , +B2321,3,16.00000 ,-3.720000,-38.50000,PCDINPE , ,Fortaleza , +B2322,3,30.00000 ,-3.740000,-38.60000,PCDINPE , ,Caucaia , +B2323,3,12.00000 ,-4.240000,-38.20000,PCDINPE , ,Beberibe , +B2324,3,74.00000 ,-4.190000,-38.40000,PCDINPE , ,Pacajus , +B2325,3,16.00000 ,-3.650000,-38.90000,PCDINPE , ,Sao Goncalo do Amarante , +B2326,3,69.00000 ,-3.980000,-38.70000,PCDINPE , ,Maranguape , +B2327,3,69.00000 ,-3.720000,-40.30000,PCDINPE , ,Sobral , +B2328,3,89.00000 ,-4.520000,-38.30000,PCDINPE , ,Morada Nova 1 , +B2329,3,150.0000 ,-4.620000,-39.30000,PCDINPE , ,Caninde , +B2330,3,830.0000 ,-4.390000,-39.00000,PCDINPE , ,Aratuba , +B2334,3,1076.000 ,-19.64000,-46.90000,PCDINPE , ,Araxa , +B2335,3,440.0000 ,-18.52000,-49.20000,PCDINPE , ,Centralina Montante , +B2336,3,522.0000 ,-18.50000,-49.40000,PCDINPE , ,Barragem Cachoeira Dourada , +B2337,3,400.0000 ,-18.50000,-49.50000,PCDINPE , ,Cachoeira Dourada Jusante , +B2338,3,0.000000 ,-23.57000,-45.00000,PCDINPE , ,Ilha Anchieta , +B2339,3,0.000000 ,-22.98000,-42.00000,PCDINPE , ,Arraial do Cabo , +B2340,3,239.0000 ,-13.36000,-50.40000,PCDINPE , ,Luiz Alves , +B2341,3,646.0000 ,-17.71000,-49.70000,PCDINPE , ,Vicentinopolis , +B2342,3,1002.000 ,-16.80000,-48.40000,PCDINPE , ,Vianopolis , +B2343,3,562.0000 ,-17.85000,-50.50000,PCDINPE , ,Santa Helena , +B2344,3,715.0000 ,-17.79000,-50.90000,PCDINPE , ,Rio Verde , +B2345,3,861.0000 ,-17.46000,-52.60000,PCDINPE , ,MINEIROS , +B2346,3,348.0000 ,-13.31000,-49.10000,PCDINPE , ,Porangatu , +B2347,3,596.0000 ,-16.81000,-49.90000,PCDINPE , ,Palmeiras de Goias , +B2348,3,472.0000 ,-16.01000,-51.40000,PCDINPE , ,Montes Claros de Goias , +B2349,3,449.0000 ,-18.41000,-49.10000,PCDINPE , ,Itumbiara , +B2350,3,571.0000 ,-15.34000,-49.60000,PCDINPE , ,Ceres , +B2351,3,701.0000 ,-16.02000,-49.70000,PCDINPE , ,Itaberai , +B2352,3,584.0000 ,-16.42000,-51.10000,PCDINPE , ,Ipora , +B2353,3,440.0000 ,-14.51000,-47.00000,PCDINPE , ,Flores de Goias , +B2354,3,550.0000 ,-17.24000,-50.10000,PCDINPE , ,JANDAIA , +B2355,3,835.0000 ,-18.15000,-47.90000,PCDINPE , ,Catalao , +B2356,3,542.0000 ,-18.43000,-50.40000,PCDINPE , ,Quirinopolis , +B2357,3,686.0000 ,-17.72000,-48.60000,PCDINPE , ,Caldas Novas , +B2358,3,263.0000 ,-15.36000,-51.10000,PCDINPE , ,Britania , +B2359,3,725.0000 ,-18.40000,-52.60000,PCDINPE , ,Chapadao do Ceu , +B2360,3,988.0000 ,-16.37000,-48.90000,PCDINPE , ,Anapolis , +B2361,3,168.0000 ,-24.65000,-49.00000,PCDINPE , ,Ribeira , +B2362,3,158.0000 ,-24.76000,-48.50000,PCDINPE , ,Barra do Turvo , +B2363,3,64.00000 ,-24.59000,-48.20000,PCDINPE , ,Barra do Batatal , +B2364,3,50.00000 ,-24.46000,-47.90000,PCDINPE , ,Votupoca , +B2365,3,30.00000 ,-24.39000,-47.90000,PCDINPE , ,Sete Barras , +B2366,3,27.00000 ,-24.28000,-47.40000,PCDINPE , ,Miracatu , +B2367,3,25.00000 ,-24.49000,-47.80000,PCDINPE , ,Registro , +B2368,3,113.0000 ,-3.470000,-68.70000,PCDINPE , ,Sao Paulo Olivenca , +B2369,3,49.00000 ,-4.900000,-60.00000,PCDINPE , ,Fazenda Vista Alegre , +B2370,3,990.0000 ,-15.65000,-47.50000,PCDINPE , ,Pipiripau Montante , +B2371,3,52.00000 ,1.800000 ,-61.10000,PCDINPE , ,Caracarai , +B2372,3,50.00000 ,-4.730000,-62.10000,PCDINPE , ,Aruma Jusante , +B2373,3,75.00000 ,0.070000 ,-68.20000,PCDINPE , ,Taraqua , +B2374,3,80.00000 ,-2.870000,-69.60000,PCDINPE , ,Ipiranga Novo , +B2375,3,151.0000 ,-9.030000,-68.50000,PCDINPE , ,Seringal Caridade , +B2376,3,111.0000 ,-7.250000,-60.40000,PCDINPE , ,Prainha Velha , +B2377,3,171.0000 ,-9.720000,-60.50000,PCDINPE , ,Concisa , +B2378,3,427.0000 ,-27.18000,-49.90000,PCDINPE , ,Rio Bonito , +B2379,3,147.0000 ,-28.97000,-51.70000,PCDINPE , ,PCH Cotipora , +B2380,3,863.0000 ,-16.32000,-48.10000,PCDINPE , ,Canastra I , +B2381,3,433.0000 ,-27.17000,-49.90000,PCDINPE , ,Barragem Oeste-Taio , +B2382,3,82.00000 ,-1.400000,-69.40000,PCDINPE , ,Vila Bittencourt , +B2383,3,195.0000 ,-7.620000,-72.60000,PCDINPE , ,Cruzeiro do Sul , +B2384,3,1310.000 ,-22.37000,-45.30000,PCDINPE , ,Geracao Usina Luiz Dias - EFEI , +B2385,3,35.00000 ,-3.370000,-64.30000,PCDINPE , ,Tefe , +B2386,3,60.00000 ,-0.400000,-65.00000,PCDINPE , ,Tapuruquara , +B2387,3,1310.000 ,-22.37000,-45.30000,PCDINPE , ,Usina Luis Dias , +B2388,3,466.0000 ,-24.05000,-51.60000,PCDINPE , ,Salto Osorio Jusante , +B2389,3,488.0000 ,-18.12000,-50.10000,PCDINPE , ,Ponte Sul Goiania , +B2390,3,61.00000 ,-0.130000,-67.00000,PCDINPE , ,Sao Gabriel da Cachoeira , +B2391,3,164.0000 ,-12.85000,-62.90000,PCDINPE , ,Pedras Negras , +B2392,3,216.0000 ,-11.02000,-68.70000,PCDINPE , ,Brasileia , +B2393,3,91.00000 ,-30.02000,-52.00000,PCDINPE , ,Rio Grande Regatas , +B2394,3,30.00000 ,-30.08000,-51.00000,PCDINPE , ,Farol de Itapua , +B2396,3,914.0000 ,-21.15000,-44.90000,PCDINPE , ,Macaia , +B2398,3,91.00000 ,1.180000 ,-66.80000,PCDINPE , ,Cucui , +B2399,3,565.0000 ,-16.35000,-48.00000,PCDINPE , ,Estrada GO-56 , +B2401,3,38.00000 ,-22.68000,-43.40000,PCDINPE , ,Nova Iguacu , +B2402,3,342.0000 ,-23.79000,-54.20000,PCDINPE , ,Eldorado , +B2403,3,384.0000 ,-21.61000,-55.10000,PCDINPE , ,Maracaju , +B2404,3,850.0000 ,-24.25000,-49.70000,PCDINPE , ,Jaguariaiva , +B2405,3,658.0000 ,-19.39000,-54.50000,PCDINPE , ,Sao Gabriel do Oeste , +B2406,3,839.0000 ,-26.17000,-50.30000,PCDINPE , ,Canoinhas , +B2408,3,125.0000 ,-20.24000,-56.30000,PCDINPE , ,Miranda , +B2409,3,430.0000 ,-22.22000,-54.80000,PCDINPE , ,Dourados , +B2410,3,858.0000 ,-24.00000,-51.30000,PCDINPE , ,Faxinal , +B2411,3,156.0000 ,-16.19000,-55.90000,PCDINPE , , , +B2412,3,532.0000 ,-20.44000,-54.60000,PCDINPE , ,Campo Grande , +B2413,3,412.0000 ,-25.29000,-54.00000,PCDINPE , ,Medianeira , +B2420,3,0.000000 ,-13.00000,-35.00000,PCDINPE , ,PNBOIA 23 - WMO 31956 , +B2421,3,0.000000 ,-29.00000,-46.00000,PCDINPE , ,PNBOIA 22 - WMO 31955 , +B2422,3,0.000000 ,-21.00000,-33.00000,PCDINPE , ,PNBOIA 21 - WMO 31954 , +B2423,3,0.000000 ,-17.00000,-35.00000,PCDINPE , ,PNBOIA 20 - WMO 31953 , +B2424,3,0.000000 ,-13.00000,-34.00000,PCDINPE , ,PNBOIA 19 - WMO 31952 , +B2425,3,0.000000 ,-15.00000,-36.00000,PCDINPE , ,PNBOIA 18 - WMO 31947 , +B2426,3,0.000000 ,-5.000000,-23.00000,PCDINPE , ,PNBOIA 17 - WMO 31951 , +B2427,3,0.000000 ,-18.00000,-38.00000,PCDINPE , ,PNBOIA 16 - WMO 31950 , +B2428,3,0.000000 ,-21.00000,-39.00000,PCDINPE , ,PNBOIA 15 - WMO 31949 , +B2429,3,0.000000 ,-13.00000,-34.00000,PCDINPE , ,PNBOIA 14 - WMO 31498 , +B2430,3,0.000000 ,-28.50000,-45.00000,PCDINPE , ,PNBOIA 13 - WMO 31962 , +B2431,3,0.000000 ,-26.00000,-41.50000,PCDINPE , ,PNBOIA 12 - WMO 31963 , +B2432,3,0.000000 ,-27.00000,-46.00000,PCDINPE , ,PNBOIA 11 - WMO 31964 , +B2433,3,0.000000 ,-45.00000,-57.00000,PCDINPE , ,PNBOIA 10 - WMO 31965 , +B2434,3,0.000000 ,-16.00000,-34.00000,PCDINPE , ,PNBOIA 09 - WMO 31966 , +B2435,3,0.000000 ,-32.88000,-50.80000,PCDINPE , ,PNBOIA 08 - WMO 31967 , +B2461,3,0.000000 ,-26.00000,-41.00000,PCDINPE , ,PNBOIA 03 - WMO 31959 , +B2462,3,0.000000 ,-29.00000,-37.00000,PCDINPE , ,PNBOIA 02 - WMO 31960 , +B2463,3,0.000000 ,-8.000000,-31.00000,PCDINPE , ,PNBOIA 01 - WMO 31961 , +B2464,3,549.0000 ,-20.58000,-48.50000,PCDINPE , ,Barretos , +B2465,3,45.00000 ,-9.620000,-37.70000,PCDINPE , ,Xingo , +B2466,3,305.0000 ,-29.26000,-53.40000,PCDINPE , ,Sao Martinho da Serra , +B2467,3,906.0000 ,-16.05000,-48.20000,PCDINPE , ,Descoberto Jusante , +B2468,3,45.00000 ,-3.900000,-38.50000,PCDINPE , ,COGERH Acude Gaviao , +B2469,3,53.00000 ,-4.230000,-38.30000,PCDINPE , ,Canal Pacajus , +B2470,3,30.00000 ,-4.660000,-37.80000,PCDINPE , ,Itaicaba , +B2471,3,290.0000 ,-5.890000,-38.60000,PCDINPE , ,COGERH Jaguaribe , +B2472,3,129.0000 ,-8.050000,-34.90000,PCDINPE , ,Varzea Capibaribe , +B2473,3,117.0000 ,-7.500000,-35.10000,PCDINPE , ,Capibaribe Mirim , +B2474,3,460.0000 ,-7.990000,-39.50000,PCDINPE , ,Chapeu , +B2475,3,366.0000 ,-9.150000,-40.30000,PCDINPE , ,Petrolina , +B2476,3,427.0000 ,-7.520000,-46.00000,PCDINPE , ,Balsas HIDRO , +B2477,3,422.0000 ,-7.520000,-46.00000,PCDINPE , ,Balsas MET , +B2478,3,660.0000 ,-9.250000,-45.60000,PCDINPE , ,Santa Filomena , +B2479,3,177.0000 ,-3.850000,-47.50000,PCDINPE , ,Ulianopolis , +B2480,3,450.0000 ,-8.090000,-46.60000,PCDINPE , ,Faz Panambi , +B2481,3,884.0000 ,-16.77000,-47.40000,PCDINPE , ,Cristalina , +B2482,3,343.0000 ,-13.40000,-48.00000,PCDINPE , ,UHE Cana Brava , +B2483,3,310.0000 ,-18.02000,-49.30000,PCDINPE , ,Goiatuba , +B2484,3,587.0000 ,-17.92000,-51.70000,PCDINPE , ,Jatai , +B2485,3,807.0000 ,-16.59000,-49.20000,PCDINPE , ,Goiania , +B2486,3,275.0000 ,-12.16000,-39.70000,PCDINPE , ,Ipira , +B2487,3,534.0000 ,-12.05000,-40.80000,PCDINPE , ,Ibiapora , +B2488,3,807.0000 ,-12.09000,-41.60000,PCDINPE , ,Souto Soares , +B2489,3,838.0000 ,-13.16000,-41.70000,PCDINPE , ,Piata , +B2490,3,457.0000 ,-13.14000,-41.50000,PCDINPE , ,Marcionilio Souza , +B2491,3,412.0000 ,-12.91000,-39.70000,PCDINPE , ,Milagres , +B2492,3,305.0000 ,-13.87000,-40.00000,PCDINPE , ,Jequie , +B2493,3,762.0000 ,-14.89000,-40.80000,PCDINPE , ,Vitoria da Conquista , +B2494,3,580.0000 ,-14.62000,-41.10000,PCDINPE , ,Anage , +B2495,3,488.0000 ,-14.20000,-41.70000,PCDINPE , ,Brumado , +B2496,3,152.0000 ,-16.29000,-39.50000,PCDINPE , ,Eunapolis , +B2497,3,85.00000 ,-12.93000,-38.30000,PCDINPE , ,Salvador , +B2498,3,68.00000 ,-17.57000,-39.70000,PCDINPE , ,Teixeira de Freitas , +B2499,3,68.00000 ,-14.75000,-39.20000,PCDINPE , ,Ilheus , +B2500,3,857.0000 ,-22.43000,-45.40000,PCDINPE , ,HIDRO Itajuba , +B2501,3,496.0000 ,-15.62000,-43.60000,PCDINPE , ,Jaiba , +B2502,3,519.0000 ,-16.84000,-42.00000,PCDINPE , ,Aracuai , +B2503,3,701.0000 ,-16.75000,-43.80000,PCDINPE , ,Montes Claros , +B2504,3,549.0000 ,-17.25000,-44.80000,PCDINPE , ,Pirapora , +B2505,3,625.0000 ,-17.25000,-46.80000,PCDINPE , ,Paracatu , +B2506,3,808.0000 ,-18.28000,-44.90000,PCDINPE , , , +B2507,3,305.0000 ,-19.47000,-42.50000,PCDINPE , ,Ipatinga , +B2508,3,899.0000 ,-19.74000,-42.10000,PCDINPE , ,Caratinga , +B2509,3,686.0000 ,-20.74000,-42.80000,PCDINPE , , , +B2510,3,305.0000 ,-21.47000,-42.70000,PCDINPE , ,Leopoldina , +B2511,3,960.0000 ,-21.22000,-44.90000,PCDINPE , ,Lavras , +B2512,3,857.0000 ,-22.41000,-45.40000,PCDINPE , ,Itajuba MET , +B2513,3,991.0000 ,-19.88000,-43.90000,PCDINPE , ,Belo Horizonte , +B2514,3,674.0000 ,-22.30000,-44.10000,PCDINPE , ,Pedra Selada , +B2515,3,546.0000 ,-22.37000,-44.10000,PCDINPE , ,Nossa Senhora Amparo , +B2516,3,427.0000 ,-22.68000,-44.10000,PCDINPE , ,Santana Bonsucesso , +B2517,3,1067.000 ,-22.68000,-44.30000,PCDINPE , ,Bananal , +B2518,3,1372.000 ,-22.65000,-44.50000,PCDINPE , ,Formoso , +B2519,3,104.0000 ,-17.82000,-40.30000,PCDINPE , ,Nanuque , +B2520,3,950.0000 ,-23.07000,-44.90000,PCDINPE , ,Cunha , +B2521,3,3.000000 ,-23.69000,-45.40000,PCDINPE , ,Caraguatatuba , +B2522,3,762.0000 ,-23.41000,-45.50000,PCDINPE , ,Paraibuna , +B2523,3,731.0000 ,-22.95000,-45.80000,PCDINPE , ,Monteiro Lobato , +B2524,3,539.0000 ,-22.80000,-45.10000,PCDINPE , ,Guaratingueta , +B2525,3,518.0000 ,-22.58000,-44.90000,PCDINPE , ,Cruzeiro , +B2526,3,899.0000 ,-21.70000,-45.80000,PCDINPE , ,Machado , +B2527,3,1590.000 ,-22.72000,-45.50000,PCDINPE , ,Campos do Jordao , +B2528,3,0.000000 ,-23.43000,-45.00000,PCDINPE , ,Ubatuba , +B2529,3,745.0000 ,-23.22000,-45.30000,PCDINPE , ,Sao Luiz do Paraitinga , +B2530,3,1372.000 ,-22.64000,-44.50000,PCDINPE , ,Sao Jose do Barreiro , +B2531,3,571.0000 ,-23.03000,-45.50000,PCDINPE , ,Taubate , +B2532,3,564.0000 ,-22.54000,-44.70000,PCDINPE , ,Queluz , +B2533,3,1219.000 ,-22.80000,-44.80000,PCDINPE , ,Silveiras , +B2534,3,677.0000 ,-23.37000,-45.80000,PCDINPE , ,Santa Branca , +B2535,3,0.000000 ,-23.97000,-45.90000,PCDINPE , ,Jacarei , +B2536,3,547.0000 ,-23.12000,-45.80000,PCDINPE , ,Sao Jose dos Campos , +B2537,3,558.0000 ,-22.92000,-45.40000,PCDINPE , ,Pindamonhangaba , +B2538,3,607.0000 ,-22.78000,-45.10000,PCDINPE , ,Guaratingueta , +B2539,3,607.0000 ,-22.59000,-44.90000,PCDINPE , ,Cruzeiro , +B2540,3,642.0000 ,-22.53000,-44.70000,PCDINPE , ,Queluz , +B2541,3,586.0000 ,-23.05000,-45.60000,PCDINPE , ,Cacapava , +B2545,3,379.0000 ,-11.64000,-38.90000,PCDINPE , ,Serrinha , +B2546,3,722.0000 ,-11.29000,-41.80000,PCDINPE , ,Irece , +B2547,3,824.0000 ,-13.96000,-42.60000,PCDINPE , ,Caitite , +B2548,3,667.0000 ,-13.57000,-39.90000,PCDINPE , ,Jaguaquara , +B2549,3,278.0000 ,-10.84000,-47.70000,PCDINPE , ,UHE Isamu Ikeda Montante , +B2550,3,457.0000 ,-7.490000,-36.10000,PCDINPE , ,Acude Boqueirao - Paraiba , +B2551,3,61.00000 ,-4.140000,-38.40000,PCDINPE , ,Horizonte EB-2 , +B2552,3,45.00000 ,-6.160000,-38.40000,PCDINPE , ,Erere EB-1 , +B2553,3,30.00000 ,-4.670000,-37.80000,PCDINPE , ,EB-0 Jaguaribe , +B2554,3,150.0000 ,-15.89000,-64.60000,PCDINPE , ,El Carmen , +B2555,3,350.0000 ,-16.97000,-63.40000,PCDINPE , ,Villa Tunari , +B2556,3,120.0000 ,-11.10000,-66.40000,PCDINPE , ,Miraflores , +B2557,3,120.0000 ,-11.10000,-66.40000,PCDINPE , ,Miraflores , +B2558,3,580.0000 ,-14.44000,-67.50000,PCDINPE , ,Rurrenabaque , +B2559,3,3175.000 ,-16.55000,-68.00000,PCDINPE , ,Aranjuez , +B2560,3,4724.000 ,-21.49000,-67.90000,PCDINPE , ,Caquella , +B2561,3,206.0000 ,-16.82000,-64.70000,PCDINPE , ,Puerto Villarroel , +B2562,3,286.0000 ,-16.97000,-65.40000,PCDINPE , ,Villa Tunari , +B2563,3,3810.000 ,-16.20000,-68.70000,PCDINPE , ,Huatajata , +B2564,3,38.00000 ,-3.840000,-32.40000,PCDINPE , ,Fernando de Noronha , +B2565,3,624.0000 ,-7.460000,-40.40000,PCDINPE , ,Araripina , +B2566,3,716.0000 ,-8.430000,-37.00000,PCDINPE , ,Arcoverde , +B2567,3,488.0000 ,-8.240000,-35.90000,PCDINPE , ,Caruaru , +B2568,3,10.00000 ,-8.060000,-34.90000,PCDINPE , ,Recife , +B2569,3,91.00000 ,-6.130000,-38.20000,PCDINPE , ,Pau dos Ferros , +B2570,3,46.00000 ,-5.420000,-36.80000,PCDINPE , ,Ipanguacu , +B2571,3,359.0000 ,-6.420000,-36.70000,PCDINPE , ,Cruzeta , +B2572,3,31.00000 ,-5.790000,-35.20000,PCDINPE , ,Natal , +B2573,3,50.00000 ,-2.400000,-44.40000,PCDINPE , ,Alcantara , +B2574,3,213.0000 ,2.550000 ,-61.30000,PCDINPE , ,Vila do Apiau , +B2575,3,219.0000 ,-6.440000,-50.00000,PCDINPE , ,Canaa dos Carajas , +B2576,3,51.00000 ,-1.200000,-47.10000,PCDINPE , ,Capanema , +B2577,3,227.0000 ,-11.90000,-61.20000,PCDINPE , ,PCH Primavera , +B2578,3,91.00000 ,0.900000 ,-52.00000,PCDINPE , ,Serra do Navio , +B2579,3,152.0000 ,3.810000 ,-51.80000,PCDINPE , ,Oiapoque , +B2580,3,366.0000 ,-15.90000,-52.20000,PCDINPE , ,Aragarcas , +B2581,3,404.0000 ,-12.70000,-48.20000,PCDINPE , ,PORTO BARREIRao , +B2582,3,219.0000 ,-8.980000,-48.10000,PCDINPE , ,Pedro Afonso , +B2583,3,213.0000 ,-11.62000,-50.60000,PCDINPE , ,MET Sao Felix do Araguaia , +B2584,3,91.00000 ,-5.360000,-49.10000,PCDINPE , ,MET Maraba , +B2585,3,259.0000 ,-15.02000,-59.90000,PCDINPE , ,Vila Bela Sant Trindade , +B2586,3,61.00000 ,-3.200000,-52.20000,PCDINPE , ,MET Altamira , +B2587,3,60.00000 ,-1.460000,-56.30000,PCDINPE , ,Porto Trombetas , +B2588,3,30.00000 ,-0.430000,-61.70000,PCDINPE , ,Santa Maria Boiacu , +B2589,3,76.00000 ,-4.230000,-69.90000,PCDINPE , ,Tabatinga , +B2590,3,204.0000 ,-15.55000,-56.00000,PCDINPE , ,Cuiaba , +B2591,3,183.0000 ,-7.600000,-72.70000,PCDINPE , ,MET Cruzeiro do Sul , +B2592,3,244.0000 ,-6.630000,-51.90000,PCDINPE , ,S Felix do Xingu , +B2593,3,61.00000 ,-7.500000,-63.00000,PCDINPE , ,MET Humaita , +B2594,3,91.00000 ,-6.230000,-57.70000,PCDINPE , ,Jacareacanga , +B2595,3,274.0000 ,-11.54000,-57.40000,PCDINPE , ,Porto dos Gauchos , +B2596,3,290.0000 ,-10.83000,-61.90000,PCDINPE , ,Ji-Parana , +B2597,3,61.00000 ,-0.130000,-67.00000,PCDINPE , ,Sao Gabriel da Cachoeira , +B2598,3,305.0000 ,3.360000 ,-59.80000,PCDINPE , ,Bonfim , +B2599,3,609.0000 ,2.780000 ,-63.80000,PCDINPE , ,Missao Surucucu , +B2600,3,153.0000 ,-27.85000,-55.00000,PCDINPE , ,Porto Lucena , +B2601,3,233.0000 ,-6.040000,-57.60000,PCDINPE , ,Fortaleza , +B2602,3,191.0000 ,-5.380000,-52.80000,PCDINPE , ,B Horizonte , +B2603,3,152.0000 ,-8.260000,-49.20000,PCDINPE , ,Conceicao do Araguaia , +B2604,3,147.0000 ,-28.95000,-51.70000,PCDINPE , ,PCH Linha Emilia , +B2605,3,64.00000 ,-28.63000,-56.00000,PCDINPE , ,Passo S Borja , +B2606,3,114.0000 ,-30.39000,-56.40000,PCDINPE , ,Quarai , +B2607,3,61.00000 ,-1.080000,-57.00000,PCDINPE , ,Cachoeira Porteira , +B2608,3,61.00000 ,-7.500000,-63.00000,PCDINPE , ,Humaita , +B2609,3,274.0000 ,-10.88000,-61.90000,PCDINPE , ,Ji-Parana , +B2610,3,152.0000 ,-9.700000,-65.30000,PCDINPE , ,Abuna , +B2611,3,58.00000 ,-30.21000,-57.50000,PCDINPE , ,Barra do Quarai , +B2612,3,137.0000 ,3.450000 ,-60.90000,PCDINPE , ,Mocidade , +B2613,3,30.00000 ,-1.460000,-61.60000,PCDINPE , ,Moura , +B2614,3,914.0000 ,-25.63000,-51.90000,PCDINPE , ,Santa Clara , +B2615,3,20.00000 ,-4.630000,-56.30000,PCDINPE , ,Bubure , +B2616,3,114.0000 ,0.130000 ,-67.00000,PCDINPE , ,S-10 Sao Gabriel da Cachoeira , +B2617,3,29.00000 ,-0.480000,-64.80000,PCDINPE , ,Serrinha , +B2618,3,91.00000 ,-5.350000,-49.10000,PCDINPE , ,Maraba , +B2619,3,183.0000 ,-6.380000,-48.50000,PCDINPE , ,Xambioa , +B2620,3,213.0000 ,-11.62000,-50.60000,PCDINPE , ,Sao Felix do Araguaia , +B2621,3,228.0000 ,-13.48000,-51.40000,PCDINPE , ,Trecho Medio , +B2622,3,274.0000 ,-14.82000,-51.10000,PCDINPE , ,Aruana , +B2623,3,335.0000 ,-15.78000,-52.20000,PCDINPE , ,Barra do Garcas , +B2624,3,183.0000 ,-7.330000,-47.40000,PCDINPE , ,Carolina , +B2625,3,320.0000 ,-10.70000,-48.40000,PCDINPE , ,Porto Nacional , +B2626,3,274.0000 ,-12.55000,-47.80000,PCDINPE , ,Parana , +B2627,3,274.0000 ,-12.28000,-48.30000,PCDINPE , ,Fazenda Angical , +B2628,3,30.00000 ,-10.02000,-36.30000,PCDINPE , ,Camacari , +B2629,3,91.00000 ,-9.520000,-36.00000,PCDINPE , ,Atalaia , +B2630,3,61.00000 ,-9.480000,-35.80000,PCDINPE , ,Faz. Boa Fortuna , +B2631,3,290.0000 ,-5.900000,-38.60000,PCDINPE , ,Jaguaribe , +B2632,3,244.0000 ,-6.370000,-37.30000,PCDINPE , ,Jardim de Piranhas , +B2633,3,122.0000 ,-5.580000,-43.00000,PCDINPE , ,Fazenda Veneza , +B2634,3,122.0000 ,-6.770000,-43.00000,PCDINPE , ,Barao de Grajau , +B2635,3,89.00000 ,-8.760000,-63.90000,PCDINPE , ,Canutama , +B2637,3,92.00000 ,-3.160000,-48.00000,PCDINPE , ,Fazenda Maringa , +B2638,3,61.00000 ,-10.22000,-36.80000,PCDINPE , ,Propria , +B2639,3,381.0000 ,-9.420000,-40.60000,PCDINPE , ,Juazeiro , +B2640,3,625.0000 ,-11.05000,-45.20000,PCDINPE , ,Formosa Rio Preto , +B2641,3,457.0000 ,-27.12000,-49.90000,PCDINPE , ,Taio , +B2642,3,458.0000 ,-12.18000,-43.20000,PCDINPE , ,Morpara , +B2643,3,511.0000 ,-13.40000,-44.20000,PCDINPE , ,Santa Maria da Vitoria , +B2644,3,473.0000 ,-14.27000,-44.10000,PCDINPE , ,Juvenilia , +B2645,3,557.0000 ,-14.78000,-43.50000,PCDINPE , ,Novo Porto 2 , +B2646,3,503.0000 ,-16.37000,-45.00000,PCDINPE , ,Sao Romao , +B2647,3,488.0000 ,-16.27000,-45.20000,PCDINPE , ,Barra do Escuro , +B2648,3,579.0000 ,-17.02000,-45.50000,PCDINPE , ,Porto do Cavalo , +B2649,3,106.0000 ,-26.82000,-49.20000,PCDINPE , ,Timbo , +B2650,3,549.0000 ,-17.37000,-44.90000,PCDINPE , ,Pirapora - Barreiro , +B2651,3,777.0000 ,-19.77000,-44.80000,PCDINPE , ,Jaguaruna Jusante , +B2652,3,91.00000 ,-5.500000,-48.30000,PCDINPE , ,Fazenda Alegria , +B2653,3,167.0000 ,-27.10000,-48.90000,PCDINPE , ,Brusque , +B2654,3,610.0000 ,-27.30000,-49.30000,PCDINPE , ,Salseiro , +B2655,3,15.00000 ,-21.65000,-41.70000,PCDINPE , ,Sao Fidelis , +B2656,3,122.0000 ,-21.53000,-42.10000,PCDINPE , ,Santo Antonio de Padua , +B2657,3,244.0000 ,-21.38000,-42.70000,PCDINPE , ,Cataguases , +B2658,3,518.0000 ,-21.48000,-43.10000,PCDINPE , ,Rio Novo , +B2659,3,521.0000 ,-22.67000,-45.00000,PCDINPE , ,Cachoeira Paulista HIDRO , +B2660,3,511.0000 ,-22.08000,-43.50000,PCDINPE , ,Manoel Duarte , +B2661,3,457.0000 ,-22.47000,-43.80000,PCDINPE , ,Barra do Pirai , +B2662,3,518.0000 ,-22.54000,-44.10000,PCDINPE , ,Barra Mansa , +B2663,3,557.0000 ,-22.92000,-45.40000,PCDINPE , ,Pindamonhangaba , +B2664,3,762.0000 ,-23.37000,-45.90000,PCDINPE , ,Santa Branca , +B2665,3,152.0000 ,-19.53000,-40.60000,PCDINPE , ,Colatina , +B2666,3,305.0000 ,-19.47000,-41.10000,PCDINPE , ,Sao Sebastiao da Encruzilhada , +B2667,3,297.0000 ,-18.58000,-41.90000,PCDINPE , ,Vila Matias , +B2668,3,305.0000 ,-18.87000,-41.90000,PCDINPE , ,Governador Valadares , +B2669,3,656.0000 ,-19.23000,-43.00000,PCDINPE , ,Ferros , +B2670,3,274.0000 ,-19.53000,-42.60000,PCDINPE , ,Mario de Carvalho , +B2671,3,640.0000 ,-20.38000,-42.90000,PCDINPE , ,Ponte Nova , +B2672,3,457.0000 ,-11.33000,-43.80000,PCDINPE , ,Boqueirao , +B2673,3,381.0000 ,-16.43000,-40.90000,PCDINPE , ,Jequitinhonha , +B2674,3,221.0000 ,-6.250000,-38.90000,PCDINPE , ,Acude Gaviao , +B2675,3,458.0000 ,-16.77000,-42.00000,PCDINPE , ,Itira , +B2676,3,153.0000 ,-15.58000,-39.50000,PCDINPE , ,Fazenda Nanci , +B2677,3,473.0000 ,-15.25000,-40.60000,PCDINPE , ,Itambe , +B2678,3,91.00000 ,-14.32000,-39.30000,PCDINPE , ,Ubaitaba , +B2679,3,457.0000 ,-14.27000,-41.30000,PCDINPE , ,Santo Antonio , +B2680,3,183.0000 ,-12.28000,-39.00000,PCDINPE , ,Monday R-5 , +B2681,3,198.0000 ,-12.55000,-39.50000,PCDINPE , ,Argoim , +B2682,3,381.0000 ,-12.98000,-40.90000,PCDINPE , ,Itaete , +B2683,3,122.0000 ,-21.70000,-57.80000,PCDINPE , ,Porto Murtinho , +B2684,3,122.0000 ,-19.62000,-57.40000,PCDINPE , ,Porto Esperanca , +B2685,3,168.0000 ,-20.48000,-55.70000,PCDINPE , ,Aquidauana , +B2686,3,168.0000 ,-20.73000,-56.10000,PCDINPE , ,Estrada MT 738 , +B2687,3,381.0000 ,-27.02000,-49.30000,PCDINPE , ,Apiuna , +B2688,3,274.0000 ,-18.43000,-54.80000,PCDINPE , ,Coxim , +B2689,3,137.0000 ,-19.03000,-57.50000,PCDINPE , ,Ladario , +B2690,3,122.0000 ,-18.38000,-57.30000,PCDINPE , ,Sao Francisco , +B2691,3,122.0000 ,-17.37000,-56.70000,PCDINPE , ,Pousada Taima , +B2692,3,122.0000 ,-17.17000,-55.90000,PCDINPE , ,Sao Jeronimo , +B2693,3,122.0000 ,-16.67000,-55.10000,PCDINPE , ,Acima do Corrego Grande , +B2694,3,122.0000 ,-16.43000,-56.30000,PCDINPE , ,Porto Cercado , +B2695,3,183.0000 ,-15.58000,-56.10000,PCDINPE , ,Cuiaba , +B2696,3,229.0000 ,-14.92000,-56.30000,PCDINPE , ,Rosario Oeste , +B2697,3,122.0000 ,-17.15000,-57.30000,PCDINPE , ,Porto Conceicao , +B2698,3,152.0000 ,-16.07000,-57.60000,PCDINPE , ,Caceres , +B2699,3,229.0000 ,-15.07000,-57.10000,PCDINPE , ,Barra dos Bugres , +B2700,3,161.0000 ,-25.60000,-54.50000,PCDINPE , ,Iate Clube , +B2701,3,259.0000 ,-25.68000,-54.40000,PCDINPE , ,Hotel Cataratas , +B2702,3,336.0000 ,-25.57000,-53.90000,PCDINPE , ,Porto Capanema , +B2703,3,549.0000 ,-25.77000,-52.90000,PCDINPE , ,aguas do Vere , +B2704,3,488.0000 ,-25.53000,-53.00000,PCDINPE , ,Porto Vitoria , +B2705,3,914.0000 ,-25.63000,-51.90000,PCDINPE , ,Foz do Cachoeira , +B2706,3,876.0000 ,-26.23000,-51.00000,PCDINPE , ,Uniao da Vitoria , +B2707,3,731.0000 ,-26.03000,-50.50000,PCDINPE , ,Fluviopolis , +B2708,3,838.0000 ,-26.10000,-49.80000,PCDINPE , ,Rio Negro , +B2709,3,807.0000 ,-26.15000,-49.30000,PCDINPE , ,Fragosos , +B2710,3,876.0000 ,-25.55000,-49.80000,PCDINPE , ,Porto Amazonas , +B2711,3,274.0000 ,-23.32000,-52.60000,PCDINPE , ,Porto Paraiso do Norte , +B2712,3,351.0000 ,-24.17000,-53.70000,PCDINPE , ,Balsa de Santa Maria , +B2713,3,488.0000 ,-25.53000,-53.00000,PCDINPE , ,Uba do Sul , +B2714,3,274.0000 ,-22.38000,-53.50000,PCDINPE , ,Ivinhema I , +B2715,3,351.0000 ,-22.72000,-53.10000,PCDINPE , ,Porto Sao Jose , +B2716,3,823.0000 ,-24.50000,-50.40000,PCDINPE , ,Tibagi , +B2717,3,427.0000 ,-22.90000,-50.00000,PCDINPE , ,Porto Jau , +B2718,3,610.0000 ,-23.60000,-48.50000,PCDINPE , ,Campina do M. Alegre , +B2719,3,358.0000 ,-20.43000,-52.80000,PCDINPE , ,Porto Caiua , +B2720,3,274.0000 ,-20.87000,-51.60000,PCDINPE , ,Jupia Jusante , +B2721,3,381.0000 ,-21.12000,-50.20000,PCDINPE , ,Jus. Nova Anhandava , +B2722,3,610.0000 ,-22.72000,-47.60000,PCDINPE , ,Piracicaba , +B2723,3,549.0000 ,-22.95000,-47.80000,PCDINPE , ,Laranjal Paulista , +B2724,3,305.0000 ,-19.85000,-50.30000,PCDINPE , ,agua Vermelha , +B2725,3,579.0000 ,-21.85000,-47.50000,PCDINPE , ,Porto Ferreira , +B2726,3,610.0000 ,-21.32000,-47.40000,PCDINPE , ,Fazenda Corredeira , +B2727,3,960.0000 ,-21.60000,-45.50000,PCDINPE , ,Porto dos Buenos , +B2728,3,1006.000 ,-22.05000,-45.70000,PCDINPE , ,Careacu , +B2729,3,496.0000 ,-27.40000,-49.60000,PCDINPE , ,Ituporanga , +B2730,3,91.00000 ,-3.100000,-67.90000,PCDINPE , ,Santo Antonio Ica , +B2731,3,305.0000 ,-19.08000,-50.50000,PCDINPE , ,Sao Simao , +B2732,3,305.0000 ,-28.17000,-48.90000,PCDINPE , ,Sao Martinho , +B2733,3,777.0000 ,-17.33000,-48.20000,PCDINPE , ,Pires do Rio , +B2734,3,770.0000 ,-18.75000,-48.20000,PCDINPE , ,Capim Branco , +B2735,3,793.0000 ,-17.67000,-47.60000,PCDINPE , ,Campo A. de Goias , +B2736,3,990.0000 ,-18.60000,-46.50000,PCDINPE , ,Patos de Minas , +B2737,3,122.0000 ,0.650000 ,-56.80000,PCDINPE , ,Perimetral Norte , +B2738,3,118.0000 ,-16.13000,-57.70000,PCDINPE , ,Caceres , +B2739,3,215.0000 ,-16.46000,-54.60000,PCDINPE , ,Rondonopolis , +B2740,3,190.0000 ,-18.43000,-54.70000,PCDINPE , ,Coxim , +B2741,3,176.0000 ,-15.58000,-56.10000,PCDINPE , ,Cuiaba , +B2742,3,83.00000 ,-19.62000,-57.40000,PCDINPE , ,Porto Esperanca , +B2743,3,84.00000 ,-21.70000,-57.90000,PCDINPE , ,Porto Murtinho , +B2744,3,121.0000 ,-29.62000,-53.30000,PCDINPE , ,Dona Francisca , +B2745,3,30.00000 ,-28.48000,-49.00000,PCDINPE , ,Tubarao , +B2746,3,198.0000 ,-28.25000,-49.10000,PCDINPE , , , +B2747,3,167.0000 ,-28.35000,-49.20000,PCDINPE , ,Orleans Montante , +B2748,3,534.0000 ,-27.18000,-49.60000,PCDINPE , ,Rio do Sul Novo , +B2749,3,106.0000 ,-24.52000,-48.10000,PCDINPE , ,Eldorado , +B2750,3,91.00000 ,-24.32000,-47.60000,PCDINPE , ,Juquia , +B2751,3,290.0000 ,-24.58000,-48.50000,PCDINPE , ,Iporanga , +B2752,3,572.0000 ,-24.78000,-49.20000,PCDINPE , ,Balsa do Cerro Azul , +B2753,3,76.00000 ,-29.75000,-57.00000,PCDINPE , ,Uruguaiana , +B2754,3,91.00000 ,-29.32000,-56.00000,PCDINPE , ,Passo Mariano Pinto , +B2755,3,107.0000 ,-29.77000,-55.70000,PCDINPE , ,Alegrete , +B2756,3,122.0000 ,-29.60000,-55.40000,PCDINPE , ,Manoel Viana , +B2757,3,129.0000 ,-30.25000,-54.90000,PCDINPE , ,Rosario do Sul , +B2758,3,91.00000 ,-26.83000,-49.00000,PCDINPE , ,Blumenau , +B2759,3,214.0000 ,-28.58000,-54.90000,PCDINPE , ,Passo Santa Maria , +B2760,3,167.0000 ,-28.18000,-54.70000,PCDINPE , ,Ponte Mistica , +B2761,3,259.0000 ,-27.17000,-53.20000,PCDINPE , ,Irai , +B2762,3,61.00000 ,-1.900000,-55.50000,PCDINPE , ,Obidos , +B2763,3,442.0000 ,-27.47000,-51.90000,PCDINPE , ,Marcelino Ramos , +B2764,3,298.0000 ,-24.07000,-54.20000,PCDINPE , ,Guaira , +B2765,3,884.0000 ,-28.20000,-50.70000,PCDINPE , ,Passo Socorro , +B2766,3,563.0000 ,-22.68000,-45.00000,PCDINPE , ,Cachoeira Paulista , +B2272,3,138.0000 ,-8.360000,-35.20000,PCDINPE , ,Escada , +B2345,3,811.0000 ,-14.08000,-46.30000,PCDINPE , ,Posse , +B2354,3,389.0000 ,-14.53000,-49.90000,PCDINPE , ,Crixas , +B2379,3,345.0000 ,-27.20000,-49.80000,PCDINPE , ,Indaial , +B2481,3,777.0000 ,-17.30000,-48.20000,PCDINPE , ,MET Pires do Rio , +B2482,3,732.0000 ,-15.07000,-48.90000,PCDINPE , ,Barro Alto , +B2506,3,678.0000 ,-19.71000,-47.90000,PCDINPE , ,Uberaba , +B2549,3,914.0000 ,-19.82000,-43.90000,PCDINPE , ,Corrego do Nado SUDECAP , +B2569,3,17.00000 ,-5.180000,-37.30000,PCDINPE , ,Mossoro , +B2577,3,978.0000 ,-16.04000,-48.10000,PCDINPE , ,Corumba , +B2581,3,785.0000 ,-12.40000,-46.40000,PCDINPE , ,Taguatinga , +B2582,3,183.0000 ,-8.970000,-48.10000,PCDINPE , ,Pedro Afonso , +B2587,3,82.00000 ,-1.080000,-57.00000,PCDINPE , ,Cachoeira Porteira , +B2594,3,100.0000 ,-6.780000,-59.00000,PCDINPE , ,Sucunduri , +B2600,3,61.00000 ,-3.200000,-52.20000,PCDINPE , ,Altamira , +B2604,3,458.0000 ,-27.05000,-49.50000,PCDINPE , ,Ibirama , +B2605,3,198.0000 ,-0.570000,-51.20000,PCDINPE , ,Sao Francisco I , +B2606,3,275.0000 ,-11.42000,-58.60000,PCDINPE , ,Fontanilhas , +B2611,3,30.00000 ,-3.130000,-60.00000,PCDINPE , ,Manaus , +B2613,3,9.000000 ,-32.57000,-53.30000,PCDINPE , ,PONTE JAGUARAO , +B2624,3,183.0000 ,-7.330000,-47.40000,PCDINPE , ,Carolina , +THMI1,3,2019.300 ,44.39580 ,-112.1081,RAWS , ,3 MILE ID US , +MAHN7,3,655.3000 ,35.80310 ,-82.65030,RAWS , ,7 MILE RIDGE NC US , +MOFW1,3,1979.400 ,49.00170 ,-120.6475,RAWS , ,83 MONUMENT WA US , +ATNC1,3,792.5000 ,34.44580 ,-118.2000,RAWS , ,ACTON CA US , +AELG1,3,46.90000 ,31.10970 ,-83.42690,RAWS , ,ADEL GA US , +AGZM5,3,280.4000 ,48.50000 ,-95.87000,RAWS , ,AGASSIZ MN US , +TS481,3,1341.100 ,42.42500 ,-103.7358,RAWS , ,AGATE NE US , +AGFO3,3,75.30000 ,42.55220 ,-124.0578,RAWS , ,AGNESS OR US , +ACRU1,3,2709.700 ,37.52220 ,-112.2711,RAWS , ,AGUA CANYON UT US , +TS043,3,2481.100 ,35.52640 ,-107.3211,RAWS , ,ALB PORTABLE #2 NM US , +APBN6,3,105.2000 ,42.70140 ,-73.93360,RAWS , ,ALBANY PINE BUSH NY US , +CWRN5,3,2182.400 ,36.97690 ,-107.6283,RAWS , ,ALBINO CANYON NM US , +TR305,3,1828.800 ,34.66030 ,-107.7906,RAWS , ,ALBUQUERQUE PORTABLE NM US , +TWRA2,3,548.6000 ,62.81670 ,-141.4667,RAWS , ,ALCAN HWY MI-1244 AK US , +ALDC1,3,281.3000 ,40.18670 ,-123.5903,RAWS , ,ALDER POINT CA US , +ADFW1,3,1371.600 ,46.26830 ,-117.4983,RAWS , ,ALDER RIDGE WA US , +ECKC1,3,1388.400 ,39.65140 ,-122.7236,RAWS , ,ALDER SPRINGS CA US , +AGRM4,3,238.7000 ,44.12920 ,-84.12280,RAWS , ,ALGER MI US , +ANFP1,3,538.3000 ,41.54220 ,-79.12670,RAWS , ,ALLEGHENY PA US , +TS738,3,2.100000 ,35.58170 ,-76.48470,RAWS , ,ALLIGATOR FTS PORT NC US , +ALLN2,3,2034.500 ,39.73580 ,-115.5186,RAWS , ,ALLIGATOR RIDGE NV US , +ALFO3,3,1621.500 ,43.92140 ,-119.5964,RAWS , ,ALLISON OR US , +BAFN8,3,482.8000 ,47.96690 ,-100.5797,RAWS , ,ALPHA ND US , +SRRM8,3,1217.400 ,47.28190 ,-110.8014,RAWS , ,ALPHA MT US , +TR889,3,260.0000 ,36.79560 ,-85.38030,RAWS , ,ALPINE KY US , +ALRA3,3,2495.700 ,33.84280 ,-109.1117,RAWS , ,ALPINE AZ US , +ANEC1,3,625.8000 ,32.83440 ,-116.7397,RAWS , ,ALPINE CA US , +TR171,3,2103.100 ,41.08310 ,-120.5211,RAWS , ,ALTURAS PORTABLE CA US , +AMOC1,3,325.5000 ,33.38140 ,-117.2856,RAWS , ,AMMO DUMP CA US , +ANIC1,3,84.40000 ,34.01580 ,-119.3597,RAWS , ,ANACAPA ISLAND CA US , +TR474,3,1.500000 ,29.66920 ,-94.43830,RAWS , ,ANAHUAC TX US , +BLAN4,3,35.40000 ,39.68470 ,-74.86470,RAWS , ,ANCORA HOSPITAL NJ US , +ANDW4,3,2475.000 ,42.43720 ,-108.9456,RAWS , ,ANDERSON RIDGE WY US , +WLHS1,3,487.7000 ,34.81170 ,-83.12500,RAWS , ,ANDREW PICKENS SC US , +SNQC1,3,1297.500 ,34.38690 ,-118.2553,RAWS , ,ANF01 PORTABLE CA US , +TS173,3,1743.500 ,34.30110 ,-117.9972,RAWS , ,ANF02 PORTABLE CA US , +TR984,3,853.4000 ,34.59860 ,-118.7228,RAWS , ,ANF03 PORTABLE CA US , +TS346,3,1335.900 ,34.62110 ,-118.3656,RAWS , ,ANF04 PORTABLE CA US , +TS347,3,1051.600 ,34.24060 ,-118.2108,RAWS , ,ANF05 PORTABLE CA US , +AGLA2,3,335.3000 ,65.02000 ,-146.2281,RAWS , ,ANGEL CREEK AK US , +ATFO3,3,1969.000 ,44.03970 ,-118.4164,RAWS , ,ANTELOPE OR US , +LMRM8,3,2071.100 ,44.68670 ,-112.5417,RAWS , ,ANTELOPE MT US , +ALRN2,3,1664.200 ,41.68690 ,-116.7661,RAWS , ,ANTELOPE LAKE NV US , +ANBM2,3,137.2000 ,39.48940 ,-77.75330,RAWS , ,ANTIETAM NB MD US , +AGOW3,3,456.9000 ,45.15890 ,-89.11470,RAWS , ,ANTIGO WI US , +NZAC1,3,1200.600 ,33.55580 ,-116.6744,RAWS , ,ANZA CA US , +APOW3,3,198.1000 ,46.92970 ,-90.75250,RAWS , ,APOSTLE ISLANDS 1 WI US , +ARAU1,3,1533.100 ,40.59830 ,-113.0217,RAWS , ,ARAGONITE UT US , +AFWT2,3,6.100000 ,28.30440 ,-96.82330,RAWS , ,ARANSAS TX US , +PLIC1,3,747.4000 ,40.43810 ,-122.8297,RAWS , ,ARBUCKLE BASIN CA US , +ACRI1,3,1639.800 ,43.62170 ,-113.3889,RAWS , ,ARCO ID US , +TS582,3,1696.200 ,40.64110 ,-104.3331,RAWS , ,ARF1 CO US , +ARMM8,3,867.2000 ,47.58670 ,-108.8694,RAWS , ,ARMELLS CREEK MT US , +AMAA4,3,292.6000 ,35.57310 ,-92.81920,RAWS , ,ARMSTEAD MOUNTAIN AR US , +NAOG1,3,351.1000 ,34.69530 ,-85.17360,RAWS , ,ARMUCHEE #1 GA US , +ARGC1,3,319.4000 ,35.17920 ,-120.3919,RAWS , ,ARROYO GRANDE CA US , +ASRC1,3,298.7000 ,36.23000 ,-121.4917,RAWS , ,ARROYO SECO CA US , +MCCC1,3,1127.800 ,41.27690 ,-121.9794,RAWS , ,ASH CREEK CA US , +TSHC1,3,527.3000 ,36.49140 ,-118.8253,RAWS , ,ASH MOUNTAIN CA US , +AVLC1,3,1554.500 ,41.05190 ,-120.6861,RAWS , ,ASH VALLEY CA US , +ASLM7,3,243.2000 ,38.81190 ,-92.25690,RAWS , ,ASHLAND MO US , +TR937,3,2612.100 ,40.58920 ,-109.9942,RAWS , ,ASHLEY #3 PORTABLE UT US , +ASTM2,3,3.700000 ,38.06670 ,-75.20140,RAWS , ,ASSATEAGUE ISLAND MD US , +ASYU1,3,2468.900 ,37.51670 ,-112.5556,RAWS , ,ASSAY UT US , +RHAT2,3,143.3000 ,32.22110 ,-95.76610,RAWS , ,ATHENS TX US , +ATAM4,3,272.8000 ,45.13330 ,-84.16670,RAWS , ,ATLANTA MI US , +ATAM7,3,256.0000 ,39.86940 ,-92.52060,RAWS , ,ATLANTA MO MO US , +ANWT2,3,12.50000 ,29.66170 ,-96.25970,RAWS , ,ATTWATER NWR TX US , +AFWW3,3,295.7000 ,44.69810 ,-91.13420,RAWS , ,AUGUSTA WI US , +AFSN2,3,1923.300 ,39.50310 ,-117.0814,RAWS , ,AUSTIN NV US , +BEVM7,3,399.6000 ,36.94310 ,-92.65000,RAWS , ,AVA MO US , +TR073,3,1900.100 ,33.47860 ,-109.9681,RAWS , ,AZSCA_PORT1 AZ US , +BBYV2,3,12.20000 ,36.67190 ,-75.91640,RAWS , ,BACK BAY VA US , +BKIN7,3,6.100000 ,34.53280 ,-77.72190,RAWS , ,BACK ISLAND NC US , +BABC1,3,1432.600 ,40.88920 ,-123.1422,RAWS , ,BACKBONE CA US , +BGFO3,3,1731.300 ,44.03110 ,-120.4083,RAWS , ,BADGER CREEK OR US , +BAFM8,3,1335.900 ,45.64810 ,-106.5028,RAWS , ,BADGER PEAK MT US , +BADU1,3,1216.200 ,37.15060 ,-113.9539,RAWS , ,BADGER SPRING UT US , +BDRM5,3,449.6000 ,46.86080 ,-94.72580,RAWS , ,BADOURA MN US , +BAWC2,3,2432.900 ,39.37940 ,-105.3383,RAWS , ,BAILEY CO US , +TS480,3,197.2000 ,41.63170 ,-87.08780,RAWS , ,BAILLY IN US , +BKFN2,3,2084.800 ,39.00190 ,-114.2175,RAWS , ,BAKER FLAT NV US , +DOHS2,3,1424.600 ,43.97920 ,-103.4250,RAWS , ,BAKER PARK SD US , +TR090,3,1097.300 ,36.35940 ,-120.8228,RAWS , ,BAKERSFIELD PORT #2 CA US , +BNET2,3,315.5000 ,30.56610 ,-98.03890,RAWS , ,BALCONES TX US , +TR732,3,396.2000 ,30.63390 ,-98.08500,RAWS , ,BALCONES PORTABLE TX US , +BKFO3,3,1106.400 ,42.69360 ,-124.0394,RAWS , ,BALD KNOB LOOKOUT OR US , +BAFO3,3,1670.300 ,43.55720 ,-118.4069,RAWS , ,BALD MTN OR US , +BDMC1,3,1406.000 ,38.90560 ,-120.6972,RAWS , ,BALD MTN LOC CA US , +BDWM4,3,253.6000 ,43.89330 ,-85.85060,RAWS , ,BALDWIN MI US , +BNGC1,3,244.8000 ,39.38080 ,-121.3861,RAWS , ,BANGOR CA US , +BHFA1,3,245.1000 ,34.34440 ,-87.33750,RAWS , ,BANKHEAD AL US , +BNRI1,3,2164.100 ,44.30330 ,-115.2333,RAWS , ,BANNER SUMMIT ID US , +TR723,3,1188.700 ,31.76390 ,-111.5383,RAWS , ,BAR PORTABLE AZ US , +BBEC1,3,246.9000 ,38.02810 ,-122.7022,RAWS , ,BARNABY CA US , +BRNW3,3,368.8000 ,46.40000 ,-91.50000,RAWS , ,BARNES WI US , +BNHT2,3,780.9000 ,30.98560 ,-101.1578,RAWS , ,BARNHART TX US , +BRLN2,3,1778.500 ,41.91110 ,-119.9389,RAWS , ,BARREL SPRINGS NV US , +GSCN5,3,2541.700 ,35.89390 ,-105.4619,RAWS , ,BARTLEY NM US , +BQFO3,3,1548.400 ,42.25470 ,-118.9678,RAWS , ,BASQUE HILLS OR US , +BTRT2,3,116.7000 ,30.17420 ,-97.25640,RAWS , ,BASTROP TX US , +BATN5,3,1348.700 ,32.17860 ,-104.4406,RAWS , ,BATDRAW NM US , +BSNC1,3,963.2000 ,37.37810 ,-119.6183,RAWS , ,BATTERSON CA US , +BTTM5,3,339.2000 ,48.67030 ,-94.61720,RAWS , ,BAUDETTE MN US , +BXYG1,3,33.20000 ,31.71360 ,-82.42110,RAWS , ,BAXLEY GA US , +TR782,3,1402.100 ,33.61690 ,-116.6217,RAWS , ,BDF02 PORTABLE CA US , +BATN2,3,1463.000 ,40.56640 ,-116.7578,RAWS , ,BEACON LIGHT NV US , +BNRI2,3,213.4000 ,37.24860 ,-89.37860,RAWS , ,BEAN RIDGE IL US , +SBDM4,3,289.9000 ,44.80190 ,-86.05080,RAWS , ,BEAR MI US , +LANS2,3,698.0000 ,45.05690 ,-101.4678,RAWS , ,BEAR CREEK SD US , +FLAC1,3,1795.000 ,41.29530 ,-120.3139,RAWS , ,BEAR FLAT CA US , +BRLW4,3,1609.300 ,44.59720 ,-104.4281,RAWS , ,BEAR LODGE WY US , +BPKC1,3,2507.900 ,35.88190 ,-118.0756,RAWS , ,BEAR PEAK CA US , +BRAU1,3,2601.800 ,40.88440 ,-110.8292,RAWS , ,BEAR RIVER UT US , +BEVC1,3,1522.500 ,35.13970 ,-118.6250,RAWS , ,BEAR VALLEY CA US , +GBWN5,3,3033.700 ,33.45500 ,-108.6650,RAWS , ,BEAR WALLOW NM US , +BHDP1,3,638.3000 ,40.85060 ,-76.08060,RAWS , ,BEARS HEAD PA US , +BCFI1,3,2118.400 ,44.38500 ,-115.5500,RAWS , ,BEARSKIN CREEK ID US , +BNYN7,3,7.600000 ,35.52060 ,-76.93140,RAWS , ,BEAUFORT NC US , +BNTC1,3,816.9000 ,33.93060 ,-116.9397,RAWS , ,BEAUMONT CA US , +COKC1,3,1524.000 ,38.48830 ,-120.3250,RAWS , ,BEAVER CA US , +WBQA2,3,147.2000 ,66.26670 ,-146.5167,RAWS , ,BEAVER (WBQ) AK US , +TS808,3,2083.600 ,38.54780 ,-112.4033,RAWS , ,BEAVER PORTABLE #1 UT US , +BVRN5,3,2042.200 ,33.41830 ,-108.1000,RAWS , ,BEAVERHEAD NM US , +BDLM8,3,1328.900 ,45.83280 ,-112.1500,RAWS , ,BEAVERHEAD DEERLODGE #2 MT US , +BECW4,3,1950.700 ,44.15000 ,-111.0467,RAWS , ,BECHLER WY US , +BEEW2,3,412.4000 ,38.20030 ,-81.62000,RAWS , ,BEE MOUNTAIN WV US , +BFRW2,3,224.0000 ,38.30060 ,-82.41720,RAWS , ,BEECH FORK WV US , +CAPC1,3,213.4000 ,33.55170 ,-117.5731,RAWS , ,BELL CANYON CA US , +BLNN6,3,594.4000 ,42.14390 ,-74.49440,RAWS , ,BELLEAYRE MT. NY US , +BMJM5,3,419.7000 ,47.50330 ,-94.92810,RAWS , ,BEMIDJI MN US , +BENC1,3,275.8000 ,38.59080 ,-120.9336,RAWS , ,BEN BOLT CA US , +BENA2,3,563.9000 ,65.29030 ,-143.0639,RAWS , ,BEN CREEK AK US , +BNDC1,3,791.9000 ,37.13170 ,-122.1700,RAWS , ,BEN LOMOND CA US , +BLSA2,3,45.70000 ,61.93580 ,-150.9858,RAWS , ,BENTALIT AK US , +BETC1,3,1661.200 ,37.84310 ,-118.4778,RAWS , ,BENTON CA US , +BGLA2,3,22.90000 ,60.11860 ,-143.2833,RAWS , ,BERING GLACIER AK US , +BRWW2,3,504.4000 ,37.25890 ,-81.69780,RAWS , ,BERWIND WV US , +HSYN1,3,875.7000 ,41.89750 ,-100.3108,RAWS , ,BESSEY NE US , +BEUU1,3,1554.500 ,41.15000 ,-111.9167,RAWS , ,BEUS CANYON UT US , +BVRC1,3,384.0000 ,34.12500 ,-118.4122,RAWS , ,BEVERLY HILLS CA US , +FSTM6,3,143.3000 ,32.30250 ,-89.48440,RAWS , ,BIENVILLE MS US , +BGBC1,3,457.2000 ,40.74330 ,-123.2500,RAWS , ,BIG BAR CA US , +BBRC2,3,3169.900 ,37.49610 ,-107.7294,RAWS , ,BIG BEAR PARK CO US , +TS645,3,2257.000 ,29.23530 ,-103.2953,RAWS , ,BIG BEND QD #1 TX US , +BBNL1,3,3.400000 ,30.31670 ,-89.93330,RAWS , ,BIG BRANCH NWR LA US , +BIIC1,3,1088.100 ,41.09750 ,-123.6358,RAWS , ,BIG HILL CA US , +BHRC2,3,2636.800 ,37.02080 ,-106.2011,RAWS , ,BIG HORN CO US , +BIVU1,3,2121.400 ,38.22440 ,-109.2783,RAWS , ,BIG INDIAN VALLEY UT US , +BGNP1,3,646.2000 ,40.35750 ,-77.54780,RAWS , ,BIG KNOB PA US , +BGQA2,3,30.50000 ,61.51830 ,-149.9078,RAWS , ,BIG LAKE AK US , +BIGI3,3,274.3000 ,38.92530 ,-85.36250,RAWS , ,BIG OAKS IN US , +BPFC1,3,2091.200 ,34.31940 ,-117.0131,RAWS , ,BIG PINE FLAT CA US , +BPNC1,3,2108.300 ,34.37890 ,-117.6919,RAWS , ,BIG PINES CA US , +NBRC1,3,457.2000 ,38.03940 ,-122.5700,RAWS , ,BIG ROCK CA US , +BSAK2,3,359.7000 ,37.75000 ,-82.63330,RAWS , ,BIG SANDY KY US , +LCFM8,3,966.8000 ,47.02830 ,-105.8047,RAWS , ,BIG SHEEP MOUNTAIN MT US , +BGSM7,3,192.6000 ,36.97500 ,-91.01810,RAWS , ,BIG SPRING MO US , +BSTM5,3,267.6000 ,45.26110 ,-96.34170,RAWS , ,BIG STONE NWR MN US , +PPSC1,3,137.2000 ,36.23560 ,-121.7850,RAWS , ,BIG SUR CA US , +BHMM8,3,2493.300 ,45.07330 ,-107.8886,RAWS , ,BIGHORN MOUNTAIN MT US , +BSFM8,3,1043.900 ,46.04190 ,-108.2958,RAWS , ,BILLINGS QD #2 MT US , +BIRA2,3,259.1000 ,65.58470 ,-144.3636,RAWS , ,BIRCH CREEK AK US , +BDTT2,3,457.2000 ,30.26250 ,-98.62890,RAWS , ,BIRD TX US , +BSFT1,3,440.4000 ,36.47500 ,-84.65420,RAWS , ,BISO-NP TN US , +TR285,3,1184.800 ,46.02690 ,-114.1739,RAWS , ,BITTERROOT QD#1 - PORT MT US , +BKFS2,3,1417.300 ,43.51250 ,-103.5628,RAWS , ,BKF1 PORTABLE SD US , +TS399,3,1645.900 ,44.42060 ,-103.8956,RAWS , ,BKF2 PORTABLE SD US , +TS400,3,2020.800 ,43.91360 ,-103.8228,RAWS , ,BKF3 PORTABLE SD US , +LPRC2,3,2609.100 ,38.54280 ,-107.6869,RAWS , ,BLACK CANYON CO US , +BLCA2,3,22.90000 ,58.40670 ,-152.8864,RAWS , ,BLACK CAPE AK US , +BKCU1,3,1975.100 ,38.97920 ,-112.2389,RAWS , ,BLACK CEDAR UT US , +BLCM6,3,83.80000 ,30.84890 ,-89.03420,RAWS , ,BLACK CREEK MS US , +PIBC1,3,487.7000 ,37.95000 ,-121.8844,RAWS , ,BLACK DIAMOND CA US , +QBHA3,3,1005.800 ,33.08190 ,-109.9511,RAWS , ,BLACK HILLS AZ US , +BKBW1,3,188.4000 ,47.41360 ,-124.1031,RAWS , ,BLACK KNOB WA US , +BMOC2,3,2737.700 ,37.86170 ,-105.2842,RAWS , ,BLACK MOUNTAIN CO US , +BLKO3,3,1513.300 ,45.57360 ,-118.2386,RAWS , ,BLACK MTN RIDGE OR US , +BFWW3,3,255.4000 ,44.30030 ,-90.83500,RAWS , ,BLACK RIVER FALLS WI US , +OKFO3,3,1487.400 ,43.52530 ,-121.8164,RAWS , ,BLACK ROCK OR US , +QBRA3,3,2158.000 ,36.79440 ,-113.7567,RAWS , ,BLACK ROCK AZ US , +BLKD1,3,21.30000 ,39.32580 ,-75.73080,RAWS , ,BLACKBIRD DE US , +BKRC1,3,2468.900 ,36.09360 ,-118.2611,RAWS , ,BLACKROCK CA US , +BLAU1,3,2228.400 ,40.26920 ,-110.5622,RAWS , ,BLACKTAIL UT US , +TR792,3,4.600000 ,38.44580 ,-76.09310,RAWS , ,BLACKWATER MD US , +TS782,3,381.0000 ,40.44170 ,-78.41970,RAWS , ,BLAIR HELIBASE PA US , +BSCA4,3,365.8000 ,35.97440 ,-92.19420,RAWS , ,BLANCHARD SPRINGS AR US , +BLDT1,3,542.5000 ,35.68190 ,-85.27330,RAWS , ,BLEDSOE SF TN US , +TS816,3,1659.300 ,36.75250 ,-108.1739,RAWS , ,BLM FARMINGTON QD1 NM US , +BFSF1,3,30.50000 ,30.35810 ,-84.61110,RAWS , ,BLOXHAM FL US , +BYFO3,3,1280.200 ,44.67000 ,-117.9336,RAWS , ,BLUE CANYON OR US , +BDOC1,3,1711.500 ,41.05470 ,-120.3375,RAWS , ,BLUE DOOR CA US , +TS717,3,419.1000 ,41.08920 ,-74.91280,RAWS , ,BLUE MOUNTAIN LAKES NJ US , +BLPC2,3,3179.100 ,37.79310 ,-106.7786,RAWS , ,BLUE PARK CO US , +BEFO3,3,1147.000 ,45.50750 ,-121.7189,RAWS , ,BLUE RIDGE OR US , +BUGC1,3,1792.200 ,41.26940 ,-123.1875,RAWS , ,BLUE RIDGE (KNF) CA US , +BLRO1,3,195.4000 ,40.00420 ,-82.08080,RAWS , ,BLUE ROCK OH US , +BLWN5,3,2526.500 ,35.19420 ,-108.1631,RAWS , ,BLUEWATER RIDGE NM US , +BLUN2,3,1392.900 ,40.50170 ,-119.1217,RAWS , ,BLUEWING MOUNTAIN NV US , +BLRA4,3,109.7000 ,33.69220 ,-93.16250,RAWS , ,BLUFF CITY AR US , +BLUM8,3,777.2000 ,48.86830 ,-106.9481,RAWS , ,BLUFF CREEK MT US , +BCFO3,3,1524.000 ,44.59330 ,-119.2778,RAWS , ,BOARD CREEK OR US , +BHRO3,3,1276.500 ,44.60390 ,-120.6847,RAWS , ,BOARD HOLLOW OR US , +BOGC1,3,1733.100 ,40.59810 ,-121.0831,RAWS , ,BOGARD R.S. CA US , +BTAA2,3,497.1000 ,63.88000 ,-145.8803,RAWS , ,BOLIO AK US , +YFFI1,3,1953.800 ,44.37500 ,-114.5667,RAWS , ,BONANZA ID US , +BFYI1,3,704.1000 ,48.72580 ,-116.2953,RAWS , ,BONNERS FERRY ID US , +BONA1,3,6.100000 ,30.25280 ,-87.81250,RAWS , ,BONSECOUR AL US , +BNVA4,3,104.5000 ,35.14280 ,-93.89500,RAWS , ,BOONEVILLE AR US , +BNVC1,3,196.3000 ,38.98750 ,-123.3486,RAWS , ,BOONVILLE CA US , +BOOM8,3,1207.900 ,48.14390 ,-114.7181,RAWS , ,BOORMAN MT US , +BTLA2,3,52.10000 ,57.26780 ,-154.5650,RAWS , ,BOOTH LAKE AK US , +BLGT2,3,1236.900 ,34.82860 ,-102.8094,RAWS , ,BOOTLEG TX US , +BBLW3,3,205.1000 ,43.14920 ,-90.68420,RAWS , ,BOSCOBEL WI US , +CUHC2,3,2491.400 ,37.09190 ,-104.9194,RAWS , ,BOSQUE CO US , +BDAN5,3,1371.600 ,33.85170 ,-106.8517,RAWS , ,BOSQUE NM US , +BOFO3,3,1088.100 ,44.72190 ,-122.0031,RAWS , ,BOULDER CREEK OR US , +BYDW4,3,2359.200 ,44.94140 ,-107.7089,RAWS , ,BOYD RIDGE WY US , +BFRI1,3,1499.600 ,42.35170 ,-116.6919,RAWS , ,BRACE FLAT ID US , +RBYC1,3,164.6000 ,35.86440 ,-120.8000,RAWS , ,BRADLEY CA US , +BDLM4,3,200.9000 ,42.62810 ,-85.65970,RAWS , ,BRADLEY MI US , +BSHM8,3,1197.900 ,45.05530 ,-105.9483,RAWS , ,BRADSHAW CREEK MT US , +BIRM5,3,371.9000 ,46.39720 ,-94.13030,RAWS , ,BRAINERD MN US , +BRHC1,3,1149.100 ,35.18890 ,-120.0833,RAWS , ,BRANCH MOUNTAIN CA US , +BFAN6,3,91.40000 ,44.80000 ,-74.80000,RAWS , ,BRASHER FALLS NY US , +BRSG1,3,999.7000 ,34.80280 ,-83.71000,RAWS , ,BRASSTOWN #1 GA US , +BRAM8,3,1229.900 ,47.28500 ,-110.3517,RAWS , ,BRAVO MT US , +BPKN2,3,2462.800 ,38.26750 ,-118.8808,RAWS , ,BRAWLEY PEAKS (AURORA) NV US , +BZRC1,3,941.8000 ,41.67580 ,-122.5989,RAWS , ,BRAZIE RANCH CA US , +BZRT2,3,2.400000 ,29.14640 ,-95.30310,RAWS , ,BRAZORIA NWR TX US , +BKGC1,3,2300.600 ,35.45060 ,-118.5839,RAWS , ,BRECKENRIDGE CA US , +BOLG1,3,91.40000 ,33.05060 ,-83.71640,RAWS , ,BRENDER GA US , +BRRM8,3,1935.500 ,44.96670 ,-113.2167,RAWS , ,BRENNER MT US , +IRFO3,3,1798.300 ,44.32220 ,-119.7692,RAWS , ,BRER RABBIT OR US , +BPOC1,3,2026.900 ,38.27190 ,-119.2892,RAWS , ,BRIDGEPORT CA US , +QBAA3,3,2479.200 ,36.20470 ,-112.0622,RAWS , ,BRIGHT ANGEL AZ US , +BSTU1,3,1713.000 ,38.30830 ,-113.3847,RAWS , ,BRIMSTONE RESERVOIR UT US , +PLEC1,3,442.0000 ,37.93420 ,-122.1178,RAWS , ,BRIONES CA US , +BDVA2,3,190.5000 ,60.48330 ,-149.7667,RAWS , ,BROADVIEW AK US , +BRKO2,3,152.4000 ,34.05000 ,-94.73720,RAWS , ,BROKEN BOW OK US , +BKSC1,3,107.9000 ,38.73830 ,-122.1447,RAWS , ,BROOKS CA US , +BMFW1,3,960.1000 ,48.53780 ,-118.6936,RAWS , ,BROWN MTN. ORCHARD WA US , +BGRM8,3,1336.200 ,48.56170 ,-113.0133,RAWS , ,BROWNING MT US , +BWFO3,3,1389.900 ,43.56280 ,-120.2361,RAWS , ,BROWNS WELL OR US , +BRPU1,3,3109.000 ,39.60920 ,-110.2897,RAWS , ,BRUIN POINT UT US , +BRUO3,3,701.0000 ,44.28440 ,-122.8494,RAWS , ,BRUSH CREEK OR US , +ACON5,3,2678.900 ,34.71970 ,-107.8483,RAWS , ,BRUSHY MOUNTAIN NM US , +BYCU1,3,2394.200 ,37.64170 ,-112.1722,RAWS , ,BRYCE CANYON UT US , +BCRU1,3,1621.500 ,39.27890 ,-109.2211,RAWS , ,BRYSON CANYON UT US , +BUKU1,3,2438.400 ,37.90330 ,-111.6914,RAWS , ,BUCK FLAT UT US , +BMEC1,3,975.4000 ,37.82330 ,-120.0975,RAWS , ,BUCK MEADOWS CA US , +PKFO3,3,998.2000 ,43.03610 ,-122.6553,RAWS , ,BUCKEYE OR US , +BUCO3,3,847.3000 ,42.12060 ,-122.5639,RAWS , ,BUCKHORN SPRINGS OR US , +QBMA3,3,1950.700 ,36.91810 ,-112.1997,RAWS , ,BUCKSKIN MTN AZ US , +BDEM6,3,136.2000 ,31.41060 ,-90.84670,RAWS , ,BUDE MS US , +BUFN2,3,851.6000 ,40.58190 ,-119.7900,RAWS , ,BUFFALO CREEK NV US , +DPKI1,3,1950.700 ,42.36530 ,-112.7056,RAWS , ,BULL CANYON ID US , +BUFC1,3,1339.600 ,40.48080 ,-120.1139,RAWS , ,BULL FLAT CA US , +BULI1,3,1737.400 ,42.08000 ,-114.4847,RAWS , ,BULL SPRING ID US , +BUJW4,3,2360.100 ,44.78610 ,-107.5358,RAWS , ,BURGESS WY US , +BURT1,3,215.2000 ,36.06500 ,-87.28310,RAWS , ,BURNS TN US , +BCNC1,3,1828.800 ,34.20830 ,-116.6217,RAWS , ,BURNS CANYON CA US , +TS793,3,2119.600 ,44.94750 ,-111.9611,RAWS , ,BURNT CREEK MT US , +BNFO3,3,900.7000 ,43.20280 ,-123.7175,RAWS , ,BURNT RIDGE OR US , +ERAW4,3,2184.200 ,43.83970 ,-110.3708,RAWS , ,BURRO HILL WY US , +TS562,3,1972.100 ,32.67190 ,-108.5389,RAWS , ,BURRO MOUNTAIN NM US , +BSKN7,3,881.5000 ,35.75280 ,-82.18330,RAWS , ,BUSICK NC US , +BTTC1,3,66.10000 ,32.73970 ,-114.8839,RAWS , ,BUTTERCUP CA US , +BYRG1,3,152.4000 ,32.16810 ,-83.97470,RAWS , ,BYROMVILLE GA US , +THRW4,3,2645.700 ,44.31140 ,-110.1503,RAWS , ,CABIN CREEK WY US , +CAFO3,3,1385.300 ,43.49560 ,-121.0597,RAWS , ,CABIN LAKE OR US , +CRRP4,3,33.20000 ,17.97310 ,-67.16280,RAWS , ,CABO ROJO PR US , +LPIF1,3,1.500000 ,25.39030 ,-80.68030,RAWS , ,CACHE FL US , +CAOM3,3,33.50000 ,41.97560 ,-70.02420,RAWS , ,CACO MA US , +CDDT2,3,132.6000 ,33.74580 ,-95.92610,RAWS , ,CADDO TX US , +CADT2,3,61.00000 ,32.65830 ,-94.11640,RAWS , ,CADDO LAKE TX US , +QCAC1,3,84.70000 ,32.97360 ,-115.1736,RAWS , ,CAHUILLA CA US , +PEAC1,3,374.9000 ,37.55310 ,-121.8439,RAWS , ,CALAVERAS ROAD CA US , +TS654,3,2048.300 ,40.37690 ,-108.5219,RAWS , ,CALICO CO US , +CLFO3,3,2020.500 ,42.63140 ,-121.5597,RAWS , ,CALIMUS OR US , +CLNC1,3,1192.100 ,41.29970 ,-122.8244,RAWS , ,CALLAHAN #2 CA US , +CVFO3,3,1164.900 ,42.77920 ,-123.7347,RAWS , ,CALVERT PEAK OR US , +CMDT1,3,156.1000 ,36.06610 ,-88.16860,RAWS , ,CAMDEN TOWER TN US , +CLCL1,3,3.000000 ,30.12500 ,-93.11750,RAWS , ,CAMERON LA US , +CMNC1,3,1049.400 ,32.72110 ,-116.4639,RAWS , ,CAMERON FIRE STATION CA US , +CMLG1,3,18.90000 ,31.21420 ,-84.23610,RAWS , ,CAMILLA GA US , +CMFW1,3,962.0000 ,48.02560 ,-120.2411,RAWS , ,CAMP 4 WA US , +CNIC1,3,1219.200 ,34.35310 ,-118.4186,RAWS , ,CAMP 9 CA US , +CAMW4,3,2249.400 ,42.34030 ,-107.5728,RAWS , ,CAMP CREEK WY US , +MPEC1,3,164.3000 ,32.85920 ,-117.1056,RAWS , ,CAMP ELLIOTT CA US , +CPMG1,3,531.3000 ,34.63000 ,-84.09750,RAWS , ,CAMP MERRILL GA US , +CSXC1,3,1151.500 ,41.83080 ,-123.8764,RAWS , ,CAMP SIX CA US , +CBKA2,3,47.90000 ,61.15860 ,-149.7967,RAWS , ,CAMPBELL CREEK AK US , +CMAC1,3,121.6000 ,38.22360 ,-120.8664,RAWS , ,CAMPO SECO CA US , +CNYC1,3,1314.300 ,41.43420 ,-120.8678,RAWS , ,CANBY CA US , +CANL1,3,70.10000 ,32.80420 ,-93.06670,RAWS , ,CANEY LA US , +CNFO3,3,591.0000 ,44.34890 ,-123.8867,RAWS , ,CANNIBAL MOUNTAIN OR US , +CACM8,3,893.1000 ,46.48470 ,-104.0658,RAWS , ,CANNONBALL CREEK MT US , +CYFW1,3,762.0000 ,45.92940 ,-122.2028,RAWS , ,CANYON CREEK WA US , +TR216,3,2590.800 ,44.22970 ,-115.2469,RAWS , ,CANYON CREEK ID US , +CKLA2,3,30.50000 ,56.99920 ,-153.5417,RAWS , ,CAPE KIAVAK AK US , +CPPN5,3,1283.200 ,32.92780 ,-103.8567,RAWS , ,CAPROCK NM US , +CAPT2,3,780.6000 ,34.41060 ,-101.0492,RAWS , ,CAPROCK TX US , +CPKA2,3,767.2000 ,65.18920 ,-147.5003,RAWS , ,CARIBOU PEAK AK US , +CAVM5,3,274.3000 ,45.30280 ,-93.10110,RAWS , ,CARLOS AVERY MN US , +JEFS1,3,120.1000 ,34.66190 ,-80.27420,RAWS , ,CAROLINA SANDHILLS SC US , +CPTC2,3,2465.200 ,38.45940 ,-109.0469,RAWS , ,CARPENTER RIDGE CO US , +CDEC1,3,1467.900 ,40.06860 ,-121.5825,RAWS , ,CARPENTER RIDGE CA US , +QCAA3,3,1645.900 ,31.44500 ,-110.2800,RAWS , ,CARR AZ US , +CRRM7,3,426.7000 ,37.18060 ,-91.11810,RAWS , ,CARR CREEK MO US , +CAZC1,3,759.0000 ,35.09640 ,-119.7728,RAWS , ,CARRIZO CA US , +CCRU1,3,2126.000 ,40.88470 ,-109.4169,RAWS , ,CART CREEK UT US , +CEFO3,3,1158.200 ,44.97110 ,-118.9297,RAWS , ,CASE OR US , +CSWC1,3,1966.000 ,36.41080 ,-118.8092,RAWS , ,CASE MOUNTAIN CA US , +CSPC1,3,707.1000 ,33.44530 ,-117.4181,RAWS , ,CASE SPRINGS CA US , +CHAC1,3,1364.900 ,40.00190 ,-120.9150,RAWS , ,CASHMAN CA US , +CSVC1,3,195.1000 ,34.40810 ,-119.3703,RAWS , ,CASITAS CA US , +CMRW4,3,2359.200 ,42.71110 ,-106.3472,RAWS , ,CASPER MOUNTAIN WY US , +CASM5,3,396.2000 ,47.37780 ,-94.61500,RAWS , ,CASS LAKE MN US , +TR950,3,64.90000 ,46.27140 ,-122.8919,RAWS , ,CASTLE ROCK WA US , +CGLN7,3,176.8000 ,36.38560 ,-79.29190,RAWS , ,CASWELL GAME LANDS NC US , +BENL1,3,70.10000 ,31.50220 ,-92.46170,RAWS , ,CATAHOULA LA US , +CVBC1,3,365.8000 ,37.38030 ,-120.0769,RAWS , ,CATHEYS VALLEY CA US , +CATN2,3,1749.600 ,41.92000 ,-119.4950,RAWS , ,CATNIP MOUNTAIN NV US , +CTLN2,3,2141.200 ,38.90390 ,-114.8142,RAWS , ,CATTLE CAMP NV US , +CCDC2,3,1923.300 ,38.54060 ,-105.2039,RAWS , ,CCDBLMFTS1 CO US , +TR847,3,2468.900 ,38.74220 ,-105.2675,RAWS , ,CCDBLMFTS2 CO US , +TR107,3,1388.400 ,40.42330 ,-120.6758,RAWS , ,CDF PORTABLE 02 CA US , +TR110,3,622.7000 ,38.47360 ,-122.2617,RAWS , ,CDF PORTABLE 05 CA US , +TR098,3,733.4000 ,37.39190 ,-121.7311,RAWS , ,CDF PORTABLE 10 CA US , +CDFO3,3,676.7000 ,45.21170 ,-123.7719,RAWS , ,CEDAR OR US , +CEDT2,3,930.3000 ,35.69030 ,-101.5683,RAWS , ,CEDAR TX US , +CRCW1,3,1310.600 ,48.98690 ,-117.4939,RAWS , ,CEDAR CREEK ORCHARD WA US , +CGVC1,3,1438.700 ,36.78780 ,-118.6561,RAWS , ,CEDAR GROVE CA US , +CDHT2,3,158.5000 ,32.60920 ,-96.99310,RAWS , ,CEDAR HILL SP TX US , +CDMU1,3,1417.300 ,40.30080 ,-112.7767,RAWS , ,CEDAR MOUNTAIN UT US , +CEDN2,3,2229.300 ,39.75580 ,-114.1500,RAWS , ,CEDAR PASS NV US , +TS525,3,61.00000 ,38.65250 ,-76.82060,RAWS , ,CEDARVILLE MD US , +CRAF1,3,18.60000 ,29.10610 ,-81.62940,RAWS , ,CENTRAL FL US , +CNFC1,3,2025.100 ,37.75970 ,-119.8206,RAWS , ,CFLO CA US , +CBUM8,3,892.5000 ,47.52720 ,-108.0508,RAWS , ,CHAIN BUTTES MT US , +CIKA2,3,137.2000 ,66.59060 ,-144.3411,RAWS , ,CHALKYITSIK AK US , +CHRI1,3,1600.200 ,44.50420 ,-114.2228,RAWS , ,CHALLIS ID US , +CHAC2,3,2172.000 ,37.19940 ,-108.4892,RAWS , ,CHAPIN CO US , +TR467,3,598.6000 ,47.71500 ,-101.0100,RAWS , ,CHARLIE ND US , +CHRO3,3,371.9000 ,43.66920 ,-123.9436,RAWS , ,CHARLOTTE RIDGE OR US , +CHTA2,3,442.0000 ,65.01670 ,-148.5833,RAWS , ,CHATANIKA AK US , +EJAG1,3,609.6000 ,34.76640 ,-84.75890,RAWS , ,CHATSWORTH GA US , +CHGG1,3,457.2000 ,34.64030 ,-83.52190,RAWS , ,CHATTOOGA #1 GA US , +CEEC1,3,502.9000 ,34.18470 ,-118.7172,RAWS , ,CHEESEBORO CA US , +CHRC2,3,2300.000 ,39.18140 ,-105.2672,RAWS , ,CHEESMAN CO US , +CLSW1,3,79.90000 ,46.61000 ,-122.9083,RAWS , ,CHEHALIS WA US , +CHKF1,3,1.500000 ,25.62500 ,-80.57970,RAWS , ,CHEKIKA FL US , +TWRW1,3,679.7000 ,47.41750 ,-117.5283,RAWS , ,CHENEY WA US , +CHON7,3,640.1000 ,35.33330 ,-83.81670,RAWS , ,CHEOAH NC US , +CHPU1,3,3694.200 ,40.81030 ,-110.0733,RAWS , ,CHEPETA UT US , +CHKN7,3,1036.300 ,35.61970 ,-83.20420,RAWS , ,CHEROKEE NC US , +CHEA3,3,1554.500 ,34.59640 ,-112.0481,RAWS , ,CHERRY AZ US , +CESC1,3,1379.200 ,40.28970 ,-121.0853,RAWS , ,CHESTER CA US , +TS720,3,716.9000 ,35.70810 ,-99.90470,RAWS , ,CHEYENNE OK US , +CHFT1,3,151.2000 ,35.37250 ,-88.82920,RAWS , ,CHICKASAW SF TN US , +CKNA2,3,871.7000 ,64.06000 ,-141.9294,RAWS , ,CHICKEN AK US , +CREA2,3,1597.200 ,62.12420 ,-141.8453,RAWS , ,CHICKEN CREEK AK US , +CICC1,3,72.20000 ,39.71190 ,-121.7806,RAWS , ,CHICO CA US , +CHCA2,3,45.70000 ,57.72940 ,-153.9325,RAWS , ,CHIEF COVE AK US , +CHOC1,3,1661.200 ,34.33170 ,-118.0303,RAWS , ,CHILAO CA US , +CHEO1,3,192.0000 ,39.38580 ,-82.98500,RAWS , ,CHILLICOTHE OH US , +CHOM7,3,237.7000 ,39.77690 ,-93.49310,RAWS , ,CHILLICOTHE MO US , +CQFO3,3,1347.200 ,42.57690 ,-121.8936,RAWS , ,CHILOQUIN OR US , +CHNV2,3,2.400000 ,37.99170 ,-75.28780,RAWS , ,CHINCOTEAGUE VA US , +CSNA2,3,1001.000 ,62.07810 ,-142.0542,RAWS , ,CHISANA AK US , +CSBT2,3,1645.900 ,29.27080 ,-103.3014,RAWS , ,CHISOS BASIN TX US , +CZOA2,3,701.0000 ,62.56530 ,-144.6647,RAWS , ,CHISTOCHINA AK US , +CTUA2,3,1388.100 ,61.27390 ,-142.6189,RAWS , ,CHITITU AK US , +CXCA2,3,177.1000 ,61.53190 ,-144.4397,RAWS , ,CHITNA AK US , +CUUC1,3,1600.800 ,34.80640 ,-119.0128,RAWS , ,CHUCHUPATE CA US , +CSFT1,3,505.1000 ,36.36890 ,-83.89860,RAWS , ,CHUCK SWAN SF TN US , +BCHN5,3,1987.300 ,33.77280 ,-106.0983,RAWS , ,CHUPADERA NM US , +TS164,3,76.20000 ,33.30390 ,-114.6933,RAWS , ,CIBOLA AZ US , +CIMN5,3,2665.200 ,36.60610 ,-105.1203,RAWS , ,CIMARRON NM US , +CGLK1,3,1078.400 ,37.14080 ,-101.9014,RAWS , ,CIMARRON KS US , +CIFO3,3,1473.400 ,43.32080 ,-122.1067,RAWS , ,CINNAMON OR US , +CLRW3,3,457.2000 ,46.19750 ,-90.97000,RAWS , ,CLAM LAKE WI US , +CMOC1,3,501.4000 ,34.13690 ,-117.7069,RAWS , ,CLAREMONT CA US , +CLHC1,3,498.7000 ,33.87720 ,-117.3042,RAWS , ,CLARK CA US , +CKST2,3,146.3000 ,33.61890 ,-95.16670,RAWS , ,CLARKSVILLE TX US , +TR174,3,1590.100 ,35.66250 ,-118.0256,RAWS , ,CLASS III 1-C WALKER PASS CA US , +TS650,3,1767.800 ,45.82780 ,-114.2672,RAWS , ,CLASS III 11-C MT US , +TS697,3,2115.900 ,38.96780 ,-120.1000,RAWS , ,CLASS III 13-C (DLBLISS) CA US , +FLSO3,3,1167.400 ,33.85640 ,-116.8603,RAWS , ,CLASS III 14C POPPET FLT CA US , +TR518,3,1630.700 ,35.70970 ,-117.9719,RAWS , ,CLASS III 16-C (BLUE MAX) CA US , +WSPI1,3,1969.900 ,43.64920 ,-114.5178,RAWS , ,CLASS III 17-C(WARMSPRGS) ID US , +SKCM8,3,1343.000 ,33.84310 ,-116.7786,RAWS , ,CLASS III 20C(BERNADETTE) CA US , +TS046,3,1444.100 ,34.00890 ,-116.8222,RAWS , ,CLASS III 21-C (WOOD CYN) CA US , +GHNI1,3,2244.900 ,43.54970 ,-114.4883,RAWS , ,CLASS III 3-C (PANTHER) ID US , +HUZI1,3,1556.300 ,33.83940 ,-116.8203,RAWS , ,CLASS III 4-C(RANGER PK) CA US , +SKBC1,3,1219.200 ,33.80810 ,-116.8550,RAWS , ,CLASS III 5C ANGELUS HILL CA US , +TR943,3,2307.000 ,39.27330 ,-119.9617,RAWS , ,CLASS III 6-C (KNOX) NV US , +TS700,3,2081.200 ,39.25110 ,-119.9669,RAWS , ,CLASS III 7-C (INCLINE) NV US , +TR439,3,1682.200 ,33.77670 ,-116.7958,RAWS , ,CLASS III 8-C INDIAN MTN CA US , +TS780,3,1728.200 ,38.13860 ,-120.0919,RAWS , ,CLASS III 9C BALD MTN PAL CA US , +CCRO3,3,343.8000 ,43.89890 ,-123.5583,RAWS , ,CLAY CREEK OR US , +CEKC1,3,914.4000 ,34.27110 ,-118.1525,RAWS , ,CLEAR CREEK CA US , +CLFU1,3,1945.800 ,40.11250 ,-113.8764,RAWS , ,CLIFTON FLAT UT US , +CITM7,3,231.6000 ,38.34920 ,-93.77220,RAWS , ,CLINTON MO US , +CTGC1,3,279.5000 ,33.37220 ,-117.3589,RAWS , ,CMP TARGET RANGE CA US , +TR119,3,1036.300 ,33.38750 ,-116.7917,RAWS , ,CNF30 PORTABLE CA US , +CLCA2,3,244.5000 ,65.31390 ,-143.1322,RAWS , ,COAL CREEK AK US , +TR488,3,2291.500 ,35.28920 ,-111.7189,RAWS , ,COCONINO MICRO #3 AZ US , +TR489,3,2115.300 ,35.09500 ,-111.5311,RAWS , ,COCONINO MICRO #4 AZ US , +PTFO3,3,1589.200 ,42.55670 ,-120.6022,RAWS , ,COFFEE POT FLAT 2 OR US , +TS784,3,983.6000 ,41.23780 ,-77.75170,RAWS , ,COFFIN ROCK PA US , +CSTC1,3,528.2000 ,39.87170 ,-121.7689,RAWS , ,COHASSET CA US , +COHG1,3,525.5000 ,34.92250 ,-84.65940,RAWS , ,COHUTTA#1 GA US , +COIN2,3,2072.600 ,39.83330 ,-116.4953,RAWS , ,COILS CREEK NV US , +CCKT1,3,518.2000 ,35.28000 ,-84.27500,RAWS , ,COKER CREEK TN US , +CSFO3,3,1431.000 ,44.35470 ,-120.1467,RAWS , ,COLD SPRINGS OR US , +CSZC1,3,1924.200 ,41.78140 ,-120.3192,RAWS , ,COLD SPRINGS CA US , +CPGT2,3,44.20000 ,30.51810 ,-95.09470,RAWS , ,COLDSPRINGS TX US , +IVET2,3,442.6000 ,31.50610 ,-99.65940,RAWS , ,COLEMAN TX US , +CGFO3,3,999.7000 ,44.31560 ,-121.6022,RAWS , ,COLGATE OR US , +CLBC1,3,1674.300 ,41.77500 ,-122.9503,RAWS , ,COLLINS BALDY CA US , +CBDT2,3,383.7000 ,31.05220 ,-98.50030,RAWS , ,COLORADO BEND TX US , +CCYC2,3,1886.700 ,37.94780 ,-104.8692,RAWS , ,COLORADO CITY CO US , +QCGA3,3,2902.000 ,32.70390 ,-109.9139,RAWS , ,COLUMBINE AZ US , +COAT2,3,399.9000 ,31.92420 ,-98.59720,RAWS , ,COMANCHE TX US , +COMN2,3,2008.600 ,39.38670 ,-116.1828,RAWS , ,COMBS CANYON NV US , +CMTA4,3,720.9000 ,36.06780 ,-93.35690,RAWS , ,COMPTON AR US , +CWLW2,3,362.7000 ,39.44580 ,-80.86890,RAWS , ,CONAWAY LAKE WV US , +CONM8,3,1122.900 ,47.53610 ,-113.7172,RAWS , ,CONDON WORK CENTER MT US , +GDNS1,3,37.50000 ,33.81470 ,-80.78110,RAWS , ,CONGAREE SC US , +CKNT2,3,37.50000 ,30.23640 ,-95.48280,RAWS , ,CONROE TX US , +CONA2,3,200.3000 ,58.20750 ,-155.9192,RAWS , ,CONTACT CREEK AK US , +CVEC1,3,1712.400 ,34.19420 ,-116.9131,RAWS , ,CONVERSE CA US , +PTEC1,3,899.2000 ,40.25690 ,-124.2661,RAWS , ,COOSKIE MOUNTAIN CA US , +CYSM6,3,45.70000 ,31.94970 ,-90.38060,RAWS , ,COPIAH MS US , +CBFI1,3,2383.500 ,43.80000 ,-113.8333,RAWS , ,COPPER BASIN ID US , +CGRC2,3,2265.600 ,38.34560 ,-105.4519,RAWS , ,COPPER GULCH CO US , +CRGC1,3,88.10000 ,39.93920 ,-122.1686,RAWS , ,CORNING CA US , +CNAC1,3,189.0000 ,33.87500 ,-117.5492,RAWS , ,CORONA CA US , +CEKC2,3,2463.100 ,39.64000 ,-105.4647,RAWS , ,CORRAL CREEK CO US , +CRKI1,3,819.9000 ,46.03330 ,-116.8978,RAWS , ,CORRAL CREEK ID US , +CTOC1,3,137.2000 ,36.99110 ,-121.7978,RAWS , ,CORRALITOS CA US , +FNWO3,3,93.90000 ,44.41830 ,-123.3253,RAWS , ,CORVALLIS OR US , +CSMN5,3,2773.700 ,32.77890 ,-105.8194,RAWS , ,COSMIC NM US , +TR263,3,1341.100 ,45.56000 ,-116.2256,RAWS , ,COTTON PORTABLE ID US , +CVAV3,3,121.9000 ,17.74250 ,-64.62440,RAWS , ,COTTON VALLEY VI US , +COTA2,3,399.3000 ,65.34580 ,-155.9361,RAWS , ,COTTONWOOD AK US , +CMEC2,3,2200.700 ,38.57310 ,-108.2778,RAWS , ,COTTONWOOD BASIN CO US , +TR940,3,2286.000 ,37.98390 ,-112.6392,RAWS , ,COTTONWOOD MTN UT US , +CGFW1,3,731.5000 ,47.91670 ,-123.1172,RAWS , ,COUGAR MOUNTAIN WA US , +WISC1,3,635.5000 ,39.01890 ,-122.4119,RAWS , ,COUNTY LINE CA US , +COVA2,3,477.6000 ,58.80250 ,-155.5628,RAWS , ,COVILLE AK US , +RHCM6,3,88.40000 ,31.74970 ,-89.51640,RAWS , ,COVINGTON MS US , +COWW4,3,2204.900 ,41.30890 ,-107.5739,RAWS , ,COW CREEK WY US , +COWN7,3,728.5000 ,35.47940 ,-83.32720,RAWS , ,COW MOUNTAIN NC US , +CTWN4,3,54.90000 ,39.81250 ,-74.42500,RAWS , ,COYLE FIELD NJ US , +COYN5,3,2682.200 ,36.06670 ,-106.6472,RAWS , ,COYOTE NM US , +CYVC1,3,1691.000 ,39.98780 ,-120.4767,RAWS , ,COYOTE CA US , +CMWW4,3,2003.100 ,44.00750 ,-111.0356,RAWS , ,COYOTE MEADOWS WY US , +COYN2,3,1758.700 ,38.28330 ,-114.7583,RAWS , ,COYOTE WASH NV US , +COWI2,3,137.2000 ,37.67920 ,-89.00280,RAWS , ,CRAB ORCHARD IL US , +CGVV2,3,385.9000 ,37.52220 ,-80.07970,RAWS , ,CRAIG VALLEY VA US , +CDAW4,3,2023.900 ,44.85030 ,-109.6114,RAWS , ,CRANDALL WY US , +CPFO3,3,1676.400 ,44.15720 ,-118.4714,RAWS , ,CRANE PRAIRIE OR US , +CRSN2,3,1950.700 ,40.45970 ,-115.8500,RAWS , ,CRANE SPRINGS NV US , +CNSC1,3,594.4000 ,33.74030 ,-116.8414,RAWS , ,CRANSTON CA US , +CRZC1,3,1210.100 ,41.97640 ,-123.6122,RAWS , ,CRAZY PEAK CA US , +RESN1,3,1188.700 ,41.76110 ,-102.4378,RAWS , ,CRESCENT LAKE - FTS NE US , +CRVC1,3,2316.500 ,37.74500 ,-118.9833,RAWS , ,CRESTVIEW CA US , +CRIK2,3,285.0000 ,38.76920 ,-84.60190,RAWS , ,CRITTENDEN KY US , +NPTN7,3,21.00000 ,34.76060 ,-76.89560,RAWS , ,CROATAN NC US , +TR468,3,650.4000 ,48.96810 ,-104.0022,RAWS , ,CROSBY ND US , +CSST1,3,539.5000 ,35.91780 ,-84.99720,RAWS , ,CROSSVILLE AREA OFFICE TN US , +CWFO3,3,1563.600 ,43.84140 ,-118.9519,RAWS , ,CROW FLAT OR US , +QCKA3,3,1798.300 ,34.20830 ,-112.3333,RAWS , ,CROWN KING AZ US , +CYFI1,3,1543.500 ,42.98560 ,-113.1772,RAWS , ,CRYSTAL ID US , +CBBN5,3,1881.200 ,35.94190 ,-107.0772,RAWS , ,CUBA NM US , +CCRN2,3,1752.600 ,38.75890 ,-115.4122,RAWS , ,CURRANT CREEK NV US , +CRRS2,3,1585.000 ,43.75000 ,-103.6333,RAWS , ,CUSTER SD US , +TR287,3,1782.500 ,45.49220 ,-109.9156,RAWS , ,CUSTER #1 PORTABLE MT US , +TR834,3,1204.000 ,43.49000 ,-103.2306,RAWS , ,CUSTER ST PARK PORTABLE SD US , +CUTM5,3,396.2000 ,47.53640 ,-94.05440,RAWS , ,CUTFOOT MN US , +DLSG1,3,276.5000 ,33.83330 ,-84.74000,RAWS , ,DALLAS GA US , +TS186,3,97.50000 ,13.31280 ,-144.7353,RAWS , ,DANDAN GU US , +STCN7,3,0.900000 ,35.76080 ,-75.85220,RAWS , ,DARE BOMB RANGE (FR2) NC US , +DTLN5,3,2529.800 ,34.28970 ,-107.7664,RAWS , ,DATIL NM US , +DARN7,3,975.4000 ,35.35060 ,-82.77860,RAWS , ,DAVIDSON RIVER NC US , +BDKW2,3,1174.400 ,39.10500 ,-79.42610,RAWS , ,DAVIS (BEARDEN) WV US , +DSVG1,3,369.7000 ,34.37640 ,-84.06000,RAWS , ,DAWSONVILLE GA US , +TR968,3,30.50000 ,30.10500 ,-94.93140,RAWS , ,DAYTON TX US , +DEDN2,3,1368.600 ,39.26190 ,-118.9431,RAWS , ,DEAD CAMEL MOUNTAIN NV US , +DHOC2,3,2647.200 ,40.07860 ,-107.3681,RAWS , ,DEAD HORSE CO US , +DEAI1,3,1088.100 ,44.32610 ,-117.1694,RAWS , ,DEAD INDIAN RIDGE ID US , +DPKN5,3,2575.600 ,36.42310 ,-106.7719,RAWS , ,DEADMAN PEAK NM US , +SDFO1,3,302.7000 ,38.69390 ,-82.63970,RAWS , ,DEAN OH US , +MITC2,3,2866.300 ,39.77360 ,-107.6469,RAWS , ,DEEP CREEK CO US , +DEHI1,3,1676.400 ,43.17390 ,-115.1519,RAWS , ,DEER HAVEN ID US , +DMFW1,3,1018.000 ,48.79610 ,-117.4461,RAWS , ,DEER MOUNTAIN WA US , +DEEM8,3,2219.600 ,46.02780 ,-114.0553,RAWS , ,DEER MOUNTAIN MT US , +SBFM8,3,1286.300 ,45.18110 ,-108.9347,RAWS , ,DEER MOUNTAIN MT US , +DBOM8,3,1072.300 ,47.13280 ,-111.9008,RAWS , ,DEERBORN MT US , +DLVC1,3,389.5000 ,34.43110 ,-118.6828,RAWS , ,DEL VALLE CA US , +DNTC1,3,243.8000 ,34.00920 ,-119.6542,RAWS , ,DELNORTE CA US , +HLYM6,3,28.30000 ,32.81030 ,-90.78440,RAWS , ,DELTA RD MS US , +DMMC2,3,2181.500 ,39.46000 ,-108.8800,RAWS , ,DEMAREE CO US , +DEMC1,3,725.4000 ,35.53170 ,-118.6303,RAWS , ,DEMOCRAT CA US , +RUGA2,3,548.6000 ,63.73220 ,-148.9056,RAWS , ,DENALI VISITOR CENTER AK US , +DBYM8,3,2133.600 ,45.58420 ,-109.8517,RAWS , ,DERBY MOUNTAIN MT US , +GRVN2,3,1889.800 ,39.30110 ,-117.5844,RAWS , ,DESATOYA MOUNTAIN NV US , +DENC1,3,1083.600 ,32.85720 ,-116.6217,RAWS , ,DESCANSO CA US , +DWRN2,3,2170.200 ,36.57890 ,-115.1442,RAWS , ,DESERT NWR NV US , +TS566,3,1158.200 ,39.52940 ,-118.5189,RAWS , ,DESERT NWR PORTABLE NV US , +DESN2,3,1609.300 ,39.67250 ,-119.7700,RAWS , ,DESERT SPRINGS NV US , +TR808,3,223.1000 ,41.53330 ,-96.08330,RAWS , ,DESOTO IA US , +DMLM5,3,422.1000 ,46.84890 ,-95.84640,RAWS , ,DETROIT LAKES MN US , +DYKC2,3,2273.800 ,37.22690 ,-107.3053,RAWS , ,DEVIL MTN. CO US , +DKBA4,3,640.1000 ,35.61390 ,-93.53830,RAWS , ,DEVIL'S KNOB AR US , +ATSC1,3,1538.900 ,41.52860 ,-120.6714,RAWS , ,DEVILS GARDEN CA US , +DVLO3,3,472.4000 ,43.72030 ,-123.6297,RAWS , ,DEVILS GRAVEYARD OR US , +FRTN8,3,466.3000 ,47.98860 ,-98.97500,RAWS , ,DEVILS LAKE ND US , +DVLW4,3,1188.700 ,44.58170 ,-104.7194,RAWS , ,DEVILS TOWER WY US , +DVOC1,3,627.0000 ,34.22110 ,-117.4044,RAWS , ,DEVORE CA US , +DBLC1,3,567.2000 ,37.32920 ,-121.2956,RAWS , ,DIABLO GRANDE CA US , +DMNI1,3,2286.000 ,42.86670 ,-111.2167,RAWS , ,DIAMOND FLAT ID US , +DMLW3,3,401.4000 ,45.10560 ,-90.69000,RAWS , ,DIAMOND LAKE WI US , +DIAU1,3,2356.100 ,40.61720 ,-109.2428,RAWS , ,DIAMOND RIM UT US , +DLGH1,3,31.10000 ,21.57190 ,-158.1986,RAWS , ,DILLINGHAM HI US , +TS755,3,3.000000 ,26.44080 ,-82.10470,RAWS , ,DING DARLING NWR FL US , +DKYC1,3,1725.800 ,37.06640 ,-119.0394,RAWS , ,DINKEY CA US , +SURC2,3,1816.600 ,40.50860 ,-108.9106,RAWS , ,DINOSAUR NM SUCCESS CO US , +TS565,3,2340.900 ,37.68750 ,-111.8467,RAWS , ,DIXIE PORTABLE #1 UT US , +TS715,3,2463.100 ,37.60000 ,-112.6192,RAWS , ,DIXIE PORTABLE #3 UT US , +TS716,3,1981.200 ,37.39000 ,-113.5122,RAWS , ,DIXIE PORTABLE #4 UT US , +DSFI2,3,164.6000 ,37.43670 ,-88.66720,RAWS , ,DIXON SPRINGS IL US , +DODW4,3,2164.100 ,41.96720 ,-105.5192,RAWS , ,DODGE CREEK WY US , +DLEW3,3,384.0000 ,43.10000 ,-90.00000,RAWS , ,DODGEVILLE WI US , +DOEM4,3,248.4000 ,46.25360 ,-86.71420,RAWS , ,DOE LAKE MI US , +DOGC1,3,1821.500 ,39.56190 ,-120.0478,RAWS , ,DOG VALLEY CA US , +DFSM7,3,193.5000 ,36.62690 ,-90.82390,RAWS , ,DONIPHAN MO US , +DOUW1,3,771.1000 ,47.62000 ,-119.8994,RAWS , ,DOUGLAS WA US , +DIFW1,3,1086.900 ,48.11560 ,-120.1044,RAWS , ,DOUGLAS INGRAM RIDGE WA US , +VRNL1,3,81.40000 ,31.03310 ,-92.98190,RAWS , ,DOVE FIELD LA US , +DJTC2,3,2763.900 ,39.62750 ,-106.4519,RAWS , ,DOWD JUNCTION CO US , +DYLC1,3,1316.700 ,40.05890 ,-120.0939,RAWS , ,DOYLE CA US , +DRAC2,3,1920.200 ,39.91500 ,-108.8878,RAWS , ,DRAGON ROAD CO US , +LOMN5,3,1881.200 ,32.32330 ,-106.5867,RAWS , ,DRIPPING SPRINGS NM US , +MKLN7,3,121.9000 ,35.03060 ,-79.50500,RAWS , ,DROWNING CREEK NC US , +DBCM8,3,914.4000 ,47.24420 ,-108.3575,RAWS , ,DRY BLOOD CREEK MT US , +DRYN2,3,1493.500 ,41.44360 ,-119.1133,RAWS , ,DRY CANYON NV US , +DRYW1,3,1115.900 ,47.72720 ,-120.5397,RAWS , ,DRY CREEK WA US , +DCCW1,3,457.2000 ,45.94440 ,-121.9864,RAWS , ,DRY CRK WA US , +DRYC2,3,2565.200 ,40.53470 ,-106.7808,RAWS , ,DRY LAKE CO US , +QDLA3,3,2264.100 ,33.35970 ,-109.8331,RAWS , ,DRY LAKE AZ US , +QDPA3,3,2653.600 ,36.45000 ,-112.2400,RAWS , ,DRY PARK AZ US , +DKFN7,3,172.2000 ,35.96670 ,-79.09170,RAWS , ,DUKE FOREST NC US , +DLCN5,3,2070.500 ,36.93500 ,-107.0000,RAWS , ,DULCE #2 NM US , +DUNO3,3,36.60000 ,43.95780 ,-124.1197,RAWS , ,DUNES OR US , +DUNN5,3,1676.400 ,32.82470 ,-105.1825,RAWS , ,DUNKEN NM US , +DKLA2,3,868.7000 ,63.26750 ,-149.5392,RAWS , ,DUNKLE HILLS AK US , +DAFT1,3,63.40000 ,35.99000 ,-89.40580,RAWS , ,DYERSBURG TN US , +EGYA2,3,268.2000 ,64.78140 ,-141.1533,RAWS , ,EAGLE AK US , +EGLW4,3,2286.000 ,44.48560 ,-109.8964,RAWS , ,EAGLE WY US , +EGKO3,3,227.7000 ,45.36810 ,-122.3311,RAWS , ,EAGLE CREEK OR US , +EPKC1,3,1131.700 ,39.92690 ,-122.6419,RAWS , ,EAGLE PEAK CA US , +ERVA2,3,128.0000 ,61.27250 ,-149.3661,RAWS , ,EAGLE RIVER AK US , +TS248,3,30.50000 ,40.87360 ,-72.71390,RAWS , ,EASTPORT NY US , +OCVN4,3,4.600000 ,39.46500 ,-74.44920,RAWS , ,EB FORSYTHE NJ US , +ECEW4,3,1316.700 ,44.46530 ,-105.8444,RAWS , ,ECHETA WY US , +ECON8,3,640.4000 ,47.75060 ,-101.6733,RAWS , ,ECHO ND US , +ECRN1,3,1609.300 ,41.10250 ,-103.9831,RAWS , ,ECHO 01 NE US , +EDTF1,3,39.90000 ,30.54190 ,-82.34330,RAWS , ,EDDY TOWER FL US , +ENFO3,3,1280.200 ,45.87640 ,-117.6164,RAWS , ,EDEN OR US , +EELC1,3,457.2000 ,39.82530 ,-123.0825,RAWS , ,EEL RIVER (MNF) CA US , +ERCC1,3,143.3000 ,40.13830 ,-123.8236,RAWS , ,EEL RIVER CAMP CA US , +EFFM5,3,408.4000 ,47.77940 ,-93.64610,RAWS , ,EFFIE MN US , +EVCA2,3,1136.900 ,63.43140 ,-150.3094,RAWS , ,EIELSON VISTOR CENTER AK US , +REMN5,3,1126.800 ,33.65060 ,-104.3211,RAWS , ,EIGHT MILE DRAW NM US , +ECSC1,3,832.1000 ,33.64720 ,-117.4111,RAWS , ,EL CARISO CA US , +EMRC1,3,877.8000 ,34.63440 ,-117.5489,RAWS , ,EL MIRAGE CA US , +TS613,3,640.1000 ,37.67530 ,-119.7878,RAWS , ,EL PORTAL CA US , +ELRN7,3,4.600000 ,36.34690 ,-76.27810,RAWS , ,ELIZABETH CITY NC US , +EKCO3,3,2004.400 ,44.75780 ,-117.9711,RAWS , ,ELK CREEK OR US , +EKRW1,3,762.0000 ,46.31220 ,-122.3856,RAWS , ,ELK ROCK WA US , +ELKW4,3,2464.300 ,43.67940 ,-109.6111,RAWS , ,ELKHORN WY US , +ELKM4,3,219.5000 ,45.95360 ,-86.40530,RAWS , ,ELKHORN MI US , +EKHM8,3,1831.900 ,46.31470 ,-111.6967,RAWS , ,ELKHORN MT US , +EMRV1,3,365.8000 ,44.54310 ,-72.52940,RAWS , ,ELMORE VT US , +ELOM5,3,443.5000 ,47.82860 ,-91.83690,RAWS , ,ELY MN US , +GDNN2,3,1896.500 ,39.29220 ,-114.8500,RAWS , ,ELY NV US , +TS220,3,2465.500 ,39.02670 ,-114.6436,RAWS , ,ELY #1 PORTABLE NV US , +TS385,3,2173.500 ,39.45310 ,-115.1350,RAWS , ,ELY #2 PORTABLE NV US , +EMFO3,3,1170.400 ,43.48310 ,-122.2303,RAWS , ,EMIGRANT OR US , +QEMA3,3,1417.300 ,31.78360 ,-110.6436,RAWS , ,EMPIRE AZ US , +TS469,3,1776.100 ,38.78140 ,-120.5000,RAWS , ,ENF01 PORTABLE CA US , +TS445,3,1178.400 ,38.54250 ,-120.5378,RAWS , ,ENF02 PORTABLE CA US , +TS045,3,1244.500 ,38.75000 ,-120.5039,RAWS , ,ENF05 PORTABLE CA US , +ENNM8,3,1505.400 ,45.35000 ,-111.7344,RAWS , ,ENNIS MT US , +ENTU1,3,1627.600 ,37.55860 ,-113.7172,RAWS , ,ENTERPRISE UT US , +ERAW1,3,242.6000 ,47.67470 ,-120.2106,RAWS , ,ENTIAT WA US , +ENCW1,3,230.4000 ,47.22030 ,-121.9639,RAWS , ,ENUMCLAW WA US , +GMWP1,3,548.6000 ,41.62640 ,-79.95500,RAWS , ,ERIE PA US , +EGRC2,3,2133.600 ,40.04670 ,-108.1958,RAWS , ,ERNIE GULCH CO US , +MIDW1,3,503.8000 ,47.03780 ,-117.9472,RAWS , ,ESCURE WA US , +ESPC1,3,765.7000 ,38.24310 ,-120.5144,RAWS , ,ESPERANZA CA US , +ESXV1,3,103.6000 ,44.50780 ,-73.11560,RAWS , ,ESSEX JUNCTION VT US , +ESTW4,3,2010.800 ,42.41580 ,-105.3611,RAWS , ,ESTERBROOK WY US , +ESPC2,3,2383.500 ,40.36670 ,-105.5500,RAWS , ,ESTES PARK CO US , +EURM8,3,853.4000 ,48.90000 ,-115.0167,RAWS , ,EUREKA MT US , +GARL1,3,56.40000 ,31.18500 ,-92.63140,RAWS , ,EVANGELINE/GARDNER LA US , +EVFO3,3,975.4000 ,42.59780 ,-123.1050,RAWS , ,EVANS CREEK OR US , +ESDA4,3,164.6000 ,36.10530 ,-91.56470,RAWS , ,EVENING SHADE AR US , +EZRI1,3,2030.000 ,44.84640 ,-114.0264,RAWS , ,EZRA CREEK ID US , +FRBA2,3,138.4000 ,64.83670 ,-147.6150,RAWS , ,FAIRBANKS AK US , +TS161,3,1.500000 ,35.54170 ,-76.22310,RAWS , ,FAIRFIELD NC US , +FART2,3,66.80000 ,26.55470 ,-99.13560,RAWS , ,FALCON LAKE TX US , +RSNW4,3,1944.600 ,42.85640 ,-107.2722,RAWS , ,FALES ROCK WY US , +FMFO3,3,1813.300 ,44.29690 ,-119.0369,RAWS , ,FALL MOUNTAIN OR US , +FCHC1,3,279.2000 ,36.88360 ,-119.4758,RAWS , ,FANCHER CREEK CA US , +FWLA2,3,236.2000 ,62.72330 ,-154.0767,RAWS , ,FAREWELL AK US , +FMRM7,3,288.3000 ,37.76170 ,-90.42830,RAWS , ,FARMINGTON MO US , +FWSC1,3,2103.100 ,34.26610 ,-116.8989,RAWS , ,FAWNSKIN CA US , +LRRA4,3,32.00000 ,33.15560 ,-92.19110,RAWS , ,FELSENTHAL AR US , +FNWC1,3,1602.000 ,36.96140 ,-119.1750,RAWS , ,FENCE MEADOW CA US , +FERI1,3,463.3000 ,46.10000 ,-115.5347,RAWS , ,FENN ID US , +FRNM5,3,518.2000 ,47.94610 ,-91.49470,RAWS , ,FERNBERG MN US , +FIEM8,3,1402.100 ,48.27780 ,-113.4356,RAWS , ,FIELDING MT US , +FEFO3,3,804.7000 ,43.68030 ,-122.3019,RAWS , ,FIELDS OR US , +FGMC1,3,975.4000 ,34.73440 ,-120.0067,RAWS , ,FIGUEROA CA US , +TS763,3,1669.400 ,39.32280 ,-112.1025,RAWS , ,FILLMORE PORT #1 UT US , +TS764,3,2020.800 ,38.93470 ,-112.2514,RAWS , ,FILLMORE PORT #2 UT US , +GBON7,3,26.50000 ,35.42810 ,-78.02280,RAWS , ,FINCH'S STATION NC US , +FIFW1,3,579.1000 ,48.39250 ,-121.8183,RAWS , ,FINNEY CREEK WA US , +TR564,3,1688.600 ,46.45110 ,-113.8903,RAWS , ,FIRE EFFECTS PORTABLE #1 MT US , +TS673,3,1383.800 ,45.98580 ,-114.2158,RAWS , ,FIRE EFFECTS PORTABLE #2 MT US , +TS675,3,1830.600 ,36.08110 ,-113.6353,RAWS , ,FIRE EFFECTS PORTABLE #3 AZ US , +TS815,3,1219.200 ,45.10280 ,-114.8497,RAWS , ,FIRE EFFECTS PORTABLE #4 ID US , +FTAW1,3,478.5000 ,47.45360 ,-121.6658,RAWS , ,FIRE TRNG. ACADEMY WA US , +FHCC1,3,231.6000 ,32.99030 ,-116.0669,RAWS , ,FISH CREEK MOUNTAINS CA US , +FFFO3,3,1493.500 ,42.47220 ,-119.1783,RAWS , ,FISH FIN RIM OR US , +FHFI1,3,1432.600 ,47.12920 ,-115.8750,RAWS , ,FISH HOOK ID US , +FISN2,3,1594.100 ,38.92470 ,-119.6417,RAWS , ,FISH SPRINGS NV US , +TS259,3,658.4000 ,48.36310 ,-115.3194,RAWS , ,FISHER RIVER MT US , +TS682,3,2636.500 ,39.39190 ,-112.2547,RAWS , ,FISHLAKE BAER PT UT US , +TR336,3,2569.500 ,38.91920 ,-111.4589,RAWS , ,FISHLAKE PORT #1 UT US , +FSLM8,3,1386.800 ,45.45810 ,-109.5714,RAWS , ,FISHTAIL MT US , +WEAC1,3,777.2000 ,40.75970 ,-122.9308,RAWS , ,FIVE CENT CA US , +FIVU1,3,2279.900 ,39.89080 ,-110.2658,RAWS , ,FIVE MILE UT US , +FMRC1,3,1264.900 ,35.87110 ,-117.9183,RAWS , ,FIVE MILE CA US , +QFLA3,3,2133.600 ,35.14140 ,-111.6719,RAWS , ,FLAGSTAFF AZ US , +FAFO3,3,1202.400 ,44.81420 ,-117.7289,RAWS , ,FLAGSTAFF HILL OR US , +MCWA2,3,451.1000 ,62.82280 ,-156.6139,RAWS , ,FLAT AK US , +FTMU1,3,1865.400 ,39.33750 ,-110.6000,RAWS , ,FLATTOP MOUNTAIN UT US , +FLRW2,3,386.2000 ,38.68390 ,-80.64940,RAWS , ,FLATWOODS WV US , +FLEI1,3,2164.100 ,43.61970 ,-114.8994,RAWS , ,FLECK SUMMIT ID US , +FLFI1,3,1585.000 ,42.07920 ,-112.1833,RAWS , ,FLINT CREEK ID US , +FTFW1,3,816.9000 ,48.29860 ,-117.4053,RAWS , ,FLOWERY TRAIL WA US , +FPRO3,3,470.3000 ,42.39560 ,-124.3786,RAWS , ,FLYNN PRAIRIE OR US , +FBLM8,3,812.3000 ,48.30420 ,-108.7189,RAWS , ,FORT BELKNAP MT US , +FBGG1,3,142.3000 ,32.39670 ,-84.87000,RAWS , ,FORT BENNING GA US , +FBRN7,3,143.0000 ,35.13970 ,-79.06440,RAWS , ,FORT BRAGG NC US , +FCRT1,3,166.1000 ,36.62560 ,-87.53690,RAWS , ,FORT CAMPBELL TN US , +FDST2,3,1452.100 ,30.60060 ,-103.8867,RAWS , ,FORT DAVIS TX US , +UINU1,3,1502.100 ,40.28470 ,-109.8617,RAWS , ,FORT DUCHESNE UT US , +FHFM8,3,1049.700 ,45.29720 ,-106.1617,RAWS , ,FORT HOWES MT US , +FHLC1,3,335.3000 ,36.01170 ,-121.2417,RAWS , ,FORT HUNTER LIGGET CA US , +FMRS2,3,1177.100 ,44.40250 ,-103.4889,RAWS , ,FORT MEAD QD SD US , +RTGC1,3,149.4000 ,36.62690 ,-121.7864,RAWS , ,FORT ORD #2 CA US , +RFPS2,3,693.1000 ,44.11530 ,-100.3014,RAWS , ,FORT PIERRE SD US , +FKFO3,3,1350.300 ,43.42500 ,-120.8417,RAWS , ,FORT ROCK OR US , +FVRV2,3,243.8000 ,38.84420 ,-78.41530,RAWS , ,FORT VALLEY VA US , +FLFO3,3,1524.000 ,42.97360 ,-119.2461,RAWS , ,FOSTER FLAT OR US , +FTNC1,3,242.0000 ,35.89110 ,-118.9156,RAWS , ,FOUNTAIN SPRINGS CA US , +QFSA3,3,1999.500 ,36.79360 ,-112.0425,RAWS , ,FOUR SPRINGS AZ US , +FORN1,3,1453.000 ,41.36360 ,-103.4883,RAWS , ,FOX 01 NE US , +FOXN2,3,2100.100 ,41.00610 ,-119.5681,RAWS , ,FOX MOUNTAIN NV US , +TS718,3,1833.100 ,44.18310 ,-115.2569,RAWS , ,FOX TRAIL RIDGE ID US , +FZWA3,3,2063.500 ,35.84560 ,-113.0550,RAWS , ,FRAZIER WELLS AZ US , +FRCC1,3,542.8000 ,33.81110 ,-117.7083,RAWS , ,FREMONT CANYON CA US , +FCRM8,3,2262.200 ,45.33000 ,-112.9128,RAWS , ,FRENCH CREEK MT US , +FMOC1,3,1219.200 ,40.50500 ,-123.3417,RAWS , ,FRIEND MTN. CA US , +TR363,3,1541.100 ,44.90890 ,-116.0994,RAWS , ,FRWS-15(MCCALL CITY HALL) ID US , +FCRC2,3,2072.600 ,38.65890 ,-104.8539,RAWS , ,FT. CARSON CO US , +FYRA2,3,141.7000 ,66.57000 ,-145.2508,RAWS , ,FT. YUKON AK US , +GALN2,3,1709.900 ,39.37940 ,-119.8319,RAWS , ,GALENA NV US , +GAAM8,3,2090.900 ,46.22220 ,-112.2292,RAWS , ,GALENA MT US , +GMFN6,3,335.3000 ,42.10000 ,-77.10000,RAWS , ,GANG MILLS NY US , +GNTG1,3,1.500000 ,30.66250 ,-82.24670,RAWS , ,GANNETT LAKE GA US , +GDHP1,3,502.9000 ,41.02560 ,-77.16720,RAWS , ,GARDEN HOLLOW PA US , +GASI1,3,1749.600 ,44.16860 ,-111.7817,RAWS , ,GAS CAVES ID US , +GQEC1,3,152.4000 ,41.84530 ,-123.9669,RAWS , ,GASQUET CA US , +GGLA2,3,1237.500 ,61.60280 ,-143.0131,RAWS , ,GATES GLACIER AK US , +GDSV2,3,9.100000 ,36.61280 ,-76.55420,RAWS , ,GDR VA US , +TS622,3,6.100000 ,36.56140 ,-76.40420,RAWS , ,GDR-PORT-QD VA US , +GECA2,3,464.8000 ,63.83750 ,-144.3503,RAWS , ,GEORGE CREEK RAWS AK US , +GWRT2,3,65.50000 ,28.36670 ,-98.11670,RAWS , ,GEORGE WEST TX US , +GRBO3,3,1499.600 ,42.20580 ,-121.1381,RAWS , ,GERBER RESERVOIR OR US , +TR309,3,2250.600 ,33.03720 ,-107.9919,RAWS , ,GILA - PORTABLE NM US , +GNMN5,3,1706.900 ,33.22330 ,-108.2400,RAWS , ,GILA CENTER RAWS NM US , +TR868,3,2353.700 ,32.94560 ,-108.1914,RAWS , ,GILA QD NM US , +GLMT2,3,152.4000 ,32.70170 ,-94.94470,RAWS , ,GILMER TX US , +GINM8,3,1332.000 ,46.32920 ,-111.5881,RAWS , ,GINGER MT US , +GPRM8,3,2118.400 ,46.19280 ,-113.9203,RAWS , ,GIRD POINT MT US , +GDWA2,3,53.30000 ,60.96890 ,-149.1178,RAWS , ,GIRDWOOD AK US , +TS041,3,2183.900 ,39.34720 ,-107.1714,RAWS , ,GJDBLMFTS CO US , +GSNM8,3,1585.000 ,47.86780 ,-112.6681,RAWS , ,GLEASON MT US , +GDNW3,3,472.4000 ,46.14470 ,-90.59030,RAWS , ,GLIDDEN WI US , +QGLA3,3,1281.700 ,33.32420 ,-110.7664,RAWS , ,GLOBE AZ US , +GHFW1,3,920.5000 ,48.24310 ,-121.5464,RAWS , ,GOLD HILL WA US , +TTLA2,3,518.2000 ,64.19670 ,-147.9194,RAWS , ,GOLD KING AK US , +GMFW1,3,1428.300 ,48.18080 ,-118.4667,RAWS , ,GOLD MOUNTAIN WA US , +GNLW1,3,515.1000 ,45.83030 ,-120.8322,RAWS , ,GOLDENDALE WA US , +GLFM8,3,1313.700 ,47.24170 ,-112.0917,RAWS , ,GOLF MT US , +GDPA2,3,463.3000 ,64.23810 ,-145.2669,RAWS , ,GOODPASTURE AK US , +QGDA3,3,1280.200 ,34.75750 ,-113.2969,RAWS , ,GOODWIN MESA AZ US , +GPFO3,3,548.6000 ,43.92810 ,-123.8903,RAWS , ,GOODWIN PEAK OR US , +GSKI1,3,1725.200 ,42.09580 ,-113.8989,RAWS , ,GOOSE CREEK ID US , +GOSC1,3,466.3000 ,33.07420 ,-116.8450,RAWS , ,GOOSE VALLEY CA US , +TR721,3,1889.800 ,40.75860 ,-120.8961,RAWS , ,GORDON CA US , +GRAI1,3,1892.800 ,42.54060 ,-111.8553,RAWS , ,GRACE ID US , +GRYT2,3,215.8000 ,32.44690 ,-97.81690,RAWS , ,GRANBURY TX US , +TS770,3,2.100000 ,30.43830 ,-88.42560,RAWS , ,GRAND BAY MS US , +TS546,3,365.8000 ,47.95030 ,-89.78000,RAWS , ,GRAND PORTAGE MN US , +GTGW4,3,2039.100 ,43.72360 ,-110.7103,RAWS , ,GRAND TETON WY US , +GDFO3,3,883.9000 ,43.41580 ,-122.5772,RAWS , ,GRANDAD OR US , +GDCN7,3,487.7000 ,35.75640 ,-82.04390,RAWS , ,GRANDFATHER NC US , +GRNW2,3,706.2000 ,37.83250 ,-81.06780,RAWS , ,GRANDVIEW WV US , +GRAA2,3,156.1000 ,60.72750 ,-149.2869,RAWS , ,GRANITE AK US , +GRSN5,3,2575.300 ,35.24170 ,-107.6700,RAWS , ,GRANTS NM US , +TS805,3,1416.400 ,34.90170 ,-118.9033,RAWS , ,GRAPEVINE PEAK CA US , +GCRW4,3,2164.100 ,43.89360 ,-108.8556,RAWS , ,GRASS CREEK DIVIDE WY US , +GMTC1,3,1410.000 ,34.64080 ,-118.4142,RAWS , ,GRASS MOUNTAIN CA US , +GRSC1,3,1877.000 ,40.78170 ,-120.7844,RAWS , ,GRASSHOPPER CA US , +GSFO3,3,1389.900 ,42.62610 ,-117.3950,RAWS , ,GRASSY MOUNTAIN OR US , +GRFW1,3,1158.200 ,45.99170 ,-121.0833,RAWS , ,GRAYBACK WA US , +GYGM4,3,341.4000 ,44.71890 ,-84.70920,RAWS , ,GRAYLING MI US , +GRZA2,3,138.1000 ,61.28330 ,-149.6167,RAWS , ,GRAZELKA RANGE AK US , +GDRC2,3,2194.600 ,40.75750 ,-107.8536,RAWS , ,GREAT DIVIDE CO US , +TS529,3,332.2000 ,39.68750 ,-78.42220,RAWS , ,GREEN RIDGE MD US , +GNSC1,3,337.7000 ,37.83420 ,-120.5031,RAWS , ,GREEN SPRING CA US , +TR077,3,2110.100 ,35.27420 ,-112.0597,RAWS , ,GREENBASE AZ US , +LKKM6,3,47.50000 ,31.17420 ,-88.60750,RAWS , ,GREENE MS US , +GCRN7,3,12.80000 ,36.01750 ,-76.89170,RAWS , ,GREENS CROSS NC US , +GFSK2,3,168.2000 ,37.26720 ,-87.20280,RAWS , ,GREENVILLE KY US , +GELT2,3,136.2000 ,33.03530 ,-96.16390,RAWS , ,GREENVILLE TX US , +TR335,3,1920.200 ,38.19640 ,-112.6619,RAWS , ,GREENVILLE BENCH PORTABLE UT US , +QGRA3,3,2499.400 ,34.06000 ,-109.4500,RAWS , ,GREER AZ US , +GUPT2,3,349.6000 ,29.85940 ,-98.50530,RAWS , ,GUADALUPE RIVER SP TX US , +GCAP4,3,5.200000 ,17.95420 ,-66.88220,RAWS , ,GUANICA PR US , +GUIN7,3,792.5000 ,35.21330 ,-82.59000,RAWS , ,GUION FARM NC US , +GUML1,3,91.40000 ,31.90000 ,-92.76720,RAWS , ,GUM SPRINGS LA US , +GSPC2,3,2566.400 ,40.21110 ,-106.3294,RAWS , ,GUNSIGHT CO US , +QGSA3,3,1609.300 ,36.70440 ,-112.5833,RAWS , ,GUNSIGHT AZ US , +QGTA3,3,1932.400 ,32.88190 ,-109.3092,RAWS , ,GUTHRIE AZ US , +GYAA4,3,185.9000 ,35.32670 ,-92.27610,RAWS , ,GUY AR US , +GINM4,3,373.4000 ,46.28940 ,-87.47420,RAWS , ,GWINN MI US , +GPRC2,3,2237.200 ,39.69530 ,-106.9731,RAWS , ,GYPSUM CO US , +VCAN2,3,1645.900 ,39.31530 ,-119.8297,RAWS , ,H-T PORTABLE #1 NV US , +HHRN5,3,1307.900 ,31.70000 ,-108.3417,RAWS , ,HACHITA VALLEY NM US , +HGFW1,3,1097.300 ,46.56670 ,-121.6306,RAWS , ,HAGER CREEK WA US , +HADA2,3,204.5000 ,55.33000 ,-132.6675,RAWS , ,HAIDA AK US , +HKUH1,3,1950.700 ,19.82110 ,-155.3306,RAWS , ,HAKALAU HI US , +HKIH1,3,350.5000 ,20.58030 ,-156.5711,RAWS , ,HAKIOAWA HI US , +HAFW4,3,2599.900 ,42.91360 ,-109.7461,RAWS , ,HALF MOON WY US , +HCOT1,3,354.5000 ,36.25720 ,-83.27720,RAWS , ,HAMBLEN CO. HQ TN US , +HBYT2,3,579.1000 ,32.50000 ,-99.61670,RAWS , ,HAMBY TX US , +HMDN8,3,482.2000 ,48.52810 ,-98.62360,RAWS , ,HAMPDEN ND US , +NNHM6,3,82.30000 ,30.61530 ,-89.41330,RAWS , ,HANCOCK MS US , +STHC2,3,2387.800 ,39.91810 ,-106.9161,RAWS , ,HANGMAN CO US , +HRBC2,3,2590.800 ,40.20000 ,-105.8667,RAWS , ,HARBISON MEADOW CO US , +HDRI3,3,228.6000 ,39.00000 ,-86.42280,RAWS , ,HARDIN RIDGE IN US , +HRDA2,3,1332.000 ,60.14890 ,-149.7986,RAWS , ,HARDING ICEFIELD AK US , +HRKM8,3,2560.300 ,44.46500 ,-112.9519,RAWS , ,HARKNESS MT US , +HRLO3,3,1850.400 ,45.31920 ,-116.8675,RAWS , ,HARL BUTTE OR US , +TS806,3,818.4000 ,35.25110 ,-118.6003,RAWS , ,HART FLAT CA US , +CAHC1,3,556.0000 ,36.38890 ,-121.5514,RAWS , ,HASTINGS CA US , +QHAA3,3,144.8000 ,34.80750 ,-114.5347,RAWS , ,HAVASU AZ US , +HWKC1,3,616.9000 ,38.73500 ,-122.8372,RAWS , ,HAWKEYE CA US , +HAYA2,3,53.90000 ,65.20170 ,-161.1550,RAWS , ,HAYCOCK AK US , +HYFC1,3,708.1000 ,40.55000 ,-123.1650,RAWS , ,HAYFORK CA US , +HYFO3,3,987.6000 ,44.44940 ,-121.1297,RAWS , ,HAYSTACK OR US , +HWDW3,3,370.3000 ,46.02080 ,-91.44970,RAWS , ,HAYWARD WI US , +QCHA3,3,1645.900 ,32.00610 ,-109.3569,RAWS , ,HEADQUARTERS AZ US , +TR994,3,365.8000 ,38.66670 ,-78.37000,RAWS , ,HEADQUARTERS VA US , +HRTM8,3,1353.000 ,48.29280 ,-112.8353,RAWS , ,HEART BUTTE MT US , +QHEA3,3,2022.400 ,34.39780 ,-110.5644,RAWS , ,HEBER AZ US , +HBRM8,3,2032.100 ,44.66780 ,-111.1006,RAWS , ,HEBGEN LAKE MT US , +HHFO3,3,804.7000 ,44.95580 ,-121.4994,RAWS , ,HEHE 1 OR US , +HRWM8,3,1170.400 ,46.71860 ,-112.0017,RAWS , ,HELENA MT US , +HLLC1,3,1597.200 ,39.07170 ,-120.4217,RAWS , ,HELL HOLE CA US , +HHAM8,3,2468.900 ,45.64530 ,-114.6278,RAWS , ,HELLS HALF ID US , +AWRA2,3,853.4000 ,67.74140 ,-144.1225,RAWS , ,HELMUT MTN. AK US , +HDRT2,3,152.4000 ,32.15000 ,-94.80000,RAWS , ,HENDERSON TX US , +TS776,3,2528.000 ,38.03420 ,-110.8253,RAWS , ,HENRY MTN UT US , +HDZC1,3,1137.800 ,36.38250 ,-120.8558,RAWS , ,HERNANDEZ CA US , +HWAU1,3,2799.900 ,40.95280 ,-110.4806,RAWS , ,HEWINTA UT US , +HIBM5,3,411.5000 ,47.39190 ,-92.83470,RAWS , ,HIBBING MN US , +HICA2,3,319.4000 ,59.91470 ,-152.8925,RAWS , ,HICKERSON LAKE AK US , +HGLC1,3,1475.200 ,39.20830 ,-122.8083,RAWS , ,HIGH GLADE LOOKOUT CA US , +LOFO3,3,589.8000 ,43.90640 ,-123.3794,RAWS , ,HIGH POINT OR US , +HSQC1,3,2256.400 ,37.31470 ,-119.0383,RAWS , ,HIGH SIERRA CA US , +HIBW1,3,641.9000 ,46.08110 ,-120.5436,RAWS , ,HIGHBRIDGE WA US , +HGLN7,3,1193.300 ,35.08610 ,-83.21750,RAWS , ,HIGHLANDS NC US , +TROM6,3,97.50000 ,34.09030 ,-88.86470,RAWS , ,HIGHWAY 41 MS US , +RRWM6,3,84.40000 ,32.52690 ,-89.96970,RAWS , ,HIGHWAY 43 MS US , +HCYM5,3,408.4000 ,47.03750 ,-93.60420,RAWS , ,HILL CITY MN US , +HBOM8,3,1214.900 ,45.10390 ,-108.2189,RAWS , ,HILLSBORO MT US , +QHTA3,3,1612.400 ,33.61830 ,-110.4200,RAWS , ,HILLTOP AZ US , +HOBW4,3,2050.100 ,43.22030 ,-110.4231,RAWS , ,HOBACK WY US , +HOZA2,3,327.7000 ,66.74170 ,-148.6767,RAWS , ,HODZANA AK US , +HFMN7,3,12.80000 ,34.82500 ,-77.32190,RAWS , ,HOFMANN FOREST NC US , +HOGA2,3,208.8000 ,66.21670 ,-155.6667,RAWS , ,HOGATZA RIVER AK US , +HSEC1,3,128.9000 ,36.84220 ,-121.3622,RAWS , ,HOLLISTER CA US , +TS621,3,276.1000 ,42.81720 ,-83.69610,RAWS , ,HOLLY MI US , +RHOM6,3,6.700000 ,33.22110 ,-90.19830,RAWS , ,HOLMES MS US , +HMEA2,3,217.9000 ,59.74580 ,-151.2083,RAWS , ,HOMER AK US , +HKAH1,3,21.30000 ,20.50890 ,-156.6817,RAWS , ,HONOKANAI'A HI US , +HAYI1,3,691.9000 ,48.05310 ,-116.7928,RAWS , ,HOODOO ID US , +HDOA2,3,455.7000 ,65.59500 ,-163.4114,RAWS , ,HOODOO HILL AK US , +HOAC1,3,114.3000 ,41.04780 ,-123.6714,RAWS , ,HOOPA CA US , +QHIA3,3,1707.500 ,35.86250 ,-110.6150,RAWS , ,HOPI AZ US , +QHPA3,3,2170.200 ,31.67530 ,-110.8800,RAWS , ,HOPKINS AZ US , +HPDC1,3,817.5000 ,39.03080 ,-123.0806,RAWS , ,HOPLAND UC CA US , +MAYW3,3,243.8000 ,43.57060 ,-88.60860,RAWS , ,HORICON WI US , +HBFI1,3,1524.000 ,42.41720 ,-115.2278,RAWS , ,HORSE BUTTE ID US , +QHRA3,3,1231.400 ,32.93640 ,-110.4933,RAWS , ,HORSE CAMP CANYON AZ US , +HSFO3,3,1036.900 ,44.94060 ,-122.4003,RAWS , ,HORSE CREEK OR US , +HOHU1,3,1831.900 ,38.66670 ,-112.6508,RAWS , ,HORSE HOLLOW UT US , +HLKC1,3,1554.500 ,40.62330 ,-120.4778,RAWS , ,HORSE LAKE CA US , +HSRU1,3,2584.700 ,39.93390 ,-110.8614,RAWS , ,HORSE RIDGE UT US , +HORM8,3,1060.700 ,46.42580 ,-108.6744,RAWS , ,HORSE THIEF MT US , +HTSC1,3,1524.000 ,35.77060 ,-115.9092,RAWS , ,HORSE THIEF SPRINGS CA US , +HPFI1,3,2682.200 ,43.94810 ,-114.7561,RAWS , ,HORTON PEAK ID US , +HOTM8,3,902.2000 ,47.61560 ,-114.6694,RAWS , ,HOT SPRINGS MT US , +CDSK2,3,235.9000 ,37.13170 ,-86.14810,RAWS , ,HOUCHIN MEADOW KY US , +QHOA3,3,1645.900 ,36.56280 ,-111.9825,RAWS , ,HOUSEROCK AZ US , +OYFO3,3,1659.600 ,42.97640 ,-121.4219,RAWS , ,HOYT CREEK OR US , +TS556,3,91.40000 ,41.35110 ,-74.04830,RAWS , ,HUDSON HIGHLANDS NY US , +SMOC1,3,3.000000 ,40.76690 ,-124.2194,RAWS , ,HUMBOLDT BAY CA US , +QHBA3,3,1600.200 ,34.11000 ,-112.3000,RAWS , ,HUMBUG CREEK AZ US , +HUFW1,3,731.5000 ,47.36720 ,-123.7583,RAWS , ,HUMPTULLIPS WA US , +HNYM8,3,951.9000 ,48.38330 ,-114.0575,RAWS , ,HUNGRY HORSE MT US , +HCKC2,3,2231.100 ,39.77140 ,-108.3292,RAWS , ,HUNTER CREEK CO US , +HTRC1,3,2097.000 ,36.56250 ,-117.4736,RAWS , ,HUNTER MOUNTAIN CA US , +HMEC2,3,2865.100 ,38.33190 ,-107.0889,RAWS , ,HUNTSMAN MESA CO US , +HTVT2,3,108.2000 ,30.73690 ,-95.58750,RAWS , ,HUNTSVILLE TX US , +RHUS2,3,571.8000 ,44.24110 ,-98.77000,RAWS , ,HURON SD US , +QHUA3,3,1659.600 ,36.69920 ,-113.2072,RAWS , ,HURRICANE AZ US , +HURW1,3,1585.000 ,47.97060 ,-123.4983,RAWS , ,HURRICANE WA US , +HHRW4,3,1743.500 ,44.30110 ,-107.5069,RAWS , ,HYATT HIGH WY US , +SBFO3,3,423.4000 ,42.10390 ,-123.6853,RAWS , ,ILLINOIS VALLEY AIRPORT OR US , +IMWN2,3,1898.900 ,37.92000 ,-114.1667,RAWS , ,IMMIGRATION WASH NV US , +INBS2,3,1036.300 ,45.13940 ,-103.9128,RAWS , ,INDIAN BUTTE SD US , +IGGT1,3,823.0000 ,35.62360 ,-83.80830,RAWS , ,INDIAN GRAVE TN US , +INDM4,3,213.4000 ,45.37500 ,-84.62500,RAWS , ,INDIAN RIVER MI US , +IDWC1,3,1453.900 ,41.73470 ,-121.5342,RAWS , ,INDIAN WELL CA US , +IWLC1,3,1219.200 ,35.68500 ,-117.8894,RAWS , ,INDIAN WELLS CANYON CA US , +INDI1,3,1066.800 ,45.38330 ,-114.1667,RAWS , ,INDIANOLA ID US , +TR412,3,1249.700 ,37.49330 ,-118.4119,RAWS , ,INF01 PORTABLE CA US , +TS042,3,2421.600 ,37.79170 ,-119.0194,RAWS , ,INF04 PORTABLE CA US , +NKOA2,3,283.5000 ,63.39000 ,-158.8167,RAWS , ,INNOKO FLATS AK US , +IMTW1,3,1325.900 ,48.56360 ,-118.6192,RAWS , ,IRON MOUNTAIN WA US , +QISA3,3,1671.800 ,34.58530 ,-112.5019,RAWS , ,IRON SPRINGS AZ US , +ABMN6,3,189.0000 ,43.11310 ,-78.40420,RAWS , ,IROQUOIS NY US , +ISAM5,3,606.6000 ,47.61970 ,-91.37750,RAWS , ,ISABELLA MN US , +IPFI1,3,1915.400 ,44.41670 ,-111.3833,RAWS , ,ISLAND PARK ID US , +IAHM1,3,15.20000 ,44.06670 ,-68.64170,RAWS , ,ISLE AU HAUT ME US , +ITCM5,3,451.1000 ,47.24000 ,-95.19000,RAWS , ,ITASCA MN US , +JRFO3,3,1578.900 ,45.11390 ,-118.4039,RAWS , ,J RIDGE OR US , +JCSN8,3,438.9000 ,48.61530 ,-100.7292,RAWS , ,J. CLARK SALYER ND US , +JCRC2,3,2389.600 ,38.75330 ,-108.5797,RAWS , ,JACKS CANYON CO US , +JACN4,3,54.90000 ,40.09860 ,-74.31610,RAWS , ,JACKSON NJ US , +JCAK2,3,423.1000 ,37.59220 ,-83.31780,RAWS , ,JACKSON CO AP KY US , +CUWN7,3,853.4000 ,35.31580 ,-83.20690,RAWS , ,JACKSON COUNTY NC US , +PRGV2,3,15.20000 ,37.25940 ,-77.14060,RAWS , ,JAMES RIVER VA US , +JBGC1,3,759.0000 ,39.73580 ,-121.4889,RAWS , ,JARBO GAP CA US , +JARN5,3,2683.200 ,36.55580 ,-106.1031,RAWS , ,JARITA MESA NM US , +TETA2,3,701.0000 ,62.60000 ,-142.0833,RAWS , ,JATAHMUND LAKE AK US , +JWBC1,3,1310.600 ,35.29500 ,-118.2267,RAWS , ,JAWBONE CA US , +JAYC2,3,1889.800 ,38.84560 ,-107.7386,RAWS , ,JAY CO US , +NMKT1,3,533.4000 ,36.07030 ,-83.48860,RAWS , ,JEFFERSON CO TOWER TN US , +JEFW1,3,670.6000 ,47.55000 ,-123.1667,RAWS , ,JEFFERSON CREEK WA US , +JESN5,3,2438.100 ,35.84110 ,-106.6189,RAWS , ,JEMEZ NM US , +JSPU1,3,1750.800 ,38.03330 ,-113.5167,RAWS , ,JENSEN SPRING UT US , +JSDC1,3,1188.700 ,37.54360 ,-119.8397,RAWS , ,JERSEYDALE CA US , +JVLA4,3,205.7000 ,34.69190 ,-93.22000,RAWS , ,JESSIEVILLE AR US , +JETM8,3,1097.300 ,47.76750 ,-114.2339,RAWS , ,JETTE MT US , +JVAU1,3,2651.800 ,39.30940 ,-111.3228,RAWS , ,JOES VALLLEY UT US , +SKKW1,3,609.6000 ,47.80170 ,-121.2875,RAWS , ,JOHNSON RIDGE WA US , +JSNC1,3,1432.600 ,35.97060 ,-118.5408,RAWS , ,JOHNSONDALE CA US , +JNSC2,3,2911.800 ,39.04140 ,-106.0033,RAWS , ,JONES HILL CO US , +JONG1,3,34.70000 ,30.82890 ,-82.36000,RAWS , ,JONES ISLAND GA US , +JTAC1,3,1645.900 ,41.80190 ,-122.1097,RAWS , ,JUANITA LAKE CA US , +JULC1,3,1291.700 ,33.07560 ,-116.5917,RAWS , ,JULIAN CA US , +JPRC1,3,1332.600 ,41.33220 ,-120.4725,RAWS , ,JUNIPER CREEK CA US , +JUFW1,3,289.6000 ,46.35780 ,-118.8686,RAWS , ,JUNIPER DUNES WA US , +JSPN2,3,1630.100 ,41.08080 ,-119.7764,RAWS , ,JUNIPER SPRINGS NV US , +KNMM5,3,365.8000 ,48.44170 ,-93.05000,RAWS , ,KABNAM MN US , +KRCH1,3,1796.500 ,19.23220 ,-155.7800,RAWS , ,KAHUKU HI US , +KTAH1,3,181.7000 ,21.67920 ,-157.9894,RAWS , ,KAHUKU TRAINING AREA HI US , +TR492,3,2086.100 ,35.23860 ,-112.2169,RAWS , ,KAIBAB-SK MICRO #3 AZ US , +KAIA2,3,33.50000 ,64.42560 ,-158.1058,RAWS , ,KAIYUH AK US , +KHOH1,3,7.600000 ,19.67280 ,-156.0203,RAWS , ,KALOKO-HONOKOHAU HI US , +KAGU1,3,1981.200 ,37.52470 ,-109.8931,RAWS , ,KANE GULCH UT US , +KNSN2,3,1335.600 ,37.25060 ,-114.7067,RAWS , ,KANE SPRINGS NV US , +KAOH1,3,248.4000 ,20.52220 ,-156.5658,RAWS , ,KANELOA HI US , +KANA2,3,251.5000 ,66.09330 ,-152.1700,RAWS , ,KANUTI NWR AK US , +KPGH1,3,1222.300 ,20.68690 ,-156.1514,RAWS , ,KAUPO HI US , +KAVA2,3,71.60000 ,67.13750 ,-159.0461,RAWS , ,KAVET CREEK AK US , +KLLH1,3,251.5000 ,20.54360 ,-156.6408,RAWS , ,KEALIALALO HI US , +KKUH1,3,1682.500 ,19.47360 ,-155.3589,RAWS , ,KEAUMO HI US , +KEEO3,3,1560.600 ,44.66610 ,-118.9219,RAWS , ,KEENEY TWO OR US , +KNWC1,3,1499.600 ,33.66670 ,-116.7667,RAWS , ,KEENWILD CA US , +KDNM5,3,412.1000 ,47.94110 ,-94.46420,RAWS , ,KELLIHER MN US , +KLYW4,3,2581.700 ,42.27610 ,-110.8061,RAWS , ,KELLY WY US , +KELA2,3,116.4000 ,67.92970 ,-162.2958,RAWS , ,KELLY AK US , +KBFO3,3,1581.000 ,43.90110 ,-117.9869,RAWS , ,KELSAY BUTTE OR US , +KNLA2,3,144.8000 ,60.36670 ,-149.4000,RAWS , ,KENAI LAKE AK US , +KNAA2,3,121.9000 ,60.59170 ,-150.3167,RAWS , ,KENAI NWR AK US , +KYPP1,3,646.5000 ,41.10470 ,-78.49170,RAWS , ,KENNEDY PRESERVE PA US , +KSHC2,3,3109.000 ,39.41080 ,-105.7497,RAWS , ,KENOSHA PASS CO US , +KEHW3,3,233.8000 ,44.88920 ,-88.66140,RAWS , ,KESHENA WI US , +KTLW1,3,399.3000 ,48.60830 ,-118.1194,RAWS , ,KETTLE FALLS WA US , +KTLC1,3,246.9000 ,36.03330 ,-120.0569,RAWS , ,KETTLEMAN HILLS CA US , +THKO2,3,207.3000 ,34.75580 ,-94.98310,RAWS , ,KIAMICHI OK US , +SRKA2,3,45.70000 ,66.97670 ,-160.4375,RAWS , ,KIANA AK US , +KCPT2,3,485.2000 ,29.60920 ,-100.4731,RAWS , ,KICKAPOO CAVERNS SP TX US , +KCFW1,3,914.4000 ,48.92030 ,-121.9425,RAWS , ,KIDNEY CREEK WA US , +KFWH1,3,1.500000 ,21.68830 ,-157.9525,RAWS , ,KII HI US , +KILA2,3,582.2000 ,60.32000 ,-160.2000,RAWS , ,KILBUCK AK US , +KLOM8,3,1330.500 ,46.44500 ,-109.8000,RAWS , ,KILO MT US , +KIGM8,3,841.2000 ,47.79810 ,-107.0233,RAWS , ,KING COULEE MT US , +HRSN1,3,1243.600 ,42.72390 ,-102.9717,RAWS , ,KINGS CANYON NE US , +KNGS1,3,249.9000 ,35.14560 ,-81.40220,RAWS , ,KINGS MOUNTAIN SC US , +KPRU1,3,1728.200 ,40.85970 ,-109.1033,RAWS , ,KINGS POINT UT US , +KGWW2,3,570.9000 ,39.40670 ,-79.70080,RAWS , ,KINGWOOD WV US , +KZAP1,3,429.2000 ,41.90060 ,-79.11860,RAWS , ,KINZUA PA US , +KRBT2,3,91.40000 ,30.43330 ,-93.88330,RAWS , ,KIRBYVILLE: TX TX US , +TS746,3,529.4000 ,39.66530 ,-99.23420,RAWS , ,KIRWIN KS US , +KMRO3,3,1381.100 ,42.95330 ,-121.5819,RAWS , ,KLAMATH NWR OR US , +KLAA2,3,944.9000 ,62.14690 ,-144.9269,RAWS , ,KLAWASI AK US , +KNNC1,3,834.2000 ,40.72000 ,-123.9269,RAWS , ,KNEELAND CA US , +TR139,3,457.2000 ,41.77780 ,-123.3806,RAWS , ,KNF92 PORTABLE CA US , +TR583,3,771.1000 ,41.12000 ,-123.0950,RAWS , ,KNF96 PORTABLE CA US , +TS680,3,518.2000 ,47.32640 ,-101.3778,RAWS , ,KNIFE RIVER ND US , +KTFM8,3,1011.900 ,46.30720 ,-105.0297,RAWS , ,KNOWLTON MT US , +KNXC1,3,670.6000 ,38.86190 ,-122.4172,RAWS , ,KNOXVILLE CREEK CA US , +KELC1,3,659.3000 ,38.91190 ,-122.7064,RAWS , ,KONOCTI CA US , +KOMK2,3,396.2000 ,37.76890 ,-83.63330,RAWS , ,KOOMER KY US , +KOYA2,3,30.50000 ,66.00830 ,-157.5700,RAWS , ,KOYUKUK NWR AK US , +KMFW1,3,829.1000 ,48.25860 ,-119.5169,RAWS , ,KRAMER WA US , +KRCI1,3,1585.000 ,45.35610 ,-113.8950,RAWS , ,KRILEY CREEK ID US , +TPHC1,3,1352.700 ,35.08220 ,-118.5811,RAWS , ,KRN01 CA US , +TMNC1,3,1728.800 ,35.07140 ,-118.4811,RAWS , ,KRN02 CA US , +KRTC1,3,1518.200 ,34.82360 ,-118.9631,RAWS , ,KRN03 CA US , +TS663,3,957.4000 ,35.61170 ,-118.4050,RAWS , ,KRN04 CA US , +LBLK2,3,197.8000 ,36.77640 ,-88.06310,RAWS , ,KYLBL KY US , +KYCN2,3,2194.600 ,36.26670 ,-115.6000,RAWS , ,KYLE CANYON NV US , +LBRM4,3,304.8000 ,45.88560 ,-87.48830,RAWS , ,LA BRANCHE MI US , +TS049,3,457.2000 ,34.18610 ,-118.1175,RAWS , ,LA COUNTY PORTABLE CA US , +LGNT2,3,47.20000 ,29.90750 ,-96.86000,RAWS , ,LA GRANGE TX US , +LAHC1,3,265.8000 ,37.30530 ,-122.2550,RAWS , ,LA HONDA CA US , +LPZC1,3,497.7000 ,35.38060 ,-120.1881,RAWS , ,LA PANZA CA US , +LACL1,3,1.500000 ,30.00170 ,-92.89330,RAWS , ,LACASSINE LA US , +LDRC1,3,1752.600 ,40.80720 ,-121.2967,RAWS , ,LADDER BUTTE CA US , +LODC2,3,1810.500 ,40.73830 ,-108.8367,RAWS , ,LADORE CO US , +LDYW3,3,349.6000 ,45.43330 ,-91.11670,RAWS , ,LADYSMITH WI US , +LAGO3,3,938.5000 ,45.55060 ,-118.0133,RAWS , ,LAGRANDE 1 OR US , +TS341,3,1759.600 ,35.03940 ,-107.3731,RAWS , ,LAGUNA NM US , +ATRT2,3,7.600000 ,26.22830 ,-97.34920,RAWS , ,LAGUNA ATASCOSA TX US , +RLAS2,3,521.2000 ,43.25860 ,-98.75920,RAWS , ,LAKE ANDES SD US , +LKGC2,3,2467.100 ,38.97860 ,-105.3544,RAWS , ,LAKE GEORGE CO US , +LMHA2,3,225.6000 ,63.89330 ,-152.3106,RAWS , ,LAKE MINCHUMINA AK US , +LPDC1,3,908.3000 ,34.53720 ,-118.1014,RAWS , ,LAKE PALMDALE CA US , +LPSN6,3,548.6000 ,43.83330 ,-74.66670,RAWS , ,LAKE PLEASANT NY US , +LWEF1,3,43.00000 ,27.43640 ,-81.38970,RAWS , ,LAKE WALES FL US , +TS737,3,18.30000 ,29.09940 ,-81.36690,RAWS , ,LAKE WOODRUFF QD FL US , +QLKA3,3,2133.600 ,34.16000 ,-109.9800,RAWS , ,LAKESIDE AZ US , +LKRW2,3,175.6000 ,38.96080 ,-82.08860,RAWS , ,LAKIN WV US , +LNIH1,3,387.1000 ,20.87330 ,-157.0064,RAWS , ,LANAI 1 HI US , +LNCN3,3,273.7000 ,44.52530 ,-71.57250,RAWS , ,LANCASTER NH US , +LCFW1,3,1350.300 ,48.61110 ,-118.2778,RAWS , ,LANE CREEK WA US , +LAAW3,3,481.6000 ,45.55560 ,-88.68000,RAWS , ,LAONA WI US , +LARU1,3,2587.800 ,38.01580 ,-111.3203,RAWS , ,LARB HOLLOW UT US , +TR951,3,350.5000 ,45.72310 ,-122.3453,RAWS , ,LARCH MT. WA US , +TABC1,3,303.0000 ,35.65640 ,-120.9242,RAWS , ,LAS TABLAS CA US , +LTRC1,3,536.4000 ,37.83390 ,-122.0669,RAWS , ,LAS TRAMPAS CA US , +LSNC1,3,1267.700 ,40.34420 ,-121.7136,RAWS , ,LASSEN LODGE CA US , +RLDM6,3,67.40000 ,32.36750 ,-88.45670,RAWS , ,LAUDERDALE MS US , +LAFC1,3,1463.000 ,40.14170 ,-120.3533,RAWS , ,LAUFMAN CA US , +LRLC1,3,1338.100 ,35.47830 ,-117.6992,RAWS , ,LAURAL MOUNTAIN CA US , +LRLN7,3,914.4000 ,36.40000 ,-81.28330,RAWS , ,LAUREL SPRINGS NC US , +LBFO3,3,1418.800 ,43.90830 ,-121.3553,RAWS , ,LAVA BUTTE OR US , +LPRU1,3,2404.900 ,37.39170 ,-113.0389,RAWS , ,LAVA POINT RAWS UT US , +LFFT1,3,295.7000 ,36.54110 ,-86.00280,RAWS , ,LAYFAYETTE WORK CENTER TN US , +LAYC1,3,560.2000 ,39.70220 ,-123.4850,RAWS , ,LAYTONVILLE CA US , +LBJT2,3,249.3000 ,33.28280 ,-97.63220,RAWS , ,LBJ TX US , +LDOI1,3,1874.500 ,44.70190 ,-113.3469,RAWS , ,LEADORE CREEK ID US , +LEFW1,3,1521.300 ,48.25060 ,-120.0033,RAWS , ,LEECHER WA US , +LEIW4,3,2500.000 ,44.10670 ,-107.2239,RAWS , ,LEIGH CREEK WY US , +LCLT1,3,378.0000 ,35.84420 ,-84.33170,RAWS , ,LENOIR CITY TN US , +LCBC1,3,15.20000 ,34.04560 ,-118.9358,RAWS , ,LEO CARRILLO CA US , +LEOM4,3,331.9000 ,44.11860 ,-84.91830,RAWS , ,LEOTA MI US , +LSFW1,3,492.3000 ,47.20830 ,-121.5250,RAWS , ,LESTER WA US , +TR588,3,2520.700 ,47.04330 ,-112.7039,RAWS , ,LEWIS & CLARK PORTABLE #2 MT US , +LSBT1,3,350.5000 ,35.38170 ,-86.76580,RAWS , ,LEWISBURG TOWER TN US , +LXFN7,3,228.6000 ,35.79220 ,-80.31190,RAWS , ,LEXINGTON NC US , +LBBM8,3,630.9000 ,48.38330 ,-115.5667,RAWS , ,LIBBY MT US , +BLLN8,3,598.0000 ,48.78920 ,-102.2686,RAWS , ,LIMA ND US , +LKRV2,3,786.4000 ,37.98640 ,-79.75940,RAWS , ,LIME KILN VA US , +QLCA3,3,2072.600 ,34.17860 ,-110.2744,RAWS , ,LIMESTONE CANYON AZ US , +LICC1,3,61.00000 ,38.88250 ,-121.2683,RAWS , ,LINCOLN CA US , +LNCM8,3,1401.200 ,46.96810 ,-112.6353,RAWS , ,LINCOLN MT US , +TR611,3,2173.500 ,32.98530 ,-105.4939,RAWS , ,LINCOLN PORTABLE NM US , +LNDW3,3,247.8000 ,45.73970 ,-92.79560,RAWS , ,LIND WI US , +QLBA3,3,2682.200 ,36.28560 ,-112.0786,RAWS , ,LINDBERGH HILL AZ US , +DENT2,3,152.4000 ,33.00500 ,-94.35780,RAWS , ,LINDEN TX US , +LCKI1,3,1560.600 ,47.10830 ,-116.2278,RAWS , ,LINES CREEK ID US , +LSRT2,3,4.600000 ,26.53640 ,-98.08780,RAWS , ,LINN-SAN MANUEL TX US , +LRWA1,3,365.8000 ,34.49780 ,-85.62920,RAWS , ,LIRI AL US , +LFSM5,3,328.0000 ,45.07190 ,-94.53030,RAWS , ,LITCHFIELD MN US , +LTAI1,3,1389.900 ,44.09110 ,-115.8806,RAWS , ,LITTLE ANDERSON ID US , +LBHM8,3,1036.300 ,45.56970 ,-107.4358,RAWS , ,LITTLE BIGHORN MT US , +LBKA2,3,396.2000 ,66.09140 ,-143.3672,RAWS , ,LITTLE BLACK AK US , +LBCM8,3,944.9000 ,47.83140 ,-109.0083,RAWS , ,LITTLE BULLWHACKER CREEK MT US , +THFI1,3,1408.200 ,44.72280 ,-114.9953,RAWS , ,LITTLE CREEK ID US , +LDRC2,3,2071.400 ,38.96920 ,-108.9444,RAWS , ,LITTLE DELORES CO US , +LXLM5,3,350.5000 ,45.95140 ,-94.34440,RAWS , ,LITTLE FALLS MN US , +LMCO3,3,1548.400 ,42.70810 ,-118.5100,RAWS , ,LITTLE MCCOY CREEK OR US , +LPOW1,3,614.2000 ,48.46080 ,-117.7331,RAWS , ,LITTLE PEND OREILLE NWR WA US , +LRCM8,3,1678.500 ,46.03780 ,-114.2625,RAWS , ,LITTLE ROCK CREEK MT US , +LSNM8,3,1516.400 ,46.75110 ,-109.0233,RAWS , ,LITTLE SNOWY MT US , +LTJC1,3,423.7000 ,34.29360 ,-118.3608,RAWS , ,LITTLE TUJUNGA CA US , +LVYN2,3,1923.300 ,39.24440 ,-119.8808,RAWS , ,LITTLE VALLEY (WRCC) NV US , +LITM5,3,344.7000 ,48.38940 ,-93.56420,RAWS , ,LITTLEFORK MN US , +LIVA2,3,137.2000 ,65.42360 ,-148.7217,RAWS , ,LIVENGOOD AK US , +TR461,3,1889.800 ,40.55000 ,-121.1250,RAWS , ,LNF00 PORTABLE CA US , +TR147,3,1935.500 ,40.75280 ,-120.8167,RAWS , ,LNF04 PORTABLE CA US , +TR148,3,1706.300 ,40.72220 ,-121.1656,RAWS , ,LNF05 PORTABLE CA US , +LOLP1,3,270.1000 ,41.20420 ,-74.89000,RAWS , ,LOCH LOMOND PA US , +LKSO3,3,39.00000 ,45.66940 ,-121.8817,RAWS , ,LOCKS OR US , +LPFI1,3,1750.500 ,45.37860 ,-115.1894,RAWS , ,LODGEPOLE ID US , +TS657,3,384.0000 ,41.42170 ,-95.85360,RAWS , ,LOESS HILLS HITCHCOCK IA US , +LSHI4,3,326.1000 ,41.83220 ,-95.92810,RAWS , ,LOESS HILLS STATE FOREST IA US , +TS761,3,2515.800 ,37.35220 ,-107.9147,RAWS , ,LOG CHUTE CO US , +LGFO3,3,853.4000 ,45.49670 ,-121.8953,RAWS , ,LOG CREEK OR US , +LGRW2,3,502.9000 ,37.85500 ,-81.91440,RAWS , ,LOGAN WV US , +LONN2,3,1773.900 ,41.53860 ,-116.2183,RAWS , ,LONG HOLLOW NV US , +TR749,3,7.600000 ,40.78110 ,-72.89830,RAWS , ,LONG ISLAND NY US , +TS633,3,559.3000 ,46.68140 ,-100.2383,RAWS , ,LONG LAKE NWR ND US , +LGPO3,3,333.1000 ,42.95330 ,-124.2233,RAWS , ,LONG PRAIRIE OR US , +LOAC1,3,164.3000 ,37.35470 ,-122.1419,RAWS , ,LOS ALTOS CA US , +SLRC1,3,92.00000 ,37.05470 ,-121.0531,RAWS , ,LOS BANOS CA US , +LSGC1,3,561.4000 ,37.20420 ,-121.9508,RAWS , ,LOS GATOS CA US , +LPOC1,3,310.9000 ,34.53580 ,-119.7833,RAWS , ,LOS PRIETOS CA US , +VAQC1,3,335.3000 ,37.78830 ,-121.7347,RAWS , ,LOS VAQUEROS CA US , +LSTA2,3,213.4000 ,66.04250 ,-147.9714,RAWS , ,LOST CREEK AK US , +LSCU1,3,2283.000 ,38.78060 ,-111.8656,RAWS , ,LOST CREEK UT US , +LTHC1,3,1280.200 ,34.01780 ,-116.1878,RAWS , ,LOST HORSE CA US , +LLFW1,3,1181.400 ,48.87530 ,-119.0667,RAWS , ,LOST LAKE WA US , +LWDN8,3,691.9000 ,48.64810 ,-102.4064,RAWS , ,LOSTWOOD ND US , +LOUG1,3,60.00000 ,32.97530 ,-82.35280,RAWS , ,LOUISVILLE GA US , +LKNC1,3,1249.100 ,41.99920 ,-121.7003,RAWS , ,LOWER KLAMATH - FTS CA US , +SWNF1,3,4.600000 ,29.37310 ,-83.03440,RAWS , ,LOWER SUWANNEE FL US , +LOHF1,3,5.200000 ,26.49830 ,-80.22080,RAWS , ,LOXAHATCHEE FL US , +TR152,3,1162.200 ,36.34440 ,-121.5769,RAWS , ,LPF01 PORTABLE CA US , +TR153,3,725.7000 ,34.50110 ,-119.7917,RAWS , ,LPF02 PORTABLE CA US , +TR154,3,609.6000 ,34.99810 ,-120.1878,RAWS , ,LPF03 PORTABLE CA US , +TR156,3,1600.800 ,34.80640 ,-119.0128,RAWS , ,LPF05 PORTABLE CA US , +TR130,3,655.3000 ,35.86280 ,-121.1242,RAWS , ,LPF88 PORTABLE CA US , +LSFC1,3,30.50000 ,33.28890 ,-117.4389,RAWS , ,LSF LAS FLORES CA US , +LMKH1,3,335.3000 ,20.56250 ,-156.5631,RAWS , ,LUA MAKIKA HI US , +LUFI1,3,966.2000 ,43.58750 ,-115.9925,RAWS , ,LUCKY PEAK ID US , +LRWT2,3,47.20000 ,31.31250 ,-94.82580,RAWS , ,LUFKIN TX US , +LUJC2,3,3399.700 ,38.25440 ,-106.5678,RAWS , ,LUJAN CO US , +COWC1,3,975.4000 ,39.12580 ,-123.0736,RAWS , ,LYONS VALLEY CA US , +LTLC1,3,851.0000 ,34.23390 ,-117.4803,RAWS , ,LYTLE CREEK CA US , +CMMM7,3,323.7000 ,37.96810 ,-92.90110,RAWS , ,MACKS CR MO US , +MDDC1,3,845.8000 ,40.46330 ,-123.5239,RAWS , ,MAD RIVER CA US , +MGLN5,3,2590.800 ,33.85110 ,-107.5431,RAWS , ,MAGDALENA NM US , +CLKI1,3,1480.100 ,47.88360 ,-116.3017,RAWS , ,MAGEE PEAK ID US , +PRMS2,3,865.6000 ,43.31830 ,-101.1450,RAWS , ,MAGPIE CREEK SD US , +MBRM8,3,1737.400 ,45.33330 ,-110.2167,RAWS , ,MAIN BOULDER MT US , +MKPH1,3,22.90000 ,21.20330 ,-156.9661,RAWS , ,MAKAPULAPAI HI US , +MKRH1,3,6.100000 ,21.52860 ,-158.2261,RAWS , ,MAKUA RANGE HI US , +MBCC1,3,195.1000 ,34.09970 ,-118.7033,RAWS , ,MALIBU CANYON CA US , +MBUC1,3,480.1000 ,34.05830 ,-118.6333,RAWS , ,MALIBU HILLS CA US , +LVMC1,3,621.8000 ,37.81720 ,-121.7789,RAWS , ,MALLORY RIDGE CA US , +GMLN5,3,2290.300 ,34.85170 ,-108.1744,RAWS , ,MALPIAS LAVA FLOW NM US , +HACC2,3,2587.500 ,39.10530 ,-105.1381,RAWS , ,MANCHESTER CO US , +MANA2,3,204.5000 ,64.70000 ,-147.0167,RAWS , ,MANCHU AK US , +MCDM8,3,938.8000 ,47.70170 ,-108.4781,RAWS , ,MANNING CORRAL DOGTOWN MT US , +TR337,3,2484.100 ,38.54920 ,-109.2886,RAWS , ,MANTI - PORTABLE #1 UT US , +TR338,3,2697.500 ,38.96530 ,-111.2933,RAWS , ,MANTI - PORTABLE #2 UT US , +MTNM4,3,335.3000 ,44.41750 ,-85.39780,RAWS , ,MANTON MI US , +VIOC1,3,1725.200 ,40.54000 ,-121.5803,RAWS , ,MANZANITA LAKE CA US , +MBMW1,3,108.8000 ,48.53940 ,-121.4461,RAWS , ,MARBLEMOUNT WA US , +TR243,3,983.0000 ,45.53720 ,-115.3111,RAWS , ,MARIAH - PORTABLE ID US , +SFFA4,3,77.10000 ,34.75610 ,-90.72220,RAWS , ,MARIANNA AR US , +RMAM6,3,115.8000 ,31.21140 ,-89.92250,RAWS , ,MARION MS US , +MPOC1,3,680.0000 ,37.50420 ,-119.9869,RAWS , ,MARIPOSA CA US , +MKEC1,3,1676.700 ,38.68330 ,-119.7667,RAWS , ,MARKLEEVILLE CA US , +MRLV1,3,513.9000 ,42.83780 ,-72.73500,RAWS , ,MARLBORO VT US , +MARW2,3,939.4000 ,38.22440 ,-80.03780,RAWS , ,MARLINTON WV US , +MRLS2,3,612.6000 ,45.80390 ,-97.45080,RAWS , ,MARSHALL CO SD US , +MTGW2,3,160.3000 ,39.40940 ,-77.97810,RAWS , ,MARTINSBURG WV US , +MSAT2,3,445.9000 ,30.73580 ,-99.18610,RAWS , ,MASON TX US , +MATT2,3,579.1000 ,34.13330 ,-100.4167,RAWS , ,MATADOR TX US , +MIRT2,3,11.00000 ,28.12280 ,-96.80220,RAWS , ,MATAGORDA ISLAND TX US , +MTHN2,3,2824.900 ,39.02280 ,-114.2722,RAWS , ,MATHER NV US , +MSFO1,3,186.5000 ,41.53060 ,-83.92940,RAWS , ,MAUMEE OH US , +MCKA2,3,487.7000 ,61.34750 ,-142.5892,RAWS , ,MAY CREEK AK US , +MAYN5,3,1998.900 ,32.98330 ,-105.5000,RAWS , ,MAYHILL NM US , +MCPA2,3,385.9000 ,59.47250 ,-150.3336,RAWS , ,MCARTHUR PASS AK US , +MPRC2,3,2760.900 ,39.12670 ,-107.2842,RAWS , ,MCCLURE PASS CO US , +MCKU1,3,2048.900 ,39.63390 ,-109.2653,RAWS , ,MCCOOK RIDGE UT US , +FADT2,3,1.500000 ,29.70720 ,-94.12110,RAWS , ,MCFADDIN TX US , +ANPM1,3,129.2000 ,44.37690 ,-68.26080,RAWS , ,MCFARLAND HILL ME US , +MEGT2,3,193.9000 ,31.38390 ,-97.41280,RAWS , ,MCGREGOR TX US , +MCGC1,3,180.7000 ,39.35280 ,-123.6011,RAWS , ,MCGUIRES CA US , +TS813,3,0.000000 ,31.97750 ,-104.7517,RAWS , ,MCKITTRICK TX US , +MRAG1,3,76.20000 ,32.09640 ,-82.88420,RAWS , ,MCRAE GA US , +TR200,3,1602.600 ,41.90860 ,-120.7814,RAWS , ,MDF03 PORTABLE CA US , +TR079,3,1362.500 ,41.56970 ,-121.3642,RAWS , ,MDF04 PORTABLE CA US , +TR986,3,1645.900 ,41.98920 ,-120.8389,RAWS , ,MDF05 PORTABLE CA US , +TS089,3,1868.400 ,41.29780 ,-120.3319,RAWS , ,MDF06 PORTABLE CA US , +MEAM5,3,417.0000 ,48.12000 ,-92.15890,RAWS , ,MEANDER MN US , +MNLC1,3,883.9000 ,34.38440 ,-116.5239,RAWS , ,MEANS LAKE CA US , +MLKM8,3,602.0000 ,48.49000 ,-104.4761,RAWS , ,MEDICINE LAKE MT US , +MGST1,3,231.6000 ,35.52080 ,-84.79310,RAWS , ,MEIGS EOC TN US , +MRRN5,3,1325.900 ,34.30000 ,-103.8000,RAWS , ,MELROSE RANGE NM US , +MERT1,3,280.4000 ,35.50250 ,-87.45810,RAWS , ,MERIWETHER LEWIS TN US , +MLFO3,3,324.3000 ,42.54110 ,-123.4156,RAWS , ,MERLIN SEED ORCHARD OR US , +MRFF1,3,9.100000 ,28.64080 ,-80.73080,RAWS , ,MERRITT ISLAND FL US , +MMRC2,3,2249.400 ,37.05640 ,-107.7086,RAWS , ,MESA MTN CO US , +MSCN5,3,1898.000 ,33.16670 ,-105.8333,RAWS , ,MESCAL NM US , +MCFC1,3,937.9000 ,37.40940 ,-119.7681,RAWS , ,METCALF GAP CA US , +MEFO3,3,1048.500 ,44.62750 ,-121.6147,RAWS , ,METOLIUS ARM OR US , +MTFG1,3,30.20000 ,32.39140 ,-82.03720,RAWS , ,METTER GA US , +MYRC1,3,1923.300 ,38.84890 ,-120.0189,RAWS , ,MEYERS CA US , +MRPC1,3,1950.700 ,37.51280 ,-119.6047,RAWS , ,MGROVE CA US , +MIAC1,3,1321.000 ,37.41920 ,-119.7453,RAWS , ,MIAMI CA US , +MDHC1,3,1649.900 ,35.12310 ,-115.4114,RAWS , ,MID HILLS CA US , +MMRO3,3,775.4000 ,45.57940 ,-121.5969,RAWS , ,MIDDLE MTN OR US , +MDEC1,3,712.9000 ,37.92780 ,-122.5872,RAWS , ,MIDDLE PEAK CA US , +WMGI2,3,149.0000 ,41.34170 ,-88.13080,RAWS , ,MIDEWIN TALL GRASS PRARIE IL US , +MNDT2,3,854.1000 ,31.94310 ,-102.1897,RAWS , ,MIDLAND TX US , +MDRW1,3,820.8000 ,47.94190 ,-118.0911,RAWS , ,MIDNITE MINE WA US , +MDWG1,3,6.100000 ,31.78420 ,-81.43860,RAWS , ,MIDWAY GA US , +TR356,3,757.4000 ,44.08720 ,-117.2264,RAWS , ,MIKEY OR US , +EKIM8,3,1187.500 ,45.81030 ,-104.4631,RAWS , ,MILES CITY IWOS(EKALAKA) MT US , +MCCM8,3,762.0000 ,46.85780 ,-104.6478,RAWS , ,MILES CITY QD MT US , +RKIF1,3,4.600000 ,26.24830 ,-81.29670,RAWS , ,MILES CITY RAWS FL US , +MILW1,3,859.5000 ,46.26250 ,-120.8622,RAWS , ,MILL CREEK WA US , +MCRW4,3,2712.100 ,44.45580 ,-107.4494,RAWS , ,MILL CREEK WY US , +MLCC1,3,1530.400 ,34.39030 ,-118.0825,RAWS , ,MILL CREEK (ANF) CA US , +MMKC1,3,899.2000 ,34.08360 ,-117.0347,RAWS , ,MILL CREEK (BDF) CA US , +HRDG1,3,77.40000 ,33.01030 ,-83.20720,RAWS , ,MILLEDGEVILLE GA US , +MLLO3,3,314.2000 ,46.02250 ,-123.2717,RAWS , ,MILLER OR US , +MCBT2,3,406.9000 ,33.41360 ,-99.40060,RAWS , ,MILLER CREEK TX US , +MLCN5,3,1784.900 ,36.05440 ,-104.3244,RAWS , ,MILLS CANYON NM US , +MOLC1,3,610.2000 ,36.23190 ,-118.8706,RAWS , ,MILO CA US , +TR328,3,1089.700 ,45.35390 ,-117.6328,RAWS , ,MINAM LODGE-PORTABLE OR US , +MTTC1,3,1627.600 ,37.40720 ,-119.3456,RAWS , ,MINARETS CA US , +MRZW3,3,323.1000 ,46.13580 ,-91.98080,RAWS , ,MINONG WI US , +MMOM4,3,320.0000 ,44.67610 ,-84.12830,RAWS , ,MIO MI US , +TS724,3,1036.300 ,46.28810 ,-116.6878,RAWS , ,MISSION CREEK ID US , +MSLM8,3,1033.900 ,46.82360 ,-114.1000,RAWS , ,MISSOULA MT US , +MTRO3,3,777.5000 ,44.58190 ,-120.1806,RAWS , ,MITCHELL OR US , +TS642,3,257.6000 ,44.71640 ,-93.63580,RAWS , ,MN VALLEY MN US , +TS379,3,876.3000 ,39.23170 ,-122.6456,RAWS , ,MNF04 PORTABLE CA US , +TR428,3,2094.600 ,37.97810 ,-109.5439,RAWS , ,MOAB PORTABLE UT US , +MOFI1,3,1950.700 ,42.04310 ,-113.1528,RAWS , ,MOBURG CANYON ID US , +MOKC2,3,1956.800 ,37.47250 ,-108.8844,RAWS , ,MOCKINGBIRD CO US , +MOWC1,3,1335.000 ,41.45890 ,-120.5189,RAWS , ,MODOC NWR CA US , +MRSC1,3,289.6000 ,35.05310 ,-116.0794,RAWS , ,MOJAVE RIVER SINK CA US , +MLDH1,3,103.0000 ,22.18330 ,-159.3375,RAWS , ,MOLOAA DAIRY HI US , +MLKH1,3,833.0000 ,21.11500 ,-156.9475,RAWS , ,MOLOKAI 1 HI US , +MFCM6,3,107.9000 ,33.79390 ,-88.34670,RAWS , ,MONROE MS US , +MTIC1,3,457.2000 ,34.46140 ,-119.6481,RAWS , ,MONTECITO CA US , +MYFI1,3,2145.800 ,43.65000 ,-111.5792,RAWS , ,MOODY ID US , +OOFO3,3,1859.300 ,42.85920 ,-118.6789,RAWS , ,MOON HILL OR US , +MZHM5,3,326.1000 ,46.42030 ,-92.80080,RAWS , ,MOOSE LAKE MN US , +MWRM1,3,64.00000 ,45.11440 ,-67.28060,RAWS , ,MOOSEHORN ME US , +JMRM5,3,308.5000 ,45.89000 ,-93.26970,RAWS , ,MORA MN US , +MRFC2,3,2383.500 ,37.29720 ,-108.4128,RAWS , ,MOREFIELD CO US , +MORN2,3,1676.400 ,41.45360 ,-117.6219,RAWS , ,MOREY CREEK NV US , +MGFO3,3,1280.200 ,44.50140 ,-117.2983,RAWS , ,MORGAN MOUNTAIN OR US , +QMOA3,3,2255.500 ,34.90670 ,-111.4450,RAWS , ,MORMON LAKE AZ US , +MNCC1,3,1005.800 ,34.31750 ,-117.5019,RAWS , ,MORMON ROCK CA US , +MNEW3,3,374.9000 ,44.76560 ,-89.67420,RAWS , ,MOSINEE WI US , +QMBA3,3,1804.400 ,35.03420 ,-113.8942,RAWS , ,MOSS BASIN AZ US , +MOUC1,3,1503.600 ,38.06310 ,-120.2469,RAWS , ,MOUNT ELIZABETH CA US , +QMLA3,3,2318.000 ,36.35310 ,-113.1992,RAWS , ,MOUNT LOGAN AZ US , +MSFO3,3,1432.600 ,42.93610 ,-122.4347,RAWS , ,MOUNT STELLA OR US , +MMTC1,3,2748.700 ,37.37610 ,-119.1783,RAWS , ,MOUNT TOM CA US , +MTZC1,3,904.3000 ,38.39000 ,-120.6525,RAWS , ,MOUNT ZION CA US , +MTHI1,3,914.4000 ,43.02830 ,-115.8700,RAWS , ,MOUNTAIN HOME ID US , +QLMA3,3,1671.200 ,33.71250 ,-109.7097,RAWS , ,MOUNTAIN LION AZ US , +MTQC1,3,1249.700 ,37.05420 ,-119.3711,RAWS , ,MOUNTAIN REST CA US , +MTSN2,3,1706.900 ,36.03060 ,-115.5167,RAWS , ,MOUNTAIN SPRINGS NV US , +MTNN5,3,1981.200 ,34.52080 ,-106.2628,RAWS , ,MOUNTAINAIR NM US , +SHCM6,3,7.600000 ,30.45280 ,-88.66170,RAWS , ,MS SANDHILL CRANE - FTS MS US , +TS629,3,15.20000 ,30.62390 ,-88.72530,RAWS , ,MS-MSR PORT#1 MS US , +MVAN6,3,609.6000 ,44.20000 ,-73.90000,RAWS , ,MT VANHOEVENBERG NY US , +MVVM7,3,385.9000 ,37.18890 ,-93.92970,RAWS , ,MT VERNON MO US , +MDAC1,3,1173.200 ,37.88170 ,-121.9142,RAWS , ,MT. DIABLO CA US , +MTIN7,3,152.4000 ,35.37890 ,-80.99250,RAWS , ,MT. ISLAND LAKE NC US , +MLGC1,3,1755.700 ,32.88110 ,-116.4289,RAWS , ,MT. LAGUNA CA US , +LGLA1,3,320.0000 ,33.71860 ,-85.76190,RAWS , ,MT. LONGLEAF AL US , +RHRS2,3,1645.900 ,43.87640 ,-103.4575,RAWS , ,MT. RUSHMORE SD US , +TS811,3,2626.200 ,33.81530 ,-116.6419,RAWS , ,MT. SAN JACINTO CA US , +MSAC1,3,1094.500 ,41.31560 ,-122.3156,RAWS , ,MT. SHASTA CA US , +WSFO3,3,1152.100 ,45.03970 ,-121.6736,RAWS , ,MT. WILSON OR US , +YNFO3,3,555.3000 ,43.63830 ,-123.3269,RAWS , ,MT. YONCALLA OR US , +MSRU1,3,1798.900 ,39.86140 ,-112.2436,RAWS , ,MUD SPRING UT US , +MUDW4,3,2124.500 ,41.40030 ,-110.5514,RAWS , ,MUDDY CREEK WY US , +TR201,3,623.0000 ,40.56920 ,-122.5031,RAWS , ,MULE MOUNTAIN CA US , +QMRA3,3,1389.900 ,32.40390 ,-110.2719,RAWS , ,MULESHOE RANCH AZ US , +MKBI1,3,1975.100 ,44.16000 ,-113.3808,RAWS , ,MULKEY BAR ID US , +PRKM4,3,235.0000 ,46.42580 ,-86.62000,RAWS , ,MUNISING MI US , +QMMA3,3,1652.000 ,35.61470 ,-113.7939,RAWS , ,MUSIC MOUNTAIN AZ US , +MMFO3,3,1249.700 ,44.92560 ,-121.1978,RAWS , ,MUTTON MOUNTAIN OR US , +NATL1,3,61.00000 ,31.49140 ,-93.19220,RAWS , ,NATCHITOCHES LA US , +NATW2,3,915.6000 ,39.19920 ,-78.79080,RAWS , ,NATHANIEL MOUNTAIN WV US , +TS607,3,3.000000 ,24.81000 ,-81.35000,RAWS , ,NATIONAL KEY DEER NWR FL US , +NATN7,3,16.80000 ,34.04830 ,-78.29030,RAWS , ,NATURE CONSERVANCY NC US , +TR992,3,4.600000 ,30.36640 ,-87.13750,RAWS , ,NAVAL LIVE OAKS FL US , +NCSW1,3,517.2000 ,48.42530 ,-120.1419,RAWS , ,NCSB WA US , +NSWI4,3,273.7000 ,41.56670 ,-93.25830,RAWS , ,NEAL SMITH IA US , +NEHW3,3,289.6000 ,44.02860 ,-90.08310,RAWS , ,NECEDAH WI US , +NCKC2,3,2741.100 ,38.38940 ,-106.5308,RAWS , ,NEEDLE CREEK CO US , +NMOS2,3,1415.500 ,44.19000 ,-103.5106,RAWS , ,NEMO SD US , +RNEM6,3,168.9000 ,32.72750 ,-89.09890,RAWS , ,NESHOBA MS US , +NEFW1,3,579.1000 ,48.13640 ,-118.9725,RAWS , ,NESPELEM WA US , +NBRN7,3,6.100000 ,35.09670 ,-77.11080,RAWS , ,NEW BERN NC US , +DEAN4,3,35.40000 ,40.40720 ,-74.49420,RAWS , ,NEW MIDDLESEX COUNTY NJ US , +NHPC1,3,650.7000 ,34.33690 ,-118.5203,RAWS , ,NEWHALL PASS CA US , +NNAG1,3,236.2000 ,33.36530 ,-84.85940,RAWS , ,NEWNAN GA US , +TS485,3,257.6000 ,36.15940 ,-92.46060,RAWS , ,NGPA PORTABLE AR US , +NINM8,3,995.8000 ,47.07080 ,-114.4022,RAWS , ,NINE MILE MT US , +NINR1,3,12.20000 ,41.38280 ,-71.58140,RAWS , ,NINIGRET RI US , +NCKA2,3,39.60000 ,60.04330 ,-151.6656,RAWS , ,NINILCHIK AK US , +QNFA3,3,1981.200 ,36.38830 ,-113.1581,RAWS , ,NIXON FLATS AZ US , +TR739,3,2408.500 ,36.59780 ,-106.9286,RAWS , ,NMJIA_PORT1 NM US , +KTZA2,3,300.2000 ,68.07080 ,-158.7042,RAWS , ,NOATAK AK US , +QNOA3,3,1501.100 ,32.66780 ,-109.7881,RAWS , ,NOON CREEK AZ US , +NBKO3,3,583.1000 ,43.35560 ,-123.1914,RAWS , ,NORTH BANK OR US , +NCVN7,3,780.3000 ,35.81670 ,-81.93720,RAWS , ,NORTH COVE PINNACLE (FR1) NC US , +NFRC1,3,811.7000 ,37.23310 ,-119.5056,RAWS , ,NORTH FORK CA US , +NFFI1,3,1920.200 ,43.79000 ,-114.4208,RAWS , ,NORTH FORK ID US , +NLPU1,3,2645.700 ,37.85470 ,-109.8389,RAWS , ,NORTH LONG POINT UT US , +NPFO3,3,1060.700 ,45.02750 ,-120.5361,RAWS , ,NORTH POLE RIDGE OR US , +NRUA2,3,243.8000 ,66.84860 ,-154.3417,RAWS , ,NORUTAK LAKE AK US , +NWYU1,3,2523.700 ,40.65170 ,-111.0519,RAWS , ,NORWAY UT US , +TS694,3,1461.200 ,40.63140 ,-103.8367,RAWS , ,NOVEMBER 01 CO US , +TR859,3,1622.500 ,41.18640 ,-120.0639,RAWS , ,NPS #11 (SNAKE LAKE) CA US , +TS688,3,1259.400 ,19.41830 ,-155.2903,RAWS , ,NPS #5 (WIDE HOLLOW) HI US , +BGBO3,3,388.6000 ,45.66810 ,-118.6458,RAWS , ,NPS #7 OR US , +NUCI1,3,1219.200 ,47.50690 ,-115.9411,RAWS , ,NUCKOLS ID US , +NUCC2,3,1786.100 ,38.23330 ,-108.5617,RAWS , ,NUCLA CO US , +NLHV1,3,379.5000 ,44.76720 ,-71.70140,RAWS , ,NULHEGAN VT US , +OFRH1,3,698.9000 ,21.49940 ,-157.9003,RAWS , ,OAHU FOREST NWR HI US , +OBRC1,3,433.4000 ,40.65060 ,-122.6056,RAWS , ,OAK BOTTOM CA US , +QOCA3,3,1464.300 ,34.94170 ,-111.7517,RAWS , ,OAK CREEK AZ US , +IDPC1,3,1493.500 ,36.84360 ,-118.2656,RAWS , ,OAK CREEK CA US , +TJRN5,3,2308.900 ,35.00610 ,-106.3156,RAWS , ,OAK FLATS NM US , +OGVC1,3,838.8000 ,33.38560 ,-116.7900,RAWS , ,OAK GROVE CA US , +OKNC1,3,591.3000 ,41.83860 ,-122.8503,RAWS , ,OAK KNOLL CA US , +OMTC1,3,813.8000 ,41.00640 ,-121.9833,RAWS , ,OAK MOUNTAIN CA US , +OORC1,3,938.8000 ,36.17530 ,-118.7017,RAWS , ,OAK OPENING CA US , +ONOC1,3,396.2000 ,37.86530 ,-122.2208,RAWS , ,OAKLAND NORTH CA US , +OKSC1,3,360.9000 ,37.78810 ,-122.1436,RAWS , ,OAKLAND SOUTH CA US , +OKMA1,3,110.6000 ,32.95720 ,-87.17060,RAWS , ,OAKMULGEE AL US , +OASF1,3,2.400000 ,25.85000 ,-81.03000,RAWS , ,OASIS FL US , +TS765,3,518.2000 ,33.04970 ,-113.1386,RAWS , ,OATMAN AZ US , +OCOF1,3,2.100000 ,25.91670 ,-81.28330,RAWS , ,OCHOPEE RAWS FL US , +TS810,3,0.300000 ,35.14170 ,-84.60000,RAWS , ,OCOEE TN US , +ONFG1,3,145.1000 ,33.20830 ,-83.71360,RAWS , ,OCONEE #1 GA US , +ODEA4,3,273.1000 ,34.62420 ,-93.80610,RAWS , ,ODEN AR US , +OHAW1,3,594.4000 ,46.73140 ,-121.5711,RAWS , ,OHANAPECOSH WA US , +OHOI1,3,1895.900 ,43.60080 ,-114.3158,RAWS , ,OHIO GULCH ID US , +OJIC1,3,233.2000 ,34.44830 ,-119.2303,RAWS , ,OJAI CA US , +OJIM4,3,345.3000 ,48.10860 ,-88.54670,RAWS , ,OJIBWAY MI US , +TS818,3,21.00000 ,30.74030 ,-82.12780,RAWS , ,OKE-EAST GA US , +OKLA2,3,483.7000 ,64.02170 ,-146.2522,RAWS , ,OKLAHOMA AK US , +QOKA3,3,883.9000 ,36.50720 ,-113.8161,RAWS , ,OLAF KNOLLS AZ US , +TS783,3,586.4000 ,41.56440 ,-77.40860,RAWS , ,OLD MOUNTAIN PA US , +OVYC1,3,11.30000 ,38.04250 ,-122.7958,RAWS , ,OLEMA VALLEY CA US , +OLSF1,3,53.30000 ,30.25140 ,-82.42080,RAWS , ,OLUSTEE FL US , +OPLC1,3,987.6000 ,35.15420 ,-117.1756,RAWS , ,OPAL MOUNTAIN CA US , +OPNA1,3,83.80000 ,31.09440 ,-86.54860,RAWS , ,OPNPND AL US , +ORWN2,3,1249.700 ,37.23390 ,-117.4956,RAWS , ,ORIENTAL WASH NV US , +OVLW1,3,414.5000 ,48.96310 ,-119.4917,RAWS , ,OROVILLE WA US , +ORBM5,3,403.9000 ,48.01890 ,-92.85720,RAWS , ,ORR MN US , +OCFW1,3,777.2000 ,46.35830 ,-121.5967,RAWS , ,ORR CREEK WA US , +TS517,3,490.4000 ,44.77810 ,-121.2506,RAWS , ,ORWSA_PORT1 OR US , +OSCM8,3,1086.600 ,47.32830 ,-108.9250,RAWS , ,OSCAR MT US , +OTOW1,3,260.6000 ,46.88140 ,-119.3242,RAWS , ,OTHELLO WA US , +OTRU1,3,2182.400 ,41.75330 ,-111.2806,RAWS , ,OTTER CREEK UT US , +OWNC1,3,1597.200 ,38.73330 ,-120.2450,RAWS , ,OWENS CAMP CA US , +OVRC1,3,1417.300 ,37.39110 ,-118.5525,RAWS , ,OWENS VALLEY CA US , +OMFW1,3,1085.100 ,48.93530 ,-118.2972,RAWS , ,OWL MOUNTAIN WA US , +OWFO3,3,1341.100 ,43.51780 ,-117.2397,RAWS , ,OWYHEE RIDGE OR US , +OZNC1,3,1178.100 ,34.68190 ,-119.3539,RAWS , ,OZENA CA US , +FGFO3,3,1481.300 ,42.82330 ,-118.9353,RAWS , ,P HILL OR US , +MPAN5,3,1069.900 ,32.17970 ,-103.7217,RAWS , ,PADUCA NM US , +PCKT2,3,565.1000 ,31.90610 ,-100.5817,RAWS , ,PAINT CREEK TX US , +TS428,3,829.4000 ,46.89500 ,-103.3778,RAWS , ,PAINTED CANYON ND US , +APLT2,3,115.8000 ,31.74250 ,-95.57170,RAWS , ,PALESTINE TX US , +PLIH1,3,855.9000 ,19.31750 ,-155.2922,RAWS , ,PALI2 HI US , +PAMC1,3,1685.500 ,33.35170 ,-116.8617,RAWS , ,PALOMAR CA US , +INTC1,3,2097.000 ,36.12030 ,-117.0878,RAWS , ,PANAMINT CA US , +PANN2,3,1585.000 ,38.30310 ,-116.1933,RAWS , ,PANCAKE NV US , +PCEC1,3,152.4000 ,36.63000 ,-120.6383,RAWS , ,PANOCHE ROAD CA US , +TS786,3,4.600000 ,26.16860 ,-81.36440,RAWS , ,PANTHER EAST FL US , +PJNT2,3,1143.000 ,29.32750 ,-103.2075,RAWS , ,PANTHER JUNCTION TX US , +TS787,3,4.600000 ,26.17170 ,-81.47890,RAWS , ,PANTHER WEST FL US , +PRDM8,3,1392.900 ,47.26720 ,-114.9189,RAWS , ,PARDEE MT US , +PEEW3,3,249.9000 ,43.56670 ,-89.31670,RAWS , ,PARDEEVILLE WI US , +QPPA3,3,2205.200 ,36.72780 ,-111.8219,RAWS , ,PARIA POINT AZ US , +PRGC1,3,2298.200 ,36.72420 ,-118.9425,RAWS , ,PARK RIDGE CA US , +ARFO3,3,1609.300 ,42.10580 ,-122.2781,RAWS , ,PARKER MOUNTAIN OR US , +PKFC1,3,459.3000 ,35.89830 ,-120.4325,RAWS , ,PARKFIELD CA US , +PAFO3,3,661.4000 ,45.32190 ,-120.9292,RAWS , ,PATJENS OR US , +PMCC1,3,1066.800 ,40.28830 ,-122.8717,RAWS , ,PATTYMOCUS CA US , +PXKA2,3,813.8000 ,62.94530 ,-145.5014,RAWS , ,PAXSON AK US , +TR251,3,1610.900 ,45.04530 ,-116.6397,RAWS , ,PAYETTE PORTABLE #1 ID US , +TS395,3,1859.000 ,44.56500 ,-116.2119,RAWS , ,PAYETTE PORTABLE #3 ID US , +QPAA3,3,1516.400 ,34.24310 ,-111.3028,RAWS , ,PAYSON AZ US , +CHTK2,3,446.5000 ,37.13810 ,-83.57970,RAWS , ,PEABODY KY US , +PSAT2,3,160.0000 ,28.88500 ,-99.11060,RAWS , ,PEARSALL TX US , +PEFO3,3,1051.600 ,44.23670 ,-121.9950,RAWS , ,PEBBLE OR US , +LVPN5,3,2499.400 ,35.54580 ,-105.4944,RAWS , ,PECOS NM US , +PIEM4,3,231.6000 ,46.77970 ,-88.66310,RAWS , ,PELKIE MI US , +DPRN5,3,2462.800 ,33.69250 ,-108.0631,RAWS , ,PELONA MOUNTAIN NM US , +PEFW1,3,1225.300 ,47.15220 ,-120.9467,RAWS , ,PEOH POINT WA US , +PEOW1,3,1159.500 ,48.60310 ,-119.2164,RAWS , ,PEONY WA US , +PEPC1,3,2251.000 ,36.07330 ,-118.5414,RAWS , ,PEPPERMINT CA US , +FAFA2,3,615.1000 ,59.11080 ,-154.8367,RAWS , ,PFAFF MINE AK US , +PLPW3,3,539.5000 ,46.04000 ,-89.09610,RAWS , ,PHELPS WI US , +PHGM8,3,1609.300 ,46.31670 ,-113.3000,RAWS , ,PHILLIPSBURG MT US , +TS743,3,420.0000 ,33.68170 ,-112.0808,RAWS , ,PHOENIX PORTABLE AZ US , +PKLC2,3,2859.000 ,39.84440 ,-105.5172,RAWS , ,PICKLE GULCH CO US , +PIEI1,3,940.3000 ,46.50000 ,-115.8333,RAWS , ,PIERCE ID US , +PIEC1,3,1771.200 ,40.24610 ,-120.6422,RAWS , ,PIERCE CA US , +MPAM6,3,111.6000 ,31.18690 ,-90.47810,RAWS , ,PIKE MS US , +PKCC1,3,1132.000 ,39.47500 ,-121.2025,RAWS , ,PIKE COUNTY LOOKOUT CA US , +PLTC1,3,380.7000 ,38.83170 ,-121.0092,RAWS , ,PILOT HILL CA US , +PNFI1,3,1645.900 ,44.25030 ,-116.1986,RAWS , ,PINE CREEK ID US , +PNHM8,3,807.4000 ,46.77580 ,-104.5797,RAWS , ,PINE HILL MT US , +PIHC1,3,1097.300 ,33.01640 ,-116.6344,RAWS , ,PINE HILLS CA US , +PNRC2,3,2011.700 ,39.26030 ,-108.4072,RAWS , ,PINE RIDGE CO US , +PHRC1,3,1237.500 ,36.69720 ,-119.0181,RAWS , ,PINEHURST CA US , +PSGT2,3,1640.100 ,31.89440 ,-104.7978,RAWS , ,PINERY TX US , +QPHA3,3,2469.500 ,35.76110 ,-109.1675,RAWS , ,PINEY HILL AZ US , +CCEC2,3,1652.600 ,37.54280 ,-104.0319,RAWS , ,PINION CANYON CO US , +PINS2,3,938.8000 ,43.88060 ,-102.2378,RAWS , ,PINNACLES SD US , +PCLC1,3,402.9000 ,36.47080 ,-121.1472,RAWS , ,PINNACLES CA US , +PIRC2,3,2042.200 ,40.02080 ,-108.3981,RAWS , ,PINTO CO US , +PYNC1,3,1237.500 ,33.57780 ,-116.4539,RAWS , ,PINYON CA US , +PIRW2,3,830.6000 ,37.52640 ,-80.99920,RAWS , ,PIPESTEM WV US , +PPRC1,3,187.1000 ,34.40440 ,-118.8100,RAWS , ,PIRU CA US , +PSTM8,3,1524.000 ,47.21670 ,-114.0167,RAWS , ,PISTOL CREEK MT US , +PLFI1,3,413.6000 ,45.63750 ,-116.4686,RAWS , ,PITTSBURG LANDING ID US , +PIVC1,3,1962.900 ,35.44560 ,-118.2789,RAWS , ,PIUTES CA US , +PLAM8,3,731.5000 ,47.45000 ,-114.8667,RAWS , ,PLAINS MT US , +PLAG1,3,160.3000 ,32.11060 ,-84.18420,RAWS , ,PLAINS/SUMTER GA US , +PGRU1,3,1585.000 ,40.43110 ,-111.7500,RAWS , ,PLEASANT GROVE UT US , +QPVA3,3,1539.200 ,34.09330 ,-110.9333,RAWS , ,PLEASANT VALLEY AZ US , +BKWC1,3,1898.300 ,39.93420 ,-120.5511,RAWS , ,PNF12 PORTABLE CA US , +TR999,3,1703.800 ,39.91530 ,-120.3897,RAWS , ,PNF13 PORTABLE CA US , +TR323,3,1371.600 ,39.83330 ,-120.6806,RAWS , ,PNF14 PORTABLE CA US , +TR180,3,1253.000 ,39.98330 ,-121.0006,RAWS , ,PNF21 PORTABLE CA US , +TR168,3,1928.800 ,40.13830 ,-120.7450,RAWS , ,PNF22 PORTABLE CA US , +TR181,3,1645.900 ,39.85030 ,-121.0686,RAWS , ,PNF23 PORTABLE CA US , +TS586,3,1082.000 ,39.69140 ,-121.3392,RAWS , ,PNF33 PORTABLE CA US , +TS587,3,731.5000 ,39.82500 ,-121.6111,RAWS , ,PNF34 PORTABLE CA US , +POCN7,3,1.800000 ,35.74690 ,-76.51080,RAWS , ,POCOSIN LAKES NC US , +LPSA4,3,102.1000 ,35.53280 ,-90.68530,RAWS , ,POINSETT AR US , +PNTM8,3,2416.800 ,47.04560 ,-113.9875,RAWS , ,POINT 6 MT US , +PCRW4,3,1962.900 ,43.56940 ,-106.9783,RAWS , ,POKER CREEK WY US , +PCNI1,3,2042.200 ,42.89890 ,-111.8331,RAWS , ,POLE CANYON ID US , +PCKI1,3,1725.200 ,42.06940 ,-115.7861,RAWS , ,POLE CREEK ID US , +POEM8,3,1097.300 ,48.80140 ,-114.2800,RAWS , ,POLEBRIDGE MT US , +POLC2,3,2646.600 ,39.25470 ,-105.1319,RAWS , ,POLHEMUS CO US , +PYFO3,3,1011.900 ,45.45860 ,-121.4464,RAWS , ,POLLYWOG OR US , +PMNA2,3,285.0000 ,64.10500 ,-155.5583,RAWS , ,POORMAN AK US , +POPM8,3,738.5000 ,48.12690 ,-105.0731,RAWS , ,POPLAR MT US , +PPPC1,3,841.2000 ,34.73250 ,-118.3833,RAWS , ,POPPY PARK CA US , +PRGS2,3,1154.000 ,43.28940 ,-102.2711,RAWS , ,PORCUPINE SD US , +PCPC2,3,2725.200 ,40.09810 ,-106.6806,RAWS , ,PORCUPINE CR. CO US , +PHYM8,3,2509.100 ,46.83530 ,-110.7175,RAWS , ,PORPHYRY MT US , +ALSA2,3,97.80000 ,60.19580 ,-154.3200,RAWS , ,PORT ALSWORTH AK US , +PKLT2,3,281.9000 ,32.85000 ,-98.55000,RAWS , ,POSSUM KINGDOM TX US , +TS790,3,335.3000 ,39.34310 ,-95.85390,RAWS , ,POTAWATOMI KS US , +POTC1,3,716.3000 ,32.60610 ,-116.6081,RAWS , ,POTRERO CA US , +PBUI1,3,1502.700 ,43.22610 ,-113.5744,RAWS , ,POTTER BUTTE ID US , +MIPC1,3,629.7000 ,37.44310 ,-121.7706,RAWS , ,POVERTY CA US , +SVFI1,3,1039.100 ,46.51220 ,-114.6881,RAWS , ,POWELL ID US , +TS530,3,4.900000 ,38.35000 ,-75.41670,RAWS , ,POWELLVILLE MD US , +PCFT1,3,585.2000 ,35.13030 ,-85.42780,RAWS , ,PRENTICE COOPER SF TN US , +PLKI1,3,792.5000 ,48.57500 ,-116.9636,RAWS , ,PRIEST LAKE ID US , +PRID1,3,4.600000 ,38.83000 ,-75.24810,RAWS , ,PRIME HOOK DE US , +QPRA3,3,2377.400 ,34.36940 ,-111.0250,RAWS , ,PROMONTORY AZ US , +PRFO3,3,359.7000 ,42.29030 ,-123.2333,RAWS , ,PROVOLT SEED ORCHARD OR US , +PMRM8,3,2015.300 ,45.33750 ,-108.4908,RAWS , ,PRYOR MOUNTAIN MT US , +TR206,3,2301.200 ,39.31920 ,-105.2411,RAWS , ,PSF1 SOUTH PLATTE 555 CO US , +SIDC2,3,2931.900 ,38.78560 ,-105.9569,RAWS , ,PSF2 SALIDA 555 CO US , +TR563,3,2728.300 ,38.93280 ,-105.3667,RAWS , ,PSF4 555 CO US , +PMZA2,3,61.00000 ,61.42250 ,-150.0914,RAWS , ,PT MAC AK US , +PKAH1,3,1641.400 ,19.66690 ,-155.7078,RAWS , ,PTA KIPUKA ALALA HI US , +PTPH1,3,1755.700 ,19.74560 ,-155.6272,RAWS , ,PTA PORTABLE HI US , +PTRH1,3,1734.300 ,19.74580 ,-155.6261,RAWS , ,PTA RANGE 17 HI US , +PKWH1,3,1307.600 ,19.77170 ,-155.7022,RAWS , ,PTA WEST HI US , +TS769,3,1026.000 ,19.90220 ,-155.6786,RAWS , ,PTA_KEAMUKU HI US , +PUGC1,3,196.3000 ,37.47500 ,-122.2981,RAWS , ,PULGAS CA US , +PWWH1,3,709.0000 ,19.79500 ,-155.8453,RAWS , ,PUU WAAWAA HI US , +QADW4,3,2415.500 ,44.92750 ,-110.9914,RAWS , ,QUADRANT WY US , +QPFO3,3,970.2000 ,42.24220 ,-124.0453,RAWS , ,QUAIL PRAIRIE LOOKOUT OR US , +QTRP1,3,801.6000 ,40.13110 ,-79.21610,RAWS , ,QUARRY TRAIL PA US , +QRZA2,3,130.1000 ,65.40000 ,-164.6500,RAWS , ,QUARTZ CREEK AK US , +QTZC1,3,1291.700 ,41.59970 ,-122.9328,RAWS , ,QUARTZ HILL CA US , +QENN5,3,1708.400 ,32.20360 ,-104.6903,RAWS , ,QUEEN NM US , +QCNW1,3,18.90000 ,47.82310 ,-122.8831,RAWS , ,QUILCENE WA US , +TS701,3,2433.500 ,38.48670 ,-117.0950,RAWS , ,QUIMA PEAK NV US , +QYRC1,3,1113.100 ,39.97330 ,-120.9419,RAWS , ,QUINCY RD CA US , +TS096,3,1691.600 ,41.09080 ,-123.1283,RAWS , ,R503 PORTABLE CA US , +RBTA2,3,451.1000 ,61.08440 ,-149.7283,RAWS , ,RABBIT CREEK AK US , +RACF1,3,2.100000 ,25.98170 ,-80.90440,RAWS , ,RACCOON POINT RAWS FL US , +RCWM1,3,6.100000 ,43.27920 ,-70.59000,RAWS , ,RACHEL CARSON - FTS ME US , +RACM4,3,228.6000 ,46.35810 ,-84.80390,RAWS , ,RACO MI US , +RFTI1,3,1341.100 ,42.54780 ,-113.2594,RAWS , ,RAFT RIVER ID US , +TS747,3,545.6000 ,40.56890 ,-98.17000,RAWS , ,RAINWATER BASIN NE US , +TS342,3,2145.200 ,34.99470 ,-108.4128,RAWS , ,RAMAH NM US , +RCHC1,3,1345.700 ,33.22220 ,-116.4975,RAWS , ,RANCHITA CA US , +RANM4,3,382.5000 ,46.00000 ,-88.06000,RAWS , ,RANDVILLE MI US , +RASW4,3,2682.200 ,43.47220 ,-110.0183,RAWS , ,RASPBERRY WY US , +RTCT2,3,132.3000 ,31.39500 ,-95.13890,RAWS , ,RATCLIFF TX US , +RATW4,3,2568.200 ,44.57390 ,-109.2614,RAWS , ,RATTLESNAKE MTN. WY US , +TS712,3,396.2000 ,36.47560 ,-80.85690,RAWS , ,RAVEN KNOB (SURRY CTY) NC US , +RVDC1,3,1614.800 ,40.73080 ,-120.3164,RAWS , ,RAVENDALE CA US , +RVZU1,3,2225.000 ,40.11780 ,-111.2747,RAWS , ,RAY'S VALLEY UT US , +RRRC1,3,617.2000 ,39.30360 ,-121.1172,RAWS , ,READER RANCH CA US , +RXFO3,3,990.6000 ,45.02750 ,-121.9211,RAWS , ,RED BOX OR US , +RTFO3,3,1359.400 ,43.53610 ,-117.8347,RAWS , ,RED BUTTE OR US , +RBTN2,3,1539.200 ,39.98940 ,-117.3197,RAWS , ,RED BUTTE NV US , +RDCS2,3,1415.500 ,43.42580 ,-103.7589,RAWS , ,RED CANYON SD US , +RDDC2,3,1793.100 ,38.20720 ,-104.9978,RAWS , ,RED CREEK CO US , +RDKC2,3,2660.000 ,38.82720 ,-106.2117,RAWS , ,RED DEER CO US , +QRLA3,3,1889.800 ,34.18140 ,-110.7892,RAWS , ,RED LAKE AZ US , +RMFO3,3,534.3000 ,42.12330 ,-124.3003,RAWS , ,RED MOUND OR US , +RRFI1,3,1402.100 ,45.71250 ,-115.3375,RAWS , ,RED RIVER ID US , +RRDM8,3,2039.100 ,44.68330 ,-111.8333,RAWS , ,RED ROCK MT US , +RRKN2,3,1144.800 ,36.13470 ,-115.4300,RAWS , ,RED ROCK NV US , +RSRU1,3,2704.200 ,41.63170 ,-111.4111,RAWS , ,RED SPUR UT US , +REDD1,3,15.20000 ,38.74170 ,-75.41530,RAWS , ,REDDEN DE US , +RRAC1,3,152.4000 ,40.51580 ,-122.2906,RAWS , ,REDDING CA US , +RFRC2,3,2503.600 ,40.79810 ,-105.5722,RAWS , ,REDFEATHER CO US , +TS767,3,506.0000 ,44.03330 ,-96.26670,RAWS , ,REDSTN MN US , +RSOC2,3,1877.600 ,40.57080 ,-105.2269,RAWS , ,REDSTONE CO US , +RVZN7,3,726.6000 ,36.22750 ,-81.29750,RAWS , ,RENDEZVOUS MTN. NC US , +RENA2,3,929.6000 ,62.71000 ,-146.6181,RAWS , ,RENEE AK US , +REXM4,3,262.7000 ,46.15940 ,-85.26720,RAWS , ,REXTON MI US , +RLKM5,3,361.2000 ,46.53720 ,-93.28750,RAWS , ,RICE LAKE NWR MN US , +RVYC1,3,249.9000 ,34.06080 ,-114.7322,RAWS , ,RICE VALLEY CA US , +RLFO3,3,1936.100 ,43.10060 ,-118.4981,RAWS , ,RIDDLE MTN. OR US , +RFEC2,3,1865.400 ,39.51220 ,-107.7492,RAWS , ,RIFLE CO US , +QHVA3,3,2511.600 ,32.20560 ,-110.5481,RAWS , ,RINCON AZ US , +RINN4,3,172.8000 ,41.11810 ,-74.24030,RAWS , ,RINGWOOD NJ US , +KRNC1,3,917.4000 ,35.77750 ,-118.4328,RAWS , ,RIVERKERN CA US , +TS558,3,1464.300 ,34.91420 ,-111.7244,RAWS , ,RO FTS RESEARCH MOVABLE AZ US , +TR499,3,1589.500 ,31.95720 ,-104.7769,RAWS , ,RO PORTABLE #2 TX US , +TR486,3,1671.200 ,31.45310 ,-108.9928,RAWS , ,RO PORTABLE #3 NM US , +TS545,3,1371.600 ,33.86810 ,-111.3133,RAWS , ,RO VAISALA RESEARCH MOVE AZ US , +RDKI1,3,2560.300 ,44.16360 ,-114.0097,RAWS , ,ROAD CREEK ID US , +BTFO3,3,1299.400 ,45.68170 ,-117.2064,RAWS , ,ROBERTS BUTTE OR US , +QRTA3,3,1694.700 ,36.47750 ,-112.8419,RAWS , ,ROBINSON TANK AZ US , +RHKW4,3,1584.700 ,43.55060 ,-105.0922,RAWS , ,ROCHELLE HILLS WY US , +RCPC1,3,1493.500 ,34.28810 ,-117.2125,RAWS , ,ROCK CAMP CA US , +RCEC1,3,2145.800 ,37.55140 ,-118.6672,RAWS , ,ROCK CREEK CA US , +RCRO3,3,1719.100 ,42.54750 ,-119.6564,RAWS , ,ROCK CREEK OR US , +ROCI1,3,1298.500 ,42.97170 ,-114.0631,RAWS , ,ROCK LAKE ID US , +RSCN2,3,1645.900 ,41.64310 ,-114.4375,RAWS , ,ROCK SPRING CREEK NV US , +RKHO3,3,547.7000 ,44.92500 ,-123.4694,RAWS , ,ROCKHOUSE 1 OR US , +RKGN7,3,121.9000 ,34.96000 ,-79.69000,RAWS , ,ROCKINGHAM NC US , +RCBM8,3,1158.200 ,48.25500 ,-109.7836,RAWS , ,ROCKY BOY MT US , +RMFN7,3,32.00000 ,35.97310 ,-77.79860,RAWS , ,ROCKY MOUNT NC US , +RDVC1,3,739.1000 ,39.66830 ,-123.3200,RAWS , ,RODEO VALLEY CA US , +NKAW3,3,266.1000 ,44.25670 ,-89.81000,RAWS , ,ROME (SARATOGA) WI US , +RONM8,3,932.7000 ,47.56720 ,-114.0847,RAWS , ,RONAN MT US , +QRSA3,3,664.5000 ,33.65500 ,-111.1333,RAWS , ,ROOSEVELT AZ US , +RSPC1,3,932.7000 ,37.50190 ,-121.7356,RAWS , ,ROSE PEAK CA US , +ROVC1,3,1015.300 ,34.54330 ,-119.1842,RAWS , ,ROSE VALLEY CA US , +RNRM5,3,319.1000 ,48.85000 ,-95.69920,RAWS , ,ROSEAU MN US , +RSBU1,3,1520.000 ,41.60940 ,-113.5914,RAWS , ,ROSEBUD UT US , +TR724,3,1088.700 ,33.39470 ,-104.4511,RAWS , ,ROSWELL #1 PORTABLE NM US , +TR931,3,1088.700 ,33.39470 ,-104.4511,RAWS , ,ROSWELL #2 PORTABLE NM US , +RNDA2,3,173.7000 ,64.68470 ,-153.9400,RAWS , ,ROUND LAKE AK US , +RNDC1,3,1602.600 ,41.42720 ,-121.4639,RAWS , ,ROUND MOUNTAIN CA US , +RNFO3,3,1798.300 ,43.76640 ,-121.7225,RAWS , ,ROUND MOUNTAIN OR US , +RPRT2,3,100.3000 ,31.29560 ,-96.36560,RAWS , ,ROUND PRAIRIE TX US , +RLKN2,3,1819.700 ,40.17310 ,-115.4856,RAWS , ,RUBY LAKE NV US , +RBVN2,3,2103.100 ,40.72810 ,-115.2456,RAWS , ,RUBY VALLEY NV US , +QRCA3,3,1737.400 ,31.76110 ,-109.3486,RAWS , ,RUCKER AZ US , +RYDM4,3,213.4000 ,46.24080 ,-84.51110,RAWS , ,RUDYARD MI US , +RSHC1,3,1463.000 ,41.28810 ,-120.8686,RAWS , ,RUSH CREEK CA US , +RLKC1,3,832.7000 ,40.25060 ,-123.3158,RAWS , ,RUTH CA US , +RUGA2,3,1005.800 ,62.71000 ,-150.5397,RAWS , ,RUTH GLACIER AK US , +RUTN7,3,321.9000 ,35.42860 ,-81.93940,RAWS , ,RUTHERFORD COUNTY NC US , +BDFO3,3,609.6000 ,45.21720 ,-123.5356,RAWS , ,RYE MOUNTAIN OR US , +DRKT2,3,44.20000 ,31.70420 ,-93.90970,RAWS , ,SABINE NORTH TX US , +SSRT2,3,44.20000 ,31.28030 ,-93.83860,RAWS , ,SABINE SOUTH TX US , +NWRC1,3,36.60000 ,39.41720 ,-122.1825,RAWS , ,SAC NWR CA US , +TS526,3,29.00000 ,39.44610 ,-122.1839,RAWS , ,SAC NWR QD CA US , +SDMW1,3,198.1000 ,46.69440 ,-119.6936,RAWS , ,SADDLE MOUNTAIN WA US , +SADI1,3,1560.600 ,48.94170 ,-116.7292,RAWS , ,SADDLE PASS ID US , +SLEC1,3,2033.000 ,39.63750 ,-120.8653,RAWS , ,SADDLEBACK CA US , +SDLC1,3,789.4000 ,34.68470 ,-117.8208,RAWS , ,SADDLEBACK BUTTE CA US , +TS640,3,977.8000 ,32.65330 ,-109.3381,RAWS , ,SAFFORD RAWS AZ US , +SHFO3,3,1341.100 ,43.51530 ,-119.2925,RAWS , ,SAGE HEN OR US , +SNWM5,3,405.4000 ,46.84360 ,-92.46170,RAWS , ,SAGINAW MN US , +QSGA3,3,944.9000 ,32.31670 ,-110.8133,RAWS , ,SAGUARO AZ US , +SLRA2,3,304.8000 ,64.59000 ,-146.1400,RAWS , ,SALCHA AK US , +SMYI1,3,1554.500 ,45.15000 ,-113.9453,RAWS , ,SALMON ID US , +SMTA2,3,673.6000 ,66.81250 ,-141.6200,RAWS , ,SALMON TROUT AK US , +SLTO3,3,1258.800 ,44.04670 ,-120.6694,RAWS , ,SALT CREEK-PRINVILLE OR US , +SAWC2,3,2499.700 ,37.65110 ,-108.5369,RAWS , ,SALTER CO US , +SNDN5,3,1870.900 ,32.58000 ,-106.5250,RAWS , ,SAN ANDRES NM US , +SRDT2,3,6.400000 ,28.86470 ,-95.56780,RAWS , ,SAN BERNARD TX US , +QSCA3,3,865.6000 ,33.37140 ,-110.4553,RAWS , ,SAN CARLOS #1 AZ US , +SCNC1,3,285.0000 ,32.84000 ,-118.3875,RAWS , ,SAN CLEMENTE ISLAND CA US , +SLWC1,3,19.80000 ,37.18220 ,-120.7939,RAWS , ,SAN LUIS NWR CA US , +TS623,3,21.30000 ,37.06640 ,-120.8039,RAWS , ,SAN LUIS PORTABLE CA US , +MIGC1,3,129.5000 ,32.68500 ,-116.9736,RAWS , ,SAN MIGUEL CA US , +SRXC1,3,539.5000 ,34.19420 ,-118.2125,RAWS , ,SAN RAFAEL HILLS CA US , +SPKC2,3,2417.100 ,38.19220 ,-108.2169,RAWS , ,SANBORN PARK CO US , +AMDN8,3,823.0000 ,46.54610 ,-103.5186,RAWS , ,SAND CREEK ND US , +SDNC2,3,2537.200 ,37.72670 ,-105.5108,RAWS , ,SAND DUNES CO US , +LLKS2,3,618.7000 ,45.87780 ,-99.41080,RAWS , ,SAND LAKE SD US , +SNDF1,3,15.20000 ,30.07030 ,-84.59190,RAWS , ,SANDBORN FL US , +SNLN5,3,1524.000 ,35.23000 ,-106.5906,RAWS , ,SANDIA LAKES NM US , +SDVC2,3,2588.100 ,37.09940 ,-107.3028,RAWS , ,SANDOVAL MESA CO US , +CLJN7,3,45.70000 ,34.61190 ,-77.48750,RAWS , ,SANDY RUN NC US , +RJSC1,3,205.7000 ,37.39830 ,-121.8069,RAWS , ,SANJOSE CA US , +LWRT2,3,27.40000 ,26.07860 ,-98.15720,RAWS , ,SANTA ANA NWR TX US , +SBIC1,3,109.7000 ,33.48330 ,-119.0333,RAWS , ,SANTA BARBARA CA US , +SNCC1,3,76.20000 ,33.99580 ,-119.7222,RAWS , ,SANTA CRUZ ISLAND CA US , +STFC1,3,152.4000 ,34.12080 ,-117.9458,RAWS , ,SANTA FE DAM CA US , +SFWN5,3,2339.000 ,35.68690 ,-105.8603,RAWS , ,SANTA FE WATERSHED NM US , +SRTC1,3,1524.000 ,36.34780 ,-120.5978,RAWS , ,SANTA RITA CA US , +RSAC1,3,170.7000 ,38.47890 ,-122.7119,RAWS , ,SANTA ROSA CA US , +SRIC1,3,395.6000 ,33.97780 ,-120.0778,RAWS , ,SANTA ROSA ISLAND CA US , +SRUC1,3,605.6000 ,33.51810 ,-117.2292,RAWS , ,SANTA ROSA PLATEAU CA US , +SPLS1,3,23.80000 ,33.55750 ,-80.44140,RAWS , ,SANTEE NWR SC US , +SHPN6,3,103.6000 ,43.00780 ,-73.65110,RAWS , ,SARA NY US , +QSBA3,3,1066.800 ,31.69080 ,-111.4500,RAWS , ,SASABE AZ US , +SAUC1,3,442.0000 ,34.42500 ,-118.5250,RAWS , ,SAUGUS CA US , +SVNS1,3,3.000000 ,32.10000 ,-81.08330,RAWS , ,SAVANNAH NWR GA US , +SRSS1,3,94.50000 ,33.36220 ,-81.68360,RAWS , ,SAVRAW SC US , +SRVS1,3,118.9000 ,33.33310 ,-81.59170,RAWS , ,SAVRIV SC US , +MEFW1,3,914.4000 ,46.96750 ,-121.0844,RAWS , ,SAWMILL FLATS WA US , +SAWW4,3,2767.000 ,41.07420 ,-106.1311,RAWS , ,SAWMILL PARK WY US , +CROV2,3,634.0000 ,38.10000 ,-78.78470,RAWS , ,SAWMILL RIDGE VA US , +SWBC1,3,668.1000 ,41.30110 ,-123.1297,RAWS , ,SAWYERS BAR CA US , +TS638,3,202.7000 ,34.72190 ,-120.0822,RAWS , ,SBC PORTABLE 1 CA US , +SCBH1,3,298.7000 ,21.49500 ,-158.0819,RAWS , ,SCHOFIELD BARRACKS HI US , +SFBH1,3,346.9000 ,21.50970 ,-158.0828,RAWS , ,SCHOFIELD FIREBREAK HI US , +TS768,3,453.8000 ,21.48000 ,-158.1072,RAWS , ,SCHOFIELDSOUTHRANGE HI US , +SPKW4,3,2622.500 ,44.30640 ,-106.9819,RAWS , ,SCHOOL HOUSE WY US , +SHUC1,3,804.7000 ,41.13830 ,-123.9056,RAWS , ,SCHOOLHOUSE CA US , +SRON6,3,249.9000 ,43.80000 ,-73.70000,RAWS , ,SCHROON LAKE NY US , +SFAN6,3,198.1000 ,44.60000 ,-73.60000,RAWS , ,SCHUYLER FALLS NY US , +CFCC1,3,1341.100 ,41.11170 ,-122.6967,RAWS , ,SCORPION CA US , +SBFN1,3,1287.500 ,41.82940 ,-103.7081,RAWS , ,SCOTTS BLUFF NE US , +QSLA3,3,2302.500 ,32.39810 ,-110.7250,RAWS , ,SCOUT CAMP AZ US , +SCTI1,3,1985.800 ,42.69830 ,-112.3564,RAWS , ,SCOUT MOUNTAIN ID US , +SEAM5,3,435.9000 ,48.12030 ,-90.83860,RAWS , ,SEAGULL MN US , +SETC1,3,861.4000 ,39.18360 ,-120.8847,RAWS , ,SECRET TOWN CA US , +PIFW1,3,1310.600 ,46.49500 ,-121.0133,RAWS , ,SEDGE RIDGE WA US , +FSHC1,3,1327.400 ,39.09140 ,-120.7317,RAWS , ,SEEDORCHARD CA US , +SEEM8,3,1290.800 ,47.18280 ,-113.4472,RAWS , ,SEELEY LAKE MT US , +SWKA2,3,32.00000 ,66.60330 ,-159.1125,RAWS , ,SELAWIK AK US , +SDFO3,3,1485.900 ,42.40750 ,-122.1914,RAWS , ,SELDOM CREEK OR US , +QSEA3,3,689.5000 ,31.91000 ,-111.8975,RAWS , ,SELLS AZ US , +SNYM4,3,274.3000 ,46.24030 ,-85.94280,RAWS , ,SENEY MI US , +SMIA2,3,250.9000 ,65.93830 ,-149.8550,RAWS , ,SEVEN MILE AK US , +SMCO3,3,133.5000 ,43.21000 ,-124.3175,RAWS , ,SEVEN MILE CREEK OR US , +SBWU1,3,1636.500 ,39.32940 ,-112.0514,RAWS , ,SEVIER RESERVOIR UT US , +SEVN5,3,1459.700 ,34.37690 ,-106.7978,RAWS , ,SEVILLETA NM US , +SHQC1,3,1328.900 ,36.56690 ,-118.9569,RAWS , ,SHADEQUARTER CA US , +TS814,3,1689.500 ,34.40580 ,-111.2831,RAWS , ,SHADOW RIM AZ US , +SHVC1,3,1711.200 ,37.13690 ,-119.2606,RAWS , ,SHAVER CA US , +TS732,3,325.5000 ,38.69500 ,-83.19690,RAWS , ,SHAWNEE OH US , +TS796,3,96.60000 ,37.42140 ,-88.89170,RAWS , ,SHAWNEE PORTABLE #1 IL US , +SGOM8,3,1636.800 ,45.45110 ,-111.2189,RAWS , ,SHENANGO MT US , +CSCM5,3,305.4000 ,45.53140 ,-93.75220,RAWS , ,SHERBURNE MN US , +SBFN6,3,335.3000 ,42.70000 ,-75.50000,RAWS , ,SHERBURNE NY US , +SDNA4,3,82.30000 ,34.27250 ,-92.39280,RAWS , ,SHERIDAN AR US , +SNGN8,3,326.1000 ,46.46690 ,-97.31720,RAWS , ,SHEYENNE ND US , +TR169,3,1230.200 ,41.28310 ,-121.8103,RAWS , ,SHF06 PORTABLE CA US , +TR158,3,1357.300 ,41.53420 ,-122.2086,RAWS , ,SHF07 PORTABLE CA US , +TR350,3,2217.700 ,44.25140 ,-109.4644,RAWS , ,SHF1 - PORTABLE - 555 WY US , +TS010,3,2407.900 ,44.54860 ,-109.3467,RAWS , ,SHF2 - PORTABLE WY US , +TS333,3,1524.000 ,44.52330 ,-109.0994,RAWS , ,SHF3 CAMPBELL WY US , +TR192,3,2331.700 ,42.62560 ,-108.7719,RAWS , ,SHF4 FTS PORTABLE WY US , +SHOT1,3,128.0000 ,35.15500 ,-88.32170,RAWS , ,SHILOH NMP TN US , +SHXC1,3,1615.400 ,41.73580 ,-123.7917,RAWS , ,SHIP MTN CA US , +SPAI1,3,1630.700 ,42.01810 ,-116.2128,RAWS , ,SHO-PAI ID US , +SHLA1,3,276.8000 ,33.64720 ,-85.63440,RAWS , ,SHOAL CREEK AL US , +SIAN2,3,1402.100 ,40.39440 ,-117.6250,RAWS , ,SIARD NV US , +UVSN5,3,1524.000 ,32.51670 ,-107.1167,RAWS , ,SIERRA DE LAS UVAS NM US , +SIGU1,3,2679.800 ,38.63190 ,-112.0611,RAWS , ,SIGNAL PEAK UT US , +SGNW1,3,1539.900 ,46.22690 ,-121.1375,RAWS , ,SIGNAL PEAK WA US , +TRFO3,3,1004.000 ,43.00170 ,-123.7786,RAWS , ,SIGNAL TREE OR US , +SVFO3,3,1211.000 ,42.85890 ,-123.3783,RAWS , ,SILVER BUTTE OR US , +TS199,3,214.6000 ,44.37640 ,-83.59970,RAWS , ,SILVER CREEK MI US , +SVHA4,3,283.5000 ,35.97030 ,-92.74640,RAWS , ,SILVER HILL AR US , +OKPC1,3,278.6000 ,34.29110 ,-118.8144,RAWS , ,SIMI VALLEY CA US , +SMSC1,3,731.5000 ,41.07500 ,-122.3733,RAWS , ,SIMS CA US , +SINM7,3,406.3000 ,37.50140 ,-91.25940,RAWS , ,SINKIN MO US , +SSMA2,3,1196.000 ,61.25830 ,-149.5283,RAWS , ,SITE SUMMIT AK US , +SFFI1,3,1613.300 ,44.94000 ,-116.1881,RAWS , ,SKI HILL ID US , +SGSA2,3,179.8000 ,60.48390 ,-150.4606,RAWS , ,SKILAK GUARD STATION AK US , +SKFI1,3,1554.500 ,45.33670 ,-114.4681,RAWS , ,SKULL GULCH ID US , +SCFI1,3,477.9000 ,45.63330 ,-116.2833,RAWS , ,SLATE CREEK ID US , +ATRC1,3,1423.400 ,41.85860 ,-123.3525,RAWS , ,SLATER BUTTE CA US , +SLMN5,3,2645.700 ,34.06670 ,-108.4333,RAWS , ,SLAUGHTER NM US , +TS305,3,1816.300 ,40.49060 ,-112.0875,RAWS , ,SLFO MICRO #1 UT US , +SLFO3,3,1731.900 ,44.46220 ,-120.2944,RAWS , ,SLIDE MOUNTAIN OR US , +SRGA2,3,149.4000 ,64.80000 ,-147.6167,RAWS , ,SMALL ARMS RANGE AK US , +SMTM8,3,1722.100 ,46.43940 ,-114.2272,RAWS , ,SMITH CREEK MT US , +QHQA3,3,762.0000 ,34.11500 ,-113.3472,RAWS , ,SMITH PEAK AZ US , +COPN5,3,2103.100 ,33.35000 ,-105.6667,RAWS , ,SMOKEY BEAR NM US , +JSTR1,3,84.70000 ,41.81670 ,-71.53330,RAWS , ,SNAKE DEN RI US , +SRFI1,3,1436.200 ,45.09970 ,-116.7375,RAWS , ,SNAKE RIVER ID US , +TR172,3,1310.600 ,37.21250 ,-119.4261,RAWS , ,SNF04 PORTABLE CA US , +FSAC1,3,1280.200 ,37.05060 ,-119.2547,RAWS , ,SNF05 PORTABLE CA US , +FSBC1,3,1524.000 ,37.23420 ,-119.3114,RAWS , ,SNF06 PORTABLE CA US , +BPYW4,3,2499.400 ,42.49080 ,-110.5267,RAWS , ,SNIDER BASIN WY US , +SNIA2,3,705.6000 ,60.61030 ,-154.3200,RAWS , ,SNIPE LAKE AK US , +SNOW4,3,2301.200 ,41.41750 ,-109.0361,RAWS , ,SNOW SPRINGS CREEK WY US , +TS392,3,4.600000 ,38.56830 ,-121.4942,RAWS , ,SOCARBCV1 CA US , +TS387,3,1250.600 ,38.75420 ,-120.6061,RAWS , ,SOCARBCV2 CA US , +TS388,3,4.600000 ,38.55220 ,-121.5353,RAWS , ,SOCARBUS1 CA US , +TS389,3,6.100000 ,38.66530 ,-121.3192,RAWS , ,SOCARBUS2 CA US , +TS390,3,4.900000 ,38.56810 ,-121.4914,RAWS , ,SOCARBUS3 CA US , +SODC2,3,2919.400 ,39.56000 ,-105.9856,RAWS , ,SODA CREEK CO US , +SOAC1,3,525.8000 ,39.42500 ,-122.9772,RAWS , ,SODA CREEK CA US , +SDAM8,3,1225.300 ,45.72890 ,-108.3967,RAWS , ,SODA SPRINGS MT US , +SDRC1,3,1130.800 ,40.92580 ,-121.5856,RAWS , ,SOLDIER MTN CA US , +SOMK2,3,282.6000 ,37.05560 ,-84.61500,RAWS , ,SOMERSET KY US , +SMBC1,3,280.4000 ,41.39000 ,-123.4958,RAWS , ,SOMES BAR CA US , +SFKO3,3,687.9000 ,45.59530 ,-123.4836,RAWS , ,SOUTH FORK OR US , +SFJM8,3,1920.200 ,46.72280 ,-110.4064,RAWS , ,SOUTH FORK JUDITH MT US , +SSMM8,3,1002.800 ,47.56190 ,-107.5286,RAWS , ,SOUTH SAWMILL CREEK MT US , +WRRT2,3,30.50000 ,30.54470 ,-94.34610,RAWS , ,SOUTHERN ROUGH TX US , +SOUI1,3,1392.900 ,45.89030 ,-115.9897,RAWS , ,SOUTHFORK ID US , +SAFO3,3,1303.900 ,44.88500 ,-117.3383,RAWS , ,SPARTA BUTTE OR US , +SPCM4,3,273.1000 ,46.45780 ,-85.62720,RAWS , ,SPINCICH LAKE MI US , +SPLW4,3,1828.800 ,43.56060 ,-107.3975,RAWS , ,SPLIT ROCK CREEK WY US , +TR283,3,1414.000 ,47.50830 ,-113.2356,RAWS , ,SPOTTED BEAR QUICK DEPLOY MT US , +SPCW1,3,408.4000 ,47.93470 ,-118.9347,RAWS , ,SPRING CANYON WA US , +SPGN2,3,1667.300 ,40.59310 ,-114.2050,RAWS , ,SPRING GULCH NV US , +SPMN2,3,1859.300 ,40.43810 ,-114.8103,RAWS , ,SPRUCE MOUNTAIN NV US , +TR165,3,2590.800 ,35.85860 ,-118.3453,RAWS , ,SQF01 PORTABLE CA US , +SWLC1,3,91.40000 ,32.90780 ,-114.4742,RAWS , ,SQUAW LAKE CA US , +SQFO3,3,1513.000 ,42.06970 ,-123.0117,RAWS , ,SQUAW PEAK OR US , +SQSC1,3,1103.400 ,35.36830 ,-117.5703,RAWS , ,SQUAW SPRINGS CA US , +TR151,3,1419.800 ,40.68110 ,-123.6311,RAWS , ,SRF03 PORTABLE CA US , +JCKS1,3,94.50000 ,33.28890 ,-81.53080,RAWS , ,SRF2 - PORTABLE SC US , +SGRU1,3,812.3000 ,37.01110 ,-113.6131,RAWS , ,ST. GEORGE UT US , +SAMF1,3,4.600000 ,30.13330 ,-84.13330,RAWS , ,ST. MARKS (EAST) FL US , +PRWF1,3,15.20000 ,30.00940 ,-84.42420,RAWS , ,ST. MARKS (WEST) FL US , +SRYM8,3,1389.900 ,48.73750 ,-113.4306,RAWS , ,ST. MARY MT US , +STGM8,3,816.9000 ,47.30690 ,-115.1075,RAWS , ,ST. REGIS MT US , +QNRK1,3,540.4000 ,38.16690 ,-98.50000,RAWS , ,STAFFORD KS US , +NCIG1,3,7.600000 ,30.91720 ,-81.42940,RAWS , ,STAFFORD GA US , +STMN2,3,2069.600 ,41.51720 ,-115.3911,RAWS , ,STAG MOUNTAIN NV US , +SMDC1,3,2011.700 ,39.48330 ,-120.0750,RAWS , ,STAMPEDE CA US , +SMPA2,3,579.1000 ,63.74780 ,-150.3281,RAWS , ,STAMPEDE AK US , +STUC1,3,1844.000 ,38.34560 ,-120.2294,RAWS , ,STANISLAUS CA US , +STNI1,3,1916.000 ,44.16920 ,-114.9253,RAWS , ,STANLEY ID US , +QSTA3,3,1097.300 ,34.16470 ,-112.7353,RAWS , ,STANTON AZ US , +TRDK1,3,243.8000 ,38.24000 ,-94.67000,RAWS , ,STATE LINE KS US , +SYNO3,3,111.6000 ,44.79580 ,-122.8142,RAWS , ,STAYTON OR US , +STBM8,3,1149.100 ,46.26080 ,-108.0997,RAWS , ,STEAMBOAT MT US , +STRW1,3,374.9000 ,48.34690 ,-120.7203,RAWS , ,STEHEKIN-AIRSTRIP WA US , +STRG1,3,2.100000 ,31.25690 ,-81.61060,RAWS , ,STERLING GA US , +STVM8,3,1025.700 ,46.51310 ,-114.0911,RAWS , ,STEVI MT US , +TS026,3,1295.400 ,37.93780 ,-120.0131,RAWS , ,STF01 PORTABLE CA US , +TS034,3,1461.500 ,38.31580 ,-120.2592,RAWS , ,STF02 PORTABLE CA US , +TR543,3,949.8000 ,48.53940 ,-114.5594,RAWS , ,STILLWATER MT US , +STKM8,3,1654.500 ,46.85310 ,-113.3775,RAWS , ,STINKWATER CREEK MT US , +STLN5,3,2267.700 ,36.73140 ,-106.8647,RAWS , ,STONE LAKE NM US , +STNA2,3,381.0000 ,61.00080 ,-153.8958,RAWS , ,STONEY AK US , +SRVA2,3,80.80000 ,61.64670 ,-156.4333,RAWS , ,STONEY RIVER AK US , +STOM4,3,199.0000 ,45.90170 ,-86.91830,RAWS , ,STONINGTON MI US , +SYWC1,3,383.1000 ,39.36720 ,-122.5728,RAWS , ,STONYFORD CA US , +BCHN6,3,61.00000 ,41.54140 ,-73.95000,RAWS , ,STONYKILL NY US , +STOC2,3,2680.100 ,39.58690 ,-107.4044,RAWS , ,STORM KING MOUNTAIN CO US , +STFO3,3,1703.800 ,42.18920 ,-120.8472,RAWS , ,STRAWBERRY OR US , +QSHA3,3,2418.600 ,33.55220 ,-109.3164,RAWS , ,STRAY HORSE AZ US , +STKA4,3,520.9000 ,35.86860 ,-94.29750,RAWS , ,STRICKLER AR US , +STUA2,3,470.3000 ,64.71890 ,-146.5044,RAWS , ,STUART CREEK AK US , +SGFO3,3,1319.200 ,43.66360 ,-122.6292,RAWS , ,SUGARLOAF OR US , +BTAC2,3,2052.200 ,40.01810 ,-105.3614,RAWS , ,SUGARLOAF CO US , +SLFC1,3,979.6000 ,40.91670 ,-122.4383,RAWS , ,SUGARLOAF (SHF) CA US , +SUAM8,3,1392.900 ,45.81750 ,-113.9528,RAWS , ,SULA MT US , +TS211,3,281.0000 ,38.23390 ,-91.15000,RAWS , ,SULLIVAN MO US , +SURF1,3,18.30000 ,30.02030 ,-84.98580,RAWS , ,SUMATRA FL US , +SLKO3,3,1549.900 ,42.72190 ,-120.7528,RAWS , ,SUMMER LAKE OR US , +SMFO3,3,1863.200 ,42.19890 ,-120.2469,RAWS , ,SUMMIT OR US , +SHZM1,3,34.70000 ,44.90470 ,-68.64440,RAWS , ,SUNKHAZE MEADOWS ME US , +SUNN7,3,9.100000 ,34.00280 ,-77.95810,RAWS , ,SUNNY POINT NC US , +QSPA3,3,902.2000 ,34.18810 ,-112.1347,RAWS , ,SUNSET POINT AZ US , +TR117,3,1386.500 ,41.62280 ,-120.1611,RAWS , ,SURPRISE PORTABLE CA US , +TS531,3,91.40000 ,39.64690 ,-76.13940,RAWS , ,SUSQUEHANNA MD US , +SWNA2,3,85.30000 ,60.72780 ,-150.8722,RAWS , ,SWANSON RIVER AK US , +FWFW1,3,1060.700 ,47.26250 ,-120.6817,RAWS , ,SWAUK WA US , +DBYV1,3,203.6000 ,43.33330 ,-73.03330,RAWS , ,SWEEZY VT US , +TCFW1,3,987.6000 ,48.49030 ,-117.4358,RAWS , ,TACOMA CREEK WA US , +TLGC1,3,366.7000 ,33.47810 ,-117.4858,RAWS , ,TALEGA CA US , +TLDA1,3,182.9000 ,33.44110 ,-86.08110,RAWS , ,TALLADEGA AL US , +TGSK1,3,375.2000 ,38.43500 ,-96.56060,RAWS , ,TALLGRASS PRAIRIE KS US , +TULG1,3,831.5000 ,34.90580 ,-83.33440,RAWS , ,TALLULAH #1 GA US , +TANA2,3,1051.600 ,60.90810 ,-142.6978,RAWS , ,TANA KNOB AK US , +TANC1,3,792.5000 ,34.20690 ,-117.7606,RAWS , ,TANBARK CA US , +TS447,3,2148.800 ,36.41530 ,-105.5581,RAWS , ,TAOS - FTS NM US , +TR315,3,2041.900 ,35.04080 ,-106.1864,RAWS , ,TAOS PORTABLE #1 NM US , +TR381,3,2066.500 ,35.04080 ,-106.1861,RAWS , ,TAOS PORTABLE #2 NM US , +TS785,3,705.9000 ,46.16030 ,-100.9014,RAWS , ,TATANKA PRAIRIE ND US , +TAPC2,3,3200.400 ,38.90860 ,-106.6028,RAWS , ,TAYLOR PARK CO US , +TAYN7,3,362.7000 ,35.91170 ,-81.13750,RAWS , ,TAYLORSVILLE (LENOIR) NC US , +MCLI1,3,1560.600 ,44.90440 ,-115.7383,RAWS , ,TEA POT ID US , +TEBA2,3,609.6000 ,61.18810 ,-144.4003,RAWS , ,TEBAY AK US , +TSOW1,3,999.7000 ,48.66390 ,-117.4819,RAWS , ,TEEPEE SEED ORCHARD WA US , +CALN4,3,304.2000 ,40.74920 ,-74.85860,RAWS , ,TEETERTOWN NJ US , +TFRU1,3,1664.200 ,37.19140 ,-112.0269,RAWS , ,TELEGRAPH FLAT UT US , +TLDA2,3,198.1000 ,63.44000 ,-153.3567,RAWS , ,TELIDA AK US , +TSCC1,3,342.9000 ,33.76250 ,-117.4111,RAWS , ,TEMESCAL (CNF) CA US , +TCLC1,3,347.5000 ,34.47390 ,-118.7606,RAWS , ,TEMESCAL (LPF) CA US , +TMPT2,3,174.7000 ,31.05640 ,-97.34690,RAWS , ,TEMPLE TX US , +ENPF1,3,1.500000 ,25.60970 ,-80.85030,RAWS , ,TENRAW FL US , +TPEO3,3,1444.800 ,43.83250 ,-121.0842,RAWS , ,TEPEE DRAW OR US , +TEPM8,3,2020.500 ,45.93470 ,-113.7383,RAWS , ,TEPEE PT MT US , +TEXT2,3,61.00000 ,33.37390 ,-94.04560,RAWS , ,TEXARKANA TX US , +TEXN2,3,1755.700 ,41.80080 ,-118.4511,RAWS , ,TEXAS SPRINGS NV US , +GDBT2,3,2363.700 ,31.92500 ,-104.8253,RAWS , ,THE BOWL TX US , +CRWC2,3,2530.800 ,39.35280 ,-107.0931,RAWS , ,THE CROWN CO US , +TCKC1,3,335.3000 ,39.86440 ,-122.6097,RAWS , ,THOMES CREEK CA US , +THAM8,3,749.8000 ,47.58060 ,-115.2850,RAWS , ,THOMPSON FALLS A/P MT US , +THOA2,3,182.9000 ,55.74170 ,-132.7542,RAWS , ,THORNE RIVER AK US , +THDC1,3,242.3000 ,34.21000 ,-118.8700,RAWS , ,THOUSAND OAKS CA US , +TMKO3,3,3.400000 ,45.45720 ,-123.8025,RAWS , ,TILLAMOOK OR US , +TBRC1,3,1511.800 ,41.62940 ,-121.2981,RAWS , ,TIMBER MOUNTAIN CA US , +TCTM8,3,1950.700 ,45.15690 ,-109.3606,RAWS , ,TIMBERCREST MT US , +TMFO3,3,1859.000 ,43.24280 ,-121.3531,RAWS , ,TIMOTHY OR US , +TSWI3,3,218.8000 ,38.12500 ,-86.62500,RAWS , ,TIPSAW LAKE IN US , +TISM6,3,91.40000 ,34.78890 ,-88.21780,RAWS , ,TISHOMINGO MS US , +TCCG1,3,736.1000 ,34.76500 ,-84.07440,RAWS , ,TOCCOA #1 GA US , +TKRA2,3,701.0000 ,62.95720 ,-143.3467,RAWS , ,TOK RIVER VALLEY AK US , +TOFO3,3,1024.100 ,43.23970 ,-122.4000,RAWS , ,TOKETEE OR US , +TKLA2,3,944.9000 ,63.52420 ,-150.0433,RAWS , ,TOKLAT AK US , +TBSU1,3,2286.000 ,37.81670 ,-112.1167,RAWS , ,TOM BEST SPRING UT US , +TAWW3,3,441.7000 ,45.46810 ,-89.80000,RAWS , ,TOMAHAWK WI US , +TNFM6,3,167.6000 ,33.28060 ,-89.13890,RAWS , ,TOMBIGBEE MS US , +TMRW2,3,308.8000 ,40.54250 ,-80.58360,RAWS , ,TOMLINSON RUN WV US , +TOFW1,3,731.5000 ,48.01670 ,-123.9167,RAWS , ,TOMS CREEK WA US , +TNRC1,3,408.4000 ,33.94750 ,-117.8222,RAWS , ,TONNER CANYON CA US , +TR074,3,1802.300 ,34.68060 ,-111.4739,RAWS , ,TONTO PORTABLE #1 AZ US , +TOSN7,3,912.6000 ,35.53610 ,-83.28500,RAWS , ,TOW STRING NC US , +TWRN5,3,1981.200 ,35.77920 ,-106.2656,RAWS , ,TOWER NM US , +TFAW4,3,1909.900 ,44.91690 ,-110.4206,RAWS , ,TOWER FALLS RS WY US , +TCFI1,3,1371.600 ,43.94360 ,-115.9167,RAWS , ,TOWN CREEK ID US , +QTCA3,3,1913.800 ,33.26670 ,-109.3683,RAWS , ,TRAIL CABIN AZ US , +TGFI1,3,1737.400 ,42.30810 ,-114.3181,RAWS , ,TRAIL GULCH ID US , +TRII1,3,1606.300 ,42.82860 ,-116.5886,RAWS , ,TRIANGLE ID US , +TRMK2,3,414.5000 ,38.17500 ,-83.40830,RAWS , ,TRIANGLE MTN KY US , +TRMC1,3,469.4000 ,36.91110 ,-119.3050,RAWS , ,TRIMMER CA US , +TCAC1,3,977.5000 ,40.79000 ,-122.7983,RAWS , ,TRINITY CAMP CA US , +TCFO3,3,731.5000 ,44.11110 ,-122.5772,RAWS , ,TROUT CREEK OR US , +TRFW1,3,1101.900 ,46.10000 ,-121.7072,RAWS , ,TROUT CREEK WA US , +TROM8,3,594.4000 ,48.46670 ,-115.9167,RAWS , ,TROY MT US , +TRUN5,3,2542.000 ,36.05890 ,-105.7694,RAWS , ,TRUCHAS NM US , +TCRA3,3,1630.700 ,35.78250 ,-113.7942,RAWS , ,TRUXTON CANYON AZ US , +TS817,3,0.000000 ,38.94580 ,-75.93560,RAWS , ,TUCKAHOE MD US , +TVWU1,3,1585.000 ,39.35000 ,-113.3847,RAWS , ,TULE VALLEY UT US , +TMRO3,3,1202.400 ,44.04940 ,-121.4003,RAWS , ,TUMALO RIDGE OR US , +TMEC1,3,2804.200 ,37.86830 ,-119.3192,RAWS , ,TUOLUMNE CA US , +TFWM6,3,97.50000 ,34.33060 ,-88.70690,RAWS , ,TUPELO MS US , +TUFO3,3,1298.500 ,45.06640 ,-119.4911,RAWS , ,TUPPER OR US , +TURN7,3,30.50000 ,34.68310 ,-78.58170,RAWS , ,TURNBULL CREEK NC US , +TNBM1,3,390.1000 ,46.29720 ,-69.84690,RAWS , ,TURNER BROOK ME US , +TS781,3,566.6000 ,48.80920 ,-99.83830,RAWS , ,TURTLE MOUNTAIN ND US , +QTUA3,3,2041.200 ,35.99000 ,-112.1200,RAWS , ,TUSAYAN AZ US , +TKGA1,3,155.1000 ,32.48360 ,-85.55560,RAWS , ,TUSKEGEE AL US , +TSQN7,3,304.8000 ,35.07470 ,-84.12670,RAWS , ,TUSQUITEE NC US , +QTWA3,3,1585.000 ,36.58190 ,-113.7319,RAWS , ,TWEEDS POINT AZ US , +TWBI1,3,1021.100 ,42.69060 ,-115.1953,RAWS , ,TWIN BUTTES ID US , +TS807,3,985.1000 ,35.36250 ,-119.8233,RAWS , ,TWISSELMAN CA US , +AMOA4,3,55.80000 ,33.58690 ,-91.80580,RAWS , ,UAM AR US , +UHLC1,3,1133.900 ,35.88670 ,-118.6483,RAWS , ,UHL CA US , +TS301,3,1371.600 ,40.51940 ,-111.8339,RAWS , ,UIF-1 PORTABLE UT US , +UMTO3,3,82.30000 ,45.91670 ,-119.5667,RAWS , ,UMATILLA OR US , +UMTA2,3,88.10000 ,69.37000 ,-152.1361,RAWS , ,UMIAT AIRFIELD AK US , +UDWC1,3,792.5000 ,40.72190 ,-123.4953,RAWS , ,UNDERWOOD CA US , +PGVT1,3,731.5000 ,36.22420 ,-82.23060,RAWS , ,UNICOI TN US , +QUPA3,3,1072.900 ,35.23220 ,-114.3819,RAWS , ,UNION PASS AZ US , +UPRA2,3,1113.700 ,64.51670 ,-143.2022,RAWS , ,UPPER CHARLEY RIVER AK US , +UPRU1,3,2520.400 ,39.46810 ,-109.2858,RAWS , ,UPPER P.R. CANYON UT US , +USWU1,3,1971.800 ,39.70810 ,-109.4411,RAWS , ,UPPER SAND WASH UT US , +UPTW2,3,519.7000 ,38.81670 ,-79.27720,RAWS , ,UPPER TRACT WV US , +TS652,3,2165.000 ,19.92670 ,-155.4400,RAWS , ,USGSHI HI US , +TS745,3,281.0000 ,41.36500 ,-74.02670,RAWS , ,USMA NY US , +TR598,3,1332.600 ,37.06080 ,-102.6303,RAWS , ,UTE CANYON CO US , +UTMN5,3,2314.400 ,36.93610 ,-105.7286,RAWS , ,UTE MTN RAWS NM US , +UNFN7,3,164.6000 ,35.36670 ,-79.86670,RAWS , ,UWHARRIE (TROY) NC US , +VRFN1,3,926.6000 ,42.48390 ,-100.4561,RAWS , ,VALENTINE NE US , +VLCC1,3,417.6000 ,33.23940 ,-117.0142,RAWS , ,VALLEY CENTER CA US , +VLYC1,3,1152.100 ,34.44560 ,-117.8511,RAWS , ,VALYERMO CA US , +VABC1,3,1502.100 ,41.64310 ,-121.7939,RAWS , ,VAN BREMMER CA US , +VDBC1,3,320.0000 ,34.80330 ,-120.5206,RAWS , ,VANDENBERG CA US , +QVDA3,3,945.2000 ,34.54920 ,-111.8444,RAWS , ,VERDE AZ US , +VENU1,3,1718.800 ,40.10060 ,-112.4261,RAWS , ,VERNON UT US , +LEVL1,3,106.7000 ,31.01670 ,-93.18690,RAWS , ,VERNON LA US , +VCRT2,3,7.000000 ,28.84610 ,-96.92170,RAWS , ,VICTORIA TX US , +VIEP4,3,11.30000 ,18.12170 ,-65.41580,RAWS , ,VIEQUES PR US , +VCFO3,3,457.2000 ,44.25250 ,-123.4639,RAWS , ,VILLAGE CREEK OR US , +TS797,3,1432.600 ,33.83750 ,-116.8083,RAWS , ,VISTA GRANDE CA US , +WTFO3,3,1956.800 ,43.34000 ,-119.8814,RAWS , ,WAGONTIRE OR US , +WAGI1,3,1889.800 ,43.57250 ,-115.3267,RAWS , ,WAGONTOWN ID US , +WNVH1,3,291.7000 ,21.48060 ,-158.1553,RAWS , ,WAIANAE VALLEY HI US , +WKFM4,3,365.8000 ,46.44030 ,-89.82670,RAWS , ,WAKEFIELD MI US , +WALC1,3,1658.100 ,38.56530 ,-119.4592,RAWS , ,WALKER CA US , +ONYC1,3,1698.300 ,35.66580 ,-118.0569,RAWS , ,WALKER PASS CA US , +WALN4,3,121.9000 ,41.28390 ,-74.54640,RAWS , ,WALLKILL QD NJ US , +TS017,3,1741.900 ,45.14310 ,-116.9256,RAWS , ,WALLOWA-WHITMAN PORTABLE OR US , +WMFO3,3,1011.900 ,45.24060 ,-121.4531,RAWS , ,WAMIC MILL OR US , +WNKN6,3,457.2000 ,44.16670 ,-74.90000,RAWS , ,WANAKENA NY US , +WPKO3,3,1325.900 ,45.10940 ,-122.1953,RAWS , ,WANDERER'S PEAK OR US , +WMSC1,3,1502.700 ,34.59580 ,-118.5786,RAWS , ,WARM SPRINGS CA US , +QWSA3,3,2441.500 ,36.70000 ,-112.2300,RAWS , ,WARM SPRINGS CANYON AZ US , +TS292,3,1493.500 ,40.00220 ,-111.7328,RAWS , ,WASATCH BAER PORTABLE UT US , +WSBO3,3,692.5000 ,45.61670 ,-121.3353,RAWS , ,WASCO BUTTE OR US , +WSHW3,3,384.0000 ,46.63640 ,-91.20140,RAWS , ,WASHBURN WI US , +WSNG1,3,180.7000 ,33.78060 ,-82.81610,RAWS , ,WASHINGTON GA US , +WPSN5,3,2856.000 ,36.07810 ,-108.8575,RAWS , ,WASHINGTON PASS NM US , +WMTM4,3,489.2000 ,46.26890 ,-89.17000,RAWS , ,WATERSMEET MI US , +WTTC2,3,2656.000 ,39.46720 ,-105.2097,RAWS , ,WATERTON NORTH CO US , +WCYN8,3,659.9000 ,47.78030 ,-103.2853,RAWS , ,WATFORD CITY ND US , +AFRG1,3,205.7000 ,33.89670 ,-83.36560,RAWS , ,WATKINSVILLE GA US , +LAUM6,3,95.10000 ,31.52420 ,-88.88890,RAWS , ,WAUSAU MS US , +WUEW3,3,232.6000 ,45.38970 ,-87.96530,RAWS , ,WAUSAUKEE WI US , +WUTW3,3,261.2000 ,44.05610 ,-89.29220,RAWS , ,WAUTOMA WI US , +WWNC1,3,1235.100 ,37.54000 ,-119.6533,RAWS , ,WAWONA CA US , +TOPN7,3,658.4000 ,35.28330 ,-83.66670,RAWS , ,WAYAH NC US , +WYNI1,3,1948.000 ,43.04970 ,-111.3794,RAWS , ,WAYAN ID US , +OKEG1,3,38.10000 ,31.24670 ,-82.40140,RAWS , ,WAYCROSS GA US , +WEEC1,3,892.8000 ,41.47890 ,-122.4547,RAWS , ,WEED AIRPORT CA US , +WNLA2,3,320.0000 ,64.31500 ,-151.0833,RAWS , ,WEIN LAKE AK US , +WEFI1,3,1185.400 ,44.84810 ,-116.4278,RAWS , ,WEISER RIVER ID US , +TR532,3,682.8000 ,47.87640 ,-118.0961,RAWS , ,WELLPINIT WA US , +WLLM4,3,242.6000 ,44.22220 ,-85.94030,RAWS , ,WELLSTON MI US , +WSFM8,3,1585.000 ,45.81810 ,-114.2631,RAWS , ,WEST FORK MT US , +WGRM8,3,975.4000 ,48.51060 ,-113.9942,RAWS , ,WEST GLACIER MT US , +WEDC1,3,393.5000 ,41.22330 ,-124.0525,RAWS , ,WESTSIDE CA US , +WWDC1,3,1876.000 ,40.30610 ,-120.9022,RAWS , ,WESTWOOD CA US , +WTPC1,3,1255.800 ,34.56860 ,-118.7403,RAWS , ,WHITAKER PEAK CA US , +CISC1,3,1316.700 ,39.31670 ,-120.8375,RAWS , ,WHITE CLOUD CA US , +CWYN3,3,140.2000 ,43.98060 ,-71.14060,RAWS , ,WHITE MTN NF NH US , +WRRU1,3,1048.500 ,37.21610 ,-113.3778,RAWS , ,WHITE REEF UT US , +WSRM8,3,1542.300 ,46.53440 ,-110.8853,RAWS , ,WHITE SULPHUR SPRING MT US , +WHHM8,3,1328.900 ,45.88330 ,-112.1500,RAWS , ,WHITEHALL MT US , +WHIN7,3,30.50000 ,34.33640 ,-78.72860,RAWS , ,WHITEVILLE NC US , +WHIS1,3,155.4000 ,34.63330 ,-81.60000,RAWS , ,WHITMIRE SC US , +WITC1,3,736.7000 ,40.61940 ,-121.8994,RAWS , ,WHITMORE CA US , +WTHC1,3,289.6000 ,33.98390 ,-118.0100,RAWS , ,WHITTIER HILLS CA US , +WCAS2,3,1253.000 ,43.55750 ,-103.4914,RAWS , ,WICA_ELK MOUNTAIN SD US , +WMRO2,3,548.6000 ,34.76060 ,-98.74190,RAWS , ,WICHITA OK US , +WCRM8,3,2317.700 ,45.27060 ,-110.5433,RAWS , ,WICKED CREEK MT US , +BRTM8,3,2484.100 ,45.12940 ,-108.3039,RAWS , ,WILD HORSE MT US , +WHBU1,3,2514.600 ,39.54500 ,-109.9083,RAWS , ,WILDHORSE UT US , +WLYC1,3,501.4000 ,34.37170 ,-118.8408,RAWS , ,WILEY RIDGE CA US , +WKFO3,3,457.2000 ,44.33250 ,-123.7164,RAWS , ,WILKINSON RIDGE OR US , +WLCC2,3,2761.200 ,38.00280 ,-105.0561,RAWS , ,WILLIS CREEK CO US , +WICC2,3,2971.800 ,40.35170 ,-106.2153,RAWS , ,WILLOW CREEK CO US , +HBFO3,3,139.0000 ,44.02890 ,-123.1736,RAWS , ,WILLOW CREEK OR US , +WHSF1,3,15.20000 ,30.18280 ,-84.94000,RAWS , ,WILMA FL US , +WINM6,3,152.4000 ,34.62030 ,-89.31420,RAWS , ,WINBORN MS US , +WRVW4,3,2814.800 ,42.97830 ,-109.1167,RAWS , ,WIND RIVER WY US , +WINM4,3,293.2000 ,47.91170 ,-89.15470,RAWS , ,WINDIGO MI US , +WNTU1,3,2248.800 ,39.50330 ,-109.5578,RAWS , ,WINTER RIDGE UT US , +WSEV2,3,771.1000 ,36.96810 ,-82.55970,RAWS , ,WISE VA US , +WRSM8,3,1738.600 ,45.78330 ,-112.9333,RAWS , ,WISE RIVER MT US , +WTHS1,3,18.00000 ,33.15970 ,-79.83060,RAWS , ,WITHERBEE SC US , +WFHC1,3,960.1000 ,35.72170 ,-118.4989,RAWS , ,WOFFORD HEIGHTS CA US , +WWMM8,3,1590.100 ,45.31310 ,-107.1719,RAWS , ,WOLF MOUNTAIN MT US , +WLFP1,3,524.3000 ,40.51560 ,-76.77750,RAWS , ,WOLF POND PA US , +WVTC1,3,1597.200 ,36.44500 ,-118.7033,RAWS , ,WOLVERTON CA US , +WONA2,3,646.2000 ,63.49030 ,-150.8714,RAWS , ,WONDER LAKE AK US , +WDAC1,3,426.7000 ,37.99060 ,-122.6447,RAWS , ,WOODACRE CA US , +WOBN4,3,26.50000 ,39.23000 ,-74.80390,RAWS , ,WOODBINE NJ US , +WUFW3,3,493.5000 ,45.88750 ,-89.65080,RAWS , ,WOODRUFF WI US , +WVLT2,3,115.8000 ,30.75000 ,-94.40000,RAWS , ,WOODVILLE TX US , +TR743,3,1836.400 ,41.89750 ,-115.4267,RAWS , ,WQ - JARBIDGE WEST FORK NV US , +WNMA3,3,1724.600 ,35.54170 ,-111.5417,RAWS , ,WUPATKI SW AZ US , +WWRC1,3,2438.400 ,37.85940 ,-119.6517,RAWS , ,WWOLF CA US , +YALM6,3,112.8000 ,33.98580 ,-89.79670,RAWS , ,YALLABUSHA MS US , +SFLU1,3,1597.200 ,40.28310 ,-109.2900,RAWS , ,YAMPA PLATEAU UT US , +YELK2,3,332.2000 ,36.60360 ,-83.69610,RAWS , ,YELLOW CREEK KY US , +QYJA3,3,1877.600 ,36.15500 ,-113.5494,RAWS , ,YELLOW JOHN MOUNTAIN AZ US , +YLWM8,3,2804.200 ,45.16720 ,-111.3508,RAWS , ,YELLOW MULE MT US , +YLPO3,3,1402.100 ,44.52640 ,-118.3231,RAWS , ,YELLOWPINE OR US , +YLSU1,3,2377.400 ,40.54360 ,-110.3294,RAWS , ,YELLOWSTONE DRAINAGE UT US , +YEFO3,3,938.8000 ,44.59220 ,-122.4278,RAWS , ,YELLOWSTONE MTN. OR US , +YOBC1,3,1453.300 ,40.33830 ,-123.0650,RAWS , ,YOLLA BOLLA CA US , +YCGN2,3,969.3000 ,36.43670 ,-115.3314,RAWS , ,YUCCA GAP NV US , +UCCC1,3,989.4000 ,34.12420 ,-116.4081,RAWS , ,YUCCA VALLEY CA US , +TR701,3,150.9000 ,41.28970 ,-123.8575,RAWS , ,YUROK CA US , +ZSFO1,3,222.5000 ,39.27530 ,-82.38500,RAWS , ,ZALESKI OH US , +BBFO3,3,1246.300 ,42.68500 ,-122.3903,RAWS , ,ZIM OR US , +ZIOU1,3,1218.900 ,37.20470 ,-112.9778,RAWS , ,ZION CANYON UT US , +TS659,3,1281.400 ,48.43060 ,-115.3972,RAWS , ,ZONOLITE MT US , +ALDM8,3,1420.400 ,47.92250 ,-108.5528,RAWS , ,ZORTMAN MINE MT US , +ZNRN5,3,2038.800 ,35.13920 ,-108.9414,RAWS , ,ZUNI BUTTES NM US , +RDX01,3,8.000000 ,71.32300 ,-156.6090,RDMTR , ,North Slope of Alaska Site, Barrow, AK DOE/ARM , +RDX02,3,1592.334 ,40.02582 ,-105.2455,RDMTR , ,Radiometrics Corporation, Boulder, CO RDX , +RDX03,3,212.1408 ,34.72333 ,-86.64194,RDMTR , ,University of Alabama, Huntsville, AL UAH , +RDX04,3,230.1240 ,41.41400 ,-81.86200,RDMTR , ,Cleveland, Ohio NASA GRC , +RDX05,3,112.0000 ,52.20861 ,14.11806 ,RDMTR , ,Lindenberg, Germany DWD MetObs , +BCSI ,3,5.480000 ,26.32140 ,-81.06780,SFWMD , , BCSI , +CFSW ,3,4.192000 ,26.73500 ,-80.89530,SFWMD , , CFSW , +L001 ,3,3.926000 ,27.13810 ,-80.78870,SFWMD , , Lake Oke North End , +L005 ,3,4.531000 ,26.95850 ,-80.93800,SFWMD , , Lake Oke West End , +L006 ,3,4.520000 ,26.82250 ,-80.78280,SFWMD , , Lake Oke South End , +LXWS ,3,3.146000 ,26.49890 ,-80.22220,SFWMD , , LXWS , +LZ40 ,3,4.520000 ,26.90170 ,-80.78890,SFWMD , , Lake Oke Center , +ROTNW,3,3.871000 ,26.33200 ,-80.88000,SFWMD , , ROTNWX , +S140W,3,3.219000 ,26.17200 ,-80.82730,SFWMD , , S140W , +S331W,3,2.237000 ,25.61090 ,-80.50980,SFWMD , , S331W , +S61W ,3,15.84600 ,28.14000 ,-81.35140,SFWMD , , S61W , +S65CW,3,9.842000 ,27.40140 ,-81.11480,SFWMD , , S65CW , +S65DW,3,8.113000 ,27.31430 ,-81.02220,SFWMD , , S65DWX , +S7WX ,3,3.213000 ,26.33590 ,-80.53670,SFWMD , , S7WX , +SGGEW,3,2.907000 ,26.14540 ,-81.57560,SFWMD , , SGGEWX , +SLVER,3,5.751000 ,26.29700 ,-81.43840,SFWMD , , SILVER , +WRWX ,3,19.48700 ,28.04830 ,-81.39940,SFWMD , , WRWX , +ACRAW,3,8.479000 ,27.12020 ,-80.43210,SFWMD , , ACRAWX , +BELLW,3,3.246000 ,26.65700 ,-80.62980,SFWMD , , BELLW , +ENR30,3,3.524000 ,26.62260 ,-80.43890,SFWMD , , ENR308 , +FPWX ,3,2.916000 ,26.43260 ,-80.62980,SFWMD , , FPWX , +STA5X,3,4.075000 ,26.44750 ,-80.89020,SFWMD , , STA5WX , +SVWX ,3,4.146000 ,27.29030 ,-80.25370,SFWMD , , SVWX , +S78W ,3,5.647000 ,26.78980 ,-80.30280,SFWMD , , S78W , +FHCHS,3,5.000000 ,26.65410 ,-80.06830,SFWMD , , FHCHSX , +JDWX ,3,2.627000 ,27.02870 ,-80.16530,SFWMD , , JDWX , +S75WX,3,8.000000 ,27.19190 ,-81.12800,SFWMD , , S75WX , +DHPC2,3,1615.400 ,39.75400 ,-105.0160,UDFCD , ,Diamond_Hill , +EBBC2,3,2087.900 ,39.24500 ,-104.5890,UDFCD , ,Elbert , +URBC2,3,1629.000 ,39.76770 ,-104.8669,UDFCD , ,Stapleton , +MSTC2,3,1676.400 ,39.63900 ,-105.0630,UDFCD , ,Marston_Lake_North , +MSTC2,3,1676.400 ,39.63900 ,-105.0630,UDFCD , ,Marston_Lake_North , +BHNC2,3,1516.400 ,39.99300 ,-104.8170,UDFCD , ,Brighton , +SQWC2,3,3475.000 ,39.68100 ,-105.4960,UDFCD , ,Squaw_Mountain , +HIGC2,3,1691.600 ,39.56200 ,-105.0190,UDFCD , ,Highlands_Ranch_WTP , +SAPC2,3,1789.200 ,39.49900 ,-104.7760,UDFCD , ,Salisbury_Park , +COKC2,3,1999.500 ,39.37600 ,-104.8460,UDFCD , ,Castle_Rock , +CGCC2,3,2028.400 ,39.66600 ,-105.2750,UDFCD , ,Cold_Spg_Glch_Conf , +CGCC2,3,2028.400 ,39.66600 ,-105.2750,UDFCD , ,Cold_Spg_Glch_Conf , +STAC2,3,2545.100 ,39.98500 ,-105.4630,UDFCD , ,St_Antons , +WRDC2,3,2956.600 ,40.03600 ,-105.5430,UDFCD , ,Ward_C-1 , +SFSC2,3,2395.700 ,40.01800 ,-105.4040,UDFCD , ,Sugarloaf , +LEWC2,3,1700.800 ,39.99200 ,-105.1530,UDFCD , ,Louisville_Lake , +CALC2,3,2365.200 ,40.14800 ,-105.3900,UDFCD , ,Cal-Wood_Ranch , +BTRC2,3,1981.200 ,40.22100 ,-105.3690,UDFCD , ,Button_Rock , +QURC2,3,1752.600 ,39.63900 ,-104.7690,UDFCD , ,Quincy_Res , +AURC2,3,1798.000 ,39.60600 ,-104.6740,UDFCD , ,Aurora_Reservoir , +AUTC2,3,1665.400 ,39.71100 ,-104.8140,UDFCD , ,Aurora_Town_Hall , +BDIC2,3,1603.900 ,40.02600 ,-104.8240,UDFCD , ,Brighton_Ditch , +VA001,3,165.2016 ,39.14482 ,-77.69188,VADOT , ,7_@_287_Leesburg , +VA002,3,126.7968 ,38.93457 ,-77.24761,VADOT , ,Dulles_Toll_Rd_E_Plaza , +VA003,3,69.79920 ,37.66644 ,-77.48531,VADOT , ,I-295_@_Woodman , +VA004,3,583.0824 ,37.88643 ,-79.55746,VADOT , ,I-64_@_Rt_629 , +VA005,3,579.1200 ,38.03320 ,-78.86074,VADOT , ,I-64_@_Rt_250_Afton_Mtn , +VA006,3,35.35680 ,37.41941 ,-76.82234,VADOT , ,I-64_@_Rt_30 , +VA007,3,7.620000 ,36.75761 ,-76.28746,VADOT , ,I-64_Bridge_@_Rt_30 , +VA008,3,125.2728 ,38.01704 ,-78.45237,VADOT , ,I-64_over_Rivanna_River , +VA009,3,130.7592 ,38.82205 ,-77.67557,VADOT , ,I-66_@_Haymarket , +VA010,3,306.6288 ,38.91188 ,-78.07249,VADOT , ,I-66_@_Markham , +VA011,3,833.9328 ,36.67542 ,-80.71084,VADOT , ,I-77_@_Exit_8 , +VA012,3,813.2064 ,37.11881 ,-81.12236,VADOT , ,I-77_@_MP_54 , +VA013,3,167.3352 ,39.00341 ,-78.32099,VADOT , ,I-81_@_Cedar_Creek , +VA014,3,273.4056 ,37.52570 ,-79.70430,VADOT , ,I-81_@_James_River_Bridge , +VA015,3,672.9984 ,37.14457 ,-80.34459,VADOT , ,I-81_@_MP_118 , +VA016,3,796.1376 ,36.90604 ,-81.30977,VADOT , ,I-81_over_Rt_682 , +VA017,3,108.5088 ,36.85161 ,-77.89304,VADOT , ,I-85_@_Rt_1_Brunswick , +VA018,3,12.80160 ,37.23439 ,-77.39540,VADOT , ,I-95_@_Appomattox_Bridge , +VA019,3,13.10640 ,37.43736 ,-77.43059,VADOT , ,I-95_@_Falling_Creek , +VA020,3,34.13760 ,36.54737 ,-77.57494,VADOT , ,I-95_@_MP_0.5 , +VA021,3,76.80960 ,38.34104 ,-77.49192,VADOT , ,I-95_@_US_17_Fredericksburg , +VA022,3,43.89120 ,37.53590 ,-77.43004,VADOT , ,I-95_over_James_River , +VA023,3,53.34000 ,37.52982 ,-77.27466,VADOT , ,Meadow_Rd_over_I-295 , +VA024,3,20.72640 ,37.51777 ,-75.83217,VADOT , ,Rt_13_@_Accomac_CL , +VA025,3,12.49680 ,37.97636 ,-75.53130,VADOT , ,Rt_13_@_New_Church , +VA026,3,95.40240 ,39.22226 ,-77.53418,VADOT , ,Rt_15_@_Lucketts , +VA027,3,546.5064 ,38.64290 ,-78.61176,VADOT , ,Rt_211_@_Shanadoah , +VA028,3,697.6872 ,36.91193 ,-82.67323,VADOT , ,Rt_23_@_Powell_Mtn , +VA029,3,149.6568 ,38.44267 ,-78.13300,VADOT , ,Rt_29_@_Crooked_Run , +VA030,3,251.1552 ,37.36286 ,-79.16697,VADOT , ,Rt_460_@_Candlers_Mtn , +VA031,3,316.0776 ,39.01341 ,-77.96136,VADOT , ,Rt_50_@_Paris_Mnt , +VA032,3,151.1808 ,36.58375 ,-79.36017,VADOT , ,Rt_58_Bridge_@_Rt_265 , +VA033,3,40.23360 ,38.89828 ,-77.07061,VADOT , ,Rt_66_@_Rosslyn , +VA034,3,340.1568 ,39.11563 ,-77.84729,VADOT , ,Rt_7_@_601_Purcelville , +VA035,3,290.4744 ,39.25632 ,-77.76063,VADOT , ,Rt_9_@_WV_Line , +VA036,3,48.46320 ,37.38052 ,-77.34656,VADOT , ,Varina_Enon , +VA037,3,55.77840 ,37.56699 ,-77.57766,VADOT , ,Willey_Bridge , +VA038,3,124.0000 ,38.88665 ,-77.42550,VADOT , ,DTR_MP25_07 , +VA039,3,124.0000 ,38.88665 ,-77.42550,VADOT , ,Dulles_Toll_Rd_W_MP25 , +VA040,3,354.0000 ,37.32913 ,-79.99006,VADOT , ,Salem_VR , +VA041,3,106.0000 ,36.62009 ,-78.54633,VADOT , ,Clarksville , +VA042,3,13.00000 ,37.23439 ,-77.39540,VADOT , ,Appomattox , +VA043,3,58.00000 ,37.66555 ,-77.65833,VADOT , ,Goochland , +VA044,3,273.0000 ,37.52570 ,-79.70430,VADOT , ,Jamesrb , +VA045,3,698.0000 ,36.91193 ,-82.67323,VADOT , ,Powell_Mtn , +VA046,3,85.00000 ,38.73985 ,-77.18928,VADOT , ,Site_A (Keene Mill Road) , +VA047,3,57.00000 ,38.77907 ,-77.17864,VADOT , ,Site_F_M (Fairfax) , +VA048,3,645.0000 ,37.12785 ,-80.69408,VADOT , ,Dublin_Airport , +VT001,3,487.3752 ,44.06537 ,-72.60657,VTDOT , ,Brookfield, VT , +VT002,3,163.9824 ,44.43388 ,-73.06287,VTDOT , ,Williston, VT , +MSNW3,3,289.1400 ,43.04488 ,-89.32755,WIDOT , ,Madison - USH 12/18 @ Mud Lake , +EDGW3,3,265.3500 ,42.85500 ,-89.03533,WIDOT , ,Edgerton - I-90 @ Lake Drive Rd. , +BETW3,3,248.5750 ,42.50993 ,-88.98124,WIDOT , ,Beloit - I-90 @ Colley Rd. , +PTGW3,3,234.8500 ,43.44498 ,-89.49102,WIDOT , ,Portage - I-90/94 @ Wisconsin River , +DODW3,3,329.4000 ,42.94514 ,-90.11862,WIDOT , ,Dodgeville - USH 151 @ Brennan Rd. , +DICW3,3,244.0000 ,42.51572 ,-90.61801,WIDOT , ,Dickeyville - USH 151 @ STH 11 , +JONW3,3,254.6750 ,43.08581 ,-88.77729,WIDOT , ,Johnson Creek - I-94 @ CTH Y , +MNRW3,3,327.8750 ,42.61687 ,-89.63714,WIDOT , ,Monroe - STH 11 @ STH 69 , +MHBW3,3,254.6750 ,42.99399 ,-89.74561,WIDOT , ,Mt. Horeb - USH 18/151 @ Sandrock Rd. , +BVDW3,3,268.4000 ,43.43163 ,-88.87554,WIDOT , ,Beaver Dam - USH 151 @ Railroad Bridge , +MKEW3,3,184.5250 ,43.03474 ,-87.89967,WIDOT , ,Milwaukee Downtown - I-894 Hoan Bridge , +WAKW3,3,250.1000 ,43.04673 ,-88.20498,WIDOT , ,Waukesha - I-94 @ STH 164 , +KSHW3,3,207.4000 ,42.55366 ,-87.95226,WIDOT , ,Kenosha - I-94 @ Des Plaines River , +RNEW3,3,242.4750 ,42.69843 ,-87.95325,WIDOT , ,Racine - I-94 @ Old STH 11 , +FNDW3,3,344.6500 ,43.66024 ,-88.44198,WIDOT , ,Fond du Lac - USH 41 @ CTH F , +CBGW3,3,207.4000 ,43.29457 ,-87.92084,WIDOT , ,Cedarburg - I-43 @ CTH Q , +JAKW3,3,272.9750 ,43.32479 ,-88.18643,WIDOT , ,Jackson - USH 45 @ STH 60 , +EKNW3,3,300.4250 ,42.66390 ,-88.53226,WIDOT , ,Elkhorn - I-43 @ Centralia Ave. , +WI018,3,230.2750 ,42.96567 ,-88.03882,WIDOT , ,Milwaukee Southwest - I-894 @ I-43 , +WI019,3,231.8000 ,43.16026 ,-88.06458,WIDOT , ,Milwaukee Northwest - USH 45 @ Mill Rd. , +WI020,3,210.4500 ,42.56810 ,-88.01967,WIDOT , ,Bristol - STH 50 @ Des Plaines River , +SHBW3,3,213.5000 ,43.76129 ,-87.76563,WIDOT , ,Sheboygan - I-43 @ Superior Ave. , +GRNW3,3,207.4000 ,44.45297 ,-87.96018,WIDOT , ,Green Bay - I-43 @ STH 172 , +MSAW3,3,231.8000 ,44.22105 ,-88.47128,WIDOT , ,Menasha - USH 41 @ STH 441 , +TOWW3,3,413.2750 ,45.33587 ,-88.59347,WIDOT , ,Townsend - STH 32 1 mi N of CTH T , +SVNW3,3,335.5000 ,44.54068 ,-89.54380,WIDOT , ,Stevens Point - I-39 @ STH 66 , +ABBW3,3,427.0000 ,44.94593 ,-90.27206,WIDOT , ,Abbotsford - STH 29 3 mi E of Abbotsfrd , +CMAW3,3,292.8000 ,43.99612 ,-89.49752,WIDOT , ,Coloma - I-39 @ Czech Ave. , +MUNW3,3,268.4000 ,43.79610 ,-90.05579,WIDOT , ,Mauston - I-90/94 @ STH 80 , +PIVW3,3,317.2000 ,44.45314 ,-90.13467,WIDOT , ,Pittsville - STH 13 @ STH 80 , +WUSW3,3,350.7500 ,44.94601 ,-89.66679,WIDOT , ,Wausau - I-39 @ Rib River , +LSEW3,3,201.3000 ,43.86057 ,-91.27178,WIDOT , ,La Crosse - I-90 French Island , +TMAW3,3,301.9500 ,44.02163 ,-90.50460,WIDOT , ,Tomah - I-94 @ USH 12 , +PDUW3,3,187.5750 ,43.05026 ,-91.15066,WIDOT , ,Prairie du Chien - USH 18 @ Miss. River , +MTSW3,3,364.4750 ,43.30677 ,-90.93716,WIDOT , ,Mt. Sterling - STH 27 1 mi S Mt Strling , +TOAW3,3,301.9500 ,43.93879 ,-90.60108,WIDOT , ,Jackson Pass - I-90 @ 1 mi. W of CTH M , +BRVW3,3,332.4500 ,44.33925 ,-90.91158,WIDOT , ,Black River Falls - I-94 @ Sandcut Hill , +ACDW3,3,378.2000 ,44.20901 ,-91.46056,WIDOT , ,Arcadia - STH 93 , +ECRW3,3,268.4000 ,44.76793 ,-91.42367,WIDOT , ,Eau Claire - I-94 @ USH 53 , +HSNW3,3,225.7000 ,44.96301 ,-92.75839,WIDOT , ,Hudson - I-94 @ St. Croix River , +KNAW3,3,369.0500 ,44.92063 ,-92.11578,WIDOT , ,Knapp - I-94 @ CTH Q , +STNW3,3,326.3500 ,44.95203 ,-90.93719,WIDOT , ,Stanley - STH 29 @ CTH H , +WI042,3,272.9750 ,44.91447 ,-92.66689,WIDOT , ,River Falls - STH 35 @ Glover Ln. , +HRLW3,3,417.8500 ,46.49276 ,-90.26733,WIDOT , ,Hurley - USH 2 3 mi West of Hurley , +FIFW3,3,442.2500 ,45.85693 ,-90.42688,WIDOT , ,Fifield - STH 13 south of Fifield , +WDFW3,3,494.1000 ,45.89109 ,-89.68021,WIDOT , ,Woodruff - STH 47 @ CTH J , +MCOW3,3,488.0000 ,45.57641 ,-89.15162,WIDOT , ,Monico - USH 8 @ USH 45 , +STXW3,3,362.9500 ,45.39746 ,-92.59062,WIDOT , ,St. Croix Falls - USH 8 3 mi E of town , +SUPW3,3,289.7500 ,46.57615 ,-91.88872,WIDOT , ,Superior - USH 53 @ Rockmont Rd. , +HAUW3,3,390.4000 ,45.63900 ,-91.78249,WIDOT , ,Haugen - USH 53 @ 30th Ave. , +CABW3,3,408.7000 ,46.16483 ,-91.32438,WIDOT , ,Cable - USH 63 south of Cable , +GRAW3,3,283.6500 ,45.77289 ,-92.71695,WIDOT , ,Grantsburg - STH 70 west of Grantsburg , +CHKW3,3,320.2500 ,45.30365 ,-91.65788,WIDOT , ,Chetek - USH 53 @ CTH I , +BCEW3,3,332.4500 ,45.46231 ,-91.23879,WIDOT , ,Bruce - USH 8 1 mi E of CTH E , +WI054,3,330.9250 ,46.53118 ,-91.21966,WIDOT , ,Ino - USH 2 @ Haviar Rd. , +WI055,3,347.7000 ,44.71362 ,-89.66065,WIDOT , ,Lake DuBay - I-39 @ CTH C , +PAKW3,3,259.2500 ,43.79039 ,-89.48299,WIDOT , ,Montello - I-39 @ STH 23 East , +WI057,3,204.3500 ,43.19204 ,-87.92467,WIDOT , ,Milwaukee NE - I-43 @ County Line Rd. , +WI058,3,457.5000 ,45.54388 ,-89.67192,WIDOT , ,Tomahawk - USH 8 @ USH 51 , +ARST2,3,1015.900 ,33.87538 ,-101.7572,WT-Meso , ,Abernathy 5NE , +ATST2,3,1111.600 ,34.02178 ,-102.4045,WT-Meso , ,Amherst 1NE , +AOST2,3,1037.800 ,33.72525 ,-102.1908,WT-Meso , ,Anton 6S , +ASST2,3,530.4000 ,33.16789 ,-100.1960,WT-Meso , ,Aspermont 3NE , +BWST2,3,1010.100 ,33.15188 ,-102.2710,WT-Meso , ,Brownfield 2S , +CEST2,3,864.4000 ,34.92492 ,-100.9300,WT-Meso , ,Clarendon 2W , +DMST2,3,1181.400 ,34.56751 ,-102.2932,WT-Meso , ,Dimmitt 2NE , +FLST2,3,969.0000 ,34.00158 ,-101.3259,WT-Meso , ,Floydada 2NE , +FVST2,3,825.1000 ,32.89903 ,-101.2019,WT-Meso , ,Fluvanna 3W , +FAST2,3,1220.700 ,34.65450 ,-102.6910,WT-Meso , ,Friona 2NE , +GGST2,3,777.9000 ,32.75508 ,-101.4144,WT-Meso , ,Gail 2SE , +GHST2,3,869.0000 ,33.08153 ,-101.5161,WT-Meso , ,Graham 5SW , +PFST2,3,609.0000 ,33.56703 ,-100.4806,WT-Meso , ,Guthrie 10W , +HAST2,3,1125.900 ,34.42319 ,-102.1073,WT-Meso , ,Hart 3N , +JTST2,3,612.6000 ,33.23241 ,-100.5678,WT-Meso , ,Jayton 1S , +LWST2,3,985.1000 ,33.60408 ,-101.8992,WT-Meso , ,Lubbock 3W , +LMST2,3,901.0000 ,32.70592 ,-101.9362,WT-Meso , ,Lamesa 2SE , +LDST2,3,1065.600 ,33.52650 ,-102.3600,WT-Meso , ,Levelland 4S , +MEST2,3,627.0000 ,34.73136 ,-100.5254,WT-Meso , ,Memphis 1NE , +MNST2,3,1144.200 ,33.73476 ,-102.7398,WT-Meso , ,Morton 1NE , +MUST2,3,1160.100 ,34.20635 ,-102.7424,WT-Meso , ,Muleshoe 2S , +OEST2,3,930.9000 ,32.97988 ,-101.8322,WT-Meso , ,O'Donnell 1N , +ONST2,3,1086.900 ,34.09378 ,-102.1181,WT-Meso , ,Olton 6S , +PADT2,3,616.0000 ,33.89053 ,-100.3989,WT-Meso , ,Paducah 10SW , +PAMT2,3,980.2000 ,35.53950 ,-100.9277,WT-Meso , ,Pampa 2E , +PPST2,3,1131.100 ,33.22814 ,-102.8394,WT-Meso , ,Plains 3N , +PVST2,3,1023.500 ,34.17872 ,-101.7079,WT-Meso , ,Plainview 1S , +PTST2,3,798.0000 ,33.17178 ,-101.3854,WT-Meso , ,Post 1S , +RAST2,3,944.0000 ,33.66840 ,-101.3758,WT-Meso , ,Ralls 1SE , +SGST2,3,1024.100 ,32.93644 ,-102.5744,WT-Meso , ,Seagraves 1SW , +SMST2,3,1009.800 ,32.74075 ,-102.6358,WT-Meso , ,Seminole 2N , +STST2,3,976.0000 ,33.44540 ,-101.1905,WT-Meso , ,Silverton 7E , +SLST2,3,934.2000 ,33.45690 ,-101.6172,WT-Meso , ,Slaton 2NE , +SYST2,3,741.0000 ,32.71614 ,-100.8617,WT-Meso , ,Snyder 3E , +SPST2,3,697.1000 ,33.48085 ,-100.8764,WT-Meso , ,Spur 1W , +SDST2,3,1104.900 ,33.38912 ,-102.6099,WT-Meso , ,Sundown 8SW , +TAST2,3,946.1000 ,33.20747 ,-101.7802,WT-Meso , ,Tahoka 3NE , +TLST2,3,1060.100 ,34.54294 ,-101.7405,WT-Meso , ,Tulia 2NE , +REST2,3,1020.200 ,33.60750 ,-102.0490,WT-Meso , ,Lubbock (Reese) 12W , +RRST2,3,797.1000 ,33.93635 ,-100.8454,WT-Meso , ,Roaring Springs 3N , +WLST2,3,824.2000 ,33.52533 ,-101.1651,WT-Meso , ,White River Lake 6NW , +HEST2,3,1177.400 ,34.83075 ,-102.4248,WT-Meso , ,Hereford/Deaf Smith 2NW , +GDST2,3,501.1000 ,34.34389 ,-99.93970,WT-Meso , ,Goodlett 3W , +DVST2,3,1113.100 ,32.99082 ,-102.9387,WT-Meso , ,Denver City 7W , +MCST2,3,872.6000 ,35.23719 ,-100.5749,WT-Meso , ,McLean 1E , +LHST2,3,705.0000 ,33.07717 ,-101.0579,WT-Meso , ,Lake Alan Henry 1NW , +WOST2,3,1008.000 ,33.42068 ,-102.0498,WT-Meso , ,Wolfforth 6 mi SW , +AWST2,3,965.9000 ,32.32008 ,-102.5167,WT-Meso , ,2E AndrewsW , +TUST2,3,746.8000 ,34.37896 ,-100.9317,WT-Meso , ,2WSW Turkey , +CXST2,3,592.2000 ,34.45650 ,-100.1989,WT-Meso , ,2NNE Childress , +TTSN5,3,1224.700 ,33.23877 ,-103.3521,WT-Meso , ,2SW Tatum NM , +NORN5,3,636.4000 ,34.27303 ,-100.6044,WT-Meso , ,1S NORTHFIELD , +DORN5,3,1322.800 ,33.92005 ,-103.3578,WT-Meso , ,2 MI. SW OF DORA, NM , +SJST2,3,596.5000 ,31.54263 ,-100.5133,WT-Meso , ,7NW San Angelo, TX , +GCMT2,3,820.8000 ,31.65645 ,-101.6002,WT-Meso , ,5SW St. Lawrence, TX , +XAQU ,4,10.05840 ,27.93742 ,-80.49260,WxFlow , ,Aquarina R and D Lab, FL , +XAZL ,4,24.38400 ,28.52812 ,-81.24801,WxFlow , ,Azalea Park, FL , +XBCG ,4,10.05840 ,26.71825 ,-82.26120,WxFlow , ,Boca Grande, FL , +XBIL ,4,14.93520 ,30.43385 ,-88.97759,WxFlow , ,Biloxi, MS , +XBLA ,4,16.76400 ,27.93862 ,-82.79613,WxFlow , ,Belleair, FL , +XBOC ,4,21.33600 ,26.37139 ,-80.08528,WxFlow , ,Boca Raton, FL , +XBON ,4,21.33600 ,26.37712 ,-81.80028,WxFlow , ,Bonita Springs, FL , +XBOY ,4,10.05840 ,26.54653 ,-80.05344,WxFlow , ,Boynton Beach, FL , +XBUC ,4,10.05840 ,30.58169 ,-88.07088,WxFlow , ,Buccaneer YC, AL , +XCAP ,4,14.93520 ,26.03700 ,-81.70081,WxFlow , ,Capri, FL , +XCBS ,4,14.93520 ,30.38596 ,-86.41421,WxFlow , ,Crystal Beach, FL , +XCHL ,4,10.05840 ,26.95898 ,-82.08044,WxFlow , ,Charlotte Hbr YC, FL , +XCOA ,4,10.05840 ,28.31219 ,-80.63303,WxFlow , ,Cocoa Beach Club, FL , +XCRB ,4,19.81200 ,29.46816 ,-94.61673,WxFlow , ,Crab Lake, TX , +XCUT ,4,10.05840 ,25.63259 ,-80.29497,WxFlow , ,Cutler Plant, FL , +XCVN ,4,10.05840 ,26.20140 ,-80.29750,WxFlow , ,Conservation, FL , +XDAI ,4,14.93520 ,28.04345 ,-80.64229,WxFlow , ,Dairy, FL , +XDSO ,4,14.93520 ,26.67483 ,-81.76832,WxFlow , ,Desoto-Orange, FL , +XFLM ,4,14.93520 ,25.96656 ,-80.31002,WxFlow , ,Flamingo, FL , +XGBZ ,4,14.93520 ,30.36028 ,-87.15519,WxFlow , ,Gulf Breeze, FL , +XGLF ,4,10.05840 ,30.36299 ,-87.64788,WxFlow , ,Gulf Shores, AL , +XGPT ,4,10.05840 ,30.35966 ,-89.10948,WxFlow , ,Gulfport, MS , +XGRF ,4,14.93520 ,28.08231 ,-82.03944,WxFlow , ,Griffin, FL , +XGRV ,4,19.81200 ,26.90134 ,-82.31451,WxFlow , ,Grove City, FL , +XHOB ,4,14.93520 ,27.04762 ,-80.16508,WxFlow , ,Hobe, FL , +XJAK ,4,10.05840 ,30.39037 ,-81.47907,WxFlow , ,Jacksonville, FL , +XJEF ,4,10.05840 ,29.94337 ,-90.22750,WxFlow , ,Jefferson Parish, LA , +XKBI ,4,21.94560 ,25.68867 ,-80.16485,WxFlow , ,Key Biscayne, FL , +XKEM ,4,19.81200 ,29.54126 ,-95.02176,WxFlow , ,Kemah, TX , +XKYW ,4,10.05840 ,24.56703 ,-81.79784,WxFlow , ,Key West CG, FL , +XLKF ,4,10.05840 ,30.04243 ,-90.02230,WxFlow , ,Lakefront Airport, LA , +XLOL ,4,14.93520 ,28.19014 ,-82.51820,WxFlow , ,Land o' Lakes, FL , +XLRL ,4,23.46960 ,27.15117 ,-82.46397,WxFlow , ,Laurel, FL , +XLUC ,4,19.81200 ,27.20994 ,-80.33497,WxFlow , ,South Port St. Lucie, FL , +XLWS ,4,14.93520 ,29.91535 ,-81.32982,WxFlow , ,Lewis, FL , +XMGN ,4,21.33600 ,26.75587 ,-80.06911,WxFlow , ,Mangonia Park, FL , +XMVL ,4,10.05840 ,30.36125 ,-90.08873,WxFlow , ,Mandeville, LA , +XNHD ,4,13.71600 ,26.02846 ,-80.13360,WxFlow , ,North Hollywood, FL , +XNMI ,4,16.76400 ,25.90916 ,-80.16046,WxFlow , ,North Miami, FL , +XNPL ,4,10.05840 ,26.14869 ,-81.78777,WxFlow , ,Naples City, FL , +XNSB ,4,10.05840 ,29.04622 ,-80.90032,WxFlow , ,New Smyrna Beach, FL , +XNTR ,4,15.24000 ,29.58857 ,-95.68393,WxFlow , ,New Territory, TX , +XOAK ,4,14.93520 ,26.91164 ,-80.07337,WxFlow , ,Oakes Substation, FL , +XPAN ,4,14.93520 ,30.22736 ,-85.87776,WxFlow , ,Panama City Beach, FL , +XPJN ,4,18.89760 ,29.65833 ,-95.39451,WxFlow , ,Pierce Junction, TX , +XRDY ,4,14.93520 ,28.44185 ,-81.63177,WxFlow , ,Reedy Lake, FL , +XROY ,4,21.33600 ,26.68836 ,-80.17950,WxFlow , ,Royal Palm Beach, FL , +XRSH ,4,16.76400 ,29.35341 ,-95.46136,WxFlow , ,Rosharon, TX , +XSAR ,4,19.81200 ,27.35019 ,-82.51790,WxFlow , ,Sarasota, FL , +XSKL ,4,18.28800 ,25.10006 ,-80.43178,WxFlow , ,South Key Largo, FL , +XSPR ,4,14.93520 ,28.65626 ,-81.41288,WxFlow , ,Spring Lake, FL , +XSTG ,4,14.93520 ,29.66601 ,-84.85894,WxFlow , ,St. George Isl. Sub, FL , +XSTL ,4,10.05840 ,27.34516 ,-80.23638,WxFlow , ,St. Lucie Plant, FL , +XSWT ,4,22.55520 ,27.89170 ,-82.52649,WxFlow , ,Southwest Tampa, FL , +XTER ,4,18.28800 ,27.54524 ,-82.57413,WxFlow , ,Terra Ceia, FL , +XTEX ,4,19.81200 ,29.36552 ,-94.95127,WxFlow , ,Texas City, TX , +XTKY ,4,19.81200 ,25.43390 ,-80.34536,WxFlow , ,Turkey Point plt, FL , +XTRP ,4,10.05840 ,26.53726 ,-82.00357,WxFlow , ,Tarpon Pt., FL , +XUMK ,4,18.28800 ,24.91892 ,-80.63506,WxFlow , ,Upper Matecumbe Key, FL , +XURB ,4,14.93520 ,25.85497 ,-80.36872,WxFlow , ,Urban, FL , +XVER ,4,10.05840 ,27.63120 ,-80.39480,WxFlow , ,Vero City, FL , +XWKI ,4,21.33600 ,28.52375 ,-82.57300,WxFlow , ,Weeki Wachee, FL , +XWPM ,4,13.41120 ,26.65266 ,-80.05831,WxFlow , ,West Palm Beach, FL , +H0002,2,1021.135 ,36.35000 ,-81.53000,WXforYou , ,KNCTODD1 Jefferson NC , +H0003,2,213.5000 ,37.51000 ,-90.33000,WXforYou , ,Black River Electric Fredericktown MO , +H0004,2,149.4500 ,32.77000 ,-117.0500,WXforYou , ,BoblandUSA San Diego CA , +H0005,2,396.5000 ,43.64250 ,-80.07555,WXforYou , , Acton ON , +H0006,2,217.1600 ,35.43500 ,-80.63000,WXforYou , ,Carolina Stormwatch Concord NC , +H0008,2,349.2250 ,48.61235 ,-93.41407,WXforYou , , Fort Frances ON , +H0009,2,2054.649 ,39.30000 ,-104.4300,WXforYou , ,Canterberry Crossing Parker CO , +H0010,2,14.64000 ,46.30000 ,-63.10000,WXforYou , ,Mac Weather Charlottetown PE , +H0011,2,327.2500 ,46.00000 ,-71.00000,WXforYou , , Charny QB , +H0012,2,247.0500 ,32.58000 ,-97.35000,WXforYou , ,Crowley TX WX Page Crowley TX , +H0017,2,314.8100 ,38.90370 ,-94.83030,WXforYou , , Olathe KS , +H0018,2,61.00000 ,40.72000 ,-73.70000,WXforYou , , Floral Park NY , +H0019,2,561.8100 ,44.17000 ,-80.39000,WXforYou , , Dundalk ON , +H0020,2,376.6750 ,33.34450 ,-111.7407,WXforYou , , Gilbert AZ , +H0021,2,97.90500 ,43.20000 ,-79.20000,WXforYou , , St Catharines ON , +H0022,2,365.6320 ,44.80500 ,-71.87100,WXforYou , ,KVTISLAN1 Island Pond VT , +H0024,2,62.75400 ,45.33800 ,-123.0960,WXforYou , , 12S Cornelius OR , +H0025,2,3.660000 ,29.44000 ,-95.10000,WXforYou , , Dickinson TX , +H0026,2,182.6950 ,33.47000 ,-83.26463,WXforYou , , Greensboro GA , +H0029,2,185.7450 ,38.54000 ,-90.31000,WXforYou , , Affton MO , +H0030,2,223.7500 ,43.80000 ,-75.47000,WXforYou , ,Harrisburg Lowville NY , +H0031,2,179.9500 ,33.58000 ,-86.05000,WXforYou , , Rainbow City AL , +H0032,2,128.1000 ,36.15000 ,-86.35000,WXforYou , , Hendersonvill TN , +H0035,2,570.3500 ,36.62300 ,-82.18700,WXforYou , ,Bristol, VA WX Station Bristol VA , +H0036,2,129.2330 ,42.55194 ,-71.75580,WXforYou , , Dunstable MA , +H0038,2,320.2500 ,34.05000 ,-84.55000,WXforYou , , Kennesaw GA , +H0040,2,61.00000 ,38.37000 ,-122.8200,WXforYou , , Sebastopol CA , +H0041,2,280.6000 ,36.13000 ,-79.80000,WXforYou , ,Piedmont Triad Weather Greensboro NC , +H0042,2,348.2030 ,36.00000 ,-83.98000,WXforYou , , Knoxville TN , +H0043,2,304.3900 ,41.23000 ,-80.50000,WXforYou , ,WX for West PA/East OH Sharon PA , +H0044,2,6.100000 ,36.80000 ,-76.33000,WXforYou , ,Portsmouth WX Rec Svc Portsmouth VA , +H0048,2,1677.750 ,39.75000 ,-104.5000,WXforYou , ,Lazy B Llama Ranch Franktown CO , +H0052,2,163.7780 ,41.37000 ,-73.23000,WXforYou , ,New Milford Weather New Milford CT , +H0059,2,111.0590 ,45.83400 ,-77.14700,WXforYou , ,WxOntario Pembroke ON , +H0060,2,108.5800 ,40.82000 ,-74.30200,WXforYou , , Roseland NJ , +H0062,2,130.5400 ,35.85000 ,-78.17000,WXforYou , ,Northeast Raleigh Raleigh NC , +H0063,2,253.8480 ,41.15000 ,-82.24000,WXforYou , , Ravenna OH , +H0064,2,4.575000 ,40.30000 ,-74.00000,WXforYou , ,Sands Point, Shrewsbury R. Oceanport NJ , +H0065,2,1396.095 ,34.84200 ,-111.7860,WXforYou , , Sedona AZ , +H0068,2,320.8600 ,45.56000 ,-94.16000,WXforYou , , St. Cloud MN , +H0069,2,321.1650 ,44.54000 ,-91.24000,WXforYou , ,Chippewa Falls WX Svc Chippewa Fall WI , +H0070,2,1951.865 ,40.54000 ,-111.5100,WXforYou , , Sandy UT , +H0071,2,1398.425 ,41.12425 ,-111.9159,WXforYou , ,South Weber WX Porch South Weber UT , +H0072,2,911.5470 ,34.50000 ,-117.9600,WXforYou , ,Thunder Ranch Juniper Hills CA , +H0080,2,680.1500 ,44.50300 ,-72.21900,WXforYou , ,Coles Pond Weathercam Walden VT , +H0081,2,167.7500 ,38.79000 ,-85.92000,WXforYou , ,W9BS Crothersville IN , +H0083,2,9.150000 ,33.69000 ,-78.89000,WXforYou , ,WBTW Studios Florence SC , +H0084,2,208.9250 ,35.05000 ,-85.31000,WXforYou , ,WDEF Studios Chattanooga TN , +H0085,2,98.21000 ,39.80000 ,-75.68000,WXforYou , ,Greenspire Assoc. WX Svc Hockessin DE , +H0086,2,183.0000 ,33.52000 ,-86.80000,WXforYou , ,WIAT Studios Birmingham AL , +H0087,2,42.70000 ,33.47895 ,-81.96918,WXforYou , ,WJBF Studios Augusta GA , +H0088,2,498.6750 ,36.31000 ,-82.35000,WXforYou , ,WJHL Studios Johnson City TN , +H0089,2,89.67000 ,32.30000 ,-90.18000,WXforYou , ,WJTV Studios Jackson MS , +H0090,2,13.72500 ,30.67010 ,-88.11560,WXforYou , ,WKRG Studios Mobile AL , +H0091,2,10.06500 ,30.16000 ,-85.66000,WXforYou , ,WMBB Studios Panama City FL , +H0092,2,17.08000 ,35.61000 ,-77.37000,WXforYou , ,WNCT Studios Greenville NC , +H0094,2,71.06500 ,49.78000 ,-97.20000,WXforYou , ,Gorilla Weather Winnipeg MB , +H0095,2,2.100000 ,32.08000 ,-81.10000,WXforYou , ,WSAV Studios Savannah GA , +H0097,2,300.4250 ,37.27000 ,-79.94000,WXforYou , ,WSLS Studios Roanoke VA , +H0099,2,1483.583 ,34.38422 ,-117.5985,WXforYou , ,Mountain High Resort Wrightwood CA , +H0100,2,154.0250 ,46.21361 ,-119.2616,WXforYou , , Richland WA , +H0101,2,348.3560 ,41.31000 ,-96.06000,WXforYou , , Omaha NE , +H0103,2,161.8170 ,38.51430 ,-89.94907,WXforYou , , Belleville IL , +H0104,2,259.2500 ,39.42000 ,-92.43000,WXforYou , , Moberly MO , +H0105,2,237.9000 ,41.90156 ,-72.89019,WXforYou , , North Canton CT , +H0106,2,113.7650 ,47.08000 ,-122.3200,WXforYou , , Spanaway WA , +H0107,2,107.3600 ,41.03265 ,-74.13419,WXforYou , , Allendale NJ , +H0109,2,190.0150 ,41.32000 ,-88.34000,WXforYou , ,Summersweet Farm Newark IL , +H0110,2,0.915000 ,18.42000 ,-66.06000,WXforYou , , San Juan PR , +H0111,2,266.0250 ,44.87000 ,-123.4490,WXforYou , , Falls City OR , +H0112,2,190.9300 ,43.40000 ,-84.54000,WXforYou , , Sanford MI , +H0114,2,265.6550 ,40.49216 ,-88.99554,WXforYou , , Bloomington IL , +H0115,2,6.631000 ,40.43000 ,-74.18000,WXforYou , , Millburn NJ , +H0116,2,1620.620 ,41.75000 ,-104.8300,WXforYou , ,Chugwater WY , +H0118,2,57.64500 ,39.46000 ,-121.5400,WXforYou , ,Shasta Vista Almond Huller Chico CA , +H0119,2,51.85000 ,37.79615 ,-122.2076,WXforYou , ,Dimond District Oakland CA , +H0120,2,291.2750 ,44.76222 ,-93.22515,WXforYou , , Apple Valley MN , +H0121,2,64.96500 ,42.30000 ,-72.61000,WXforYou , , Ghent NY , +H0122,2,397.1390 ,37.67275 ,-97.29898,WXforYou , , Wichita KS , +H0123,2,29.89000 ,29.71450 ,-95.59170,WXforYou , ,Millhouse Houston TX , +H0124,2,13.42000 ,37.24030 ,-121.8390,WXforYou , ,Herman Middle School San Jose CA , +H0125,2,249.4900 ,33.90000 ,-117.4000,WXforYou , ,VanHouten Weather Riverside CA , +H0127,2,274.4960 ,45.85000 ,-123.2500,WXforYou , , Vernonia OR , +H0130,2,222.6500 ,40.15400 ,-79.86500,WXforYou , , Belle Vernon PA , +H0131,2,173.8500 ,32.81306 ,-97.23124,WXforYou , ,N5VAV Richland Hill TX , +H0133,2,365.1600 ,43.05900 ,-74.05000,WXforYou , ,Lledgerock Llamas Galway NY , +H0134,2,305.0000 ,33.88715 ,-84.67254,WXforYou , , Powder Spring GA , +H0135,2,25.99900 ,28.86544 ,-81.91335,WXforYou , , Fruitland Par FL , +H0136,2,76.25000 ,48.27158 ,-122.3243,WXforYou , , Stanwood WA , +H0137,2,4.277000 ,40.68900 ,-73.33300,WXforYou , ,Babylon Village Babylon NY , +H0138,2,215.6350 ,35.59000 ,-84.80000,WXforYou , , Decatur TN , +H0140,2,70.76000 ,42.97300 ,-73.83900,WXforYou , , Ballston Spa NY , +H0141,2,143.0770 ,41.15095 ,-74.19721,WXforYou , , Sloatsburg NY , +H0143,2,1299.417 ,39.19516 ,-120.7715,WXforYou , , Alta CA , +H0144,2,24.40000 ,41.69447 ,-70.93514,WXforYou , , New Bedford MA , +H0145,2,15.25000 ,40.71800 ,-73.95900,WXforYou , ,Williamsburg Brooklyn NY , +H0147,2,219.6000 ,36.30000 ,-79.47000,WXforYou , ,Backacres Weather Eden NC , +H0148,2,18.30000 ,30.07000 ,-95.70000,WXforYou , ,Rosehill Ranches Tomball TX , +H0150,2,338.8550 ,42.73000 ,-83.54000,WXforYou , , Davisburg MI , +H0151,2,461.1600 ,46.10096 ,-90.58515,WXforYou , ,Lake Five Clam Lake WI , +H0152,2,198.2500 ,33.14577 ,-96.87703,WXforYou , , Frisco TX , +H0153,2,29.89000 ,39.43880 ,-123.7824,WXforYou , ,Coyote Weather Fort Bragg CA , +H0154,2,150.9750 ,48.05613 ,-122.5775,WXforYou , , Greenbank WA , +H0155,2,106.7500 ,37.48000 ,-88.15000,WXforYou , , Ridgway IL , +H0156,2,93.33000 ,43.90297 ,-70.47736,WXforYou , , Raymond ME , +H0157,2,101.5650 ,38.46285 ,-77.46338,WXforYou , ,N4NW Stafford VA , +H0158,2,713.7000 ,34.69000 ,-118.1800,WXforYou , , Lancaster CA , +H0159,2,61.00000 ,45.35400 ,-122.8420,WXforYou , ,Old Town Sherwood OR , +H0160,2,228.7500 ,39.86000 ,-76.43000,WXforYou , , Collinsville PA , +H0161,2,152.5000 ,30.29733 ,-97.77294,WXforYou , ,Hopi Trail Austin TX , +H0162,2,245.5250 ,33.51000 ,-96.61000,WXforYou , , Howe TX , +H0163,2,2135.000 ,35.13000 ,-111.6700,WXforYou , ,Aspen Trails Subdiv. WX Flagstaff AZ , +H0164,2,94.55000 ,35.26000 ,-120.7100,WXforYou , , San Luis Obis CA , +H0165,2,247.0500 ,40.02000 ,-93.17000,WXforYou , , Browning MO , +H0166,2,2302.554 ,39.69454 ,-105.2721,WXforYou , ,Genesee Golden CO , +H0167,2,795.9450 ,47.65000 ,-116.8800,WXforYou , ,Northern Idaho Weather Coeur D' Alen ID , +H0168,2,91.50000 ,31.30202 ,-86.25494,WXforYou , , Opp AL , +H0169,2,1227.600 ,44.15180 ,-116.0073,WXforYou , ,Castle Mountain Garden Valley ID , +H0172,2,1555.500 ,36.69000 ,-108.5000,WXforYou , ,Morgan Lake at 4 Crnrs Upper Fruitla NM , +H0173,2,335.5000 ,41.58000 ,-81.21000,WXforYou , , Chardon OH , +H0174,2,50.02000 ,37.18000 ,-77.50000,WXforYou , ,Walnut Hill Weather Petersburg VA , +H0175,2,8.235000 ,30.06390 ,-81.50180,WXforYou , ,Sampson St. Augustine FL , +H0177,2,366.0000 ,41.20000 ,-74.43000,WXforYou , ,Highland Lakes Vernon Twsp NJ , +H0179,2,53.37500 ,40.15070 ,-75.08010,WXforYou , ,Masons Mill Bus. Park Bryn Athyn PA , +H0180,2,247.6600 ,30.71000 ,-97.73000,WXforYou , , Georgetown TX , +H0182,2,523.0750 ,33.40766 ,-111.5728,WXforYou , , Apache Juncti AZ , +H0183,2,360.6410 ,43.07858 ,-92.33751,WXforYou , , New Hampton IA , +H0185,2,2023.065 ,40.04800 ,-107.8300,WXforYou , ,On the Mesa Meeker CO , +H0186,2,343.6450 ,34.45000 ,-84.57000,WXforYou , , Dalton GA , +H0188,2,4.270000 ,39.25100 ,-76.52100,WXforYou , ,Dundalk WX - N3VBJ Baltimore MD , +H0189,2,155.5500 ,41.70038 ,-72.02061,WXforYou , , Canterbury CT , +H0190,2,864.9800 ,43.58000 ,-116.2400,WXforYou , , Boise ID , +H0191,2,109.3560 ,37.01000 ,-88.52000,WXforYou , , Paducah KY , +H0193,2,219.8010 ,39.75600 ,-77.57800,WXforYou , , Waynesboro PA , +H0194,2,1352.178 ,30.41150 ,-103.5230,WXforYou , , Fort Davis TX , +H0195,2,292.8000 ,41.32000 ,-93.56000,WXforYou , , Van Meter IA , +H0196,2,220.8200 ,42.93500 ,-78.71500,WXforYou , , Buffalo NY , +H0197,2,458.1130 ,38.51000 ,-122.5900,WXforYou , , Guerneville CA , +H0200,2,39.65000 ,38.69000 ,-121.3100,WXforYou , , Citrus Height CA , +H0201,2,192.1500 ,32.65000 ,-97.11000,WXforYou , , Arlington TX , +H0202,2,165.0050 ,32.93000 ,-96.94000,WXforYou , ,KC4WTI Irving TX , +H0203,2,52.76500 ,30.17000 ,-95.44000,WXforYou , , Oak Ridge Nor TX , +H0205,2,298.4010 ,38.89000 ,-94.75000,WXforYou , , Olathe KS , +H0206,2,26.23000 ,41.14000 ,-73.40000,WXforYou , ,Stonybrook Norwalk CT , +H0209,2,2788.585 ,39.72250 ,-106.1040,WXforYou , ,Pioneer Creek Ranch Silverthorne CO , +H0210,2,231.3250 ,41.96875 ,-90.96502,WXforYou , ,Weather Duck Inc Oxford Juncti IA , +H0213,2,3.660000 ,38.30000 ,-76.50800,WXforYou , , California MD , +H0216,2,290.3600 ,45.08700 ,-93.08500,WXforYou , , Vadnais Heigh MN , +H0217,2,2135.000 ,33.36200 ,-105.6540,WXforYou , ,White Mountain Meadows Ruidoso NM , +H0220,2,175.8910 ,45.32000 ,-122.5800,WXforYou , , Hillsboro OR , +H0221,2,91.50000 ,47.30000 ,-122.2800,WXforYou , ,WA6MVG Auburn WA , +H0222,2,427.0000 ,39.75347 ,-123.2077,WXforYou , , Covelo CA , +H0223,2,1482.300 ,34.23690 ,-117.2872,WXforYou , ,Petroglyph Computing Crestline CA , +H0224,2,4.575000 ,26.50320 ,-80.06610,WXforYou , , Boynton Beach FL , +H0228,2,366.0000 ,40.36000 ,-80.05000,WXforYou , ,South Hills Pittsburgh PA , +H0229,2,359.9000 ,40.53732 ,-79.91175,WXforYou , ,Audubon Society of W PA Fox Chapel PA , +H0230,2,228.1490 ,33.03997 ,-96.76457,WXforYou , ,Riverbend WA5KXX Plano TX , +H0231,2,106.8360 ,37.65100 ,-78.29900,WXforYou , , New Canton VA , +H0232,2,79.58400 ,37.46000 ,-122.2700,WXforYou , ,Emerald Hills Redwood City CA , +H0234,2,312.6250 ,34.01422 ,-84.35738,WXforYou , , Roswell GA , +H0235,2,190.9300 ,36.23000 ,-86.38000,WXforYou , , Lebanon TN , +H0236,2,294.0200 ,34.09800 ,-98.57000,WXforYou , ,Burk Burnett TX , +H0237,2,84.79000 ,38.62000 ,-122.8700,WXforYou , , Healdsburg CA , +H0238,2,726.7670 ,33.49000 ,-117.4000,WXforYou , , Lake Forest CA , +H0239,2,74.00800 ,33.27000 ,-117.3800,WXforYou , , San Clemente CA , +H0240,2,3.660000 ,30.40100 ,-86.86400,WXforYou , ,Santa Rosa Sound Navarre FL , +H0241,2,355.3300 ,41.12000 ,-96.11000,WXforYou , , Omaha NE , +H0243,2,167.7500 ,40.05000 ,-76.50000,WXforYou , , Columbia PA , +H0244,2,1174.348 ,34.49000 ,-118.0900,WXforYou , , Acton CA , +H0245,2,50.32500 ,30.74000 ,-88.26000,WXforYou , , Mobile AL , +H0246,2,341.6000 ,40.75000 ,-95.64000,WXforYou , , Sidney IA , +H0247,2,1119.045 ,44.42100 ,-103.5571,WXforYou , , Sturgis SD , +H0248,2,399.4390 ,41.31500 ,-74.91900,WXforYou , , Milford PA , +H0249,2,20.74000 ,30.57176 ,-90.94356,WXforYou , ,Florida Parish Watson LA , +H0251,2,340.6850 ,42.07800 ,-76.02000,WXforYou , , Vestal NY , +H0252,2,15.25000 ,32.64000 ,-117.0830,WXforYou , , Chula Vista CA , +H0253,2,307.1350 ,45.17205 ,-93.25664,WXforYou , , Blaine MN , +H0254,2,317.2000 ,37.54000 ,-84.32000,WXforYou , , Nicholasville KY , +H0256,2,6.100000 ,40.73000 ,-73.53000,WXforYou , , Levittown NY , +H0257,2,29.28000 ,44.70000 ,-73.46000,WXforYou , , Plattsburgh NY , +H0258,2,556.7310 ,35.90350 ,-93.25500,WXforYou , ,Wayton Deer AR , +H0259,2,53.68000 ,37.98000 ,-122.5200,WXforYou , ,Pickles Central San Rafael CA , +H0261,2,244.0000 ,42.20991 ,-88.35358,WXforYou , , Crystal Lake IL , +H0263,2,244.0000 ,35.28000 ,-81.68000,WXforYou , ,WeatherSource Shelby NC , +H0266,2,18.91000 ,40.59000 ,-124.1500,WXforYou , ,Springville Networks Fortuna CA , +H0267,2,168.6650 ,40.59000 ,-122.3900,WXforYou , , Redding CA , +H0268,2,15.25000 ,38.54231 ,-121.3695,WXforYou , , Sacramento CA , +H0269,2,85.70500 ,37.06000 ,-121.6100,WXforYou , ,South Valley Internet San Martin CA , +H0270,2,5.795000 ,26.13000 ,-80.12000,WXforYou , , Margate FL , +H0271,2,261.7490 ,38.30000 ,-85.96000,WXforYou , , Georgetown IN , +H0272,2,103.2660 ,42.24000 ,-71.58000,WXforYou , ,WoodvilleGr1 Hopkinton MA , +H0273,2,255.4170 ,44.47000 ,-94.81000,WXforYou , ,Minnesotaweathernet Franklin MN , +H0278,2,171.7150 ,32.93200 ,-96.45900,WXforYou , ,TeleHobbies Rockwall TX , +H0280,2,174.1550 ,30.58440 ,-97.41560,WXforYou , , Taylor TX , +H0283,2,15.25000 ,38.54000 ,-121.7100,WXforYou , , Davis CA , +H0284,2,783.0220 ,39.34000 ,-121.0800,WXforYou , ,Audette Associates Nevada City CA , +H0285,2,1592.651 ,38.52000 ,-104.5500,WXforYou , ,Kenos Weather Manitou Sprin CO , +H0286,2,357.5010 ,43.15000 ,-93.20000,WXforYou , ,KIMT Studios Mason City IA , +H0287,2,14.03000 ,42.41000 ,-71.15000,WXforYou , ,Arlington Center Arlington MA , +H0289,2,304.0850 ,41.30999 ,-96.06035,WXforYou , , Omaha NE , +H0290,2,147.6280 ,43.16000 ,-77.56000,WXforYou , , Rochester NY , +H0291,2,255.9430 ,39.26000 ,-84.58000,WXforYou , ,Colerain Township Cincinnati OH , +H0293,2,208.0500 ,38.25000 ,-78.53000,WXforYou , , Harrisonburg VA , +H0294,2,200.6050 ,32.75000 ,-116.9300,WXforYou , ,Rancho San Diego El Cajon CA , +H0295,2,26.23000 ,28.79000 ,-81.34000,WXforYou , , Lake Mary FL , +H0296,2,347.7000 ,34.14611 ,-84.10694,WXforYou , ,KD4K Cumming GA , +H0297,2,128.1000 ,42.06849 ,-71.62563,WXforYou , , Uxbridge MA , +H0298,2,1052.250 ,44.04490 ,-103.2330,WXforYou , ,Terricita Hills Rapid City SD , +H0299,2,25.01000 ,31.31000 ,-92.44000,WXforYou , ,KALB Studios Alexandria LA , +H0300,2,171.4310 ,38.80000 ,-122.9900,WXforYou , , Cloverdale CA , +H0302,2,463.3150 ,42.22000 ,-78.27000,WXforYou , , Cuba NY , +H0304,2,15.25000 ,40.84360 ,-73.17683,WXforYou , ,Edmunds Weather Smithtown NY , +H0305,2,1490.749 ,38.30000 ,-104.5700,WXforYou , ,Cozmos Weather Watch Pueblo CO , +H0307,2,238.8150 ,44.81000 ,-93.31000,WXforYou , , Bloomington MN , +H0308,2,115.0680 ,41.17000 ,-73.96000,WXforYou , , New City NY , +H0309,2,220.2100 ,40.01000 ,-83.11000,WXforYou , , Columbus OH , +H0310,2,505.6900 ,32.51000 ,-99.73000,WXforYou , ,SSC Abilene TX , +H0311,2,4.575000 ,29.59836 ,-95.10654,WXforYou , ,Clear Lake City WX Houston TX , +H0312,2,6.100000 ,28.17524 ,-80.60217,WXforYou , , Satellite Bea FL , +H0313,2,283.6500 ,34.87212 ,-82.28625,WXforYou , ,BosWeather Greer SC , +H0315,2,3.050000 ,27.80000 ,-80.48000,WXforYou , ,Memory Makers, Inc. Sebastian FL , +H0318,2,304.3900 ,30.20701 ,-97.93723,WXforYou , , Austin TX , +H0319,2,1470.100 ,34.24300 ,-117.3900,WXforYou , , Cedarpines Pa CA , +H0320,2,289.7500 ,38.97736 ,-94.93953,WXforYou , ,N0PGH DeSoto KS , +H0322,2,402.9050 ,33.56546 ,-112.0536,WXforYou , , Phoenix AZ , +H0323,2,736.2020 ,37.20000 ,-121.5400,WXforYou , , San Jose CA , +H0324,2,1880.000 ,38.93927 ,-119.9811,WXforYou , ,2ROOS South Lake Ta CA , +H0325,2,2745.000 ,39.64000 ,-106.0900,WXforYou , , Summit County CO , +H0327,2,364.7790 ,46.78300 ,-92.10600,WXforYou , , Duluth MN , +H0328,2,88.75500 ,42.92900 ,-71.18800,WXforYou , , Sandown NH , +H0329,2,273.2800 ,34.63072 ,-82.51173,WXforYou , , Williamston SC , +H0330,2,172.2760 ,32.72316 ,-96.84670,WXforYou , ,Gift World Dallas TX , +H0331,2,97.60000 ,45.71000 ,-122.6200,WXforYou , ,Walnut Grove Vancouver WA , +H0332,2,30.50000 ,37.52000 ,-122.2900,WXforYou , , Belmont CA , +H0333,2,234.8500 ,32.82729 ,-116.9272,WXforYou , ,Cathouse Backyard WX Lakeside CA , +H0335,2,396.5000 ,41.68000 ,-96.55000,WXforYou , ,MSFTRNCS Weather Web Hooper NE , +H0336,2,111.0190 ,40.03600 ,-75.51400,WXforYou , , Malvern PA , +H0337,2,30.50000 ,41.55000 ,-71.30000,WXforYou , , Middletown RI , +H0338,2,296.1550 ,34.91000 ,-82.00000,WXforYou , , Spartanburg SC , +H0339,2,21.65500 ,33.89000 ,-118.1300,WXforYou , ,Williams Worship Bellflower CA , +H0342,2,81.74000 ,36.45000 ,-89.92000,WXforYou , ,Gideon School District Gideon MO , +H0343,2,191.2350 ,42.97000 ,-78.83000,WXforYou , ,Tonawanda Buffalo NY , +H0344,2,269.0000 ,39.19000 ,-84.21000,WXforYou , ,BlueStar Systems Milford OH , +H0345,2,811.4500 ,34.55000 ,-118.0700,WXforYou , , Palmdale CA , +H0346,2,73.20000 ,38.66500 ,-121.1650,WXforYou , ,California Hills Folsom CA , +H0347,2,47.58000 ,38.88500 ,-121.2980,WXforYou , ,Terra Cotta Estates Lincoln CA , +H0348,2,1532.590 ,35.19000 ,-118.6000,WXforYou , , Tehachapi CA , +H0349,2,2037.540 ,40.09000 ,-105.3400,WXforYou , , Boulder CO , +H0350,2,193.0000 ,41.34900 ,-73.18500,WXforYou , ,Barn Hill Monroe CT , +H0351,2,11.00000 ,28.48400 ,-80.80300,WXforYou , ,Port St. John Weather Cocoa FL , +H0352,2,333.0000 ,39.04000 ,-83.83100,WXforYou , , Auburn GA , +H0353,2,205.8750 ,40.40000 ,-91.37700,WXforYou , , Keokuk IA , +H0354,2,310.0000 ,45.30600 ,-93.79400,WXforYou , , Monticello MN , +H0356,2,1937.000 ,38.41000 ,-117.0900,WXforYou , , Hadley NV , +H0358,2,7.625000 ,42.63100 ,-73.74900,WXforYou , ,Port of Rensselaer Rensselaer NY , +H0360,2,203.0000 ,33.15400 ,-97.06400,WXforYou , , Corinth TX , +H0361,2,33.00000 ,29.79000 ,-95.58000,WXforYou , ,R and K Weather Houston TX , +H0362,2,1307.451 ,40.75000 ,-111.8700,WXforYou , , Salt Lake Cty UT , +H0363,2,181.0000 ,48.25000 ,-121.6100,WXforYou , , Darrington WA , +H0364,2,57.00000 ,39.03500 ,-76.90800,WXforYou , ,BoltAssociates Beltsville MD , +H0365,2,30.00000 ,40.72500 ,-73.70300,WXforYou , , Floral Park NY , +H0366,2,562.2330 ,35.90300 ,-93.25500,WXforYou , , Deer AR , +H0367,2,236.3750 ,30.35000 ,-97.74000,WXforYou , , Allandale TX , +H0368,2,15.25000 ,41.35000 ,-72.13000,WXforYou , , New London CT , +H0369,2,170.8000 ,38.81000 ,-85.81000,WXforYou , ,East side of I65 Crothersville IN , +H0370,2,61.00000 ,40.79570 ,-74.05530,WXforYou , ,Meadowlands Secaucus NJ , +H0373,2,265.3500 ,42.32000 ,-85.55000,WXforYou , ,Parchment/Spring Valley Kalamazoo MI , +H0374,2,129.6250 ,44.05000 ,-123.0900,WXforYou , , Eugene OR , +H0375,2,191.1990 ,43.76000 ,-79.50000,WXforYou , , Toronto ON , +H0376,2,1163.575 ,40.86000 ,-121.8500,WXforYou , , Moose Camp CA , +H0377,2,286.7000 ,34.05000 ,-84.52000,WXforYou , ,Thornbrook Marietta GA , +H0380,2,1637.850 ,39.61000 ,-105.0100,WXforYou , ,Cherry Knolls Littleton CO , +H0381,2,12.20000 ,33.96000 ,-78.04000,WXforYou , ,Water Front Southport NC , +H0384,2,24.40000 ,39.66700 ,-75.68100,WXforYou , ,Chapman Woods Christiana DE , +H0386,2,45.75000 ,37.48000 ,-122.3300,WXforYou , , Burlingame CA , +H0387,2,381.8600 ,40.79000 ,-96.63000,WXforYou , ,North Holmes Lake Lincoln NE , +H0392,2,220.4710 ,33.42000 ,-86.64000,WXforYou , ,Greystone Farms North Shelby County AL , +H0395,2,6.100000 ,40.91000 ,-72.34000,WXforYou , ,Mecox Bay Water Mill NY , +H0396,2,210.4500 ,35.91000 ,-86.88000,WXforYou , ,Williamson County Franklin TN , +H0400,2,270.2300 ,39.59000 ,-92.38000,WXforYou , , Jacksonville MO , +H0401,2,415.7150 ,43.27000 ,-96.11000,WXforYou , , Rock Rapids IA , +H0404,2,205.8910 ,35.92000 ,-86.87000,WXforYou , , Franklin TN , +H0405,2,6.710000 ,30.37000 ,-90.05000,WXforYou , ,Airfield Subdivision Mandeville LA , +H0406,2,320.2500 ,40.50000 ,-79.92000,WXforYou , ,Sharpsburg Pittsburgh PA , +H0407,2,9.455000 ,26.05000 ,-81.44000,WXforYou , ,NM Naples FL , +H0408,2,200.4500 ,41.55000 ,-88.42000,WXforYou , ,Prarie Park DeKalb IL , +H0409,2,280.6000 ,34.04000 ,-83.83000,WXforYou , , Auburn GA , +H0410,2,172.9940 ,34.10000 ,-118.2000,WXforYou , , Tujunga CA , +H0412,2,36.60000 ,37.23000 ,-121.8100,WXforYou , ,Santa Teresa San Jose CA , +H0415,2,277.5500 ,29.51000 ,-98.68000,WXforYou , ,Northwest Crossing San Antonio TX , +H0416,2,219.2950 ,44.24000 ,-88.34000,WXforYou , , Appleton WI , +H0417,2,229.0550 ,41.97000 ,-90.96000,WXforYou , ,Oxford Mills Oxford Junction IA , +H0418,2,247.0500 ,30.50000 ,-97.72000,WXforYou , ,Brushy Creek Round Rock TX , +H0419,2,186.6600 ,35.37000 ,-80.66000,WXforYou , ,Lowes Motor Spdwy Area Concord NC , +H0420,2,85.40000 ,46.18000 ,-123.8500,WXforYou , ,West Slope Astoria OR , +H0421,2,36.60000 ,30.68000 ,-87.91000,WXforYou , ,Spanish Fort Daphne AL , +H0422,2,219.0000 ,41.82400 ,-89.67400,WXforYou , ,Snavely Subdivision Sterling IL , +H0423,2,11.89500 ,41.91000 ,-70.93000,WXforYou , , Middleboro MA , +H0424,2,1467.050 ,39.13000 ,-119.7400,WXforYou , ,Carson City Carson City NV , +H0425,2,0.305000 ,39.93300 ,-74.14600,WXforYou , , Bayville NJ , +H0426,2,146.4000 ,39.39800 ,-76.91500,WXforYou , ,The Squires Eldersburg MD , +H0427,2,244.0000 ,40.49000 ,-88.99000,WXforYou , , Bloomington IL , +H0430,2,11.89500 ,27.95000 ,-97.77000,WXforYou , ,San Patricio Mathis TX , +H0431,2,61.00000 ,38.44000 ,-122.7100,WXforYou , ,Downtown Santa Rosa CA , +H0432,2,46.36000 ,40.77000 ,-73.40000,WXforYou , , Melville NY , +H0433,2,356.8500 ,33.31000 ,-111.8400,WXforYou , , Chandler AZ , +H0434,2,366.0000 ,42.00483 ,-73.22624,WXforYou , , Norfolk CT , +H0435,2,133.2850 ,44.10651 ,-69.99305,WXforYou , , Bowdoin ME , +H0436,2,19.82500 ,29.84000 ,-95.43000,WXforYou , ,Northwest Houston Houston TX , +H0440,2,112.8500 ,39.99400 ,-75.36500,WXforYou , , Broomall PA , +H0442,2,38.73500 ,33.92200 ,-118.0550,WXforYou , , Whittier CA , +H0443,2,84.79000 ,45.60360 ,-122.4779,WXforYou , ,Fishers Glen Vancouver WA , +H0445,2,6.100000 ,28.20000 ,-80.60000,WXforYou , ,Arlington Street S. Patrick Shores FL , +H0447,2,61.00000 ,38.44000 ,-122.7100,WXforYou , ,Downtown Santa Rosa CA , +H0448,2,30.50000 ,41.54300 ,-72.65100,WXforYou , ,Farm Hill Middletown CT , +H0449,2,14.33500 ,29.74900 ,-95.58100,WXforYou , ,West Houston Houston TX , +H0450,2,137.2500 ,37.72000 ,-121.9400,WXforYou , , Dublin CA , +H0451,2,1357.250 ,40.92000 ,-111.8700,WXforYou , , Centerville UT , +H0452,2,222.9940 ,38.40000 ,-122.4100,WXforYou , , Santa Rosa CA , +H0453,2,500.2000 ,41.82000 ,-74.67000,WXforYou , ,Neversink Reservoir Neversink NY , +H0455,2,13.11500 ,41.74000 ,-70.00000,WXforYou , , South Orleans MA , +H0456,2,6.100000 ,33.96000 ,-78.07000,WXforYou , , Southport NC , +H0457,2,3.050000 ,37.93000 ,-122.5200,WXforYou , , Corte Madera CA , +H0459,2,168.8400 ,38.07000 ,-85.67000,WXforYou , , Hillview KY , +H0460,2,244.0000 ,41.57000 ,-92.90000,WXforYou , ,ValleyView Ranch Reasnor IA , +H0461,2,36.60000 ,42.61000 ,-71.47000,WXforYou , , Westford MA , +H0462,2,363.8650 ,33.26490 ,-111.8648,WXforYou , , Chandler AZ , +H0463,2,152.5000 ,40.45000 ,-122.3000,WXforYou , , Anderson CA , +H0464,2,61.00000 ,38.69480 ,-121.2524,WXforYou , , Citrus Heights CA , +H0465,2,223.0480 ,38.37000 ,-123.0000,WXforYou , , Occidental CA , +H0466,2,183.9150 ,40.56000 ,-122.2400,WXforYou , , Palo Cedro CA , +H0467,2,1675.500 ,39.60000 ,-104.9500,WXforYou , ,South Madison Drive Littleton CO , +H0468,2,1.220000 ,30.33000 ,-87.16000,WXforYou , ,Pensacola Beach Gulf Breeze FL , +H0469,2,271.4500 ,36.11430 ,-79.83140,WXforYou , , Greensboro NC , +H0471,2,189.1000 ,42.45250 ,-83.10140,WXforYou , , Hazel Park MI , +H0472,2,248.8800 ,39.87890 ,-93.18250,WXforYou , , Linneus MO , +H0473,2,262.3000 ,35.43000 ,-80.85000,WXforYou , , Huntersville NC , +H0474,2,38.12500 ,35.29360 ,-78.39500,WXforYou , , Newton Grove NC , +H0476,2,67.10000 ,40.38400 ,-74.77490,WXforYou , , Hopewell NJ , +H0478,2,100.0400 ,43.00000 ,-73.73000,WXforYou , , Saratoga Springs NY , +H0479,2,91.50000 ,33.95000 ,-81.17000,WXforYou , , West Columbia SC , +H0480,2,106.7500 ,38.88240 ,-77.32000,WXforYou , , Oakton VA , +H0481,2,71.67500 ,47.77070 ,-122.2659,WXforYou , , Kenmore WA , +H0483,2,1281.000 ,36.90000 ,-111.4700,WXforYou , , Page AZ , +H0484,2,61.00000 ,38.75070 ,-76.82010,WXforYou , , Upper Marlboro MD , +H0485,2,2.135000 ,34.77570 ,-76.55850,WXforYou , , Otway NC , +H0486,2,387.3500 ,35.53920 ,-97.61260,WXforYou , , Oklahoma City OK , +H0487,2,268.4000 ,29.54350 ,-98.50350,WXforYou , , San Antonio TX , +H0489,2,2158.790 ,37.19000 ,-107.0600,WXforYou , , Pagosa Springs CO , +H0490,2,316.9920 ,34.21389 ,-84.27972,WXforYou , , Alpharetta GA , +H0491,2,265.3500 ,36.04000 ,-79.87000,WXforYou , , Greensboro NC , +H0492,2,71.98000 ,45.56000 ,-122.8900,WXforYou , ,Rock Creek, Hillsboro Portland OR , +H0493,2,172.9350 ,39.29200 ,-77.90700,WXforYou , ,Locust Hill GC Charles Town WV , +H0494,2,21.35000 ,30.47000 ,-88.34000,WXforYou , , Grand Bay AL , +H0495,2,562.2330 ,35.90300 ,-93.25500,WXforYou , , Deer AR , +H0498,2,1.830000 ,33.60200 ,-117.9010,WXforYou , , Balboa CA , +H0500,2,74.72500 ,37.02700 ,-121.5990,WXforYou , , Gilroy CA , +H0501,2,24.09500 ,38.13800 ,-121.1790,WXforYou , ,Peanut Hill Weather Lodi CA , +H0503,2,121.6060 ,37.80000 ,-122.2100,WXforYou , , Oakland CA , +H0504,2,289.7500 ,33.93000 ,-117.3840,WXforYou , , Riverside CA , +H0505,2,46.36000 ,38.45000 ,-122.7200,WXforYou , , Santa Rosa CA , +H0506,2,102.4800 ,36.31300 ,-119.2700,WXforYou , , Visalia CA , +H0509,2,361.1200 ,33.85200 ,-85.14600,WXforYou , , Buchanan GA , +H0512,2,259.2500 ,42.43000 ,-90.34000,WXforYou , ,Two Bit Acres Galena IL , +H0514,2,286.7000 ,42.32100 ,-88.45500,WXforYou , , Woodstock IL , +H0523,2,290.3600 ,36.09400 ,-80.41100,WXforYou , , Lewisville NC , +H0525,2,347.7000 ,41.27000 ,-96.17000,WXforYou , , Omaha NE , +H0526,2,221.1250 ,40.67000 ,-74.83900,WXforYou , ,Clinton Twsp Lebanon NJ , +H0532,2,63.74500 ,44.96400 ,-122.9920,WXforYou , ,Northeast Salem Salem OR , +H0538,2,9.150000 ,37.07400 ,-76.50000,WXforYou , , Newport News VA , +H0544,2,132.3700 ,31.58000 ,-90.45000,WXforYou , ,Brookhaven MS , +H0545,2,228.7500 ,40.11000 ,-88.30000,WXforYou , ,Champaign IL , +H0549,2,349.2250 ,37.60000 ,-84.84000,WXforYou , ,Danville Alum Springs KY , +H0550,2,122.0000 ,40.07000 ,-75.67000,WXforYou , ,Eagle Reno Weather PA , +H0559,2,458.3570 ,33.30100 ,-112.0480,WXforYou , ,Phoenix Ambient Weather AZ , +H0560,2,271.4500 ,38.72000 ,-121.0390,WXforYou , ,El Dorado Hills Dartboard Wx CA , +H0561,2,732.0000 ,39.16000 ,-120.9600,WXforYou , ,Grass Valley CA , +H0562,2,1140.018 ,38.63300 ,-120.5400,WXforYou , ,Grizzly Flats CA , +H0563,2,12.20000 ,37.46000 ,-122.4400,WXforYou , ,Half Moon Bay CA , +H0564,2,45.75000 ,38.32900 ,-122.6810,WXforYou , ,Rohnert Park CA , +H0565,2,4.575000 ,37.40000 ,-121.9600,WXforYou , ,Santa Clara Lick Mill Park CA , +H0566,2,2464.308 ,37.96667 ,-105.6833,WXforYou , ,Crestone CO , +H0567,2,10.98000 ,46.48900 ,-124.0450,WXforYou , ,Ocean Park WA , +H0568,2,54.90000 ,29.68900 ,-82.41700,WXforYou , ,Gainesville FL , +H0569,2,958.9980 ,34.94000 ,-83.43000,WXforYou , ,Rabun Gap GA , +H0571,2,488.0000 ,33.75000 ,-116.9700,WXforYou , ,Hemet CA , +H0573,2,311.1000 ,43.06200 ,-92.68300,WXforYou , ,Charles City IA , +H0575,2,675.5750 ,47.71700 ,-116.8100,WXforYou , ,Coeur d'Alene ID , +H0576,2,362.9500 ,37.69100 ,-92.66000,WXforYou , ,Lebanon Ozark Weather MO , +H0577,2,314.9260 ,42.39600 ,-72.14300,WXforYou , ,Barre Dog Corner MA , +H0578,2,833.9010 ,47.68700 ,-114.1560,WXforYou , ,Polson MT , +H0580,2,29.28000 ,34.79900 ,-78.03400,WXforYou , ,Rose Hill Lake Tutt NC , +H0582,2,18.30000 ,40.50100 ,-74.58100,WXforYou , ,East Millstone NJ , +H0583,2,36.60000 ,40.40000 ,-74.00000,WXforYou , ,Highlands NJ , +H0588,2,395.5850 ,43.72700 ,-98.00100,WXforYou , ,Mitchell SD , +H0589,2,231.8000 ,29.35300 ,-98.87600,WXforYou , ,Castroville TX , +H0590,2,249.4900 ,36.61600 ,-86.46600,WXforYou , ,Portland TN , +H0591,2,158.6000 ,32.73300 ,-96.81000,WXforYou , ,Dallas Oak Cliff TX , +H0594,2,51.85000 ,38.42000 ,-77.40000,WXforYou , ,Stafford VA , +H0595,2,21.35000 ,48.01500 ,-122.5620,WXforYou , ,Freeland WGM Flooring WA , +H0596,2,106.7500 ,47.39500 ,-122.0290,WXforYou , ,Maple Valley WA , +H0597,2,61.00000 ,45.60200 ,-122.5260,WXforYou , ,Vancouver WA , +H0598,2,77.47000 ,45.65000 ,-122.5200,WXforYou , ,Vancouver Lutegrad Weather WA , +H0601,2,265.3500 ,35.45100 ,-81.01700,WXforYou , ,Denver Lake Norman NC , +H0603,2,61.00000 ,37.96000 ,-122.0000,WXforYou , ,Concord Muncheeville CA , +H0610,2,253.5620 ,29.98000 ,-98.08700,WXforYou , ,Wimberley TX , +KARL ,3,2366.162 ,41.59835 ,-106.2137,WYDOT , ,Arlington I-80 west of Laramie , +KCTD ,3,2145.000 ,41.71000 ,-107.7800,WYDOT , ,Continental Divide I-80 west of Rawlins , +KBIT ,3,2176.000 ,41.64000 ,-108.5800,WYDOT , ,Bitter Creek I-80 east of Rock Springs , +KBVR ,3,2042.000 ,42.58000 ,-108.2800,WYDOT , ,Beaver Rim US 287/WYO 789 SE of Lander , +KMTR ,3,1816.000 ,44.27000 ,-108.8700,WYDOT , ,Meeteetse US 120 north of Meeteetsie , +KHLD ,3,1859.000 ,43.09000 ,-107.3200,WYDOT , ,Hiland US 20/26 between Casper&Shoshoni , +KPAT ,3,1926.000 ,42.56000 ,-106.8500,WYDOT , ,Pathfinder Hill US 220 south of Alcova , +KTMH ,3,1755.000 ,43.12000 ,-106.3300,WYDOT , ,Twenty Mile Hill I-25 north of Casper , +KIDV ,3,1542.000 ,43.94000 ,-106.6400,WYDOT , ,I-25 Divide I-25 north of Kaycee , +KPIN ,3,1402.000 ,44.53000 ,-106.8100,WYDOT , ,Piney Creek I-90 tween Buffalo&Sheridan , +KDHS ,3,1249.000 ,44.21000 ,-106.1000,WYDOT , ,Dead Horse I-90 tween Buffalo&Gillette , +KIKA ,3,1328.000 ,44.29000 ,-104.6200,WYDOT , ,Inyan Kara I-90 west of Sundance , +KBFU ,3,1432.000 ,43.93000 ,-105.4400,WYDOT , ,Belle Fourche US 59 south of Gillette , +KPUM ,3,2438.000 ,41.05000 ,-105.4600,WYDOT , ,Pumpkin Vine US 287 south of Laramie , +KVDW ,3,2560.000 ,41.15000 ,-105.4000,WYDOT , ,Vedauwoo I-80 between Cheyenne&Laramie , +KWTR ,3,1890.000 ,41.41000 ,-104.8700,WYDOT , ,Whitaker I-25 north of Cheyenne , +KFIR ,3,2310.000 ,41.29000 ,-110.7700,WYDOT , ,First Divide I-80 east of Evanston , +KCMS ,3,1962.000 ,41.53000 ,-109.4600,WYDOT , ,Peru Hill I-80 at Green River Tunnel , +KDRC ,3,1554.000 ,42.83000 ,-105.8600,WYDOT , ,Deer Creek I-25 east of Casper , +KBRX ,3,1432.000 ,41.92000 ,-104.9400,WYDOT , ,Bordeaux I-25 south of Wheatland , +KPER ,3,1959.000 ,41.55065 ,-109.5995,WYDOT , ,Peru Hill I-80 west of Green River , +KVED ,3,2567.000 ,41.15550 ,-105.4053,WYDOT , ,Vedauwoo I-80 tween Cheyenne & Laramie , +KTET ,3,2569.000 ,43.49710 ,-110.9554,WYDOT , ,Teton Pass WYO 22 west of Jackson , +KWYH ,3,1960.000 ,41.04760 ,-104.8901,WYDOT , ,Wyo Hill I-25 south of Cheyenne , +KSGE ,3,2371.000 ,41.79000 ,-110.5000,WYDOT , ,Sage Junction US 30 west of Kemmerer , +KRIM ,3,2310.000 ,43.10000 ,-110.3200,WYDOT , ,Rim US 191 between Pinedale & Bondurant , +KSKL ,3,2468.000 ,41.13000 ,-106.5600,WYDOT , ,Skyline 230 WYO 230 SE of Encampment , +KGUN ,3,1706.000 ,41.43000 ,-104.3400,WYDOT , ,Gun Barrel US 85 northeast of Cheyenne , +KCHJ ,3,2529.000 ,44.75000 ,-109.3700,WYDOT , ,Chief Joseph WYO 296 north of Cody , +KSHC ,3,2058.000 ,41.93000 ,-109.9600,WYDOT , ,Shute Creek WYO 372 Grn. River-La Barge , +KSOU ,3,2500.000 ,42.47660 ,-108.8454,WYDOT , ,South Pass WYO 28 near South Pass , +KREC ,3,2061.000 ,42.61510 ,-108.6063,WYDOT , ,Red Canyon WYO 28 tween Riverton&S.Pass , +KTE2 ,3,2452.000 ,43.50108 ,-110.9672,WYDOT , ,Teton Pass , +WLDN6,3,131.0000 ,41.55472 ,-74.17278,NWS-COOP , ,Walden, NY , +TRUM3,3,21.00000 ,42.05080 ,-70.09080,NWS-COOP , ,Cape Cod National Seashore, MA , +PFAN6,3,15.00000 ,40.86770 ,-73.52860,NWS-COOP , ,Oyster Bay, NY , +JBGN6,3,4.300000 ,40.59091 ,-73.58701,NWS-COOP , ,Jones Beach, NY , +GPNN6,3,9.100000 ,40.59680 ,-74.18010,NWS-COOP , ,Staten Island, NY , +FICN6,3,3.600000 ,40.62433 ,-73.25916,NWS-COOP , ,Fire Island, NY , +CKNN6,3,148.0000 ,41.18222 ,-74.02808,NWS-COOP , ,Rockland, NY , +TRFM3,3,108.0000 ,42.59260 ,-72.52209,NWS-COOP , ,Turner Falls Airport, MA , +OXFM3,3,481.0000 ,42.11650 ,-71.90740,NWS-COOP , ,Charlton Buffumville Lake, MA , +QBGN6,3,9.100000 ,40.75140 ,-73.82620,NWS-COOP , ,Flushing, NY , +NMCN6,3,6.000000 ,40.80670 ,-73.79090,NWS-COOP , ,Bronx, NY , +BKLN6,3,6.096000 ,40.59370 ,-73.98150,NWS-COOP , ,Brooklyn, NY , +SAUC3,3,91.44000 ,41.25100 ,-73.32630,NWS-COOP , ,Easton, CT , +MILM3,3,100.0000 ,42.16263 ,-71.51175,NWS-COOP , ,Milford, MA , +PETM3,3,332.2320 ,42.53330 ,-72.18330,NWS-COOP , ,Petersham - Harvard, MA , +STKN6,3,12.19200 ,40.95860 ,-73.10470,NWS-COOP , ,Setauket, NY , +STFC3,3,57.91200 ,41.12470 ,-73.54750,NWS-COOP , ,Stamford, CT , +WHFC3,3,83.82000 ,41.75000 ,-72.78330,NWS-COOP , ,West Hartford, CT , +EXJV1,3,104.0000 ,44.52000 ,-73.12000,NWS-COOP , ,Essex Junction, VT , +ABGV1,3,140.0000 ,45.00810 ,-73.29180,NWS-COOP , ,Alburg, VT , +BDGN6,3,15.24000 ,40.94470 ,-72.30570,NWS-COOP , ,Bridgehampton, NY , +CLTM1,3,305.0000 ,46.61100 ,-69.52290,NWS-COOP , ,Clayton Lake, ME , +EGLM1,3,203.0000 ,47.04200 ,-68.59500,NWS-COOP , ,Eagle Lake, ME , +FOXM1,3,268.0000 ,46.80580 ,-68.83940,NWS-COOP , ,Foxbrook, ME , +WSTV1,3,259.0000 ,44.62720 ,-73.04190,NWS-COOP , ,Westford, VT , +ISPV1,3,366.0000 ,44.79090 ,-71.82990,NWS-COOP , ,Island Pond, VT , +OXBM1,3,212.7500 ,46.42300 ,-68.55300,NWS-COOP , ,Oxbow, ME , +DIXM1,3,195.0720 ,44.68360 ,-69.14150,NWS-COOP , ,Dixmont, ME , +PNNM1,3,65.30000 ,45.19200 ,-67.55900,NWS-COOP , ,Princeton, ME , +SBYV1,3,128.0000 ,43.93110 ,-73.10000,NWS-COOP , ,Salisbury, VT , +DFCV1,3,381.0000 ,43.34640 ,-73.05050,NWS-COOP , ,Danby - Four Corners, VT , +EOLN3,3,381.3000 ,44.79290 ,-71.16370,NWS-COOP , ,Errol 1 Airport, NH , +GFNV1,3,375.8184 ,43.18990 ,-72.62540,NWS-COOP , ,Grafton, VT , +GHNN3,3,267.9192 ,44.38350 ,-71.18350,NWS-COOP , ,Gorham Airport, NH , +GRNM3,3,304.8000 ,42.04860 ,-72.88820,NWS-COOP , ,Granville, MA , +GPTN6,3,3.657600 ,41.10090 ,-72.37260,NWS-COOP , ,Greenport, NY , +JOAN6,3,268.5288 ,42.99830 ,-74.32940,NWS-COOP , ,Johnstown, NY , +KNCM1,3,335.2800 ,46.20790 ,-68.31440,NWS-COOP , ,Knowles Corner, ME , +LIVN6,3,89.91600 ,42.14860 ,-73.75080,NWS-COOP , ,Livingston, NY , +MTYM3,3,394.7160 ,42.17620 ,-73.24430,NWS-COOP , ,Monterey, MA , +NFKC3,3,403.8600 ,41.96800 ,-73.22470,NWS-COOP , ,Norfolk, CT , +NHEN6,3,353.8728 ,43.32570 ,-73.33670,NWS-COOP , ,North Hebron, NY , +NPGN6,3,154.8384 ,42.80860 ,-73.33440,NWS-COOP , ,North Petersburg, NY , +NWPN3,3,237.7440 ,43.38990 ,-72.18620,NWS-COOP , ,Newport Airport, NH , +OLDN6,3,524.2560 ,43.70140 ,-74.98530,NWS-COOP , ,Old Forge, NY , +PATM1,3,246.8880 ,46.02590 ,-68.49770,NWS-COOP , ,Patten, ME , +PIAN6,3,523.0368 ,43.45070 ,-74.51780,NWS-COOP , ,Piseco Airport, NY , +SLSN3,3,198.1200 ,43.35380 ,-71.73630,NWS-COOP , ,Salisbury, NH , +SPHN6,3,278.8920 ,42.54810 ,-73.36860,NWS-COOP , ,Stephentown, NY , +STRN6,3,512.3688 ,43.89120 ,-75.03610,NWS-COOP , ,Stillwater Reservoir, NY , +TURM1,3,172.2120 ,44.28200 ,-70.25600,NWS-COOP , ,Turner, ME , +CHFN6,3,154.8384 ,43.05000 ,-73.36610,NWS-COOP , ,Cambridge, NY , +CZYN6,3,38.10000 ,44.87780 ,-73.39730,NWS-COOP , ,Chazy, NY , +CNKN6,3,246.2784 ,43.32030 ,-73.92560,NWS-COOP , ,Conklingville Dam, NY , +DUAN6,3,344.4240 ,42.72940 ,-74.16390,NWS-COOP , ,Duanesburg, NY , +ELAN6,3,74.67600 ,41.72770 ,-74.38000,NWS-COOP , ,Ellenville, NY , +LLFN6,3,282.8544 ,43.06030 ,-74.86860,NWS-COOP , ,Little Falls, NY , +MDDV1,3,149.3520 ,43.98560 ,-73.09440,NWS-COOP , ,Middlebury Airport, VT , +MLLN6,3,231.6000 ,41.84600 ,-73.62020,NWS-COOP , ,Millbrook School, NY , +NBLN6,3,345.0336 ,42.44800 ,-74.46410,NWS-COOP , ,Lansing Manor, NY , +SCAN6,3,26.51760 ,42.86690 ,-74.02900,NWS-COOP , ,Scotia, NY , +SHAN6,3,466.9536 ,42.77830 ,-74.57750,NWS-COOP , ,Sharon Springs, NY , +SOAN6,3,59.74080 ,42.55850 ,-73.83460,NWS-COOP , ,South Albany, NY , +TRBN6,3,88.69680 ,42.94640 ,-74.28860,NWS-COOP , ,Tribes Hill, NY , +WLKN6,3,101.8032 ,41.62320 ,-74.14140,NWS-COOP , ,Walkill, NY , +HOLM1,3,96.01200 ,43.64763 ,-70.67498,NWS-COOP , ,Hollis, ME , +PTFM1,3,171.6024 ,45.89410 ,-69.96440,NWS-COOP , ,Pittston Farm, ME , +GRAN3,3,618.4392 ,44.25800 ,-71.25250,NWS-COOP , ,Pinkham Notch, NH , +BTHM1,3,6.705600 ,43.93160 ,-69.85640,NWS-COOP , ,Bath, ME , +YRMM1,3,7.625000 ,43.80000 ,-70.16670,NWS-COOP , ,Yarmouth, ME , +BRGM3,3,12.20000 ,41.95000 ,-70.95000,NWS-COOP , ,Bridgewater, MA , +HINM3,3,9.150000 ,42.23330 ,-70.91670,NWS-COOP , ,Hingham, MA , +BAKC3,3,208.4832 ,41.84142 ,-73.00863,NWS-COOP , ,Bakersville, CT , +WDBC3,3,175.5648 ,41.55110 ,-73.23140,NWS-COOP , ,Woodbury, CT , +WOTM3,3,394.9750 ,42.18190 ,-73.22360,NWS-COOP , ,West Otis, MA , +SVYM3,3,581.2500 ,42.56873 ,-72.99525,NWS-COOP , ,Savoy, MA , +SUNV1,3,274.0000 ,43.08820 ,-73.12150,NWS-COOP , ,Sunderland, VT , +TOWV1,3,155.5500 ,43.05000 ,-72.70000,NWS-COOP , ,Townshend Lake, VT , +CANV1,3,311.1000 ,44.99140 ,-71.54420,NWS-COOP , ,Canaan (B), VT , +CWLV1,3,122.0000 ,43.97060 ,-73.23110,NWS-COOP , ,Cornwall (C), VT , +EDNV1,3,444.0800 ,44.67560 ,-72.56140,NWS-COOP , ,Eden 2S (AB), VT , +ENOV1,3,128.1000 ,44.86470 ,-72.80890,NWS-COOP , ,Enosburg Falls (A), VT , +HNKV1,3,330.3150 ,44.24080 ,-72.96670,NWS-COOP , ,Hanksville (B), VT , +NPTV1,3,234.8500 ,44.93330 ,-72.20000,NWS-COOP , ,Newport (AB), VT , +NORV1,3,204.3500 ,44.16670 ,-72.66250,NWS-COOP , ,Northfield (AB), VT , +RUTV1,3,189.1000 ,43.61670 ,-72.96670,NWS-COOP , ,Rutland (AB), VT , +SHRV1,3,33.55000 ,44.63310 ,-73.30640,NWS-COOP , ,South Hero (A), VT , +SUTV1,3,450.5000 ,44.61207 ,-72.04674,NWS-COOP , ,Sutton (B), VT , +WDSV1,3,183.0000 ,43.62170 ,-72.45440,NWS-COOP , ,Woodstock (C), VT , +STAC3,3,289.7500 ,41.99720 ,-72.27220,NWS-COOP , ,Stafford Springs, CT , +STRC3,3,198.2500 ,41.80000 ,-72.25000,NWS-COOP , ,Storrs, CT , +CTPN6,3,9.144000 ,40.90710 ,-73.36910,NWS-COOP , ,Centerport, NY , +AHRM3,3,45.72000 ,42.38880 ,-72.53330,NWS-COOP , ,Amherst, MA , +BCNM3,3,170.8000 ,42.28330 ,-72.35000,NWS-COOP , ,Belchertown, MA , +CRLM3,3,167.7500 ,42.61670 ,-72.85000,NWS-COOP , ,Charlmont, MA , +EWAM3,3,6.100000 ,41.76560 ,-70.66940,NWS-COOP , ,East Wareham, MA , +GRFM3,3,40.26000 ,42.57000 ,-72.60000,NWS-COOP , ,Greenfield, MA , +MAYM3,3,65.57500 ,42.43330 ,-71.45000,NWS-COOP , ,Maynard, MA , +NEWM3,3,5.490000 ,42.83330 ,-70.93330,NWS-COOP , ,Newburyport, MA , +FTFR1,3,192.1500 ,41.85640 ,-71.73330,NWS-COOP , ,North Foster, RI , +KGNR1,3,42.70000 ,41.49050 ,-71.54150,NWS-COOP , ,Kingston, RI , +MRLN3,3,356.8500 ,43.11670 ,-72.20000,NWS-COOP , ,Marlow, NH , +MILN3,3,91.50000 ,42.81670 ,-71.65000,NWS-COOP , ,Milford, NH , +WEAN3,3,219.6000 ,43.08330 ,-71.73330,NWS-COOP , ,Weare, NH , +KBPM1,3,6.100000 ,43.35000 ,-70.46670,NWS-COOP , ,Kennebunkport, ME , +WBTM1,3,45.75000 ,43.70000 ,-70.61670,NWS-COOP , ,West Buxton, ME , +NSBM1,3,106.7500 ,43.87910 ,-70.63270,NWS-COOP , ,North Sebago, ME , +NEWM1,3,57.95000 ,44.05000 ,-69.53330,NWS-COOP , ,Newcastle, ME , +WRKM1,3,115.8240 ,44.19240 ,-69.14640,NWS-COOP , ,West Rockport, ME , +BELM1,3,9.150000 ,44.40000 ,-69.00000,NWS-COOP , ,Belfast, ME , +ALBM1,3,97.60000 ,44.48330 ,-69.48330,NWS-COOP , ,Albion, ME , +WTPM1,3,27.74000 ,44.64433 ,-68.84185,NWS-COOP , ,Winterport, ME , +POLM1,3,557.0000 ,44.00693 ,-70.36099,NWS-COOP , ,Poland, ME , +SKOM1,3,50.32500 ,44.76670 ,-69.71670,NWS-COOP , ,Skowhegan, ME , +JKMM1,3,362.9500 ,45.63330 ,-70.26670,NWS-COOP , ,Jackman, ME , +NWSM1,3,146.3040 ,44.63540 ,-70.00020,NWS-COOP , ,New Sharon, ME , +RGLM1,3,542.5440 ,44.98920 ,-70.67220,NWS-COOP , ,Rangeley 2 NW, ME , +HRTM1,3,214.0000 ,44.37470 ,-70.31720,NWS-COOP , ,Hartford, ME , +GLDN3,3,25.92500 ,43.01670 ,-70.83330,NWS-COOP , ,Greenland, NH , +EPPN3,3,48.76800 ,43.01908 ,-71.09951,NWS-COOP , ,Epping, NH , +NWDN3,3,192.3288 ,43.47600 ,-71.17870,NWS-COOP , ,New Durham 3NNW, NH , +NEWN3,3,240.9500 ,43.37690 ,-72.18110,NWS-COOP , ,Newport, NH , +TMWN3,3,158.6000 ,43.86390 ,-71.26610,NWS-COOP , ,Tamworth, NH , +NCON3,3,161.6500 ,44.05440 ,-71.12720,NWS-COOP , ,North Conway, NH , +PLYN3,3,201.3000 ,43.78330 ,-71.65000,NWS-COOP , ,Plymouth, NH , +LICN3,3,266.8750 ,44.05000 ,-71.66670,NWS-COOP , ,Lincoln, NH , +YORN3,3,466.6500 ,44.50000 ,-71.33330,NWS-COOP , ,York Pond, NH , +FCLN3,3,509.6300 ,45.08988 ,-71.23056,NWS-COOP , ,First Connecticut Lake, NH , +BDDN3,3,252.2350 ,43.25810 ,-72.00280,NWS-COOP , ,Bradford, NH , +ERLN3,3,390.4000 ,44.78330 ,-71.13330,NWS-COOP , ,Errol, NH , +LANN3,3,262.3000 ,44.48330 ,-71.58330,NWS-COOP , ,Lancaster, NH , +SRMC3,3,198.2500 ,41.53580 ,-73.48080,NWS-COOP , ,Sherman N Fairfield, CT , +MTCC3,3,54.90000 ,41.40750 ,-72.90330,NWS-COOP , ,Mt Carmel N New Haven, CT , +ANSC3,3,42.70000 ,41.34890 ,-73.06940,NWS-COOP , ,Ansonia N New Haven, CT , +HDMC3,3,48.80000 ,41.46140 ,-72.51970,NWS-COOP , ,Cockaponset N Middlesex, CT , +KLGC3,3,48.80000 ,41.35000 ,-72.59170,NWS-COOP , ,Chatfield Hollow N Middlesex, CT , +MLTC3,3,112.4700 ,41.33030 ,-72.43190,NWS-COOP , ,Middlefield, CT , +JEWC3,3,122.0000 ,41.62970 ,-71.90140,NWS-COOP , ,Jewett City N NewLondon, CT , +NRWC3,3,6.100000 ,41.52690 ,-72.06420,NWS-COOP , ,Norwich N NewLondon, CT , +DXR ,3,138.7750 ,41.37170 ,-73.48440,NWS-COOP , ,Danbury N Fairfield, CT , +BDR ,3,1.525000 ,41.15830 ,-73.12890,NWS-COOP , ,Bridgeport S Fairfield, CT , +MMK ,3,32.02500 ,41.50970 ,-72.82830,NWS-COOP , ,Meriden Markham N New Haven, CT , +HVN ,3,3.050000 ,41.26360 ,-72.88720,NWS-COOP , ,New Haven S New Haven, CT , +GTN ,3,1.525000 ,41.32750 ,-72.04940,NWS-COOP , ,Groton-New London Arpt S New London, CT , +CORM1,3,67.10000 ,44.91670 ,-69.26670,NWS-COOP , ,Corinna, ME , +DANM1,3,115.9000 ,45.66670 ,-67.86670,NWS-COOP , ,Danforth, ME , +EPOM1,3,13.70000 ,44.91389 ,-67.00980,NWS-COOP , ,Eastport, ME , +ELLM1,3,14.94500 ,44.53520 ,-68.42050,NWS-COOP , ,Ellsworth, ME , +FISM1,3,186.0500 ,47.24000 ,-68.61360,NWS-COOP , ,Fort Kent, ME , +JONM1,3,60.96000 ,44.64380 ,-67.64650,NWS-COOP , ,Jonesboro, ME , +MLDM1,3,128.1000 ,45.25000 ,-69.01670,NWS-COOP , ,Milo, ME , +ORNM1,3,35.07500 ,44.90000 ,-68.66670,NWS-COOP , ,Orono, ME , +PORM1,3,250.1000 ,46.80000 ,-68.48330,NWS-COOP , ,Portage, ME , +SQPM1,3,186.0500 ,46.55000 ,-68.33330,NWS-COOP , ,Ashland (Squa Pan Dam), ME , +VANM1,3,139.0800 ,47.16670 ,-67.93330,NWS-COOP , ,Van Buren, ME , +VCBM1,3,128.1000 ,45.56670 ,-67.43330,NWS-COOP , ,Vanceboro, ME , +DOWM1,3,89.67000 ,44.95260 ,-68.27450,NWS-COOP , ,Dow Pines, ME , +RIPM1,3,313.0000 ,45.88060 ,-69.20500,NWS-COOP , ,Ripogenous Dam, ME , +WALM1,3,33.85500 ,44.71670 ,-68.33330,NWS-COOP , ,Waltham, ME , +ANDM1,3,252.9840 ,44.65310 ,-70.79410,NWS-COOP , ,Andover, ME , +CHLV1,3,445.3000 ,44.00390 ,-72.29000,NWS-COOP , ,Chelsea, VT , +SUTM3,3,289.7500 ,42.43000 ,-72.46000,NWS-COOP , ,Shutesbury, MA , +DURM1,3,45.14000 ,44.00030 ,-70.09610,NWS-COOP , ,Durham, ME , +UPTN6,3,22.87500 ,40.87060 ,-72.89140,NWS-COOP , ,Upton, NY , +GYX ,3,115.2900 ,43.89250 ,-70.25420,NWS-COOP , ,Gray, ME , +TANM3,3,33.55000 ,41.95940 ,-71.13440,NWS-COOP , ,Taunton, MA , +STYN6,3,86.92500 ,42.46080 ,-73.75000,NWS-COOP , ,Stuyvesant, NY , +BLAM1,3,183.0000 ,45.26720 ,-69.58420,NWS-COOP , ,Piscataquis River at Blanchard , +ABTM1,3,279.0750 ,45.18470 ,-69.45280,NWS-COOP , ,Kingsbury Stream nr Abbot Village , +GLSM1,3,83.57000 ,45.17310 ,-67.76830,NWS-COOP , ,Grand Lake Stream at Grand Lake , +SBSM1,3,156.1600 ,46.13930 ,-68.63370,NWS-COOP , ,Seboeis R nr Shin Pond 5NW , +GRNM1,3,89.97500 ,45.72480 ,-68.58700,NWS-COOP , ,East Branch Penobscot River at Grindsto , +WENM1,3,38.43000 ,45.23530 ,-68.64270,NWS-COOP , ,Penobscot River at West Enfield , +MATM1,3,66.18500 ,45.50050 ,-68.30370,NWS-COOP , ,Mattawamkeag River nr Mattamkeag , +DVLM1,3,16.77500 ,44.90050 ,-67.24270,NWS-COOP , ,Dennys River at Dennysville , +EPPM1,3,38.73500 ,44.70000 ,-67.78330,NWS-COOP , ,Pleasant River near Epping , +CFDM1,3,12.81000 ,44.60480 ,-67.93500,NWS-COOP , ,Narraguagus River at Cherryfield , +WSLM1,3,125.0500 ,44.93480 ,-67.73470,NWS-COOP , ,Old Stream at Wesley , +MACM1,3,16.16500 ,44.72050 ,-67.51920,NWS-COOP , ,Machias River at Whitneyville , +MASM1,3,161.6500 ,46.52020 ,-68.37050,NWS-COOP , ,Aroostook River nr Masardis , +BARM3,3,277.3680 ,42.38806 ,-72.54083,NWS-COOP , ,Barre Falls, MA , +NASN3,3,39.62400 ,42.79139 ,-71.47361,NWS-COOP , ,Nashua, NH , +WPSN3,3,182.8800 ,42.03361 ,-72.43278,NWS-COOP , ,Walpole, NH , +GSNM3,3,435.8640 ,42.44333 ,-71.78917,NWS-COOP , ,Goshen, MA , +RRHN6,3,22.60000 ,40.95840 ,-72.71340,NWS-COOP , ,Riverhead, NY , +UVDV1,3,139.6000 ,43.79150 ,-72.25720,NWS-COOP , ,Union Village Dam, VT , +GALV1,3,402.0000 ,44.57740 ,-71.78370,NWS-COOP , ,Gallup Mills, VT , +JAYV1,3,569.7000 ,44.93760 ,-72.50440,NWS-COOP , ,Jay Peak, VT , +BBOV1,3,79.60000 ,42.84100 ,-72.54850,NWS-COOP , ,Brattleboro, VT , +BLDM1,3,179.2200 ,45.34070 ,-67.98750,NWS-COOP , ,Bald Mountain, ME , +ENGN6,3,2.740000 ,40.95460 ,-73.39869,NWS-COOP , ,Eatons Neck, NK , +KKJM1,3,379.7800 ,45.67288 ,-69.44633,NWS-COOP , ,Kokadjo, ME , +CUXA1,3,250.0000 ,34.19539 ,-86.79636,NWS-COOP , ,Cullman, AL , +GUXA1,3,193.0000 ,34.33374 ,-86.31564,NWS-COOP , ,Guntersville, AL , +LCXA1,3,183.0000 ,34.66021 ,-87.34628,NWS-COOP , ,Lawrence County Airport, AL , +VHXA1,3,305.0000 ,34.56527 ,-85.61706,NWS-COOP , ,Valley Head, AL , +RUXA1,3,221.0000 ,34.45340 ,-97.71020,NWS-COOP , ,Russellville Municipal Airport, AL , +SCXA1,3,188.0000 ,34.69410 ,-85.99800,NWS-COOP , ,Scottsboro Municipal Airport, AL , diff --git a/office/regression/000_000102.txt b/office/regression/000_000102.txt new file mode 100644 index 0000000..d511004 --- /dev/null +++ b/office/regression/000_000102.txt @@ -0,0 +1,2502 @@ +Instruction manual, part 4: CLASSIFICATION AND CODING INSTRUCTIONS FOR +DEATH RECORDS, 1999-2001 + + + + + + + + + + + + + + + + + + + + + + + + + + +______________________________________________________________________ + +This instruction manual was prepared by the Division of Vital Statistics. Questions +regarding this manual and other related Vital Statistics Cooperative Program activities should +be directed to the Data Acquisition and Evaluation Branch, Division of Vital Statistics, +National Center for Health Statistics, P.O. Box 12214, Research Triangle Park, North +Carolina 27709. Questions concerning analysis of mortality data should be referred to the +Mortality Statistics Branch, Division of Vital Statistics, National Center for Health Statistics, +6525 Belcrest Road, Presidential Building, Room 820, Hyattsville, Maryland 20782. + + + CONTENTS + + Page +Section I - Introduction . . . . . . . . . . . . . . . . . . . . . . . . . .1 + +Section II - General Procedures for Electronic Files . . . . . . . . . . . 1 + Receipts . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 + Processing. . . . . . . . . . . . . . . . . . . . . . . . . . . 2 + +Section III - File Layout and Coding Instructions. . . . . . . . . . . . . 2 + 1999-2001 Mortality-Demographic File Layout . . . . . . . . . . .3 + Receipt Date . . . . . . . . . . . . . . . . . . . . . . . . . 4 + State File Number . . . . . . . . . . . . . . . . . . . . . . . .4 + Name of Decedent . . . . . . . . . . . . . . . . . . . . . . . .4 + Alias or Cross Reference Indicator. . . . . . . . . . . . . . . .7 + Sex . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 + Date of Death . . . . . . . . . . . . . . . . . . . . . . . . . 8 + Social Security Number . . . . . . . . . . . . . . . . . . . . 9 + Age . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 + Date of Birth . . . . . . . . . . . . . . . . . . . . . . . . . 12 + Decedent's Birthplace . . . . . . . . . . . . . . . . . . . . . 12 + Type of Place of Death . . . . . . . . . . . . . . . . . . . . 13 + Geographic Place of Death . . . . . . . . . . . . . . . . . . . 15 + Marital Status . . . . . . . . . . . . . . . . . . . . . . . . 15 + Occupation of Decedent . . . . . . . . . . . . . . . . . . . . 16 + Type of Industry. . . . . . . . . . . . . . . . . . . . . . . . 16 + Residence of Decedent . . . . . . . . . . . . . . . . . . . . . 17 + Hispanic Origin of Decedent . . . . . . . . . . . . . . . . . . 24 + Race . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 + Education of Decedent . . . . . . . . . . . . . . . . . . . . . 30 + Father's Surname . . . . . . . . . . . . . . . . . . . . . . . 32 + Injury at Work. . . . . . . . . . . . . . . . . . . . . . . . . 32 + Underlying Cause. . . . . . . . . . . . . . . . . . . . . . . . 32 + Autopsy . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32 + Birth Certificate Number. . . . . . . . . . . . . . . . . . . . 32 + Year of Birth . . . . . . . . . . . . . . . . . . . . . . . . . 33 + State of Birth. . . . . . . . . . . . . . . . . . . . . . . . . 33 + + Table of Contents - Continued + + Page + +Appendix A - Geographic Codes for State of Death, Residence and Birthplace . . . . . 34 +Appendix B - Other Entries Reported on Records and Code for Race . . . . . 36 +Appendix C - Indian Tribes in the United States, Canada, and Mexico. . . . 41 +Appendix D - List of Major Cities in the United States and the States + in Which They Are Located. . . . . . . . . . . . . 45 +Appendix E - Interpretations of Atlas Notations . . . . . . . . . . . . . 46 +Appendix F - Largest City and Code By State of Residence . . . . . . . . . 47 +Appendix G - Other Entries Reported on Records and Code for Hispanic Origin. . . . . 49 +Appendix H - Other Entries Reported on Records and Code for Education. . . . . . . . 50 +Appendix I - Sampling Rate . . . . . . . . . . . . . . . . . . . . . . . 51 + +Illustration 1 - Certificate of Death. . . . . . . . . . . . . . . . . . . 52 +Vital Statistics Instruction Manuals . . . . . . . . . . . . . . . . . . . 54 + + + + + CLASSIFICATION AND CODING INSTRUCTIONS + FOR DEATH RECORDS, 1999-2001 + + + + +Section I - Introduction + + This manual documents specifications for coding and key entry of statistical items that will +be tabulated from the death certificate by the National Center for Health Statistics (NCHS). +Primarily, these specifications are used by 54 registration areas of the United States (50 states, District of Columbia, New York City, Puerto Rico and The Virgin Islands) that submit +data to NCHS in electronic form through the Vital Statistics Cooperative Program (VSCP). Under +the terms of the VSCP contracts with NCHS, the registration area must incorporate NCHS +specifications into their own procedures so that the resultant data files meet the needs of both +NCHS and the registration area. Changes effective with 1999 are in bold print. + + +Section II - General Procedures for Electronic Files + + A. Receipts + + All registration areas provide coded data to NCHS in electronic form (tapes, + diskettes and PC to PC). These files include all of the deaths registered within their + jurisdiction for each calendar year. In general, data are transmitted on a monthly + basis (but twice monthly is preferred). Transmittals take place at regular intervals + and contain any and all records received and initially processed in the state office + since the last transmittal to NCHS regardless of the month of the occurrence of the + event. A record need not be "perfect" to qualify for transmittal. Each regular data + transmittal shall contain all replacement records processed to date incorporating + updated information from any source. For purposes of full utilization and release + of the data, states are expected to transmit the majority of records within six months + of occurrence and a complete and final version of all records by July 31. + + + + B. Processing + + As the files are received at NCHS-RTP, they are automatically checked for + completeness, individual item code validity, and unacceptable inconsistencies + between data items. The registration area is notified of any problems. In addition, + NCHS staff review the files on an ongoing basis to detect problems in overall + quality such as inadequate reporting for certain items, failure to follow NCHS + coding rules, and systems and software errors. Traditionally, quality assurance + procedures have been limited to review and analysis of differences between the + NCHS and registration area code assignments for a small sample of records. In + recent years, this procedure has been augmented by analyses of year to year and + area to area variations in the data. These analyses are based on preliminary + tabulations of the data that are cumulated on a year to date basis each month. All + differences that are judged to have consequences for quality and completeness are + investigated by NCHS. In the review process, statistical tests are used to call initial + attention to differences for possible follow-up. As necessary, registration areas are + informed of differences encountered in the tables and asked to verify the counts or + to determine the nature of the differences. Missing records (except those + permanently voided) and other problems detected by NCHS should be resolved and + corrections transmitted to NCHS in the same manner as for those corrections + identified by the registration area. + +Section III -File Layout and Coding Instructions + + This section provides the code structure, coding instructions, and output file locations for each + item in the national data set. + + Changes were made to the items Date of Death (Year) and Date of Birth (Year) effective in 1999 + to expand the fields to four digits. The old locations for the years have been converted to + "Filler" and should be blank. + + Changes were also made to the items Linked File Year of Birth and Linked File State of Birth + effective in 1999. The Linked File Year of Birth was expanded to four digits, causing the + locations for Linked File State of Birth to change. + + + +Items File Items File + Location Location + +Receipt Date (NCHS Use Only) 1 - 4 Education 96 - 97 +Certificate Number 5 - 10 Father's Surname 98 - 116 +Name of Decedent Injury at Work 117 + Last 11 - 30 Underlying Cause (Deleted 118 -121 + First 31 - 45 effective 1994) + Middle Initial 46 Autopsy (Deleted Effective 1995) 122 +Alias 47 Linked File: Birth Certificate 123-128 +Sex 48 Number +Date of Death Linked File: Year of Birth 129-132 + Month 49 - 50 Linked File: State of Birth 133-134 + Day 51 - 52 Date of Death Year 135-138 +Filler 53 - 54 Date of Birth Year 139-142 +Social Security No. 55 - 63 +Age + Units 64 + Number Units 65 - 66 +Date of Birth + Month 67 - 68 + Day 69 - 70 +Filler 71 - 73 +State of Birth 74 - 75 +Type of Place of Death 76 +Place of Death + State 77 - 78 + County 79 - 81 +Marital Status 82 +Occupation of Decedent 83 - 85 +Type of Industry 86 - 88 +Place of Residence + State 89 - 90 + County/city 91 - 93 +Hispanic Origin 94 +Race 95 + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +RECEIPT DATE 1 January . . . . . . . . . .1 Computer generated. For NCHS + February. . . . . . . . . .2 use only. + Month March . . . . . . . . . . .3 + April . . . . . . . . . . .4 States submitting data in the NCHS + May . . . . . . . . . . . .5 format should blank NCHS positions + June. . . . . . . . . . . .6 1-4. + July. . . . . . . . . . . .7 + August. . . . . . . . . . .8 + September . . . . . . . . .9 + October . . . . . . . . . .0 + November. . . . . . . . . .- + December. . . . . . . . . .& + + Day 2-3 01-31 + + Year 4 Last digit + +STATE FILE 5-10 Left zero fill +NUMBER + +NAME OF +DECEDENT +(Applicable to +NDI only) + +Last Name 11-30 Alpha, left justified State record length may vary for + name. If separate fields are not +First 31-45 Alpha, left justified provided for components of name, + this is acceptable so long as there is +Middle 46 Alpha or blank a defined designation between each + component. + + Surnames + + 1. If entire surname will not fit in + the field, truncate it. + + + +Item Output Code Structure Coding Instructions + Position(s) + +NAME OF 2. If the surname has space or +DECEDENT - apostrophes following prefixes, such +Continued as Mac Pherson, O'Tolle, O'Mally, + McDougal, remove the apostrophes + and do not space between the prefix + and the name. + + 3. If more than one surname + given, separated by a space or + hyphen, key each name in the + surname field, separated by space. + Key a separate cross reference + record for each name after the first. + + 4. If there appears to be more than + one possible spelling of a surname, + key the most likely version in the + record. + + 5. If the maiden name is given in + addition to the married surname + (Mary Jane Smith - nee Jones), drop + the maiden name (Jones). + + 6. Suffixes or generation identifiers + are to be ignored, e.g., Jr., Sr., + 3rd., II. + + 7. Religious names, e.g., + Sister Mary Lawrence, should be + keyed as follows: + Last Name: Lawrence + First Name: Sister Mary + Middle Initial: Blank + + First Name and Middle Initial + + 1. If the entire first name will not fit + in the field, truncate it. + + + +Item Output Code Structure Coding Instructions + Position(s) + +NAME OF 2. If two first names and a +DECEDENT - middle name are given, key both +Continued first given names (with a space + between each name) in the first + name field and key the middle initial + in the middle initial field. + + Ex.: Mary Ann Louise Jones + Key: Last Name: Jones + First Name: Mary Ann + Middle Initial: L + + Ex.: Mary Ann Jones + Key: Last Name: Jones + First Name: Mary + Middle Initial: A + + 3. If two middle initials are given, + key first middle initial and ignore the + second initial, e.g., Charles M. L. + King; key Charles M King. + + 4. Entries of "Baby Girl" or "Baby + Boy" are to be keyed in the first + name field. + + 5. Entries with first initial and + middle name, e.g., E. Charles Jones, + should be keyed as initial for first + name and initial for middle name. + + + + +Item Output Code Structure Coding Instructions + Position(s) + +ALIAS OR 47 1 or blank This data element will be +CROSS used in the NDI if the State +REFERENCE currently has a procedure. +INDICATOR However, if the State does not + provide for an alias or cross +(Applicable to reference in its procedures, this item +NDI only) is not required. When this item is + used: + + 1. If more than one surname is + given, separated by a space or a + hyphen, key each name in the + surname field separated by a space. + Key a separate record for each name + and enter the alias indicator in all + records after the first. + + 2. If the surname includes an "Also + known as...", key a separate cross + reference record for each "Also + known as" name and enter the alias + indicator in each record after the + first. + + First Name and Middle Initial + + If the first name includes an "Also + known as...", key a separate cross + reference record for each "Also + known as" name and enter the alias + indicator in each record after the + first. + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +SEX 48 Male. . . . . . . . . . . .1 If sex is not clearly identified, code + Female. . . . . . . . . . .2 from name. If name does not + Not classifiable. . . . . .9 establish sex clearly, code "9." + + + + +DATE OF DEATH + MONTH 49-50 January . . . . . . . . . 01 If estimated date of death and date + February. . . . . . . . . 02 found are given, both occurring in + March . . . . . . . . . . 03 the same data year, enter estimated + April . . . . . . . . . . 04 date of death. + May . . . . . . . . . . . 05 + June. . . . . . . . . . . 06 If data year is different from + July. . . . . . . . . . . 07 estimated date of death and date + August. . . . . . . . . . 08 found, enter the date within the data + September . . . . . . . . 09 year being processed. + October . . . . . . . . . 10 + November. . . . . . . . . 11 If "date the person was last seen" + December. . . . . . . . . 12 and the "date found" are given, both + Not Classifiable. . . . . 99 occurring in the same data year, + enter the "date the person was last + DAYS 1-52 01-31 seen." + Not Classifiable. . . . . 99 + If data year is different for the "date + the person was last seen" and the + "date found," enter the date within + the data year being processed. + + YEAR 135-138 Enter four digit year. Year of death must be reported. + + + +Filler 53-54 Blank + + + + + + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +SOCIAL 55-63 Numeric or blank. 1. Must have nine digits. +SECURITY +NUMBER 2. If less than nine or partial number, + skip the field. +(Applicable to +NDI only) 3. If more than nine digits enter the + first nine digits. + + 4. If more than one Social Security + number is reported, enter the first + number in the original record. Key a + separate record for each additional + SSN and enter the alias indicator in + each record after the first. + + 5. If blank, skip. + + + + + + + + + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +AGE + + Unit 64 Years - less Enter highest order of age units. + than 100. . . . . . . . . 0 + Years - 100 or + more. . . . . . . . . . . 1 + Months. . . . . . . . . . 2 + Weeks . . . . . . . . . . 3 + Days. . . . . . . . . . . 4 + Hours . . . . . . . . . . 5 + Minutes . . . . . . . . . 6 + Not Classifiable. . . . . 9 + +Number Of Units 65-66 Enter as stated + Not Classifiable. . . . .99 1. When age is stated as 100 years + or more, unit code 1 represents the + first digit of the number of units. + + Example: Age 105 - code 1 for unit + and 05 for number of units. + + 2. When age is stated as 12 years or + less, compare date of birth and date + of death to insure assignment of the + correct unit code since months are + sometimes erroneously reported as + years. + + 3. If entries of "few minutes" or + "few hours" are given, code to + appropriate unit and enter 99 for + number of units. + + 4. If age is not stated, derive the + age by reference to date of birth and + date of death. If date of birth is not + given but unit is indicated as other + than years, code the appropriate unit + and enter 99 for number of units. If + unit is indicated as years, code unit 9 + and number of units 99. + + +Item Output Code Structure Coding Instructions + Position(s) +AGE - Cont. + + + 5. If age cannot be determined but + entries of "newborn," "infant," etc., + appear on the certificate indicating + the decedent was under 1 year old, + code unit 5 and number of units 99. + + 6. If age is not stated and date of + birth and date of death are same, + consider decedent under 1 year old + and code unit 5 and number of + units 99. + + 7. Fractions given in number of + units should be ignored. + + 8. If number of units are given with + approximately, about, etc., enter as + stated. + + 9. If the number of units is given as + a range, code the minimum of the + range. + + Example: Age 1-2 hours - code the + number of units as 01. + + + + + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +DATE OF +BIRTH + + Month 67-68 January . . . . . . . . . 01 Code as reported. + February. . . . . . . . . 02 + March . . . . . . . . . . 03 + April . . . . . . . . . . 04 + May . . . . . . . . . . . 05 + June. . . . . . . . . . . 06 + July. . . . . . . . . . . 07 + August. . . . . . . . . . 08 + September . . . . . . . . 09 + October . . . . . . . . . 10 + November. . . . . . . . . 11 + December. . . . . . . . . 12 + Not Classifiable. . . . . 99 + + Day 69-70 01-31 + Not Classifiable . . . . .99 + + Year 139-142 Enter four digit year. + Not Classifiable . . . .9999 + + +Filler 71-73 Blank + +DECEDENT'S 74-75 State. . . . . . . . . 01-51 Refer to Appendix A for state codes. +BIRTHPLACE Puerto Rico. . . . . . . .52 +(State) Virgin Islands . . . . . .53 When a county or city entry is + Guam.. . . . . . . . . . .54 reported and State of Birth is not + Canada . . . . . . . . . .55 specified, refer to the State of + Cuba . . . . . . . . . . .56 occurrence, Part 8 Instruction + Mexico . . . . . . . . . .57 Manual, Vital Records Geographic + Remainder of Classification, 1995, and code to + World. . . . . . . . . . .59 State of occurrence if the county or + Not classifiable . . . . .99 city is listed in that State. If the + named city is not listed as an + incorporated city for State of + Occurrence, refer to the List of + Major Cities, Appendix D, and code + the State indicated for that city. If + not in List of Major Cities, code the + State when the given city makes the + State obvious (e.g., Richmond - + code Virginia.) + + +Item Output Code Structure Coding Instructions + Position(s) + +TYPE OF 76 Hospital 1. If the checkbox identity for place +PLACE OF Inpatient. . . . . . . . . 1 of death is not on the certificate, +DEATH Outpatient/ER. . . . . . . 2 determine the type of place of death + DOA. . . . . . . . . . . . 3 using the facility name and patient + Status unknown . . . . . . 4 status information. Apply the same + rules as if the checkbox detail was + Other available. + Nursing home . . . . . . . 5 + Residence of 2. If place of death is blank, refer to + Decedent . . . . . . . . . 6 the facility name and code 4 unless + Other. . . . . . . . . . . 7 the facility name identifies the + Not Classifiable . . . . . 9 facility as other than hospital. + + 3. Code 5 if place of death is blank + or reported as "other" and the + named facility is a long-term care + facility that provides patient care + such as retirement center, manor, + old age home, rest home, restoration + center, convalescent home, etc. + + 4. Code 7 for entries such as + doctor's office, orphanage, prison + wards, public building, etc. + + 5. Prison hospitals are to be + coded "1." + + 6. Code 1 if patient status is + reported as "in hospital," "IN." "IH." + "nursery," "ICU," "surgery," or + "operating room." + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +TYPE OF 7. Street addresses are to +PLACE OF be coded as follows: +DEATH - Cont. + Code 6 if place of death + street address and + residence street address + is same. + + Code 7 if place of death + street address and + residence street address + is different. + + 8. If "hospice" is specified as + "other," refer to facility name. If + facility name identifies hospital, + code 1; nursing home or other long + term care facility, code 5; + otherwise, code 7. + + + + + + + + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +GEOGRAPHIC +PLACE OF +DEATH + + State 77-78 Refer to Appendix A. Enter appropriate code. + + County 79-81 Refer to Part 8 Instruction + Manual, Vital Records + Geographic Classifi- + cation, 1995. Use + code designated for + "Balance of County" or + "Entire County." Code + given for co-extensive or + independent cities is to be + used as county code. + +MARITAL 82 Married . . . . . . . . . .1 Other Entries +STATUS Never married, Annulled. . . . . . . . . . . . .2 + Single. . . . . . . . . . .2 Separated . . . . . . . . . . . .1 + Widowed . . . . . . . . . .3 Common law marriage . . . . . . .1 + Divorced. . . . . . . . . .4 Indian marriage . . . . . . . . .1 + Not Classifiable. . . . . .9 Never . . . . . . . . . . . . . .2 + NM. . . . . . . . . . . . . . . .2 + No. . . . . . . . . . . . . . . .9 + None. . . . . . . . . . . . . . .2 + Not married . . . . . . . . . . .9 + Unmarried . . . . . . . . . . . .9 + Yes . . . . . . . . . . . . . . .1 + + If marital status is blank and age of + decedent is less than 12 years, + code "2." + + + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +OCCUPATION 83-85 See Industry and +OF DECEDENT Occupation Coding for + Death Certificates, Part 19 + (1998) and Alphabetical + Index of Industries and + Occupations, Part 19B + (1998) + + Not Classifiable . . . .999 + + +TYPE OF 86-88 Not Classifiable . . . .990 +INDUSTRY + + + + + + + + + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +RESIDENCE OF +DECEDENT + + State 89-90 Refer to Appendix A. Enter appropriate code. + + County/City 91-93 Refer to Part 8 Instruction Rules for use of coding table (pages + Manual, Vital Records 20-23) for Place of Residence of + Geographic Classification, Decedent. + 1995. (Use Section II only + when certificates contain Apply rules in sequential order. + no county entry.) + of table and stop. If "rural" is entered, code by line 2 + + If "rural" is not entered, find line + item that fits reporting on certificate + and heading that describes reporting + in "City Limits Item." Code + according to instructions given when + horizontal line and vertical column + intersect. + + Example + + City but no county entry and outside + of city limits. + + Select line 6A and column(b). + Instruction where these intersect is + to code "Balance of County 1/." + + Additional instructions: + + Disregard the name of a state, + country, or city entered on the + address line when an entry is + reported in the space provided for + these items. + + + + +Item Output Code Structure Coding Instructions + Position(s) + +RESIDENCE OF When the state, county, or city entry +DECEDENT - has obviously been typed on the +Cont. incorrect line, consider the entry + when classifying residence. + + If a city entry is reported with + North, East, South, or West, check + the atlas to determine if it is a + separate geographic place or an + inclusion of the named city. If the + named place is not listed in the atlas, + consider the entry to be an inclusion + of the city named (e.g., East Durham + is not listed in the atlas, and, + therefore, is considered to be an + inclusion of the city of Durham). + + If county is reported and two cities + are reported on the city line, check + atlas to determine if one is an + inclusion. If not, code to city with + the larger population. + + If no county entry is reported and + the city is not listed in the Part 8 + Instruction Manual, Vital Records + Geographic Classification, 1995, + Section II, refer to the atlas to + determine county. If atlas indicates + city is listed in two counties, refer to + the U.S. Census Population 1990, + "Number of Inhabitants" and code to + the county containing the largest + part of the city's population. + + If New York City is reported as + place of residence and no borough is + reported, code to Manhattan + Borough. + + + + + + +CODING RULES TABLE FOR PLACE OF RESIDENCE OF DECEDENT +_______________________________________________________________________________________ + (a) (b) + Inside City Limits Inside City Limits + Yes No + +________________________________________________________________________________________ +1. Blank County/City of death 2/ County/City of death 2/ +________________________________________________________________________________________ +2. "Rural" entry Balance of County Balance of County +________________________________________________________________________________________ +3. City listed in Geographic City Balance of County + Code Manual (includes + independent and coextensive + cities.) +________________________________________________________________________________________ +4. City not listed in Balance of County Balance of County + Geographic Code Manual +________________________________________________________________________________________ +5. County, but no city entry Balance of County Balance of County +________________________________________________________________________________________ +6. State and city but no county + entry and State is same as + State of Occurrence. + A. City listed in Geographic City Balance of County 1/ + Code Manual +________________________________________________________________________________________ + B. City not listed in Balance of County 1/ Balance of County 1/ + Geographic Code Manual. +________________________________________________________________________________________ + C. Atlas gives 2 or more County of death County of death + cities by same name in + different counties +________________________________________________________________________________________ + D. City not in atlas County/City of death 2/ County/City of death 2/ +________________________________________________________________________________________ +7. State and city, but no county + entry and State is different + from State of Occurrence + A. City listed in City Balance of County 1/ + Geographic Code Manual +__________________________________________________________________________________________ + + 1/ Use atlas and other reference aids to establish county and/or population. See Appendix E for rules on + interpreting atlas notations. + + If independent city or coextensive, use Section II, Part 8 Instruction Manual, Vital + Records Geographic Classification, 1995. + + +CODING RULES TABLE FOR PLACE OF RESIDENCE OF DECEDENT - continued +_________________________________________________________________________________________ + (c) (d) + Inside City Limits Item Inside City Limits Item + Not reported or item not on certificate Not reported or item not on certificate + certificate but street address reported and no street address reported + + County/City of death 2/ County/City of death 2/ + + Balance of County Balance of County +_________________________________________________________________________________________ + Balance of County if indicated as "rural," City + "RFD," "star route," "rural delivery." + All others, code to City. +_________________________________________________________________________________________ + Balance of County Balance of County + +_________________________________________________________________________________________ + Balance of County Balance of County +_________________________________________________________________________________________ + Balance of County 1/ if indicated as "rural," City + "RFD," "star route," "rural delivery." + All others, code to City. + + +_________________________________________________________________________________________ + Balance of County 1/ Balance of County 1/ + +_________________________________________________________________________________________ + + County of death County of death + +_________________________________________________________________________________________ + County/City of death 2/ County/City of death 2/ +_________________________________________________________________________________________ + + Balance of County 1/ if indicated as City + "rural," "RFD," "star route," "rural + delivery." All others, code to City. + +_________________________________________________________________________________________ + +2/ Use same rules as coding city and county of residence. + + +CODING RULES TABLE FOR PLACE OF RESIDENCE OF DECEDENT - continued +____________________________________________________________________________________________ + (a) (b) + Inside City Limits Inside City Limits + Yes No + +____________________________________________________________________________________________ +7. (Continued) + + B. City not listed in Balance of County 1/ Balance of County 1/ + Geographic Code Manual +____________________________________________________________________________________________ + C. Atlas gives 2 or more City with largest City with largest + cities by same name in population population + different counties +____________________________________________________________________________________________ + D. City not in atlas Largest City of State Largest City of State + of Residence 3/ of Residence 3/ +____________________________________________________________________________________________ +8. State only specified with County/City of death 2/ County/City of death 2/ + no city or county entry and + State is same as State + of Occurrence +____________________________________________________________________________________________ +9. State only specified with no Largest City of State Largest City of State + city or county entry and of Residence 3/ of Residence 3/ + State is different from + State of Occurrence +____________________________________________________________________________________________ +10. A. Foreign Country - Code in data positions 89-90. Leave data positions + 91-93 blank. + 55 Canada + 56 Cuba + 57 Mexico + 59 Remainder of World + + B. U.S. Possessions - Code in data positions 89-90. Leave data positions + 91-93 blank. + 52 Puerto Rico + 53 Virgin Islands + 54 Guam +____________________________________________________________________________________________ +11. Two State entries County/City of death 2/ County/City of death 2/ +____________________________________________________________________________________________ +12. City and County entry but no County/City of death 2/ County/City of death 2/ + State entry +____________________________________________________________________________________________ + 1/ Use atlas and other reference aids to establish county and/or population. See Appendix E for rules on + interpreting atlas notations. + + If independent city or coextensive, use Section II, Part 8 Instruction Manual, Vital Records Geographic + Classification, 1995. + + + +CODING RULES TABLE FOR PLACE OF RESIDENCE OF DECEDENT - continued +_________________________________________________________________________________________ + (c) (d) + Inside City Limits Item Inside City Limits Item + Not reported or item not on certificate Not reported or item not on certificate + but street address reported and no street address reported +_________________________________________________________________________________________ + Balance of County 1/ Balance of County 1/ + + + +_________________________________________________________________________________________ + City with largest population City with largest population + + +_________________________________________________________________________________________ + Largest City of State of Largest City of State of + Residence 3/ Residence 3/ +_________________________________________________________________________________________ + County/City of death 2/ County/City of death 2/ + + + +_________________________________________________________________________________________ + Largest City of State Residence 3/ Largest City of State of Residence 3/ + + + +_________________________________________________________________________________________ + + + + + + + + + + + + +_________________________________________________________________________________________ + County/City of death 2/ County/City of death 2/ +_________________________________________________________________________________________ + County/City of death 2/ County/City of death 2/ + +_________________________________________________________________________________________ +2/ Use same rules as coding city and county of residence. + +3/ See Appendix F for city. + + + + +Item Output Code Structure Coding Instructions + Position(s) +HISPANIC 94 Non-Hispanic. . . . . . . .0 When there is neither a "Hispanic +ORIGIN OF Mexican . . . . . . . . . .1 Item" nor an "Ancestry Item" on +DECEDENT Puerto Rican. . . . . . . .2 the certificate then code 9. + Cuban . . . . . . . . . . .3 + Central or South Refer to Appendix G for additional + American (Spanish speaking Hispanic entries and codes as well + countries only) . . . . . .4 as specific entries for categories 4 + Other and unknown and 5. + Hispanic. . . . . . . . . .5 + Not Classifiable. . . . . .9 For registration areas having the + "Hispanic" item, follow + instructions 1-8: + + 1. If "No" is reported with a + specified Hispanic entry in + Appendix G, code the entry. + + 2. If "No" is reported with no + specified Hispanic entry in + Appendix G, code 0. + + 3. If "Yes" is reported with a + specified Hispanic entry, assign the + appropriate code of 1-5. + + 4. If "Yes" is reported with no + specified Hispanic entry in + Appendix G, and entries for race + item are reported as Mexican, + Cuban, or Puerto Rican or any + other Hispanic entry in + Appendix G. assign the appropriate + code of 1-5. + + + + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +HISPANIC 5. If "Yes" is reported with no +ORIGIN OF specified Hispanic entry in +DECEDENT - Appendix G and there are no +Cont. Hispanic entries in race item, as + identified in 4 above, refer to + birthplace. If the birthplace is + listed in Appendix G then assign + the appropriate code of 1-5. If + birthplace is not listed in + Appendix G, code 5. + + + 6. If more than one entry is + reported code first-listed Hispanic + entry, e.g., for Mexican-Puerto + Rican, code 1. + + 7. If blank and entries for + race item are reported as + Mexican, Cuban, or Puerto + Rican or any Hispanic entries in + Appendix G, assign the appropriate + code of 1-5. + + 8. If blank and there are no + Hispanic entries in race item, as + identified in 7 above, refer to + birthplace. If the birthplace is + listed in Appendix G, then assign + the appropriate code of 1-5. + Otherwise, code 9. + + For registration areas having an + "ancestry" item, follow instructions + 9-12: + + 9. For all entries shown in + Appendix G, assign the appropriate + code of 1-5. For all other entries + (including American), assign the + code to 0. + + + + +Item Output Code Structure Coding Instructions + Position(s) +HISPANIC 10. If more than one entry is +ORIGIN OF reported, code first listed Hispanic +DECEDENT - entry, e.g., for Mexican-Puerto +Cont. Rican, code 1; for Irish-Cuban, + code 3. + + 11. If blank and entries for the + race item are reported as Mexican, + Cuban, or Puerto Rican or any + Hispanic entry in Appendix G, + assign the appropriate code of 1-5. + + 12. If blank and there are no + Hispanic entries in the race item, as + identified in 11 above, refer to + birthplace. If the birthplace is + listed in Appendix G, assign the + appropriate code of 1-5. + Otherwise, code 9. + + + + + + + + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +RACE 95 White The expanded Asian and Pacific + includes Mexican, Islander categories of A, B, C, D, + Puerto Rican, and and E are required only for the + other Caucasian. . . . . 1 following funded registration areas: + California, Hawaii, Illinois, New + Black. . . . . . . . . . . 2 Jersey, New York State, + New York City, Texas and + Indian Washington. The remaining + North American registration areas may choose to + Central American use the expanded categories or + South American continue coding Asian Indian, + Eskimo Korean, Samoan, Vietnamese and + Aleut. . . . . . . . . . 3 Guamian to 8. + + Asian or Pacific Islander Refer to Appendix B for other + Chinese. . . . . . . . . 4 reported race entries. + Japanese . . . . . . . . 5 + Hawaiian (includes Refer to Appendix C for names of + part-Hawaiian) . . . . 6 Indian tribes in the U.S., Canada, + Filipino . . . . . . . . 7 and Mexico. + Other. . . . . . . . . . 8 + Asian Indian . . . . . . A 1. If Hawaiian is reported with any + Korean . . . . . . . . . B other race, code Hawaiian. + Samoan . . . . . . . . . C + Vietnamese . . . . . . . D 2. If more than one race is reported + Guamian. . . . . . . . . E (except Hawaiian), code the first + race listed. + Multi-racial . . . . . . . F + 3. If more than one race is reported + Other Entries. . . . . . . 0 with percentages or fractions given + + Not Reported . . . . . . . 9 (except Hawaiian), code the race + having the higher percentage or + fraction. If the percentages or + fractions are equal, code the first + race listed. + + 4. If more than one race is reported + with a hyphen but without + percentages (except Hawaiian), + code the first race listed. + + + + +Item Output Code Structure Coding Instructions + Position(s) + +RACE - Cont. 5. If entry is "Col.," + "N," "Negro," "Color(ed)," + "B," "Brown," "A.A." + "Afro-American," or "African + American," code 2 (Black). + + 6. If the racial entry is + "Asian," "Yellow," "Oriental," or + "Mongolian," and birthplace is + given as China, Japan, the + Philippines, Hawaii, India, + Korea, Vietnam, Samoa, or + Guam, code to the appropriate + group (code 4-7 or A-E if using the + expanded code structure or code + 4-8 if not using the expanded code + structure). If birthplace is not one + of these places, code 8 (other + Asian or Pacific Islander). + + 7. If the racial entry is "Indian," + and birthplace is not in North, + Central, or South America + (including Caribbean Islands), code + A (Asian Indian) if using the + expanded code structure or code 8 + (other Asian or Pacific Islander) if + not using the expanded code + structure. + + 8. If "part___," or "1/4, 1/2, + 3/4____" is given as a single race + entry, disregard the prefix and code + race as reported. + + 9. If a racial entry is reported that + cannot be coded 1-8 or A - E, + code 0 (Other Entries). + + + + +Item Output Code Structure Coding Instructions + Position(s) +RACE - Cont. 10. If the item contains an entry of + "?", "-", "Unknown" or is left + blank, code 9 (Not Reported). + + 11. Use code F for entries of + "multi-racial," "biracial," "mixed," + and other synonymous terms. Do + not use code F when multiple races + are reported. In such cases, apply + rules 2 through 4 above as + applicable. + + Note: States not mandated by law + to code multi-racial as a separate + category may continue to code + these entries as '0'. + + + + + + + + + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +EDUCATION 96-97 Elementary Or Refer to Appendix H for other +OF DECEDENT Secondary entries on records. + + 00-12 1. If education is blank, refer to + age. If decedent is less than 4 + College + years of age, code education "00" + 1 year . . . . . . . . . .13 (no education). If age is 4 years or + 2 years. . . . . . . . . .14 more, code education "99" (not + 3 years. . . . . . . . . .15 classifiable). + 4 years. . . . . . . . . .16 + 5+ years . . . . . . . . .17 2. Code the highest grade + Not Classifiable . . . . .99 completed. + + 3. If two or more levels of + education are reported for the + decedent, code the highest level + classifiable to codes other than 99. + + Example: + + Elementary + Or + Secondary College Code + + 12 2 yrs. Tech 12 + Blank 2 yrs. Tech 99 + 12 2 yrs. 14 + + 4. If the entry for college is + reported as a partial year or + indication that a full year has not + been completed and no other entry + is reported (e.g., one semester, one + quarter, two quarters, etc.), + code 12. + + 5. If year is reported with a + fraction or symbol such as +, -, ?, + etc., ignore fraction or other + symbol and code year as stated. + + + + +Item Output Code Structure Coding Instructions + Position(s) +EDUCATION 6. If two or three semesters, three +OF DECEDENT or four quarters, or two or three +- Cont. trimesters is the only entry + reported in the college block, + code 13. + + 7. If entry is reported as "ALL" in + elementary/secondary block, code + 12. If entry is reported as "ALL" + in college block, code 16. + + 8. If entry in college block is + "A.A." or "A.S.," code 14. + + 9. If entry in college block is + "B.B.A.," "B.A.," "A.B.," or + "B.S.," code 16. + + 10. If entry in college block is + "A.M.," "M.A.," "M.Sc.," "M.D.," + "D.V.M.," "D.D.S.," D.D.M.," + "D.O.," L.L.B.," "Ph.D.," or other + advanced degree, code 17. + + 11. When symbols such as "+," + "-," " ?," "/," etc., are reported in + either block and no other entry is + reported, code 99. If an entry is + reported in either block with a + symbol reported in the other block, + disregard symbol and code entry as + stated. + + 12. If entry is R.N. or B.S. in + Nursing, code as follows: + + R.N . . . . . . . . . . . . . . . .14 + 2 R.N. . . . . . . . . . . . . . . .14 + 3 R.N. . . . . . . . . . . . . . . .15 + 4 R.N. . . . . . . . . . . . . . . .16 + B.S. in Nursing. . . . . . . . . . .16 + + + +Item Output Code Structure Coding Instructions + Position(s) + +FATHER'S 98-116 Alpha, left justified or blank. Follow rules for decedent's +SURNAME surname. This item is required for +(Applicable to females only but is acceptable for +NDI only) all decedents. + +INJURY AT +WORK 117 Yes. . . . . . . . . . . . .1 Code as reported without reference + No . . . . . . . . . . . . .2 to other items or information on + Not classifiable . . . . . .9 the certificate. + +UNDERLYING 118-121 Item deleted effective 1994 Locations 118-121 should be +CAUSE blank. + +AUTOPSY 122 Item deleted effective 1995 + + 9 Code 9 for this item. + +BIRTH +CERTIFICATE 123-128 Blank if not infant death. Left zero fill. +NUMBER + + Applicable to infant deaths (less + than 1 year of age) to produce + linked file only. Use the original + certificate number assigned to the + matching birth certificate by the + State in which the birth occurred. + + + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +YEAR OF 129-132 Enter four digit year. +BIRTH + Blank if not infant death. Applicable to infant deaths (less + than 1 year of age) to produce + linked file only. Enter four digit + year of birth from matching birth + certificate. + +STATE OF 133-134 States and +BIRTH Possessions. . . . . 01-54 + + Canada . . . . . . . . .55 + + Cuba . . . . . . . . . .56 + + Mexico . . . . . . . . .57 + + Remainder of the + World. . . . . . . . . .59 + + New York City + (Bronx, Brooklyn, + Manhattan, Queens, Staten + Island). . . . . . . . .60 + + Blank if not infant death. Applicable to infant deaths (less + than 1 year of age) to produce + linked file only. Enter state of birth + from matching birth certificate. If + birth occurred in New York City + (Bronx, Brooklyn, Manhattan, + Queens, Staten Island) then code + '60'. If the state of birth is + unknown, code '99'. Otherwise + refer to Appendix A. + + + +Appendix A +Geographic Codes for State of Death, Residence, and Birthplace + + +Code State Abbrev. Code State Abbrev. + 01 Alabama AL 28 Nebraska NE + 02 Alaska AK 29 Nevada NV + 03 Arizona AZ 30 New Hampshire NH + 04 Arkansas AR 31 New Jersey NJ + 05 California CA 32 New Mexico NM + 06 Colorado CO 33 New York NY + 07 Connecticut CT 34 North Carolina NC + 08 Delaware DE 35 North Dakota ND + 09 District of Columbia DC 36 Ohio OH + 10 Florida FL 37 Oklahoma OK + 11 Georgia GA 38 Oregon OR + 12 Hawaii HI 39 Pennsylvania PA + 13 Idaho ID 40 Rhode Island RI + 14 Illinois IL 41 South Carolina SC + 15 Indiana IN 42 South Dakota SD + 16 Iowa IA 43 Tennessee TN + 17 Kansas KS 44 Texas TX + 18 Kentucky KY 45 Utah UT + 19 Louisiana LA 46 Vermont VT + 20 Maine ME 47 Virginia VA + 21 Maryland MD 48 Washington WA + 22 Massachusetts MA 49 West Virginia WV + 23 Michigan MI 50 Wisconsin WI + 24 Minnesota MN 51 Wyoming WY + 25 Mississippi MS 52 Puerto Rico PR + 26 Missouri MO 53 Virgin Islands VI + 27 Montana MT 54 Guam GU + + +Geographic Codes for State of Death, Residence, and Birthplace- Continued + + 55 Canada + 55 Canadian Provinces + Alberta (Alta.) + British Columbia (B.C.) + Great Northwest Territories (GNWT or NWT) + Manitoba (Man.) + New Brunswick (N.B.) + Newfoundland (Nfld.) + Nova Scotia (N.S.) + Ontario (Ont.) + Prince Edward Island (PEI) + Quebec, Province of Quebec (Que. or P.Q.) + Saskatchewan (Sask.) + Yukon Territory (Y.T.) + 56 Cuba + 57 Mexico + 59 Remainder of World + + Note: Remember to distinguish between the Country of Georgia (in former Soviet Union) + which is coded to Remainder of World (59) and the State of Georgia which is coded to 11. + + +Appendix B + +Other Entries Reported on Records and Code for Race + +The expanded Asian and Pacific Islander categories of A, B, C, D, and E are required only for the +following funded registration areas: California, Hawaii, Illinois, New Jersey, New York State, New York +City, Texas and Washington. The remaining registration areas may choose to use the expanded categories +or continue coding Asian Indian, Korean, Samoan, Vietnamese and Guamian to 8. + +ENTRY CODE +Afghanistan . . 1 +African . . 2 +Aleut . . 3 +Algerian. . .1 +Alocona . . 0 +Ameriasian. . .8 +American. . .1 +Amish . . .1 +Anglo-Saxon . . 1 +Arabian . . 1 +Argentinian . . 1 +Armenian. . .1 +Aryan . . 1 +Asian Indian. . .8 or A +Asiatic . . 8 +Assyrian. . .1 +Athapaskan . . 3 +Australian. . .1 +Austrian. . .1 +Azores. . .1 + + +Bahamian. . .0 +Bangladeshi . . 8 +Basque . . 1 +Bavarian 1 +Begri . . 0 +Belizian. . .0 +Bilalian. . .2 +Biracial. . .0 or F +Blanc . . 1 +Bohemian. . .0 +Bolivian. . .1 +Brava (Bravo) . . 1 +Brazilian . . 1 +British Honduran. . .0 +Burmese . . 8 + +C . . 0 +Cajun . . .1 +Cambodian . . 8 +Canadian. . .1 +Cape Verde. . .2 +Carib . . 0 +Caucasian . . 1 +Ceylonese . . 8 +Chamorro. . .8 or E +Chamosso. . .0 +Chicano . . 1 + +ENTRY CODE +Chinese . . 4 +Chuukese. . .8 +Colestran . . 0 +Colombian . . 1 +Cosmopolitan. . .0 +Costa Rican . . 1 +Creole. . .1 +Crucian . . 1 +Cuban . . 1 +Czechoslovakian . . 1 + + +Dominican . . .2 +Dutch East Indian . . 8 + + +East Indian . . 8 or A +East Indies . . .8 +Ebian . . 1 +Ecuadorian. . .1 +Egyptian. . .1 +English . . .1 +English-French. . .1 +English-Irish . . 1 +Eritrean. . .2 +Eskimoan. . .3 +Ethiopia(n) . . .2 +Eurasian. . .8 +European. . .1 + +Fijian. . .8 +Filipino. . .7 +Finnish . . 1 +French. . .1 +French Canadian . . 1 +French Indian . . .3 + + +Georgian. . .1 +German. . .1 +Ghanaian. . .2 +Gilbertese. . .8 +Greek . . 1 +Guam(ian)(ese) . . 8 or E +Guatemalan. . .0 +Guyanese. . .0 +Gypsy . . 1 + + +Haitian . . 2 +Hamitic . . 2 +Hawaiian. . .6 +Hebrew. . .1 +Hindu . . 8 or A +Hispanic. . .1 +Honduran. . .0 +Hungarian . . 1 + + +ENTRY CODE +Icelandic . . 1 +India . . .8 or A +Indian (North, Central and South + American). . .3 +Indo-Aryan . . 8 or A +Indonesian. . .8 +Iran(ian) . . 1 +Iraqi . . 1 +Irish . . 1 +Islamic . . 1 +Israelite . . 1 +Italian . . 1 + +Jackson (Jack) White. . .0 +Jamaican. . .2 +Japanese. . .5 +Java. . .8 +Jew . . 1 +Jordanian . . 1 + + +Kenyan. . .2 +Korean. . .8 or B +Kuwaitian . . 1 + + +Ladina (Ladino) . . 1 +Laotian (Asian) . . .8 +Latin American. . .1 + + +Latvian . . 1 +Lebanese. . .1 +Liberian. . .2 +Libyan. . .1 +Lithuanian. . .1 + +Mal. . . 0 +Malada. . .0 +Malawian. . .2 +Malayan . . 8 +Maltese . . 1 +Maori . . 8 +Marshallese . . 8 +Marshenese. . .1 +Mauritian . . 1 +Mediterranean . . 1 +Melanesian. . .8 +Mestizo . . 0 +Mestizo-Inca. . .0 +Mexican . . 1 +Mexican Indian. . .3 +Micronesian . . 8 +Mixed . . 0 or F +Mohammedan (Moslem) . . 1 +Moor. . .0 +Moroccan. . .1 +Mosotho . . .0 +Mugandan. . .2 +Mulatto . . 2 +ENTRY CODE +Multi-racial. . .0 or F +Muslim. . .1 + + +N/W . . 0 +Nassau . . 2 +Native American . . 3 +Nepalese. . .8 +Nicaraguan. . .0 +Nigerian. . .2 +Nipponese (Nipon) . . 5 +Nordic. . .1 +Norwegian . . 1 +Nubian. . .2 + + +Occidental. . .1 +Octaroon. . .2 +Okinawan. . .5 + + +Pakistani . . 8 +Palauan . . .8 +Panamanian. . .0 +Parsi . . 1 +Persian . . 1 +Peruvian. . .1 +Phoenician. . .0 +Polish. . .1 +Polynesian . . 8 +Ponapean. . .8 +Portuguese. . .1 +Puerto Rican. . .1 +Punjabi . . 8 or A + +Quadroon. . .2 + +Red . . 3 +Romanian. . .1 +Rotanese. . .8 +Russian . . 1 +Ryukyan . . 5 + + +Saipanese . . 8 +Salvadorian . . 0 +Samoa(n) . . 8 or C +Santo-Domingo . . .2 +Saudi Arabia(n) . . 1 +Saxon(y). . .1 +Scandinavian . . 1 +Scotch. . .1 +Selawik . . 3 +Semitic . . 1 +Serbian . . 1 +Servian . . 1 +Seychelloise . . 2 +ENTRY CODE +Siamese . . 8 +Siamsh Am . . 0 +Sicilian. . .1 +Sikh. . .8 or A +Singhalese. . .8 +Sino Burman . . 4 +Slovakian . . 1 +Soanish . . 0 +South American. . .1 +Spanish . . 1 +Sudanese. . .2 +Sunni . . 1 +Swedish . . 1 +Syrian. . .1 + + +Tahitian. . .8 +Taimskin. . .3 +Taiwanese . . 4 +Tamil-Ceylonese . . 8 +Tamil-Malayan . . 8 +Tanzanian . . 2 +Teutonic. . .1 +Thai. . .8 +Tibetan . . 8 +Tongan. . .8 +Trigueno. . .0 +Trinidadian . . 2 +Trukese . . 8 +Tunisian. . .1 +Turk. . .1 + +Ubontilian. . .8 +Ugandan . . 2 +Ukranian. . .1 +Ulithian. . .0 +Ute . . 3 + + +Venezuela(n). . .1 +Vietnam(ese). . .8 or D + + +W . . 1 +Welsh . . 1 +West Indies (Indian) . . 2 +Wiam (White American) . . 1 + + +Yapanes . . 8 +Yemenite. . .1 +Yugoslavian . . 1 + + +Zoroastrian . . .1 + + + +Appendix C + +Indian Tribes in the United States, Canada, and Mexico + +Abnaki +Absentee-Shawnee +Acoma +Ak Chin +Alabama-Coushatt + Tribes of Texa +Alsea +Apache +Arapaho +Arikara +Assiniboin +Atacapa +Athapaskan +Atsina +Aztec +Bear River +Beaver +Bella Coola +Beothuk +Blackfoot +Boold Piegan +Blue Lake +Brotherton +Caddo +Cakchiquel-lenca +Calapooya +Carrier +Catawba +Cattaraugus +Cayuga +Cayuse +Chasta Costa +Chehalis +Chemehuevi +Cherokee +Chetco +Cheyenne +Cheyenne River Sioux +Chickahominy +Chickasaw +Chinook +Chipewyan +Chippewa +Chippewa-Ojibwa +Chiricahua Apache +Chitimacha Choctaw +Chol + Chontal +Chorti +Chuckchansi +Chumash +Clallam + Clatsop +Clackamus +Clear Lake +Coast Salish +Cochimi +Cochiti +Cocopa + Coeur D'Alene Tribe + of Idaho +Cocopah + Columbia +Colville +Comox +Comanche +Concow +Conquille +Coushatta +Covelo +Cow Creek +Cowichan +Cowlitz +Coyotero Apache +Cree +Creek +Crow +Crow Creek Sioux +Dakota +Delaware +Diegueno +Digger +Dog Rib +Duckwater +Euchi +Eyak +Flathead +Fort Hall Res. Tribe + of Idaho +French Indian +Gabrieleno +Galice Creek +Gay Head +Gosiute +Gros Ventre +Haida +Han +Hare +Hat Creek +Hawasupai +Hidatsa +Hoh +Hoopa +Hopi +Houma +Hualapai +Huastec +Humboldt Bay +Hupa +Huron +Illinois +Ingalik +Iowa +Iroquois +Isleta +Jemez +Joshua +Juaneno +Jicarilla Apache +Kaibah +Kalispel +Kanosh Band of Paiutes +Kansa +Karankawa +Karok +Kaska +Kaw +Kawai +Keresan Pueblos +Kern River +Kichai +Kickapoo +Kiowa +Kiowa Apache +Kitamat +Klamath +Klikitat +Koasati +Kootenai Tribe of Idaho +Kusa +Kutchin +Kutenai +Kwakiutl +Lac Courte Dreille +Laguna +Lakmuit +Lipan Apache +Lower Brule Sioux +Luiseno +Lummi +Maidu +Makah +Malecite +Mandan +Maricopa +Mary's River +Mashpee +Mattaponi +Maya +Mayo +Mdewakanton Sioux +Menominee +Menomini +Mequendodon +Mescalero Apache +Miami +Micmac +Mission Indians +Missouri +Miwok +Mixe +Mixtec +Modoc +Mohave +Mohawk +Mohegan +Molala +Monachi +Mono +Montagnais +Montauk +Muckleshoot +Munsee +Nambe +Namsemond +Nanticoke +Narragansett +Naskapi +Natchez +Navaho +Navajo +Nez Perce +Niantic +Nipmuck +Nisenan-Patwin +Nisqually +Nomelaki +Nooksak +Nootka +Northern Paiute +Oglala Sioux +Okanogan +Omaha +Oneida +Onondaga +Opata +Opato +Osage +Oto +Otoe +Otomi +Ottawa +Ozette +Paiute +Pamunkey +Panamint +Papago +Passamaquoddy +Patwin +Pawnee +Pen d'Oreille +Penobscot +Peoria +Pequot +Picuris +Pima +Pit River +Pojoaque +Pomo +Ponca +Poosepatuck +Potawatomi +Potomac +Powhatan +Pueblos +Puyallup +Quapaw +Quechan +Quileute +Quinaielt +Quinault +Rappahannock +Rogue River +Rosebud Sioux +Sac and Fox +Saginaw +Salish +Sandia +San Felipe +San Ildefonso +San Juan +San Lorenzo +San Luis Obispo +San Luiseno +Sanpoil +Sanpoil Nespelem +Sant'ana +Santa Barbara +Santa Clara +Santa Ynez +Santee +Santee Sioux +Santiam +Sauk and Fox +Scaticook +Sekane +Seminole +Seneca +Seri +Shasta +Shawnee +Shinnecock +Shivwits Band of +Paiutes +Shoshone +Shoshone-Bannock +Shuswap +Siouans +Sioux +Sisseton +Sisseton-Wahpeton Sioux +Siuslaw +Skagit Suiattle +Skokomish +Slave +Smith River +Snake +Snohomish +Snoqualmi +Songish Southern Paiute +Squaxin +Stockbridge +Sumo-Mosquito +Suquamish +Swinomish +Taimskin +Tanana +Tanoan Pueblos +Taos +Tarahumare +Tarascan +Tawakoni +Tejon +Tenino or Warm Springs +Tesuque +Teton +Teton Sioux +Tillamook +Timucua +Thlinget +Tolowa +Tonawanda +Tonkawa +Tonto Apache +Topinish +Totonac +Tsimshian +Tulalip +Tule River Indians +Tunica +Tuscarora +Tututni +Umatilla +Umpqua +Upper Chinook +Ute +Waca +Waicuri-Pericue +Wailaki +Walapai +Walla Walla +Wampanoag +Wapato +Warm Springs +Wasco +Washo +Washoe +Western Apache +Western Shoshone +Whilkut +Wichita +Wikchamni +Wind River Shoshone +Winnebago +Wintu +Wintun +Wishram +Wyandotte +Xicaque +Yahooskin +Yakima +Yamel +Yana +Yankton +Yanktonnais Sioux +Yaqui +Yaquina +Yavapai +Yawilmani +Yellow Knife +Yerington Paiute +Yokuts +Yokuts-Mono +Yomba Shoshone +Yuchi +Yuki +Yuma +Yurok +Zacatec +Zapotec +Zia +Zoque +Zuni + + +Appendix D + +List of Major Cities in the United States and the States in Which They are Locate + + Atlanta, Georgia + Baltimore, Maryland + Boston, Massachusetts + Buffalo, New York + Chicago, Illinois + Cincinnati, Ohio + Cleveland, Ohio + Dallas, Texas + Denver, Colorado + Detroit, Michigan + Houston, Texas + Indianapolis, Indiana + Los Angeles, California + Memphis, Tennessee + Milwaukee, Wisconsin + Minneapolis, Minnesota + New Orleans, Louisiana + New York, New York + Philadelphia, Pennsylvania + Pittsburgh, Pennsylvania + San Antonio, Texas + San Diego, California + San Francisco, California + Seattle, Washington + St. Louis, Missouri + Washington, District of Columbia + + + + +Appendix E + +Interpretations of Atlas Notations + + 1. If the notation "part of _____" or "population included in _____" appears, consider + the entry to be an inclusion of the city named and code accordingly. + + 2. If the notation "rural" and "mail to _____" or "no pop." appears, code to the balance + of the county. + + 3. If only the notation "mail to _____" or "population included with _____" appears, + code to the balance of the named county. ("Population included with" refers to an + unincorporated place.) + + 4. If the notation "Station," "Branch of _____" or "Rural Station" appears, code to the + balance of county. + + 5. If the notation "Station of _____ P. O." appears, consider the entry to be an + inclusion of the city named and code accordingly. + + +Appendix F +Largest City and Code by State of Residence + +State of Residence NCHS Code Largest City +01 Alabama 008 Birmingham +02 Alaska 001 Anchorage +03 Arizona 017 Phoenix +04 Arkansas 014 Little Rock +05 California 143 Los Angeles +06 Colorado 009 Denver +07 Connecticut 004 Bridgeport +08 Delaware 003 Wilmington +09 District of Columbia 001 Washington +10 Florida 041 Jacksonville +11 Georgia 005 Atlanta +12 Hawaii 003 Honolulu +13 Idaho 001 Boise City +14 Illinois 034 Chicago +15 Indiana 027 Indianapolis +16 Iowa 012 Des Moines +17 Kansas 033 Wichita +18 Kentucky 017 Louisville +19 Louisiana 022 New Orleans +20 Maine 006 Portland +21 Maryland 003 Baltimore +22 Massachusetts 012 Boston +23 Michigan 025 Detroit +24 Minnesota 041 Minneapolis +25 Mississippi 017 Jackson +26 Missouri 028 Kansas City +27 Montana 002 Billings + + + +State of Residence NCHS Code Largest City +28 Nebraska 011 Omaha +29 Nevada 005 Las Vegas +30 New Hampshire 008 Manchester +31 New Jersey 104 Newark +32 New Mexico 002 Albuquerque +33 New York 053 New York +34 North Carolina 009 Charlotte +35 North Dakota 003 Fargo +36 Ohio 034 Columbus +37 Oklahoma 025 Oklahoma City +38 Oregon 027 Portland +39 Pennsylvania 092 Philadelphia +40 Rhode Island 014 Providence +41 South Carolina 007 Columbia +42 South Dakota 007 Sioux Falls +43 Tennessee 030 Memphis +44 Texas 075 Houston +45 Utah 020 Salt Lake City +46 Vermont 001 Burlington +47 Virginia 022 Norfolk +48 Washington 034 Seattle +49 West Virginia 003 Charleston +50 Wisconsin 035 Milwaukee +51 Wyoming 002 Cheyenne +52 Puerto Rico 765 San Juan +53 Virgin Islands 001 Charlotte Amalie + + +Appendix G +Other Entries Reported on Records and Code for Hispanic Origin + +ENTRY CODE + +Argentina (Argentino). . . . . . . .4 + +Balearic Islands . . . . . . . . . .5 +Basque . . . . . . . . . . . . . . .5 +Belizian . . . . . . . . . . . . . .4 +Bolivian (Boliviano) . . . . . . . .4 +Boricua (Borinqueno) . . . . . . . .2 +Brazilian. . . . . . . . . . . . . .0 + +Californio . . . . . . . . . . . . .5 +Canary Islands . . . . . . . . . . .5 +Castilian. . . . . . . . . . . . . .5 +Catalonia. . . . . . . . . . . . . .5 +Centroamericano. . . . . . . . . . .4 +Chicano. . . . . . . . . . . . . . .1 +Chile (Chileno). . . . . . . . . . .4 +Colombia (Colombiano). . . . . . . .4 +Costa Rica (Costarricense) . . . . .4 +Cuban (Cubano) . . . . . . . . . . .3 + +Dominican Republic (Dominicano). . . . . . .4 + +Ecuador (Ecuatoriano). . . . . . . .4 +El Salvador. . . . . . . . . . . . .4 +Espana . . . . . . . . . . . . . . .5 +Espanol. . . . . . . . . . . . . . .5 + +Falkland Island. . . . . . . . . . .4 +Fernando Po. . . . . . . . . . . . .5 + +Galapagos Islands. . . . . . . . . .4 +Guatemala (Guatemalteco) . . . . . .4 + + +Hispano . . 5 +Honduras (Hondureno). . .4 + +Iberia (Ibero). . .5 + +La Raza . . 4 +Latin American. . .5 +Latino. . .5 + +Majorca . . 5 +Mallorca (Mallorquin) . . 5 +Mexican (Mexicano). . .1 +Mexican American. . .1 + +Nicaragua (Nicaraguense). . .4 + +Panama (Panameno) . . 4 +Paraguay (Paraguayo). . .4 +Peru (Peruano). . .4 +Puerto Rican (Puertorriqueno) . . 2 + +Salvadoreno . . 4 +Spain . . 5 +Spaniard. . .5 + +Uruguay (Uruguayo). . .4 + +Valencian . . 5 +Venezuela (Venezolano). . .4 + + +Appendix H +Other Entries Reported on Records and Codes for Education + +College Entries Code + +4 + 2 . . . . . . . . . . . . . . . . . . . . . . . . . . 17 +Post graduate . . . . . . . . . . . . . . . . . . . . . . 17 +16 mos. . . . . . . . . . . . . . . . . . . . . . . . . . 13 + (convert months by dividing by 9) (1 yr. 7 mos.) +3/4 . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 +2.5 . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 +1+1 N.T.. . . . . . . . . . . . . . . . . . . . . . . . . 13 +1500 hrs. . . . . . . . . . . . . . . . . . . . . . . . . 99 +10. . . . . . . . . . . . . . . . . . . . . . . . . . . . 17 +P. G. - 4 . . . . . . . . . . . . . . . . . . . . . . . . 99 +In 2nd year . . . . . . . . . . . . . . . . . . . . . . . 13 +B . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16 +BA with 1 yr. law . . . . . . . . . . . . . . . . . . . . 17 +Senior. . . . . . . . . . . . . . . . . . . . . . . . . . 15 +Soph. . . . . . . . . . . . . . . . . . . . . . . . . . . 13 +College . . . . . . . . . . . . . . . . . . . . . . . . . 16 +University. . . . . . . . . . . . . . . . . . . . . . . . 16 +1 year Prep. . . . . . . . . . . . . . . . . . . . . . . 99 +Yes . . . . . . . . . . . . . . . . . . . . . . . . . . . 16 +4 semesters . . . . . . . . . . . . . . . . . . . . . . . 14 +Assoc. degree . . . . . . . . . . . . . . . . . . . . . . 14 +Graduate. . . . . . . . . . . . . . . . . . . . . . . . . 16 +6 months. . . . . . . . . . . . . . . . . . . . . . . . . 12 +2/3 . . . . . . . . . . . . . . . . . . . . . . . . . . . 12 +Less than 3/4 or less than 9 mos. . . . . . . . . . . . . 12 +Technical or Trade School . . . . . . . . . . . . . . . . 99 +Junior College. . . . . . . . . . . . . . . . . . . . . . 14 +Juris Doctor. . . . . . . . . . . . . . . . . . . . . . . 17 +Masters . . . . . . . . . . . . . . . . . . . . . . . . . 17 + +Elementary or Secondary Entries Code + +Kindergarten. . . . . . . . . . . . . . . . . . . . . . . 00 +Finished in service . . . . . . . . . . . . . . . . . . . 12 +G.E.D - Army. . . . . . . . . . . . . . . . . . . . . . . 12 +3 - graduate. . . . . . . . . . . . . . . . . . . . . . . 11 +Senior. . . . . . . . . . . . . . . . . . . . . . . . . . 11 +Soph. . . . . . . . . . . . . . . . . . . . . . . . . . . 09 +High School . . . . . . . . . . . . . . . . . . . . . . . 12 +Yes . . . . . . . . . . . . . . . . . . . . . . . . . . . 12 +GED . . . . . . . . . . . . . . . . . . . . . . . . . . . 12 +Graduate. . . . . . . . . . . . . . . . . . . . . . . . . 12 +Elementary. . . . . . . . . . . . . . . . . . . . . . . . 06 +Secondary . . . . . . . . . . . . . . . . . . . . . . . . 12 + + + +Appendix I +Sampling Rate + Number of + Expected Sampling Percent Sample Records + Volume of Records Rate Sample Minimum Maximum + + Less than 1,200 1 in 1 100.00 - 1,199 + 1,200- 2,999 1 in 2 50.00 600 1,500 + 3,000- 5,999 1 in 5 20.00 600 1,200 + 6,000- 11,999 1 in 10 10.00 600 1,200 + 12,000- 14,999 1 in 20 5.00 600 750 + 15,000- 29,999 1 in 25 4.00 600 1,200 + 30,000- 59,999 1 in 50 2.00 600 1,200 + 60,000- 74,999 1 in 100 1.00 600 750 + 75,000-119,999 1 in 125 0.80 600 960 + 120,000-149,999 1 in 200 0.50 600 750 + 150,000-299,999 1 in 250 0.40 600 1,200 + 300,000 + 1 in 500 0.20 600 - + +http://www.cdc.gov/nchs/data/std-dcrt.pdf + +Vital Statistics Instruction Manuals + +Part 1 Source Records and Control Specifications (1995) +Part 2a Instructions for Classifying the Underlying Cause of Death (1999) +Part 2b Instructions for Classifying Multiple Causes of Death (1999) +Part 2c ICD-10 ACME Decision Tables for Classifying Underlying Causes of Death (1999) +Part 2d NCHS Procedures for Mortality Medical Data System File Preparation and Maintenance + (1999) +Part 2e Non-Indexed Terms, Standard Abbreviations, and State Geographic Codes Used in Mortality + Data Classification (1995) +Part 2f ICD-10 TRANSAX Disease Reference Tables for Classifying Multiple Causes-of-Death + (1999) +Part 2g Data Entry Instructions for the Mortality Medical Indexing, Classification, and Retrieval + System (MICAR) (1999) +Part 2h Dictionary of Valid Terms for the Mortality Medical Indexing, Classification, and Retrieval + System (MICAR) (1992) +Part 2i MICAR Quick Reference Guide (1999) +Part 3a Classification and Coding Instructions for Live Birth Records (1999) +Part 3b Classification and Coding Instructions for Fetal Death Records (1999) +Part 4 Demographic Classification and Coding Instructions for Death Records (1999) +Part 5 Data Preparation of the Current Mortality Sample (1995) +Part 6 Classification and Coding Instructions for Marriage Records (1995) +Part 7 Classification and Coding Instructions for Divorce Records (1995) +Part 8 Vital Records Geographic Classification (1995) +Part 9 ICD-10 Underlying Cause of Death Lists for Tabulating Mortality Statistics (1999) +Part 10 Classification and Coding Instructions for Induced Termination of Pregnancy Records (1993) +Part 11 Computer Edits for Mortality Data (1999) +Part 12 Computer Edits for Natality Data (1993) +Part 18 Guidelines for Implementing Field and Query Programs for Registration of Births and Deaths + (1993) +Part 19 Industry and Occupation Coding for Death Certificates (1998) +Part 19B Alphabetical Index of Industries and Occupations (1998) +Part 20 Cause-of-Death Query Manual (1985) + diff --git a/office/regression/000_000103.txt b/office/regression/000_000103.txt new file mode 100644 index 0000000..f7c244a --- /dev/null +++ b/office/regression/000_000103.txt @@ -0,0 +1,1573 @@ +HD|215409|9409081720||AA0TH|A|HA|01/17/2004|03/29/2014||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|218327|9903296981||AA6PR|A|HA|03/30/1999|03/30/2009||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|221076|0003659570||AB5A|A|HV|11/26/2008|02/10/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|225737|9812235982||AE4H|A|HV|01/13/1999|01/13/2009||||||||||||||||||||N||||||||||||||01/13/1999|11/26/2008|||||| +HD|227648|0003659620||AI5U|A|HV|11/26/2008|02/23/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|231520|9611258931||K0RQU|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|238366|0003659656||K2MUD|A|HV|11/26/2008|02/23/2019||||||||||||||||||||N||Michael|J|Genau||||||||||11/26/2008|11/26/2008|||||| +HD|238484|9400131100||K2OI|C|HA|05/05/2001|07/30/2011|04/28/2002|||||||||||||||||||N||||||||||||||05/05/2001|11/26/2008|||||| +HD|239218|0003659572||K2SSN|A|HV|11/26/2008|02/10/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|240982|0002821049||K3GUX|A|HA|11/16/2006|02/06/2017||||||||||||||||||||N||JOSEPH|V|HARTMAN|SR|||||||||11/26/2008|11/26/2008|||||| +HD|242184|0003659645||K3PAT|A|HV|11/26/2008|02/23/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|242535|9611258929||K3ROQ|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|243318|0003659701||K3XE|A|HV|11/26/2008|02/10/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|243490|9611258875||K3ZIY|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|244029|0003659692||K4BLC|A|HV|11/26/2008|10/05/2018||||||||||||||||||||N||BRETT|L|CLAPPER||||||||||11/26/2008|11/26/2008|||||| +HD|246068|0003659634||K4IDW|A|HV|11/26/2008|02/23/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|248683|9711260845||K4SGA|C|HA|12/01/1997|12/01/2007|04/05/1998|||||||||||||||||||N||||||||||||||12/01/1997|11/26/2008|||||| +HD|251381|9812170147||K5GJA|A|HA|11/26/2008|12/17/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|251899|9810230402||K5JFS|A|HV|11/06/1998|11/06/2008||||||||||||||||||||N||||||||||||||11/06/1998|11/26/2008|||||| +HD|254545|0003657027||K6ALX|A|HV|11/26/2008|01/28/2019||||||||||||||||||||N||ALEX|M|ANGKHAM||||||||||11/26/2008|11/26/2008|||||| +HD|257346|9810200304||K6PBB|A|HA|08/19/2008|10/23/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|257705|0003660991||K6RAL|A|HA|11/26/2008|02/24/2019||||||||||||||||||||N||THOMAS|S|BURR||||||||||11/26/2008|11/26/2008|||||| +HD|257754|0003659588||K6RFG|A|HV|11/26/2008|02/10/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|259228|0003659631||K7AIX|A|HV|11/26/2008|02/23/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|259949|0002380249||K7EOC|A|HV|11/26/2008|11/26/2018||||||||||||||||||||N||Patricia||Hopkins||||||||||11/26/2008|11/26/2008|||||| +HD|265008|9809145928||K8MAK|C|HV|10/05/1998|10/05/2008|10/30/2003|||||||||||||||||||N||Mark|A|Kusick||||||||||03/19/2002|11/26/2008|||||| +HD|265789|9611258983||K8RDO|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|266190|9812148991||K8TI|A|HA|11/26/2008|12/14/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|266351|0003657028||K8UFO|A|HV|11/26/2008|01/22/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|267595|0003659654||K9CLL|A|HV|11/26/2008|02/23/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|267880|9611258924||K9EAA|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|270431|0002755458||K9UWY|A|HA|09/19/2006|12/18/2016||||||||||||||||||||N||R NELSON||PATTERSON||||||||||11/26/2008|11/26/2008|||||| +HD|271659|9611258840||KA0DOW|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|272104|9612090519||KA0FWC|A|HA|09/19/2006|12/17/2016||||||||||||||||||||N||John|C|Ackerman||||||||||11/26/2008|11/26/2008|||||| +HD|277098|9611258864||KA1EIB|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|285785|9611258919||KA2KTJ|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|294633|9400190840||KA3YLE|A|HA|10/24/2001|01/21/2012||||||||||||||||||||N||RICHARD|G|SMITH||||||||||11/26/2008|11/26/2008|||||| +HD|298443|0001627732||KA4RGQ|A|HA|02/23/2004|05/17/2014||||||||||||||||||||N||KEITH|W|ZARIN||||||||||11/26/2008|11/26/2008|||||| +HD|298900|9611258912||KA4TNH|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|299095|9611258950||KA4UNR|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|305290|9611258935||KA6BPV|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|308413|0003661010||KA6UIT|A|HA|05/06/2003|08/03/2013||||||||||||||||||||N||Michael|L|Mackenroth||||||||||11/26/2008|11/26/2008|||||| +HD|311777|9901260123||KA7MOJ|A|HA|11/25/2008|01/28/2019||||||||||||||||||||N||||||||||||||11/25/2008|11/26/2008|||||| +HD|322065|9611258872||KA9MYV|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|340354|0003660987||KB1DSJ|A|HA|11/26/2008|02/24/2019||||||||||||||||||||N||CHARLES|F|SIMJIAN||||||||||11/26/2008|11/26/2008|||||| +HD|340729|9907318972||KB1EHS|A|HA|07/31/1999|07/31/2009||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|340891|9812150345||KB1NB|A|HA|11/26/2008|12/15/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|343352|0003661005||KB2GQK|A|HA|11/26/2008|11/13/2018||||||||||||||||||||N||ROBERT|G|MASON||||||||||11/26/2008|11/26/2008|||||| +HD|356369|0001939982||KB4CQW|A|HA|11/16/2004|07/14/2014||||||||||||||||||||N||REX|A|SHARR||||||||||11/26/2008|11/26/2008|||||| +HD|361265|9611259971||KB4VUK|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|371355|0003659644||KB5VWM|A|HV|11/26/2008|02/23/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|377092|9611258886||KB6QEU|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|380170|0003661012||KB6ZVL|A|HA|11/26/2008|04/21/2018||||||||||||||||||||N||FRED|L|HOOPES||||||||||11/26/2008|11/26/2008|||||| +HD|380414|9611258910||KB7ARX|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|382054|9812288963||KB7FLH|C|HA|12/28/1998|12/28/2008|05/07/2003|||||||||||||||||||N||||||||||||||12/28/1998|11/26/2008|||||| +HD|382319|9810130347||KB7GCA|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|382471|0003660976||KB7GMW|A|HA|11/26/2008|02/24/2019||||||||||||||||||||N||DEAN|L|ROHDE||||||||||11/26/2008|11/26/2008|||||| +HD|382641|9902250436||KB7GYN|C|HA|02/26/1999|02/26/2009|06/02/2006|||||||||||||||||||N||||||||||||||02/26/1999|11/26/2008|||||| +HD|400347|0002945451||KB8SOE|A|HA|03/06/2004|05/24/2014||||||||||||||||||||N||Keith|J|Johnson||||||||||11/26/2008|11/26/2008|||||| +HD|404494|9804080223||KB9AGE|A|HA|04/10/1998|04/10/2008||||||||||||||||||||N||||||||||||||04/10/1998|11/26/2008|||||| +HD|411825|9609048918||KB9OKB|A|HA|07/06/2006|09/04/2016||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|412173|9611258722||KB9OYE|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|412175|9611258786||KB9OYG|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||02/22/2006|11/26/2008|||||| +HD|414570|0001546350||KB9SWQ|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||Bradley|J|May||||||||||11/26/2008|11/26/2008|||||| +HD|417275|9804300636||KC0BWU|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|418959|9905288932||KC0EOV|A|HA|11/26/2008|12/08/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|419010|9812148874||KC0EQX|A|HA|11/26/2008|12/14/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|419118|9901218870||KC0EVV|A|HA|11/26/2008|01/21/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|420199|9611258848||KC0OS|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|420232|9611258896||KC0QK|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|421020|9611258752||KC2AHJ|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|422214|0003059887||KC2CGZ|C|HA|06/05/2007|08/08/2017|10/20/2008|||||||||||||||||||N||Thomas|J|Gagen||||||||||06/05/2007|11/26/2008|||||| +HD|423683|0003660993||KC2ERU|A|HA|11/26/2008|02/24/2019||||||||||||||||||||N||ANDRES||MONTES||||||||||11/26/2008|11/26/2008|||||| +HD|465784|0003661000||KC7CPM|A|HA|05/24/2004|05/31/2014||||||||||||||||||||N||WILLIAM|D|BUCKWALTER||||||||||11/26/2008|11/26/2008|||||| +HD|467864|0003661008||KC7FXK|A|HA|07/07/2004|09/30/2014||||||||||||||||||||N||SARAH||ROEBAS||||||||||11/26/2008|11/26/2008|||||| +HD|468670|0002708685||KC7HEX|A|HA|09/16/2004|12/09/2014||||||||||||||||||||N||Walter|R|Jones|Jr|||||||||11/26/2008|11/26/2008|||||| +HD|476245|9611258724||KC7TKV|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|476246|9611258725||KC7TKW|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|476249|9611258761||KC7TKZ|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|476251|9611258762||KC7TLA|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|476252|9611258763||KC7TLB|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|478449|9706028773||KC7WXB|A|HA|05/31/2007|06/03/2017||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|485633|9803038983||KC8JKK|A|HA|03/03/1998|03/03/2008||||||||||||||||||||N||||||||||||||03/03/1998|11/26/2008|||||| +HD|487131|0003660981||KC8LUT|A|HA|11/26/2008|02/24/2019||||||||||||||||||||N||JOHN|C|MC ELDOWNEY||||||||||11/26/2008|11/26/2008|||||| +HD|487133|0003660975||KC8LUV|A|HA|11/26/2008|02/24/2019||||||||||||||||||||N||TERRY|M|COOPER||||||||||11/26/2008|11/26/2008|||||| +HD|487135|0003660977||KC8LUY|A|HA|11/26/2008|02/24/2019||||||||||||||||||||N||JAMES|R|TULEY||||||||||11/26/2008|11/26/2008|||||| +HD|488906|9811096988||KD0VU|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|490188|9712180637||KD3QD|A|HA|09/24/1999|11/28/2009||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|506501|9400316913||KD5C|C|HA|05/31/2000|07/17/2010|09/11/2000|||||||||||||||||||N||||||||||||||05/31/2000|11/26/2008|||||| +HD|508696|9811138881||KD5FON|A|HA|11/13/1998|11/13/2008||||||||||||||||||||N||||||||||||||11/13/1998|11/26/2008|||||| +HD|508846|9812068993||KD5FUW|A|HA|11/25/2008|12/06/2018||||||||||||||||||||N||||||||||||||11/25/2008|11/26/2008|||||| +HD|508873|9812108872||KD5FWB|A|HA|11/26/2008|12/10/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|509328|9903168985||KD5GPO|A|HA|03/16/1999|03/16/2009||||||||||||||||||||N||FRANK|J|FOWSKY||||||||||11/26/2008|11/26/2008|||||| +HD|510053|9907168853||KD5HTA|A|HA|07/16/1999|07/16/2009||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|511542|9400385007||KD6BQT|A|HA|12/20/2002|12/20/2012||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|517029|0003661009||KD6KR|A|HA|04/17/2001|07/09/2011||||||||||||||||||||N||MARC|E|MATHESON||||||||||11/26/2008|11/26/2008|||||| +HD|527870|9810198842||KD7CZB|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|528643|0003660985||KD7EFA|A|HA|11/26/2008|02/24/2019||||||||||||||||||||N||DU WAYNE|L|EYRE||||||||||11/26/2008|11/26/2008|||||| +HD|528646|0003660994||KD7EFD|A|HA|11/26/2008|02/24/2019||||||||||||||||||||N||H DEAN||CLAUSON||||||||||11/26/2008|11/26/2008|||||| +HD|530831|0001903467||KD8XL|C|HA|10/15/2004|01/10/2015|09/06/2008|||||||||||||||||||N||F Edgar||Dempsey||||||||||10/15/2004|11/26/2008|||||| +HD|547689|9504148342||KE4YZW|A|HA|06/01/2005|06/01/2015||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|548616|9802260604||KE5SS|E|HA|03/05/1998|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||03/05/1998|11/26/2008|||||| +HD|550823|9400392759||KE6DII|A|HA|11/04/2003|11/09/2013||||||||||||||||||||N||EUGENE|D|AKER||||||||||11/26/2008|11/26/2008|||||| +HD|575148|9611258729||KF4NLV|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|575158|9611258803||KF4NMF|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|587301|9611258825||KF6HOJ|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|587305|9611258830||KF6HOO|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|587306|9611258831||KF6HOP|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|591060|9709228810||KF6NQP|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|592825|9804208883||KF6QMQ|A|HA|11/25/2008|11/25/2018||||||||||||||||||||N||||||||||||||11/25/2008|11/26/2008|||||| +HD|594512|9810218941||KF6TJE|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|595505|9902198877||KF6UZB|A|HA|11/26/2008|02/19/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|597204|0003659632||KF7G|A|HV|11/26/2008|02/23/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|598966|0003661001||KG0UH|A|HA|07/02/2004|09/28/2014||||||||||||||||||||N||DICK||ROME||||||||||11/26/2008|11/26/2008|||||| +HD|600179|0002418478||KG4BFJ|A|HA|11/26/2008|12/10/2018||||||||||||||||||||N||JOHN|T|HAYDEN||||||||||11/26/2008|11/26/2008|||||| +HD|600703|0003660979||KG4CCG|A|HA|11/26/2008|02/24/2019||||||||||||||||||||N||VAN|O|HOWARD||||||||||11/26/2008|11/26/2008|||||| +HD|605976|9611258865||KH6PO|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|608129|9410270249||KI5WF|C|HA|09/24/2001|12/10/2011|03/20/2008|||||||||||||||||||N||||||||||||||09/24/2001|11/26/2008|||||| +HD|612045|9710038894||KK4WD|A|HA|10/03/1997|10/03/2007||||||||||||||||||||N||||||||||||||10/03/1997|11/26/2008|||||| +HD|612992|9400436573||KK6OB|A|HA|06/30/2000|07/31/2010||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|616408|9903228578||KM5UM|A|HA|03/22/1999|03/02/2009||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|619792|0003660990||KP4BKD|A|HA|11/26/2008|02/24/2019||||||||||||||||||||N||HECTOR|V|DE JESUS ROSADO|SR|||||||||11/26/2008|11/26/2008|||||| +HD|619845|0003659669||KP4CER|A|HV|11/26/2008|02/10/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|621114|9901070713||KQ4LE|A|HA|11/26/2008|01/11/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|622689|9708150933||KR6J|C|HV|10/01/1997|10/01/2007|01/30/2006|||||||||||||||||||N||||||||||||||10/01/1997|11/26/2008|||||| +HD|623918|9907140614||KT4NY|A|HA|02/03/2003|04/27/2013||||||||||||||||||||N||MAURICE|D|MARTIN||||||||||11/26/2008|11/26/2008|||||| +HD|625757|9709099879||KX6D|C|HA|09/09/1997|09/09/2007|05/29/2002|||||||||||||||||||N||||||||||||||09/09/1997|11/26/2008|||||| +HD|626059|9711120508||KY7Y|C|HA|11/13/1997|11/13/2007|03/07/2002|||||||||||||||||||N||||||||||||||11/13/1997|11/26/2008|||||| +HD|630306|9811130201||N0IXE|A|HV|11/26/2008|11/30/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|631089|9812286998||N0KGM|A|HA|11/26/2008|12/28/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|652178|0001979966||N1UQB|A|HA|12/21/2004|03/17/2015||||||||||||||||||||N||M BERNICE||LEIBOWITZ||||||||||12/21/2004|11/26/2008|||||| +HD|658150|9902110416||N2GFV|A|HA|11/26/2008|02/12/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|666280|0003659694||N2UFM|A|HV|11/26/2008|12/15/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|669044|9510180114||N2YOG|A|HA|05/12/2004|05/12/2014||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|669938|9407125638||N2ZYC|A|HA|05/22/2004|07/15/2014||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|672525|9705060305||N3FRQ|A|HA|02/08/2007|05/06/2017||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|673258|0003470248||N3HCF|A|HA|11/26/2008|11/16/2018||||||||||||||||||||N||Dean|C|Williams||||||||||11/26/2008|11/26/2008|||||| +HD|687205|9811240412||N4FIB|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|688859|0003659616||N4JCP|A|HV|11/26/2008|02/23/2019||||||||||||||||||||N||JUAN|C|PEREZ||||||||||11/26/2008|11/26/2008|||||| +HD|691954|9611258946||N4PMW|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|691976|9710161836||N4PNZ|E|HA|10/21/1997|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||10/21/1997|11/26/2008|||||| +HD|694723|9901040141||N4UOD|A|HA|11/26/2008|01/06/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|695175|9812228930||N4VIA|A|HA|11/26/2008|12/22/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|700426|0003660973||N5GIR|A|HA|11/26/2008|02/24/2019||||||||||||||||||||N||MICHAEL|L|LITTLE||||||||||11/26/2008|11/26/2008|||||| +HD|704517|9903158983||N5OQP|A|HA|03/15/1999|03/15/2009||||||||||||||||||||N||||||||||||||03/15/1999|11/26/2008|||||| +HD|711514|0003659658||N6ADA|A|HV|11/26/2008|02/23/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|713270|9609241620||N6EOW|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|715600|0003659693||N6KE|A|HV|11/26/2008|01/14/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|724672|0003657024||N7BAG|A|HV|11/26/2008|02/08/2019||||||||||||||||||||N||BRADLEY|A|GULLEFF||||||||||11/26/2008|11/26/2008|||||| +HD|725687|0003659699||N7DOA|A|HV|11/26/2008|02/03/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|727731|9611259992||N7IAI|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|730259|9901118944||N7MQV|C|HA|01/11/1999|01/11/2009|01/19/2002|||||||||||||||||||N||||||||||||||01/11/1999|11/26/2008|||||| +HD|739973|9611259985||N8DKY|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|752893|0003660999||N8ZVD|A|HA|08/04/2003|08/03/2013||||||||||||||||||||N||CHARLES|A|HATHAWAY||||||||||11/26/2008|11/26/2008|||||| +HD|756655|9811240531||N9IFA|C|HA|11/25/1998|11/25/2008|09/08/2002|||||||||||||||||||N||||||||||||||11/25/1998|11/26/2008|||||| +HD|756948|0003659698||N9IT|A|HV|11/26/2008|01/07/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|767849|9807216986||NA5N|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|769360|9903238845||NH0M|A|HA|11/25/2008|01/08/2019||||||||||||||||||||N||||||||||||||11/25/2008|11/26/2008|||||| +HD|770082|9611228994||NI6C|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|772456|0003661013||NP3MP|A|HA|11/26/2008|04/16/2017||||||||||||||||||||N||MILTON||VELEZ ROMAN||||||||||11/26/2008|11/26/2008|||||| +HD|775152|9704075999||NY4X|A|HV|05/20/1997|05/20/2007||||||||||||||||||||N||||||||||||||05/20/1997|11/26/2008|||||| +HD|776271|9611258925||W0DQD|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|776681|0002725838||W0FLS|A|HV|08/25/2006|11/18/2016||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|777608|9400027450||W0KHG|C|HA|11/23/2002|11/23/2012|08/17/2007|||||||||||||||||||N||||||||||||||11/23/2002|11/26/2008|||||| +HD|781879|9710158774||W1FMO|C|HA|10/15/1997|01/24/2007|08/10/2000|||||||||||||||||||N||||||||||||||10/15/1997|11/26/2008|||||| +HD|783174|9701098974||W1LNO|C|HA|01/09/1997|01/09/2007|11/30/2007|||||||||||||||||||N||||||||||||||01/09/1997|11/26/2008|||||| +HD|786068|9803099993||W2DDZ|C|HA|01/08/2004|04/05/2014|07/22/2008|||||||||||||||||||N||||||||||||||01/08/2004|11/26/2008|||||| +HD|786277|9611258901||W2EAQ|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|786417|9611258854||W2ENK|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|788144|9611258985||W2LXN|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|788266|9611258970||W2MOR|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|791899|9611258934||W3HID|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|794341|9611258959||W3VYL|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|794850|0003659697||W4ADE|A|HV|11/26/2008|11/19/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|795856|9901285955||W4DJM|A|HV|02/24/1999|02/24/2009||||||||||||||||||||N||||||||||||||02/24/1999|11/26/2008|||||| +HD|796620|0003659578||W4GAZ|A|HV|11/26/2008|12/02/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|796771|9611258980||W4GND|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|796875|0003659635||W4GX|A|HV|11/26/2008|02/23/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|798496|0003657029||W4MJR|A|HV|11/26/2008|01/28/2019||||||||||||||||||||N||MICHAEL|J|RYAN||||||||||11/26/2008|11/26/2008|||||| +HD|798509|0003659695||W4MKR|A|HV|11/26/2008|12/09/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|800510|0003659605||W4SNT|A|HV|11/26/2008|02/23/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|801280|0003063335||W4VFF|A|HV|11/26/2008|12/09/2018||||||||||||||||||||N||JOHN|K|NICHOLS||||||||||11/26/2008|11/26/2008|||||| +HD|801517|0003659591||W4WDP|A|HV|11/26/2008|12/30/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|802951|0003659677||W5CRP|A|HV|11/26/2008|12/17/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|806396|9611258839||W5RUT|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|806685|9611258863||W5SUV|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|808835|9902186982||W6CC|A|HA|11/26/2008|02/19/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|811316|9611258966||W6LCW|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|815769|0003659674||W7CDF|A|HV|11/26/2008|12/01/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|816033|9611258956||W7DFC|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|816647|9611258962||W7FVZ|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|818676|0003659574||W7MOO|A|HV|11/26/2008|11/18/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|818987|9611258850||W7OPF|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|820199|9902100214||W7WBU|A|HA|11/26/2008|02/10/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|820608|0003659703||W7ZWW|A|HV|11/26/2008|12/30/2018||||||||||||||||||||N||ANDREW|R|WYMORE|SR|||||||||11/26/2008|11/26/2008|||||| +HD|821103|9811055976||W8BZ|A|HV|11/26/2008|11/26/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|821285|0003659571||W8CSK|A|HV|11/26/2008|07/16/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|822096|0003659580||W8GLS|A|HV|11/26/2008|02/03/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|823062|0003659686||W8KMS|A|HV|11/26/2008|02/03/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|823126|9701108986||W8KRR|C|HA|01/10/1997|01/10/2007|04/14/2006|||||||||||||||||||N||||||||||||||07/27/2005|11/26/2008|||||| +HD|823605|9611258943||W8MFH|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|825887|9611258884||W8ZMQ|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|826221|9902050119||W9BEV|A|HV|11/26/2008|02/23/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|828467|9400626919||W9LYA|C|HA|05/11/2000|07/17/2010|03/14/2007|||||||||||||||||||N||||||||||||||05/11/2000|11/26/2008|||||| +HD|830211|9611258937||W9VHQ|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||05/11/2000|11/26/2008|||||| +HD|830646|9811170113||W9YZI|C|HA|11/18/1998|11/18/2008|01/11/2008|||||||||||||||||||N||||||||||||||11/18/1998|11/26/2008|||||| +HD|831119|9611258845||WA0DDD|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|833584|9611258859||WA0ZHU|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|833593|9611258945||WA0ZJC|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|836173|9901305993||WA1UXA|A|HV|11/26/2008|02/23/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|838202|9801128913||WA2EWV|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|840268|9611258972||WA2MYG|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||Raymond|R|Pickens||||||||||05/22/2001|11/26/2008|||||| +HD|842317|9611258954||WA2WEY|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|844924|9611258777||WA3SDK|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|846976|9611258998||WA4DJX|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|853766|9611258899||WA5KQI|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|854486|0003288618||WA5QMV|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||DARYL|B|GOOD||||||||||11/26/2008|11/26/2008|||||| +HD|859314|9611258878||WA6PCU|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|860173|0003660967||WA6SIV|A|HA|11/26/2008|02/24/2019||||||||||||||||||||N||Joseph|M|Hope||||||||||11/26/2008|11/26/2008|||||| +HD|863798|9808050216||WA7SNU|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|864676|0001664123||WA7ZTT|A|HA|03/19/2004|05/24/2014||||||||||||||||||||N||Jerry|H|Swalling||||||||||11/26/2008|11/26/2008|||||| +HD|865041|9611258986||WA8COT|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|865257|9803260620||WA8EDP|E|HA|04/03/1998|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||04/03/1998|11/26/2008|||||| +HD|865326|9611258903||WA8ESG|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|867245|9611258990||WA8VMK|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|867763|9901066996||WA9AFM|A|HA|11/26/2008|01/07/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|872712|9611258860||WB0QZO|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|878000|9811180336||WB2JRR|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|878064|9611258939||WB2KAK|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|879319|0002517152||WB2QDB|A|HA|11/26/2008|02/12/2019||||||||||||||||||||N||THOMAS|B|HOGAN||||||||||11/26/2008|11/26/2008|||||| +HD|879708|0003659702||WB2SEB|A|HV|11/26/2008|01/13/2019||||||||||||||||||||N||EUSEBIO|S|RODRIGUEZ||||||||||11/26/2008|11/26/2008|||||| +HD|880522|9611258836||WB2WGP|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|881837|9611258887||WB3DWY|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|883934|9807300216||WB4CDF|A|HA|11/26/2008|08/04/2018||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|883956|9903156958||WB4CFQ|A|HA|03/18/1999|03/18/2009||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|886909|9611258920||WB4PRR|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|888065|9611258877||WB4VNN|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|889247|9902090349||WB5CIQ|E|HA|02/09/1999|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||02/09/1999|11/26/2008|||||| +HD|894209|9611258900||WB6FAC|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|902491|9611258853||WB8GER|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|910390|9810270903||WD0DXA|C|HA|11/09/1998|11/09/2008|12/31/2007|||||||||||||||||||N||||||||||||||10/12/2005|11/26/2008|||||| +HD|911621|0003660972||WD4AUD|A|HA|11/26/2008|02/24/2019||||||||||||||||||||N||Ronald|R|Lyall||||||||||11/26/2008|11/26/2008|||||| +HD|912468|9812090507||WD4EOY|A|HA|12/10/1998|12/10/2008||||||||||||||||||||N||||||||||||||12/10/1998|11/26/2008|||||| +HD|917194|9904070731||WD5UNT|A|HV|04/09/1999|03/31/2009||||||||||||||||||||N||||||||||||||04/09/1999|11/26/2008|||||| +HD|918427|9611258866||WD6FZM|E|HA|11/25/1996|11/25/2006|11/26/2008|||||||||||||||||||N||||||||||||||11/25/1996|11/26/2008|||||| +HD|920254|0003660971||WD8KCY|A|HA|11/26/2008|02/24/2019||||||||||||||||||||N||EARL|A|POTTER||||||||||11/26/2008|11/26/2008|||||| +HD|929643|0003660968||WP3BG|A|HA|11/26/2008|02/24/2019||||||||||||||||||||N||HERIBERTO||GONZALEZ ORTIZ||||||||||11/26/2008|11/26/2008|||||| +HD|935563|0003661006||WQ9G|A|HA|01/28/2000|04/24/2010||||||||||||||||||||N||DAVID|W|STERNA||||||||||11/26/2008|11/26/2008|||||| +HD|935598|0003659590||WR0NG|A|HV|11/26/2008|01/07/2019||||||||||||||||||||N||PAUL|S|HILDE|SR|||||||||11/26/2008|11/26/2008|||||| +HD|937206|0003657023||WW9GS|A|HV|11/26/2008|02/10/2019||||||||||||||||||||N||||||||||||||11/26/2008|11/26/2008|||||| +HD|937597|9709150708||WY3S|C|HA|03/01/2002|04/21/2012|08/15/2008|||||||||||||||||||N||Charles|B|Cooper||||||||||03/01/2002|11/26/2008|||||| +HD|1303622|0003661002||W1SM|A|HV|10/24/2000|10/24/2010||||||||||||||||||||N||ALBERT|A|DROLLETT|JR|||||||||11/26/2008|11/26/2008|||||| +HD|1955289|0000402974||KG6FRW|A|HA|03/21/2001|03/21/2011||||||||||||||||||||N||Michael|A|Quiniola||||||||||11/26/2008|11/26/2008|||||| +HD|2434181|0003661003||AG4VI|A|HA|09/14/2006|12/11/2016||||||||||||||||||||N||JOSEPH|G|KISLO||||||||||11/26/2008|11/26/2008|||||| +HD|2438174|||NP4V|C|HV|08/08/2002|08/08/2012|08/22/2007|||||||||||||||||||N||EDWARD||IRIZARRY ORTIZ||||||||||08/08/2002|11/26/2008|||||| +HD|2560646|0002937748||KC8YPK|A|HA|11/13/2003|11/13/2013||||||||||||||||||||N||John|W|Niedermier|Jr|||||||||11/26/2008|11/26/2008|||||| +HD|2570556|0001658227||KG6TGH|A|HA|12/29/2003|12/29/2013||||||||||||||||||||N||MARGARET|H|WILSON||||||||||11/26/2008|11/26/2008|||||| +HD|2578937|0001591820||KG6TOB|A|HA|01/22/2004|01/22/2014||||||||||||||||||||N||Raymond|J|Wilson||||||||||11/26/2008|11/26/2008|||||| +HD|2811616|0002938473||KI4PEQ|A|HA|05/17/2006|05/17/2016||||||||||||||||||||N||Richard|L|Ray||||||||||11/26/2008|11/26/2008|||||| +HD|2836903|0003660964||KI6FDN|A|HA|08/18/2006|08/18/2016||||||||||||||||||||N||David|B|Heiser||||||||||11/26/2008|11/26/2008|||||| +HD|2846092|0003090813||N6OOB|A|HV|09/23/2006|09/23/2016||||||||||||||||||||N||Brandon James||Bianchi||||||||||11/26/2008|11/26/2008|||||| +HD|2846663|||K4WFN|A|HV|09/26/2006|09/26/2016||||||||||||||||||||N||William|F|Norton||||||||||11/26/2008|11/26/2008|||||| +HD|2880376|0003661007||KB3ONK|A|HA|02/09/2007|02/09/2017||||||||||||||||||||N||DAVID|M|LAUNTZ||||||||||11/26/2008|11/26/2008|||||| +HD|2928245|||AB5L|A|HV|07/13/2007|07/13/2017||||||||||||||||||||N||martin|k|reeves||martin reeves||||||||11/26/2008|11/26/2008|||||| +HD|2940009|0003661011||KI6LNI|A|HA|08/23/2007|08/23/2017||||||||||||||||||||N||JEFFREY|L|ERICKSON||||||||||11/26/2008|11/26/2008|||||| +HD|2955171|0003209682||KI6MPA|A|HA|10/25/2007|10/25/2017||||||||||||||||||||N||Eugene||Bentz||||||||||11/26/2008|11/26/2008|||||| +HD|2958600|0003660790||KI6MVB|A|HA|11/07/2007|11/07/2017||||||||||||||||||||N||Ivan|M|Bland||||||||||11/26/2008|11/26/2008|||||| +HD|2970055|||K2NEO|A|HV|12/14/2007|12/14/2017||||||||||||||||||||N||Brett|E|Lewis||||||||||11/26/2008|11/26/2008|||||| +HD|2977794|0003297130||KE5SEK|A|HA|01/22/2008|01/22/2018||||||||||||||||||||N||CALEB|M|BRYMLEY||||||||||11/26/2008|11/26/2008|||||| +HD|3010114|0003660788||KI6QDF|A|HA|05/05/2008|05/05/2018||||||||||||||||||||N||John||Chen||||||||||11/26/2008|11/26/2008|||||| +HD|3010118|0003660787||KI6QDJ|A|HA|05/05/2008|05/05/2018||||||||||||||||||||N||Marcel||Stieber||||||||||11/26/2008|11/26/2008|||||| +HD|3015667|||AL3G|A|HA|11/26/2008|02/11/2019||||||||||||||||||||N||Michael|F|Nasitka||||||||||11/26/2008|11/26/2008|||||| +HD|3058540|0003655577||KD8JRN|A|HA|11/19/2008|11/19/2018||||||||||||||||||||N||BURTRAM|W|CREAM||||||||||11/26/2008|11/26/2008|||||| +HD|3059281|0003657979||KE7YIM|A|HA|11/24/2008|11/24/2018||||||||||||||||||||N||Erin|L|Stadfeld||||||||||11/26/2008|11/26/2008|||||| +HD|3059288|0003657994||AL3I|A|HA|11/24/2008|11/24/2018||||||||||||||||||||N||Jean|M|Martin||||||||||11/26/2008|11/26/2008|||||| +HD|3059320|0003658041||KI6UMC|A|HA|11/24/2008|11/24/2018||||||||||||||||||||N||Michael|M|Romero||||||||||11/26/2008|11/26/2008|||||| +HD|3059595|0003657560||KI6UND|A|HA|11/25/2008|11/25/2018||||||||||||||||||||N||Jamieson|L|Host||||||||||11/26/2008|11/26/2008|||||| +HD|3059687|||K6TT|A|HV|11/25/2008|11/25/2018||||||||||||||||||||N||Philip|T|Steffora||||||||||11/26/2008|11/26/2008|||||| +HD|3059768|||NN1G|C|HV|11/25/2008|11/25/2018|11/26/2008|||||||||||||||||||N||GIlbert|E|Bishop||||||||||11/25/2008|11/26/2008|||||| +HD|3060117|0003660361||AH0BS|A|HA|11/25/2008|11/25/2018||||||||||||||||||||N||Hiroyuki||Ikarashi||||||||||11/26/2008|11/26/2008|||||| +HD|3060121|0003660966||KD8JSS|A|HA|11/25/2008|11/25/2018||||||||||||||||||||N||JACQUELINE|M|LEONARD||||||||||11/26/2008|11/26/2008|||||| +HD|3060246|||AB1JV|A|HA|11/25/2008|11/25/2018||||||||||||||||||||N||Gilbert|E|Bishop||||||||||11/26/2008|11/26/2008|||||| +HD|3060296|0003659407||KC9OSE|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||Gregory|W|Cook||||||||||11/26/2008|11/26/2008|||||| +HD|3060297|0003658742||KI6UNT|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||ROBERT|S|SALAS||||||||||11/26/2008|11/26/2008|||||| +HD|3060298|0003658692||KJ4IDG|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||Bruce|M|Williams||||||||||11/26/2008|11/26/2008|||||| +HD|3060461|0003660772||KI6UNU|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||John|T|Abel||||||||||11/26/2008|11/26/2008|||||| +HD|3060462|0003660773||KI6UNV|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||Jesse|T|Adamson||||||||||11/26/2008|11/26/2008|||||| +HD|3060463|0003660775||KI6UNW|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||Mark Lester|C|Borja||||||||||11/26/2008|11/26/2008|||||| +HD|3060464|0003660776||KI6UNX|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||Michael|J|Bryant||||||||||11/26/2008|11/26/2008|||||| +HD|3060465|0003660778||KI6UNY|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||Sean|K|Fitzsimmons||||||||||11/26/2008|11/26/2008|||||| +HD|3060466|0003660779||KI6UNZ|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||Sean|W|Fritz||||||||||11/26/2008|11/26/2008|||||| +HD|3060467|0003660781||KI6UOA|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||Dylan|A|Ishihara||||||||||11/26/2008|11/26/2008|||||| +HD|3060468|0003660783||KI6UOB|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||Alicia|I|Johnstone||||||||||11/26/2008|11/26/2008|||||| +HD|3060469|0003660784||KI6UOC|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||Andrew|J|Musselman||||||||||11/26/2008|11/26/2008|||||| +HD|3060470|0003660786||KI6UOD|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||Samuel|J|Radinsky||||||||||11/26/2008|11/26/2008|||||| +HD|3060471|0003660791||KI6UOE|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||John|A|Benson||||||||||11/26/2008|11/26/2008|||||| +HD|3060483|0003660965||KC2UFM|A|HA|11/26/2008|11/26/2018||||||||||||||||||||N||Michael|C|Mollica||||||||||11/26/2008|11/26/2008|||||| +EN|215409|||AA0TH|L|L00370282|KAMIENSKI, JILL C|JILL|C|KAMIENSKI|||||3017 Hightower Pl #308|Fairfax|VA|22031||JILL KAMIENSKI|000|0005126461|I||| +EN|218327|||AA6PR|L|L00944525|GILLILAND, DOUGLAS G|DOUGLAS|G|GILLILAND|||||1150 S PITTSBURGH ST|CONNELLSVILLE|PA|15425|||000|0012199717|I||| +EN|221076|||AB5A|L|L00140954|ECKEL JR, KENNETH P|KENNETH|P|ECKEL|JR||||2020 CEMETERY RD|SANTA FE|TX|77517|||000|0002439255|I||| +EN|225737|||AE4H|L|L01448295|HOLT, EARL D|EARL|D|HOLT|||||9724 DECOURSEY PK|COVINGTON|KY|41015|||000|0018304956|I||| +EN|227648|||AI5U|L|L00596327|STERNBERG, TIMOTHY M|TIMOTHY|M|STERNBERG|||||4906 SE MILLS AVE|LAWTON|OK|73501|||000|0007954167|I||| +EN|231520|||K0RQU|L||BUEHLER, DONALD L|DONALD|L|BUEHLER|||||4135 DODD RD|EAGAN|MN|55123|||000||I||| +EN|238366|||K2MUD|L|L00257497|Genau, Michael J|Michael|J|Genau|||||91 Mann Ave|Staten Island|NY|10314|||000|0003538113|I||| +EN|238484|||K2OI|L|L00198824|ROOK, LAWRENCE E|LAWRENCE|E|ROOK|||||10 FAIR OAKS RD|CENTERVILLE|MA|02632|||000|0003635935|I||| +EN|239218|||K2SSN|L|L00142832|PAYNE, JERRY D|JERRY|D|PAYNE|||||115 E 2ND ST|CORNING|NY|14830|||000|0008292583|I||| +EN|240982|||K3GUX|L|L01213895|HARTMAN SR, JOSEPH V|JOSEPH|V|HARTMAN|SR||||3 BALSA|OCEANVIEW|DE|19970|||000|0015737901|I||| +EN|242184|||K3PAT|L|L01447941|PIERCE, PATSY|PATSY||PIERCE|||||8278 PATTERSON RD|COLLEGE GROVE|TN|370469117|||000|0018301283|I||| +EN|242535|||K3ROQ|L||BATTY, PIERCE G|PIERCE|G|BATTY|||||222 LINCOLN AVE|COLLINGDALE|PA|19023|||000||I||| +EN|243318|||K3XE|L|L00170094|GABRIEL, MICHAEL C|MICHAEL|C|GABRIEL|||||94 BRAITHWAITE LN|QUAKERTOWN|PA|18951|||000|0003355534|I||| +EN|243490|||K3ZIY|L||GOTTLIEB, HERBERT|HERBERT||GOTTLIEB|||||811 BURGHLEY AVE|VENTNOR|NJ|08406|||000||I||| +EN|244029|||K4BLC|L|L00143221|CLAPPER, BRETT L|BRETT|L|CLAPPER|||||104 J T DRIVE|SHELBY|NC|28150|||000|0002660207|I||| +EN|246068|||K4IDW|L|L00236161|LOW, DEAN A|DEAN|A|LOW|||||5623 ROGERS AVE|PORT ORANGE|FL|32127|||000|0002647469|I||| +EN|248683|||K4SGA|L||RAMSEY, R V|R|V|RAMSEY|||||714 CHATTER RD|MOUNT PLEASANT|SC|29464|||000||I||| +EN|251381|||K5GJA|L|L01448176|CHENEY, KENNETH W|KENNETH|W|CHENEY|||||237 Plesant Knoll Rd|Morrison|TN|37357|||000|0018303669|I||| +EN|251899|||K5JFS|L|L01448257|STOROZYSZYN, JOE F|JOE|F|STOROZYSZYN|||||285 STOROZYSZYN RD|DE RIDDER|LA|70634|||000|0018238568|I||| +EN|254545|||K6ALX|L|L01309669|ANGKHAM, ALEX M|ALEX|M|ANGKHAM|||||3169 SUGAR BEET WAY|UNION CITY|CA|945871655|||000|0016766727|I||| +EN|257346|||K6PBB|L|L01411760|WHITE, THOMAS W|THOMAS|W|WHITE|||||5959 Dry Oak Court|SAN JOSE|CA|95120|||000|0017901323|I||| +EN|257705|||K6RAL|L|L01448291|BURR, THOMAS S|THOMAS|S|BURR|||||157 SPRING MEADOW LANE|HANOVER|MA|02339|||000|0018304915|I||| +EN|257754|||K6RFG|L|L00286051|GANIRON, ROMER CECIL F|ROMER CECIL|F|GANIRON|||||773 N KENMORE AVE|LOS ANGELES|CA|90029|||000|0003969359|I||| +EN|259228|||K7AIX|L|L01447935|SCHULZE, STANLEY R|STANLEY|R|SCHULZE|||||9395 S 3200 E|SANDY|UT|84092|||000|0018301234|I||| +EN|259949|||K7EOC|L|L00842156|City Of Portland - EOC||||||||9911 SE Bush St|Portland|OR|97266||Patricia Hopkins|000|0010695294|B||| +EN|265008|||K8MAK|L|L00137258|Kusick, Mark A|Mark|A|Kusick|||||11591 Blossom Ave|Parma Heights|OH|44130|||000|0003080926|I||| +EN|265789|||K8RDO|L||ROOSSIEN, ELMER J|ELMER|J|ROOSSIEN|||||2111 RAYBROOK SE 2013|GRAND RAPIDS|MI|49506|||000||I||| +EN|266190|||K8TI|L|L01099090|BAKER, DANIEL D|DANIEL|D|BAKER|||||4385 Sand Creek Highway|ADRIAN|MI|49221|||000|0014450498|I||| +EN|266351|||K8UFO|L|L01447166|NESTOR, JEFF D|JEFF|D|NESTOR|||||2375 QUEEN ROAD|CLENDENIN|WV|25045|||000|0018292839|I||| +EN|267595|||K9CLL|L|L00250118|LINDER, CLEETUS L|CLEETUS|L|LINDER|||||4984 CLOVER ST|VIRGINIA BEACH|VA|23462|||000|0002568913|I||| +EN|267880|||K9EAA|L||JORDAN, ROBERT S|ROBERT|S|JORDAN|||||1818 N AUDUBON RD|INDIANAPOLIS|IN|46218|||000||I||| +EN|270431|||K9UWY|L|L00594980|PATTERSON, R NELSON|R NELSON||PATTERSON||||||CAMBRIDGE|WI|535230435|435||000|0007949894|I||| +EN|271659|||KA0DOW|L|L00977677|SMITH, ROSS O|ROSS|O|SMITH|||||1010 SE RIO DR|ANKENY|IA|50021|||000|0012784294|I||| +EN|272104|||KA0FWC|L|L00350789|Ackerman, John C|John|C|Ackerman|||||1420 13th St.|Auburn|NE|68305||John C Ackerman|000|0004692109|I||| +EN|277098|||KA1EIB|L||HUNIHAN, EDWARD F|EDWARD|F|HUNIHAN|||||288 HEMLOCK DR|ORANGE|CT|06477|||000||I||| +EN|285785|||KA2KTJ|L||BOSHELL, ELAINE M|ELAINE|M|BOSHELL|||||1 WASHINGTON AVE|SAUGERTIES|NY|12477|||000||I||| +EN|294633|||KA3YLE|L|L01447765|SMITH, RICHARD G|RICHARD|G|SMITH|||||4708 Roberta Drive|West Mifflin|PA|15122|||000|0018299511|I||| +EN|298443|||KA4RGQ|L|L00377534|ZARIN, KEITH W|KEITH|W|ZARIN|||||13011 Meadowridge Drive|Benton|AR|72019||KEITH ZARIN|000|0005389853|I||| +EN|298900|||KA4TNH|L||SMITH, ESTHER O|ESTHER|O|SMITH|||||350 COUNTRY CLUB DR|MANCHESTER|TN|37355|||000||I||| +EN|299095|||KA4UNR|L||LAMA, LUIS A|LUIS|A|LAMA|||||6226 BERLEE DR|ALEXANDRIA|VA|22312|||000||I||| +EN|305290|||KA6BPV|L||STURM, WILLIAM|WILLIAM||STURM|||||3230 W LINCOLN AVE 108|ANAHEIM|CA|92801|||000||I||| +EN|308413|||KA6UIT|L|L00152019|Mackenroth, Michael L|Michael|L|Mackenroth||||||BRUSH PRAIRIE|WA|986060952|952||000|0001877125|I||| +EN|311777|||KA7MOJ|L|L01447709|CLULOW, JEFFREY S|JEFFREY|S|CLULOW|||||9273 SE ALDER ST|PORTLAND|OR|972162111|||000|0018298901|I||| +EN|322065|||KA9MYV|L||BEHLING, ANDREW A|ANDREW|A|BEHLING|||||W221 N3148 SHADY NOOK|PEWAUKEE|WI|53072|||000||I||| +EN|340354|||KB1DSJ|L|L01448288|SIMJIAN, CHARLES F|CHARLES|F|SIMJIAN|||||26 EDDON DR|EAST HAVEN|CT|065121056|||000|0018304899|I||| +EN|340729|||KB1EHS|L|L00872717|MERRY, LINDA L|LINDA|L|MERRY|||||835 Windsor Bush Rd|Windsor|MA|01270|||000|0011026028|I||| +EN|340891|||KB1NB|L|L01448038|MC DONALD, MICHAEL J|MICHAEL|J|MC DONALD|||||113 HIGHLAND AVE|NORTH DARTMOUTH|MA|027471151|||000|0018302257|I||| +EN|343352|||KB2GQK|L|L01321204|MASON, ROBERT G|ROBERT|G|MASON|||||70 LIME KILN ROAD|TUCKAHOE|NY|10707|||000|0016895088|I||| +EN|356369|||KB4CQW|L|L00240546|SHARR, REX A|REX|A|SHARR|||||1760 Lancing Drive, Apt. 210|Salem|VA|24153|||000|0003258860|I||| +EN|361265|||KB4VUK|L||CALLAHAN, JOHN M|JOHN|M|CALLAHAN|||||1000 E FIRST ST|SANFORD|FL|32771|||000||I||| +EN|371355|||KB5VWM|L|L00133817|LEES, CATHERINE C|CATHERINE|C|LEES||||||WALDRON|AR|72938|1198||000|0002546042|I||| +EN|377092|||KB6QEU|L||BROOKS, RANCE J|RANCE|J|BROOKS|||||6005 WISE RD|NEW CASTLE|CA|95658|||000||I||| +EN|380170|||KB6ZVL|L|L00230744|HOOPES, FRED L|FRED|L|HOOPES|||||2341 FAIRWAY DRIVE|SPANISH FORK|UT|84660|||000|0002130078|I||| +EN|380414|||KB7ARX|L||HAASE, EVELYN K|EVELYN|K|HAASE|||||3655 E AIRPORT DR|RIMROCK|AZ|86335|85||000||I||| +EN|382054|||KB7FLH|L||MC ARDLE, CLYDE H|CLYDE|H|MC ARDLE|||||2586 HAIG|EUGENE|OR|97402|||000||I||| +EN|382319|||KB7GCA|L|L00244895|MC INTIER, DAREN L|DAREN|L|MC INTIER|||||605 S PHILLIPPI ST|BOISE|ID|83705||DAREN L MC INTIER|000|0002170678|I||| +EN|382471|||KB7GMW|L|L01448282|ROHDE, DEAN L|DEAN|L|ROHDE|||||4500 W 19TH AVE|KENNEWICK|WA|99338|||000|0018304857|I||| +EN|382641|||KB7GYN|L||OLSON, O MURRAY|O MURRAY||OLSON|||||3355 N DELTA HWY 2|EUGENE|OR|974085900|||000||I||| +EN|400347|||KB8SOE|L|L00499795|Johnson, Keith J|Keith|J|Johnson||||||Midland|MI|486411040|1040||000|0006887798|I||| +EN|404494|||KB9AGE|L|L01448254|HESS, TIMOTHY M|TIMOTHY|M|HESS|||||15850 E TIMBERLANE|DAVIS JUNCTION|IL|61020|||000|0017640640|I||| +EN|411825|||KB9OKB|L|L00452670|BOTTOMLEY, DAVID A|DAVID|A|BOTTOMLEY|||||1806 Schutte Rd.|Evansville|IN|47712|||000|0006196992|I||| +EN|412173|||KB9OYE|L||STARK, JOHN S|JOHN|S|STARK|||||1700 BEECHWOOD DR|PLAINFIELD|IN|46168|||000||I||| +EN|412175|||KB9OYG|L|L01120498|WEBBER, DOUGLAS E|DOUGLAS|E|WEBBER|||||423 Crittenden St|Chenoa|IL|61726|||000|0014704662|I||| +EN|414570|||KB9SWQ|L|L00195454|May, Bradley J|Bradley|J|May|||||27390 Harrison Rd|South Bend|IN|46619|||000|0003004348|I||| +EN|417275|||KC0BWU|L|L01051582|SVENDSEN, LYLE W|LYLE|W|SVENDSEN|||||5803 McColl Dr.|Savage|MN|55378|||000|0013884671|I||| +EN|418959|||KC0EOV|L|L01447992|ROSS, ROGER I|ROGER|I|ROSS|||||7630 S NEWPORT CT|ENGLEWOOD|CO|801122511|||000|0018301796|I||| +EN|419010|||KC0EQX|L|L01447752|TORRIANO, FRANCESCO|FRANCESCO||TORRIANO|||||47-47 36th Street, Suite # 7569|Long Island City|NY|11101||Francesco Torriano|000|0018299370|I||| +EN|419118|||KC0EVV|L|L01448221|JARVIS, TERRY W|TERRY|W|JARVIS|||||2500 ORCHARD LN|JEFFERSON CITY|MO|651090608|||000|0018304212|I||| +EN|420199|||KC0OS|L||BERK, ROBERT A|ROBERT|A|BERK|||||5220 S 50TH ST|LINCOLN|NE|68516|||000||I||| +EN|420232|||KC0QK|L||SWANSON, CHESTER J|CHESTER|J|SWANSON|||||2059 WILLIAM ST|ROSEVILLE|MN|55113|||000||I||| +EN|421020|||KC2AHJ|L||ANTUNES JR, JOSE A|JOSE|A|ANTUNES|JR||||54 SYKES AVE|LIVINGSTON|NJ|07039|||000||I||| +EN|422214|||KC2CGZ|L|L01290974|Gagen, Thomas J|Thomas|J|Gagen|||||430 Washington Ave|Avon By The Sea|NJ|07717|||000|0016561490|I||| +EN|423683|||KC2ERU|L|L01448292|MONTES, ANDRES|ANDRES||MONTES|||||441 40 ST APT C 5|BROOKLYN|NY|11737|||000|0018304923|I||| +EN|465784|||KC7CPM|L|L00709060|BUCKWALTER, WILLIAM D|WILLIAM|D|BUCKWALTER|||||8715 GOOSANDER WAY|LITTLETON|CO|80126|||000|0009217282|I||| +EN|467864|||KC7FXK|L|L00889081|ROEBAS, SARAH|SARAH||ROEBAS||||||TENINO|WA|985890771|771||000|0011205978|I||| +EN|468670|||KC7HEX|L|L00141647|Jones Jr, Walter R|Walter|R|Jones|Jr||||2338 Cobble Hill Terrace|Silver Spring|MD|20902|||000|0002062032|I||| +EN|476245|||KC7TKV|L||JUDD, DARYL F|DARYL|F|JUDD|||||3983 JOSH|EUGENE|OR|97402|||000||I||| +EN|476246|||KC7TKW|L||DARNEILLE, JOSEPH L|JOSEPH|L|DARNEILLE|||||532 W BROCCOLI|ROSEBURG|OR|97470|||000||I||| +EN|476249|||KC7TKZ|L||BARRERA, ESPERANZA|ESPERANZA||BARRERA|||||3622 W BERKELY|PHOENIX|AZ|85009|||000||I||| +EN|476251|||KC7TLA|L||FRIEDENTHAL, JOE A|JOE|A|FRIEDENTHAL|||||2838 W MACKENZIE|PHOENIX|AZ|85017|||000||I||| +EN|476252|||KC7TLB|L||MEDINA, FRANK A|FRANK|A|MEDINA|||||3847 W LEWIS|PHOENIX|AZ|85609|||000||I||| +EN|478449|||KC7WXB|L|L00141657|JONES III, WALTER R|WALTER|R|JONES|III||||15302 40th Ave West Unit 1-103|Lynnwood|WA|98087|||000|0002187029|I||| +EN|485633|||KC8JKK|L|L01448237|HAYES JR, JAMES D|JAMES|D|HAYES|JR||||RT 1 BOX 152 E|OAK HILL|WV|25901|||000|0018304444|I||| +EN|487131|||KC8LUT|L|L00535674|MC ELDOWNEY, JOHN C|JOHN|C|MC ELDOWNEY|||||RR 3 BOX 148C|BRIDGEPORT|WV|26330|||000|0007288004|I||| +EN|487133|||KC8LUV|L|L00141181|COOPER, TERRY M|TERRY|M|COOPER|||||49 WINSTEAD CIR|GRANVILLE|OH|43023|||000|0003081833|I||| +EN|487135|||KC8LUY|L|L00278106|TULEY, JAMES R|JAMES|R|TULEY|||||RR 1 BOX 177|FORT GAY|WV|25514|||000|0003984770|I||| +EN|488906|||KD0VU|L|L00226116|WETZEL, ROGER A|ROGER|A|WETZEL|||||2705 S18th St|COUNCIL BLUFFS|IA|51501||Roger Wetzel|000|0002302487|I||| +EN|490188|||KD3QD|L|L00137873|BALES, ROBERT C|ROBERT|C|BALES|||||41 Kelly Drive|CARLISLE|PA|17015|||000|0002142388|I||| +EN|506501|||KD5C|L|L00245751|SAXON SR, BRYANT W|BRYANT|W|SAXON|SR||||5006 BRIARPATH DR|MIDLAND|TX|79707|||000|0002440642|I||| +EN|508696|||KD5FON|L|L01448316|MALONEY, SHERRY I|SHERRY|I|MALONEY|||||5350 LLANO ST|ABILENE|TX|796054524|||000|0018305144|I||| +EN|508846|||KD5FUW|L|L01444950|GRIMES, JAMES C|JAMES|C|GRIMES|||||21 LODEN ROAD|FULTON|MS|38843|||000|0018268367|I||| +EN|508873|||KD5FWB|L|L01447990|SMITH, DAVID W|DAVID|W|SMITH|||||1053 THREE PINE CHURCH RD|DE RIDDER|LA|70634|||000|0018301770|I||| +EN|509328|||KD5GPO|L|L00235759|FOWSKY, FRANK J|FRANK|J|FOWSKY|||||8030 FAIR OAKS AVE|DALLAS|TX|75231|||000|0003530292|I||| +EN|510053|||KD5HTA|L|L01447686|PORTER, EDWARD J|EDWARD|J|PORTER|||||1361 PRIVATE RD 820|MINGUS|TX|76463|||000|0018298612|I||| +EN|511542|||KD6BQT|L|L00609322|GATES, STEPHAN J|STEPHAN|J|GATES|||||5803 N. Camino Esplendora #204|Tucson|AZ|85718|||000|0008106528|I||| +EN|517029|||KD6KR|L|L00346536|MATHESON, MARC E|MARC|E|MATHESON|||||2907 VOLLEY CIRCLE|MEADOW VISTA|CA|95722|||000|0004849188|I||| +EN|527870|||KD7CZB|L|L00203533|ZACHARY, RICHARD G|RICHARD|G|ZACHARY||||||Beaverton|OR|97006|5125||000|0002043099|I||| +EN|528643|||KD7EFA|L|L01448287|EYRE, DU WAYNE L|DU WAYNE|L|EYRE|||||42 E 400 S|SAINT GEORGE|UT|84770|||000|0018304881|I||| +EN|528646|||KD7EFD|L|L01448293|CLAUSON, H DEAN|H DEAN||CLAUSON|||||8133 PARTRIDGE RUN WAY|WEST JORDAN|UT|84088|||000|0018304931|I||| +EN|530831|||KD8XL|L|L00370681|Dempsey, F Edgar|F Edgar||Dempsey|||||110 Morton St|Jackson|OH|456401335|||000|0005325220|I||| +EN|547689|||KE4YZW|L|L00780836|DONALDSON, RICHARD R|RICHARD|R|DONALDSON|||||10407 Bessent Road N.|JACKSONVILLE|FL|32218|||000|0010014835|I||| +EN|548616|||KE5SS|L||JOHNSON, VERNON J|VERNON|J|JOHNSON|||||2212 LESTER NE APT 150|ALBUQUERQUE|NM|87112|||000||I||| +EN|550823|||KE6DII|L|L00290556|AKER, EUGENE D|EUGENE|D|AKER|||||4549 W. Avenue 40|Los Angeles|CA|90065|||000|0004216149|I||| +EN|575148|||KF4NLV|L||HAINES, GARY D|GARY|D|HAINES|||||6343 S LIMA AVE|HOMOSASSA|FL|34446|||000||I||| +EN|575158|||KF4NMF|L||LIMA, NELSON|NELSON||LIMA|||||2100 SW 33 AVE|MIAMI|FL|33145|||000||I||| +EN|587301|||KF6HOJ|L|L00931600|PRICE, SANDRA E|SANDRA|E|PRICE|||||21865 BAYWOOD AVE|CASTRO VALLEY|CA|94546|||000|0011784345|I||| +EN|587305|||KF6HOO|L|L00931596|PRICE, GREGORY B|GREGORY|B|PRICE|||||21865 BAYWOOD AVE|CASTRO VALLEY|CA|94546|||000|0011784311|I||| +EN|587306|||KF6HOP|L|L01175816|LONGWELL, DAVID E|DAVID|E|LONGWELL|||||3583 ROSS RD|PALO ALTO|CA|94303|||000|0015320096|I||| +EN|591060|||KF6NQP|L|L01447780|VILLANUEVA, NOLI V|NOLI|V|VILLANUEVA|||||9086 Piazza Court|Elk Grove|CA|95624|||000|0018299727|I||| +EN|592825|||KF6QMQ|L|L01447735|KUSZNIR, CATIE E|CATIE|E|KUSZNIR|||||1515 Drummond Ave.|RIDGECREST|CA|935553000|||000|0018299065|I||| +EN|594512|||KF6TJE|L|L00808536|AVALON, ROBERT|ROBERT||AVALON|||||170 ROLLING RIDGE WAY|MARTINEZ|CA|94553||ROBERT AVALON|000|0010173755|I||| +EN|595505|||KF6UZB|L|L00148457|KARTSIOUKAS, NICHOLAS G|NICHOLAS|G|KARTSIOUKAS|||||2564 Paul Place|Arroyo Grande|CA|93420|||000|0001889682|I||| +EN|597204|||KF7G|L|L01447936|FREESTONE, GARY M|GARY|M|FREESTONE|||||747 N 500 W|VERNAL|UT|84078|||000|0018301242|I||| +EN|598966|||KG0UH|L|L00248000|ROME, DICK|DICK||ROME|||||9615 PRISCILLA LANE|STOCKTON|CA|95212|||000|0002197861|I||| +EN|600179|||KG4BFJ|L|L01096782|HAYDEN, JOHN T|JOHN|T|HAYDEN|||||1419 OREGON AVE|SAINT CLOUD|FL|34769|||000|0012898201|I||| +EN|600703|||KG4CCG|L|L01448283|HOWARD, VAN O|VAN|O|HOWARD|||||2718 LICKCREEK RD|SALYERSVILLE|KY|41465|||000|0018304865|I||| +EN|605976|||KH6PO|L||WOLFGANG, PAUL W|PAUL|W|WOLFGANG|||||95-174 KAHELA ST|MILILANI TOWN|HI|96789|||000||I||| +EN|608129|||KI5WF|L|L00196264|MYSTER, STUART H|STUART|H|MYSTER|||||1719 Timber Drive|Sterling|IL|61081|||000|0002259364|I||| +EN|612045|||KK4WD|L|L01448249|PENDLEY, JAMES D|JAMES|D|PENDLEY||||||BERRY|AL|35546|406||000|0018304592|I||| +EN|612992|||KK6OB|L|L00228985|EDSON, HOWARD M|HOWARD|M|EDSON|||||19070 Rainbow Mine Road|Pine Grove|CA|95665|||000|0001931765|I||| +EN|616408|||KM5UM|L|L01448169|YOUNG, BRUCE M|BRUCE|M|YOUNG|||||12317 Water Oak Drive|Keller|TX|76248||Bruce M. Young|000|0018303610|I||| +EN|619792|||KP4BKD|L|L01448290|DE JESUS ROSADO SR, HECTOR V|HECTOR|V|DE JESUS ROSADO|SR||||15 ANA MARIA ST|CAMUY|PR|006272808|||000|0018304907|I||| +EN|619845|||KP4CER|L|L00183400|OPPENHEIMER, JUAN|JUAN||OPPENHEIMER|||||ST BALDORIOTY 1368|PONCE|PR|00731|||000|0001838549|I||| +EN|621114|||KQ4LE|L|L00614503|WOOD, WILLIAM K|WILLIAM|K|WOOD|||||3725 CREEKWOOD DR|LOGANVILLE|GA|300522816|||000|0003787306|I||| +EN|622689|||KR6J|L||AHLMAN, RICHARD J|RICHARD|J|AHLMAN|||||2170 WESTLAKE BLVD|THOUSAND OAKS|CA|91360|||000||I||| +EN|623918|||KT4NY|L|L00173405|MARTIN, MAURICE D|MAURICE|D|MARTIN|||||1484 old easley hwy.|easley|SC|29640|||000|0003188653|I||| +EN|625757|||KX6D|L||GRANT, STEPHEN A|STEPHEN|A|GRANT|||||24920 VALLEY WAY|CARMEL|CA|939238340|||000||I||| +EN|626059|||KY7Y|L||LIGHTBOURNE, KIRK|KIRK||LIGHTBOURNE|||||7433 E THOMAS RD|SCOTTSDALE|AZ|852518907|||000||I||| +EN|630306|||N0IXE|L|L01448174|WERNER, TERRY L|TERRY|L|WERNER|||||4911 W Champion CT|LINCOLN|NE|68524|||000|0018299099|I||| +EN|631089|||N0KGM|L|L00407676|KUNZ JR, ROBERT L|ROBERT|L|KUNZ|JR||||8241 SOUTH TOP OF THE WORLD DRIVE|SALT LAKE CITY|UT|84121|||000|0005611645|I||| +EN|652178|||N1UQB|L|L00666021|LEIBOWITZ, M BERNICE|M BERNICE||LEIBOWITZ|||||1781 WINDERMERE AVE|PRATTVILLE|AL|360667275|||000|0008744922|I||| +EN|658150|||N2GFV|L|L01439895|YOZSA, KEVIN E|KEVIN|E|YOZSA|||||12 MORGAN DR|SUCCASUNNA|NJ|07876|||000|0018212514|I||| +EN|666280|||N2UFM|L|L00185159|TESTA, THOMAS|THOMAS||TESTA|||||30 VANESSA LA|STATEN ISLAND|NY|10312|||000|0003584380|I||| +EN|669044|||N2YOG|L|L00794543|GRAUSER, JOHN E|JOHN|E|GRAUSER|||||RT 1 BOX 2112|Folkston|GA|31537||JOHN E GRAUSER|000|0009960501|I||| +EN|669938|||N2ZYC|L|L00835261|HAGAL, SHAWN P|SHAWN|P|HAGAL|||||124 Melrose Ave|N. Arlington|NJ|07031|||000|0010619716|I||| +EN|672525|||N3FRQ|L|L00254780|KLASE, ALAN R|ALAN|R|KLASE|||||19 Bentley Ave.|Jersey City|NJ|07304|||000|0003352747|I||| +EN|673258|||N3HCF|L|L01256511|Williams, Dean C|Dean|C|Williams|||||208 Mc Graw Ave|Webster Springs|WV|26288|||000|0016220535|I||| +EN|687205|||N4FIB|L|L01447182|MC LAIN, DEBORAH C|DEBORAH|C|MC LAIN|||||3510 PERRY ST|FAIRFAX|VA|22030|||000|0018292995|I||| +EN|688859|||N4JCP|L|L00895663|PEREZ, JUAN C|JUAN|C|PEREZ|||||12317 NW 11 CT|PENBROKE PINES|FL|33026|||000|0011277431|I||| +EN|691954|||N4PMW|L||PEYTON, NEWTON H|NEWTON|H|PEYTON|||||98 EDEN LAWN TER|WEST PALM BEACH|FL|33406|||000||I||| +EN|691976|||N4PNZ|L||MAKOWSKY, CHARLES F|CHARLES|F|MAKOWSKY|||||35091 DRAKESHIRE PL APT 103|FARMINGTON|MI|48335|||000||I||| +EN|694723|||N4UOD|L|L01448181|CHASE, BRUCE A|BRUCE|A|CHASE|||||5408 EMERSON DR|RALEIGH|NC|276094564||Bruce Chase|000|0018303685|I||| +EN|695175|||N4VIA|L|L01448034|GASCH, JAMES L|JAMES|L|GASCH|||||622 S BARTON ST|ARLINGTON|VA|22204|||000|0018302224|I||| +EN|700426|||N5GIR|L|L01448281|LITTLE, MICHAEL L|MICHAEL|L|LITTLE|||||1616 IDYLLWILD CT|PLANO|TX|75075|||000|0018304840|I||| +EN|704517|||N5OQP|L|L01448219|BLOSE, TODD A|TODD|A|BLOSE|||||1001 N BETSY|WACO|TX|76706|||000|0018304196|I||| +EN|711514|||N6ADA|L|L00279596|PAHLKE, ROBERT B|ROBERT|B|PAHLKE|||||13403 INDIANA AVE|CORONA|CA|92879|||000|0003847860|I||| +EN|713270|||N6EOW|L||BLUMENTHAL, SUSAN E|SUSAN|E|BLUMENTHAL|||||26652 LATIGO SHORE DR|MALIBU|CA|90265|||000||I||| +EN|715600|||N6KE|L|L01447964|SCHELLER, ROBERT H|ROBERT|H|SCHELLER|||||13349 E 50TH ST|YUMA|AZ|85367|||000|0006199095|I||| +EN|724672|||N7BAG|L|L00200351|GULLEFF, BRADLEY A|BRADLEY|A|GULLEFF|||||677 18TH STREET APT 3|ASTORIA|OR|97103|||000|0002038958|I||| +EN|725687|||N7DOA|L|L00208208|WEAVER JR, DONALD A|DONALD|A|WEAVER|JR||||89653 DEMMING RD|Elmira|OR|97437|||000|0002046092|I||| +EN|727731|||N7IAI|L||GROVES, LELAND J|LELAND|J|GROVES|||||624 N TEXAS CIR|TUCSON|AZ|85711|||000||I||| +EN|730259|||N7MQV|L||TURBYNE, GEORGE F|GEORGE|F|TURBYNE|||||947 RANDALL ST|EUGENE|OR|97401|||000||I||| +EN|739973|||N8DKY|L||SAVORD, PETER J|PETER|J|SAVORD|||||3315 OAKWAY DR|TOLEDO|OH|43614|||000||I||| +EN|752893|||N8ZVD|L|L00342407|HATHAWAY, CHARLES A|CHARLES|A|HATHAWAY|||||2939 RIGHTEOUS RIDGE ROAD|WATERFORD|OH|45786|||000|0004402772|I||| +EN|756655|||N9IFA|L||SAHR, JAMES F|JAMES|F|SAHR|||||N 1878 CTHF|LUBLIN|WI|54447|||000||I||| +EN|756948|||N9IT|L|L00973692|BAKER, DAVID P|DAVID|P|BAKER|||||1917 S CENTENNIAL AVE|NEW PALESTINE|IN|46163|||000|0012636395|I||| +EN|767849|||NA5N|L|L00472375|HARDEN, PAUL M|PAUL|M|HARDEN||||||SOCORRO|NM|87801|757||000|0006569172|I||| +EN|769360|||NH0M|L|L01447730|KANAMORI, HIROAKI|HIROAKI||KANAMORI|||||c/o Toyohiko Muraki,1143 Nogales St|Lafayette|CA|94549|||000|0018299024|I||| +EN|770082|||NI6C|L||GRIFFIN, TERESA L|TERESA|L|GRIFFIN|||||14345 S TWILIGHT LN|OLATHE|KS|66062|||000||I||| +EN|772456|||NP3MP|L|L01448296|VELEZ ROMAN, MILTON|MILTON||VELEZ ROMAN||||||SAN GERMAN|PR|00683|10||000|0018304964|I||| +EN|775152|||NY4X|L|L01448294|HOWELL, RICHARD E|RICHARD|E|HOWELL|||||104 ROLLINGWOOD DR|TAYLORS|SC|29687|||000|0018304949|I||| +EN|776271|||W0DQD|L||GRIFFITH, RICHARD T|RICHARD|T|GRIFFITH|||||4339 OVID|DES MOINES|IA|50310|||000||I||| +EN|776681|||W0FLS|L|L00369948|RAYMOND, DAVID A|DAVID|A|RAYMOND|||||20029 352ND PL|EARLHAM|IA|50072|||000|0005592514|I||| +EN|777608|||W0KHG|L|L00164789|OGDEN, WILLIAM A|WILLIAM|A|OGDEN|||||31244 JONES RD|ASHBY|MN|56309|||000|0002260867|I||| +EN|781879|||W1FMO|L||HORVATH, PETER J|PETER|J|HORVATH|||||79 CLOVERDALE RD|UNDERHILL|VT|054899444|||000||I||| +EN|783174|||W1LNO|L||WOLFE JR, HAROLD C|HAROLD|C|WOLFE|JR||||66 OLD FIELDS RD RFD 2|SANDWICH|MA|02563|||000||I||| +EN|786068|||W2DDZ|L|L00181869|COFFIELD, JOSEPH|JOSEPH||COFFIELD|||||40 MITCHELL AVE|EAST NORTHPORT|NY|117314507|||000|0003552296|I||| +EN|786277|||W2EAQ|L|L00213040|LOINES, THOMAS E|THOMAS|E|LOINES|||||149A CARLTON AVE|EAST RUTHERFORD|NJ|07073|||000|0003429404|I||| +EN|786417|||W2ENK|L||CRIM, ROBERT C|ROBERT|C|CRIM|||||1810 3RD ST BOX 215|THOROFARE|NJ|08086|||000||I||| +EN|788144|||W2LXN|L||WISNIEWSKI, EDWARD|EDWARD||WISNIEWSKI|||||30-57 38 ST|LONG ISLAND CITY|NY|11103|||000||I||| +EN|788266|||W2MOR|L||KOVACS, WILLIAM|WILLIAM||KOVACS|||||15166 PARKSIDE DR 3|FORT MYERS|FL|33908|||000||I||| +EN|791899|||W3HID|L||SCHLESINGER, MARTIN D|MARTIN|D|SCHLESINGER|||||4766 WALLINGFORD ST|PITTSBURGH|PA|15213|||000||I||| +EN|794341|||W3VYL|L||BARBER JR, JOHN L|JOHN|L|BARBER|JR||||7 ASBURY AVE|CRISFIELD|MD|21817|||000||I||| +EN|794850|||W4ADE|L|L00175743|WIRTH, ADE|ADE||WIRTH|||||13334 Southeast 86th Circle|Summerfield|FL|34491|||000|0006525778|I||| +EN|795856|||W4DJM|L|L01448285|MC NULTY, DANIEL J|DANIEL|J|MC NULTY|||||8924 S BERKSHIRE AVE|INVERNESS|FL|34452|||000|0018304873|I||| +EN|796620|||W4GAZ|L|L01447905|MANNING SR, PAUL M|PAUL|M|MANNING|SR||||1472 SWEET BOTTOM CIR|MARIETTA|GA|30064|||000|0018300947|I||| +EN|796771|||W4GND|L||BOYD, CHARLES M|CHARLES|M|BOYD|||||MONTGOMERY & RAIL ROAD STS|TRACY CITY|TN|37387|219||000||I||| +EN|796875|||W4GX|L|L00144080|ELKINS, OSCAR T|OSCAR|T|ELKINS|||||607 BEECH STREET|CENTERVILLE|TN|37033|||000|0002647147|I||| +EN|798496|||W4MJR|L|L01080858|RYAN, MICHAEL J|MICHAEL|J|RYAN|||||10302 VERSAILLES ROAD|ROCKVALE|TN|37153|||000|0014227599|I||| +EN|798509|||W4MKR|L|L01447965|RAMM, MARY K|MARY|K|RAMM|||||234 CRAWFORD RD|HILLSBOROUGH|NC|27278|||000|0016053928|I||| +EN|800510|||W4SNT|L|L00144084|WOLFE, BURTON S|BURTON|S|WOLFE|||||4754 NW 76TH ST|COCONUT CREEK|FL|33073|||000|0002771624|I||| +EN|801280|||W4VFF|L|L01291996|NICHOLS, JOHN K|JOHN|K|NICHOLS|||||644 WEAVER CREEK ROAD|BLUFF CITY|TN|37618|||000|0016572489|I||| +EN|801517|||W4WDP|L|L01447910|PLEBAN, WILLIAM D|WILLIAM|D|PLEBAN|||||820 SUGAR MAPLE LANE|CHESAPEAKE|VA|23322|||000|0018300996|I||| +EN|802951|||W5CRP|L|L01401581|PATERSON, CHARLES R|CHARLES|R|PATERSON|||||528 SAN PATRICIO|TAFT|TX|78390|||000|0017788621|I||| +EN|806396|||W5RUT|L||CONDE, JAMES O|JAMES|O|CONDE|||||14100 JIM BYRD RD|BILOXI|MS|39532|||000||I||| +EN|806685|||W5SUV|L||THOMPSON, GLENN L|GLENN|L|THOMPSON|||||800 WEST BUCKEYE ST APT 41|DEMING|NM|88030|||000||I||| +EN|808835|||W6CC|L|L01440570|JOHNSON, NORMAN M|NORMAN|M|JOHNSON|||||6350 CASSELBERRY WAY|SAN DIEGO|CA|92119|||000|0018219709|I||| +EN|811316|||W6LCW|L||CHAPMAN, SIDNEY B|SIDNEY|B|CHAPMAN|||||10619 SNYDER RD|LA MESA|CA|92041|||000||I||| +EN|815769|||W7CDF|L|L00225184|WILKINSON, WESLEY D|WESLEY|D|WILKINSON|||||2820 AIRPORT WAY|Carson City|NV|89706|||000|0001921378|I||| +EN|816033|||W7DFC|L||HAWLEY, HARVEY W|HARVEY|W|HAWLEY|||||19515 VIEW DR|WEST LINN|OR|97068|||000||I||| +EN|816647|||W7FVZ|L||KEMPER, HOWARD O|HOWARD|O|KEMPER|||||8321 NORTH FIFTH AVE|PHOENIX|AZ|85021|||000||I||| +EN|818676|||W7MOO|L|L01447903|AGRELIUS, JAMIE K|JAMIE|K|AGRELIUS||||||RIDGECREST|CA|93555|898||000|0018300921|I||| +EN|818987|||W7OPF|L||CARTER, ALAN F|ALAN|F|CARTER||||||FRIDAY HARBOR|WA|98250|26||000||I||| +EN|820199|||W7WBU|L|L01441166|MALKIN, MILLARD I|MILLARD|I|MALKIN|||||14802 SE GRAHAM RD|VANCOUVER|WA|98683|||000|0018226563|I||| +EN|820608|||W7ZWW|L|L00220813|WYMORE SR, ANDREW R|ANDREW|R|WYMORE|SR||||16160 SOUTH WILSON ROAD|OREGON CITY|OR|97045|||000|0002067932|I||| +EN|821103|||W8BZ|L|L01321662|HEATH, ROBERT E|ROBERT|E|HEATH||||||SAULT STE MARIE|MI|49783|467||000|0016900136|I||| +EN|821285|||W8CSK|L|L01447902|HUGENTOBER JR, JOHN M|JOHN|M|HUGENTOBER|JR||||3090 SHOEMAKER RD|LEBANON|OH|45036|||000|0018300913|I||| +EN|822096|||W8GLS|L|L01447907|SETINA, GREGORY L|GREGORY|L|SETINA|||||15420 W BARTON LAKE DR|VICKSBURG|MI|490979775|||000|0018300962|I||| +EN|823062|||W8KMS|L|L01447962|SETINA, KATHLEEN M|KATHLEEN|M|SETINA|||||363 E STATE ST|MENDON|MI|49072|276||000|0018301481|I||| +EN|823126|||W8KRR|L|L00296116|ELLIOTT, MIKE F|MIKE|F|ELLIOTT|||||3797 Summit Glen Road,Suite 213|DAYTON|OH|45449|||000|0008634412|I||| +EN|823605|||W8MFH|L||GLASSFORD JR, JOHN H|JOHN|H|GLASSFORD|JR||||4125 SURREY LN|SKIPPACK|PA|19474|976||000||I||| +EN|825887|||W8ZMQ|L||FOSTER, JACK W|JACK|W|FOSTER|||||1004 SOUTH TENTH ST|ESCANABA|MI|49829|||000||I||| +EN|826221|||W9BEV|L|L00258070|KISZKA, RICHARD J|RICHARD|J|KISZKA|||||13601 W BECKS GROVE RD|COLUMBUS|IN|472014530|||000|0002954675|I||| +EN|828467|||W9LYA|L|L00206333|SHER, DAVID W|DAVID|W|SHER|||||9614 KOSTNER|SKOKIE|IL|60076|||000|0002978021|I||| +EN|830211|||W9VHQ|L|L00236803|RUEHRDANZ, MARSHALL A|MARSHALL|A|RUEHRDANZ|||||100 E WALTON PLACE APT 32B|CHICAGO|IL|60611||MARSHALL A RUEHRDANZ|000|0002926905|I||| +EN|830646|||W9YZI|L||BERGER, WILLIAM H|WILLIAM|H|BERGER|||||10214 297TH AVE|PRINCETON|MN|55371|||000||I||| +EN|831119|||WA0DDD|L||HARM, CHARLES D|CHARLES|D|HARM|||||1535 ARAPAHOE|LINCOLN|NE|68502|||000||I||| +EN|833584|||WA0ZHU|L||LAURSEN, NORMAN J|NORMAN|J|LAURSEN|||||BOX 392|HEMINGFORD|NE|69348|||000||I||| +EN|833593|||WA0ZJC|L||KROLL, LEONA|LEONA||KROLL|||||618 E 17TH ST|MINNEAPOLIS|MN|55404|||000||I||| +EN|836173|||WA1UXA|L|L00138359|BALINSKI AMATEUR RADIO FELLOWSHIP||||||||6 BIRCH DR|AMHERST|NH|030311807|||000|0003130077|B||| +EN|838202|||WA2EWV|L|L01448044|SCHREIBSTEIN, DAVID|DAVID||SCHREIBSTEIN|||||26 LINCOLN ST|BABYLON|NY|11702|||000|0018302356|I||| +EN|840268|||WA2MYG|L|L00141499|Pickens, Raymond R|Raymond|R|Pickens|||||215 Mystic Ln|Rochester|NY|14623|||000|0003496353|I||| +EN|842317|||WA2WEY|L||CANTONE, BEN|BEN||CANTONE|||||42 INWOOD RD|PORT WASHINGTON|NY|11050|||000||I||| +EN|844924|||WA3SDK|L||MORELLI, ROBERT T|ROBERT|T|MORELLI|||||5118 COLEWOOD DR|PITTSBURGH|PA|152362609|||000||I||| +EN|846976|||WA4DJX|L||MALLON, ALEXANDER A|ALEXANDER|A|MALLON|||||130 COLVIN ST|MOBILE|AL|36606|||000||I||| +EN|853766|||WA5KQI|L||KOCUREK, EUGENE W|EUGENE|W|KOCUREK|||||3833 VIOLET RD|CORPUS CHRISTI|TX|78410|||000||I||| +EN|854486|||WA5QMV|L|L00244962|GOOD, DARYL B|DARYL|B|GOOD|||||681 CARNATION LANE|FALLBROOK|CA|92028|||000|0002459840|I||| +EN|859314|||WA6PCU|L||KIRBY, JANET R|JANET|R|KIRBY|||||107 HENDERSON WAY|FOLSOM|CA|95630|||000||I||| +EN|860173|||WA6SIV|L|L00339922|Hope, Joseph M|Joseph|M|Hope|||||3036 N CALIFORNIA ST|STOCKTON|CA|95204|||000|0004459327|I||| +EN|863798|||WA7SNU|L|L01443583|MEIER, TERRY T|TERRY|T|MEIER|||||208 PARK AVE|WHEATLAND|WY|82201|||000|0018252585|I||| +EN|864676|||WA7ZTT|L|L00295739|Swalling, Jerry H|Jerry|H|Swalling|||||420 DAVISON HEAD DRIVE|ROCHE HARBOR|WA|98250|4125|JERRY SWALLING|000|0004229167|I||| +EN|865041|||WA8COT|L||MOORE, ALLEN J|ALLEN|J|MOORE|||||RR 1 BOX 388 S EVERGREEN RD|BRANCH|MI|49402|||000||I||| +EN|865257|||WA8EDP|L||BARTOK SR, ALBERT J|ALBERT|J|BARTOK|SR||||505B WILCOX RD|AUSTINTOWN|OH|44515|||000||I||| +EN|865326|||WA8ESG|L||GADO, VICTOR C|VICTOR|C|GADO|||||461 SANDHURST RD|AKRON|OH|44313|||000||I||| +EN|867245|||WA8VMK|L||RAYMOND, ALEXANDER N|ALEXANDER|N|RAYMOND|||||1620 ANNABELLE|FERNDALE|MI|48220|||000||I||| +EN|867763|||WA9AFM|L|L00181413|WEBB, THOMAS M|THOMAS|M|WEBB|||||10421 SE 55TH|OKLAHOMA CITY|OK|73150|||000|0002919249|I||| +EN|872712|||WB0QZO|L||WARD, JAMES A|JAMES|A|WARD|||||510 N 3RD|GARDEN CITY|KS|67846|||000||I||| +EN|878000|||WB2JRR|L|L00850864|BURNS, MAURICE M|MAURICE|M|BURNS|||||1007 Hickory Creek Rd|Louisa|VA|230935905|||000|0010787927|I||| +EN|878064|||WB2KAK|L||MOUNT, JOSEPH T|JOSEPH|T|MOUNT|||||564 WAYSIDE RD|NEPTUNE|NJ|07753|||000||I||| +EN|879319|||WB2QDB|L|L01447966|HOGAN, THOMAS B|THOMAS|B|HOGAN|||||103 HIGHVIEW RD|DOVER PLAINS|NY|12522||THOMAS B HOGAN|000|0018219584|I||| +EN|879708|||WB2SEB|L|L00187675|RODRIGUEZ, EUSEBIO S|EUSEBIO|S|RODRIGUEZ|||||9887 BREEZEWAY TERRACE|TOBYHANNA|PA|18466|||000|0003554961|I||| +EN|880522|||WB2WGP|L||WEBER, DOUGLAS A|DOUGLAS|A|WEBER|||||248-11 89 AVE|BELLEROSE|NY|11426|||000||I||| +EN|881837|||WB3DWY|L||PERFILIO, STEVEN|STEVEN||PERFILIO|||||108 WOODSIDE DR|CLARKS SUMMIT|PA|18411|||000||I||| +EN|883934|||WB4CDF|L|L00279421|PERRY, KERRY N|KERRY|N|PERRY|||||RT 3 BOX 240A|Buckhannon|WV|26201||KERRY PERRY|000|0003970456|I||| +EN|883956|||WB4CFQ|L|L01031864|ANDERSON, LARRY T|LARRY|T|ANDERSON|||||328 TEQUESTA DRIVE|DESTIN|FL|32541|||000|0013649967|I||| +EN|886909|||WB4PRR|L||JOHNSTON, CHARLES K|CHARLES|K|JOHNSTON|||||RR 3 BOX 290F|CLINTON|IL|67127|||000||I||| +EN|888065|||WB4VNN|L||WILKIN, CHARLES J|CHARLES|J|WILKIN|||||1935 KEYSTONE BLVD|NORTH MIAMI|FL|33181|||000||I||| +EN|889247|||WB5CIQ|L||REYNOLDS, JOHN|JOHN||REYNOLDS|||||5445 GOVERNMENT ST APT 135|BATON ROUGE|LA|70806|||000||I||| +EN|894209|||WB6FAC|L||GOLDSTONE, ALAN M|ALAN|M|GOLDSTONE|||||4554 CHARLESTON DR|CARMICHAEL|CA|95608|||000||I||| +EN|902491|||WB8GER|L||MARTIN, DANNY J|DANNY|J|MARTIN|||||864 AFTON RD|COLUMBUS|OH|43221|||000||I||| +EN|910390|||WD0DXA|L|L00295789|BENGTSON, WILLIS L|WILLIS|L|BENGTSON|||||630 Terrie Rd|Aurora|NE|68818|||000|0004240446|I||| +EN|911621|||WD4AUD|L|L00425877|Lyall, Ronald R|Ronald|R|Lyall|||||808 NE 138TH AVE|VANCOUVER|WA|986847347|||000|0006449425|I||| +EN|912468|||WD4EOY|L|L01448251|HOUSER, DAVID B|DAVID|B|HOUSER|||||535 FLINT HILL RD|CHERRYVILLE|NC|28021|||000|0018304576|I||| +EN|917194|||WD5UNT|L|L01447726|MORENO, RUDOLPH G|RUDOLPH|G|MORENO|||||3608 MARIANNE CIR|DENTON|TX|762017941|||000|0018299008|I||| +EN|918427|||WD6FZM|L||JOSLIN, VICTOR A|VICTOR|A|JOSLIN|||||8712 N MAGNOLIA 223|SANTEE|CA|92071|||000||I||| +EN|920254|||WD8KCY|L|L01448280|POTTER, EARL A|EARL|A|POTTER|||||421 FELTON AVE|BENTON HARBOR|MI|49022|||000|0018304832|I||| +EN|929643|||WP3BG|L|L00336190|GONZALEZ ORTIZ, HERIBERTO|HERIBERTO||GONZALEZ ORTIZ|||||CALLE BUENOS AIRES 61|COAMO|PR|00769|||000|0004584835|I||| +EN|935563|||WQ9G|L|L00152848|STERNA, DAVID W|DAVID|W|STERNA|||||4212 W SPRING CREEK ROAD|BELOIT|WI|53511|||000|0002684546|I||| +EN|935598|||WR0NG|L|L00347985|HILDE SR, PAUL S|PAUL|S|HILDE|SR||||11931 W MILE WIDE RD|TUCSON|AZ|857439148|||000|0004693081|I||| +EN|937206|||WW9GS|L|L01408427|SWEENEY SR, GARY L|GARY|L|SWEENEY|SR||||622 WALNUT WOODS DRIVE|GREENWOOD|IN|46142|||000|0017865387|I||| +EN|937597|||WY3S|L|L00242272|Cooper, Charles B|Charles|B|Cooper|||||233 Patton Dr|Cheshire|CT|064104235||Charles B Cooper|000|0002648624|I||| +EN|1303622|||W1SM|L|L00261126|DROLLETT JR, ALBERT A|ALBERT|A|DROLLETT|JR||||19 JOHNS POND ROAD|CARVER|MA|02330|||000|0003660420|I||| +EN|1955289|||KG6FRW|L|L00338139|Quiniola, Michael A|Michael|A|Quiniola|||||NAS North Island 357105|San Diego|CA|92135|||000|0004567624|I||| +EN|2434181|||AG4VI|L|L00136237|KISLO, JOSEPH G|JOSEPH|G|KISLO|||||919 SOUTHAMPTON RD APT E1|WESTFIELD|MA|01085|||000|0003663051|I||| +EN|2438174|||NP4V|L|L00301506|Irizarry Ortiz, Edward|Edward||Irizarry Ortiz||||||Carolina|PR|009844553|4553|EDWARD IRIZARRY ORTIZ|000|0004205290|I||| +EN|2560646|||KC8YPK|L|L00767665|Niedermier Jr, John W|John|W|Niedermier|Jr||||1016 Campbell Ave|Columbus|OH|43223|||000|0009866823|I||| +EN|2570556|||KG6TGH|L|L00718906|WILSON, MARGARET H|MARGARET|H|WILSON|||||411 Walnut St., #3131|Green Cove Springs|FL|32043|||000|0009325812|I||| +EN|2578937|||KG6TOB|L|L00725532|Wilson, Raymond J|Raymond|J|Wilson|||||411 Walnut St., #3131|Green Cove Springs|FL|32043|||000|0009331646|I||| +EN|2811616|||KI4PEQ|L|L00547527|Ray, Richard L|Richard|L|Ray|||||1328 N. Ferdon Blvd #224|Crestview|FL|32536|||000|0007421886|I||| +EN|2836903|||KI6FDN|L|L01183632|PALOMAR MT FIRECOM AMATEUR RADIO CLUB||||||||21610 Crestline Rd|Palomar Mt|CA|92060||David B Heiser|000|0015406770|B||| +EN|2846092|||N6OOB|L|L00184678|Bianchi, Brandon J|Brandon|J|Bianchi|||||139 Seal Ct|Marina|CA|93933|||000|0001778562|I||| +EN|2846663|||K4WFN|L|L00979407|NORTON, WILLIAM F|WILLIAM|F|NORTON|||||510 N 11th Ave|MAYODAN|NC|27027|147|William F Norton|000|0012814109|I||| +EN|2880376|||KB3ONK|L|L01244665|LAUNTZ, DAVID M|DAVID|M|LAUNTZ|||||2318 ENTRIKEN RD|JAMES CREEK|PA|16657|||000|0016088411|I||| +EN|2928245|||AB5L|L|L00141321|REEVES, MARTIN K|MARTIN|K|REEVES|||||6813 Stillmeadows Cir North|North Richland Hills|TX|76180|||000|0002421105|I||| +EN|2940009|||KI6LNI|L|L01317210|ERICKSON, JEFFREY L|JEFFREY|L|ERICKSON|||||1928 DEADOR AVE|ANTIOCH|CA|94509|||000|0016850133|I||| +EN|2955171|||KI6MPA|L|L01335998|Bentz, Eugene|Eugene||Bentz|||||1640 Kirkwood Dr. Unit Q36|Fort Collins|CO|80525|||000|0017065145|I||| +EN|2958600|||KI6MVB|L|L01339811|Bland, Ivan M|Ivan|M|Bland|||||16 West 12th Street|Paso Robles|CA|93446|||000|0017107244|I||| +EN|2970055|||K2NEO|L|L00895387|Lewis, Brett E|Brett|E|Lewis|||||76 Kendall Rd|Kendall Park|NJ|08824|||000|0011274750|I||| +EN|2977794|||KE5SEK|L|L01361147|BRUMLEY, CALEB M|CALEB|M|BRUMLEY|||||1102 Shoreline Dr.|Wichita Falls|TX|76308|||000|0017350455|I||| +EN|3010114|||KI6QDF|L|L01396834|Chen, John|John||Chen|||||1094 Noriega Ave|Sunnyvale|CA|94086|||000|0017736950|I||| +EN|3010118|||KI6QDJ|L|L01396838|Stieber, Marcel|Marcel||Stieber|||||1089 Belvedere Lane|San Jose|CA|95129|||000|0017736992|I||| +EN|3015667|||AL3G|L|L00133798|Nasitka, Michael F|Michael|F|Nasitka|||||1 Anton Larson Rd|Kodiak|AK|99619|190017||000|0002001691|I||| +EN|3058540|||KD8JRN|L|L01446728|CREAM, BURTRAM W|BURTRAM|W|CREAM|||||10114 MEADOW WOODS LANE|CENTERVILLE|OH|454589712|||000|0017888744|I||| +EN|3059281|||KE7YIM|L|L01447440|Stadtfeld, Erin L|Erin|L|Stadtfeld|||||854 E Yuma Ave|Apache Junction|AZ|85219|||000|0018296087|I||| +EN|3059288|||AL3I|L|L01194331|Martin, Jean M|Jean|M|Martin||||||Wrangell|AK|99929|2299||000|0015524424|I||| +EN|3059320|||KI6UMC|L|L01447474|Romero, Michael M|Michael|M|Romero|||||2109 Adriatic Ave|Long Beach|CA|90810|||000|0018296392|I||| +EN|3059595|||KI6UND|L|L01445969|Host, Jamieson L|Jamieson|L|Host|||||9936 Kika Ct Apt #3624|San Diego|CA|92129||James|000|0018280230|I||| +EN|3059687|||K6TT|L|L00401170|Steffora, Philip T|Philip|T|Steffora||||||Los Altos|CA|94023|657||000|0005635628|I||| +EN|3059768|||NN1G|L|L01134321|Bishop, Gilbert E|Gilbert|E|Bishop|||||7 Lakeview Ave|Johnston|RI|029192901|||000|0014858898|I||| +EN|3060117|||AH0BS|L|L01448116|Ikarashi, Hiroyuki|Hiroyuki||Ikarashi||||||Saipan|MP|96950|501969|SAIPAN RADIO AMUSEMENT CLUB|000|0018238774|I||| +EN|3060121|||KD8JSS|L|L01448119|LEONARD, JACQUELINE M|JACQUELINE|M|LEONARD|||||741 N SCHOOL RD|STERLING|MI|48659|||000|0018303149|I||| +EN|3060246|||AB1JV|L|L01134321|Bishop, Gilbert E|Gilbert|E|Bishop|||||7 Lakeview Ave|Johnston|RI|029192901|||000|0014858898|I||| +EN|3060296|||KC9OSE|L|L01447827|Cook, Gregory W|Gregory|W|Cook|||||210 Saw Dust Dr|Lafayette|IN|47905|||000|0018300186|I||| +EN|3060297|||KI6UNT|L|L01447606|SALAS, ROBERT S|ROBERT|S|SALAS|||||28111 WESTFIELD DR|LAGUNA NIGUEL|CA|92677|||000|0018297887|I||| +EN|3060298|||KJ4IDG|L|L01447583|Williams, Bruce M|Bruce|M|Williams|||||18 Lazy Eight Dr|Port Orange|FL|32128|||000|0018297705|I||| +EN|3060461|||KI6UNU|L|L01448259|Abel, John T|John|T|Abel|||||35 L Stenner St|San Luis Obispo|CA|93405|||000|0018304659|I||| +EN|3060462|||KI6UNV|L|L01448260|Adamson, Jesse T|Jesse|T|Adamson|||||1774 Oceanaire Dr|San Luis Obispo|CA|93405|||000|0018304667|I||| +EN|3060463|||KI6UNW|L|L01448261|Borja, Mark Lester C|Mark Lester|C|Borja|||||1539 Galleon Way|San Luis Obispo|CA|93405|||000|0018304675|I||| +EN|3060464|||KI6UNX|L|L01448262|Bryant, Michael J|Michael|J|Bryant|||||1255 Vista De La Montana|San Luis Obispo|CA|93405|||000|0018304683|I||| +EN|3060465|||KI6UNY|L|L01448263|Fitzsimmons, Sean K|Sean|K|Fitzsimmons|||||258 California Blvd Apt C4|San Luis Obispo|CA|93405|||000|0018304691|I||| +EN|3060466|||KI6UNZ|L|L01448264|Fritz, Sean W|Sean|W|Fritz|||||3960 South Higuera St Space 191|San Luis Obnispo|CA|93401|||000|0018304709|I||| +EN|3060467|||KI6UOA|L|L01448265|Ishihara, Dylan A|Dylan|A|Ishihara|||||107 Mustang Dr -109|San Luis Obispo|CA|93405|||000|0018304717|I||| +EN|3060468|||KI6UOB|L|L01448266|Johnstone, Alicia I|Alicia|I|Johnstone|||||1530 Santa Rosa St Apt -6|San Luis Obispo|CA|93401|||000|0018304725|I||| +EN|3060469|||KI6UOC|L|L01448267|Musselman, Andrew J|Andrew|J|Musselman|||||200 W Santa Rosa Apt 502 C|San Luis Obispo|CA|93405|||000|0018304733|I||| +EN|3060470|||KI6UOD|L|L01448268|Radinsky, Samuel J|Samuel|J|Radinsky|||||543 N Leland Ave|San Pedro|CA|90732|||000|0018304741|I||| +EN|3060471|||KI6UOE|L|L00294298|Benson, John A|John|A|Benson|||||103 Twin Ridge Dr|San Luis Obispo|CA|93405|||000|0004212304|I||| +EN|3060483|||KC2UFM|L|L01448279|Warren County Races Radio Club||||||||1340 State Route 9|Lake George|NY|12845||Michael C Mollica|000|0018304824|B||| +HS|215409||AA0TH|07/07/2001|LIAUA +HS|215409||AA0TH|11/26/2008|LIAUA +HS|218327||AA6PR|11/26/2008|LIAUA +HS|218327||AA6PR|11/25/2004|LIAUA +HS|218327||AA6PR|11/25/2004|LTSFRN +HS|221076||AB5A|11/26/2008|LIREN +HS|225737||AE4H|11/26/2008|LITIN +HS|227648||AI5U|03/04/2004|LIAUA +HS|227648||AI5U|11/26/2008|LIREN +HS|231520||K0RQU|11/26/2008|LIEXP +HS|238366||K2MUD|10/24/2000|LIMOD +HS|238366||K2MUD|09/26/2002|LIMOD +HS|238366||K2MUD|11/26/2008|LIREN +HS|238484||K2OI|05/05/2001|LIREN +HS|238484||K2OI|11/26/2008|COR +HS|238484||K2OI|11/26/2008|COR +HS|239218||K2SSN|11/26/2008|LIREN +HS|240982||K3GUX|11/26/2008|LIAUA +HS|240982||K3GUX|02/12/2005|LIAUA +HS|240982||K3GUX|02/12/2005|LIAUA +HS|240982||K3GUX|03/09/2005|COR +HS|240982||K3GUX|03/09/2005|COR +HS|240982||K3GUX|03/09/2005|COR +HS|240982||K3GUX|03/11/2005|LIAUA +HS|240982||K3GUX|03/11/2005|ESUFRN +HS|240982||K3GUX|03/15/2005|LIAUA +HS|240982||K3GUX|04/04/2005|COR +HS|240982||K3GUX|04/04/2005|COR +HS|240982||K3GUX|04/05/2005|LIAUA +HS|240982||K3GUX|11/16/2006|LITIN +HS|240982||K3GUX|11/16/2006|LIREN +HS|242184||K3PAT|11/25/2008|LITIN +HS|242184||K3PAT|11/26/2008|LIREN +HS|242535||K3ROQ|11/26/2008|LIEXP +HS|243318||K3XE|11/26/2008|LIREN +HS|243490||K3ZIY|11/26/2008|LIEXP +HS|244029||K4BLC|03/14/2000|LIAUA +HS|244029||K4BLC|04/22/2000|LIMOD +HS|244029||K4BLC|04/26/2002|LIAUA +HS|244029||K4BLC|11/26/2008|LIREN +HS|244029||K4BLC|03/19/2008|LIAUA +HS|246068||K4IDW|05/05/2000|LIMOD +HS|246068||K4IDW|12/21/2000|LIAUA +HS|246068||K4IDW|11/26/2008|LIREN +HS|248683||K4SGA|11/26/2008|COR +HS|248683||K4SGA|11/26/2008|COR +HS|251381||K5GJA|11/25/2008|ESCFRN +HS|251381||K5GJA|11/26/2008|LIREN +HS|254545||K6ALX|11/26/2008|LIREN +HS|254545||K6ALX|07/30/2007|LITIN +HS|254545||K6ALX|07/30/2007|LIAUA +HS|257346||K6PBB|11/26/2008|LIAUA +HS|257346||K6PBB|08/17/2008|ESCFRN +HS|257346||K6PBB|08/19/2008|LIREN +HS|257705||K6RAL|11/26/2008|LITIN +HS|257705||K6RAL|11/26/2008|LIREN +HS|257754||K6RFG|11/26/2008|LIREN +HS|259228||K7AIX|11/25/2008|LITIN +HS|259228||K7AIX|11/26/2008|LIREN +HS|259949||K7EOC|05/13/2003|LIAUA +HS|259949||K7EOC|11/26/2008|LIREN +HS|259949||K7EOC|11/15/2005|LIMOD +HS|259949||K7EOC|03/22/2005|LIMOD +HS|259949||K7EOC|10/09/2005|ESCFNR +HS|265008||K8MAK|05/24/2000|LIMOD +HS|265008||K8MAK|03/19/2002|LIMOD +HS|265008||K8MAK|11/26/2008|COR +HS|265008||K8MAK|11/26/2008|COR +HS|265789||K8RDO|11/26/2008|LIEXP +HS|266190||K8TI|11/26/2008|LIREN +HS|266190||K8TI|12/26/2005|ESCFRN +HS|266190||K8TI|12/28/2005|LIAUA +HS|266351||K8UFO|11/21/2008|LITIN +HS|266351||K8UFO|11/26/2008|LIREN +HS|267595||K9CLL|06/02/2000|LIMOD +HS|267595||K9CLL|11/26/2008|LIREN +HS|267880||K9EAA|11/26/2008|LIEXP +HS|270431||K9UWY|04/14/2004|LIAUA +HS|270431||K9UWY|11/26/2008|LIAUA +HS|270431||K9UWY|09/19/2006|LIREN +HS|271659||KA0DOW|11/26/2008|LIEXP +HS|271659||KA0DOW|02/16/2005|LTSFRN +HS|272104||KA0FWC|04/26/2001|LITIN +HS|272104||KA0FWC|04/26/2001|LIMOD +HS|272104||KA0FWC|11/26/2008|LIAUA +HS|272104||KA0FWC|08/24/2005|LIAUA +HS|272104||KA0FWC|09/19/2006|LIREN +HS|277098||KA1EIB|11/26/2008|LIEXP +HS|285785||KA2KTJ|11/26/2008|LIEXP +HS|294633||KA3YLE|10/24/2001|LITIN +HS|294633||KA3YLE|10/24/2001|LITIN +HS|294633||KA3YLE|10/24/2001|LIREN +HS|294633||KA3YLE|11/25/2008|ESCFRN +HS|294633||KA3YLE|11/26/2008|LIAUA +HS|294633||KA3YLE|11/26/2008|LTSFND +HS|298443||KA4RGQ|08/03/2001|LIAUA +HS|298443||KA4RGQ|11/26/2008|LIAUA +HS|298900||KA4TNH|11/26/2008|LIEXP +HS|299095||KA4UNR|11/26/2008|LIEXP +HS|305290||KA6BPV|11/26/2008|LIEXP +HS|308413||KA6UIT|01/06/2003|LIMOD +HS|308413||KA6UIT|05/06/2003|LIREN +HS|308413||KA6UIT|11/26/2008|LIAUA +HS|311777||KA7MOJ|11/25/2008|LIREN +HS|311777||KA7MOJ|11/26/2008|LTSFRN +HS|322065||KA9MYV|11/26/2008|LIEXP +HS|340354||KB1DSJ|11/26/2008|LITIN +HS|340354||KB1DSJ|11/26/2008|LIREN +HS|340729||KB1EHS|06/04/2004|LIAUA +HS|340729||KB1EHS|06/04/2004|LTSFRN +HS|340729||KB1EHS|11/26/2008|LIAUA +HS|340729||KB1EHS|11/08/2005|LIAUA +HS|340891||KB1NB|11/26/2008|LIREN +HS|340891||KB1NB|11/26/2008|LTSFRN +HS|343352||KB2GQK|11/26/2008|LIREN +HS|343352||KB2GQK|09/07/2007|LIAUA +HS|343352||KB2GQK|09/14/2007|ESUFRN +HS|356369||KB4CQW|05/17/2000|LIAUA +HS|356369||KB4CQW|02/19/2004|LIAUA +HS|356369||KB4CQW|11/26/2008|LIAUA +HS|356369||KB4CQW|11/16/2004|LIREN +HS|361265||KB4VUK|11/26/2008|LIEXP +HS|371355||KB5VWM|06/07/2000|LIMOD +HS|371355||KB5VWM|11/26/2008|LIREN +HS|377092||KB6QEU|11/26/2008|LIEXP +HS|380170||KB6ZVL|04/26/2000|LIMOD +HS|380170||KB6ZVL|11/26/2008|LIREN +HS|380414||KB7ARX|11/26/2008|LIEXP +HS|382054||KB7FLH|11/26/2008|COR +HS|382054||KB7FLH|11/26/2008|COR +HS|382319||KB7GCA|05/26/2000|LIMOD +HS|382319||KB7GCA|11/26/2008|LIREN +HS|382471||KB7GMW|11/26/2008|LITIN +HS|382471||KB7GMW|11/26/2008|LIREN +HS|382641||KB7GYN|11/26/2008|COR +HS|382641||KB7GYN|11/26/2008|COR +HS|400347||KB8SOE|01/24/2003|LIMOD +HS|400347||KB8SOE|03/06/2004|LIREN +HS|400347||KB8SOE|03/06/2004|LIREN +HS|400347||KB8SOE|11/26/2008|LIAUA +HS|400347||KB8SOE|09/22/2005|LIAUA +HS|400347||KB8SOE|03/12/2007|LIMOD +HS|411825||KB9OKB|11/26/2008|LIAUA +HS|411825||KB9OKB|07/06/2006|LIREN +HS|412173||KB9OYE|11/26/2008|LIEXP +HS|412175||KB9OYG|11/26/2008|LIEXP +HS|412175||KB9OYG|02/22/2006|LIAUA +HS|412175||KB9OYG|02/22/2006|LTSFRN +HS|414570||KB9SWQ|02/17/2000|LIMOD +HS|414570||KB9SWQ|06/28/2000|LIMOD +HS|414570||KB9SWQ|12/15/2003|LIAUA +HS|414570||KB9SWQ|11/26/2008|LIREN +HS|417275||KC0BWU|11/26/2008|LIREN +HS|417275||KC0BWU|08/15/2005|LTSFRN +HS|417275||KC0BWU|08/16/2005|LIAUA +HS|418959||KC0EOV|11/26/2008|LIREN +HS|418959||KC0EOV|11/26/2008|LTSFRN +HS|419010||KC0EQX|11/25/2008|ESCFRN +HS|419010||KC0EQX|11/26/2008|LIREN +HS|419118||KC0EVV|11/26/2008|LIREN +HS|420199||KC0OS|11/26/2008|LIEXP +HS|420232||KC0QK|11/26/2008|LIEXP +HS|421020||KC2AHJ|11/26/2008|LIEXP +HS|422214||KC2CGZ|11/26/2008|COR +HS|422214||KC2CGZ|11/26/2008|COR +HS|422214||KC2CGZ|06/05/2007|LITIN +HS|422214||KC2CGZ|06/05/2007|LIREN +HS|423683||KC2ERU|11/26/2008|LITIN +HS|423683||KC2ERU|11/26/2008|LIREN +HS|465784||KC7CPM|05/24/2004|LIREN +HS|467864||KC7FXK|11/26/2008|LIAUA +HS|467864||KC7FXK|07/07/2004|LITIN +HS|468670||KC7HEX|11/26/2008|LIAUA +HS|468670||KC7HEX|09/16/2004|LIREN +HS|468670||KC7HEX|08/10/2006|LIAUA +HS|476245||KC7TKV|11/26/2008|LIEXP +HS|476246||KC7TKW|11/26/2008|LIEXP +HS|476249||KC7TKZ|11/26/2008|LIEXP +HS|476251||KC7TLA|11/26/2008|LIEXP +HS|476252||KC7TLB|11/26/2008|LIEXP +HS|478449||KC7WXB|02/08/2000|LIMOD +HS|478449||KC7WXB|09/26/2000|LIMOD +HS|478449||KC7WXB|11/26/2008|LIAUA +HS|478449||KC7WXB|05/31/2007|LIREN +HS|487131||KC8LUT|06/21/2002|LITIN +HS|487131||KC8LUT|06/21/2002|LIAUA +HS|487131||KC8LUT|11/26/2008|LIREN +HS|487131||KC8LUT|03/01/2007|LIMOD +HS|487133||KC8LUV|09/23/1999|LIMOD +HS|487133||KC8LUV|11/26/2008|LIREN +HS|487135||KC8LUY|08/17/2000|LIMOD +HS|487135||KC8LUY|11/26/2008|LIREN +HS|488906||KD0VU|04/28/2000|LIMOD +HS|488906||KD0VU|11/26/2008|LIREN +HS|488906||KD0VU|08/24/2004|LIAUA +HS|490188||KD3QD|09/24/1999|LIREN +HS|490188||KD3QD|11/26/2008|LIAUA +HS|506501||KD5C|05/31/2000|LIREN +HS|506501||KD5C|11/26/2008|COR +HS|506501||KD5C|11/26/2008|COR +HS|508846||KD5FUW|11/25/2008|LIREN +HS|508846||KD5FUW|11/26/2008|LTSFRN +HS|508873||KD5FWB|11/25/2008|ESCFRN +HS|508873||KD5FWB|11/26/2008|LIREN +HS|509328||KD5GPO|05/19/2000|LIAUA +HS|509328||KD5GPO|05/14/2001|LIMOD +HS|509328||KD5GPO|11/26/2008|LIAUA +HS|510053||KD5HTA|11/24/2008|LITIN +HS|510053||KD5HTA|11/26/2008|LIAUA +HS|511542||KD6BQT|12/20/2002|LIREN +HS|511542||KD6BQT|11/26/2008|LIAUA +HS|517029||KD6KR|04/17/2001|LIREN +HS|517029||KD6KR|11/26/2008|LIAUA +HS|527870||KD7CZB|11/26/2008|LIREN +HS|528643||KD7EFA|11/26/2008|LITIN +HS|528643||KD7EFA|11/26/2008|LIREN +HS|528646||KD7EFD|11/26/2008|LITIN +HS|528646||KD7EFD|11/26/2008|LIREN +HS|530831||KD8XL|06/06/2002|LIMOD +HS|530831||KD8XL|11/26/2008|COR +HS|530831||KD8XL|11/26/2008|COR +HS|547689||KE4YZW|12/16/2003|LIAUA +HS|547689||KE4YZW|11/26/2008|LIAUA +HS|547689||KE4YZW|06/01/2005|LIREN +HS|548616||KE5SS|11/26/2008|LIEXP +HS|550823||KE6DII|04/03/2001|LIAUA +HS|550823||KE6DII|11/04/2003|LIREN +HS|550823||KE6DII|11/26/2008|LIAUA +HS|575148||KF4NLV|11/26/2008|LIEXP +HS|575158||KF4NMF|11/26/2008|LIEXP +HS|587301||KF6HOJ|11/26/2008|LIEXP +HS|587301||KF6HOJ|10/25/2004|LTSFRN +HS|587305||KF6HOO|11/26/2008|LIEXP +HS|587305||KF6HOO|10/25/2004|LTSFRN +HS|587306||KF6HOP|11/26/2008|LIEXP +HS|587306||KF6HOP|07/27/2006|LTSFRN +HS|591060||KF6NQP|11/25/2008|ESCFRN +HS|591060||KF6NQP|11/26/2008|LIREN +HS|592825||KF6QMQ|11/25/2008|LIREN +HS|592825||KF6QMQ|11/26/2008|LTSFRN +HS|594512||KF6TJE|02/07/2004|LIAUA +HS|594512||KF6TJE|11/26/2008|LIREN +HS|595505||KF6UZB|11/26/2008|LIREN +HS|597204||KF7G|11/25/2008|LITIN +HS|597204||KF7G|11/26/2008|LIREN +HS|598966||KG0UH|05/31/2000|LIMOD +HS|598966||KG0UH|07/10/2002|LIAUA +HS|598966||KG0UH|11/26/2008|LIAUA +HS|598966||KG0UH|12/19/2005|LIAUA +HS|600179||KG4BFJ|11/26/2008|LIREN +HS|600179||KG4BFJ|12/20/2005|LITIN +HS|600179||KG4BFJ|12/20/2005|LIMOD +HS|600703||KG4CCG|11/26/2008|LITIN +HS|600703||KG4CCG|11/26/2008|LIREN +HS|605976||KH6PO|11/26/2008|LIEXP +HS|608129||KI5WF|05/31/2000|LIMOD +HS|608129||KI5WF|09/24/2001|LIREN +HS|608129||KI5WF|11/26/2008|COR +HS|608129||KI5WF|11/26/2008|COR +HS|612992||KK6OB|04/18/2000|LIMOD +HS|612992||KK6OB|06/30/2000|LIREN +HS|612992||KK6OB|11/26/2008|LIAUA +HS|616408||KM5UM|11/25/2008|ESCFRN +HS|616408||KM5UM|11/26/2008|LIAUA +HS|616408||KM5UM|11/26/2008|LIAUA +HS|619792||KP4BKD|11/26/2008|LITIN +HS|619792||KP4BKD|11/26/2008|LIREN +HS|619845||KP4CER|11/26/2008|LIREN +HS|621114||KQ4LE|11/26/2008|LIREN +HS|622689||KR6J|11/26/2008|COR +HS|622689||KR6J|11/26/2008|COR +HS|623918||KT4NY|12/17/1999|LIAUA +HS|623918||KT4NY|04/18/2000|LIAUA +HS|623918||KT4NY|02/10/2001|LIAUA +HS|623918||KT4NY|05/16/2001|LIAUA +HS|623918||KT4NY|09/14/2001|LIAUA +HS|623918||KT4NY|02/03/2003|LIREN +HS|623918||KT4NY|11/26/2008|LIAUA +HS|623918||KT4NY|10/07/2005|LIAUA +HS|623918||KT4NY|01/01/2008|LIAUA +HS|623918||KT4NY|01/25/2008|LIAUA +HS|623918||KT4NY|03/29/2008|LIAUA +HS|623918||KT4NY|08/26/2008|LIAUA +HS|623918||KT4NY|08/26/2008|LIAUA +HS|623918||KT4NY|09/10/2008|LIAUA +HS|623918||KT4NY|09/10/2008|LIAUA +HS|623918||KT4NY|09/10/2008|LIAUA +HS|623918||KT4NY|09/23/2008|LIAUA +HS|625757||KX6D|11/26/2008|COR +HS|625757||KX6D|11/26/2008|COR +HS|626059||KY7Y|11/26/2008|COR +HS|626059||KY7Y|11/26/2008|COR +HS|630306||N0IXE|11/25/2008|ESCFRN +HS|630306||N0IXE|11/26/2008|LIREN +HS|631089||N0KGM|11/26/2008|LIREN +HS|652178||N1UQB|04/08/2003|LIAUA +HS|652178||N1UQB|12/21/2004|LIREN +HS|658150||N2GFV|10/23/2008|ESCFRN +HS|658150||N2GFV|11/20/2008|LIAUA +HS|658150||N2GFV|11/26/2008|LIREN +HS|666280||N2UFM|01/07/2000|LIMOD +HS|666280||N2UFM|01/03/2003|LIAUA +HS|666280||N2UFM|11/26/2008|LIREN +HS|669044||N2YOG|01/10/2004|LIAUA +HS|669044||N2YOG|05/12/2004|LIREN +HS|669044||N2YOG|11/26/2008|LIAUA +HS|669938||N2ZYC|03/24/2004|LTSFRN +HS|669938||N2ZYC|05/22/2004|LIREN +HS|669938||N2ZYC|11/26/2008|LIAUA +HS|669938||N2ZYC|05/06/2005|LIAUA +HS|669938||N2ZYC|05/02/2006|LIAUA +HS|669938||N2ZYC|12/05/2006|LIAUA +HS|672525||N3FRQ|06/08/2000|LIMOD +HS|672525||N3FRQ|11/26/2008|LIAUA +HS|672525||N3FRQ|02/08/2007|LIREN +HS|673258||N3HCF|11/26/2008|LIREN +HS|673258||N3HCF|03/15/2007|LIAUA +HS|673258||N3HCF|03/15/2007|LTSFRN +HS|673258||N3HCF|06/12/2008|LIMOD +HS|687205||N4FIB|11/26/2008|LIREN +HS|687205||N4FIB|11/26/2008|LTSFRN +HS|688859||N4JCP|11/26/2008|LIREN +HS|688859||N4JCP|07/22/2004|LITIN +HS|688859||N4JCP|07/22/2004|LIMOD +HS|691954||N4PMW|11/26/2008|LIEXP +HS|691976||N4PNZ|11/26/2008|LIEXP +HS|694723||N4UOD|11/25/2008|ESCFRN +HS|694723||N4UOD|11/26/2008|LIREN +HS|695175||N4VIA|11/25/2008|ESCFRN +HS|695175||N4VIA|11/26/2008|LIREN +HS|700426||N5GIR|11/26/2008|LITIN +HS|700426||N5GIR|11/26/2008|LIREN +HS|711514||N6ADA|08/23/2000|LIAUA +HS|711514||N6ADA|11/26/2008|LIREN +HS|713270||N6EOW|11/26/2008|LIEXP +HS|715600||N6KE|11/25/2008|LITIN +HS|715600||N6KE|11/26/2008|LIREN +HS|724672||N7BAG|06/02/2000|LIMOD +HS|724672||N7BAG|02/25/2002|LIAUA +HS|724672||N7BAG|11/26/2008|LIREN +HS|725687||N7DOA|04/20/2000|LIMOD +HS|725687||N7DOA|11/26/2008|LIREN +HS|725687||N7DOA|12/22/2005|LIAUA +HS|725687||N7DOA|04/15/2008|LIAUA +HS|727731||N7IAI|11/26/2008|LIEXP +HS|730259||N7MQV|11/26/2008|COR +HS|730259||N7MQV|11/26/2008|COR +HS|739973||N8DKY|11/26/2008|LIEXP +HS|752893||N8ZVD|08/04/2003|LIREN +HS|752893||N8ZVD|11/26/2008|LIAUA +HS|756655||N9IFA|11/26/2008|COR +HS|756655||N9IFA|11/26/2008|COR +HS|756948||N9IT|11/26/2008|LIREN +HS|756948||N9IT|02/04/2005|LTSFRN +HS|767849||NA5N|03/06/2002|LIMOD +HS|767849||NA5N|11/26/2008|LIREN +HS|769360||NH0M|11/25/2008|LIREN +HS|769360||NH0M|11/26/2008|LTSFRN +HS|770082||NI6C|11/26/2008|LIEXP +HS|772456||NP3MP|11/26/2008|LITIN +HS|772456||NP3MP|11/26/2008|LIREN +HS|775152||NY4X|11/26/2008|LITIN +HS|776271||W0DQD|11/26/2008|LIEXP +HS|776681||W0FLS|11/26/2008|LIAUA +HS|776681||W0FLS|08/25/2006|LIREN +HS|777608||W0KHG|11/23/2002|LIREN +HS|777608||W0KHG|11/26/2008|COR +HS|777608||W0KHG|11/26/2008|COR +HS|781879||W1FMO|11/26/2008|COR +HS|781879||W1FMO|11/26/2008|COR +HS|783174||W1LNO|11/26/2008|COR +HS|783174||W1LNO|11/26/2008|COR +HS|786068||W2DDZ|11/26/2008|COR +HS|786068||W2DDZ|11/26/2008|COR +HS|786277||W2EAQ|11/26/2008|LIEXP +HS|786417||W2ENK|11/26/2008|LIEXP +HS|788144||W2LXN|11/26/2008|LIEXP +HS|788266||W2MOR|11/26/2008|LIEXP +HS|791899||W3HID|11/26/2008|LIEXP +HS|794341||W3VYL|11/26/2008|LIEXP +HS|794850||W4ADE|11/26/2008|LIREN +HS|794850||W4ADE|03/17/2005|LIAUA +HS|794850||W4ADE|03/17/2005|LIAUA +HS|795856||W4DJM|11/26/2008|LITIN +HS|796620||W4GAZ|11/25/2008|LITIN +HS|796620||W4GAZ|11/26/2008|LIREN +HS|796771||W4GND|11/26/2008|LIEXP +HS|796875||W4GX|11/19/2002|LIMOD +HS|796875||W4GX|11/26/2008|LIREN +HS|798496||W4MJR|11/26/2008|LIREN +HS|798496||W4MJR|11/04/2005|LITIN +HS|798496||W4MJR|11/04/2005|LIAUA +HS|798509||W4MKR|11/25/2008|LITIN +HS|798509||W4MKR|11/26/2008|LIREN +HS|800510||W4SNT|05/24/2000|LIMOD +HS|800510||W4SNT|11/26/2008|LIREN +HS|801280||W4VFF|11/26/2008|LIREN +HS|801280||W4VFF|06/07/2007|LITIN +HS|801280||W4VFF|06/07/2007|LIMOD +HS|801517||W4WDP|11/25/2008|LITIN +HS|801517||W4WDP|11/26/2008|LIREN +HS|802951||W5CRP|11/26/2008|LIREN +HS|802951||W5CRP|05/20/2008|ESCFRN +HS|806396||W5RUT|11/26/2008|LIEXP +HS|806685||W5SUV|11/26/2008|LIEXP +HS|808835||W6CC|10/28/2008|LTSFRN +HS|808835||W6CC|11/26/2008|LIREN +HS|811316||W6LCW|11/26/2008|LIEXP +HS|815769||W7CDF|05/25/2000|LIMOD +HS|815769||W7CDF|11/26/2008|LIREN +HS|816033||W7DFC|11/26/2008|LIEXP +HS|816647||W7FVZ|11/26/2008|LIEXP +HS|818676||W7MOO|11/25/2008|LITIN +HS|818676||W7MOO|11/26/2008|LIREN +HS|818987||W7OPF|11/26/2008|LIEXP +HS|820199||W7WBU|10/28/2008|ESCFRN +HS|820199||W7WBU|11/26/2008|LIREN +HS|820608||W7ZWW|03/22/2000|LIMOD +HS|820608||W7ZWW|11/26/2008|LIREN +HS|820608||W7ZWW|12/04/2007|LIAUA +HS|821103||W8BZ|11/26/2008|LIREN +HS|821103||W8BZ|09/14/2007|ESCFRN +HS|821285||W8CSK|11/25/2008|LITIN +HS|821285||W8CSK|11/26/2008|LIREN +HS|822096||W8GLS|11/25/2008|LITIN +HS|822096||W8GLS|11/26/2008|LIREN +HS|823062||W8KMS|11/25/2008|LITIN +HS|823062||W8KMS|11/26/2008|LIREN +HS|823126||W8KRR|03/19/2003|LIAUA +HS|823126||W8KRR|11/26/2008|COR +HS|823126||W8KRR|11/26/2008|COR +HS|823126||W8KRR|07/27/2005|LIAUA +HS|823605||W8MFH|11/26/2008|LIEXP +HS|825887||W8ZMQ|11/26/2008|LIEXP +HS|826221||W9BEV|06/14/2000|LIMOD +HS|826221||W9BEV|11/26/2008|LIREN +HS|828467||W9LYA|05/11/2000|LIREN +HS|828467||W9LYA|11/26/2008|COR +HS|828467||W9LYA|11/26/2008|COR +HS|830211||W9VHQ|05/11/2000|LIAUA +HS|830211||W9VHQ|11/26/2008|LIEXP +HS|830646||W9YZI|11/26/2008|COR +HS|830646||W9YZI|11/26/2008|COR +HS|831119||WA0DDD|11/26/2008|LIEXP +HS|833584||WA0ZHU|11/26/2008|LIEXP +HS|833593||WA0ZJC|11/26/2008|LIEXP +HS|836173||WA1UXA|11/26/2008|LIREN +HS|838202||WA2EWV|11/26/2008|LIREN +HS|838202||WA2EWV|11/26/2008|LTSFRN +HS|840268||WA2MYG|05/02/2000|LIMOD +HS|840268||WA2MYG|05/22/2001|LIMOD +HS|840268||WA2MYG|11/26/2008|LIEXP +HS|842317||WA2WEY|11/26/2008|LIEXP +HS|844924||WA3SDK|11/26/2008|LIEXP +HS|846976||WA4DJX|11/26/2008|LIEXP +HS|853766||WA5KQI|11/26/2008|LIEXP +HS|854486||WA5QMV|05/26/2000|LIMOD +HS|854486||WA5QMV|11/26/2008|LIREN +HS|854486||WA5QMV|01/15/2008|LIAUA +HS|859314||WA6PCU|11/26/2008|LIEXP +HS|860173||WA6SIV|03/26/2001|LITIN +HS|860173||WA6SIV|03/26/2001|LIMOD +HS|860173||WA6SIV|11/26/2008|LIREN +HS|863798||WA7SNU|11/25/2008|ESCFND +HS|863798||WA7SNU|11/26/2008|LIREN +HS|863798||WA7SNU|11/26/2008|LTSFRN +HS|864676||WA7ZTT|03/19/2004|LIREN +HS|864676||WA7ZTT|11/26/2008|LIAUA +HS|864676||WA7ZTT|02/19/2005|LIAUA +HS|865041||WA8COT|11/26/2008|LIEXP +HS|865257||WA8EDP|11/26/2008|LIEXP +HS|865326||WA8ESG|11/26/2008|LIEXP +HS|867245||WA8VMK|11/26/2008|LIEXP +HS|867763||WA9AFM|05/05/2000|LIMOD +HS|867763||WA9AFM|11/26/2008|LIREN +HS|867763||WA9AFM|05/03/2008|LIAUA +HS|872712||WB0QZO|11/26/2008|LIEXP +HS|878000||WB2JRR|04/23/2004|LIAUA +HS|878000||WB2JRR|04/23/2004|LTSFRN +HS|878000||WB2JRR|11/26/2008|LIREN +HS|878064||WB2KAK|11/26/2008|LIEXP +HS|879319||WB2QDB|11/25/2008|ESCFRN +HS|879319||WB2QDB|11/26/2008|LIREN +HS|879319||WB2QDB|11/26/2008|LTSFND +HS|879319||WB2QDB|03/07/2006|LITIN +HS|879319||WB2QDB|03/07/2006|LIAUA +HS|879708||WB2SEB|01/11/2000|LIAUA +HS|879708||WB2SEB|11/26/2008|LIREN +HS|879708||WB2SEB|07/25/2006|LIAUA +HS|879708||WB2SEB|07/23/2008|LIAUA +HS|880522||WB2WGP|11/26/2008|LIEXP +HS|881837||WB3DWY|11/26/2008|LIEXP +HS|883934||WB4CDF|08/24/2000|LIAUA +HS|883934||WB4CDF|11/26/2008|LIREN +HS|883934||WB4CDF|09/24/2004|LIAUA +HS|883956||WB4CFQ|11/26/2008|LIAUA +HS|883956||WB4CFQ|06/21/2005|LTSFRN +HS|886909||WB4PRR|11/26/2008|LIEXP +HS|888065||WB4VNN|11/26/2008|LIEXP +HS|889247||WB5CIQ|11/26/2008|LIEXP +HS|894209||WB6FAC|11/26/2008|LIEXP +HS|902491||WB8GER|11/26/2008|LIEXP +HS|910390||WD0DXA|11/02/2000|LIAUA +HS|910390||WD0DXA|11/26/2008|COR +HS|910390||WD0DXA|11/26/2008|COR +HS|910390||WD0DXA|10/12/2005|LIAUA +HS|910390||WD0DXA|10/12/2005|LIAUA +HS|911621||WD4AUD|11/29/2001|LITIN +HS|911621||WD4AUD|11/29/2001|LITIN +HS|911621||WD4AUD|11/29/2001|LIMOD +HS|911621||WD4AUD|11/26/2008|LIREN +HS|917194||WD5UNT|11/26/2008|LTSFRN +HS|918427||WD6FZM|11/26/2008|LIEXP +HS|920254||WD8KCY|11/26/2008|LITIN +HS|920254||WD8KCY|11/26/2008|LIREN +HS|929643||WP3BG|12/18/2003|LIMOD +HS|929643||WP3BG|12/25/2003|LIAUA +HS|929643||WP3BG|12/30/2003|LIAUA +HS|929643||WP3BG|11/26/2008|LIREN +HS|929643||WP3BG|01/10/2006|LIAUA +HS|929643||WP3BG|07/14/2006|LIAUA +HS|935563||WQ9G|01/28/2000|LIREN +HS|935563||WQ9G|11/26/2008|LIAUA +HS|935598||WR0NG|04/18/2001|LITIN +HS|935598||WR0NG|04/18/2001|LIAUA +HS|935598||WR0NG|11/26/2008|LIREN +HS|937206||WW9GS|11/21/2008|LITIN +HS|937206||WW9GS|11/26/2008|LIREN +HS|937597||WY3S|05/30/2000|LIMOD +HS|937597||WY3S|03/01/2002|LIREN +HS|937597||WY3S|11/26/2008|COR +HS|937597||WY3S|11/26/2008|COR +HS|1303622||W1SM|10/24/2000|LIISS +HS|1303622||W1SM|11/26/2008|LIAUA +HS|1955289||KG6FRW|03/21/2001|LIISS +HS|2434181||AG4VI|07/24/2002|LIISS +HS|2434181||AG4VI|07/24/2002|SYSGRT +HS|2434181||AG4VI|05/12/2004|LIAUA +HS|2434181||AG4VI|11/26/2008|LIAUA +HS|2434181||AG4VI|09/14/2006|LIREN +HS|2434181||AG4VI|09/06/2007|LIAUA +HS|2438174||NP4V|08/08/2002|LIISS +HS|2438174||NP4V|08/08/2002|VANGRT +HS|2438174||NP4V|11/26/2008|COR +HS|2438174||NP4V|11/26/2008|COR +HS|2560646||KC8YPK|11/13/2003|LIISS +HS|2560646||KC8YPK|09/21/2006|LIAUA +HS|2560646||KC8YPK|03/06/2007|LIMOD +HS|2570556||KG6TGH|12/29/2003|LIISS +HS|2570556||KG6TGH|03/16/2004|LIMOD +HS|2570556||KG6TGH|11/26/2008|LIAUA +HS|2578937||KG6TOB|01/22/2004|LIISS +HS|2578937||KG6TOB|11/26/2008|LIAUA +HS|2811616||KI4PEQ|11/26/2008|LIAUA +HS|2811616||KI4PEQ|05/17/2006|SYSGRT +HS|2811616||KI4PEQ|05/17/2006|LIISS +HS|2811616||KI4PEQ|03/07/2007|LIMOD +HS|2811616||KI4PEQ|08/30/2008|LIAUA +HS|2836903||KI6FDN|11/26/2008|LIMOD +HS|2836903||KI6FDN|08/18/2006|SYSGRT +HS|2836903||KI6FDN|08/18/2006|LIISS +HS|2836903||KI6FDN|08/22/2006|LIMOD +HS|2846092||N6OOB|11/26/2008|LIAUA +HS|2846092||N6OOB|09/23/2006|LIISS +HS|2846092||N6OOB|09/23/2006|VANGRT +HS|2846092||N6OOB|05/01/2007|LIAUA +HS|2846092||N6OOB|05/14/2007|LIMOD +HS|2846092||N6OOB|06/21/2007|LIAUA +HS|2846092||N6OOB|06/27/2007|LIMOD +HS|2846092||N6OOB|03/13/2008|LIAUA +HS|2846092||N6OOB|03/13/2008|LIAUA +HS|2846663||K4WFN|11/26/2008|LIAUA +HS|2846663||K4WFN|09/26/2006|LIISS +HS|2846663||K4WFN|09/26/2006|VANGRT +HS|2846663||K4WFN|08/27/2007|LIAUA +HS|2880376||KB3ONK|11/26/2008|LIAUA +HS|2880376||KB3ONK|02/09/2007|SYSGRT +HS|2880376||KB3ONK|02/09/2007|LIISS +HS|2880376||KB3ONK|03/21/2007|LIMOD +HS|2928245||AB5L|11/26/2008|LIAUA +HS|2928245||AB5L|07/13/2007|LIISS +HS|2928245||AB5L|07/13/2007|VANGRT +HS|2928245||AB5L|07/19/2008|LIAUA +HS|2940009||KI6LNI|11/26/2008|LIAUA +HS|2940009||KI6LNI|08/23/2007|SYSGRT +HS|2940009||KI6LNI|08/23/2007|LIISS +HS|2940009||KI6LNI|09/06/2007|LIMOD +HS|2955171||KI6MPA|11/26/2008|LIAUA +HS|2955171||KI6MPA|10/25/2007|SYSGRT +HS|2955171||KI6MPA|10/25/2007|LIISS +HS|2955171||KI6MPA|01/30/2008|LIAUA +HS|2955171||KI6MPA|04/02/2008|LIAUA +HS|2958600||KI6MVB|11/26/2008|LIMOD +HS|2958600||KI6MVB|11/07/2007|SYSGRT +HS|2958600||KI6MVB|11/07/2007|LIISS +HS|2970055||K2NEO|11/26/2008|LIAUA +HS|2970055||K2NEO|12/14/2007|LIISS +HS|2970055||K2NEO|12/14/2007|VANGRT +HS|2977794||KE5SEK|11/26/2008|LIAUA +HS|2977794||KE5SEK|01/22/2008|SYSGRT +HS|2977794||KE5SEK|01/22/2008|LIISS +HS|2977794||KE5SEK|02/01/2008|LIAUA +HS|3010114||KI6QDF|11/26/2008|LIMOD +HS|3010114||KI6QDF|05/05/2008|SYSGRT +HS|3010114||KI6QDF|05/05/2008|LIISS +HS|3010118||KI6QDJ|11/26/2008|LIMOD +HS|3010118||KI6QDJ|05/05/2008|SYSGRT +HS|3010118||KI6QDJ|05/05/2008|LIISS +HS|3015667||AL3G|11/26/2008|LIREN +HS|3015667||AL3G|05/22/2008|LIISS +HS|3015667||AL3G|05/22/2008|SYSGRT +HS|3058540||KD8JRN|11/19/2008|SYSGRT +HS|3058540||KD8JRN|11/19/2008|LIISS +HS|3058540||KD8JRN|11/26/2008|LIAUA +HS|3059281||KE7YIM|11/24/2008|SYSGRT +HS|3059281||KE7YIM|11/24/2008|LIISS +HS|3059281||KE7YIM|11/26/2008|LIAUA +HS|3059288||AL3I|11/24/2008|SYSGRT +HS|3059288||AL3I|11/24/2008|LIISS +HS|3059288||AL3I|11/26/2008|LIAUA +HS|3059320||KI6UMC|11/24/2008|SYSGRT +HS|3059320||KI6UMC|11/24/2008|LIISS +HS|3059320||KI6UMC|11/26/2008|LIAUA +HS|3059595||KI6UND|11/25/2008|SYSGRT +HS|3059595||KI6UND|11/25/2008|LIISS +HS|3059595||KI6UND|11/26/2008|LIAUA +HS|3059687||K6TT|11/25/2008|LIISS +HS|3059687||K6TT|11/25/2008|VANGRT +HS|3059687||K6TT|11/26/2008|LIAUA +HS|3059768||NN1G|11/25/2008|LIISS +HS|3059768||NN1G|11/25/2008|VANGRT +HS|3059768||NN1G|11/26/2008|LICAN +HS|3060117||AH0BS|11/25/2008|SYSGRT +HS|3060117||AH0BS|11/25/2008|LIISS +HS|3060117||AH0BS|11/26/2008|LIAUA +HS|3060121||KD8JSS|11/25/2008|SYSGRT +HS|3060121||KD8JSS|11/25/2008|LIISS +HS|3060121||KD8JSS|11/26/2008|LIMOD +HS|3060246||AB1JV|11/26/2008|LIISS +HS|3060246||AB1JV|11/26/2008|SYSGRT +HS|3060296||KC9OSE|11/26/2008|SYSGRT +HS|3060296||KC9OSE|11/26/2008|LIISS +HS|3060297||KI6UNT|11/26/2008|SYSGRT +HS|3060297||KI6UNT|11/26/2008|LIISS +HS|3060298||KJ4IDG|11/26/2008|SYSGRT +HS|3060298||KJ4IDG|11/26/2008|LIISS +HS|3060461||KI6UNU|11/26/2008|SYSGRT +HS|3060461||KI6UNU|11/26/2008|LIISS +HS|3060462||KI6UNV|11/26/2008|SYSGRT +HS|3060462||KI6UNV|11/26/2008|LIISS +HS|3060463||KI6UNW|11/26/2008|SYSGRT +HS|3060463||KI6UNW|11/26/2008|LIISS +HS|3060464||KI6UNX|11/26/2008|SYSGRT +HS|3060464||KI6UNX|11/26/2008|LIISS +HS|3060465||KI6UNY|11/26/2008|SYSGRT +HS|3060465||KI6UNY|11/26/2008|LIISS +HS|3060466||KI6UNZ|11/26/2008|SYSGRT +HS|3060466||KI6UNZ|11/26/2008|LIISS +HS|3060467||KI6UOA|11/26/2008|SYSGRT +HS|3060467||KI6UOA|11/26/2008|LIISS +HS|3060468||KI6UOB|11/26/2008|SYSGRT +HS|3060468||KI6UOB|11/26/2008|LIISS +HS|3060469||KI6UOC|11/26/2008|SYSGRT +HS|3060469||KI6UOC|11/26/2008|LIISS +HS|3060470||KI6UOD|11/26/2008|SYSGRT +HS|3060470||KI6UOD|11/26/2008|LIISS +HS|3060471||KI6UOE|11/26/2008|SYSGRT +HS|3060471||KI6UOE|11/26/2008|LIISS +HS|3060483||KC2UFM|11/26/2008|SYSGRT +HS|3060483||KC2UFM|11/26/2008|LIISS +AM|215409|||AA0TH|E|A|4||||||||KB0MEZ|P| +AM|218327|||AA6PR|E|A|3|||||||||A| +AM|221076|||AB5A|E|A|5||||||E||AC5SC|A| +AM|225737|||AE4H|E|A|4||||||E||N4UBS|A| +AM|227648|||AI5U|E|A|5||||||E||AB5UI|A| +AM|231520|||K0RQU|G|C|10|||||||||| +AM|238366|||K2MUD|E|C|2||||||E||K2RAS|G| +AM|238484|||K2OI|E|A|1|||||||||| +AM|239218|||K2SSN|T|C|2||||||E||N2YQK|P| +AM|240982|||K3GUX|G|C|3|||||||||| +AM|242184|||K3PAT|T|C|4||||||E||KD4NXV|| +AM|242535|||K3ROQ|P|C|3|||||||||| +AM|243318|||K3XE|E|A|3||||||E||N3XEO|A| +AM|243490|||K3ZIY|G|C|2|||||||||| +AM|244029|||K4BLC|G|C|4||||||E|||P| +AM|246068|||K4IDW|G|C|4||||||E||WB4HFS|T| +AM|248683|||K4SGA|A|C|4|||||||||| +AM|251381|||K5GJA|G|C|4|||||||||| +AM|251899|||K5JFS|G|C|5||||||E||KC5NNG|P| +AM|254545|||K6ALX|T|C|6||||||E||KF6TPU|| +AM|257346|||K6PBB|G|C|6|||||||||| +AM|257705|||K6RAL|E|C|1|||||||||| +AM|257754|||K6RFG|G|C|6||||||E||KD6ZQS|P| +AM|259228|||K7AIX|T|C|7||||||E||KD7DWC|| +AM|259949|||K7EOC|||7|KE7AJF|||||F||KD7CCM||Hopkins, Patricia +AM|265008|||K8MAK|E|C|8||||||E||N8WHL|G| +AM|265789|||K8RDO|A|C|8|||||||||| +AM|266190|||K8TI|E|A|8|||||||||| +AM|266351|||K8UFO|G|C|8||||||E||KC8CGJ|P| +AM|267595|||K9CLL|G|C|4||||||E||KG4BKJ|P| +AM|267880|||K9EAA|P|C|9|||||||||| +AM|270431|||K9UWY|G|C|9|||||||||| +AM|271659|||KA0DOW|P|D|10|||||||||| +AM|272104|||KA0FWC|G|D|10|||||||||P| +AM|277098|||KA1EIB|N|D|1|||||||||| +AM|285785|||KA2KTJ|N|D|2|||||||||| +AM|294633|||KA3YLE|A|D|3|||||||||G| +AM|298443|||KA4RGQ|A|D|5|||||||||G| +AM|298900|||KA4TNH|P|D|4|||||||||| +AM|299095|||KA4UNR|N|D|4|||||||||| +AM|305290|||KA6BPV|P|D|6|||||||||| +AM|308413|||KA6UIT|G|D|7|||||||||P| +AM|311777|||KA7MOJ|N|D|7|||||||||| +AM|322065|||KA9MYV|P|D|9|||||||||| +AM|340354|||KB1DSJ|T|D|1|||||||||| +AM|340729|||KB1EHS|T|D|1|||||||||| +AM|340891|||KB1NB|A|B|1|||||||||| +AM|343352|||KB2GQK|N|D|2|||||||||| +AM|356369|||KB4CQW|G|D|4|||||||||| +AM|361265|||KB4VUK|N|D|4|||||||||| +AM|371355|||KB5VWM|G|D|5||||||E||KC5FTQ|T| +AM|377092|||KB6QEU|N|D|6|||||||||| +AM|380170|||KB6ZVL|T|D|7|||||||||P| +AM|380414|||KB7ARX|N|D|7|||||||||| +AM|382054|||KB7FLH|P|D|7|||||||||| +AM|382319|||KB7GCA|G|D|7|||||||||P| +AM|382471|||KB7GMW|T|D|7|||||||||P| +AM|382641|||KB7GYN|N|D|7|||||||||| +AM|400347|||KB8SOE|G|D|8|||||||||T| +AM|404494|||KB9AGE|P|D|9|||||||||| +AM|411825|||KB9OKB|T|D|9|||||||||| +AM|412173|||KB9OYE|T|D|9|||||||||| +AM|412175|||KB9OYG|T|D|9|||||||||| +AM|414570|||KB9SWQ|G|D|9|||||||||P| +AM|417275|||KC0BWU|T|D|10|||||||||| +AM|418959|||KC0EOV|A|D|10|||||||||G| +AM|419010|||KC0EQX|T|D|2|||||||||P| +AM|419118|||KC0EVV|T|D|10|||||||||| +AM|420199|||KC0OS|A|B|10|||||||||| +AM|420232|||KC0QK|A|B|10|||||||||| +AM|421020|||KC2AHJ|T|D|2|||||||||| +AM|422214|||KC2CGZ|T|D|2|||||||||| +AM|423683|||KC2ERU|G|D|2|||||||||T| +AM|465784|||KC7CPM|T|D|10|||||||||| +AM|467864|||KC7FXK|T|D|7|||||||||| +AM|468670|||KC7HEX|E|D|3||Y|||||||A| +AM|476245|||KC7TKV|T|D|7|||||||||| +AM|476246|||KC7TKW|T|D|7|||||||||| +AM|476249|||KC7TKZ|T|D|7|||||||||| +AM|476251|||KC7TLA|T|D|7|||||||||| +AM|476252|||KC7TLB|T|D|7|||||||||| +AM|478449|||KC7WXB|G|D|7|||||||||P| +AM|485633|||KC8JKK|T|D|8|||||||||| +AM|487131|||KC8LUT|G|D|8|||||||||T| +AM|487133|||KC8LUV|G|D|8|||||||||T| +AM|487135|||KC8LUY|G|D|8|||||||||P| +AM|488906|||KD0VU|A|B|10|||||||||G| +AM|490188|||KD3QD|A|B|3|||||||||| +AM|506501|||KD5C|E|A|5|||||||||| +AM|508696|||KD5FON|T|D|5|||||||||| +AM|508846|||KD5FUW|T|D|5|||||||||| +AM|508873|||KD5FWB|T|D|5|||||||||| +AM|509328|||KD5GPO|E|D|5|||||||||T| +AM|510053|||KD5HTA|T|D|5|||||||||| +AM|511542|||KD6BQT|T|D|7|||||||||| +AM|517029|||KD6KR|A|B|6|||||||||| +AM|527870|||KD7CZB|T|D|7|||||||||| +AM|528643|||KD7EFA|T|D|7|||||||||| +AM|528646|||KD7EFD|T|D|7|||||||||| +AM|530831|||KD8XL|E|B|8|||||||||A| +AM|547689|||KE4YZW|T|D|4|||||||||| +AM|548616|||KE5SS|A|B|5|||||||||| +AM|550823|||KE6DII|T|D|6|||||||||| +AM|575148|||KF4NLV|T|D|4|||||||||| +AM|575158|||KF4NMF|N|D|4|||||||||| +AM|587301|||KF6HOJ|T|D|6|||||||||| +AM|587305|||KF6HOO|T|D|6|||||||||| +AM|587306|||KF6HOP|T|D|6|||||||||| +AM|591060|||KF6NQP|T|D|6|||||||||| +AM|592825|||KF6QMQ|T|D|6|||||||||| +AM|594512|||KF6TJE|T|D|6|||||||||| +AM|595505|||KF6UZB|T|D|6|||||||||| +AM|597204|||KF7G|E|A|7||||||E||KK7EW|A| +AM|598966|||KG0UH|E|B|10||||||||KB0QPS|A| +AM|600179|||KG4BFJ|G|D|4|||||||||T| +AM|600703|||KG4CCG|T|D|4|||||||||| +AM|605976|||KH6PO|P|C|13|||||||||| +AM|608129|||KI5WF|E|B|9|||||||||A| +AM|612045|||KK4WD|A|B|4|||||||||| +AM|612992|||KK6OB|E|B|6||||||||N6YWQ|A| +AM|616408|||KM5UM|E|B|5|||||||||A| +AM|619792|||KP4BKD|T|D|12|||||||||P| +AM|619845|||KP4CER|G|D|12||||||E||WP4CER|P| +AM|621114|||KQ4LE|E|B|4|||||||||| +AM|622689|||KR6J|E|A|6||||||E||KF6YY|A| +AM|623918|||KT4NY|A|B|4|||||||||P| +AM|625757|||KX6D|E|A|6|||||||||G| +AM|626059|||KY7Y|E|A|7|||||||||| +AM|630306|||N0IXE|T|C|10||||||B||N0OMW|P| +AM|631089|||N0KGM|G|C|7|||||||||| +AM|652178|||N1UQB|T|C|4|||||||||| +AM|658150|||N2GFV|A|C|2|||||||||| +AM|666280|||N2UFM|E|C|2||||||A||AA2WY|A| +AM|669044|||N2YOG|T|C|4|||||||||| +AM|669938|||N2ZYC|T|C|2|||||||||| +AM|672525|||N3FRQ|E|C|2|||||||||P| +AM|673258|||N3HCF|G|C|8|||||||||P| +AM|687205|||N4FIB|T|C|4|||||||||P| +AM|688859|||N4JCP|G|C|4||||||E||KE4JTV|P| +AM|691954|||N4PMW|G|C|4|||||||||| +AM|691976|||N4PNZ|G|C|8|||||||||| +AM|694723|||N4UOD|G|C|4|||||||||| +AM|695175|||N4VIA|T|C|4|||||||||P| +AM|700426|||N5GIR|G|C|5|||||||||| +AM|704517|||N5OQP|P|C|5|||||||||| +AM|711514|||N6ADA|G|C|6||||||E||KD6TGK|P| +AM|713270|||N6EOW|P|C|6|||||||||N| +AM|715600|||N6KE|E|A|7||||||E||KD6RAS|A| +AM|724672|||N7BAG|E|C|7||Y||||E||KJ7VW|A| +AM|725687|||N7DOA|G|C|7||||||E||KB7LGD|P| +AM|727731|||N7IAI|P|C|7|||||||||| +AM|730259|||N7MQV|G|C|7|||||||||| +AM|739973|||N8DKY|G|C|8|||||||||| +AM|752893|||N8ZVD|G|C|8|||||||||T| +AM|756655|||N9IFA|P|C|9|||||||||| +AM|756948|||N9IT|E|A|9||||||E||AA9OQ|A| +AM|767849|||NA5N|E|A|5|||||||||A| +AM|769360|||NH0M|E|A|6||||||||AH0BC|A| +AM|770082|||NI6C|E|A|10|||||||||| +AM|772456|||NP3MP|T|C|12|||||||||| +AM|775152|||NY4X|E|A|4||||||E||KF4BVN|A| +AM|776271|||W0DQD|G|C|10|||||||||| +AM|776681|||W0FLS|E|C|10||||||E|||A| +AM|777608|||W0KHG|E|C|10|||||||||A| +AM|781879|||W1FMO|E|C|1|||||||||A| +AM|783174|||W1LNO|G|C|1|||||||||| +AM|786068|||W2DDZ|E|C|2||Y|||||||A| +AM|786277|||W2EAQ|G|C|2|||||||||| +AM|786417|||W2ENK|G|C|2|||||||||| +AM|788144|||W2LXN|G|C|2|||||||||| +AM|788266|||W2MOR|A|C|4|||||||||| +AM|791899|||W3HID|G|C|3|||||||||| +AM|794341|||W3VYL|E|C|3|||||||||| +AM|794850|||W4ADE|A|C|4||||||E||N2BSG|G| +AM|795856|||W4DJM|T|C|4||||||F||KF4DSE|| +AM|796620|||W4GAZ|T|C|4||||||B||KF4BUG|| +AM|796771|||W4GND|A|C|4|||||||||| +AM|796875|||W4GX|E|A|4||||||||WB4VLA|A| +AM|798496|||W4MJR|E|C|4||||||E||WO4J|| +AM|798509|||W4MKR|T|C|4||||||E||KF4SUF|| +AM|800510|||W4SNT|G|C|4||||||E||K8SNT|P| +AM|801280|||W4VFF|G|C|4||||||E||KD4DWA|T| +AM|801517|||W4WDP|T|C|4||||||E||KE4URD|P| +AM|802951|||W5CRP|G|C|5||||||E||WA5NTB|| +AM|806396|||W5RUT|A|C|5|||||||||| +AM|806685|||W5SUV|E|C|5|||||||||| +AM|808835|||W6CC|E|A|6|||||||||| +AM|811316|||W6LCW|G|C|6|||||||||| +AM|815769|||W7CDF|G|C|7||||||E||KB7PDH|P| +AM|816033|||W7DFC|G|C|7|||||||||| +AM|816647|||W7FVZ|G|C|7|||||||||| +AM|818676|||W7MOO|T|C|6||||||E||KF6MSG|| +AM|818987|||W7OPF|G|C|7|||||||||| +AM|820199|||W7WBU|G|C|7|||||||||| +AM|820608|||W7ZWW|A|C|7||||||E|||G| +AM|821103|||W8BZ|E|A|8||||||E||W8YU|| +AM|821285|||W8CSK|A|C|8||||||B||KC8MZ|| +AM|822096|||W8GLS|T|C|8||||||E||N9NAY|P| +AM|823062|||W8KMS|T|C|8||||||E||N9YOL|| +AM|823126|||W8KRR|E|C|8|||||||||| +AM|823605|||W8MFH|P|C|3|||||||||| +AM|825887|||W8ZMQ|A|C|8|||||||||| +AM|826221|||W9BEV|E|C|9||||||E||WD9BEV|A| +AM|828467|||W9LYA|E|C|9|||||||||A| +AM|830211|||W9VHQ|G|C|9|||||||||| +AM|830646|||W9YZI|E|C|10|||||||||| +AM|831119|||WA0DDD|P|D|10|||||||||| +AM|833584|||WA0ZHU|G|D|10|||||||||| +AM|833593|||WA0ZJC|A|D|10|||||||||| +AM|836173|||WA1UXA|||1|WW1Y|||||F||KB1DHT||HEEDLES, JAMES M +AM|838202|||WA2EWV|T|D|2|||||||||P| +AM|840268|||WA2MYG|E|D|2|||||||||G| +AM|842317|||WA2WEY|P|D|2|||||||||| +AM|844924|||WA3SDK|A|D|3|||||||||| +AM|846976|||WA4DJX|G|D|4|||||||||| +AM|853766|||WA5KQI|G|D|5|||||||||| +AM|854486|||WA5QMV|E|D|6|||||||||A| +AM|859314|||WA6PCU|P|D|6|||||||||| +AM|860173|||WA6SIV|G|D|6|||||||||P| +AM|863798|||WA7SNU|A|D|7|||||||||| +AM|864676|||WA7ZTT|A|D|7|||||||||| +AM|865041|||WA8COT|A|D|8|||||||||| +AM|865257|||WA8EDP|P|D|8|||||||||| +AM|865326|||WA8ESG|G|D|8|||||||||| +AM|867245|||WA8VMK|P|D|8|||||||||| +AM|867763|||WA9AFM|E|D|5|||||||||A| +AM|872712|||WB0QZO|G|D|10|||||||||| +AM|878000|||WB2JRR|A|D|4|||||||||| +AM|878064|||WB2KAK|G|D|2|||||||||| +AM|879319|||WB2QDB|G|D|2|||||||||| +AM|879708|||WB2SEB|A|D|3||||||E|||G| +AM|880522|||WB2WGP|N|D|2|||||||||| +AM|881837|||WB3DWY|G|D|3|||||||||| +AM|883934|||WB4CDF|G|D|8|||||||||T| +AM|883956|||WB4CFQ|A|D|4|||||||||| +AM|886909|||WB4PRR|A|D|9|||||||||| +AM|888065|||WB4VNN|A|D|4|||||||||| +AM|889247|||WB5CIQ|A|D|5|||||||||| +AM|894209|||WB6FAC|P|D|6|||||||||| +AM|902491|||WB8GER|P|D|8|||||||||| +AM|910390|||WD0DXA|G|D|10|||||||||| +AM|911621|||WD4AUD|G|D|7|||||||||P| +AM|912468|||WD4EOY|G|D|4|||||||||| +AM|917194|||WD5UNT|E|D|5||||||E|||A| +AM|918427|||WD6FZM|G|D|6|||||||||| +AM|920254|||WD8KCY|G|D|8|||||||||| +AM|929643|||WP3BG|G|C|12|||||||||P| +AM|935563|||WQ9G|E|A|9|||||||||A| +AM|935598|||WR0NG|A|B|7||||||E||K0LAL|G| +AM|937206|||WW9GS|A|B|9||||||E||KF9HM|G| +AM|937597|||WY3S|E|A|1|||||||||A| +AM|1303622|||W1SM|E|A|1||||||E||KA1AD|A| +AM|1955289|||KG6FRW|T|D|6|||||||||| +AM|2434181|||AG4VI|E|A|4||||||||KG4UAH|G| +AM|2438174|||NP4V|E|A|12||||||E||KP4EDW|G| +AM|2560646|||KC8YPK|G|D|8|||||||||T| +AM|2570556|||KG6TGH|G|D|4|||||||||T| +AM|2578937|||KG6TOB|T|D|4|||||||||| +AM|2811616|||KI4PEQ|G|D|4|||||||||T| +AM|2836903|||KI6FDN||D|6|KI6SAO|||||||||Heiser, David B +AM|2846092|||N6OOB|E|C|6||||||E||KE6THG|G| +AM|2846663|||K4WFN|T|C|4||||||E||KF4SJF|| +AM|2880376|||KB3ONK|G|D|3|||||||||T| +AM|2928245|||AB5L|E|A|5||||||E||KI0K|A| +AM|2940009|||KI6LNI|G|D|6|||||||||T| +AM|2955171|||KI6MPA|T|D|10|||||||||| +AM|2958600|||KI6MVB|G|D|6|||||||||T| +AM|2970055|||K2NEO|E|C|2||||||E||KC2NEO|G| +AM|2977794|||KE5SEK|T|D|5|||||||||| +AM|3010114|||KI6QDF|G|D|6|||||||||T| +AM|3010118|||KI6QDJ|G|D|6|||||||||T| +AM|3015667|||AL3G|E|A|11||||||||WP3AZ|G| +AM|3058540|||KD8JRN|T|D|8|||||||||| +AM|3059281|||KE7YIM|T|D|7|||||||||| +AM|3059288|||AL3I|E|A|11|||||||||| +AM|3059320|||KI6UMC|T|D|6|||||||||| +AM|3059595|||KI6UND|G|D|6|||||||||| +AM|3059687|||K6TT|E|A|6||||||E||K6PTS|G| +AM|3059768|||NN1G|E|A|1||||||||K1GIL|G| +AM|3060117|||AH0BS|E|B|13|||||||||| +AM|3060121|||KD8JSS|T|D|8|||||||||| +AM|3060246|||AB1JV|E|A|1||||||||NN1G|G| +AM|3060296|||KC9OSE|T|D|9|||||||||| +AM|3060297|||KI6UNT|T|D|6|||||||||| +AM|3060298|||KJ4IDG|T|D|4|||||||||| +AM|3060461|||KI6UNU|T|D|6|||||||||| +AM|3060462|||KI6UNV|T|D|6|||||||||| +AM|3060463|||KI6UNW|T|D|6|||||||||| +AM|3060464|||KI6UNX|T|D|6|||||||||| +AM|3060465|||KI6UNY|T|D|6|||||||||| +AM|3060466|||KI6UNZ|T|D|6|||||||||| +AM|3060467|||KI6UOA|T|D|6|||||||||| +AM|3060468|||KI6UOB|T|D|6|||||||||| +AM|3060469|||KI6UOC|T|D|6|||||||||| +AM|3060470|||KI6UOD|T|D|6|||||||||| +AM|3060471|||KI6UOE|G|D|6|||||||||| +AM|3060483|||KC2UFM||D|2|KC2SWF|||||||||Mollica, Michael C +SC|239218|K2SSN|P|999|| +SC|380170|KB6ZVL|P|999|| +SC|382471|KB7GMW|P|999|| +SC|419010|KC0EQX|P|999|| +SC|619792|KP4BKD|P|999|| +SC|630306|N0IXE|P|999|| +SC|687205|N4FIB|P|999|| +SC|695175|N4VIA|P|999|| +SC|801517|W4WDP|P|999|| +SC|822096|W8GLS|P|999|| +SC|838202|WA2EWV|P|999|| +CO|3059768||NN1G|11/26/2008|Issued new systematic call sign.|| diff --git a/office/regression/000_000104.txt b/office/regression/000_000104.txt new file mode 100644 index 0000000..fed08d1 --- /dev/null +++ b/office/regression/000_000104.txt @@ -0,0 +1,2768 @@ +Instruction manual, part 3b: +CLASSIFICATION AND CODING INSTRUCTIONS FOR FETAL DEATH RECORDS, +1999-2001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +______________________________________________________________________ + +This instruction manual was prepared by the Division of Vital Statistics. Questions +regarding this manual and other related Vital Statistics Cooperative Program activities should +be directed to the Data Acquisition and Evaluation Branch, Division of Vital Statistics, +National Center for Health Statistics, P.O. Box 12214, Research Triangle Park, +North Carolina 27709. Questions concerning analysis of Fetal Death data should be referred +to the Reproductive Statistics Branch, Division of Vital Statistics, National Center for Health +Statistics, 6525 Belcrest Road, Presidential Building, Room 820, Hyattsville, +Maryland 20782. + + CONTENTS + + Page +Section I - Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . 1 + +Section II - General Procedures for Electronic Files . . . . . . . . . . . . 1 + Receipts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 + Processing. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2 + +Section III - File Layout and Coding Instructions. . . . . . . . . . . . . . 2 + 1999-2001 NCHS Fetal Death File Layout . . . . . . . . . . . . . . . . 3 + Shipment Number . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 + State File Number . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 + Facility . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 + Place of Delivery - State - County. . . . . . . . . . . . . . . . . . . 5 + Date of Delivery . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 + Sex . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 + Mother's Date of Birth . . . . . . . . . . . . . . . . . . . . . . . . 6 + Residence of Mother . . . . . . . . . . . . . . . . . . . . . . . . . . 6 + Father's Date of Birth. . . . . . . . . . . . . . . . . . . . . . . . .14 + Hispanic Origin - Mother - Father . . . . . . . . . . . . . . . . . . .14 + Race - Mother - Father . . . . . . . . . . . . . . . . . . . . . . . 17 + Education - Mother - Father . . . . . . . . . . . . . . . . . . . . . .19 + Pregnancy History . . . . . . . . . . . . . . . . . . . . . . . . . . 21 + Date of Last Live Birth . . . . . . . . . . . . . . . . . . . . . . . .22 + Mother Married? . . . . . . . . . . . . . . . . . . . . . . . . . . . .22 + Date Last Normal Menses Began . . . . . . . . . . . . . . . . . . . . .23 + Month of Pregnancy Prenatal Care Began . . . . . . . . . . . . . . . .24 + Prenatal Visits . . . . . . . . . . . . . . . . . . . . . . . . . . . .25 + Weight of Fetus . . . . . . . . . . . . . . . . . . . . . . . . . . . .25 + Clinical Estimate of Gestation . . . . . . . . . . . . . . . . . . . .26 + Plurality . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .27 + Medical Risk Factors for This Pregnancy . . . . . . . . . . . . . . . .28 + Other Risk Factors for This Pregnancy . . . . . . . . . . . . . . . . .29 + Obstetric Procedures. . . . . . . . . . . . . . . . . . . . . . . . . .30 + Complications of Labor and/or Delivery . . . . . . . . . . . . . . . .31 + Method of Delivery . . . . . . . . . . . . . . . . . . . . . . . . . .32 + Congenital Anomalies. . . . . . . . . . . . . . . . . . . . . . . . . .33 + + + + + + Underlying Cause of Death . . . . . . . . . . . . . . . . . . . . . .34 + Attendant . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .34 + Age - Mother - Father . . . . . . . . . . . . . . . . . . . . . . . . .35 + +Appendix A - Geographic Codes for State of Delivery and Residence. . . . . .36 +Appendix B - Interpretations of Atlas Notations . . . . . . . . . . . . . .38 +Appendix C - Largest City and Code by State of Residence . . . . . . . . . .39 +Appendix D - Other Entries Reported on Records and Code for Race . . . . . .41 +Appendix E - Indian Tribes in the United States, Canada, and Mexico. . . . .46 +Appendix F - Other Entries Reported on Records and Codes for Education + of Mother and Father. . . . . . . . . . . . . . . . .50 +Appendix G - Other Entries Reported on Records and Code + for Hispanic Origin . . . . . . . . . . . . . . . . .51 +Appendix H - Terms Indicating Induced Abortions. . . . . . . . . . . . . . .52 + +Illustration I - Report of Fetal Death . . . . . . . . . . . . . . . . . . .54 +Vital Statistics Instruction Manuals . . . . . . . . . . . . . . . . . . . .55 + + + + + + + + + + CLASSIFICATION AND CODING INSTRUCTIONS + FOR FETAL DEATH RECORDS, 1999-2001 + + + + +Section I - Introduction + + This manual documents specifications for coding and key entry of statistical items that will +be tabulated from the fetal death report by the National Center for Health Statistics (NCHS). +Primarily, these specifications are used by 49 registration areas of the United States (45 states, +District of Columbia, New York City, Puerto Rico and The Virgin Islands) that submit data to +NCHS in electronic form through the Vital Statistics Cooperative Program (VSCP). Under the +terms of the VSCP contracts with NCHS, the registration area must incorporate NCHS +specifications into their own procedures so that the resultant data files meet the needs of both +NCHS and the registration area. Changes effective with 1999 are in bold print. + + +Section II - General Procedures for Electronic Files + + A. Receipts + + All registration areas except Arizona, California, Nevada, Ohio, Wyoming, and + Guam provide coded data to NCHS in electronic form (tapes, diskettes and PC to + PC). These files include all of the fetal death events registered within their + jurisdiction for each calendar year. In general, data are transmitted on a monthly + basis. Transmittals take place at regular intervals and contain any and all records + received and initially processed in the state office since the last transmittal to NCHS + regardless of the month of the occurrence of the event. A record need not be + "perfect" to qualify for transmittal. Each regular data transmittal shall contain all + replacement records processed to date incorporating updated information from any + source. For purposes of full utilization and release of the data, states are expected + to transmit the majority of records within six months of occurrence and a complete + and final version of all records by July 31. + + + + B. Processing + + As the files are received at NCHS-RTP, they are automatically checked for + completeness, individual item code validity, and unacceptable inconsistencies + between data items. The registration area is notified of any problems. In addition, + NCHS staff review the files on an ongoing basis to detect problems in overall + quality such as inadequate reporting for certain items, failure to follow NCHS + coding rules, and systems and software errors. Traditionally, quality assurance + procedures have been limited to review and analysis of differences between the + NCHS and registration area code assignments for a small number of records. In + recent years, this procedures has been augmented by analyses of year to year and + area to area variations in the data. These analyses are based on preliminary + tabulations of the data that are cumulated on a year to date basis each month. All + differences that are judged to have consequences for quality and completeness are + investigated by NCHS. In the review process, statistical tests are used to call + initial attention to differences for possible follow-up. As necessary, registration + areas are informed of differences encountered in the tables and asked to verify the + counts or to determine the nature of the differences. Missing records (except those + permanently voided) and other problems detected by NCHS should be resolved and + corrections transmitted to NCHS in the same manner as for those corrections + identified by the registration area. + +Section III -File Layout and Coding Instructions + + This section provides the code structure, coding instructions, and output file locations for +each item in the national data set. + +Changes were made to the following items effective in 1999 to expand all year fields to four digits: + +Date of Delivery +Mother's Date of Birth +Father's Date of Birth +Date of Last Live Birth +Date Last Normal Menses Began + +Note: The old locations for these years have been converted to "Filler" and should be blank. + + + +1999-2001 Fetal Death File Layout + +Items File Items File + Location Location + +Shipment No. 1 - 2 Date Last Normal Menses Began +Certificate No. 3 - 8 Month57 - 58 +Facility 9 Day 59 - 60 +Geographic Place of Delivery Filler61 + State 10 - 11 Mon. Of Preg. Prenatal Care62 + County 12 - 14 Named Month63 - 64 +Date of Delivery Prenatal Visits (Total No.)65 - 66 + Month 15 - 16 Weight of Fetus + Day 17 - 18 Units67 +Filler 19 Grams or Pounds/ounces68 - 71 +Sex 20 Clinic Est. Gestation (Wks)72 - 73 +Mother's Date of Birth Plurality74 + Month 21 - 22 Med. Risk Factors For Preg.75 - 92 + Day 23 - 24 Filler 93 - 108 +Filler 25 - 26 Other Risk Factors For Preg. +Residence of Mother Tobacco Use109 + State 27 - 28 Aver. No. Cigar. Day 110 - 111 + County or City 29 - 31 Alcohol Use 112 +Father's Date of Birth Aver. No. Drinks Week113 - 114 + Month 32 - 33 Weight Gain During Preg.115 - 116 + Day 34 - 35 Obstetric Procedures117 - 124 +Filler 36 - 37 Filler125 - 130 +Hispanic Origin Comp. Of Labor/delivery131 - 147 + Mother 38 Filler148 - 162 + Father 39 Method of Delivery163 - 170 +Race Filler 171 - 176 + Mother 40 Congenital Anomalies177 - 199 + Father 41 Date of Delivery Year200 - 203 +Education Mother's Date of Birth Year204 - 207 + Mother 42 - 43 Father's Date of Birth Year208 - 211 + Father 44 - 45 Date of Last Live Birth Year212 - 215 +Pregnancy History Date Last Normal Menses216 - 219 + Live Births - Now Living 46 - 47 Began Year + Live Births - Now Dead 48 - 49 Filler 220 + No. Other Terminations 50 - 51 Underlying Cause of Death221 - 224 +Date of Last Live Birth Attendant 225 + Month 52 - 53 Age +Filler 54 - 55 Mother 226 - 227 +Mother Married? 56 Father228 - 229 + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +SHIPMENT 1-2 For NCHS use only. State is +NUMBER to leave blank. + +STATE FILE 3-8 Left zero fill. +NUMBER + If the name of a hospital, +FACILITY 9 Hospital Deliveries institution, "medical center," + (Hospital, institution, or "maternity home" is + medical center, nursing reported, code 1. + home, maternity home) . . . 1 + For other medical facilities + Non-Hospital Deliveries such as "infirmaries, + "manors," "facilities," + (Named places, Dr.'s office, "dispensaries,""nursing + mother's residence, street home," etc., code 1. + address, non-hospital + clinic. . . . . . . . . . . 2 A hospital or institution + Delivery enroute to or clinic is considered part of + upon arrival at hospital. . 3 the hospital or institution, + code 1. Non-hospital clinics + Not Classifiable. . . . . . 9 and other + non-hospital outpatient + facilities, code 2. + + If a named place other than a + hospital, institution, + maternity home or medical + center is reported (for + example, a doctor's office, + fire department, public + places), code 2. + + If street address is reported + other than one of a hospital, + code 2. + + If an entry of "Delivered at + Home" or "At home" is + reported, code 2. + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +GEOGRAPHIC +PLACE OF +DELIVERY + + STATE 10-11 Refer to Appendix A Enter appropriate code. + + COUNTY 12-14 Refer to Part 8 Instruction + Manual, Vital Records + Geographic Classification, + 1995. Use code designated + for "Balance of County" or + "Entire County." Code + given for co-extensive or + independent cities is to be + used as county code. + +DATE OF +DELIVERY + + Month 15-16 January. . . . . . . . . .01 + February . . . . . . . . .02 + March. . . . . . . . . . .03 + April. . . . . . . . . . .04 + May. . . . . . . . . . . .05 + June . . . . . . . . . . .06 + July . . . . . . . . . . .07 + August . . . . . . . . . .08 + September. . . . . . . . .09 + October. . . . . . . . . .10 + November . . . . . . . . .11 + December . . . . . . . . .12 + Not Classifiable . . . . .99 + + Day 17-18 01-31 + Not Classifiable . . . . .99 + + + Year 200-203 Enter four digit year. Year must be reported. + +Filler 19 Blank + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +SEX 20 Male . . . . . . . . . . .1 Code 9 for entry of + Female . . . . . . . . . . 2 "undeterminable." + Not Classifiable . . . . . 9 + + +MOTHER'S +DATE OF +BIRTH + + Month 21-22 January. . . . . . . . . .01 Code as reported. + February . . . . . . . . .02 + March. . . . . . . . . . .03 If any part of the date is not + April. . . . . . . . . . .04 reported, code only the + May. . . . . . . . . . . .05 missing component Not + June . . . . . . . . . . .06 Classifiable. + July . . . . . . . . . . .07 + August . . . . . . . . . .08 + September. . . . . . . . .09 + October. . . . . . . . . .10 + November . . . . . . . . .11 + December . . . . . . . . .12 + Not Classifiable . . . . .99 + + Day 23-24 01-31 + Not Classifiable . . . . .99 + + Year 204-207 Enter four digit year. + Not Classifiable . . . .9999 + +Filler 25-26 Blank + +RESIDENCE +OF MOTHER + + State 27-28 Refer to Appendix A Enter appropriate code. + + County or 29-31 Refer to Part 8 Instruction Rules for use of coding table + City Manual, Vital Records (pages 10-13)for Place of + Geographic Classification, Residence of Mother. + 1995. (Use Section II only + when certificate contains no Apply rules in sequential + county entry.) order. + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +RESIDENCE If "rural" is entered, code by +OF MOTHER - line 2 of table and stop. +Cont. + If "rural" is not entered, find + line item that fits reporting + on certificate and heading + that describes reporting in + "City Limits Item." Code + according to instructions + given when horizontal line + and vertical column intersect. + + Example + City but no county entry and + outside of city limits. + + Select line 6A and + column (b). Instruction + where these intersect is to + code "Balance of County 1/." + + Additional instructions: + + Disregard the name of a + state, county, or city entered + on the address line when an + entry is reported in the space + provided for these items. + + When the state, county or + city entry has obviously been + typed on the incorrect line, + consider the entry when + classifying residence. + + If a city entry is reported + with North, East, South, or + West, check the atlas to + determine if it is a separate + geographic place or an + inclusion of the named city. + + + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +RESIDENCE If the named place is not +OF MOTHER - listed in the atlas, consider +Cont. the entry to be an inclusion + of the city named (e.g., East + Durham is not listed in the + atlas, and, therefore, is + considered to be an inclusion + of the city of Durham). + + If county is reported and two + cities are reported on the city + line, check atlas to determine + if one is an inclusion. If not, + code to city with the larger + population. + + If no county entry is reported + and the city + is not listed in the Part 8 + Instruction Manual, Vital + Records Geographic Classi- + fication, 1995, Section II, + refer to the atlas to + determine county. If atlas + indicates city is listed in two + counties, refer to the U.S. + Census Population 1990, + "Number of Inhabitants" and + code to the county contain- + ing the largest part of the + city's population. + + If New York City is reported + as place of residence and no + borough is reported, code to + Manhattan Borough. + + + + + +CODING RULES TABLE FOR PLACE OF RESIDENCE OF MOTHER + + (a) (b) + Inside City Limits Inside City Limits + No Yes + +_____________________________________________________________________________________ + 1. Blank County/City of delivery 2/ County/City of delivery 2/ +_____________________________________________________________________________________ + 2. "Rural" entry Balance of County Balance of County +_____________________________________________________________________________________ + 3. City listed in Geographic City Balance of County + Code Manual (includes + independent and coextensive + cities.) +______________________________________________________________________________________ + 4. City not listed in Balance of County Balance of county + Geographic Code Manual +______________________________________________________________________________________ + 5. County, but no city entry Balance of County Balance of County +______________________________________________________________________________________ + 6. State and city but no county + entry and State is same as + State of Occurrence. + + A. City listed in City Balance of County 1/ + Geographic Code Manual +______________________________________________________________________________________ + B. City not listed in Balance of County 1/ Balance of County 1/ + Geographic Code Manual. +______________________________________________________________________________________ + C. Atlas gives 2 or more County of delivery County of delivery + cities by same name in + different counties +______________________________________________________________________________________ + D. City not in atlas County/City of delivery 2/ County/City of delivery 2/ +______________________________________________________________________________________ + 7. State and city, but no county + entry and State is different + from State of Occurrence + + A. City listed in City Balance of County 1/ + Geographic Code Manual +______________________________________________________________________________________ + 1/ Use atlas and other reference aids to establish county and/or population. See Appendix B for rules on + interpreting atlas notations. + + If independent city or coextensive, use Section II, Part 8, Instruction Manual,Vital Records Geographic + Classification, 1995. + + + +CODING RULES TABLE FOR PLACE OF RESIDENCE OF MOTHER - continued + + (c) (d) + Inside City Limits Item Inside City Limits Item + Not reported or item not on certificate Not reported or item not on certificate + but street address reported and no street address reported +_______________________________________________________________________________________ + County/City of delivery 2/ County/City of delivery 2/ +_______________________________________________________________________________________ + Balance of County Balance of County +_______________________________________________________________________________________ + Balance of County if indicated as "rural," City + "RFD," "star route," "rural delivery." + All others, code to City. + +_______________________________________________________________________________________ + Balance of County Balance of County + +_______________________________________________________________________________________ + Balance of County Balance of County +_______________________________________________________________________________________ + Balance of County 1/ if indicated as "rural," City + "RFD," "star route," "rural delivery." + All others, code to City. + + + +_______________________________________________________________________________________ + Balance of County 1/ Balance of County 1/ + +_______________________________________________________________________________________ + County of delivery County of delivery + + +_______________________________________________________________________________________ + County/City of delivery 2/ County/City of delivery 2/ +_______________________________________________________________________________________ + Balance of County 1/ if indicated as City + "rural," "RFD," "star route," "rural + delivery." All others, code to City. + + + +_______________________________________________________________________________________ + +2/ Use same rules as coding city and county of residence. + + + + + +CODING RULES TABLE FOR PLACE OF RESIDENCE OF MOTHER - continued + + (a) (b) + Inside City Limits Inside City Limits + Yes No + +_______________________________________________________________________________________ + 7. (Continued) + + B. City not listed in Balance of County 1/ Balance of County 1/ + Geographic Code Manual +_______________________________________________________________________________________ + C. Atlas gives 2 or more City with largest City with largest + cities by same name in population population + different counties +_______________________________________________________________________________________ + D. City not in atlas Largest City of State Largest City of State + of Residence 3/ of Residence 3/ +_______________________________________________________________________________________ + 8. State only specified with County/City of delivery 2/ County/City of delivery 2/ + no city or county entry + and State is same as + State of Occurrence +_______________________________________________________________________________________ + 9. State only specified with Largest City of State Largest City of State + no city or county entry of Residence 3/ of Residence 3/ + and State is different + from State of Occurrence +_______________________________________________________________________________________ +10. A. Foreign Country - Code in data positions 27-28. (Leave data positions + 29-31 blank.) + 55 Canada + 56 Cuba + 57 Mexico + 59 Remainder of World + + B. U.S. Possessions - Code in data positions 27-28. (Leave data positions + 29-31 blank.) + 52 Puerto Rico + 53 Virgin Islands + 54 Guam +_______________________________________________________________________________________ +11. Two State entries County/City of delivery 2/ County/City of delivery 2/ +_______________________________________________________________________________________ +12. City and County entry but County/City of delivery 2/ County/City of delivery 2/ + no State entry +_______________________________________________________________________________________ + 1/ Use atlas or other reference aids to establish county and/or population. Refer to Appendix B for rules on + interpreting atlas notation. + + If independent city or coextensive, use Section II, Part 8, Instruction Manual,Vital Records Geographic + Classification, 1995. + + + + +CODING RULES TABLE FOR PLACE OF RESIDENCE OF MOTHER - continued + + (c) (d) + Inside City Limits Item Inside City Limits Item +Not reported or item not on certificate Not reported or item not on certificate + but street address reported and no street address reported +_____________________________________________________________________________________ + Balance of County 1/ Balance of County 1/ + + + +_____________________________________________________________________________________ + City with largest population City with largest population + + +_____________________________________________________________________________________ + Largest City of State of Largest City of State of + Residence 3/ Residence 3/ +_____________________________________________________________________________________ + County/City of delivery 2/ County/City of delivery 2/ + + + +_____________________________________________________________________________________ + Largest City of State of Largest City of State of + Residence 3/ Residence 3/ + + +___________________________________________________________________________________ + + + + + + + + + + + + +___________________________________________________________________________________ + County/City of delivery 2/ County/City of delivery 2/ +___________________________________________________________________________________ + County/City of delivery 2/ County/City of delivery 2/ + +_____________________________________________________________________________________ + +2/ Use same rules as coding city and county of residence. + +3/ See Appendix C for city. + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +FATHER'S +DATE OF +BIRTH + + Month 32-33 January. . . . . . . . . . .01 Code as reported. + February . . . . . . . . . .02 + March. . . . . . . . . . . .03 If any part of the date is not + April. . . . . . . . . . . .04 reported, code only the missing + May. . . . . . . . . . . . .05 component Not Classifiable. + June . . . . . . . . . . . .06 + July . . . . . . . . . . . .07 + August . . . . . . . . . . .08 + September. . . . . . . . . .09 + October. . . . . . . . . . .10 + November . . . . . . . . . .11 + December . . . . . . . . . .12 + Not Classifiable . . . . . .99 + + Day 34-35 01-31 + Not Classifiable . . . . . .99 + + Year 208-211 Enter four digit year. + Not Classifiable . . . . .9999 + +Filler 36-37 Blank + +HISPANIC When there is neither a "Hispanic +ORIGIN Item" nor an "Ancestry Item" on the + certificate then code 9. + Mother 38 Non-Hispanic . . . . . . . . 0 + Mexican. . . . . . . . . . . 1 Refer to Appendix G for additional + Father 39 Puerto Rican . . . . . . . . 2 Hispanic entries and codes as well as + Cuban. . . . . . . . . . . . 3 specific entries for categories 4 + Central or South and 5. + American (Spanish speaking + countries For registration areas having the + only). . . . . . . . . . . . 4 "Hispanic" item, follow instructions + Other and unknown 1-8: + Hispanic . . . . . . . . . . 5 + Not Classifiable . . . . . . 9 1. If "No" is reported with a + specified Hispanic entry in + Appendix G, code the entry. + + 2. If "No" is reported with no + specified Hispanic entry in + Appendix G, code 0. + + + +Item Output Code Structure Coding Instructions + Position(s) + +HISPANIC 3. If "Yes" is reported with a +ORIGIN specified Hispanic entry, assign the + appropriate code of 1-5. + Mother + 4. If "Yes" is reported with no + Father specified Hispanic entry in + Appendix G, and entries for race + - Cont. item are reported as Mexican, + Cuban, or Puerto Rican or any other + Hispanic entry in appendix G, assign + the appropriate code of 1-5. + + 5. If "Yes" is reported with no + specified Hispanic entry in Appendix + G, and there are no Hispanic entries + in race item, as identified in 4 + above, apply the following rules. If + birthplace is on the certificate, refer + to birthplace. If the birthplace + identifies an entry in Appendix G, + assign the appropriate code of 1-5. + If birthplace does not identify an + entry in Appendix G, code 5. If + birthplace is not on the certificate, + code 5. + + 6. If more than one entry is reported + code first-listed Hispanic entry, e.g., + for Mexican-Puerto Rican, code 1. + + 7. If blank and entries for race item + are reported as Mexican, Cuban, or + Puerto Rican or any Hispanic entries + in Appendix G, assign the + appropriate code of 1-5. + + 8. If blank and there are no Hispanic + entries in race item, as identified in 7 + above, refer to birthplace. If the + birthplace is listed in appendix G, + then assign the appropriate code of + 1-5. Otherwise, code 9. + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +HISPANIC +ORIGIN For states having an "ancestry" item, + follow instructions 9 - 12: + Mother + 9. For all entries shown in + Father - Appendix G, assign the appropriate +Cont. code of 1-5. For all other entries + (including American), assign the + code 0. + + 10. If more than one entry is + reported, code first listed Hispanic + entry, e.g. for Mexican-Puerto + Rican, code 1; for Irish-Cuban, + code 3. + + 11. If the item is blank and entries + for the race item are reported as + Mexican, Cuban, or Puerto Rican or + any Hispanic entry in Appendix G, + assign the appropriate code of 1-5. + + 12. If blank and there are no + Hispanic entries in the race item, as + identified above, refer to birthplace. + If the birthplace is listed in + Appendix G, assign the appropriate + code of 1-5. Otherwise, code 9. + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +RACE White The expanded Asian and Pacific + includes Mexican, Islander categories of A, B, C, D, +Mother 40 Puerto Rican, and and E are applicable only for the + other Caucasian. . . . . . 1 following funded registration areas: +Father 41 California, Hawaii, Illinois, New + Black. . . . . . . . . . . . 2 Jersey, New York State, New York + City, Texas and Washington. The + Indian remaining registration areas may + North American choose to use the expanded + Central American categories or continue coding Asian + South American Indian, Korean, Samoan, Vietnamese + Eskimo and Guamian to 8. + Aleut. . . . . . . . . . . 3 + Refer to Appendix D for other + Asian or Pacific Islander reported race entries. + Chinese. . . . . . . . . . 4 + Japanese . . . . . . . . . 5 Refer to Appendix E for names of + Hawaiian (includes Indian tribes in the U.S., Canada, + part-Hawaiian) . . . . . . 6 and Mexico. + Filipino . . . . . . . . . 7 + Other . . . . . . . . . . .8 1. If Hawaiian is reported with any + Asian Indian. . . . . . . .A other race, code Hawaiian. + Korea . . . . . . . . . . .B + Samoan. . . . . . . . . . .C 2. If more than one race is reported + Vietnamese. . . . . . . . .D (except Hawaiian), code the first + Guamian . . . . . . . . . .E race listed. + Multi-racial . . . . . . . F + 3. If more than one race is reported + Other Entries. . . . . . . 0 with percentages or fractions given + (except Hawaiian), code the race + Not Reported . . . . . . . 9 having the higher percentage or + fraction. If the percentages of + fractions are equal, code the first + race listed. + + 4. If more than one race is reported + with a hyphen but without + percentages (except Hawaiian), code + the first race listed. + + 5. If entry is "Col.," "N," Negro," + "Color(ed)," "B," "Brown," + "A.A.""Afro-American," or African + American," code 2 (Black). + + + + +Item Output Code Structure Coding Instructions + Position(s) + +RACE - Cont. 6. If the racial entry is "Asian," + "Yellow," "Oriental," or + "Mongolian", and birthplace is given + as China, Japan, the Phillippines, + Hawaii, India, Korea, Vietnam, + Samoa, or Guam, code to the + appropriate group (code 4-7 or A-E + if using the expanded code structure + or code 4-8 if not using the + expanded code structure). If + birthplace is not on the certificate or + is not one of these places, code 8 + (other Asian or Pacific Islander). + + 7. If the racial entry is "Indian", and + birthplace is not in North, Central, or + South America (including Caribbean + Islands) or birthplace is not on the + certificate, code A (Asian Indian) if + using the expanded code structure or + code 8 (other Asian or Pacific + Islander) if not using the expanded + code structure. + + 8. If "part___," or "1/4, 1/2, + 3/4____" is given as a single race + entry, disregard the prefix and code + race as reported. + + 9. If a racial entry is reported that + cannot be coded 1-8 or A - E, + code 0 (Other Entries). + + 10. If the item contains an entry of + "?", "-", "Unknown" or is left blank, + code 9 (Not Reported). + + 11. Use code F for entries of "multi- + racial," "biracial," "mixed," and + other synonymous terms. Do not + use code F when multiple races are + reported. In such cases, apply rules + 2 through 4 above as applicable. + + Note: States not mandated by law to + code multi-racial as a separate + category may continue to code these + entries as "0". + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +EDUCATION + Mother 42-43 Elementary or Secondary See Appendix F for other entries on + records. + Father 44-45 00-12 + 1. Code the highest grade +College completed. + + 1 year . . . . . . . . . . .13 2. If two or more levels of education + 2 years. . . . . . . . . . .14 are reported for a parent, code the + 3 years . . . . . . . . . . 15 highest level classifiable to codes + 4 years. . . . . . . . . . .16 other than 99. + 5+ years . . . . . . . . . .17 + Not Classifiable . . . . . .99 Example: + + Elementary + Or + Secondary College Code + + 12 2 yrs. Tech 12 + Blank 2 yrs. Tech 99 + 12 2 yrs. 14 + + 3. If the entry for college is reported + as a partial year or indication that a + full year has not been completed and + no other entry is given (e.g., one + semester, one quarter, two quarters, + etc.), code 12. + + 4. If year is given with a fraction or + symbol such as +, -, ?, etc., ignore + fraction or other symbol and code + year as stated. + + 5. If two or three semesters, three or + four quarters, or two or three + trimesters is the only entry reported + in the college block code 13. + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +EDUCATION 6. If entry is reported as "ALL" in + elementary/secondary block, + Mother code 12. If entry is reported as + "ALL" in college block, code 16. + Father + - Cont. 7. If entry in college block is "A.A." + or "A.S.," code 14. + + 8. If entry in college block is + "B.B.A.," "B.A.," "A.B.," or "B.S.," + code 16. + + 9. If entry in college block is + "A.M.," "M.A.," "M.Sc.," "M.D.," + "D.V.M.," "D.D.S.," D.D.M.," + "D.O.," "L.L.B.," "Ph.D.," or other + advanced degree, code 17. + + 10. When symbols such as "+," "-," + "?," "/," etc., are reported in either + block and no other entry is reported, + code 99. If an entry is reported in + either block with a symbol given in + the other block, disregard symbol + and code entry as stated. + + 11. If entry is R.N. or B.S. in + Nursing, code as follows: + + R.N.. . . . . . . . . . . . . . . . . . . . . .14 + 2 R.N. . . . . . . . . . . . . . . . . . . . . .14 + 3 R.N. . . . . . . . . . . . . . . . . . . . . .15 + 4 R.N. . . . . . . . . . . . . . . . . . . . . .16 + B.S. in Nursing. . . . . . . . . . . . . . . . .16 + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +PREGNANCY +HISTORY + + Number of + Live Births: + + Now Living 46-47 Enter as stated. Code 99 for entries of "?," + "None," "N.A.," "-," "X," "0" "Unknown," "Unk.," "#," and other + . . . . . . . . . . . . . . .00 such symbols. + Blank. . . . . . . . . . . . 77 + Not Classifiable . . . . . . 99 Do not include "adoptions." + + Now Dead 48-49 Enter as stated. Blanks must be uniquely identified. + "None," "N.A.," "-," "X," "0" + . . . . . . . . . . . . . . .00 + Blank. . . . . . . . . . . . 77 + Not Classifiable . . . . . . 99 + +Number Other 50-51 Enter as stated. +Terminations "None," "N.A.," "-," "X," "0" + . . . . . . . . . . . . . . .00 + Blank. . . . . . . . . . . . 77 + Not Classifiable . . . . . . 99 + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +DATE OF +LAST LIVE +BIRTH + + Month 52-53 January. . . . . . . . . . .01 If a span is reported for a month or + February . . . . . . . . . .02 year, code the earlier entry; e.g., + March. . . . . . . . . . . .03 March-April, 1994, code 03 1994. + April. . . . . . . . . . . .04 + May. . . . . . . . . . . . .05 Code 99 in locations 52-53 and + June . . . . . . . . . . . .06 9999 in locations 212-215 for + July . . . . . . . . . . . .07 entries of "None," "0," "-," "Not + August . . . . . . . . . . .08 Applicable." + September. . . . . . . . . .09 + October. . . . . . . . . . .10 + November . . . . . . . . . .11 + December . . . . . . . . . .12 + Not Classifiable . . . . . .99 + + Year 212-215 Enter four digit year. + Not Classifiable . . . . .9999 + +Filler 54-55 Blank + +MOTHER 56 Married. . . . . . . . . . . 1 Other entries +MARRIED? Legitimate. . . . . . . . . .1 + Unmarried. . . . . . . . . . 2 Widowed . . . . . .2 + Divorced. . . . . . . . . . .2 Separated . . . . .1 + Not Classifiable . . . . . . 9 Common Law. . . . .1 + Indian Marriage . . . . .1 + Marriage Annulled . . . .2 + Illegitimate. . . . . . .2 + + When there is a conflict between + check box and "other" entries, code + the "other" entry. + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +DATE LAST +NORMAL +MENSES +BEGAN + + Month 57-58 January. . . . . . . . . . .01 Code as reported. + February . . . . . . . . . .02 + March. . . . . . . . . . . .03 If a span is reported for day, code + April. . . . . . . . . . . .04 the earlier entry; e.g., January 10-11, + May. . . . . . . . . . . . .05 1995, code 01 10 1995. If elapsed + June . . . . . . . . . . . .06 span is 8 days or longer, code 99. + July . . . . . . . . . . . .07 + August . . . . . . . . . . .08 If no day is reported but + September. . . . . . . . . .09 approximate part of month is + October. . . . . . . . . . .10 reported, code: + November . . . . . . . . . .11 + December . . . . . . . . . .12 "Beginning of month" . . . . . . . . . . . . . 07 + Not Classifiable . . . . . .99 "Middle of month". . . . . . . . . . . . . . . 15 + "End of month" . . . . . . . . . . . . . . . . 24 + Day 59-60 01-31 + Not Classifiable . . . . . .99 Sometimes the estimated date of + confinement (EDC) or expected date + Year 216-219 Enter four digit year. + Not Classifiable . . . . .9999 of delivery (EDD) are reported as + date of last normal menses. When a + date is reported with either of these + terms or abbreviations, code the + Date Last Normal Menses as "Not + Classifiable." + + If Clinical Estimate of Gestation is + reported in the last normal menses + item on record, code 9999 in data + positions 57-60 and 9999 in + positions 216-219 (Date Last + Normal Menses Began) and code + entry as reported in data positions + 72-73 for (Clinical Estimate of + Gestation). + +Filler 61 Blank + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +MONTH OF 62 1st month . . . . . . . . . 1 If any fraction of a month is +PREGNANCY 2nd month. . . . . . . . . . 2 reported, round to next whole +PRENATAL 3rd month. . . . . . . . . . 3 month. +CARE BEGAN 4th month. . . . . . . . . . 4 + 5th month. . . . . . . . . . 5 If entry is "-," code "0." + 6th month. . . . . . . . . . 6 + 7th month. . . . . . . . . . 7 If entry is reported in weeks, convert + 8th month. . . . . . . . . . 8 to appropriate month using the table + 9th month orbelow: + later . . . . . . . . . . . 9 + None . . . . . . . . . . . . 0 Weeks Months + Month Named. . . . . . . Blank 1-4. . . . . . . . . . . . . . . .1 + Not Classifiable . . . . . "-" 5-9. . . . . . . . . . . . . . . .2 + 10-13. . . . . . . . . . . . . . .3 + 14-17. . . . . . . . . . . . . . .4 + 18-22. . . . . . . . . . . . . . .5 + 23-26. . . . . . . . . . . . . . .6 + 27-30. . . . . . . . . . . . . . .7 + 31-35. . . . . . . . . . . . . . .8 + 36+. . . . . . . . . . . . . . . .9 + +Named Month 63-64 January. . . . . . . . . . .01 If both a named month and the + February . . . . . . . . . .02 numeric month (1-9) that prenatal + March. . . . . . . . . . . .03 care began is reported, code the + April. . . . . . . . . . . .04 numeric month in the field for Month + May. . . . . . . . . . . . .05 of Pregnancy Prenatal Care Began + June . . . . . . . . . . . .06 and blank the Named Month field. + July . . . . . . . . . . . .07 + August . . . . . . . . . . .08 If Month of Pregnancy Prenatal Care + September. . . . . . . . . .09 Began is not reported but a named + October. . . . . . . . . . .10 month is reported, code the named + November . . . . . . . . . .11 month and blank the Month of + December . . . . . . . . . .12 Pregnancy Prenatal Care Began + field. + + If the numeric Month of Pregnancy + Prenatal Care Began is reported, the + field for "named month" is to be left + blank. If entry is reported in + trimesters, code "-" in data position + for Month of Pregnancy Prenatal + Care Began. + + + + +Item Output Code Structure Coding Instructions + Position(s) + +PRENATAL 65-66 00-48. . . . . . . . . . 00-48 If entry is reported as a span; e.g., +VISITS 49 and greater . . . . . . .49 10-13, enter the lower number of +(TOTAL Not classifiable . . . . . .99 visit. +NUMBER) + If entry is "-," code 00. + + If entry is "None," code 00. + +WEIGHT OF +FETUS + + Units 67 Grams. . . . . . . . . . . . 1 If weight is reported in grams and + Pounds and pounds and ounces, code grams. + ounces . . . . . . . . . . .2 + Not Classifiable . . . . . . 9 Fractions or decimal parts of grams + of (.50) or more are to be rounded + Grams 68-71 Enter as stated. to the next whole gram. + Not Classifiable . . . . 9999 + Fractions of pounds are to be + Or converted to ounces; e.g., 7 + pounds is 7 pounds 8 ounces. + Pounds 68-69 Enter as stated. + Less than one + pound. . . . . . . . . . . .00 Round fractional ounces to nearest + Not Classifiable . . . . . .99 ounce. Entries of or more are to + have weight of a full ounce. If + Ounces 70-71 Enter as stated. fraction is not legible, it is to have + No ounces. . . . . . . . . .00 weight of a full ounce. + Not Classifiable . . . . . .99 + If the entire birth-weight item is + Convert kilos to grams blank or not classifiable code 99999. + (1 kilo = 1000 grams.) + If no entry or an entry of dash is + reported for pounds or ounces, + code 00 for the portion of the birth + weight that is blank or has entry of + dash. + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +CLINICAL 72-73 Enter as stated. Entries of fractional weeks are to be +ESTIMATE ignored. +OF Not classifiable . . . . . .99 +GESTATION If entry is reported in trimesters, +(WEEKS) code 99. + + If entry is reported as a date, + code 99. + + If entry is reported as a span, e.g., + 27-34, enter the lower number of + weeks. + + If the entry is reported in months, + convert to the appropriate weeks + using the table below: + + Month(s) Weeks + + 1/2 . . . .02 + 1 . . . . .04 + 2 . . . . .09 + 3 . . . . .13 + 4 . . . . .17 + 5 . . . . . . . . . . . . . . . . . . . . 22 + 6 . . . . .26 + 7 . . . . .30 + 8 . . . . .35 + 9 . . . . .40 + 10. . . . .44 + + Other Entries: + + Completed. . .40 + Due. . . . . .40 + Full Term. . .40 + Normal . . . .40 + Premature. . .99 + + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +PLURALITY 74 Single . . . . . . . . . . . 1 Code 2 for entry of Siamese twins. + + Twin . . . . . . . . . . . . 2 + + Triplet. . . . . . . . . . . 3 + + Quadruplet . . . . . . . . . 4 + + Quintuplet and + higher . . . . . . . . . . . 5 + + Not Classifiable . . . . . . 9 + + + + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +MEDICAL RISK 75-92 +FACTORS FOR THIS +PREGNANCY + +None/Not Classifiable 75 One or more If the item is "blank," code 9 + factors reported . . . . . . 0 ("not classifiable") in position + None.. . . . . . . . . . . . 1 75. Insert 0's in positions + Not Classifiable . . . . . . 9 76-92. + +Anemia (Hct.<30/Hgb 76 Not Reported . . . . . . . . 0 If the item is reported as +<10) Reported . . . . . . . . . . 1 "none," code 1 in position 75. +Cardiac Disease 77 Insert 0's in positions 76-92. +Acute or chronic 78 + lung disease Otherwise, code all reported +Diabetes 79 risk factors with a 1 in the +Genital herpes 80 corresponding position. Insert +Hydramnios/ 81 0's in position 75 and all other + Oligohydramnios unused positions. +Hemoglobinopathy 82 +Hypertension, 83 Note: If the only reported + chronic entry is "other," code 1 in +Hypertension, 84 position 92. Insert 0's in + pregnancy assoc. positions 75-91. +Eclampsia 85 +Incompetent cervix 86 +Previous infant 87 + 4000+ grams +Previous preterm 88 + or small for + gestational age + infant +Renal disease 89 +Rh sensitization 90 +Uterine bleeding 91 +Other 92 + +Filler 93-108 Blank + + + + + + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +OTHER RISK +FACTORS FOR THIS +PREGNANCY + +Tobacco Use 109 Yes. . . . . . . . . . . . .1 If "No" is reported for + No . . . . . . . . . . . . .2 Tobacco Use, code 00 for + Not Classifiable . . . . . .9 Average Number of + Cigarettes + Per Day. + +Average Number 110-111 Enter as If reported as number of +Of Cigarettes stated . . . . . . . . .00-97 packs, multiply by 20 and +Per Day 98 and greater . . . . . . 98 code as computed. + "Less than 1". . . . . . . 01 + Not Classifiable . . . . . 99 If entry is reported as a span; + e.g. 10-15, enter the lower + number of cigarettes. + +Alcohol Use 112 Yes. . . . . . . . . . . . .1 If "No" is reported for + No . . . . . . . . . . . . .2 Alcohol Use, code 00 for + Not Classifiable . . . . . .9 Average Number of Drinks + Per Week. + +Average Number Of 113-114 Enter as If entry is reported as a +Drinks Per Week stated . . . . . . . . .00-97 span; e.g. 10-15, enter the + 98 and greater . . . . . . 98 lower number of drinks. + "Less than 1". . . . . . . 01 + Not Classifiable . . . . . 99 + +Weight Gained During 115-116 Enter as If weight loss reported +Pregnancy stated . . . . . . . . .00-97 code "00." + 98 and greater . . . . . . 98 + Not Classifiable . . . . . 99 Fractions of 1/2 or more are + to be rounded to next + whole pound. + + + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +OBSTETRIC 117-124 +PROCEDURES + +None/Not Classifiable 117 One or more If the item is "blank," + factors reported . . . . . . 0 code 9 ("not classifiable") + None . . . . . . . . . . . . 1 in position 117. Insert 0's in + Not Classifiable . . . . . . 9 positions 118-124. + +Amniocentesis 118 Not Reported . . . . . . . . 0 If the item is reported as + Reported . . . . . . . . . . 1 "none," code 1 in position +Electronic fetal 119 117. Insert 0's in positions +monitoring 118-124. + +Induction of labor 120 Otherwise, code all + reported risk factors with a +Stimulation of labor 121 1 in the corresponding + position. Insert 0's in +Tocolysis 122 position 117 and all other + unused positions. +Ultrasound 123 + Note: If the only reported +Other 124 entry is "other," code 1 in + position 124. Insert 0's in + positions 117-123. + +Filler 125-130 Blank + + + + + + + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +COMPLICATIONS OF 131-147 +LABOR AND/OR +DELIVERY + +None/Not Classifiable 131 One or more If the item is "blank," + factors reported . . . . . . 0 code 9 ("not classifiable") + None . . . . . . . . . . . . 1 in position 131. Insert 0's + Not Classifiable . . . . . . 9 in positions 132-147. + +Febrile(>100oF or 38oC 132 Not Reported . . . . . . . . 0 If the item is reported + Reported . . . . . . . . . . 1 as "none," code 1 in +Meconium, moderate/ 133 position 131. Insert 0's +heavy in positions 132-147. + +Premature rupture 134 Otherwise, code all +of membrane (> 12 hrs.) reported risk factors + with a 1 in the +Abruptio placenta 135 corresponding position. +Placenta previa 136 +Other excessive bleeding 137 Insert 0's in position 131 +Seizures during labor 138 and all other unused +positions. +Precipitous 139 +labor (< 3 hrs.) Note: If the only reported + entry is "other," code 1 in +Prolonged labor 140 position 147. Insert 0's in +(> 20 hrs.) positions 131-146. + +Dysfunctional labor 141 +Breech/ + +Malpresentation 142 +Cephalopelvic 143 +disproportion + +Cord prolapse 144 +Anesthetic complications 145 +Fetal distress 146 +Other 147 + +Filler 148-162 Blank + + + + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +METHOD OF 163-170 +DELIVERY + +Not Classifiable 163 One or more If the item is "blank," + factors reported . . . . . . 0 code 9 ("not classifiable") + Not Classifiable . . . . . . 9 in position 163. Insert 0's in + positions 164-170. +Vaginal 164 Not Reported . . . . . . . . 0 + Reported . . . . . . . . . . 1 Otherwise, code all + reported methods with a 1 +Vaginal birth 165 in the corresponding +after previous position. Insert 0's in +C-section position 163 and all other + unused positions. +Primary 166 +C-section + +Repeat C-section 167 + +Forceps 168 + +Vacuum 169 + +Hysterotomy/ 170 +Hysterectomy + +Filler 171-176 Blank + + + + + + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +CONGENITAL 177-199 +ANOMALIES + +None/Not Classifiable 177 One or more If the item is "blank," + factors reported . . . . . . 0 code 9 ("not classifiable") + None . . . . . . . . . . . . 1 in position 177. Insert 0's + Not Classifiable . . . . . . 9 in positions 178-199. + +Anencephalus 178 Not Reported . . . . . . . . 0 If the item is reported +Spina bifida/ Meningocele 179 Reported . . . . . . . . . . 1 as "none," code 1 in +Hydrocephalus 180 position 177. Insert 0's +Microcephalus 181 in positions 178-199. +Other central nervous 182 +system anomalies Otherwise, code all +Heart malformations 183 reported risk factors +Other circulatory/ 184 with a 1 in the +respiratory anomalies corresponding position. +Rectal atresia/stenosis 185 Insert 0's in position 177 +Tracheo-esophageal 186 and all other unused +fistula/Esophageal atresia positions. +Omphalocele/Gastroschisis 187 +Other gastrointestinal 188 Note: If the only reported +anomalies entry is "other," code 1 in +Malformed genitalia 189 position 199. Insert 0's in +Renal agenesis 190 positions 177-198. +Other urogenital anomalies 191 +Cleft lip/palate 192 +Polydactyly/Syndactyly/ 193 +Adactyly +Club foot 194 +Diaphragmatic hernia 195 +Other musculo-skeletal/ 196 +integumental anomalies +Down's syndrome 197 +Other chromosomal 198 +anomalies + +Other 199 + +Filler 220 Blank + + + + + + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +UNDERLYING 221-224 Tenth Revision Refer to special instructions sent +CAUSE OF DEATH International out to the states. + Classification of + Diseases Enter the underlying cause of + death code. For all three digit + codes, leave the fourth digit + blank. + + Refer to Appendix H for + underlying cause of death terms + that indicate event to be an + induced termination of + pregnancy. Such events should + be voided from the fetal death + file. + +ATTENDANT 225 M.D. (Doctor of Code attendant based on the + Medicine). . . . . . . . . 1 check box entry. If no checkbox + is indicated but the title of the + D.O. (Doctor of attendant is identified by the + Osteopathy). . . . . . . . 2 name, code accordingly. + + C.N.M. (Certified If the name of the attendant is + Nurse Midwife) . . . . . . 3 reported without a title and the + name is different from that of the + Other midwife. . . . . . . 4 person completing the report, + Other. . . . . . . . . . . 5 code 9. + Not Classifiable . . . . . 9 + If the attendant item is blank, + refer to the signature or title of + the person completing the report + and code attendant based on + information reported for the + person completing the report. + + + + + + + + + + +Item Output Code Structure Coding Instructions + Position(s) + +AGE + + Mother 226-227 Enter as stated. Disregard symbols such as "+," + "-," "?". + Father 228-229 Not Classifiable . . . . . .99 Enter age only if date of birth is + not reported or date is + incomplete. + + When date of birth of mother is + reported, data positions 226-227 + will be coded 99. + + When date of birth of father is + reported, data positions 228-229 + will be coded 99. + + + + + + + + + + +Appendix A +Geopraphic Codes for State of Delivery and Residence + + +Code State Abbrev. Code State Abbrev. + + 01 Alabama AL 28 Nebraska NE + 02 Alaska AK 29 Nevada NV + 03 Arizona AZ 30 New Hampshire NH + 04 Arkansas AR 31 New Jersey NJ + 05 California CA 32 New Mexico NM + 06 Colorado CO 33 New York NY + 07 Connecticut CT 34 North Carolina NC + 08 Delaware DE 35 North Dakota ND + 09 District of Columbia DC 36 Ohio OH + 10 Florida FL 37 Oklahoma OK + 11 Georgia GA 38 Oregon OR + 12 Hawaii HI 39 Pennsylvania PA + 13 Idaho ID 40 Rhode Island RI + 14 Illinois IL 41 South Carolina SC + 15 Indiana IN 42 South Dakota SD + 16 Iowa IA 43 Tennessee TN + 17 Kansas KS 44 Texas TX + 18 Kentucky KY 45 Utah UT + 19 Louisiana LA 46 Vermont VT + 20 Maine ME 47 Virginia VA + 21 Maryland MD 48 Washington WA + 22 Massachusetts MA 49 West Virginia WV + 23 Michigan MI 50 Wisconsin WI + 24 Minnesota MN 51 Wyoming WY + 25 Mississippi MS 52 Puerto Rico PR + 26 Missouri MO 53 Virgin Islands VI + 27 Montana MT 54 Guam GU + + + 55 Canada + 55 Canadian Provinces + Alberta (Alta.) + British Columbia (B.C.) + Great Northwest Territories (GNWT or NWT) + Manitoba (Man.) + New Brunswick (N.B.) + Newfoundland (Nfld.) + Nova Scotia (N.S.) + Ontario (Ont.) + Prince Edward Island (PEI) + Quebec, Province of Quebec (Que. or P.Q.) + Saskatchewan (Sask.) + Yukon Territory (Y.T.) + 56 Cuba + 57 Mexico + 59 Remainder of World + + Note: Remember to distinguish between the Country of Georgia (in former Soviet Union) + which is coded to Remainder of World (59) and the State of Georgia which is coded to 11. + + + +Appendix B +Interpretations of Atlas Notations + + 1. If the notation "part of _____" or "population included in _____" appears, + consider the entry to be an inclusion of the city named and code accordingly. + + 2. If the notation "rural" and "mail to _____" or "no pop." appears, code to the + balance of the county. + + 3. If only the notation "mail to _____" or "population included with _____" + appears, code to the balance of the named county. ("Population included with" + refers to an unincorporated place.) + + 4. If the notation "Station," "Branch of _____" or "Rural Station" appears, code to + the balance of county. + + 5. If the notation "Station of _____ P. O." appears, consider the entry to be an + inclusion of the city named and code accordingly. + + +Appendix C +Largest City and code by State of Residence + +State of Residence NCHS Code Largest City +01 Alabama 008 Birmingham +02 Alaska 001 Anchorage +03 Arizona 017 Phoenix +04 Arkansas 014 Little Rock +05 California 143 Los Angeles +06 Colorado 009 Denver +07 Connecticut 004 Bridgeport +08 Delaware 003 Wilmington +09 District of Columbia 001 Washington +10 Florida 041 Jacksonville +11 Georgia 005 Atlanta +12 Hawaii 003 Honolulu +13 Idaho 001 Boise City +14 Illinois 034 Chicago +15 Indiana 027 Indianapolis +16 Iowa 012 Des Moines +17 Kansas 033 Wichita +18 Kentucky 017 Louisville +19 Louisiana 022 New Orleans +20 Maine 006 Portland +21 Maryland 003 Baltimore +22 Massachusetts 012 Boston +23 Michigan 025 Detroit +24 Minnesota 041 Minneapolis +25 Mississippi 017 Jackson +26 Missouri 028 Kansas City +27 Montana 002 Billings + +State of Residence NCHS Code Largest City +28 Nebraska 011 Omaha +29 Nevada 005 Las Vegas +30 New Hampshire 008 Manchester +31 New Jersey 104 Newark +32 New Mexico 002 Albuquerque +33 New York 053 New York +34 North Carolina 009 Charlotte +35 North Dakota 003 Fargo +36 Ohio 034 Columbus +37 Oklahoma 025 Oklahoma City +38 Oregon 027 Portland +39 Pennsylvania 092 Philadelphia +40 Rhode Island 014 Providence +41 South Carolina 007 Columbia +42 South Dakota 007 Sioux Falls +43 Tennessee 030 Memphis +44 Texas 075 Houston +45 Utah 020 Salt Lake City +46 Vermont 001 Burlington +47 Virginia 022 Norfolk +48 Washington 034 Seattle +49 West Virginia 003 Charleston +50 Wisconsin 035 Milwaukee +51 Wyoming 002 Cheyenne +52 Puerto Rico 765 San Juan +53 Virgin Islands 001 Charlotte Amalie + + +Appendix D +Other Entries Reported on Records and Code for Race + +The expanded Asian and Pacific Islander categories of A, B, C, D, and E are required only for the following +funded registration areas: California, Hawaii, Illinois, New Jersey, New York State, New York City, Texas +and Washington. The remaining registration areas may choose to use the expanded categories or continue +coding Asian Indian, Korean, Samoan, Vietnamese and Guamian to 8. + +ENTRY CODE +Afghanistan . . 1 +African . . 2 +Aleut . . 3 +Algerian. . .1 +Alocona . . 0 +Ameriasian. . .8 +American. . .1 +Amish . . .1 +Anglo-Saxon . . 1 +Arabian . . 1 +Argentinian . . 1 +Armenian. . .1 +Aryan . . 1 +Asian Indian. . .8 or A +Asiatic . . 8 +Assyrian. . .1 +Athapaskan . . 3 +Australian. . .1 +Austrian. . .1 +Azores. . .1 + +Bahamian. . .0 +Bangladeshi . . 8 +Basque . . 1 +Bavarian. . .1 +Begri . . 0 +Belizian. . .0 +Bilalian. . .2 +Biracial. . .0 or F +Blanc . . 1 +Bohemian. . .0 +Bolivian. . .1 +Brava (Bravo) . . 1 +Brazilian . . 1 +British Honduran. . .0 +Burmese . . 8 + +C . . 0 +Cajun . . .1 +Cambodian . . 8 +Canadian. . .1 +Cape Verde. . .2 +Carib . . 0 +Caucasian . . 1 +Ceylonese . . 8 +Chamorro. . .8 or E +Chamosso. . .0 +Chicano . . 1 + + +ENTRY CODE +Chinese . . 4 +Chuukese. . .8 +Colestran . . 0 +Colombian . . 1 +Cosmopolitan. . .0 +Costa Rican . . 1 +Creole. . .1 +Crucian . . 1 +Cuban . . 1 +Czechoslovakian . . 1 + +Dominican . . .2 +Dutch East Indian . . 8 + +East Indian . . 8 or A +East Indies . . .8 +Ebian . . 1 +Ecuadorian. . .1 +Egyptian. . .1 +English . . .1 +English-French. . .1 +English-Irish . . 1 +Eritrean. . .2 +Eskimoan. . .3 +Ethiopia(n) . . .2 +Eurasian. . .8 +European. . .1 + +Fijian. . .8 +Filipino. . .7 +Finnish . . 1 +French. . .1 +French Canadian . . 1 +French Indian . . .3 + + +Georgian. . .1 +German. . .1 +Ghanaian. . .2 +Gilbertese. . .8 +Greek . . 1 +Guam(ian)(ese) . . 8 or E +Guatemalan. . .0 +Guyanese. . .0 +Gypsy . . 1 + + +Haitian . . 2 +Hamitic . . 2 +Hawaiian. . .6 +Hebrew. . .1 +Hindu . . 8 or A +Hispanic. . .1 +Honduran. . .0 +Hungarian . . 1 + + +ENTRY CODE +Icelandic . . 1 +India . . 8 or A +Indian (North, Central and South + American). . .3 +Indo-Aryan. . .8 or A +Indonesian. . .8 +Iran(ian) . . 1 +Iraqi . . 1 +Irish . . 1 +Islamic . . 1 +Israelite . . 1 +Italian . . 1 + +Jackson (Jack) White. . .0 +Jamaican. . .2 +Japanese. . .5 +Java. . .8 +Jew . . 1 +Jordanian . . 1 + + +Kenyan. . .2 +Korean. . .8 or B +Kuwaitian . . 1 + + +Ladina (Ladino) . . 1 +Laotian (Asian) . . .8 +Latin American. . .1 + + +Latvian . . 1 +Lebanese. . .1 +Liberian. . .2 +Libyan. . .1 +Lithuanian. . .1 + +Mal. . . 0 +Malada. . .0 +Malawian. . .2 +Malayan . . 8 +Maltese . . 1 +Maori . . 8 +Marshallese . . 8 +Marshenese. . .1 +Mauritian . . 1 +Mediterranean . . 1 +Melanesian. . .8 +Mestizo . . 0 +Mestizo-Inca. . .0 +Mexican . . 1 +Mexican Indian. . .3 +Micronesian . . 8 +Mixed . . 0 or F +Mohammedan (Moslem) . . 1 +Moor. . .0 +Moroccan. . .1 +Mosotho . . .0 +Mugandan. . .2 +Mulatto . . 2 + + +ENTRY CODE +Multi-racial. . .0 or F +Muslim. . .1 + + +N/W . . 0 +Nassau . . 2 +Native American . . 3 +Nepalese. . .8 +Nicaraguan. . .0 +Nigerian. . .2 +Nipponese (Nipon) . . 5 +Nordic. . .1 +Norwegian . . 1 +Nubian. . .2 + + +Occidental. . .1 +Octaroon. . .2 +Okinawan. . .5 + + +Pakistani . . 8 +Palauan . . .8 +Panamanian. . .0 +Parsi . . 1 +Persian . . 1 +Peruvian. . .1 +Phoenician. . .0 +Polish. . .1 +Polynesian . . 8 +Ponapean. . .8 +Portuguese. . .1 +Puerto Rican. . .1 +Punjabi . . 8 or A + +Quadroon. . .2 + +Red . . 3 +Romanian. . .1 +Rotanese. . .8 +Russian . . 1 +Ryukyan . . 5 + + +Saipanese . . 8 +Salvadorian . . 0 +Samoa(n) . . 8 or C +Santo-Domingo . . .2 +Saudi Arabia(n) . . 1 +Saxon(y). . .1 +Scandinavian . . 1 +Scotch. . .1 +Selawik . . 3 +Semitic . . 1 +Serbian . . 1 +Servian . . 1 +Seychelloise . . 2 + + +ENTRY CODE +Siamese . . 8 +Siamsh Am . . 0 +Sicilian. . .1 +Sikh. . .8 or A +Singhalese. . .8 +Sino Burman . . 4 +Slovakian . . 1 +Soanish . . 0 +South American. . .1 +Spanish . . 1 +Sudanese. . .2 +Sunni . . 1 +Swedish . . 1 +Syrian. . .1 + + +Tahitian. . .8 +Taimskin. . .3 +Taiwanese . . 4 +Tamil-Ceylonese . . 8 +Tamil-Malayan . . 8 +Tanzanian . . 2 +Teutonic. . .1 +Thai. . .8 +Tibetan . . 8 +Tongan. . .8 +Trigueno. . .0 +Trinidadian . . 2 +Trukese . . 8 +Tunisian. . .1 +Turk. . .1 + +Ubontilian. . .8 +Ugandan . . 2 +Ukranian. . .1 +Ulithian. . .0 +Ute . . 3 + + +Venezuela(n). . .1 +Vietnam(ese). . .8 or D + + +W . . 1 +Welsh . . 1 +West Indies (Indian) . . 2 +Wiam (White American) . . 1 + + +Yapanes . . 8 +Yemenite. . .1 +Yugoslavian . . 1 + + +Zoroastrian . . .1 + + + +Appendix E +Indian Tribes in the United States, Canada, and Mexico + +Abnaki +Absentee-Shawnee +Acoma +Ak Chin +Alabama-Coushatt + Tribes of Texa +Alsea +Apache +Arapaho +Arikara +Assiniboin +Atacapa +Athapaskan +Atsina +Aztec +Bear River +Beaver +Bella Coola +Beothuk +Blackfoot +Boold Piegan +Blue Lake +Brotherton +Caddo +Cakchiquel-lenca +Calapooya +Carrier +Catawba +Cattaraugus +Cayuga +Cayuse +Chasta Costa +Chehalis +Chemehuevi +Cherokee +Chetco +Cheyenne +Cheyenne River Sioux +Chickahominy +Chickasaw +Chinook +Chipewyan +Chippewa +Chippewa-Ojibwa +Chiricahua Apache +Chitimacha Choctaw +Chol + Chontal +Chorti +Chuckchansi +Chumash +Clallam + Clatsop +Clackamus +Clear Lake +Coast Salish +Cochimi +Cochiti +Cocopa + Coeur D'Alene Tribe + of Idaho +Cocopah + Columbia +Colville +Comox +Comanche +Concow +Conquille +Coushatta +Covelo +Cow Creek +Cowichan +Cowlitz +Coyotero Apache +Cree +Creek +Crow +Crow Creek Sioux +Dakota +Delaware +Diegueno +Digger +Dog Rib +Duckwater +Euchi +Eyak +Flathead +Fort Hall Res. Tribe + of Idaho +French Indian +Gabrieleno +Galice Creek +Gay Head +Gosiute +Gros Ventre +Haida +Han +Hare +Hat Creek +Hawasupai +Hidatsa +Hoh +Hoopa +Hopi +Houma +Hualapai +Huastec +Humboldt Bay +Hupa +Huron +Illinois +Ingalik +Iowa +Iroquois +Isleta +Jemez +Joshua +Juaneno +Jicarilla Apache +Kaibah +Kalispel +Kanosh Band of Paiutes +Kansa +Karankawa +Karok +Kaska +Kaw +Kawai + Keresan Pueblos +Kern River +Kichai +Kickapoo +Kiowa +Kiowa Apache +Kitamat +Klamath +Klikitat +Koasati +Kootenai Tribe of Idaho +Kusa +Kutchin +Kutenai +Kwakiutl +Lac Courte Dreille +Laguna +Lakmuit +Lipan Apache +Lower Brule Sioux +Luiseno +Lummi +Maidu +Makah +Malecite +Mandan +Maricopa +Mary's River +Mashpee +Mattaponi +Maya +Mayo +Mdewakanton Sioux +Menominee +Menomini +Mequendodon +Mescalero Apache +Miami +Micmac +Mission Indians +Missouri +Miwok +Mixe +Mixtec +Modoc +Mohave +Mohawk +Mohegan +Molala +Monachi +Mono +Montagnais +Montauk +Muckleshoot +Munsee +Nambe +Namsemond +Nanticoke +Narragansett +Naskapi +Natchez +Navaho +Navajo +Nez Perce +Niantic +Nipmuck +Nisenan-Patwin +Nisqually +Nomelaki +Nooksak +Nootka +Northern Paiute +Oglala Sioux +Okanogan +Omaha +Oneida +Onondaga +Opata +Opato +Osage +Oto +Otoe +Otomi +Ottawa +Ozette +Paiute +Pamunkey +Panamint +Papago +Passamaquoddy +Patwin +Pawnee +Pen d'Oreille +Penobscot +Peoria +Pequot +Picuris +Pima +Pit River +Pojoaque +Pomo +Ponca +Poosepatuck +Potawatomi +Potomac +Powhatan +Pueblos +Puyallup +Quapaw +Quechan +Quileute +Quinaielt +Quinault +Rappahannock +Rogue River +Rosebud Sioux +Sac and Fox +Saginaw +Salish +Sandia +San Felipe +San Ildefonso +San Juan +San Lorenzo +San Luis Obispo +San Luiseno +Sanpoil +Sanpoil Nespelem +Sant'ana +Santa Barbara +Santa Clara +Santa Ynez +Santee +Santee Sioux +Santiam +Sauk and Fox +Scaticook +Sekane +Seminole +Seneca +Seri +Shasta +Shawnee +Shinnecock +Shivwits Band of +Paiutes +Shoshone +Shoshone-Bannock +Shuswap +Siouans +Sioux +Sisseton +Sisseton-Wahpeton Sioux +Siuslaw +Skagit Suiattle +Skokomish +Slave +Smith River +Snake +Snohomish +Snoqualmi +Songish Southern Paiute +Squaxin +Stockbridge +Sumo-Mosquito +Suquamish +Swinomish +Taimskin +Tanana +Tanoan Pueblos +Taos +Tarahumare +Tarascan +Tawakoni +Tejon +Tenino or Warm Springs +Tesuque +Teton +Teton Sioux +Tillamook +Timucua +Thlinget +Tolowa +Tonawanda +Tonkawa +Tonto Apache +Topinish +Totonac +Tsimshian +Tulalip +Tule River Indians +Tunica +Tuscarora +Tututni +Umatilla +Umpqua +Upper Chinook +Ute +Waca +Waicuri-Pericue +Wailaki +Walapai +Walla Walla +Wampanoag +Wapato +Warm Springs +Wasco +Washo +Washoe +Western Apache +Western Shoshone +Whilkut +Wichita +Wikchamni +Wind River Shoshone +Winnebago +Wintu +Wintun +Wishram +Wyandotte +Xicaque +Yahooskin +Yakima +Yamel +Yana +Yankton +Yanktonnais Sioux +Yaqui +Yaquina +Yavapai +Yawilmani +Yellow Knife +Yerington Paiute +Yokuts +Yokuts-Mono +Yomba Shoshone +Yuchi +Yuki +Yuma +Yurok +Zacatec +Zapotec +Zia +Zoque +Zuni + + +Appendix F +Other Entries Reported on Records and Codes for Education of Mother and Father + + + College Entries Code +4 + 2 . . . . . . . . . . . . . . . . . . . . . . . . . . .17 +Post graduate . . . . . . . . . . . . . . . . . . . . . . .17 +16 mos. . . . . . . . . . . . . . . . . . . . . . . . . . .13 + (convert months by dividing by 9) (1 yr. 7 mos.) +3/4 . . . . . . . . . . . . . . . . . . . . . . . . . . . .13 +2.5 . . . . . . . . . . . . . . . . . . . . . . . . . . . .14 +1+1 N.T . . . . . . . . . . . . . . . . . . . . . . . . . .13 +1500 hrs. . . . . . . . . . . . . . . . . . . . . . . . . .99 +10. . . . . . . . . . . . . . . . . . . . . . . . . . . . .17 +P. G. - 4 . . . . . . . . . . . . . . . . . . . . . . . . .99 +In 2nd year . . . . . . . . . . . . . . . . . . . . . . . .13 +B . . . . . . . . . . . . . . . . . . . . . . . . . . . . .16 +BA with 1 yr. law . . . . . . . . . . . . . . . . . . . . .17 +Senior. . . . . . . . . . . . . . . . . . . . . . . . . . .15 +Soph. . . . . . . . . . . . . . . . . . . . . . . . . . . .13 +College . . . . . . . . . . . . . . . . . . . . . . . . . .16 +University. . . . . . . . . . . . . . . . . . . . . . . . .16 +1 year Prep. . . . . . . . . . . . . . . . . . . . . . . .99 +Yes . . . . . . . . . . . . . . . . . . . . . . . . . . . .16 +4 semesters . . . . . . . . . . . . . . . . . . . . . . . .14 +Assoc. degree . . . . . . . . . . . . . . . . . . . . . . .14 +Graduate. . . . . . . . . . . . . . . . . . . . . . . . . .16 +6 months . . . . . . . . . . . . . . . . . . . . . . . . .12 +2/3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12 +Less than 3/4 or less than 9 mos. . . . . . . . . . . . . .12 +Technical or Trade School . . . . . . . . . . . . . . . . . 99 +Junior College. . . . . . . . . . . . . . . . . . . . . . .14 +Juris Doctor . . . . . . . . . . . . . . . . . . . . . . .17 +Masters . . . . . . . . . . . . . . . . . . . . . . . . . .17 + +Elementary or Secondary Entries Code + +Kindergarten. . . . . . . . . . . . . . . . . . . . . . . .00 +Finished in service . . . . . . . . . . . . . . . . . . . .12 +G.E.D - Army. . . . . . . . . . . . . . . . . . . . . . . .12 +3 - graduate. . . . . . . . . . . . . . . . . . . . . . . .11 +Senior. . . . . . . . . . . . . . . . . . . . . . . . . . .11 +Soph. . . . . . . . . . . . . . . . . . . . . . . . . . . .09 +High School . . . . . . . . . . . . . . . . . . . . . . . .12 +Yes . . . . . . . . . . . . . . . . . . . . . . . . . . . .12 +GED . . . . . . . . . . . . . . . . . . . . . . . . . . . .12 +Graduate . . . . . . . . . . . . . . . . . . . . . . . . .12 +Elementary. . . . . . . . . . . . . . . . . . . . . . . . .06 +Secondary . . . . . . . . . . . . . . . . . . . . . . . . .12 + + +Appendix G +Other Entries Reported on Records and Code for Hispanic Origin + +ENTRY CODE + +Argentina (Argentino). . . . . . . .4 + +Balearic Islands . . . . . . . . . .5 +Basque . . . . . . . . . . . . . . .5 +Belizian . . . . . . . . . . . . . .4 +Bolivian (Boliviano) . . . . . . . .4 +Boricua (Borinqueno) . . . . . . . .2 +Brazilian. . . . . . . . . . . . . .0 + +Californio . . . . . . . . . . . . .5 +Canary Islands . . . . . . . . . . .5 +Castilian. . . . . . . . . . . . . .5 +Catalonia. . . . . . . . . . . . . .5 +Centroamericano. . . . . . . . . . .4 +Chicano. . . . . . . . . . . . . . .1 +Chile (Chileno). . . . . . . . . . .4 +Colombia (Colombiano). . . . . . . .4 +Costa Rica (Costarricense) . . . . .4 +Cuban (Cubano) . . . . . . . . . . .3 + +Dominican Republic (Dominicano). . . . . . .4 + +Ecuador (Ecuatoriano). . . . . . . .4 +El Salvador. . . . . . . . . . . . .4 +Espana . . . . . . . . . . . . . . .5 +Espanol. . . . . . . . . . . . . . .5 + +Falkland Island. . . . . . . . . . .4 +Fernando Po. . . . . . . . . . . . .5 + +Galapagos Islands. . . . . . . . . .4 +Guatemala (Guatemalteco) . . . . . .4 + + +Hispano . . 5 +Honduras (Hondureno). . .4 + + +Iberia (Ibero). . .5 + +La Raza . . 4 +Latin American. . .5 +Latino. . .5 + +Majorca . . 5 +Mallorca (Mallorquin) . . 5 +Mexican (Mexicano). . .1 +Mexican American. . .1 + +Nicaragua (Nicaraguense). . .4 + +Panama (Panameno) . . 4 +Paraguay (Paraguayo). . .4 +Peru (Peruano). . .4 +Puerto Rican (Puertorriqueno) . . 2 + +Salvadoreno . . 4 +Spain . . 5 +Spaniard. . .5 + +Uruguay (Uruguayo). . .4 + +Valencian . . 5 +Venezuela (Venezolano). . .4 + + +Appendix H +Terms Indicating Induced Abortions + + 1. Consensual Abortion + 2. Convenience + 3. Dilation and curettage (D & C) + 4. Demand Abortion + 5. Dilation and curettage for termination of pregnancy psychiatric + indications (D & C for T. O. P.) + + 6. Dilation and evacuation (D & E) + 7. Dilatation and suction curettage (D & SC) + 8. Early uterine evacuation + 9. Elective Abortion (E. A.) + 10. Endometrial aspiration + 11. Extra-amniotic injection + 12. Hypersalinezation + 13. Hysterotomy + 14. Hysterectomy for termination of pregnancy (Hysterectomy) + 15. Iatrogenic interruptions of pregnancy (Iatrogenic) + 16. Inconvenience + 17. Indicated Abortion Social Economic Reason + 18. Induced Abortion + 19. Induced by instrumentation prior to admission + 20. Induced Preg. termination + 21. Induced Termination of Pregnancy (ITOP) + 22. Intentional termination of pregnancy + 23. Interrupted first trimester + 24. Interrupted pregnancy + 25. Intra-amniotic injection + 26. Intra-amniotic instillation + 27. Intra-uterine prostaglandin instillation + 28. Intra-uterine saline instillation + 29. Laminaria + 30. Legal Abortion + 31. Legally induced abortion + 32. Medically Induced Abortion + 33. Medical Termination of Pregnancy + 34. Menstrual Aspiration + 35. Menstrual Extraction + 36. Menstrual Induction + 37. Menstrual Regulation + 38. Oxytocin induction + 39. Pitocin induction + 40. Prophylactic Abortion + 41. Prostaglandin Injection + 42. Prostaglandin injection + 43. Prostaglandin amniocentesis + 44. Requested Abortion + 45. Saline Induction (Saline) (salting out procedure) (salinezation) + 46. Saline amniocentesis + 47. Saline amnio-infusion + 48. Saline amniotic fluid exchange + 49. Septic Abortion + 50. Septic criminal abortion + 51. Sharp curettage + 52. Sociologic termination + 53. Suction Abortion + 54. Suction Curettage (S. & C.) + 55. Suction D & C + 56. Sulting out procedure + 57. Surgical Abortion (S. A.) + 58. Surgical curettage + 59. Surgical excision of pregnancy + 60. Surgical Interruption of Pregnancy + 61. Termination of Pregnancy + 62. Therapeutic Abortion (T. A., ther ab, Tab) + 63. Therapeutic Interruption (T. I.) + 64. Undesired pregnancy + 65. Vacuum Aspiration + 66. Vacuum extraction + 67. Vacuum induction + 68. Vaginal suppository prostaglandin + 69. Voluntary Abortion (V. A. or V. I. A.) + 70. Voluntary Interruption of Pregnancy + 71. Voluntary termination pregnancy (VTP) + +Vital Statistics Instruction Manuals + +Part 1 Source Records and Control Specifications (1995) + +Part 2a Instructions for Classifying the Underlying Cause of Death (1999) + +Part 2b Instructions for Classifying Multiple Causes of Death (1999) + +Part 2c ICD-10 ACME Decision Tables for Classifying Underlying Causes of Death (1999) + +Part 2d NCHS Procedures for Mortality Medical Data System File Preparation and Maintenance + (1999) + +Part 2e Non-Indexed Terms, Standard Abbreviations, and State Geographic Codes Used in Mortality + Data Classification (1995) + +Part 2f ICD-10 TRANSAX Disease Reference Tables for Classifying Multiple Causes-of-Death + (1999) + +Part 2g Data Entry Instructions for the Mortality Medical Indexing, Classification, and Retrieval + System (MICAR) (1999) + +Part 2h Dictionary of Valid Terms for the Mortality Medical Indexing, Classification, and Retrieval + System (MICAR) (1992) + +Part 2i MICAR Quick Reference Guide (1999) + +Part 3a Classification and Coding Instructions for Live Birth Records (1999) + +Part 3b Classification and Coding Instructions for Fetal Death Records (1999) + +Part 4 Demographic Classification and Coding Instructions for Death Records (1999) + +Part 5 Data Preparation of the Current Mortality Sample (1995) + +Part 6 Classification and Coding Instructions for Marriage Records (1995) + +Part 7 Classification and Coding Instructions for Divorce Records (1995) + +Part 8 Vital Records Geographic Classification (1995) + +Part 9 ICD-10 Underlying Cause of Death Lists for Tabulating Mortality Statistics (1999) + +Part 10 Classification and Coding Instructions for Induced Termination of Pregnancy Records (1993) + +Part 11 Computer Edits for Mortality Data (1999) + +Part 12 Computer Edits for Natality Data (1993) + +Part 18 Guidelines for Implementing Field and Query Programs for Registration of Births and Deaths + (1993) + +Part 19 Industry and Occupation Coding for Death Certificates (1998) + +Part 19B Alphabetical Index of Industries and Occupations (1998) + +Part 20 Cause-of-Death Query Manual (1985) \ No newline at end of file diff --git a/office/regression/000_000105.txt b/office/regression/000_000105.txt new file mode 100644 index 0000000..f9d2841 --- /dev/null +++ b/office/regression/000_000105.txt @@ -0,0 +1,4637 @@ +Reject Docket No. AMS-LS-07-0131 - Naturally Raised labeling + +I do not support the USDA proposal for a "naturally-raised" label standard [Docket No. AMS-LS-07-0131; LS-07-16]. As a consumer, I expect such a product to be from an animal raised in a natural environment, having free access to pasture and grazing and not confined in a CAFO type setting. + +I do support such a standard not allowing antibiotics and growth hormones, but if limited strictly to that (as in the case of this current proposed standard), it would be more appropriate to label the product as not being raised on antibiotics or growth hormones, simply put. By the same token, the current "natural" claim should be replaced with what it really stands for, "no artificial ingredients added during meat processing." + +This proposal is intended to provide clarity to consumers, but it does the exact opposite. If a product is labeled "naturally raised", as a consumer, I expect it to be raised in a natural environment. Please revise this standard with such stipulations, or it will be a worthless label to myself and all other consumers. + +Sincerely, + +4,681 U.S. consumers have signed this petition: +Katherine Lett San Antonio TX 78247 +jeff l van CA 90210 +Jennifer Walford Yonkers NY 10704 +Roaa Peretz Philadelphia PA 19148 +Jennifer Martin Richmond VA 23233 +stacee twogood oakland CA 94602 +Sue Weible Marietta GA 30008 +valentina newball hartford CT 06126 +barbara malina berkeley CA 94705 +Crystal Violette Manassas VA 20110 +dee ann louis mililani HI 96789 +Theresa Smith berkeley CA 97403 +M. Ross San Rafael CA 94901 +Syd Longfellow Brattleboro VT 05301 +Shannon Moore Austin TX 78749 +Deborah Graul Laramie WY 82072 +Marcla Clarke New Smyrna Beach FL 32168 +andreea Chin south windsor CT 06074 +Joan Delman Franklin NY 13775 +John Zohn Vero Beach FL 32968 +Kristin Bolton Cornwall VT 05753 +Matthew Larner Austin TX 78717 +Rebecca Meier Longmont CO 80501 +Liz Hawley Madison WI 53705 +alison eastlake Olympia WA 98506 +leah pierson fayetteville AR 72701 +Randi Saslow Hamden CT 06514 +Shelley Parkin Yonkers NY 10704 +siobhan cafferty chicago IL 60614 +William Griffin Edwardsburg MI 49112 +mary samples Athens GA 30605 +Graham Crisford Finland MN MN 55603 +Julie James hatfield PA 19440 +Leslie Gunder Los Angeles CA 90036 +Kristen Clarke Austin TX 78746 +Seth Foster Port Washington WI 53074 +Geri Justinger Chilton WI 53014 +David and Hannah beall Chipley FL 32428 +RENEE HOWELL TARBORO NC 27886 +Erica Earhart Centreville VA 20121 +John Funiciello Sharon Springs NY 13459 +Innes Krueger Red Hook NY 12871 +Amy Claren Chilton WI 53014 +Angela Goudie Pinehurst NC 28374 +Keith Jenko Lakeland FL 33813 +monica molina santa ana CA 92707 +Linda tremblay-geibel burbank CA 91506 +Shannon Moore Austin TX 78749 +Robert Wise Kalamazoo MI 49007 +Serealia Brunner columbus OH 43209 +Michael Marvel Bothell WA 98021 +Richard Birmingham Kingston NY 12401 +Richard Birmingham Kingston NY 12401 +Leslie Markworth Pickerington OH 43147 +Edward Berbaum Montrose PA 18801 +Rowen Berry Chehalis WA 98532 +Jane Katirgis West Caldwell NJ 07006 +Michael Gelineau Holyoke MA 01040 +Andriette Redmann New York NY 10009 +Patty Diana Glendale AZ 85301 +Mark Stovin Atlanta GA 30319 +Jacqueline Walters Albuquerque NM 87109 +julianna jaffe huntington woods MI 48070 +Bonita Staas Orangeville IL 61060 +Kathleen Butler Asheville NC 28805 +Lawrence Buzzell-Saltzman Santa Barbara CA 93105 +Sandra Stephon Fort Washington MD 20744 +Willis Langford Oceanside CA 92056 +Anne Huibregtse Wingdale NY 12594 +Heidi Rugg Richmond VA 23227 +Alexander Walsh Killingworth CT 06419 +lind porcelli tarrytown NY 10591 +Gretchen Byrne Albuquerque NM 87123 +Eleanor Bertino San Francisco CA 94133 +John Miksa Milwaukee WI 53215 +Patricia Pfiester Spicewood TX 78669 +Kimberly Cruz, M.S. Sunrise FL 33351 +Helen Tai New Hope PA 18938 +Rick Rooney Hayward WI 43843 +David Ylvisaker Takoma Park MD 20912 +Jeanne Stidham Las Vegas NV 89145 +Tuckley Williams Santa Monica CA 90405 +Mark Pipkin Benicia CA 94510 +Ma Cherry Trivedi Naperville IL 60563 +Jason Colosky Galesburg MI 49053 +Fran Papalios columbus OH 43220 +Charles Newman Key West FL 33040 +Wendy Wartes Woodinville WA 98072 +Mary Harder Punta Gorda FL 33950 +Ruth G Koss Indian Trail NC 28079 +Sam Kane washington DC 20001 +Deb Rabbai New York NY 10025 +Glynnis Campbell Panorama City CA 91402 +Robin Schaef Guys Mills PA 16327 +Bonnie Moore Santa Cruz CA 95062 +Erin McTear Nashville TN 37221 +Kirsten Cutts Portland OR 97215 +Jan Pfund Lambertville MI 48144 +Delie Roselyn Cerutis Waterloo NE 68069 +Lacinda Athen madison WI 53711 +Bonnie Stonington Winter Park FL 32792 +Ron McComb PORTLAND OR 97290 +Carey Strombotne Laguna Beach CA 92651 +gayle jacobs miami FL 33156 +jon schell los angeles CA 90027 +Donna White Silver Creek NY 14136 +Andrew Barker Burlington VT 05401 +judy sillen Red Bank, NJ 07701 +Stephen Oliver Denver CO 80210 +Sandra Stooksbury Marengo OH 43334 +Anna Mehrer Portland OR 97232 +Sarah Baker Studio City CA 91602 +Margie Greene Fredericktown MO 63645 +Maria Baker Portland OR 9713 +michele benjamin devon PA 19333 +Rick Gordon Nashville TN 37204 +Martha Tenney Mahomet IL 61853 +Jane Rundell MAZOMANIE WI 53560 +meg gilman portsmouth NH 03801 +Kristin Mejia Atlanta GA 30308 +Cody Yelton Boulder CO 80301 +Jennifer Armstrong West Milton OH 45383 +Lauren Clarke-Mason Roxbury MA 02119 +Barbara Cowan Cambridge MA 02138 +Lynne Coulson San Francisco CA 94110 +Sue Cosgrove collingswood NJ 08107 +Maria Weston Long Beach CA 90807 +Allen Rindfuss San Antonio TX 78209 +carol freeman Glenview IL 60025 +Carol Parsons Palmyra VA 22963 +Steve Hamilton Mercer Island WA 98040 +Kathy Honeck Ada MI 49355 +Mary Johnson Roswell GA 30075-1780 +C Jane McKendry Davis CA 95616 +ze daluz new orleans LA 70117 +Kristina Rodby hopkins MN 55343 +Michael Meagher Seattle WA 98133 +Abraham entin granda hills CA 91344 +Jennifer Pennell Ann Arbor MI 48108 +Mike Nestor Perrysburg OH 43551 +Suzanne Stapler Ridgewood NJ 07450 +Gwendoline Fortune Gainesville FL 32653 +Eliabeth Lamb Landrum SC 29356 +Tamara Cartwright Bellevue WA 98008 +Bob Reeder Fairfield IA 52556 +gail kerr Asheville NC 28804 +Carl Gauger Lincoln NE 68502 +Francine Golembeski Scranton PA 18504 +Richard Pollens Bearsville NY 12409 +Jeff French Brooklyn NY 11238 +Julie Gengo Encinitas CA 92024 +Joan Primrose Hastings NE 68901 +Carol Parsons Palmyra VA 22963 +Joyce Lee San Francisco CA 94114 +Stanley Willard Port Townsend WA 98368 +marnie mills bisbee AZ 85603 +Nancy Hatfield North Chelmsford MA 01863 +Deborah Landowne San Rafael CA 94903 +Anthony Vincent Seattle WA 98144 +Elise Elliott-Smith Monroe OR 97456 +Steve Andersen Central Valley UT 84754 +Joseph Belisle South Hadley MA 01075 +JV Rich Phoenix AZ 85012 +Jane Lewis Galena IL 61036 +Eileen Deutsch Winthrop WA 98862 +Sidne Baglini Newtown Sq PA 19073 +Roger Nelson Fort Meade FL 33841 +Mary Beth Holsteen Barrington IL 60010 +Pat cuviello rwc CA 94064 +Nichole Lehman Camp Hill PA 17011 +Joann Stanga New York NY 10019 +Tamy Carter virginia beach VA 23464 +Chris Petersen Seattle WA 98118 +Brent Baxter Seattle WA 98105 +Carla Johnson Flagstaff AZ 86004 +Jessica Coram Cambria NY 14132 +Jennifer Lorenz Cypress, TX TX 77429 +Frank X. Kleshinski Jeannette PA 15644 +Linda Newkirk Huntsville AL 35806 +Robert Mueller Kenmore WA 98028 +Barbara Null-Rusnak RICHMOND VA 23225 +bob mckelvey swanzey NH 03443 +Jane Chrisfield Littleton MA 01460 +Linda Zwobota Harpers Ferry WV 25425 +charles janay bronx NY 10463 +kathy smith homer AK 99603 +Mary Mejia San Fernando CA 91340 +Natalie Mitchels Tampa FL 33647 +Janine Hoefler Glen Allen VA 23059 +David Collins Milwaukee WI 53212 +Jenn Michelle Pedini Brambleton VA 20148 +Mary Mejia San Fernando CA 91340 +Harald Conradi Durango CO 81301 +Mike Elliot Irwin PA 15642 +Sandy Kerman SLC UT 84105-2462 +Vanessa Nixon Klein MOSSYROCK WA 98564 +Pat Vairo NY NY 10011 +Gloria Kasdan Dublin CA 94568 +Beverly Gorlach Bolton CT 06043 +CONNIE TARRANT New York NY 10013 +Shannon McClure Chesterfield VA 23832 +Jase Baese Groton NY 13073 +Jase Baese Groton NY 13073 +Peter Abood Parma OH 44134 +Sharon Donahue Chesapeake VA 23325 +Rozanne Levine Boonton NJ 07005 +Lauren C. Franklin Park NJ 08823 +Mitzi Green Decatur GA 30033 +Kyle Larson Fort Collins CO 80526 +Carlton Gonsalves Plainsboro NJ 08536 +a margana ny NY 10031 +Adrienne Dollyhigh Mount Airy NC 27030 +Steven Taormina Boulder CO 80302 +Jackie de Batista Pecatonica IL 61063 +Diane Rhoades Hendersonville NC 28739 +Lauren Anderson Hillsborough NJ 08844 +Regina Kolber Brooklyn NY 11230 +Michael Troy New York NY 10024 +Cynthia Thompson Salina KS 67401 +Kay Wuthier Golden CO 80401 +Stephanie Catlett Iowa City IA 52240 +Susan Jackson La Canada CA 91011 +Joni Waldrup Missoula MT 59801 +Anita Belfi Painesville OH 44077 +Jane Beaver Dallas TX 75201 +Kim Cardwell Chicago IL 60473 +Bonnie Fisk-Hayden Pt Reyes Station CA 94956 +Lynda Stauffer Newberry FL 32669 +Lindsey Atkinson Asheboro NC 27204 +Jamie Young Carlisle MA 01741 +janmarie hornack overland park KS 66212 +Marilyn Borchardt Oakland CA 94618 +Stephan Shaw Brooklyn NY 11201 +Michael J. Potter Ann Arbor MI 48104 +Terri Steck Greenville SC 29601 +Carolyn Kiesow Broad Brook CT 06016 +Christal Jeyabalan Canal Winchester OH 43110 +Ernest Cowden Lawrence KS 66047 +Terri Steck Greenville SC 29601 +Constance Brown Dallas TX 75216- +Sandra Rando Fairfield IA 52556 +Evonne Hilton Las Cruces NM 88001 +Brent Rocks Portland OR 97201 +Madeleine Fox San Francisco CA 94121 +Brian Killian Parker CO 80138 +Ellen McMaster Fairless Hills PA 19030 +Jaime Zaplatosch Chicago IL 60612 +Wendy Esko Clinton MI 49236 +VIVIAN LEVIN LAGUNA BEACH CA 92651 +Thomas Beatty Mahopac NY 10541 +Brita Delaney Chicago IL 60610 +Gregory Stricherz Minnapolis MN 55410 +jack mudry Denver CO 80204 +Katherine Joyce Montclair NJ 07042 +Sharon Bullock Oak Park MI 48237 +julie arcino emeryville CA 94608 +Lisa Rocco San Francisco CA 94105 +Ronit Gesundheit Novato CA 94947 +Jennifer Frost Rego Park NY 11374 +Kimberly Ruch-Alegant Philadelphia PA 19116 +Jane Terrell Tallahassee FL 32309 +Mary Eichbauer Benicia CA 94510 +Silvia Pagliardini Los Angeles CA 90025 +Tim Zedalis denver CO 80235 +Trish Heidersbach Richmond CA 94805 +Ruth Ann Fredenthal New York NY 10018 +Valerie Berk New York NY 10012 +Brian Hirota Honolulu HI 96817 +Michiko Stricherz Minnapolis MN 55410 +Sherry Barnard Fairfield CA 94534 +Diane Dodge St Paul MN 55104 +Beverly Eden San Francisco CA 94115 +Jeremy Friedman Brooklyn NY 11220 +Chris Moss new york NY 10012 +Rainbow Di Benedetto Austin TX 78704 +Mike Roberts Layton UT 84041 +Molly Murrah Kirkland WA 98033 +Debre DeMers Brooklyn NY 11215 +Christa Backson Santa Barbara CA 93109 +Tina Gessler Chicago IL 60640 +Laurie O'Neill Greensboro NC 27403 +Dennis Strom La Honda CA 94020 +Charlotte Arnold Torrington CT 06790 +Kate Rossetto Billings MT 59105 +Melanie WInter Studio CIty CA 91604 +caroline zane rochester NY 14625 +Eric Myren Cobble Hill BC V0R 1L3 +Joseph Negron Brooklyn NY 11204 +Claude Robert St-Hyacinthe QC J2S +Ana Batista-Negron Brooklyn NY 11204 +Victoria Gagne Excelsior MN 55331 +Krystina Bair Seattle WA 98119 +white Feather curtiss olivebridge NY 12461 +Bill Lovejoy Somerville MA 02144 +Barbara Paulini milwaukee WI 53217 +Connie Warren Weed CA 96094 +Ann Meyette Playa del Rey CA 90293 +Malcolm Kenton Greensboro NC 27410 +Kati Thompson Nashville TN 37209 +Elizabeth King Piedmont CA 94610 +Sarah Hietpas Lake Elmo MN 55042 +Marshal Compton Cincinnati OH 452443 +annette bailey syracuse NY 13203 +Kelly Lee Parnell IA 52325 +Brian Van Eaton Chandler AZ 85225 +Jacqueline Gray Deer AR 72628 +Jennifer MADERA Brea CA 90631 +Jennifer Malo Brevard NC 28712 +Max Eisele Hotchkiss CO 81419 +holly laux o'higgins Madison WI 53716 +LD Anderson Santa Cruz CA 95064 +tim hammond grinnell IA 50112 +DeeAnn Stenlund Roseville MN 55113 +Steve Chesler Brooklyn NY 11222 +r reyes san luis obispo CA 93401 +holly laux o'higgins Madison WI 53716 +Shannon McDuffie Washington DC 20010 +ivan menchell santa Monica CA 90403 +Charisse Dunn Pasadena CA 91101 +David Contreras Point Arena CA 95468 +Julie Gammon Lewiston ME 04240 +Jonathan Sirotek Ouray CO 81427 +Dominic Stricherz Eden Prairie MN 55346 +RP Goetz Yardley PA 19067 +carol easton aptos CA 95003 +Vince Stricherz Seattle WA 98116 +Alice Fredrick Olympia WA 98512 +Frank Weeks Santa Monica CA 90405 +carol reed tollhouse CA 93667 +Melissa Sirasky Mason OH 45040 +Mark Ehrlich West Hollywood CA 90046 +Abby Wilkerson Riverdale MD 20737 +Bruce Buchanan Appleton WI 54911 +Eugene Overbeck Galveston TX 77551 +John Stair San Francisco CA 94110 +Abby Wilkerson Riverdale MD 20737 +CAROL GINGLES Housatonic MA 01236 +Abby Wilkerson Riverdale MD 20737 +Adele Cressy Portland OR 97203 +douglas doyle arroyo grande CA 93420 +carol Hatcher Newfane VT 05345 +Roberta Sanchez Evergreen CO 80439 +Christine Belt Evansville IN 47713 +Lara Lau duluth MN 55804 +Alyce Meadors smyrna TN 37167 +Terry Huey Lexington KY 40522 +Zdrava Sharkov Los Angeles CA 90028 +Alison Kenyon Oakland CA 94612 +Steven Read McPherson KS 67460 +Robin Taft seattle WA 98115 +Troy Davis Cincinnati OH 45212 +michelle karaszkiewicz trumbauersville PA 18970 +Claire Isitt Portland OR 97214 +Claire Isitt Portland OR 97214 +Claire Isitt Portland OR 97214 +Gabrielle LeBeau Logan UT 84321 +Carrie Kourkoumelis Melrose MA 02176 +Nina Crouthamel Zionsville PA 18092 +Pam Videen Hugo MN 55038 +helena roberts Freedom CA 95019 +Shelly Reed New York NY 10012 +Jennifer Jorgenson Auburn CA 95602 +Claudia Magnie Dunedin FL 34698 +Laura Walls Santa Cruz CA 95060 +Mark Hallett Bloomington IN 47408 +Deborah Graul Laramie WY 82072 +Laura Whitley Mountain City TN 37683 +Anna Webb Ames IA 50010 +Matthew Hodges Arlington MA 02474 +Alice Perkins Reading PA 19601 +Karen Rushlow South Lyon MI 48178 +roland dupree denver CO 80202 +milan kutcher Castlegar BC V1N 4T7 +Laurel Standley Newton MA 02458 +beth marusi Newtown CT 06470 +Sheryl Humphrey Staten Island NY 10302 +Diana Fischer Darien IL 60561 +ted yuhl mohave valley AZ 86446 +Emily Dangel Centennial CO 80112 +robert furlong delray beach FL 33446 +Tania Darlington Apple Valley CA 92307 +Scott Burr Clackamas OR 97015 +Prof. Ann Sprayregen nyc NY 10033 +robert furlong delray beach FL 33446 +Solange Froning Bisbee AZ 85603 +Amy Lowichik Salt Lake City UT 84105 +Bill Blackburn Camp Meeker CA 95419 +katy saunders denver CO 80220 +Ron Baginski Cleveland OH 44111 +katia Jimenez Eugene OR 97403 +judith Lewis Santa Fe NM 87508 +Ernest J.P. Muhly Walkersville MD 21793 +Wendy Berry pahoa HI 96778 +Michelle Vires Miami FL 33189 +Robert Hagedorn Davis CA 95618 +Kathi Rose Globe AZ 85501 +Caylan Larson Madison WI 53704 +jason riggle riggins ID 83549 +Elizabeth Rodacker Bakersfield CA 93309 +Roxanne Brown Foley MN 56329 +Carol Duke Williamsburg MA 01096 +Christopher Neal Kalamazoo MI 49001 +Jenny Parker Bowling Green KY 42104 +Sharon Gillespie Austin TX 78703 +joe suppes crete IL 60417 +Soraya Hejazi Northridge CA 91325 +Melissa Middlebrook Seattle WA 98119 +S. McCarthy Davis CA 95618 +Bailey Koonce Kilauea HI 96754 +Andrine Stricherz Sioux Falls SD 57106 +Elaine hill Trenton NJ 08611 +Elizabeth Ultimo Arlington VA 22205 +Stephanie Pacheco Fountain Valley CA 92708-5625 +Peggy S. Collins Southfield MI 48075 +Carmi Bowles San Francisco CA 94122 +Carolynn Griffith Honolulu HI 96825 +Richard Baker Atilissa IA 52720 +REBECCA BOREN FORT COLLINS CO 80525 +David Saylor Upland CA 91786 +Christine Muller Kingston RI 02881 +Betty Willits Shawnee Mission KS 66204 +Lynn Wright Tucson AZ 85737 +Jane Zeimantz Long Beach CA 90808 +Ruth Campbell Jefferson City MO 65110 +Linda Buth Delray FL 33444 +Nicole Genolio Redway CA 95560 +Doreen Miller Dorchester MA 02125 +mary Wold Boulder Creek CA 95006 +Larry Bulling Corvallis OR 97330 +Nancy Kelly Fresno CA 93728-2025 +robert smither Jr Louisville KY 40206 +Lisa Gosnell Georgetown DE 19947 +Irena Franchi Sunny Isles Beach FL 33160-3240 +Krista Blackwood Kansas City MO 64113 +Heather Ziegler Columbus OH 43220 +Craig Lefort Rochester NY 14615 +Janie Moore Portland OR 97205 +Martyne Viens Fairfax CA 94930 +MICHAEL DIGGINS SR. Scarborough ME 04074 +Jack Zeilenga Montpelier VT 05602 +Stanley Troy New Hope PA 18938 +Jessica Marks Brooklyn Center MN 55429 +Hollis Jones Meeteetse WY 82433 +sharon erickson hudson WI 54016 +doris kanter sarasota FL 34231 +Maria Santillanes Norcia Albuquerque NM 87114 +James Miller Perris CA 92570 +Andrew Wolniak New Haven CT 06515 +Antonio Marxuach Steamboat Springs CO 80477 +Melissa Ambrose San Francisco CA 94110 +Claudia Petrick Fairfield IA 52556 +James Rey Rio Grande NJ 08242 +Megan Fitzgerald Washington DC 20011 +Suzanne Robertson West Chester OH 45069 +Laurie Wellman Mount Horeb WI 53572 +Ulla Lundgren Flagstaff AZ 86001 +Mia Thiam Baltimore MD 21211 +Jennifer Steinbachs Bloomington IN 47401 +Joan McKinley Malvern PA 19355 +Meaghan Smith McLean VA 22102 +Erik Nielsen Brookfield VT 05036 +Michael Church Worcester MA 01602 +Dawn Kimble Boulder CO 80301 +barbara thomas collingswood NJ 08107 +Sharon Guzik Medford MA 02155 +Julie Bete Guilford VT 05301 +nancy green madison WI 53704 +Patricia Davis Oakland CA 94610 +Annmarie Lucchesi Reno NV 89509 +Deborah Beeson San Diego CA 92104 +Daniel Zelter L.A. CA 90046 +Susan Wiltse Scotts MI 49088 +Anna Koncz Wixom MI 48393 +Judith Davis West Chester PA 19382 +Nicole Berkheimer Knoxville TN 37909 +Richard Jacobs Bainbridge Island WA 98110 +Leah Clark Kenmore WA 98028 +Ellen De Money Boulder CO 80303 +Lori Melena Centennial CO 80121 +Susan Lander Ashland OR 97520 +Martha Morandi Salem OR 97302 +Suzanne Maddox Champlin MN 55316 +pat murrell alton IL 62002 +Lynne Newould york PA 17404 +Barbara Stewart Marietta OH 45750 +Linda Erickson Shoreline WA 98177 +Maria Smith Klaksvík ot 700 +Barbara and Jim Dale Decorah IA 52101 +Shelicia Schultz Austin TX 78751 +Alex Gonzales Bloomingdale IL 60108 +Teri Micco Santa Fe NM 87508 +Julie Levine kansas city MO 64131 +Pamela Laine Campbell CA 95008 +Nancy Webb Beverly Hills CA 90213 +Tracy Martin Arcata CA 95521 +Kristie Benson Fairport NY 14450 +carol webb jacksonville FL 32210 +judidth wagner marietta GA 30066 +Edward Hower fairless hill PA 19030 +Dan Reznick San Diego CA 92105 +Laura Plunkett Santa Fe NM 87505 +Anna Lorentzon Brooklyn NY 11237 +Harmon Seaver Oshkosh WI 54901 +Maia Maia Goleta CA 93117 +Ronald Pitz Hartford CT 06106 +Nan Soule Portland ME 04101 +Jill Koch Grayslake IL 60030 +Zoe Alexander Kihei HI 96753 +Sean Gale Denver CO 80211 +William Gillis Denver CO 80220 +Karrie Sanderson Seattle WA 98109 +Bill & Marilyn Voorhies Bernard ME 04612 +Adam Burrows Chicago IL 60610 +P.J. Benet-Davis Alturas CA 96101-0073 +Barbara Meyer Portland OR 97206 +Amit Shoham San Francisco CA 94103 +Mitch Haimov diamond bar CA 91765 +P.J. Benet-Davis Alturas CA 96101-0073 +Jeff Boscole Bellevue WA 98008 +Jeff Boscole Bellevue WA 98008 +Patricia Anderson Portland OR 97290 +Steven Koch Williamsport PA 17701 +Jay Wenger Rockville MD 20853 +Patrice Freeland Roanoke VA 24015 +Janet Horner Peoria IL 61614 +Lorri Schafnitz Tehachapi CA 93561 +Tamara Kukuczka Traverse City MI 49684 +Alejandro de la Torre Houston TX 77059 +Robert Wagner Lawrenceville GA 30044 +P.J. Benet-Davis Alturas CA 96101-0073 +Mira Furth North Andover MA 01845 +natalie baribeault canal winchester OH 43110 +Jacqueline Freeman Battle Ground WA 98604 +Ben Carney Aurora CO 80015 +Lily Vucenovic Albany OR 97321 +Barbara Wolfrum Naperville IL 60565 +Anne Ishiguro Desoto TX 75115 +Jody Myers Morton IL 61550 +Muriel Wenger Rockville MD 20853 +Susan Hand Kanab UT 84741 +Roberta Burnes Lexington KY 40504 +Laura Phillips El Dorado Springs MO 64744 +marianne tracy rochester NY 14618 +Candi Ausman Fremont CA 94536 +Melody Nielsen Long Beach CA 90806 +Diana Winer Westby WI 54667 +Claudia Ingraham Denver CO 80206 +John Hallawell Gig Harbor WA 98335 +Moira Olson Edina MN 55424 +Harriet Borton Troy NY 12180 +Mike Malon Hanover IL 61041 +Jason Margulis Jacksonville OR 97530 +J.D. Forbes Chicago IL 60618 +Rhiana Yazzie Saint Paul MN 55102 +Daniel Maddux Sedona AZ 86336 +Marie Ammerman Portland OR 97202 +Darrel Joy Nevada City CA 95959 +Mike Malon Hanover IL 61041 +Christine Daum Stevensville MT 59870 +KAREN DEORA Portland OR 97212 +Rebecca Sundberg Langley WA 98260 +Joyce Flight Indianapolis IN 46268 +Jenny Bangert St. Louis MO 63118 +Linda Leslie Kansas CIty MO 64152 +Renee Duenow St. Louis MO 63117 +Sean Scott Jefferson OR 97352 +amy carr San francisco CA 94107 +Patricia Kaminski Nevada City CA 95959 +Karen Colvard Tulsa OK 74135 +Helen Crisp Denver CO 80220 +Wilson Cone Santa Fe NM 87508 +Ann Perkins Wayzata MN 55391 +Sandra M. Zwingelberg Denver CO 80209 +Karin Nembach Bothell WA 98021 +Joe Edwards Shipman VA 22971-2340 +Grady O'Brien Fort Collins CO 80526 +Karan Garg Fairfield IA 52556 +Marcie Cohen Denver CO 80210 +R.J. Sharrott Palm Coast FL 32137 +Ron Violet San Antonio TX 78218 +Jane Warner Altadena CA 91001 +BreeAnne Peterson Moscow ID 83843 +Rachel Katz St Louis MO 63104 +Sharon Tepe Fort Thomas KY 41075 +Cassandra B. Lista Santa Rosa CA 95407 +Julie Johnson Sultan WA 98294 +Ben Demar seattle WA 98122 +William Calvert Austin TX 78704 +Mary Bolster Joliet IL 60435 +Jeannie Elmstrom Los Angeles CA 90034 +janet Marie skaggs st. Louis MO 63132 +Lisa Owens Blacklick OH 43004 +Roben Cahoon Renton WA 98058 +Joan Palmer West Granby CT 06090 +colette walczak santa monica CA 90405 +eve hanna Kingman AZ 86401 +Jeffrey Wimer Waynesboro VA 22980 +Nancy Nichols Fredonia WI 53021 +Susan Ulery Ridgway CO 81432 +Amy LaValley De Pere WI 54115 +Kathryn Blackburn Millersville PA 17551 +Richard Corry Bk., New York NY 11217 + Ed Bautista lakewood WA 98499 +Richard Legault Dighton MA 02715 +jessica winsheimer washougal WA 98671 +Joanne Hindman Brooktondale NY 14817 +Kimberly Moses Piedmont CA 94611 +Drew MacDonald Denvr CO 80231 +Kira Berman Ypsilanti MI 48197 +mary zenisek cleve hts. OH 44118 +Carole Keene Houston TX 77007 +Sonia Sorensen Phoenix AZ 85018 +Chad Oler Madison WI 53719 +Suzanne Trexler Orangevale CA 95662 +Yvonne Tasker Rothenberg Jamesville NY 13078 +Cindy Carlson Dallas GA 30157 +Armando Navarro Cutler Bay FL 33157 +Nancy Gilkyson Dripping Springs TX 78620 +Peter kuhn san diego CA 92117 +DORANN ZUKE Kamuela HI 96743 +Donna Rose Santa Rosa CA 95405 +becky Desjardins Raleigh NC 27604 +Linda Sparks Lakewood CO 80227 +Paul Armstrong Frederick MD 21701 +Pamela Rups Kalamazoo MI 49008 +Dotty Sharp Adrian MO 64720 +Christi Uhing Omaha NE 68154 +Kevin Sharp Adrian MO 64720 +erin tuomi byfield MA 01922 +Susan Gideon Langley WA 98260 +Joseph Witt Portland OR 97214 +Ryan Worthington Knoxville TN 37919 +Jean Burkett Dover AR 72837 +Barbara Hertel Brooklyn NY 11211 +Samuel Hergenrather Sebastopol CA 95472 +Jannis Peterson Fredonia NY 14063 +Samuel Hergenrather Sebastopol CA 95472 +Sherri Nordwall San Francisco CA 94102 +Samuel Hergenrather Sebastopol CA 95472 +Amy Dickinson Conway MA 01341 +Steven Kaufman Wake Forest NC 27587 +Sarah Hafer Davis CA 95618 +Anthony Martin Dambrosi Middletown NY 10940 +Les Dethlefsen Cupertino CA 95014 +michael whiteman brooklyn NY 11215 +Laura Marshall Charlottesville VA 22901-4006 +Sharon Noll Phoenix AZ 85022 +John Witte Portland OR 97206 +Lind Foster Fresno CA 93704 +Bob Klein New York NY 10011 +Brenda Leonard Canaan NH 03741 +William Shadel Keyport NJ 07735 +Christine Byl Denali Park AK 99755 +Susan Thompson Cottonwood AZ 86326 +Deborah Stephenson Helotes TX 78023 +Teresa Sanchez santee CA 92071 +Brian Bergstrom Minneapolis MN 55405 +Sara Ryan Merrill WI 54452 +shari leiterman draper UT 84020 +Rachael Alexander Oakland CA 94610 +Mary Lockwood Kansas City MO 64131 +Carol Jurczewski Riverside IL 60546 +Jean Burkett Dover AR 72837 +Fronye Rendon Austin TX 78735 +Jean Burkett Dover AR 72837 +Kaye Plumb Cedar Falls IA 50613 +Bill Daugaard Kirkland WA 98033 +Joanna Fernandes Brooklyn NY 11215 +Banita Kooner san diego CA 92101 +Leah Winter Warrington PA 18976 +Louise Prout Prescott AZ 86305 +nancy brown austin TX 78731 +Marian Becchio Springfield MO 65804 +Mitch Walzer Orleans CA 95556 +Joanna Fernandes Brooklyn NY 11215 +Lynne Cody Abbeville SC 29620 +Philip Maddox Champlin MN 55316 +Shauna Bloom Hartford SD 57033 +Robert Rickun west hollywood, CA 90069 +Ron D'Agostino D.O. L'Anse MI 49946 +Leslie Millar Missoula MT 59802 +Teresa Veragen Lakewood CO 80226 +Jim Lane Plano TX 75075 +Jenavie Brandt Divide CO 80814 +Rachel Resnikoff Berkeley CA 94705 +Elizabeth Deig San Diego CA 92107 +William Mays San Francisco CA 94114 +Amy Beddoe Aptos CA 95003 +Derek Pippin Waco TX 76705 +Grover Pippin Waco TX 76705 +Russell Blalack Jr Cupertino CA 95014 +Krissi Martel Buffalo NY 14201 +Jacqueline Pierce Lawrence KS 66046 +Linda Pippin Waco TX 76705 +Jennifer Bruell Durango CO 81301 +Sarah Baker Minneapolis MN 55410 +Susan Sanders-Kinzel Port Orchard WA 98366 +Megan Moore Waco TX 76705 +Heather Hall Montague MA 01351 +Regina Jacobson Deerfield Beach FL 33442 +Jonathan Beal Gig Harbor WA 98332 +jeanne lai new york NY 10022 +steve adler chicago IL 60625 +Claudia Rice Honomu HI 96728 +Chere Edgar Mesa AZ 85201 +Julia Berkley Maynard MA 01754 +Amos Sunshine New Paltz NY 12561 +Chere Edgar Mesa AZ 85201 +Clifford Ho Captain Cook HI 96704 +Peggy Clarke Somers NY 10590 +Sally Muri Wilton NH 03086 +Pauline Holgate Mesa AZ 85204 +Laren Fusman Denver CO 80206 +David HANSEN Oneida WI 54155 +tippi pollet eugene OR 97403 +Katie Bjorkman Burlington WI 53105 +Deborah Cahillane Florence MA 01062 +Ruth Ann LeBeau Bellingham WA 98227 +Carolyn Reynolds Branson MO 65616 +Alexandra Locke Huntington NY 11743 +Bonnie Gordon-Lucas Bloomington IN 47408 +Susan Richardson Northville MI 48168 +Susan Cooper Nyack NY 10960 +Bruce Lambert Yakima WA 98908 +Jennifer Shepherd Tucson AZ 85705 +h schooler w. hollywood CA 90046 +Donna Siciliani Port Washington NY 11050 +Donna Siciliani Port Washington NY 11050 +Nicole Becker El Cerrito CA 94530 +Tim Hayes Santa Rosa CA 95401 +Mary Hitt Providence RI 02908 +Jeremy Welborn Salem OR 97301 +JudithEllen Larson South Bend IN 46619 +Linda Tullock Schenectady NY 12306 +Heather Grosenbach Thornton CO 80602 +Dicron Meneshian Riverside CT 06878 +Lesley Diamond Santa Fe NM 87507 +Bruce Brinker Santa Cruz CA 95062 +Lesley Diamond Santa Fe NM 87507 +Avai Avai Charlottesville VA 22901 +annie capestany walla walla WA 99362 +Silver Smith Bellingham WA 98225 +Tristin Mock Portland OR 97211 +Susan Grubb Littleton CO 80123 +david scalza ny NY 10019 +RENE COOK MURPHYSBORO IL 62966 +Rudy Zeller Richmond CA 94803 +Johnny G. d'Artenay San Diego CA 92116 +JudithEllen Larson South Bend IN 46619 +Carmela DeMarco Koloa HI 96756 +Ross Hammersley Huntington Woods MI 48070 +Herb Joseph La Jolla CA 92037 +carol carlozzi phoenix AZ 85022 +Trish Sternthal Portland OR 97211 +Michelle Hanson Mapleton MN 56065 +carol bader grass Valley CA 95945 +Gina Anzaldua New York NY 10038 +Penney Morse Osage IA 50461 +Jennifer Pope Atascadero CA 93422 +Jen Tietjen Applegate OR 97530 +Kathrynne Holden Pittsburg MO 65724-9600 +l blair kalispell MT 59901 +Joseph Cox Lake Forest CA 92630 +Garvin Taylor Winnipeg MB R3G 1A5 +Les Everett St. Paul MN 55108 +Aliaksandra Bennett Elkhart IN 46514 +Dorothy Ulner Carbondale IL 62903 +Krissy Hughes Bemidji MN 56601 +alix rodrigues vancouver BC v5l 2m2 +Shirley Waszak Milwaukee WI 53221 +Dene Drew Sonora CA 95370 +RoseAnne Pontillo Crystal Lake IL 60014 +Julie Bannister Tempe AZ 85282 +Fred Fargotstein Pittsburgh PA 15206 +Carl Delmolino Bristol CT 06010 +Adalberto Amaya Santa Cruz CA 95061 +Harvey Hiebel Ramona CA 92065 +Nathan Hetrick Grand Blanc MI 48439 +Paul & Johninie Leininger Shiner TX 77984 +Shelle Dohn-Meier Dublin OH 43016 +Tracy Chapman Portland OR 97219 +Rebecca Barker Glendora CA 91740 +Lauralyn Bunn Miami FL 33186 +linda epstein Island Lake IL 60042 +Astrid Berkson Champaign IL 61820 +Gina Clemens Panama City FL 32412 +Ester Fuchs Lapeer MI 48446 +Connie F. Springer San José CA 95124 +El.sa Clemens-LeBlanc Murray Hill NJ 07974 +Emily Maloney Santa Cruz CA 95062-5507 +Catherine Godfrey Lindsay ON k9v 2n2 +Amy Bradfield Austin TX 78735 +Wendy Cabot Holliston MA 01746 +Aeyrie Ross Santa Ana CA 92707 +Keith Kirk Felton CA 95018 +Kim Eshleman Tigard OR 97223 +Taza Guthrie Tucson AZ 85716 +Mary Ann Jones Trenton NJ 08629 +Kata Orndorff Tucson AZ 85716 +Sandra Brown Gill MA 01354 +Todd Olk Centennial CO 80122 +Diane Benya West Linn OR 97068 +James Denison Long Beach CA 90815 +Julie Covington Schertz TX 78154 +Lynne Preston San Francisco CA 94107 +Rozanne Bazinet Encinitas CA 92024 +Robert Trimble Telluride CO 81435 +Wenona Scott Willis VA 24380 +Sam Sloneker Pioneertown CA 92268 +Marianne Janssen Elon NC 27244 +Shirley Crenshaw St. Louis MO 63146 +Amy Bradfield Austin TX 78735 +Howard Quaintance Reading PA 19601 +Mary Kirsch Waldwick NJ 07463 +Sally Williams Boston MA 02116 +Rosemary Hennessy Pittsburgh PA 15228 +Geneva Mollins North Brookfield MA 01535 +Christy Bumanis Germantown MD 20876 +Richard Johnson Eugene OR 97405 +Judith M. Kemp Salem OR 97306 +Edwin Lainhart Yellow Springs OH 45387 +Victoria Craig Boise ID 83706 +LISA PARADIS Twentynine Palms CA 92277 +Victoria Craig Boise ID 83706 +Michelle Fulton Meadow Valley CA 95956 +Carol Berman Decatur GA 30033 +Regena Garber Hutchinson KS 67502 +Cynthia Ann Cookson-Newport Chicago IL 60640 +Dorothy McCaleb Powderhorn CO 81243 +Kathleen Hannan Hillsborough NC 27278 +Frances Taylor Marietta GA 30066 +Xiaomin Zu State College PA 16801 +Christian Schwarz Santa Cruz CA 95064 +Erica Elliott Santa Fe NM 87507 +David Shindell Ann Arbor MI 48103 +Regina Cunningham Bakersfield CA 93390 +Hagen Rick San Jose CA 95126 +Candy Frizzell Aztec NM 87410 +Susan Richards Del Mar CA 92014 +Maja Ramirez Chicago IL 60614 +Joseph Logan Scottsdale AZ 85262 +Ferdinand Choss Paradise CA 95969 +Deborah Szajngarten Sloatsburg NY 10974 +Dana Simmons Cornville AZ 86325 +Carol Edwards Siloam Springs AR 72761 +Louise Schmidt French Village MO 63036 +Inge Wiesen Great Neck NY 11023 +Tamie Meck Paonia CO 81428 +Angela Ferri Gaithersburg MD 20886 +Marianne Schenker Chicago IL 60657 +Marianne Schenker Chicago IL 60657 +Marianne Schenker Chicago IL 60657 +Connie Kelly Milwaukee WI 53207 +Marianne Schenker Chicago IL 60657 +Denise Emanuelo Acworth GA 30101 +Diana Cartier Chestnut Hill MA 02467 +Karen Oliver Columbus OH 43202 +Abigail Mahnke Austin TX 78757 +Gerard Redpath Keswick VA 22947 +Kenneth Cohen Honolulu HI 96816 +Tonya Wenger Philadelphia PA 19139 +Jennifer Davidson Portland OR 97215 +Perry Ambrose Searcy AR 72143 +Elizabeth Le culver city CA 90230 +GAIL LINDHOLM Cedar Park TX 78613 +Ben Swift Alexandria LA 71303 +Charles Coleman Miami FL 33139 +Laura Crites Honolulu HI 96826 +Charlene Cerridwen BROOKLYN NY 11218 +Linda Kellum Jacksonville NC 28546 +Ramon Parcells West Bloomfield MI 48322 +Charlene Cerridwen BROOKLYN NY 11218 +Kathleen Corby Pine Plains NY 12567 +Juliet Rynear Ocean Springs MS 39565 +Nayelli Perez North Bergen NJ 07047 +Charlene Cerridwen BROOKLYN NY 11218 +Alan Tower San Francisco CA 94 +Dennis Feichtinger Trenton MI 48183 +Tim Redmond Dexter MI 48130 +Lou K South West AZ 85712 +Karen Kamener North Fort Myers FL 33917 +James Land Petaluma CA 94952 +Chloe Monahan los angeles CA 90026 +Erin Matas San Francisco CA 94118 +Diane Comey Fairfield IA 52556 +Judith Hyman Ithaca NY 14850 +Joshua Welch eugene OR 97405 +jean simonian bloomington IN 47401 +Cheryll Kirk Hobart IN 46342 +Ann Mansfeld New Haven CT 06515 +Shannon Nelson New Glarus WI 53574 +Andreas Wittenstein Woodacre CA 94973-0570 +Margaret M Cantu Warren MI 48088 +Loni Sullivan Boulder CO 80301 +Sherry Lewis Woodstock GA 30188 +mar aige Brooklyn NY 11201 +Charles Alvarez New Haven CT 06520 +Linda Rose Kettering OH 45439 +Colin Fiske St. Petersburg FL 33701 +Charlotte Cramer Santa Monica CA 90404 +kristel neupert baton rouge LA 70817 +Donald Rogers Boullder CO 80301 +John Manning San Francisco CA 94117 +debbie meritsky hammondsport NY 14840 +James Buhler Minneapolis MN 55406 +Julio Paz y Mino Havertown PA 19083 +Jesse Burgess Walla Walla WA 99362 +Elizabeth Hudson Redmond WA 98052 +Michael Hernandez Albion WA 99102 +Naia Leavitt Sedona AZ 86351 +David Yao Seattle WA 98133 +Garry M. Doll Williamsport PA 17701 +Jason Hamilton Lake Forest CA 92630 +isa rhodes El Prado NM 87529 +Julie St. Pierre Redwood Valley CA 95470 +Emily Heartsong Columbia MO 65201 +Barbara Money Foster RI 02825 +Jon Freeman Mount Shasta CA 96067 +Judith Smith Oakland CA 94601 +Rita Brinkman Los Alamitos CA 90720 +Peter Vogt Sugar Land TX 77479 +Lewis Kuhlman Minneapolis MN 55405 +Irene Bensinger Eatonville WA 98328 +Iris Weaver Peabody MA 01960 +Kimberly Potucek Lombard IL 60148 +Douglas Gruenau Santa Fe NM 87508 +Helen Yee New York NY 10032 +paul stein ny NY 10012 +Maren Good Scotch Plains NJ 07076 +Cheryl McGraw Rocky Point NC 28457 +Kirk Butler Tampa FL 33614 +john allen hollywood CA 90068 +Nancy Chanda Garden Ridge TX 78266 +Nancy Chanda Garden Ridge TX 78266 +Corinne Goodson La Porte IN 46350 +Blair Buchmayer Saint Louis MO 63117 +Ron Stock Paso Robles CA 93446 +William Puishys Brookfield MA 01506 +Jill M Stone Los Altos Hills CA 94022 +Gail Cully Spencer OK 73084 +John Sisson Denver CO 80206 +Milana PeBenito Santa Cruz CA 95060 +Evan Woodruff Austin TX 78727 +Daniel Dewberry Balto MD 21212 +Chala Roberts-Fife Lawrence KS 66049 +Deborah Davis Fort Collins CO 80521 +JoAnne Smith CHRISTIANSBRG VA 24073 +Morgan Rohde Bellingham WA 98225 +Lori Lorant Bothell WA 98012 +Linda Johnston Lawrenceville GA 30043 +Robert Moore Plymouth Meeting PA 19462 +Maggie Morrison Topping VA 23169 +Gloria Aguirre Northridge CA 91328 +Nancy Moore Plymouth Meeting PA 19462 +Joseph Wooten Nashville TN 37217 +Karina Black Boulder CO 80304 +Jim Gleckler Bainbridge Island WA 98110 +Windy Dankoff Santa Fe NM 87508 +Todd Hauser Ocean Park WA 98640 +coleen thornton arlington TX 76001 +Sandra Coutolenc Fairbanks AK 99701 +siggi gangl kihei HI 96753 +Tatjana Guedes San Francisco CA 94115 +Connie Crusha El Cajon CA 92019 +Anita Paez Valencia CA 91354 +Beth Murphy Millis MA 02054 +Randall Keith San Francisco CA 94132 +Terry Tillaart Mississauga ON L5L 1E1 +Emily O'Bryant Atlanta GA 30341 +Mary Huggins Round Rock TX 78681 +Claire Whitcomb Madison NJ 07940 +Billie Alarie Dewey AZ 86327 +Christine Matthes Eugene OR 97405 +Jack Spector Somerset NJ 08873-3331 +Elaine Fischer Houston TX 77054 +Dan Puetz Palatine IL 60067 +Connie Anderson San Mateo CA 94402 +Dan Puetz Palatine IL 60067 +Margaret Wright Chester MD 21619 +Roger Daniel Sedona AZ 86351 +bill karras new braunfels TX 78130 +Kelly Gleason Atascadero CA 93422 +Theresa Larson Oridna CA 94563 +John Wilson New Paltz NY 12561 +Erin Geesaman Rabke Salt Lake City UT 84103 +Laura Leever Sag Harbor NY 11963 +Rochelle Beck Jeffersonville, NY 12748 +Rachelle Gavlinski Goodyear AZ 85395 +Charleen Monte Algonac MI 48001 +Connie Crusha El Cajon CA 92019 +bill karras new braunfels TX 78130 +bill karras new braunfels TX 78130 +Alana Ramsay Victoria BC V8S 2A2 +Noel Ramirez Milwaukee WI 53233 +ronald brown Longmont CO 80501 +Rhea Machkovitz Horicon WI 53023 +Lyn Gorski South Bend IN 46614 +Cathleen Candey Saint Clair Shores MI 48080 +Robert Hill Waupaca WI 54981-9737 +Peggy Larson, DVM, MS, JD Williston VT 05495 +L. D. Pratt Berkeley CA 94710 +JOHN CLEMENS Topanga CA 90290 +YILITZA ACOSTA Apopka FL 32712 +Roy Hawkins Carlisle PA 17013 +Holland Garcia Carmel CA 93923 +Roy Hawkins Carlisle PA 17013 +Rikki Kiefer Oakland CA 94602 +meghan curley phoenix AZ 85044 +Patrick Hawkins Carlisle PA 17013 +Laura Schmidt Wilmington DE 19803 +Jennifer Shroder Elgin IL 60120 +Joya Roy Pasadena CA 91105 +Sharon Petz Chino Valley AZ 86323 +Molly Phelps Eugene OR 97401 +Ken Wehrenberg Hermann MO 65041 +Reva Willdorf Bradenton FL 34209 +erin pearce-zuazua felton CA 95018 +erin pearce-zuazua felton CA 95018 +Richard Wheeler Mpls MN 55409 +Andres Mejides Homestead FL 33031 +Amy Priest Wimberley TX 78676 +Mary Conlon Cumberland MD 21502 +Cathy Sibley Simpsonville SC 29680 +Susan Kelly Ambler Denver CO 80206 +Suzanne Chagolla Frederick CO 80530 +Edith Takantjas Belmont NH 03220 +Todd Henry Minneapolis MN 55406 +Sara Haubrock Richmond VA 23238 +Frances Hartnett Angara Oak Hill VA 20171 +sarah frenzel tampa FL 33606 +RAVEN LANG SANta cruz, CA 95062 +Elizabeth Franks Cincinnati OH 45242 +Judy Boyd Paso Robles CA 93446 +Michael Schiele Portland OR 97232 +burneta Clayton Nashville TN 37215 +Elaine Whooley Nevada City CA 95959 +ROSE BENJAMIN BRISTOL IN 46507 +Kathy McIntire Alameda CA 94501 +Michael Buss saint paul MN 55108 +Mary Lou Finley Lemon Grove CA 91945 +Nancy Dawley CINCINNATI OH 45243 +linda mclain hot springs AR 71913 +Jaclyn Jenkins San Francisco CA 94117 +Mary Schuermann Aptos CA 95003 +Phillip C'de Baca Colma CA 94014 +Karen Vossler Fort Thomas KY 41075 +Mary E. Ford Ocean Pines MD 21811 +Christina Williams Staten Island NY 10305 +lorraine crown milford NJ 08848 +Marika Ray Rio Rancho NM 87124 +Richard Bronk Shenandoah PA 17976 +Donna La Sota Blasdell NY 14219 +Len Williams Clearwater FL 33765 +Gail Rose Basye VA 22810 +Lisa Linardos Little Neck NY 11363 +Allen Symonds aspen CO 81612 +Jeanette Sasek san francisco CA 94122 +Susan Parkinson Hailey ID 83333 +Daria Stellwag Golden Valley AZ 86413 +Christine Buerger La Porte IN 46350 +Alvin Trace Ooltewah TN 37363 +Wendy Grimwood Asheville NC 28815 +Katherine Babiak New York NY 10014 +Becky Clark Austin TX 78756 +Ellen Singer Eugene OR 97404 +Alison Leber Seattle WA 98117 +darynne jessler valley village CA 91607 +Susan Siemers Walkerton IN 46574 +Maureen Esposito North Wales PA 19454 +teresa davis carson city NV 89706 +Karen Larsen Nottingham MD 21236 +Tasha Harmon Portland OR 97086 +David A Zachow Check VA 24072 +Carol Wright Santa Fe NM 87501 1389 +Joseph Butera Floral Park NY 11004 +Brian Gile Frisco TX 75034 +Joseph Butera Floral Park NY 11004 +Jo-Anna Robertson Red Hook NY 12571 +Elaine Wilson Torrance CA 90501 +Marion Perkus Bovina Center NY 13740 +wayne miller San Francisco CA 94108 +Melody LeBaron Roswell GA 30076 +Tanya Irvin Greenville SC 29611 +Timothy Kinney Gainesville FL 32601 +Kenn Zimmerman Craigville IN 46731 +Joanne Irvin Greenville SC 29611 +Sue Galler Winnetka IL 60093 +Sharon Mulgrew Emeryville CA 94608 +Elizabeth B. Davies Aurora CO 80044 +Gwen Jones Lexington KY 40503 +Eric White Sterling VA 20166 +Sharon McManus Silverdale WA 98383 +Lah-May Bremer Tumacacori AZ 85640 +Gina Alianiello Littleton CO 80128 +Natalie Youngberg Spring TX 77373 +Rose McKinney Birmingham AL 35210 +nancy jacques palatine IL 60067 +Stephanie Seymour Englewood NJ 07631 +indigo millar missoula MT 59802 +sarah mason exeter NH 03833 +Brent Carter Portland OR 97215 +charlie olness boulder CO 80304 +Julia MacMillan Oakland CA 94609 +Patricia Kapolka Troy MI 48085 +Roxie Heron Denver CO 80211 +Mary Kanda Alcalde NM 87511 +Melissa wilkison pearl river NY 10965 +Carla Cross Santa Fe NM 87505 +Vince Mendieta Austin TX 78745 +stacy burk atascadero CA 93422 +Jocelyn Wright Columbia MO 65202 +D L Lamb Boulder CO 80301 +Keith Rowell West Linn OR 97068 +Elizabeth Schwartz Portland OR 97209 +John Hillman San Bernardino CA 92407 +Virginia Hitzelberger Elmer NJ 08318 +Sandra Lynn Dripping Springs TX 78620 +Sandra Lynn Dripping Springs TX 78620 +Stephenie Caughlin San Diego CA 92130 +Marjorie Dunlop Nyc NY 10019 +Megan McMullen Winter Park FL 32789 +Lucy Kenyon Rohnert Park CA 94928 +Rosemary Miner colfax CA 95713 +Rachel Drumm Madison WI 53704 +Angela White Washington DC 20011 +Alexandra Dilworth Ashland OR 97520 +Richard Davies Annandale VA 22003 +Darla Rewers Bothell WA 98011 +Amado Cross Denver CO 80222 +tom swanson shorewood MN 55331 +Amy Lansky Portola Valley CA 94028 +David Carr Madison WI 53703 +Terase Snyder Vancouver WA 98682 +glenda gloss taos NM 87571 +Julie Thompson Columbia Heights MN 55421 +Eileen Rees MIne Hill NJ 07803 +Barbara Hendricksen Eagle River AK 99577 +Patty Hopkinson Barrington RI 02806 +rose-marie swift new york NY 10003 +Dan Brennan East Rutherford NJ 07073 +David Cook City Island NY 10464 +Sue Fuller Aurora IL 60506 +david rosenberg Bayside WI 53217 +Sue Fuller Aurora IL 60506 +david rosenberg Bayside WI 53217 +William Puckett Lacey WA 98503 +Jennifer Bzowy Anchorage AK 99515 +Natalie Luna San Gabriel CA 91776 +david rosenberg Bayside WI 53217 +Dolores Projansky New Paltz NY 12561 +Lindsay Straw Boston MA 02115 +Karen Hellyer Berkeley CA 94705 +Bonnie Orgren Iowa City IA 52240-7716 +Shirley Keyes Davis IL 61019 +Dolores Projansky New Paltz NY 12561 +Sarah Fahrendorf, Esq. Columbia MD 21046 +Seth Borden San Gabriel CA 91776 +Andrea Watson Lenoir NC 28645 +Jayne Hamilton Bloomfield Hills MI 48304 +Geralyn Monfils Stanwood MI 49346 +Lisa Blakley Tallahassee FL 32308 +luke scott-hinkle springfield OR 97477 +Lisa Blakley Tallahassee FL 32308 +Jeanine Butler Boise ID 83703 +james Dartenay martinez CA 94553 +Linda Petersen University Place WA 98466 +Lisa Brenner Portland OR 97232 +Megan Murray Portland OR 97214 +JOE LUCIANI VICTORVILLE CA 92395 +Kathryn Zaksek Ventura CA 93004 +Chris Garbacz Chicago IL 60660 +Louise Gordon Portland OR 97219 +Laurie Masters Novato CA 94945 +Kristin Wisgirda Brockton MA 02301 +Alice Dugar Independence OH 44131 +Katherine Crank SANTA ROSA CA 95409 +Alissa Wehrman seattle WA 98106 +Mary Durante Maplewood NJ 07040 +Zakkary Zoah Alameda CA 94501 +lisa cook elwood IN 46036 +Michael Bayouth Wichita KS 67207 +Patti Torp Bloomington IN 47401 +amanda fisk guerneville CA 95446 +Eric Lohela Santa Barbara CA 93101 +Nancy Yarbrough South Bend IN 46628 +Lisa Heenan Diamond OH 44412 +Pamela Hosler St. Louis MO 63139 +Mary Anne Gaskins Centennial CO 80112 +Kelly Martin Fairview Heights IL 62208 + Kristine Rohner Burlington WI 53105 +Kristen Mann Miami FL 33186 +sherry pinter lakeville MA 02347 +Carolyn Barkow San Diego CA 92119 +Myrna Giles Northwood IA 50459 +Jacquie Amiriantz Mullica Hill NJ 08062 +jan balcom clovis CA 93619 +Linda Haro Grants Pass OR 97527 +Danielle Burrows Port Alberni BC V9Y 2N2 +Michele Mattingly La Mesa CA 91942 +Ruth Ketvirtis Midpines CA 95345 +Mary White Ann Arbor MI 48104 +Tamara Dabney White River Junction VT 05001 +Marianne Kukec Chesterland OH 44026 +dawn raczka Holland NY 14080 +Mark Nagel Everett WA 98201 +Nichole Day Diggins Northfield MN 55057 +Beverly Stone Florence MA 01062 +Charles Prostak Santa Fe NM 87506-8375 +Nichole Day Diggins Northfield MN 55057 +Erin Denny-Miller San Jose CA 95126 +Ardella Nathanael San Rafael CA 94903 +Lois Iacovella Prospect CT 06712 +Kevin Zellmer Milwaukee WI 53211 +Katherine Mack Savannah GA 31401 +Natalia Guitton Charlotte NC 28262 +colin duggleby Wendell NC 27591 +Jennifer Quezada san francisco CA 94102 +Laurel Anderson Phoenix AZ 85032 +Alma Ronningen Dent MN 56528-9305 +steve halgrimson Northglenn CO 80233 +mary george sacramento CA 95838 +Helen Strahl Troy MI 48085 +david gutstein fort myers FL 33907 +Jack Leishman Talent OR 97540 +christine garcia grandy NC 27939 +marc kessler Chico CA 95973 +Carolyn Eden Bainbridge Island WA 98110 +Lorinda LumberT Sparta MI 49345 +Michelle Stille Atlanta GA 30318 +Lina Kempner NYC NY 10009 +jane hopkins Saratoga CA 95070 +Debra Pennington Davis White Salmon WA 98672 +Andrew Rader Lagunitas CA 94938 +Becky Jones Maumelle AR 72113 +Art Hanson Lansing, MI MI 48917 +nora cabrera Austin TX 78739 +Virginia Oram, ND Eugene OR 97404 +Judith Poxon Sacramento CA 95864 +Meyer Scharlack Santa Cruz CA 95060 +john papandrea NEW YORK NY 10024 +Christine Gardner San Francisco CA 94115 +Susan Talevski Willowbrook IL 60527 +Leslie Tawnamaia Cabot VT 05647 +Jodie Desmarais St. Albert AB T8N7E7 +Eloise Drew Walnut Creek CA 94595 +Neal Ronning White SD 57276 +Judy Gordon Evans GA 30809 +E Mooney San Francisco CA 94118 +Cindy Robinson MT JULIETt TN 37122 +A Bonvouloir Sunnyvale CA 94086 +DAWN SCHEEL FALCON HEIGHTS MN 55113 +William W. Wakefield DeRuyter NY 13052 +Janice Vranka Portland OR 97219 +Andrew Osborne-Smith San Carlos CA 94070 +Mary Bradshaw San Antonio TX 78255 +Irene Cross cambridge MA 02138 +Beth George Portland ME 04112 +Justin Bronk Golden CO 80401 +Judy Kreag McGrath MN 56350 +Haydee Hampton Flagstaff AZ 86001 +Steve Isakson Miami FL 33185 +Laura Wald Sewell NJ 08080 +Lori Morrison-Contreras Chicago IL 60623 +Joan Ilg Loveland CO 80537 +Tami Peden Evanston IL 60202 +Joan Ilg Loveland CO 80537 +Sheila Gardner Durham NH 03824 +natasha tabachuk rego park NY 11374 +Shellie Honemann Everett WA 98203 +Christine Danyi Orlando FL 32806 +Phyllis Clemens Jamestown ND 58401 +Agnes Anderson Los Angeles CA 90066 +zu leika seattle WA 98118 +Gloria LEVITT FAIR LAWN NJ 07410 +Catherine Gage GRand RApids MI 49525 +Mary Ridge Portland OR 97225 +Joy Bunton Oak Park IL 60302 +judith march boulder CO 80305 +Katherine Rolighed Mound MN 55364 +k Spradley Camp Hill PA 17011 +Katherine Tildes Cranston RI 02920 +Suzanne Shacoski Angels Camp CA 95222 +Suzanne Jacobi Albuquerque NM 87109 +Lisa Schnoor Kensington MD 20895 +ELIZABETH RICH New York NY 10028 +Krista Huff Canton MA 02021 +Tamara Hazlett algonquin IL 60098 +Kathy ccrowther Osborn MO 64474 +todd bufalo overland MO 63114 +Karen Walter Bellows Falls VT 05101 +Iris Arno Hastings-on-Hudson NY 10706 +tina koebel nederland CO 80466 +Sara Palmer-Chubb Highspire PA 17034 +Jane Maher Naugatuck CT 06770 +Sonja Turner San Diego CA 92127 +joyce craig Virginia Beach VA 23455 +mona conner oceanside CA 92058 +Carol Douglas Phoenix AZ 85021 +Amy Miller Tillamook OR 97141 +Andrew Borg Acton MA 01720 +Carla Lamarr Margate FL 33063 +k gannon spokane WA 99207 +Andrea Weikal Bates City MO 64011 +Shelley Hines Brockton MA 02301 +Amy Hikita San Jose CA 95112 +Christina Rutkaus Arroyo Seco NM 87514 +Terry Richards Pinckney MI 48169 +CHERYL BENKSE DEPUE IL 61322 +Beverly Dir Valley Springs CA 95252 +Karen Jensen Gary IN 46403 +DON RAHM PUYALLUP WA 98374 +A.E. White seattle WA 98112 +Kerry Cornett westport CA 95488 +david Norling Loganville GA 30052 +Karen Jensen Gary IN 46403 +Paul Bucciaglia new Milford CT 06776 +Jan Cone Boulder CO 80306 +Lisa Bryant Elk Grove CA 95758 +Gerrie Biegner Fort Pierce FL 34982 +Cynthia Hoven Fair oaks CA 95628 +Dean Kendall Leesport PA 19533 +Chris Connel Siren WI 54872 +Patricia Linero Tallahassee FL 32312 +Kathleen Blackburn Knoxville TN 37920 +John Hines North Palm Beach FL 33408 +Clarence Soukup San Mateo CA 94403 +Niles Busler Townsend MA 01469 +leanne hirsh woodstock NY 12498 +Kate Crowley Willow River MN 55795 +Helen Harris Soquel CA 95073 +Jennifer Chambers Chico CA 95926 +Sharon Spontak Oak Lawn IL 60453 +tacy bigelow Coupeville WA 98239 +Kathy Thompson Alamosa CO 81101 +Victoria Usher Glastonbury CT 06033 +Gary Schaefer Greenfield MA 01301 +Lynn Nereo Windsor CA 95492 +John Farkash Wallingford CT 06492 +keith evans oakland CA 94611 +Jim Pero Allen Park MI 48101 +Mary T Johnson Westfield NJ 07090 +Ann Wright Ann Arbor MI 48103 +oliver weber boulder CO 80304 +Debra Knowles Los Angeles CA 90004 +Judith Hyman Ithaca NY 14850 +Jeremy Heise Phelps NY 14532 +Christina Williams North Hollywood CA 91607 +terry jackson greer SC 29650 +D Hart Centennial CO 80112 +Kathy Gorthey Barneveld ND 13304 +Roberta Cook, MD Banner Elk NC 28604 +sue perley santa fe NM 87501 +David Huggins Newport RI 02840 +David Huggins Newport RI 02840 +Tracy Burchett Niles MI 49120 +Eileen Hurley Huntington Beach CA 92646 +James Hirt grand blanc MI 48439 +Norman Oshiro Wailuku HI 96793 +Teresa Jaeger Melbourne FL 32901 +kathy katz gresham OR 97030 +Kim Anderson Landenberg PA 19350 +Sam Cook Montreat NC 28757 +gigi gaulin santa fe NM 87505 +Roger Dodson Cary NC 27513 +Ellen Carter Martinsville IN 46151 +Harriet Sharp Santa Barbara CA 93109 +Jennifer Covington Fairbanks AK 99709 +David Howenstein St. Louis MO 63122 +Joanna Moore Venice CA 90291 +Jane Forbes Santa Cruz CA 95060 +Dorothy Laverdiere Virginia Beach VA 23452 +Beth Veeneman Tampa FL 33634 +William Barnes New York NY 10016 +jane SIRES somerville MA 02144 +Robyne Hamme Dryden NY 13053 +Virginia Ibarra Washington DC 20001 +Jacqueline Remington Waimanalo HI 96795 +Ron Rattner San Francisco CA 94109 +Ammishaddai Israel Arlington WA 98223 +scott herman new haven CT 06511 +Jean Taylor Washington Courthouse OH 43160 +SHARON & GENE Schoenick Las Cruces NM 88012 +Messiah Bane canyon country CA 91351 +Kelly Greene Charlotte NC 28209 +Betsy Roberts Medway OH 45341 +jo-lynne denapoli southborough MA 01772 +C Butterfield Richmond CA 94804 +A.E. White seattle WA 98112 +William H. Morrison BALTIMORE MD 21222 +ERIN YARROBINO OZONE PARK NY 11416 +Megan Walker Bellingham WA 98225 +Paul Alberts Hartsburg IL 62643 +Vickie Duke-Brown Coventry RI 02816 +Carolyn McAleavy Sebastopol CA 95472 +Kelley Scanlon Syracuse NY 13206 +Stephanie Simpson Paia HI 96779 +susan shepard Wellington FL 33414 +Dan Strimer Nashville TN 37206 +Lisa Winters Bothell WA 98011 +Roger Bentley Coloma MI 49038 +Roselene Haines Haines City FL 33844 +Leslie Slater Homer AK 99603 +jule vigness austin TX 78703 +Cynthia Karle Gainesville FL 32503 +Steven Jenison Dixon NM 87527 +Linda White San Luis Obispo CA 93405 +Jennifer Tava Saint Clair Shores MI 48082 +Kyung Lee Charlottesville VA 22902 +Charles Lawson Kent WA 98042 +Carol Robben Belleville IL 62220 +Kyung Lee Charlottesville VA 22902 +B. K. Johnston MADISON GA 30650 +Jim & Kathleen Pitre Queen Valley AZ 85218 +B. K. Johnston MADISON GA 30650 +Elke Saunderss Anchorage AK 99516 +Karen Derifield Sunnyvale CA 94085 +Marian Cruz Hollister CA 95023 +Bobbi Lempert Friday Harbor WA 98250 +Georgia Allen Santa Fe NM 87508 +Chris Weeber Golden CO 80403 +Grady O'Rear Lovettsville VA 20180 +Win and DiAnne FRANKLIN BOULDER CO 80304 +Loretta Koperdak Chicago IL 60643 +Eugene Richardson Eckerty IN 47116 +Jeff Wessman San Rafael CA 94901 +Michael Sutton Colma CA 94014 +Melanie Wirtz Pittsburgh PA 15221 +Alison Hagee Ravensdale WA 98051 +Shirley Gorski Livonia MI 48152 +Dale Figtree Santa Barbara CA 93101 +Rose M. Wessels O'Fallon MO 63366 +Francis Bertonaschi Pittsburgh PA 15207 +Kathryn LaBare Cincinnati OH 45220 +Donna Butler Coon Rapids MN 55433 +Jonathan LaBare Cincinnati OH 45220 +David Hind Westminster CA 92683 +Charlotte Xanders Davis CA 95616 +Shelley Alonso Santa Rosa CA 95404 +ann dutton olympic Valley CA 96146 +Denise Glass Perris CA 92570 +Tara McDonald Perth ON K7H +Charles Montgomery Evans WA 99126 +William Kanitz Bradenton FL 34209 +melanie mcamis portland OR 97211 +mikkel gredvig Tonasket WA 98855 +Spencer Earnshaw Kailua-Kona HI 96740 +jason green lORANE OR 97451 +patricia bogue southampton NJ 08088 +Melissa Copeland, RN Las Cruces NM 88005 +Ben Margolis Decatur GA 27510 +Chloe Merritt Chico CA 95926 +Sharon Koller Casselberry FL 32707 +Doris Murphy Myrtle Beach SC 29577 +Tammy Grigsby marquette KS 67464 +Marilyn Stoknes Bainbridge Island WA 98110 +Paul Albrecht Phila. PA 19128-3125 +Marguerite Winkel Spokane WA 99201 +Sallie Herson Windsor CT 06095 +Patricia Radloff Austin TX 78756 +Sonja Schlesner Lake Geneva WI 53147 +Janeen Casper Tucson AZ 85704 +Denise Berezonsky Berkeley CA 94705 +Claire Stone Oakland CA 94610 +olga kaczmar Newhall CA 91321 +charles kaplan Meriden CT 06450 +Pat Carlson Madison WI 53711 +Adele Jessup Palo Alto CA 94303 +Betty Wireman Laverne OK 73848 +Albert Ritchey, Jr. Vestavia Hills AL 35216 +Michelle Lefort Rochester NY 14615 +Louise Schultze Woodside ot 3874 +Jackie Pomies San Francisco CA 94122 +Samuel Shultz Thousand Oaks CA 91360 +Deborah Hayes Santa Cruz CA 95060 +Melissa Chisena Philadelphia PA 19144 +Anita Bandrowski Bradenton FL 34205 +Richard Ramage Plymouth MI 48170 +Lou'a Tuaima San Jose CA 95131 +Sara Betty Berenson San Francisco CA 94107 +Jesse Spears Austin TX 78735 +Linda Johnson-Rubick,RN,CEN Hotchkiss CO 81419 +Terry Evans Copperas Cove TX 76522 +joan o'toole fountain valley CA 92708 +Stephanie Fairchild Cambridge OH 43725 +Shana Clagg Oxford NC 27565 +lalania Carrillo denver CO 80218 +Robert Adjutant Conway NH 03818 +Judith Barker Dearborn MI 48124 +Jace Iversen Port Angeles WA 98363 +Gwendoline Sowray Olympia WA 98506 +Ruth A Rin Wynnewood PA 19096 +Diane Sullivan Oak Harbor WA 98277 +Gayle Janzen Seattle WA 98133 +Diane Schoonover Ipswich MA 01938 +Marcia M. Hertz Chicago IL 60657 +Jennifer Kassler Martinez CA 94553 +Yahanna Faith-Smith Cambridge MA 02139 +Antonia Wood Rainier WA 98576 +Carol Cann Winnetka IL 60093 +Michele Guggenheimer Santa Clarita CA 91350 +Kelly Ordway Whitefish MT 59937 +Julie Prather Richmond KY 40475 +Carolyn Maddux Shelton WA 98584-1741 +Mary Ann Douglas Shoreline WA 98133 +Aurelie Laurence Trinity FL 34655 +Marilyn Rainville Laguna Niguel CA 92677 +laura richardson deer lodge TN 37726 +Lona Callaway Durham NC 27707 +Sharon Lawlor Ypsilanti MI 48197 +Diane Thodos Evanston IL 60201 +Jill Hamilton Port Orchard WA 98367 +Mary Gordon Lawrenceville GA 30043 +Chad Larsen West Jordan UT 84088 +jennifer jensen Haiku HI 96708 +Luther Cowden San Diego CA 92103 +Sharilyn Stalling Eueka Springs AR 72632 +Alice Burkhart Fort Worth TX 76134 +Matt Rauch Ukiah CA 95482 +Angie Rubschlager Forest Grove OR 97116 +Merry Sawdey Cannon Falls MN 550097108 +kristin riggs sacramento CA 95816 +Bob Kopec Vallejo CA 94591 +e cogdill trevor WI 53179 +Eric Ford-Holevinski Ann Arbor MI 48103 +Detra Wilson Jacksonville FL 32225 +Lydia Garvey Clinton OK 73601 +Sharon Murray Lakeland FL 33807 +Sharon Murray Lakeland FL 33807 +David Boito Woodland Hills CA 91364 +Eileen Mello Oakland CA 94606 +Marv Anderson Garden Ridge TX 78266 +Margaret Ceniceros Turlock CA 93580 +Nick Thabit Brooklyn NY 11215 +Nick and Maria Yanez- Mavrakis Elk Grove Village IL 60007 +William Ames El Cerrito CA 94530 +Cathy Scheer Selden NY 11784 +Cindy MacDonald Bethesda MD 20816 +Keith Little Garden Valley CA 95633 +jen lumpkin MIDLOTHIAN VA 23113 +Robert Wendell Charlotte NC 28277 +Peggy Kass Oakland CA 94602 +Katharine Gates Scottsdale AZ 85255 +kathy & Duane berg goldendale WA 98620 +Nick and Maria Yanez- Mavrakis Elk Grove Village IL 60007 +micheal sunanda Eugene OR 97402 +Hillory Rex Canyon Country CA 91387 +Aisling Wharton Brooklyn NY 11215 +dorothy Crisp Huffman TX 77336 +caroline haun linden PA 17744 +Matt Auerbach Palo Alto CA 94306 +winnie foster st petersburg FL 33705 +Cathy Scheer Selden NY 11784 +Carol Morrisey Spring Arbor MI 49283 +Beth Wallace Treadway TN 37881 +Lisa Muccini Eliot ME 03903 +Richard Berggren maplewood NJ 07040 +Jeff Keitges Seattle WA 98105 +Delmar Marshall Madison WI 53716 +Maxanne Fox Conyers GA 30013 +Mary Eaton Fairfield Oakland CA 94610 +Rita Reilly Egg Harbor Township NJ 08234 +Katherine King Rainier WA 98576 +Elizabeth Neer Urbana OH 43078 +Michael Winter Albuquerque NM 87112 +Katy Robling Nixa MO 65714 +Roger Bassett Sonoma CA 95476 +Jo Malik Naperville IL 60540 +A. Hembree Tacoma WA 98403 +Johanna Wigman Cocoa Beach FL 32931 +JeanneM Irons Exmore VA 23350 +Natalie Brunk GILBERT AZ 85234 +Arnold Welber Sunrise FL 33351 +Lys Burden High Springs FL 32643 +Ken Vollmer San Francisco CA 94118 +Patricia Sigala Santa Fe NM 87505 +Mark Schoofs Santa Rosa CA 95405 +Susan Meyer St. Louis MO 63125 +Rose Stading Lockhart TX 78644 +Nethal Abdul-Mu'min Nantucket MA 02554 +Hannah Hobbs Wantage NJ 07561 +jacquelyn kington hot springs MT 59845 +Joseph Gibbs Fairview Heights IL 62208 +Emily Dale Franklin NC 28744 +Elizabeth Krome Toano VA 232168 +Angela URban Charlotte NC 28227 +David & Judith Laws Bellingham WA 98229 +Dolores Pieper Franklin IN 46131 +paul theys green bay WI 54302 +Alex Won San Francisco CA 94104 +Erika Lechuga DiSalvo Kihei HI 96753 +Carrie Jordan Los angeles CA 90041 +amira boskovski mesa AZ 85210 +Emika Abe Palo Alto CA 94303 +Janis Anton Chicago IL 60613 +Kat Stephens Santa Rosa CA 95404 +Diane Nolting Orinda CA 94563 +susan lauck Annapolis MD 21401 +Karen Swartz Parma MI 49269 +Blaine Whittle Macon GA 31204 +Dean Mindock Collinsville IL 62234 +Annette Cullipher Balsam Grove NC 28708-9657 +Patti McGauley Lakeland FL 33813 +John Damico Dousman WI 53118 +Debbi Damico Dousman WI 53118 +Jennifer Wolfe Seattle WA 98106 +ian smith gibbstown NJ 08027 +Chad Sweet Reno NV 89509 +Karen Lux Chicago IL 60643 +Lisa McDaniel Los Angeles CA 90065 +Christa Hladky Colome SD 57528 +Suzanne Clark bloomfield MI 48302 +Diane Ryan Fredonia WI 53021 +Frederick Ruch North Olmsted OH 44070 +Stuart Lubin Los Angeles CA 90036 +Laurie McArthur Bend OR 97701 +Julita Jones Laguna Beach CA 92651 +Gloria Faltstrom Kaneohe HI 96744 +Gloria Faltstrom Kaneohe HI 96744 +Cheryl Maslin Susanville CA 96130 +norma marshall greeensboro NC 27407 +Thomas V. Connor Wallkill NY 12589 +Robert Bardin New York NY 10025 +Pamela Wilson Laurinburg NC 28352 +Robert Godes berkeley CA 94705 +Olivia Loria Pine CO 80470 +Edward Waxman York PA 17406 +Mary Meier Seattle WA 98144 +Sarah Richardson Bellingham WA 98226 +Amanda Meyer Olympia WA 98506 +Susan Russell Mountlake Terrace WA 98043 +susan wedell san diego CA 92107 +Judith Arcana Portland OR 97212 +Michele Sayre Dallas TX 75248 +Anna Sheppard Truckee CA 96161 +mike zeoli Austin TX 78741 +Melissa Trauth Stevensville MT 59870 +corey waggoner mercer is WA 98040 +Barbara Clark Novato CA 94945 +Darlene Toth Saskatoon SK S7M0A4 +THOMAS GOMPERTS ROSLINDALE MA 02131 +Mike Eyrich Littleton CO 80127 +Josephina Castellano Santa Clara CA 95050 +Josh Fossgreen Rohnert Park CA 94928 +Fuoad Shashani Kent WA 98032 +Cynthia Wagner Santa Fe NM 87505 +Debby Bradford Hopland CA 95449 +donna emig gibraltar MI 48173 +Ann Kreutz Aurelia IA 51005 +Steve Tyler Orange CA 92865 +Judy Dragon Santa Rosa CA 95401 +Catherine Dawson-Laframboise Boulder CO 80305 +GAIL JACKSON ENCINITAS CA 92024 +susan godes berkeley CA 94705 +Jean Goetinck Tucson AZ 85746 +Barbara Abersold Boise ID 83702 +Shannon Magnante morro bay CA 93442 +Sarah Page Portland OR 97215 +Steve Aydelott Bend OR 97701 +Taris Harlow Ansonia OH 45303 +Elizabeth Davis Sterling VA 20164 +Richard Gase Tucson AZ 85716 +Craig Scheunemann Chicago IL 60618 +Katie Romanchuk Haiku HI 96708 +Kathy Denison Houston TX 77008 +Judy Freeman Teaneck NJ 07666 +Beth Friedland Newcastle WA 98056 +Kent Blystone Milwaukee WI 53212 +T Miller C Gables FL 33114 +T Miller C Gables FL 33114 +Alice McElroy Sequim WA 98382 +Gabriel Moreland Follansbee WV 26037 +Alix Dobkin Woodstock NY 12498 +Robert Periano Augusta GA 30904 +Timothy Gray Overland Park KS 66212 +wendy alward anchorage AK 99508 +ellen ohara lake oswego OR 97035 +angela mirabella astoria NY 11102 +Tanya Burton Marbury AL 36051 +Serena Elize Flores San Rafael CA 94901 +Kathleen Martin Shingle Springs CA 95682 +Stephen Gruen New York NY 10012 +Hilary Entley erie PA 16507 +Nancy Claire Exeter NH 03833 +Caroline Dixon Santa Monica CA 90402 +James Redding Tucson AZ 85742 +Susan Duehl Milwaukee WI 53208-3008 +Eric Newman Bozeman MT 59715 +Jessica Donelson eugene OR 97402 +Kathryn McLaughlin Portland OR 97206 +Brian Jones San Jose CA 95120 +Douglas McCorkle E. Dummerston VT 05346 +Ann Hale Pinon Hills CA 92372 +Tammy Jarecki Altoona WI 54720 +Margery Winter Sacramento CA 95819 +Robyn Rosenblum Alexandria VA 22302 +Marcella Hammond San Diego CA 92104 +Anthony Phillipson San Rafael CA 94903 +Marién Grace Petaluma CA 94952-1218 +DENNIS CHRISTIE NEWCASTLE CA 95658 +Susan Fritts Roeland Park KS 66205 +helene ly alhambra CA 91801 +Sharon Murray Lakeland FL 33807 +Sharon Murray Lakeland FL 33807 +Dave edwards portland OR 97222 +meaghan simpson Eureka CA 95501 +Lauren Verruni Mount Pleasant Mills PA 17853 +Noelle Morris Menlo Park CA 94025 +Carrie blackmore hamilton NY 13346 +Elizabeth Kline Lyndora PA 16045 +STephen Pullis San Francisco CA 94114 +Vanessa Mori pasadena CA 91104 +James Britt Commerce City CO 80037 +Judi Bass Deer Park TX 77536 +E. Marshall Davis CA 95618 +David Kennedy Phoenix AZ 85015 +Sylvia Sage Elma WA 98541 +Robert Aaron Santa Cruz CA 95060 +Melissa Reynolds Chattanooga TN 37405 +Erinne Goodell Portland OR 97211 +Phyllis Montague Del Mar, CA 94014 +Jaci Guerena Corvallis OR 97333 +Gerrit Pang Honolulu HI 96822 +Tom Ranieri Hinsdale IL 60521 +Alice Walzer Sanibel FL 33957 +Lauren J Sullivan Santa Maria CA 93454 +Robert Smith Haleiwa HI 96712 +David Martinez Panorama City CA 91402 +Cecilia Joyce San Francisco CA 94114 +Craig Joyner Moscow ID 83843 +Constantin Parvulescu Seattle WA 98102 +Joseph Holzer Petaluma CA 94952 +Julie Bazuzi Port Townsend WA 98368 +Matthew Coplan Cuyahoga Falls OH 44223 +Richard Whiffen Naples FL 34114 +chelsea clark victoria BC v9a 7m7 +Brian Lutenegger Seattle WA 98109 +Kristine Keeler Dayton OH 45410 +Jenny Powelson Red Feather Lakes CO 80545 +Gary L. Morse Sr. Albany NY 12204 +Susan and George Carey Tenants Harbor ME 04860 +Wendy Bolt Burbank CA 91505 +K. Craig ILES Port Arthur TX 77642 +Joaquin Robles Lowell MA 01851 +thomas lauver middleburg PA 17842 +Bonnie Koshofer Schenectady NY 12305 +Dawn Hagan Lyons CO 80540 +Gwendolyn Collins Belleair Bluffs FL 33770 +Cindy Funkhouser St. Petersburg FL 33710 +Barbara Vaile Walpole NH 03608 +Lisa Loos Edmond OK 73025 +Lee Jenkins deeri ng NH 03244 +Aubrey Lowen Leetsdale PA 15056 +Cynthia Mead Atlanta GA 30307 +jean public florham park NJ 07932 +Peggy Thurman Salem VA 24153 +John Clute Merritt Island FL 32953 +Nancy Wygant Philadelphia PA 19143 +Carolyn Kohn Morristown NJ 07960 +Wendy Andersen Jericho VT 05465 +Shelley Brown Kenosha WI 53142 +Lisa Cowdrey Sneads Ferry NC 28460 +joseph cekentano Lebanon CT 06249 +Paul Crumrine Winter Park FL 32789 +Patricia Phillips Kent OH 44240 +Anda Friedman Cambridge MA 02139 +Joanie Manning Columbiana AL 35051 +Stephanie Kurth Nashville TN 37215 +Tracy Brouillard North Scitaute RI 02857 +Mary Hooley Columbia MO 65203 +Teresa Groshans Atlanta GA 30306 +Kay Garrity-Roth Lititz PA 17543 +Shawn Porter Parthenon AR 72666 +Dennis Ledden Rancho Murieta CA 95683 +Kristin West Whites Creek TN 37189 +Elisabeth Boyle Canton OH 44709 +Jaya Shoong Sandpoint ID 83864 +Jennifer OHara Chicago IL 60626 +William Krul Narragansett RI 2882 +Jennifer Braverman Syria VA 22743 +Ellen Hunt Chagrin Falls OH 44022 +David Kaye redding CT 06896 +Todd Weinstein Los Angeles CA 90066 +Nina Otazo Eugene OR 97405 +Elisabeth Boyle Canton OH 44709 +Sarah Tynes Decatur GA 30032 +Frances Costelloe Rensselaer NY 12144 +Carol Longworth London ON N6J 3L8 +Scott Ross Miami FL 33170 +Christel Trutmann Ithaca NY 14859 +Richard Spindler Bemidji MN 56601 +Karen McCarthy Longmeadow MA 01106 +Gail Ernevad Williston VT 05495 +Álvaro López Galisteo NM 87540 +April Brumson Putney VT 05346 +Ethan Myer Lancaster PA 17602 +mary michaud south acworth NH 03607 +Sarah LaBelle Oak Park IL 60302 +Emily Fueger Longwood FL 32779 +Martha Goodale Monroe ME 04951 +Mary Ann Bayer Chappaqua NY 10514 +Yvonne Lewko Montross VA 22520 +Martha Carson Andover NH 03216 +Esther Marshall Newfield NJ 08344 +Cashin Hunt Winston-Salem NC 27103 +Donna Ortiz Chicago Heights IL 60411 +Patricia Jensen Longmont CO 80501 +Amanda Turner Alabaster AL 35007 +Lura Irish Lakebay WA 98349 +Nicole Denison Madison WI 53705 +Richard Frost Alfred ME 04002 +r kimball prescott AZ 86304 +Mickey McCaig Naples NY 14512 +Christine Rubenstein Loveland OH 45140 +George Harper Indepencence IA 50644 +Patricia Macaluso Ansonia CT 06401 +Erin McBee North Andover MA 01845 +Helen Cox Peoria IL 61614 +Donita Herr West Hartford CT 06107 +Kenneth Lake Little Rock AR 72205 +Lee Aloni Cooper City FL 33328 +Mara Beldavs Shorewood WI 53211 +Matt Danielson Marquette MI 49855 +Lorris Weppelmann orlando FL 32836 +Lisa Merle Millwood NY 10546 +Hannah Ginder Myerstown PA 17067 +Cindy Kessler Socorro NM 87801 +Melissa Gordon Oak Park IL 60302 +Julie Schoenstein Englewood FL 34223 +Margaret Sawyer East Haven CT 06512 +Lydia Lang South Bend IN 46615 +Neva Redding Port Angeles WA 98362 +Michelle Emrich Atlanta GA 30309 +Dolores Lacy Smyrna GA 30082 +Edward Berbaum Montrose PA 18801 +Deb Friedman Takoma Park MD 20912 +Melissa Starr Duluth MN 55805 +Karen DiGloria-Kantrovitz Trinity FL 34655 +Thomas Hall Leicester NC 28748 +LINDA OLDS FRENCH CAMP CA 95231 +J Jacobs st paul MN 55106 +Gayle Simons Philadelphia PA 19144 +valerie McAndrews Philadelphia PA 19102 +Lisa Brathwaite Stone Mountain GA 30083 +Perry Chapdelaine Fairview TN 37062 +Dennis Voss Bloomfield Hills MI 48302 +Andrea Loft Amsterdam NY 12010 +Kathy Olson Tucson AZ 85705 +Lee Wichman Chicago IL 60640 +Maria Stahl Montpelier OH 43543 +Kathy Lindler Chapin SC 29036 +Michele Danels Brooklyn NY 11237 +Carol Hartwell Mechanicsburg PA 17055 +Victor Hunter Burlington IA 52601 +Victor Hunter Burlington IA 52601 +Denise Flood Miami FL 33157 +Susann McCarthy Taos NM 87571 +Shira Nafshi Lebanon NJ 08833 +Amanda Stevens Silver Spring MD 20912 +mark zeltner asheville NC 28805 +Susan Weisenburg Cleveland Heights OH 44106 +Sybil Schlesinger Natick MA 01760 +Cliff Beneventi Jacksonville OR 97530 +Heidi Newton Toronto ON M4R 1M7 +Linda Shirkey Northport MI 49670 +Margaret Adams Topsham ME 04086 +Jen Petry Louisville KY 40204 +Rebecca Stoner gurnee MN 55604-0179 +sunny gogel Hurley MO 65675 +Erik Rosen Pittsburgh PA 15218 +rachelle ward vail AZ 85641 +Lynn Retzlaff Janesville WI 53546 +Gwen Payne Sedona AZ 86336 +Heidi Britt Mullican Santa Fe NM 87505 +Helena O'Reilly Saint Louis MO 63119 +Katrina Kluzik Alexandria VA 22303 +Lisa Cannata sandwich MA 02563 +Julie Perry Orlando FL 32810 +Lev Zelikman Fanwood NJ 07023 +Scott Revolinski Milwaukee WI 53217 +moira thiele bondville VT 05340 +BLanca Valbuena hoboken NJ 07030 +Dee De Angelo hoffman estates IL 60195 +liam pelot atlanta GA 30306 +Joshua Najacht Bowling Green OH 43402 +Jeffrey Fedorko Massillon OH 44646 +John Belanger Dania FL 33004 +Pamela Gibson Little Rock AR 72205 +Jennifer Hutson Carmel IN 46033 +Helen Schulte Ypsilanti MI 48198 +charles faris roslindale MA 02131 +edward schmidt kearny NJ 07032 +Judith Bechtold Glen Allen VA 23059 +Dianne Plantamura Groveland MA 01834 +Ike Fazzio Pine Plains NY 12567 +Glenn Smith Portsmouth NH 03802 +cindy sanson middleburg FL 32068 +Karen Dugo Chicago IL 60630 +joseph collins chelmsford MA 01824 +Michael Weitz White Sulphur Springs MT 59645 +Carole Prisco Snohomish WA 98296 +Chris Albrecht Wellesley ON N0B 2T0 +susan mcdonald nashville TN 37212 +Heidi Ellrich Alna ME 04535 +Sean Hudson Portland OR 97214 +Marianne Jones Newton NJ 07860 +Jennifer Thompson Attica MI 48412 +Rick Klein Ripton VT 05766 +Deanne Rosselli Stuart FL 34997 +Andrea Marz Jenison MI 49428 +CAROLYN HAWK NEW FRANKEN WI 54229 +Romola Georgia Palo Alto CA 94306 +Jacque Miller Clinton OH 44216 +sharon Gentry Atlanta GA 30307 +sebastiano picciuca holland MI 49424 +Tom McIntyre LOS ANGELES CA 90068 +Dorothy Dankanyin Enfield CT 06082 +Marisol Brugmann Old Tappan NJ 07675 +Cheryl Viering Mobile AL 36695 +Riva Segall NY NY 10025 +Jeanelle Correll Rockford IL 61104 +Deborah Vance Towson MD 21286 +Melissa Curry Albuquerque NM 87108 +Laura Lassiter Tampa FL 33606 +Mary M. O'Dea Annapolis MD 21403 +Prescott H. Paine Peaks Island ME 04108 +Katherine Nolan Cupertino CA 95014 +Jaye Gilmore Auburn ME 04210 +Irene Dougal Bellport NY 11713 +Julio Rodriguez Fort Lauderdale FL 33334 +Debra Belmonte Yorkville IL 60560 +Julie Larson FORT WAYNE IN 46805 +Jan Perozeni Corbus Scottsdale AZ 85262 +Carol Pylant Madison WI 53711 +Deborah Kennedy Guilford CT 06437 +susan johnson edina MN 55424 +Robin Russo Ava NY 13303 +Jack Wolfson Scottsdale AZ 85255 +Denise Sullivan Miami Beach FL 33141 +LISA LAND FLINT MI 48507 +MaryAnne DellaFera Pueblo CO 81004 +Susan Wiste Farwell MN 56327 +Rachel Sue Ritz Allentown PA 18103 +Ryan Andrews Westminster CO 80021 +Mary Rex Naperville IL 60565 +Chris Ramstein Genoa IL 60135 +Melissa Wiley Charlottesville VA 22902 +Jeanne Treadway Dixon NM 87527 +tine thevenin lake City MN 55041 +Christopher Gaddess New York City NY 10011 +donna panza santa fe NM 87508 +Marilyn Barry Pecos NM 87552 +Wuenstel Jack Pittsburgh PA 15220 +Mark Kessler Monticello FL 32344 +Mary Romine Denver CO 80236 +Byron Delaney Santa Fe NM 87507 +Janice Mackanic Jersey City NJ 07305 +Linda Griffith Dixon NM 87527 +Dana McConnell La Crosse WI 54601 +Jean Herzog Sheboygan Falls WI 53085 +Ron Main Mystic IA 52574 +Martie Wagner Ashland NE 68003 +Susan Turner Miami FL 33189 +Martie Wagner Ashland NE 68003 +Veronica Meehan-Litras East Stroudsburg PA 18301 +cindy arnett sarasota FL 34232 +Barbara Fitzpatrick Fayetteville AR 72703 +Carol Stillman Murray UT 84107 +Melanie Johnson Jacksonville FL 32256 +Julio Gallardo San Diego CA 92139 +Barbara Campbell Vidor TX 77662 +kathy moore los angeles CA 90027 +Carla Bloom Traverse City MI 49684 +Anne Aganon Hailey ID 83333 +Dorothy Hanes West Linn OR 97068 +Seth Anapolle Newton MA 02465 +Erica Dobrzanski Stow OH 44224 +Elizabeth Korza San Francisco CA 94131 +Jill Stiller Sandy OR 97055 +Robert Cooper, Jr. Williamstown NJ 08094 +Carolyn Schmitz Prescott AZ 86302 +Vanessa Barr San Antonio TX 78216 +Connie Dominguez Hillsborough NJ 08844 +Jessy Yancey Brentwood TN 37027 +Melanie Myjak Flint MI 48504 +Liz Sigel Huntington Beach CA 92647 +Dorelle Rawlings Aptos CA 95001 +Marilynn Marsh Madera CA 93638 +Barbara Matteson El Paso TX 79912 +Miles Chapuis Kentfield CA 94914 +Aaron Beverly Mount Shasta CA 96067 +mavis pas Oakridg OR 97463 +David W. Bbarber Flint MI 48506 +Sheri Fogarty Encintas CA 92024 +Brian Gibbons Greenbelt MD 20770 +Jenny Wilder Apple Valley CA 92308 +Meema Spadola Brooklyn NY 11218 +Ursula Dieterle Noxon MT 59853 +Fred Wohl Louisville CO 80027 +Jane Moodie Eugene OR 97402 +Elaine Kittredge Chicago IL 60611 +Sallie Cooper Polk OH 44866 +Lyn Riverstone Corvallis OR 97333 +Doree Lipson Kalamazoo MI 49008 +Cecilia Boldt Belmont Hills PA 19004 +Nicky Ray Mattawamkeag ME 04459 +michelle french Oliver Springs TN 37840 +MJ Ibarguen Altamonte Springs FL 32714 +Patrick Stine Greencastle IN 46135 +Andrea Amavisca palm springs CA 92263 +Tracy Tyree Jeffersonville OH 43128 +Mark Fisher Flint MI 48503 +Nancy Gilbert Grass Valley CA 95945 +Laura Syperda Tillamook OR 97141 +Doug Fine Mimbres NM 88049 +Anastasia Karas sarasota FL 34232 +Robert Wiedenmann, SR Northford CT 06472 +Beth Franks Cincinnati OH 45215 +eric diaz la jolla CA 92092 +andrea bevacqua brick NJ 08724 +Sonia Jersey Callahan FL 32011 +Julia Eidukas Bend OR 97701 +Patrick Bair Harrisburg PA 17110 +Clare Maxwell Brooklyn NY 11209 +Jennifer Burns Atlanta GA 30307 +susan rigali reseda CA 91335 +Julie Smith Los Osos CA 93402 +Cindy Gale Marietta GA 30008 +Lorraine Filipek Oro Valley AZ 85755 +Olga Rohn San Diego CA 92101 +Barbara Schultz Berwyn IL 60402 +Debbie Fletter Bethesda MD 20814 +Nathaniel Holder Portland OR 97211 +Karl Gross Marietta GA 30008 +Linda McGlynn Lake Worth FL 33467 +Robert Lincoln Rutland VT 05701 +Melissa Rosenkranz Madison WI 53703 +Ellen Fisher Fall Branch TN 37656 +Achmad Chadran Harvard MA 01451 +Joselyn Schutz Alpharetta GA 30022 +curtis priddy jupiter FL 33458 +Amy Williams Ada MI 49301 +Linda Horn Spencertown NY 12165 +Kandice Thompson Richwood OH 43344 +Kim Cowern Lafayette CO 80026 +Deborah Gonzalez Castro Valley CA 94552 +Rhea Green UKIAH CA 95482 +Maura Ellyn High Falls NY 12440 +Deborah Sweet West Plains MO 65775 +KIM COSTANZO STATEN ISLAND NY 10302 +Cheryl Lopate Boaz AL 35957 +hannah hardaway jackson WY 83002 +Tammie Hutto Egloff St. Charles MO 63301 +Wendy Lessard Ellsworth ME 04605 +Sandra Porter St. Petersburg FL 33713 +Colleen Leer Eugene OR 97401 +Timothy Geib Asheville NC 28801 +Ann Gould Croton NY 10520 +Elizabeth Gilthvedt Owatonna MN 55060 +Joseph Vincze North Brunswick NJ 08902 +Amara Wagner Carlstadt NJ 07072 +nieves hagmeier oakland CA 95558 +Robert ruiz miami FL 33174 +TIMOTHY Ramsey Marysville OH 43040-8007 +Nancy Deines Sheridan WY 82801 +Barbara puett austin TX 78746 +Melody Allen Dripping Springs TX 78620 +susan esrey boulder CO 80302 +Jan Wright Coyote NM 87012 +Mitchell Lopate Boaz AL 35957 +Adrienne Ward Austin TX 78723 +Bryan Reed Grand Junction CO 81503 +Ursula Waln Peru NE 68421 +Christopher Szymberski telluride CO 81435 +Bruce Haldane Spicewood TX 78669 +Cynthia Lam uniontown PA 15401 +Barbara Comnes Chicago IL 60614 +V. Alexander Albuquerque NM 87192 +Jill Goldman Stoneham MA 02180 +garret sorensen winona MN 55987 +kirstie wadsworth fairmont WV 26554 +Beverly Wilson Marysville KS 66508 +Sheldon Rutter Silver Spring MD 20902 +Sheldon Rutter Silver Spring MD 20902 +Linda Haas Georgetown IN 47122 +mandy haskins altamont TN 37301 +amy spieker norfolk VA 23502 +Daniel Lipson Kalamazoo MI 49008 +Nandi Devam Berkeley CA 94710 +Len Surdi Bellingham WA 98225 +marion harrison dallas TX 75217 +Marlene Cradic Chattanooga TN 37421 +Gabriel Bowers Olympia WA 98506 +cheri chase ingram TX 78025 +Marie Cochran Bellevue WA 98007 +Annah Carnegie Wichita KS 67207 +Stephanie Danley Jacksonville FL 32225 +Dylan Lundy Oakland CA 94602 +Vira Confectioner Sunol CA 94586 +Alyce Gray Las Vegas NV 89128 +Christy Zollar Denver CO 80206 +Kathryn E. Pizzi Bristol RI 02809 +Daphne Boldt Kalona IA 52247 +Doug Armstrong Lancaster PA 17601 +Earl Rosenwinkel Duluth MN 55805 +Susan McCosky Mt. Prospect IL 60056 +Jamie Baker Martinsburg WV 25405 +Tracy Jurasek apple valley CA 92307 +Jean Marr Corvallis OR 97333 +Suzanne Ferroggiaro Granite Bay CA 95746 +George Stadnik Long Island City NY 11103 +Louise Sherman Sandy Ridge NC 27046 +Jayne Sowinski monroe twp NJ 08831 +Isabella Jean Boston MA 02124 +Charlotte Layton FRONT ROYAL VA 22630 +Diana Fruh Colorado Springs CO 80919 +Chris Webber minneapolis MN 55407 +Joahann Thompson Ashland OH 44805 +Dena Odell Carrizozo NM 88301 +Rob Hill Thornhill ON L3T 1X7 +Patti Spaniola Pensacola FL 32514 +Jane Starratt Markleeville CA 96120 +francis w. johnston manistee MI 49660 +Diana Wilson Marion IA 53202 +Kelly Mulheren Mechanicsville VA 23111 +Mary Kirby Virginia Beach VA 23464 +Judith Graham Morro Bay CA 93442 +N.J. Mac Eugene, OR 97405 +Sheila Peterson Citrus Heights CA 95610 +Jerry Nolan Cottage Grove MN 55016 +Kathleen Pfoutz Maple Shade NJ 08052 +David Hunter Arlington TX 76006 +Nadia Jaudoning New Albany IN 47150 +Isabella Iverson Dallas TX 75243 +Gary Don Popken Dallas TX 75248 +Judith & Jeffrey baron & schmitt Albuquerque, NM NM 87108 +Lucy Gill Oakland CA 94619 +J. K. Stoll Conifer CO 80433 +Brenda Watson Lubbock TX 79423 +Terri Lloyd los angeles CA 90042 +Richard Brown LONG BEACH CA 90808 +Jerry Best penrose CO 81240 +Carrie Blackburn Westerville OH 43081 +Tracey McCullick Austin TX 78731 +lisa oconnell derby VT 05829 +Patricia Chelmecki Elburn IL 60119 +Mary Baechle Cary IL 60013 +Angela Henson Lexington KY 40509 +Nancy Gilbert Grass Valley CA 95945 +Kristine Soly Yarmouth Port MA 02675 +THERESA AVRIL Carson City NV 89702 +Jerry Gibson Boise ID 837136610 +P Shula Washington MO 63090 +Donna Beezer Carbondale CO 81623 +delores schnoor chester MD 21619 +Madelyn Gratop Canton OH 44703 +Clare Coriell Asheville NC 28805 +Christina Schmaltz Boise ID 83706 +Lois Uriarte Wrightwood CA 92397 +Benjamin Conrad Cincinnati OH 45223 +delores schnoor chester MD 21619 +Linda Sotis Hillsdale NY 12529 +jennifer hitchcock greenbrae CA 94904 +terry hunt Chandler AZ 85248 +terry hunt Chandler AZ 85248 +Wanda Waldman Haines City FL 33844 +jim markley overland park KS 66202 +Mia DiStasi Chicago IL 60644 +Barbara Crow Duluth MN 55804 +Malini Chatterji Brownsville TX 78526 +Joyce DuBois Red Wing MN 55066 +Zita Xavier Bayfield CO 81122 +Gerald Forsburg Mount Jackson VA 22842 +Mindy Kelly Boulder CO 80303 +Linda Garrett Valley City OH 44280 +Nancy Ericksen Bellevue WA 98006 +Bob Atwood Paonia CO 81428 +Joseph Merz Fergus Fallls MN 56537 +Ayla Nereo Oakland CA 94609 +Nancy Gingrich Sebastopol CA 95472 +jackie verrico morristown VT 05661 +Jasper Jones Phiiladelphia PA 19101 +Dennis Decelle Nevada City CA 95959 +Caroline Carbone tolland CT 06084 +Rachel Ford Portland OR 97293 +Darius Ginwala Manchester NH 03103 +Devin McGuire Bloomington IN 47408 +Marcia Pratt Willits CA 95490 +sarah wiczek minnetonka MN 55345 +Karen Arnold Akron OH 44319 +Jason Faith Billings MT 59101 +Kathleen Francis Mpls MN 55416 +Mary Forthofer Longmont CO 80503 +judith green kirkland WA 98034 +Marilyn Young Caro MI 48723 +Dozier Bell Waldorobo ME 04572 +Deborah Magocsi Red Oak TX 75154 +Julie Ball Boulder Creek CA 95006 +Tureeda Mikell Oakland CA 94610 +Sarah Wolfe South Orange NJ 07079 +Gloria Perry Federal Way WA 98023 +Leslie Sheridan Sonoma CA 95476 +Lori DeQuaker Fletcher NC 28732 +Patricia Reed Chappaqua NY 10514 +Tracy Williams Baytown TX 77521 +Kristy Borton Peoria IL 61614 +Steven Duran Denton TX 76209 +Eliza Stewart Corrales NM 87048 +Amy Skoglund Everson WA 98247 +leigh fredrickson new york NY 10128 +Sandra Turk Waldport OR 97394 +Jeff Kelemen Albuquerque NM 87106 +Lisa Larimore Boise ID 83714 +David Warnke Ann Arbor MI 48108 +Andrea Kramer Calimesa CA 92320 +David Sheppard Tooele UT 84074 +Sue West Wiscasset ME 04578 +Janet Estelle Kingsport TN 37660 +Elizabeth Lukowski Albany NY 12208 +Bill and Jan Tache Big Sur CA 93920 +Stephenie Chague Eureka CA 95503 +Mary Hetzel Stevens Point WI 54481 +Tricia Bishop Seattle WA 98107 +Mary Cuchna Homerville OH 44235 +Alan Petrillo St. Petersburg FL 33702 +Joanna Kidd San Marcos TX 78666 +Elizabeth Robins Chesterbrook PA 19087 +Dawn Bellemare Taylor TX 76574 +Nyla Jebousek Newport OR 9 +Richard Wagner Jr Warrenton OR 97146 +Barbara Green Clatskanie OR 97016 +Kathleen Standard Three Rivers MI 49093 +Jessica Powell Santa Cruz CA 95062 +RozAnn Stricherz Sioux Falls SD 57106-0853 +Maxine Nicholson Seatlle WA 98105 +William Morrison E Dummerston VT 05346 +lynn bytyci los angeles CA 90019 +Anne Britt Oro Valley AZ 85737 +priya drews Flagstaff, AZ 86001 +Lori Stanford Columbia MD 21045 +Sara Wolfe Boulder CO 80306 +Virginia Cowie Grand Blanc MI 48439 +Rob Cullen Pittsburgh PA 15224 +D. Meier Cedar Falls IA 50613 +Chrys Bailey Paonia CO 81428 +Dan Glenboski Cleveland OH 44127 +charles barfield carrollton GA 30117 +Nichole Hoch Columbus OH 43209 +Shirley Petrie Bowser BC V0R1G0 +Noel Levan Harrisonburg VA 22801 +Rita Carey Prescott AZ 86303 +Kendall Brown Waco TX 76710 +Jennifer kelly COLORADO SPRINGS CO 80909 +Susan Christopher Kerrville TX 78028 +Michael Quinn Burbank CA 91502 +KEN WILKINS LOCUST GROVE GA 30248 +Meg Brizzolara San Quentin CA 94964 +AJ Wischmeyer Buckeye AZ 85326 +* Zentura Casper WY 82604 +Robert Nave Cincinnati OH 45244 +oona squire Fairfax CA 94930 +Margaret Riccardi Skillman NJ 08558 +Stephanie Ulmer Pittsburgh PA 15218 +Sylvia Haven Seattle WA 98125 +James Smith Scotts Valley CA 95066 +Terry Booker Plymouth MN 55447 +David Murphy Lincoln NE 68508 +Sandra Xenakis Chelsea MI 48118 +Sonia Ness Elk Grove Village IL 60007 +j.a. hoffman gulf breeze FL 32563 +Desdra Dawning Queen Creek AZ 85242 +cathy doerrman Cleveland OH 44139 +Andy Lynn Douglasville GA 30135-1108 +William Schmidt Everett WA 98205 +brandy ecker middle river MD 21220 +Dan Hess Seattle WA 98116 +C. Cory Craig Seattle WA 98106 +Michelle Goodwin Santa Cruz CA 95062 +Demetra Vagias Forest Park IL 60130 +Jenny Berggren Brooklyn NY 11222 +Dolores Borso Medina OH 44256 +Janis Slutsky Mendham NJ 07945 +Susan Harris Olympia WA 98502 +David Brownstein Los Angeles CA 900066 +Alex Samarin Culver OR 97734 +John Golembieski East Hampton CT 06424 +Elke + Robert Rafferty iron River MI 49935 +Edward Reid Berkeley CA 94703 +Lizabeth Kennedy Sunnyside NY 11104 +Virginia Lawrence Albuquerque NM 87106 +Krista Bowers Salt Lake City UT 84103 +Donna Palmer Cape Girardeau MO 63701 +elisabeth alameda saratoga CA 95070 +Jerrid Hawkmoon Grants Pass OR 97526 +elisabeth alameda saratoga CA 95070 +Donna Palmer Cape Girardeau MO 63701 +James Beach Boise ID 83712 +Bernadette Shoemate Santa Cruz CA 95062 +Margie Coughlin Mount Holly NJ 08060 +Frances Sowa Evergreen Park IL 60805 +criss middlekauff wichita KS 67211 +Michelle Pelot Atlanta GA 30306 +Kenneth Duke Carrollton GA 30117 +Linda Miller Pataskala OH 43062 +Dana Silvernale Blue Lake CA 9 +Alvin Hadad Oakland CA 94610 +Yolanda Parker Port Hueneme CA 93041 +Karen Elcaness San Francisco CA 94114 +Marjorie Leventry Athens GA 30606 +Deborah Pendrey Oak View CA 93022 +Roberta Gates Albany GA 31721 +Erline Towner Milford NH 03055 +Connie Moorrees Apple Valley CA 92308 +Marisa Irwin McDonough GA 30253 +Amanda Bednarz Medford MA 02155 +Emily LaBrenz Sterling MI 48659 +Deborah Dearing Santa Rosa CA 95405 +karen dinsmoor tucson AZ 85746 +Kathryn Reilly Cambridge MA 02140 +Barbara Paquet WAYNE NJ 07470 +Kristin Fredrickson Vancouver BC V5K 3Z6 +James Skalsky Athens OH 45701 +aubrey thomason ypsilanti MI 48197 +Peggy Schindler Asheville NC 28803 +Molly McKenna Santa Cruz CA 95060 +Daniel Krill Hartland WI 53029 +Douglas Conte Kingsport TN 37660 +serge vrabec portland OR 97202 +Susan Aldridge Westland MI 48186 +Anne Orth Gerald MO 63037 +Olive Kaiser Addison IL 60101 +Rosemary Parson Payson UT 84651 +Cassidy Boulan Royal Oak MI 48073 +Jacqueline Crown Easton PA 18042 +Brendhan Pelot Atlanta GA 30306 +lisa creery jersey city NJ 07302 +Isabella Pelot Atlanta GA 30306 +Joel Scharf Martinsville NJ 08836 +adam matar san diego CA 92104 +Christy Marx San Mateo CA 94402 +Jessie Lovano-Kerr Tallahassee FL 32312 +Susan Koechner Cambridge MA 02138 +kerry burkhardt BUFFALO NY 14216 +Anna Jerome Las Vegas NV 89178 +Paul Howard Corvallis OR 97333 +Jenny Sherman Greenbrae CA 94904 +Robert Hawkins Seatac WA 98188 +sylvia henry drippingsprings TX 78620 +KC Thorson Menomonee Falls WI 53051 +fred pomerantz sheffield MA 01257 +Marcella Barron San Francisco CA 94131 +Tara Snyder Hatboro PA 19040 +Carol Bambeck Eureka Springs AR 72632 +Anne Strader Hannibal MO 63401 +Deborah Gouge Pittsburgh PA 15221 +Alicia Fiedler Austin TX 78758 +Sandra Frey Phoenix AZ 85027 +Linda Fondulas Killington VT 05751 +Cynthia Elliott CHICAGO IL 60622 +Garry Kidson Sacramento CA 95818 +Angela Bryant Deer Island OR 97054 +Wendy Merson Rich Ardmore PA 19003 +Beth Shepherd Geneva NY 14456 +Jennifer Fletcher Auburn CA 95603 +Natylie Baldwin Pittsburg CA 94565 +Dina Kozyanina Roslindale MA 02131 +Amanda Boulton Riverton NJ 08077 +Therese Dowd Akron OH 44313 +Barbara Wills Murphy ND 28906 +Cheryl Fromholzer Woodacre CA 94973 +Kathryn Flowers-Glasco Atlanta, GA GA 30312 +Kathryn Mardis Minneapolis MN 55409 +Joanne Keen Cedar Mountain NC 28718 +Blue Favreau Sterling MA 01564 +Daphne Cuizon Seattle WA 98115 +susan schwartz victor NY 14564 +Miriam Wolf Putney VT 05346 +daria dorosh Barryville NY 12719 +Kathleen Caccciola Philadelphia PA 19147 +K Kiser Portland OR 97219 +Matthew Perry Chicago IL 60651 +Timothy Ulrey Portland OR 97202 +Christina Davis Chicago IL 60657 +Patty Navarrete Taos, NM 87571 +Sarah Christensen Mt. Pleasant MI 48858 +Sue MacLean Flushing MI 48433 +di anna borders starkville MS 39759 +Patricia Stear Lincoln NE 68503 +Anna Lombardi New York NY 10032 +Sheila Kannappan Chapel Hill NC 27516 +emilia boccagna Catanzaro Italia ot 88100 +Bari Sanger Golden CO 80401 +Karen Fraley Bradenton FL 34209 +Joan A. Bishop Bellingham WA 98229 +Peter Fiala Madison WI 53703 +Debbie Burack NY NY 10022 +aaron betesh sebastopol CA 95472 +Tricia Duncan Madison CT 06443 +Wendy Ebersberger Front Royal VA 22630 +Kerre Millman Englewood CO 80111 +Vanessa Marinelli baltimore MD 21220 +david Welch Finland MN 55603 +Peter Roth Seattle WA 98115 +maribeth berberich Seattle WA 98119 +Brian Hoeber San Francisco CA 94112 +Marjorie McCann Richmond VT 05477 +Phyllis M Andrews New York NY 10003 +Erin Hassler Eugene OR 97403 +Linda Ruggieri Mill Valley CA 94941 +Colleen Frayn Chicago IL 60641 +Ethelrose Patrick Winfield KS 67156 +Kathryn Albert Portland OR 97225-3409 +Darshana Maya Greenfield Menlo Park CA 94025 +Jenny Sturgeon Cypress CA 90630 +Jenelle Hardin Hayward CA 94541 +Megan Langreck Stevens Point WI 54481 +Billie Jean Stacy Fulton NY 13069 +Carol Derby Hemet CA 92544 +Betty Fisher PITTSBURGH PA 15208 +Corinne Rodriguez Old Bridge NJ 08857 +Patricia Gruner Lansing MI 48915 +Peggy Detmers Rapid City SD 57702 +Chris Merando Wappingers Falls NY 12590 +Debra Millikan Lafayette IN 47909 +Robert Cox Abiquiu NM 87510 +Allison Clough Flagstaff AZ 86004 +edward hueneke freeland WA 98249 +Allen Regar Somerville MA 02143 +Tabata Hinton bronx NY 10466 +Chris Ewald Ashby MA 01431 +Cheryl Chambers Pittsgrove NJ 08318 +Judith Barnes Haddon Heights NJ 08035 +Douglas Estes San Francisco CA 94118 +Sally Gibson Arvada CO 80002 +melissa li Chicago IL 60625 +Tracy Lein-Elmore Caseyville IL 62232 +Anne Harrigan Taylorsville CA 95983 +Christine Howard-Swan Roscoe IL 61073 +Peter Mack Minneapolis MN 55418 +liz derose pompton lakes NJ 07442 +Ned Oda Westminster CO 80031 +B Bailey Cincinnati OH 45249 +karen stein st. petersburg FL 33711 +Janet Black Tenino WA 98589 +Bertha Crowell Athens GA 30605 +Ellen Powell South Butlington VT 05403 +barbra callies yardley PA 19067 +barbra callies yardley PA 19067 +F. Haas Tryon ND 29356 +Sarah Yao New Market MD 21774 +Clarence Wilmot Greenville SC 29611 +Nancy Ragatz Homer MI 49245 +Heidi Nichols Flagstaff AZ 86004 +Jesse Walker Logan UT 84341 +Angela Anderson Stillwater MN 55082 +Win Southworth Asheville NC 28815 +Mary Lennard Cincinnati OH 45213 +Lauran Zmira Tucson AZ 85712 +Janice Smith Keller TX 76248 +Geoff Brown Santa Cruz CA 95060 +MaryLou Menley Otis Orchards WA 99027 +Marcia Smith Chicago IL 60660 +Marcia Smith Chicago IL 60660 +SH Sweat Wimberley TX 78676 +martha chisnell wellington OH 44090 +Meridith Androw Chicago IL 60610 +Ellen Russell Kenmore WA 98028 +eve mer phoenix AZ 85029 +Barbara Cigainero Austin TX 78715 +Anna Thorn San Francisco CA 94102 +Dina Hanna Huntington Beach CA 92646 +Eliot Kaplan Issaquah WA 98027 +james aquino brooklyn NY 11201 +Judith Mudrak Southampton NJ 08088 +Jennifer Kardos Iowa City IA 52245 +Matthew Filler Downey CA 90242 +Dawn Kosec Austintown OH 44515 +Susan Burian Williston Park NY 11596 +David Gascon Lyndonville VT 05851 +susan hoffer Evergreen CO 80439 +inna shapkina rego park NY 11374 +Laura Ballegeer Palm Springs CA 92262 +Francine Ferrara Chicago IL 60640 +Dave Lacey Fairbanks AK 99708 +Roger Miralia Boardman OH 44512 +j stoneham Bermuda ot WK01 +BENJAMIN LEMKE APO AP CA 96264 +Ethan Burke Berkley MA 02779 +Deborah Thelen New York NY 10128 +julie betteridge auburn CA 95603 +Richard Berghofer Milwaukee WI 53212 +Kim Boyd Asheville NC 28802 +R.A.L. West Silver City NM 88062 +P Harrington Cedar Key FL 32625 +Kristin Howard Taos NM 87571 +Pat lilienthal South Burlington VT 05403 +roxanne caswell albany CA 94706 +Andrea Dawson Allen Park MI 48101 +Audrey Zimmer Annapolis MD 21401 +Laura Vondenhuevel Troy OH 45373 +Joshua Angelus Waterbury CT 06710 +Nancy O'Brien Grand Rapids MI 49546 +PIppa Lawson Lincoln NE 68502 +Diane Michel, MSPH Boulder CO 80304 +Martha Manz Edmonton AB T6J 4E6 +ray trozzo fort myers beach FL 33931 +Judith H Wolcott Napa CA 94558 +suzanne spiker ambler PA 19002 +Marcia Swanson Atl GA 30314 +Judy and Bob Gotthelf Bayfield CO 81122 +Shira Shazeer Natick MA 01760 +kenneth carl potosi MO 63664 +Gabrielle Jennings Los Angeles CA 90032 +c. butler san francisco CA 94114 +ann dwenger mpls MN 55418 +Melissa Frock Wichita KS 67213 +Rahel Smith Berkeley CA 94703 +kim waddell Deland FL 32724 +Charilyn Rudolph Rio Rancho NM 87124 +Ginger Young Spring TX 77379 +Jeanne Bergen Hillsdale NY 12529 +Deb Klein Deerfield IL 60015 +Debra Judd PRINCETON WI 54968 +Elena Geels San Francisco CA 94110 +deanna cornett semmes AL 36575 +Jan Brady Dallas TX 75248 +Ann Kremer Vashon WA 98070 +Eric Bourgeois Cambridge MA 02139 +Claudia Risica Petaluma CA 94954 +Christina VanWagenen Middletown NY 10940 +Venetia Pimley Pittsburgh PA 15237 +Joy Layman uniondale NY 11553 +Robert Najjar WARRENTON VA 20187 +Liz Richards Pittsburgh PA 15201 +Frank Cahill Stratford NJ 08084 +lynnie schwartz cincinnati OH 45206 +jacquelyn flowers Washington DC 20001 +Trudie Diamond Coos Bay OR 97420 +Sarah Wagner Tuckahoe NY 10707 +Wendy Murdoch Washington VA 22747 +Douglas Gould Gould Aiea HI 96701 +Diane mckenzie Port Orchard WA 98366 +Jacqueline Williams, Ph.d. Stanford CA 94306 +Edith Figueroa New York NY 10019 +Grace Hanson Kewanee IL 61443 +Lori Lippitz Skokie IL 60076 +elaine andrews columbia MD 21044 +phyllis m merlino SPRING HILL FL 34609 +Kirsten Boswell Ellicott City MD 21042 +Lee McKnight TAmpa FL 33629 +Thomas Morrissey Aguilar CO 81020 +Jeffrey White Harrisburg OR 97446 +Mollie Stanton-Fuja Troy MI 48085 +Stephanie McAffee Fairfax CA 94930 +Susan Boulden Austin TX 78731 +TA Kiser Portland OR 97219 +B Wilson Carbondale CO 81623 +Brigitte von Platen Portland OR 97229 +David Brandhorst Ellicott City MD 21043 +Jon Olson Maple Grove MN 55369 +Janet Price McKenna WA 98597 +cindy hauserman sedona AZ 86336 +Eric Perry Bliss NY 14024 +Brenda Jackson Tucson AZ 85712 +David Guseman Odessa DE 19730-0413 +David Guseman Odessa DE 19730-0413 +Elfriede Stitz Clifton VA 20124 +Charlotte Butler Jordan NY 13080 +george hall orlando FL 32822 +Guy Freesen Staunton VA 24401 +Eric Schultheiss New Hyde Park NY 11040 +Bonnie Potter West Simsbury CT 06092 +Sandra Shaner New Haven CT 06511 +Nita Sims West Fork AR 72774 +Jeraldine Underwood Springfield MO 65804 +Norma Tran Riverside CA 92508 +Cathe Olson Arroyo Grande CA 93420 +Eric Schultheiss New Hyde Park NY 11040 +Robin Nafshi Lebanon NJ 08833 +Sandra Berlin Anacortes WA 98221 +anthony falsetta philadelphia PA 19135 +Paul Krautmann Hillsboro MO 63050 +David Lynn San Diego CA 92101 +Robert Hatch Walden VT 05873 +Margaret Wheeler Mad River CA 95552 +marlon paine venice CA 90291 +Kathy Jerman Bellevue WA 98007 +Jonathan O. Bowers Eugene OR 97401 +Marcello Lanfranchi Asheville NC 28803 +Celia Duffy Spring Valley CA 91977 +Diane Boito Los Angeles CA 90050 +linas barauskas berkley MI 48072 +Monica Blanchard Livingston MT 59047 +Jaocb Lodge tacoma WA 98407 +Kate Neufeld Evergreen CO 80437 +Christie Riter Woodbury MN 55129 +Rise Thew Forrester Marquette MI 49855 +Delora Gillman Charlottesville VA 22906 +Meredith Rettig Flagstaff AZ 86001 +Michelle Rose Cary NC 27513 +Arthur Lerman Longboat Key FL 34228 +Linda Howes Springfield NH 03284 +rebecca sullivan barnegat NJ 08005 +Catherine Adams Philadelphia PA 19144 +Brendan Monahan San Jose CA 95125 +Alan Beer Largo FL 33773-3585 +Emily Johnson East Stroudsburg PA 18301 +Barbara Downey Medina OH 44256 +Bonnie Jean Brown Morgantown WV 26505 +jacquelynn bruton San Diego CA 92103 +Patrice Carroll Saratoga Springs NY 12866 +Stanley Stillman Point Arena CA 95468-8814 +Jennifer Drake Trenton MI 48183 +JoAnn Keller Lafayette CO 80026 +Diana Solomon CULVER City CA 90230 +DAVID SIDDIQUI FREMONT CA 94536 +Patricia Reichert-Dalby Libby MT 59923 +LoisOCA King Atlanta GA 30319 +Robert Michaelis Aitkin MN 56431 +Donna Steele Flagstaff AZ 86001 +rene lambert Berkeley CA 94703 +Barbara Marseille Port Townsend WA 98368 +Hope Boije Oakland CA 94611 +Don Schell Penn ND 58362 +Don Torok Lakewood OH 44107 +Sheila Roen arroyo grande CA 93420 +Laurie Beringer Lakewood OH 44107 +Stacy Lambright Thornton CO 80602 +Rebecca Ginsburg Bella Vista AR 72714 +William Olsen CA CA 95023 +Amanda Lininger saginaw MI 48609 +Sarah McCullough Bend OR 97701 +Jasmine Wolf Coventry CT 06238 +Jan Elizabeth (Beth) Thornton Ft. Worth TX 76114 +Anneliese Mordhorst Northampton MA 01061 +vicky yacoub hudson WI 54016 +Patsy Pinholster McDonough GA 30253 +Erica Ryan Brooklyn NY 11238 +Michelle Fisher Orrville OH 44667 +Evin Ollinger Pacific Grove CA 93950 +geraldine lesser Carlsborg WA 98324 +geraldine lesser Carlsborg WA 98324 +carolyn morell grand island NY 14072 +Robyn Trinemeyer Houston TX 77062 +Kristen Finnegan Jonesville MI 49250 +Patricia Parsley Ferndale WA 98248 +ROSE SIMS Clearwater FL 33755 +karen rudy new cumberland PA 17070 +Safiya Balekian Crestone CO 81131 +V. John Bonner Grand Junction CO 81505 +Jessine Foss Alameda CA 94501 +Richard Low Ferndale WA 98248 +Richard Vance Huntsville AL 35803 +Paula Holsinger Indian Harbour Beach FL 32937 +Celinda Miller Columbus NM 88029 +Angleo Macaluso Canton GA 30114 +Phyllis High Sorrento FL 32776 +Eileen Pepel Staten Island NY 10305 +Jennifer McKenzie Sebastopol CA 95472 +Tari Steinrueck Chestnut Ridge NY 10977 +Silvy Berman Los Angeles CA 90065 +Lisa Hill Miami OK 74354 +ola edwards seattle WA 98105 +Deborah Grant portland ME 04103 +Mark Riccardelli Citrus Heights CA 95621 +Joseph Coco Buffalo Grove IL 60089 +john palmer houston TX 77035 +Penny Austin BLOOMINGTON IN 47401 +Patsy Pinholster McDonough GA 30253 +Susan Finkleman Davis CA 95616 +aaron barnes white lake MI 48386 +Celia Eicheldinger Raleigh NC 27606 +alex mamic seattle WA 98103 +Deborah La Place Mulino OR 97042 +mark daniels APO AP ot 96555 +Raymond Occhipinti Metairie LA 7001 +Kathryn O'Connell Carlsborg WA 98324 +Janis Dawson Casper, WY 82601 +Mike Sexton Junction City KS 66441 +Vanessa Santarsiero Oakland CA 94609 +Emily Bishton Seattle WA 98105 +Ronald Ho Seattle WA 98112 +Jim corcoran La Mesa CA 91942 +Deborah Gold schenectady NY 12303 +Joni Gilton Austin TX 78704 +Amy Cutting Stuart FL 34994 +Amber Olson Aptos CA 95003 +Jim Picardi Shelburne falls MA 01370 +kathleen white Tucson AZ 85705 +Ann Smith West Orange NJ 07052 +Fred Rosenberg Fairfield IA 52556 +Mark Miklosovic Jacksonville OR 97530 +Ti Harmony Carrboro NC 27510 +Mark Miklosovic Jacksonville OR 97530 +Vicki Seegert Indianapolis IN 46202 +kathleen white Tucson AZ 85705 +George Maslyar Kensington MD 20895 +Alyssa Sukana boynton beach FL 33435 +jeramy vallianos Eugene OR 97405 +Deborah Sevy Kailua Kona HI 96740 +Cynthia Stevenson Stillwater OK 74074 +Michael Voss Borrego Springs CA 92004 +amy Roche Bloomington IN 47404 +Melanie Wu Sebastopol CA 95472 +Carol Simpson Fishers IN 46038 +Merle Hayward Hilo HI 96720 +VALERIE LOVEJOY UNEEDA WV 25205 +Kiya Wycoff The Woodlands` TX 77385 +Michelle Mollet Stanford IL 61774 +Harold Kitson Seattle WA 98168 +Liesl Villegas Joliet IL 60434 +Brenda Townsend Fort Worth TX 76112 +Rachel Young San Francisco CA 94129 +Gregory Smith Grosse Pointe MI 48230-1922 +Katherine Rosati Durham NC 27712 +Carrie Schudda Oregon WI 53575 +Sharon Hoff Pittsburgh PA 15235 +Garnet Lewis Roy UT 84067 +Deborah Pierce San Francisco CA 94116 +Priscilla Becroft Philadelphia PA 19144 +Erin Dunscomb East Hampton NY 11937 +Susie Hill dallas OR 97338 +Sunny Hahlen Valdosta GA 31601 +darrel swenson britt MN 55710 +maggie goeglein indianapolis IN 46220 +Elisha Page Springfield MO 65802 +Leo Ashton Sunnyvale CA 94085 +gary hangartner ramona CA 92065 +Melissa Sproul-Singh Milledgeville GA 31061 +alexa kasper Longmont CO 80503 +Sharon Cansler ft worth TX 76131 +Katherine Jones Frederick MD 21702 +Sally Skillman Belfast ME 04915 +Jennifer McNeil Santa Cruz CA 95060 +Janna Schlagenhauf Albuquerque NM 87114 +Sunny Tabino Summerville OR 97876 +Ethel Leider W. Palm Beach FL 33417 +Ana Yong Soler El Paso TX 79925 +Karen Eberly Gainesville FL 32601 +Mark Gilbertson Seattle WA 98122 +Henry Tang Fremont CA 94539 +Marie Mihalko Gallatin TN 37066 +Donald L. Bruestle Pueblo CO 81004 +David Christian Flat Rock MI 48134 +Valerie Aris Austin TX 78759 +Judi Milin Idyllwild CA 92549 +Craig Amundsen Minneapolis MN 55419 +Karen Rubb Sewickley, PA 15143 +Jim Yarbrough Newbury Park CA 91320 +Sandra Penley Archdale NC 27263 +Debra Winsberg Prescott AZ 86305 +JUDY Evans Redding CA 96002 +DAWN VAN ATTA WARMINSTER PA 18974 +Barbara Jeromin Mendon VT 05701 +Jill Saint-Espicha Tracy CA 95377 +JoAnn Duman Arlington TX 76016 +Ronald Hurston Wayland MA 01778 +Camill Walker Rochester MN 55906 +Celio da Silveira Los Angeles CA 90066 +james aquino brooklyn NY 11217 +Edward Pleskovitch Rock Falls IL 61071 +John Hansen Jacksonville AR 72076 +Jeanne Long Westkake OH 44145 +kristi doyne-bailey homestead FL 33030 +Diana Atchley Felton CA 95018 +Jennifer Pliego New York NY 10025 +Michael Garvey Lemont IL 60439 +Denise Bevacqua Seattle WA 98103 +Tamara Sanders Carrboro NC 27510 +Diane Conway Anchorage AK 99517 +Chandra Bueckert Nanaimo BC V9T3L8 +Nicole Perrot Los Angeles CA 90025 +Glenneth Lambert Cobb CA 95426 +Otto Hunt Oceanside CA 92056 +Diandra Calderon Covina CA 91724 +Janet Russell Eugene OR 97402 +Sigrid Yenson Phoenix AZ 85020 +Tana Lucero Denver CO 80211 +Ruth Cole Imperial Beach CA 91932 +Daniella Kerling Cleveland OH 44111 +Morgan Hope huntington beach CA 92647 +Patra Attig Denver CO 80237 +Dana Bouvet Bothell WA 98041 +Thomas & Consuelo Odegard Friday Harbor WA 98250 +Jodie Gross Paris Long Island City NY 11102 +Summer Colella Eagle Point OR 97524 +M.B. McMorrran Westminster CO 80021 +Nina Hupp Paia HI 96779 +Steven Jacobson Long Lake MN 55356 +Laurie hilburn st.petersburg FL 33710 +Linda and Ron Hogan Seattle WA 98103 +Jaye Jackson Castle Rock CO 80104 +juanita abood Parma OH 44134 +cherie newman sonora CA 95370 +P Rice Missouri City TX 77459 +Nathalie Lukin Santa Cruz CA 95062 +karen steele eureka CA 95503 +Judith Champion Louisville CO 80027 +Karina Allred Maple Valley WA 98038 +pamela barrows tenmile OR 97481 +Stephanie Bisceglia San Jose CA 95117 +Stephanie Bisceglia San Jose CA 95117 +Margaret Adam Bozeman MT 59717 +A. DeClario, Ph.D. MALIBU CA 90265 +Charles Drace Palo Alto CA 94306 +Nathan Jeffries Erlanger KY 41018 +Melita Pepper Post Falls ID 83854 +James Stiefel CA CA 95060 +Bill Ventre Boise ID 83702-5321 +Art Hanson Lansing MI 48917 +MR & MRS ROBERT MC DOWELL PUYALLUP WA 98371 +Ann Fonfa Delray Beach FL 33446 +clyde beardsley kalispell MT 59901 +Valjean O'Neill San Diego CA 92109 +Jo Hadley Oakland CA 94610 +Meagan Angus Seattle WA 98102 +Adriana salamone Bronx NY 10465 +Shandra Wren Angola IN 46703 +David Brultz Shorewood WI 53211 +Thomas Anker Calabasas CA 91302 +Tamar Koenigsfeld-Nitsan Kiriat Ono ot 55435 +Persia Woolley Sebastopol CA 95472 +Marty Howe Missoula MT 59808 +colleen whalen sacramento CA 95816 +Darlene Baker Alma MI 48801 +Barbara LaChance Zebulon NC 27597 +Shela Tarwater Miami Beach FL 33141 +Sally Funnell Redding CT 06896 +Kathryn Ebrahimi Wyandotte MI 48192 +Eva Mastropaolo Mt. Lebanon PA 15243-1914 +Karen L Martellaro Lenexa KS 66215 +Carol Buonopane Stoneham MA 02180 +Patricia Kendall Tinton Falls, NJ 07753 +Nancy Dean Rochester NY 14607 +Gabriela Waschewsky Gainesville FL 32608 +Julie Lohela Holland MI 49424 +Laura Sholtz Exeter ME 04435 +Carolyn Maruhnic Montville ME 04941 +natalie camras tucson AZ 85749 +Dena Christine Pinnacle NC 27043 +Nathan Wallace-Senft N. Bennington VT 05257 +joan ward Penn Yan NY 14527 +Pat Apt Westbrook ME 04092 +Dorothy Blitzer Dedham MA 02026 +Rhonda granger kinderhook NY 12106 +Lisa Mancin Healdsburg CA 95848 +Christa Vanderbilt Kennett Square PA 19348 +Cynthia Moody Monroe ME 04951 +Dorothy Filanowska Copake Falls NY 12517 +Michele Buhr Neosho MO 64850 +Tracy Puzino Chester NJ 07930 +Rachel Franklin Charlotte NC 28277 +Lisa Kemes shiremanstown PA 17011 +Aimee Loubert FLint MI 48506 +Erica Elias bellingham WA 95527 +Sally Halfpap Crofton MD 21114 +Erin Brannan Fridley MN 55432 +Merrill Bitter Salt Lake City UT 84106 +joseph Dangelo east northport NY 11731 +Karen Cohen Dixon NM 87527 +Arthur Brunet Danvers MA 01923 +Tamara Jaffe-Notier Oak Park IL 60304 +Judith Hultzen chicago IL 60625 +Sarah Keller Atlanta GA 30339 +cheryl benjamin placerville CA 95667 +Patricia Thompson Dublin OH 43017 +Thomas Appleby Trenton MI 48183 +Mona Exinger Seaside OR 97138 +hank mirsky abq NM 87123 +Joan Szymberski Phoenix AZ 85029 +Kathryn Smith Windermere FL 34786 +Alison Birks,MS Nutritionist Harwinton CT 06791 +David Shore Ossining NY 10562 +Anthony Nicolau Brooklyn NY 11205 +Mary Pat Linck Marquette MI 49855 +Jeffrey Vogel Sunnyside NY 11104 +eve burton gaithersburg MD 20882 +Juana Arzola Davenport FL 33897 +Jane Coffey brooklyn NY 11217 +james townsend hedgesville WV 25427 +james townsend hedgesville WV 25427 +Mara Poe Taylor MI 48180 +William Ryder Hagerstown MD 21740 +Beverly Malen chicago IL 60647 +james townsend hedgesville WV 25427 +maria stevens boston MA 02115 +Patty Ewalt St. Bonifacius MN 55375 +Jennifer Newpower orange village OH 44022 +Elaine Ryder Mountain Home AR 72654 +Jayne Collie Missoula MT 59802 +margaret Logan Dalton OH 44618 +Sherry Hartman-Apgar Ewing NJ 08638 +Beverly Bernard Beaumont TX 77706 +Janel Galvanek Harrison City PA 15636 +evonne herkert goshen OH 45122 +Harley Winfrey Boone IA 50036 +Jodi Blas Anchorage AK 99508 +Julie Stephens Fairfield IA 52556 +Johanna Stryker-Smit tucson AZ 85745 +Andrew Sutphin Woodland Hills CA 91367 +Susan Crockett Gloucester VA 23061 +Michael Hann Mystic CT 06355 +barbara kline loveland CO 80538 +Laura Munoz Austin TX 78704 +Kathie Cataldo Celina OH 45822 +Lloyd Rojewski Roswell GA 30075 +Carol Renwick Wilton NH 03086 +Kari Michalek Cedar Park TX 78613 +Ellen C. Deming Gold Canyon AZ 85218 +Ellen C. Deming Gold Canyon AZ 85218 +Donna Moore Santa Barbara CA 93111 +virginia phillips pittsburgh PA 15216 +Mary Helen King Norcross GA 30071 +Sarah Larrabee Boulder CO 80304 +lani ravin south burlington VT 05403 +Cherie Gans Redding, CA 96003 CA 96003 +joyce miller coralville IA 52241 +Brenda Cross Austin TX 78704 +Marsha Hawk Ellensburg WA 98926 +Natasha Davis Brooklyn NY 11222 +Susan Mellinger Pittsburgh PA 15229 +Jen Junk Cincinnati OH 45251 +Loretta Bauer Vallejo CA 94591 +Siserra Knolle Corte Madera CA 94976 +Leanna Walters Onaga KS 66521 +Carlos Figueroa West Palm Beach FL 33401 +Karina Serkin Steamboat Springs CO 80477 +Holly Cary Lakewood CO 80226 +Michele Kribs Portland OR 97229 +Sarah Crawford Winona MN 55987 +Chris Ahrens Shawnee Mission KS 66208 +Saroj Earl High ?Springs FL 32643 +Elisabeth Webber Durango CO 81302 +Marji Karasek Evant TX 76525 +Linda Bainbridge Greenbank WA 98253 +Roaney Giles Austin TX 78746 +Katharine Sharp Saratoga Springs NY 12866 +Diane Elliston Atlanta GA 30306 +Matthew Messner Charlottesville VA 22902 +Caroline Trumbull Ann Arbor MI 48103 +debra schultz elk river MN 55330 +Vicki Dash-Slesinski West Grove PA 19390 +Kathy Hatfield Wellington CO 80549 +Hilary Ham Mckinleyville CA 95519 +aino lesley madison WI 53703 +Liz Gaither Owings MD 20736 +Leila Samrad Sausalito CA 94965 +Sharon Champeau Milwaukee WI 53207 +wayne walma mass city MI 49948 +Sharon Champeau Milwaukee WI 53207 +Cindy Rackley Enumclaw WA 98022 +john filipiak mosinee WI 54455 +John Nichols East Orleans MA 02643 +Patrick Hollis Phoenixville PA 19460 +Darren Hart Atascadero CA 93422 +Elizabeth Chittenden Tucson AZ 85716 +Rosemarie Kozdron Rockton PA 15856 +Jody Figgin Green BAy WI 54311 +Jody Kohlndorfer Richmond VA 23225 +Chelsea Walton Hanover PA 17331 +sarah minten lindsay ON K9V 3E8 +Nydia Leaf New York NY 10025 +Donald and Connie Roux Savoy IL 61874 +Joyce Harman Flint Hill VA 22627 +Ann Rosen Westfield NJ 07090 +Tracy Li Las Vegas NV 89123 +Andrea Pratt Maumee OH 43537 +Allison Lennox Saratoga Springs NY 12866 +Eve Schnel Stirling NJ 07980 +Stacy Billingsley Desert Hot Springs CA 92241 +Karen Kirchem Austin TX 78704 +mozelle white austin TX 788731 +Ruth Pickering FALL CITY WA 98024 +jamie c S.I. NY 10314 +paul klinkner finleyville PA 15332 +paul klinkner finleyville PA 15332 +Kate Drennen Brooklyn NY 11215 +bob lewis san francisco CA 94110 +R Zech Forest MS 39074 +Regina` DeFalco Lippert Martinez CA 94553 +sarah fuller justin TX 76247 +Steve Brown Deerfield IL 60015 +susanna nieves marina CA 93933 +Jamie Risedorph Johnstown NY 12095 +mary rivas riverton NJ 08077 +mary rivas riverton NJ 08077 +Liisa Wale Ashland OR 97520 +daniel odell great barrington MA 01230 +Pamela Callaghan Yorkville, CA 95494 +George Love Clearwater FL 33755 +Jerry Hudgins Asheville NC 28804-2503 +Elisabeth Schenenga East Greenwich RI 02818 +April Luoto Longmont CO 80501 +sara denman maple valley WA 98038 +Laurene Cook Saint Petersburg FL 33713 +frank feldstein crestline CA 92325 +Edward Sinelli Valley cottage NY 10989 +Laurene Cook Saint Petersburg FL 33713 +Debra Csenge Topsham ME 04086 +Danielle Rose Savannah GA 31401 +Roy Pisetsky Cotati CA 94931-4154 +Karen L. Tracy Gualala CA 95445 +Sandra Stein Ithaca NY 14850 +Lynn Cosmos Yakima WA 98901 +David Hamilton Topanga, CA 90290 +Danielle White Grass Valley CA 95945 +christopher lane greenville SC 29607 +Carole Tronnes stillwater MN 55082 +Miriam Parente Philadelphia PA 19152 +Sheila Shultz Reno NV 89508 +Janice Joyce Albany NY 12208 +Ib Hagsten Gladstone MO 64118 +Krista Umgelter Huntington Beach CA 92649 +rhonda smith eureka springs AR 72631 +guy parker Palisade CO 81526 +Sherry Hayden Flint MI 48503 +Roger Adams Springfield OH 45502 +maryann kachur Pleasant Hill CA 94523 +John Robideau Albany NY 12205 +Daniel Pihlblad Beaverton OR 97005 +gloria norris Indianapolis IN 46226 +Lisa Thomas youngsville NC 27596 +Joy Rehfeld West Warren MA 01092 +Nancy L Tanner Grand Junction CO 81503 +Terri Robertson Bozeman MT 59715 +Cynthia Sodini Westchester IL 60154 +Rosemary Caruso Pinckney MI 48169 +Corinna Garmon whitesburg GA 30185 +Keri Harvey Steamboat Springs CO 80488 +Corinna Garmon whitesburg GA 30185 +Naomi Zarch San Francisco CA 94117 +Marianne Johnson statesville NC 28677 +William Cash North Chatham NY 12132 +Katherine H Udall Orleans MA 02653-4126 +Schuyler Judd Island Park ID 83429 +Evelia A. Sanchez Everett WA 98203 +Nancy Rabin Issaquah WA 98027 +Robin Gorges Montpelier VT 05602 +pamela zook Ranchos de Taos NM NM 87557 +Corinne & Michael McGrady Lilliwaup WA 98555 +Ann Grodin Beverly Hills CA 90210 +Susan Fincher Pensacola FL 32514 +Margaret Ellsworth Bellevue WA 98008 +Kenneth Heikkila Goldendale WA 98620 +Lynn Houston SATELLITE BCH FL 32937-3000 +Sterling Cone Ashton IL 61006 +Priscilla Inge Warrenton VA 20187 +Tom Sullivan Northborough MA 01532 +Susan Densmore Orcas WA 98280 +Eva Hershey Mt. Laurel NJ 08054 +Melissa Clark Seattle WA 98103 +Crystal Damelio Englewood CO 80113 +Jessica Ridgeway Aptos CA 95003 +Andrea Brockelman York ME 03909 +Rosemarie haugh Apollo PA 15613 +Debra Atlas Redding CA 96001 +Claudia McNiff Tempe AZ 85283 +Melinda Suelflow Finland MN 55603 +Irene Burds Fiskdale MA 01518 +Lorraine Margon Santa Cruz CA 95060 +Laina Shockley Orlando FL 32803 +David Ehrensperger Nanticoke PA 18634 +Riley Mclane Tomball TX 77375 +Bonnie Naugle Bronx NY 10454 +Laurel Schumm Santa Cruz CA 95062 +Loui Audet Tempe AZ 85284 +selma faucher gainesville FL 32609 +Loui Audet Tempe AZ 85284 +Linda Novenski Seattle WA 98119 +JL Christian Wesley Chapel FL 33543 +Barry Rabichow Oak Park IL 60302 +Della Pangborn Tigard OR 97223 +L. Maeve Ward Newton MA 02461 +G.R. Nugent San Rafael CA 94901 +Jessica Dreistadt Easton PA 18042 +Bonnie Westerlund Oregon House CA 95962 +Zandaria Jones San Francisco CA 94112 +Tara Hodges Keene VA 22946 +James Beregi Tucson AZ 85739 +calli blau anacortes WA 98221 +Margaret Myren Barrington IL 60010 +Carrie Compton Bend OR 97701 +Roxanne Caron Springfield OR 97477 +Constance Jenkins Pueblo CO 81005 +Geraldine Zatcoff Westport DE 06880 +Ruth Lanton Plainview NY 11803 +Kristin Doyle san francisco CA 94122 +Nancy Nystrom Marshall VA 20115-2212 +Beky Hayes Austin TX 78702 +Margie Kraft Oley PA 19547 +Kirk Lumpkin El Cerrito CA 94530 +t cre Houston TX 77008 +Elizabeth Brandegee Redmond WA 98052 +Allan Andrews Jackson MI 49203 +Brian Oana Alameda CA 94501 +Carolyn Parker Bangor ME 04401 +Beth Thomas San Antonio TX 78212 +Ken Wolf Tigard OR 97224 +Shelly Rodgers Redding CA 96001 +Marcela Ries Ukiah CA 95482 +adriana finnie burlingame CA 94010 +Lisa Brown L:afayette CA 94549 +Betsey Porter Bloomington MN 55431 +Dova Wilson Sterling VA 20165 +Sue Diederich Palatine IL 60074 +bobi hunter lehi UT 84043 +Lucinda Buttles Arcadia OH 44804 +Penny Ordway Ardmore PA 19003 +Paul Baker Chicago IL 60615 +Theresa Ruby Rochester Hills MI 48309 +Gary Davis Haslett MI 48840 +dylan foster glendale AZ 85305 +Kyle Scott Omaha NE 68164 +Rose Specht Hamilton MT 59840 +Kathleen Dusing Coon Rapids MN 55433 +Lynne Breakstone St. Louis MO 63130 +judith schlacter eugene OR 97440 +Joyce Weston Plymouth NH 03264 +Natasha Rigg Boulder CO 80305 +Robert Hatton Portland OR 97215 +Melissa MantiQ Vestal NY 13850 +Sandra Elder Redmond WA 98052 +Lamar Hankins San Marcos TX 78667 +Allison Hughes Eugene OR 97403 +Marian Langan Lincoln NE 68508 +Laurie Murphy Honolulu HI 96815 +Jackie Csedo Madison WI 53705 +Eugenia Salvatore Lafayette OR 97127 +Kelley Riviere Meridian ID 83646 +eric pinkham sebastopol CA 95472 +Oria Kunin Atlanta GA 30316 +J. Smead Louisville KY 40222 +Judith Palmer Capitan NM 88316 +Darlene Eller Yreka CA 96097 +Sherrill Gardner Baltimore MD 21202 +Robert Devine los angeles CA 90024 +Linda Van Aman New Orleans LA 70117 +Adarsh Ayyar Scottsdale AZ 85258 +Joanna Bonnheim Wichita Falls TX 76301 +Bonnie Leonard Fairfax CA 94930 +Geri Grafton Port Orange FL 32129 +Daniel Romer Everett WA 98204 +nancy moore asheville NC 28802 +Maria Bill Washington DC 20007 +Jeff Turner Monterey CA 93940 +camille spar Woodside CA 94062 +Denise Redumski Flint MI 48532 +Anja Schiller Buffalo NY 14213 +Victoria Cherpes Vienna VA 22181 +Rachel Lipscomb Traverse City MI 49684 +Bridget Bullen philadelphia PA 19102 +Linda Agnew Sebastopol CA 95472 +Elise Marks Burlington VT 05408 +julie goldade bismarck ND 58504 +d'Ann Whitaker Lula GA 30554 +Von Pelot Ashburn VA 20147 +Alison Mills Vero Beach FL 32960 +John Hope San Francisco CA 94114 +SUSAN NESTOFF LA PALMA CA 90623 +Gar Smith San Francisco CA 94103 +Ellen Travis Syosset, NY 11791 +Russel Sher Asheville NC 28801 +mary goodman winter park FL 32792 +Kathryn Tretter El Prado NM 87529 +susan hartman basin MT 59631 +Brian Emmons Honolulu HI 96822 +Shannon Mortensen Auburn CA 95602 +Alice Anne Martineau Mountain View CA 94041 +joseph sturniolo east islip NY 11730 +Jean Lee Seattle WA 98112 +Jessica Chakar Cypress TX 77433 +Lou Stallcop Spokane Valley WA 99037 +Carmen Carreras Berkeley CA 94705 +Rochele Schroeder Twin Falls ID 83301 +Jeff and Karen Hay Carlsbad CA 92010 +Christina LaBone San Francisco CA 94118 +Charli Hoffman Irvine CA 92617 +Angela Scott Omaha NE 68164 +Susan Kennedy Venice FL 34292 +Catherine McCarthy Homer AK 99603 +Dale Peterson Portland OR 97223 +Tory Bushey cedar springs MI 49319 +Judy Bjork Minnetonka MN 55343 +Tanya Cowperthwaite Annandale VA 22003 +Charlie Hakola Las Vegas NV 89169 +Carol Ng Los Angeles CA 90026 +HEATHER NYGREN DECATUR GA 30033 +Merri McCormick Reno NV 89523 +Virginia McGill Fort Worth TX 76179 +Dawn Chapdelaine Bowie MD 20715 +Stephen Colon Syosset NY 11791 +Natalie Hanson Lansing MI 48917 +Wendy Willhite Tucson AZ 85739 +Shannon Fisher Tacoma WA 98403 +Robert Jenusaitis Port Townsend WA 99368 +Sue Habegger Grass Valley CA 95949 +Casey LaLonde Douglassville PA 19518 +Susan West Santa Barbara CA 93111 +Stephen Scott Germantown MD 20876 +Ariel Salzman Portland OR 97219 +Jennifer Miskiel Blue Bell PA 19422 +steven c davis kilauea HI 96754 +marika houde Montreal QC I0Q 3B3 +Kathy DiBiase Sewickley PA 15143 +Barbara Godbey Santa Fe NM 87507 +Kamerin McMillion Ruidoso NM 88345 +Katherine Sturtz Garden Cityh TX 79739 +Katherine Sturtz Garden Cityh TX 79739 +Delbert D. Hartley Portland OR 97293-4172 +John M. Noonan Tesuque NM 87574 +Sharon Fortunak Cottage Grove MN 55016-1909 +Kyle Gracey Johnstown PA 15904 +Resa tylim nyc NY 10014 +Nodia Brent-Lux santa Fe NM 87505 +Elise DeGuiseppi Puyallup WA 98371 +Jaclyn Sargent Spencer MA 01562 +Karin Demidoff Huntington Beach CA 92648 +Flori Madan Fremont CA 94536 +Michael Willemsen Sauk Rapids MN 56379 +erin diserens mt Juliet TN 37122 +Jane Bialosky Vero Beach FL 32963 +Jane Bialosky Vero Beach FL 32963 +Eric Rose Buskirk NY 12028 +Angela Percival Andover ME 04216 +Vanessa Mize Indianapolis IN 46229 +Jill Soth Mesa AZ 85202 +Sally Barrett-Page Boulder CO 80302 +Ruth Miller Chapel Hill NC 27516 +Millie Sanger Longview WA 98632 +Ruth Miller Chapel Hill NC 27516 +Shirley Henderson Huntington Beach CA 92646 +Becky Palmer Meridian ID 83642 +Chrisla Stone Erlanger KY 41018 +Midori Takata Los Angeles CA 90038 +Darcy Ayres Hillsboro OR 97124 +John Adornato III Oakland Park FL 33334 +Remee Roehl Spokane WA 99205 +Lisa Rader McDonough GA 30252 +Bonnie Gintzler Northampton MA 01060 +Jane Riskin Pacific Palisades CA 91016 +Erica Gray Boerne TX 78006 +Joanne Osborn McKinney TX 75069 +Joel Hess Seattle WA 98118 +Laura Chiu Palo Alto CA 94303 +Malcolm Sickels Ann Arbor MI 48103-6223 +Laura Chiu Palo Alto CA 94303 +Cristina O'Brien Chicago IL 60647 +Sharon McGeeney Santa Monica CA 90405 +Henry Knutsen Dixon NM 87527 +Cherie Jemsek Saugerties NY 12477 +Peggy Olson Shelbyville TN 37160 +sheila burton ottawa ON h4f3f4 +Kate Paradis Boulder CO 80304 +renata dobryn Montauk NY 11954 +Bryan Mazzarello Seattle WA 98107 +claire dishman Brooklyn NY 11201 +Barbara Roberts Ellijay GA 30536 +Michelle D'Amico Eugene OR 97405 +Sarah Schowalter Nampa ID 83686 +Marcie Romano Oakland CA 94618 +Ann-Marie Clark Thiensville WI 53092 +Wendy Marsh Fayetteville NC 28305 +Sherry Petersen Milton Freewater OR 97862 +Karen Dunham Sedona AZ 86336 +Katherine Meyer Warren VT 05674 +Michelle Nelson Madison WI 53703 +mandy leung Federal Way WA 98093 +Rebecca Brown elgin IL 60123 +Martha Strother Little Rock AR 72204 +Mona Morstein Mesa AZ 85202 +Veronica Brim Portland OR 97223 +David Cook Elwood IN 46036 +Linda Kurschner Prairie Farm, WI 54762 WI 54762 +Eric Pritchard Durham NC 27705 +Kassi Moy Omaha NE 68144 +Pam Green Yucca Valley CA 92284 +Kristi Annecone San Jose CA 95124 +Kristina Kallas Chicaqo IL 60610 +Barbara Bixler Indianapolis IN 46240 +Clayton Martin Lubbock TX 79407 +Amanda Moran San Francisco CA 94110 +Adrianna Mercado Brooklyn NY 11201 +Rita Prescott Woodbridge VA 22193 +jessica crotty Monpelier VT 05602 +Susan Hoog Reno NV 89509 +Traudi Wicks Lawton OK 73507 +Alvin Richter Austin TX 78703 +Laurel Renger Colorado Springs, CO CO 80932 +Toni Mudd Naples FL 34104 +Debra Schoenberger Park City UT 84098 +Katherine Fritchie Spokane WA 99201 +Cathy Reich SIMI VALLEY CA 93065 +Mary Farley Redding CA 96002 +Andrei Novac Salt Lake City UT 84105 +Jenny Reeves Portland OR 97213 +Amy Andre San Francisco CA 94117 +Gary Ferguson Los Angeles CA 90041 +Zoe Schwartz Healdsburg CA 95448 +Pamela Gale Park Fairfield IA 52556 +Staci Fronczek Enumclaw WA 98022 +Karen Squires Santa Fe NM 87505 +Linda Croyle Santa Barbara CA 93101 +janet weaver kensington CA 94707 +Connie Schmitt Tavares FL 32778 +Susannah England Aurora OR 97002 +Ellyn Sutton Spokane WA 99228 +Stephanie Wehner Friday Harbor WA 98250 +Rory Link Seattle WA 98103 +Kaytee Casey Forestville CA 95436 +Vickie Penninger Raleigh NC 27608 +Eric Lelij tucson AZ 85713 +Richard M. Mendenhall Jr. Hillsboro OH 45133 +Michael Moore Boulder Creek CA 95006 +Sandra Licata Socorro NM 87801 +Julie Brush Portland OR 97211 +Iran Johnson Portland OR 97211 +susan folsom LAWNDALE CA 90260-6047 +Mary Pat DiLeva Seattle WA 98122 +Theresa Latour Signal Hill CA 90755 +Robin Biscaia NORFOLK MA 02056 +Ursula Hair Fircrest WA 98466 +Beverly Julien Tacoma WA 98444 +Keith Kale Portland OR 9 +Christina Kiaer Chicago IL 60660 +Steve Connery San Juan Bautista CA 95045 +Peter Franks New York NY 10023 +Stephen Matera Seattle WA 98107 +Jonah Millett Portland OR 97215 +Erin Zolotukhin-Ridgway Saint Paul MN 55116 +Philip McKee San Rafael CA 94915 +Maria But;er Mount Vernon WA 98274 +Vito Zingarelli Clinton WA 98236 +Lynette Schneider Mt. Laurel NJ 08054 +Jerry Segers Canton GA 30115 +Joel Cohen Redwood Valley CA 95470 +D Chang Honolulu HI 96822 +Anna Grefberg Örebro ot 702 +Thomas Althauser Timonium MD 21093 +Don Najita Honolulu HI 96828 +Seana Blake Ellensburg WA 98926 +Wyndham Boulter Port Allen LA 70767-3305 +Evemarie Lewin Hudson FL 34667 +Evemarie Lewin Hudson FL 34667 +sorrel sand oakland CA 94602 +lindsay brereton atlanta GA 31126 +Robert Thomas Saylorsburg PA 18353 +Deborah Teague Van TX 75790 +Crystel Suhr Parnell IA 52325 +Dean Taeger Pittsburgh PA 15206 +Barbara Wright Purcellville VA 20132 +Lynne and Bill Starrett Lansdale PA 19446 +Amy Murphy Rowley MA 01969 +Rae Duval Brunswick ME 04011 +Felica Serrano Ypsilanti MI 48197 +karen rudy new cumberland PA 17070 +Dawn McConnaughy Wesley Chapel FL 33544 +Michael Pease Indian Trail NC 28079 +curt hazeldine foxboro MA 02035 +Dianna Meilunas Flanders NY 11901 +N. Christopher Perry Manchester NH 03104 +Shirley Garth Medford Lakes NJ 08055 +Craig Snook Saginaw MI 48638 +Jill Reilley Manville NJ 08835 +Liz Havey Milledgeville GA 31061 +Denise Passerello Davenport FL 33896 +Jefferson C. Adams Austin TX 78704 +Miriam Domurath linden MI 48451 +Kathleen Fontaine Plainville MA 02762 +Collette Rutherford raleigh NC 27606 +karen randolph pompton lakes NJ 07442 +Marisa Januzzi-Thomas harrington park NJ 07640 +Robert Chaffinch Faber VA 22938 +Connie Koch Chicago IL 60613 +Joyce Ludwig Landover Hills MD 20784 +Anne Rusley St Louis Park MN 55426 +Meryl Steinzor new york NY 10003 +Wayne Robertson Newfiel ME 04056 +Theresa Climie Clio MI 48420 +Rebecca Condict Elkins Park PA 19027 +Linda Knutson Bristol VT 05443 +Elizabeth Kluznik St. Paul MN 55116 +Robin Moyer Ankeny IA 50021 +Karen Siegel CHESAPEAKE VA 23320 +Anne Vinkovich Brecksville OH 44141 +Rhenda Torrence Winfield KS 67156 +Nancy Magidson New York NY 10040 +Michelle Terry Fayetteville GA 30214 +jennifer pealer sarasota FL 34243 +Wendy Kelly Middlesex NC 27557 +Autumn Butler Canton MI 48187 +joaquin lara atlanta GA 30312 +Judy Walls Fairfield IA 52556 +Cathy Kingery Manchester NH 03103 +Jay sampson kenosha WI 53140 +Deborah sampson kenosha WI 53140 +Raymond Singleton Akron OH 44313 +Chrystal Fretz Akron OH 44313 +Dennis Allen Santa Barbara CA 93105 +Karen Erikson Spencer MA 01562 +Stephanie Huntington Denver CO 80207 +Beth Spencer Cohasset CA 95973 +Cindy Gustafson Hernando Beach FL 34607 +isabella Sagna Miami Beach FL 33139 +Brandy Smith-Vuich Hillsboro WI 54634 +Karen Domanski Brevard NC 28712 +Lori Walker Austin TX 78704 +stacia fine Las Cruces NM 88005 +lauren guzik New Britain CT 06053 +Jane Lee Hutchinson KS 67504 +Kathy Rups Grand Rapids MI 49505 +karen masterson Sherborn MA 01770 +Dean Wiegert Fredonia WI 53021 +Carrie Jackson Boulder CO 80303 +Angela Norman-Meadows Cadillac MI 49601 +Amanda Vint Omaha NE 68132 +Frederick Condit Newton NJ 07860 +Christine Chimienti New Hyde Park NY 11040 +Susan Klimkowski Lkae Hiawatha NJ 07034 +Carolyn Garnsey Tyrone NM 88065 +Jessica Petersen Woodbury MN 55125 +Debbie Leland Woodbury MN 55125 +Nancy Fobert Harvard MA 01451 +Duncan Macomber Doswell VA 23047 +Tina Boyce Driftwood TX 78619 +Renee Preston Arroyo Grande CA 93420 +LIsa Griffith Clarksville MO 63336 +Jill Oropeza FOrt Collins CO 80521 +Lucy Gibson Madison WI 53716 +Maria Montargil Santa Fe NM 87501 +Deanna Parish Glendale AZ 85308 +Susan Kirschenbaum Arvada CO 80005 +JOHN KILLAR HAMDEN CT 06517 +Lance Hoffmeyer Denton TX 76201 +Amy Doerzbacher Seattle WA 98103 +Lyell Gressitt Asbury Park NJ 07712 +Jane Brandley Lake Geneva WI 53147 +Sarah MacGregor vienna ot 1160 +brenda dean groveland MA 01834 +michele chartier bethany CT 06524 +sandra caldwell albuquerque NM 87102 +Bonnie Williams Robbinsdale MN 55422 +Juliet Minard Flint MI 48506 +Jody Joy Charlottesville VA 22902 +Nicole O'Brien Omaha NE 68106 +Terry Berens Bloomington MN 55420 +Barbara Hilton Portsmouth NH 03801 +Tanya Huebner Lafayette CO 80026 +Stacy Wykle Austin TX 78741 +Stacy Wykle Austin TX 78741 +Stacy Wykle Austin TX 78741 +Jessica Smith portland OR 97220 +Lara Valigorsky Westfield MA 01085 +Linda Neale Boulder CO 80301 +Tammy Brown Denver CO 80209 +Ellie Becher Orchard Park NY 14127 +Judy Farless Santa Rosa CA 95404 +Susan McGuiness Grand Lake CO 80447 +Dena Moore DALLAS TX 75205 +Reid Betz New York NY 10009 +Heather Kosse Villard MN 56385 +Celeste Kukla Ypsilanti MI 48197 +Cathy Rogers Sunderland MD 20689 +John Beal Decatur GA 30032 +amy fine forest hills NY 11375 +Robert Krauth Cedar Hill TX 75104 +Alexis Rizzuto Cambridge MA 02138 +Michael Ryan Phoenix AZ 85015 +Devik Wyman Natick MA 01760 +Kathryn Jackson Austin TX 78704 +Christine McElroy Brookings OR 97415 +Marcus Arieta Jamaica Plain MA 02130 +Chris Casper Oconomowoc WI 53066 +Martha Elliott Tempe AZ 85283 +Kirstin Juul Glen Allen VA 23059 +Laura Anglim Columbus OH 43202 +Andrew Vanover Chicago IL 60625 +Barbara Rhymes San Antonio TX 78249 +Kenneth Eby Winchester CA 92596 +Sandra Schalkham Esperance NY 12066 +Linda Altman Orange Park FL 32003 +Arthur Yeatman Oxford PA 19363 +Julie Knoll Phoenix AZ 85029 +miranda moore cottonwood AZ 86326 +Rebecca Lowery Girard OH 44420 +M Wong los Angeles CA 90004 +Paula Wells Clarksburg MA 01247 +Andrew Bradford Lafayette CO 80026 +Ehren Miller-Nogueira East Calais VT 05650 +Janet Melody Denver CO 80231 +David Polites Littleton CO 80124 +Edward Kadane Dallas TX 75214 +Amy Bittner Evergreen CO 80439 +Richard Willets Henderson NV 89002 +David Juchnevicius Romeoville IL 60446 +Sarajean Weaver Minneapolis MN 55407 +Ulrike Anderson Kent OH 44240 +Susan Congelosi Boone NC 28607 +Sharon Brown KEARNEY NE 68847 +Denise Trochei Santa Fe NM 87505 +Cindy Harvey Mpls. MN 55418 +Christine Marcenaro Fountain Hills AZ 85269 +Amy Derryberry Ballard CA 93463 +Vera Gabliani St Louis MO 63122 +Zsuzsu Illes Chatsworth CA 91311 +LISA MOON PARMA MI 49269 +Lisa Leslie Portland OR 97221 +Barbara G Vinson Buda TX 78610 +Cassandra Pike Everett WA 98204 +Kevin Goodrich Cambridge MA 02141 +Mary Anne Trevey Willits CA 95490 +Tanja Olson Portland OR 97202 +ria sherman Aubrey TX 76227 +Leslie Engel Des Peres MO 63131 +Josephine Rudyk Windsor CT 06095 +kathleen helfrich seattle WA 98144 +Catherine Bonde Moab UT 84532 +Vanessa de Leon Coral Gables FL 3 +Diana Krystofiak Fairfield IA 52556 +John Lodenkamper Golden CO 80403 +Leah Retherford detroit MI 48208 +Carol Taylor Sarasota FL 34241 +Sandy Radoy Adrian MI 49221 +Kevin Brunson Olympia WA 98501 +Mary Canales Bemidji MN 56601-6603 +Dayna Krachtus Westwood NJ 07675 +Rita Cassady Fort Lauderdale FL 33305 +Florence Speiser Albuquerque NM 87112 +Deborah Wood Los Alamos NM 87544 +Peter Throop Keene NH 03431 +Peter Throop Keene NH 03431 +Peter Throop Keene NH 03431 +Clark Andelin Fox River Grove IL 60021 +Cary Terrall Austin TX 78737 +Patti Bess Grass Valley CA 95945 +Leslie Engel Des Peres MO 63131 +jessica dowdell langley WA 98260 +Kelli Russell Sacramento CA 95820 +Joe Lechuga Montebello CA 90640 +Bryan Patterson Santa Fe NM 87507 +Nicholas Crain Yucaipa CA 92399 +Patricia Treadway Johnson City TN 37604 +Margot VanEtten Rochester NY 14624 +Regina Dettloff Warren MI 48093 +Claire Amick Boalsburg PA 16827 +Jennifer Hoyt Golden CO 80401 +Andrea Self Glendale AZ 85308 +Henrike Holdrege Ghent NY 12075 +Bruce Kube Scottsdale AZ 85255 +Karen Dellelo The Dalles OR 97058 +Cris Pratt Oakland CA 94601 +Adrienne Kearney Secaucus, New Jersey NJ 07094 +Bill Green Salem OR 97317 +Dana Mihalko Gallatin TN 37066 +peter giese seattle WA 98116 +Lynn Hammond Memphis TN 38117 +Wendy Caesar-Dare Chestnut Ridge NY 10977 +Susanna McGrath San Diego CA 92119 +Carol Kile Derby KS 67037 +Carol Kile Derby KS 67037 +Stoyka Chipchakova Sofia ot 1000 +Matthew Valenti South Pasadena CA 91030 +Kara Hunter Lehi UT 84043 +Marylin Kraker Fremont MI 49412 +Leontine Walkes Brooklyn NY 11236 +CHARLOTTE THAYER ST CHARLES IL 60175 +Denise Thunderhawk Santa Fe NM 87504 +Minerva Lopez Borrero Melbourne FL 32901 +Kathleen Puerling LaPorte IN 46350 +Kirk Heim Everett WA 98201 +Jessica Potter Asheville NC 28803 +Michael Rodgers Santa Monica CA 90401 +Aubrey Tsevis Blue Springs MO 64014 +Jackson Gillman Mount Desert ME 04660 +Margaret Christensen Dallas TX 75238 +Maria DeMars Ferndale WA 98248 +Manon Lavoie Glendale AZ 85306 +Susan Holper Mountain Ranch CA 95246 +Holly Hayek Frostproof FL 33843 +Clay Hinderliter MACOMB IL 61455 +Elizabeth Davis Davis CA 95616 +richard owen kihie HI 96753 +Eva Lewis Ewa Beach HI 96706 +Marianne Harcrow Whitehouse TX 75791 +Dave Brannen Nicholasville KY 40356 +Breann Murray Tolley Cleveland TN 37312 +Vivian Gast Ambler PA 19002 +Jack Carone Canoga Park CA 91303 +Andrew Tuccillo Philadelphia PA 19130 +Julia Irrgang San Juan Bautista CA 95045 +Jessica Moon Lansing MI 48910 +Julia Hall Damascus OR 97089 +Terry Solom Minneapolis MN 55406 +Eleanor MacLellan Cambridge MA 02138 +Rosa Dolan McHenry IL 60050 +Debra Hayes Monson MA 01057 +Garrett Mumma Pueblo CO 81004 +Lori Youngdahl Peoria AZ 85383 +Courtney Willing san francisco CA 94110 +Richard Irrgang San Juan Bautista CA 95045 +Liorah Wichser Spokane WA 99205 +Nancy McQuilkin Midlothian VA 23113 +Debra Schleef Fredericksburg VA 22405 +Katrina Martyn Brattleboro VT 05301 +Jeanette Hablullah Windsor Mill MD 21244 +Alison Robb Woods Hole MA 02543 +ROBERT HARRINGTON LOUISVILLE CO 80027 +Tere Daane Las Vegas NV 89118 +Christine Farrell-Riley Quincy MA 02171 +Sarah Hersrud San Antonio TX 78233 +Leslie Louisell Fennville MI 49408 +Melinda Morris san diego CA 92117 +Kerry Taylor Annapollis MD 21409 +Tammy Howard King of Prussia PA 19406 +Stacy Pahre Bridger MT 59014 +rose shulman charlotte NC 28227 +Melissa Frans Brunswick ME 04011 +Victoria deMara Berkeley CA 94708 +Sharon Buazard Rockford IL 61109 +Susan Ammiro McMinnville OR 97128 +Gloria Swan Oakland NJ 07436 +Aleya Spencer San Mateo CA 94402 +Christopher Steeves West Vancouver BC V7S 1C2 +kali albert Portland OR 97225 +Judy Farless Santa Rosa CA 95404 +Noah Keifer Gladewater TX 75647 +McKenzie Blair Attleboro MA 2703 +Amie Spivey Dayton OH 45420 +Ann Bullard Palm Desert CA 92211 +Jack Lupo Conklin NY 13748 +Jan deters newport beach CA 92660 +Shanna Wroten-Tucker Boise ID 83702 +Monica Mullens Santa Monica CA 90403 +Kim Cramer Apache Junction AZ 85219 +Heather Gustafson Collegeville PA 19426 +Lise Dirlam Kihei HI 96753 +Emily Dawson Portland OR 97214 +John Annecone San Jose CA 95124 +Jennifer Mlnarik Portland OR 97223 +Trina Rowles Vancouver BC V6L 2A4 +Susan Roddy Stewart Boerne TX 78006 +Wes Burk Atascadero CA 93422 +Renate Rivelli Englewood CO 80113 +alexander Gunuey Weston CT 06883 +Marianna Delinck Chicago IL 60640 +Pamela Ruediger Spencer WV 2528;7 +Meredith Neria Kemp TX 75143 +Sharon Lieberman Coral Springs, Fl. FL 33067 +Emma Goodman San Francisco CA 94109 +Bob Tomkins Blairstown NJ 07825 +Karen Payne Chepachet RI 02814 +dennis wright Glendale CA 91201 +Martha Clark Elmhurst IL 60126 +Ross Rosen Westfield NJ 07090 +Jason Martin Edmonton AB T5S-2J5 +Amber Gibbs Scottsdale AZ 85251 +Nancy Fressola St. Petersburg FL 33713 +Michelle Flanders-Otey Endicott NY 13760 +Jann Rowbal Fairfield CA 94534 +Sandra Thomas Edina MN 55439 +Peter Schultze-Allen Berkeley CA 94703 +Tecla Loup Tecumseh MI 49286 +Jan Henderson Redwood City CA 94061 +Karen Haralson Felton CA 95018 +renee vanvyve kalamazoo MI 49008 +Catiya Gainor Seattle WA 98 +barbara wimsatt CHICAGO IL 60615 +Carol Newton Los Angeles CA 90027 +joy zuber walnut creek CA 94596 +Dwight Sims Sebastopol CA 95472 +Tim Squires Santa Fe NM 87505 +wright sandi middleville MI 49333 +Patricia Welty Bethesda MD 20817 +Donna Schmader Warwick RI 02886 +Jennifer Star Cambria CA 93428 +Martina Wickizer Indianapolis IN 46220 +Michelle O'Keefe Homer NY 13077 +Laurie Seymour San Juan Capistrano CA 92675 +Diane Demee-Benoit Corte Madera CA 94925 +ramapriya ruiz Monterey CA 93940 +Andrew and Kathleen Wittenborn Pleasantville NY 10570 +Michelle Parenti, MS, RD, LD/N West Palm Beach FL 33405 +maxine hull atlanta GA 30305 +Jeanne Grandy W. Hartford CT 06119 +michael sailor aspen CO 81611 +Nat & Sandee Childs Miranda CA 95553 +seth smith morgantown WV 26505 +deirdre holzweiler Fbks AK 99709 +Laurie Hanselmann Fort Collins CO 80524 +Joy Beckner Chesterfield, MO 63017-7412 +Dani Palomino Altadena CA 91001 +Mary Krauss Princeton NJ 08540 +Hank Bourscheidt Westminster CO 80020 +Marjorie Gayley Wilmette IL 60091 +Maura Hoff Chicago IL 60616 +Jacob Silver Negaunee MI 49866 +Heather Cameron Auburn MA 01501 +Cristina Ramirez Chico CA 95926 +J.K. Deybrook Culver City CA 90232 +Denise Lytle Fords NJ 08863 +Lisa Perrine Beaverton OR 97007 +Wendy Shapiro Walnut Creek CA 94598 +sarah rosenberg los angeles CA 90029 +Christine Nilsson Fletcher NC 28732 +Alan Bail Los Angeles CA 90066-2009 +Elizabeth Marsis Providence RI 02907 +Elizabeth Marsis Providence RI 02907 +Jenae Neiderhiser Middleburg VA 20118 +Wendy Ramunno New York NY 10025 +Elaine Claudio Cape Coral FL 33914 +Elaine Claudio Cape Coral FL 33914 +Stephanie Nelson-Brooks Holualoa HI 96725 +Phyllis Strock Philadelphia PA 19118 +Larry Wood Auburn CA 95603 +Deborah Williams Aurora CO 80013 +Brenda Ball St. Petersburg FL 33702 +susan grant santa monica` CA 90405 +Mary Jo Comerford Decatur IL 62526 +Gordon Satterlund Phoenix AZ 85053 +Florence Margalit HACKETTSTOWN NJ 07840 +bernadine marsis boulder CO 80304 +Ed Fiedler Austin TX 78758 +Sara Rostampour Minneapolis MN 55404 +vanessa schneider oshkosh WI 54904 +Sarah Stout Santa Fe NM 87505 +Lori Moldovan Miami FL 33156 +Maggie Coyle Franklin TN 37069 +Laura French North Kingstown RI 02852 +Stephen Pryputniewicz Forestville CA 95436 +Joan Wrzala Marina del Rey CA 90292 +Kerry Dietz CLAYMONT DE 19703 +Candida Cutrer Gonzales LA 70737 +Bessy Berman Santa Fe NM 87507 +Denise Lytle Fords NJ 08863 +David Powelson Red Feather Lakes CO 80545 +Monika Shaham Lafayette CA 94549 +Bobbie Flowers New York NY 10011 +Scott McBurney Topeka KS 66609 +Allison Borsheim Duluth MN 55803 +Valerie Simone Strongsville OH 44149 +Erin Edwards Ancram NY 12502 +lauren stanley Austin TX 78723 +Pamela Savelo Dunedin FL 33755 +jason sartor tempe AZ 85281 +Ciara Hylarides Stanwood WA 98292 +Brent Eubanks El Cerrito CA 94530 +Kristen Gree Albuquerque NM 87108 +Barbara Neller Searcy AR 72143 +Stephanie Sachs Corona CA 92881 +Jessica Dean rouzerville PA 17250 +David Garcia Santa Barbara CA 93105 +naomi chuah langley BC v1m +Sondra Bierre Pleasanton,CA CA 94566 +Asa Geiger Salida CO 81201 +Janet Sauerwein Hamilton OH 45013 +Robin Sullivan Northborough MA 01532 +Erika Jues Long Beach CA 90808 +Steven Morris Arvada CO 80005 +Jamie Hascall Santa Fe NM 87501 +Mary Wiebe Winnipeg MB R2K 1C2 +Kyle Rolnick Lorane OR 97451 +John Wessley Chicago IL 60630 +Judy Atterholt Mountain View CA 94041 +Janet M. Johnson Santa Barbara CA 93120 +Debbie Tarr Kettering OH 45429 +G. Hullar Simi Valley CA 93063 +christie hendrich Juneau AK 99824 +Marlene Hodges-Earl Orange CA 92866 +kimberly KAUFFMAN CARMICHAEL CA 95608 +Robert Burr Bellingham WA 98229 +Robert Burr Bellingham WA 98229 +Ruta Radzins SF CA 94117 +Hannah Albert Portland OR 97225 +Oscar Revilla Alguacil Madrid ot 28024 +Kyoko Wyse Oakland CA 94610 +Susan Newman Palo Alto CA 94306 +Cindy Bish Sandy Lake PA 16145 +Lisa de Vincent Los Angeles CA 90049 +David Adams Penn Valley CA 95946 +Roxene Miller Douglas AK 99824 +Mary Palenque Martinsburg WV 25403 +Debra Bourt Milford CT 06460 +Sunni Russo dayton OH 45449 +Margaret Riordan Atlantic Highlnds NJ 07716 +jennifer dobbins sarasota FL 34231 +val grecu peoria AZ 85383 +Veronica Sforza Miami FL 33186 +Fabrizia DiMaio Ellington CT 06029 +ramin rouhani Lewisville TX 75067 +Fabrizia DiMaio Ellington CT 06029 +Fabrizia DiMaio Ellington CT 06029 +Kerry Kilroy Westborough MA 01581 +Delia Quigley Blairstown NJ 07825 +Raisa Kogan Indianapolis IN 46258 +Paula Warner Palm Coast FL 32164 +David Panko State College PA 16803 +Judy Berry Dahlonega GA 30533 +Mary Meinert Eagan MN 55122 +Maria Lemon olmsted falls OH 44138 +Nancy Mann Norton OH 44203 +mary george sacramento CA 95838 +Beverly Nunes Taunton MA 02780 +Marcia Hage Cotton MN 55724 +Jane Griffith Northville MI 48168 +Christina Cowlishaw richmond VA 23233 +Blake Suzelis Newton Falls OH 44444 +Alycia Biondo Pleasant Mount PA 18453 +Claudia Greco Brooklyn NY 11234 +Richard Meagher Norway ME 04268 +Michael King Staunton VA 24401 +TAYO SKARROW BRAINTREE VT 05060 +Sarah Hummingbird San Francisco CA 94129 +Malika Muhammad Laveen AZ 85339 +k Evans Duluth MN 55802 +carrie gorman concord NH 03301 +jay kamke havana FL 32333 +John Pazdro Phoenix AZ 85022 +joe radoszewski milwaukee WI 53211 +Donald Lohr Broadway VA 22815 +Roxana Lopez Duluth MN 55807 +Relinda Walker Sylvania GA 30467 +Fiona Richards Loveland OH 45140 +Benita Dill Huntington Beach CA 92646 +Karen Marion Middleton WI 53562 +Katherine Wallick Plainville MA 02762 +Jeremiah Cone Alhambra CA 91801 +Jason Mann Knoxville TN 37909 +Sarah Grimm Eugene OR 97405 +Wayne Thompson Coatesville PA 19320 +diane powers orland CA 95963 +Cynthia Frantz Oberlin OH 44074 +Debbie Haghighat Edison NJ 08820 +Susan Lippman Austin TX 79848 +Diane Blackburn Garland TX 75044 +Michele Whittaker Nashville TN 37212 +John DeFusco Cranston RI 02921-3606 +Emily Bragonier Pittsburgh PA 15201 +Deborah Smith Apache junction AZ 85219 +Melissa Penman Plum PA 15239 +Marcus Conn Tucson, AZ 85749 +Nancy de la Garza Toledo OH 43615 +Michael Novakowski Fairfax VA 22032 +Thomas Davidson Garland UT 84312 +Thomas Woods North Liberty IA 52317 +Chandra Metheny Greensboro NC 27455 +Chandra Metheny Greensboro NC 27455 +Slava Volman Great Neck NY 11021 +Kelly Ernst Washington DC 20009 +Margaret Muller LaGrange KY 40031 +Nancy Sawka Salem OR 97302 +Bruce Reed Seattle WA 98101 +Juanita Casagrande Gainesville FL 32605 +Lisa Orlando algonquin IL 60102 +Janelle Friedman Los Angleles CA 90049 +Adam Hancock Chatsworth CA 91311 +Mayacamas Olds Sonoma CA 95476 +Chad Shults Brooklyn NY 11238 +raymond marion madison WI 53706 +Grazia Mieren Kensington MD 20895 +Andrea Appel Birmingham MI 48009 +Robert Barrow Syracuse NY 13215 +Kym Hadden Hilliard OH 43026 +Kim Schultz Hotchkiss CO 81419 +Kathleen McMillan New York NY 10003 +lynda agresti surprise AZ 85379 +mardi hanson Higganum CT 06441 +H.K. Peters,,Jr. West Grove PA 19390 +Jeanine Krenicky Tucker GA 30084 +Jennifer Charters Boise ID 83709 +Rick Aber Denville NJ 07834 +Michelle Hemingway MD Lenox MA 01240 +Katherine Kruse Chassell MI 49916 +Lynda Petersen Tucson AZ 85742 +Ruth Davis Waynesboro PA 17268 +Kelly Wolf Watsonville CA 95062 +Barbara Davidson West Peoria IL 61604 +Jenny Bodwell Terre Haute IN 47807 +Timothy Harrison San Pedro CA 90732 +Vonda Welty Eugene OR 97403 +Lisa Kraft Jersey City NJ 07306 +Paul Drowns Portland ME 04103 +Jolene Gunter hamilton ON l8n +Karen Peters Phoenixville PA 19460 +C. Garges Charlottesville VA 22901 +Nicole Siskind Calabasas CA 91302 +Kate Prejean Port Aransas TX 78373 +Christine Fleming Boulder CO 80301 +Julianna Rutland Grosse Pointe Farms MI 48230 +Shilo Chang Escondido CA 92025 +Elaine Kendall Friday harbor WA 98250 +Lenore Meyer Seattle WA 98104 +Marie Dolce Jacksonville FL 32205 +Lauralyn Eimans Covina CA 91723 +Josef Kozaka Lebanon Springs NY 12125 +Phyllis Myers University Park FL 34201 +Jennifer Hopkins Bothell WA 98011 +Jennifer Hopkins Bothell WA 98011 +Jennifer Hopkins Bothell WA 98011 +Jennifer Hopkins Bothell WA 98011 +Steven Branch Providence RI 02906 +Peter Buck Roslindale MA 02131 +Nathan Pedersen Chapel Hill NC 27516 +Kathryn John Sacramento CA 95833 +Katherine Bromage Brooklyn NY 11231 +Rebecca Mulert El Segundo CA 90245 +Marisa Menicucci Sunnyvale CA 94086 +Kathleen Kawalec Manhattan IL 60442 +Lee Nash san carlos CA 94070 +Jeanette Jaramillo Solvang CA 93464 +S Kiser Portland OR 97206 +Dawn Schaef Harrisburg PA 17111 +Jennifer Van Loan Sunfield MI 48890 +Diane Murphy Brecker Davie FL 33325 +Ann Marie Sunderland St. Paul MN 55124 +Jennifer Hopkins Bothell WA 98011 +Jennifer Hopkins Bothell WA 98011 +Deborah Ford Cortland NY 13045 +Mary Jaklevick Long Beach CA 90807 +Jocelyn Ziemian New York NY 10065 +Samantha Jones Half moon bay CA 94019 +Dianne Boulay Lake Villa IL 60046 +Michael Norkevicus Pittsburgh PA 15234 +Wes Cleveland Phoenix AZ 85014 +DEBBIE Persampire Huntington NY 117434 +Theresa Cady Missoula MT 59802 +Sayo Iseri Fair Oaks CA 95628 +DEBBIE Persampire Huntington NY 117434 +Jennifer Ralston Plano TX 75093 +George Balejian Westlake Village CA 91367 +Matthew Russell Deposit NY 13754 +Tatiana Gant Chicago IL 60641 +Marya Small Marmora NJ 08223 +CHARLES SRAMS WEST HARTFORD CT 06119 +Faith Haws St. Cloud MN 56303 +katherine Abbey Riverview FL 33578 +DeAnna Erdelen Glenwood Springs CO 81601 +Liz Hanellin New York NY 10014 +Nancy Slanger Piedmont CA 94611 +monica dunn cle elum WA 98943 +Marc Wilson Clinton WA 98236 +Sarah johnson Hudson WI 54016 +Michael Oaks Las Cruces NM 88007 +frances strege anderson IN 46011 +Zach Zink Seattle WA 98102 +Brenda Jones Green Bay WI 54301 +Estrella Quiroga Whitethorn CA 95589 +Alice Henderson New Orleans LA 70 +Gary Lewin Durango CO 81301 +David Weinstein Boulder CO 80303 +jason orth Lincoln NE 68503 +Allison Moore Seattle WA 98118 +Phyllis Karppi Baltimore MD 21234 +Sonya Norman Tucson AZ 85716 +Alicia Butscher Decatur GA 30030 +Duncan Cox Salem MA 01970 +Nina Keefer Longmont CO 80501 +Shannon Barnes Chandler AZ 85224 +Anne Hastings Murray Port Angeles WA 98362 +George Shrewsbury Prescott AZ 86303 +Bryan Dyck Kitchener ON N2A1E4 +alan kreuzer castro valley CA 94546 +Lisa Burkstaller Albuquerque NM 87108 +Frances Day Yankton SD 57078 +Linda Karl Ellenton FL 34222 +Jon Koriagin Arcata CA 95521 +Monica Torresi pompano beach FL 33062 +Vicki RAMIREZ La Grange TX 78945 +Donald Myers Bradenton FL 34201 +Paul Moss White Bear Lake MN 55110 +Amy Stephenson Seattle WA 98178 +Belen Carmichael Denver CO 80209 +Gale Sterrett Sedro Woolley WA 98284 +Teri Garza Glendale CA 91206 +judy dunn Raceland LA 70394 +Abby Wilkerson Riverdale MD 20737 +Jennifer Bove Pineville AR 72566 +Nobuta Fixer Los Angeles CA 90025 +Cynthia Martinson Raleigh NC 27603 +Jessica Orme Berkeley CA 94707 +Ian Shelley Portland OR 97225 +Noelle Samples Forest Lake MN 55025 +Gregory Makepeace New Brighton MN 55112 +Helen Johnson Westfield NJ 07090 +Erika Hall Ledyard CT 06339 +Linda Ballantine Bow WA 98232 +Kevin Brewster Eagle River WI 54521 +Nora Whisnant Belle Mead NJ 08502 +Mollie Dootson Everett WV 98201 +suz seymour florence MA 01062 +Barbara Walrafen Prescott AZ 86302 +Deborah Rich Monterey CA 93940 +Audrey Peterson-Hosto Huachuca City AZ 85616 +Rene Leveillee West Warwick RI 02893 +Janet Simmons Plainsboro NJ 08536 +Lisa Blake Swanton OH 43558 +Channing Brechlin Rockford IL 61103 +Ruth Stambaugh Black Mountain NC 28711 +Dale Kubbs Plano TX 75074 +Jan Kennedy Biggs CA 95917 +Bonnie Kenny Lakewood CO 81240 +Lauren Pacheco-Theard Coeur d'Alene ID 83814 +Jane Powell Madison WI 53703 +Lon Withers Chicago IL 60657 +dan longshore penrose CO 81240 +Heather Newland Denton TX 76205 +Norman Weiss Philadelphia PA 19119 +Brian Peyton Decatur TX 76234 +Debbie Combs Queen Creek AZ 85242 +Sheila Daugherty Galloway NJ 08205 +John Kyser Denver CO 80249 +Aaron Lockridge Minneapolis MN 55408 +Brian Milton Santa Clara CA 95050 +Krissa Johnson-Sotomayor Cary NC 27513 +Nelly Ordija Lady Lake FL 32159 +Yesenia Villasenor-Rodriguez Chicago IL 60616 +Cathy Del Grosso Glendale NY 11385 +NICHOLAS LAWRUS PLEASANT HILL CA 94523 +judith Lewis Santa Fe NM 87508 +Olivia Barham LA CA 90025 +Ed Cummings Roeland Park KS 66205 +Guy Zahller Aptos CA 95003 +Guy Zahller Aptos CA 95003 +Ed Cummings Roeland Park KS 66205 +Barbara Satkoski Niles MI 49120 +Jayn Foy Seattle WA 98144 +Rhonda Woolsey Columbia MO 65203 +Kathy Finger Columbia SC 29206 +Terrie Leach Boonton NJ 07005 +Grant Swanson Portland OR 97206 +saidah domenech lutz FL 33559 +Melissa Barker Effingham IL 62401 +Christina Arlt Philadelphia PA 19104 +Eve Cholmar New York NY 10012 +Janet Glassberg Eugene OR 97440 +Aimee Petrosky florence MA 01062 +Joseph Watson Del Mar CA 92014 +Valerie Lyon-Parker Bellingham WA 98225-1450 +Valerie Lyon-Parker Bellingham WA 98225-1450 +Patricia Risso Middleburg PA 17842 +Dan Feinstein Westbury NY 11590 +KAREN GRASS PHOENIX AZ 85023 +Jennifer Mayor Barton VT 05822 +Edith Ziegler Palmerston ON N0G2P0 +Lisa Fanthorpe-White San Francisco CA 94133 +Annette Bartos Roseville CA 95661 +Jennifer Bryan Northampton MA 01060 +Hillary Arend Tehachapi CA 93561 +Chris Smith billerica MA 01821 +colleen gray newark DE 19713 +DIANE HIPENBECKER VERNON HILLS IL 60061 +Hermann Attinger San Carlos CA 94070 +Hermann Attinger San Carlos CA 94070 +Candie Lange Ventura CA 93001 +Mary Juneau Kerhonkson NY 12446 +Tonya Merrow Fenton MI 48430 +Kathryn Shaffer Lake Oswego OR 97035 +Alicia Dickinson Flushing MI 48433 +Lindsay White Burlington VT 05401 +Karina Badell Oakland CA 94610 +Teresa Koepke Queen Creek AZ 85242 +Rich Huss Gunnison CO 81230 +J Frank ann arbor MI 48109 +Heather Kahler Las Vegas NV 89131 +Kathryn Colasanti East Lansing MI 48823 +Rachel Wakefield Farmington NH 03835 +Debbie McCarthy Bowdoin ME 04287 +Lisa Robertson Mineral VA 23117 +patricia jordan arcata CA 95521 +carol DeAntoni Crestone CO 81131 +Louise Harrison Austin TX 78737 +J. Brent Trenton NJ 08618 +Joy Aikin Beaverton OR 97006 +Linda Andersen Orangevale CA 95662 +Carolyn Morgan Chesterfield MO 63017 +Richard White Mill Valley CA 94941 +Diane C Carson Denver CO 80220 +Holly Campbell Atlanta GA 30305 +Patricia Keefe Barrington RI 02806 +Patricia Keefe Barrington RI 02806 +Jan Soloy Olympia WA 98502 +Theresa D Green Helena MT 59624 +Eduardo Felix Altamonte Springs FL 32714 +Jessica Cobble Albuquerque NM 87105 +Philip Swanton New York NY 10003 +Jennifer Dettore Logan UT 84321 +Rita Hanle St. Paul MN 55108 +melanie thorsen victoria BC v8z6t3 +Gary Angell Reardan WA 99029 +Jackie Perrucci Schaumburg IL 60194 +Gail Skowronski Folsom CA 95630 +Susan Stubblefield Bellingham WA 98225 +Suzanne Landry Ventura, CA CA 93001 +Daniel Hornfeldt Saint Paul MN 55104 +Dee Dollor los angeles CA 90044 +Sylvan Grey Flagstaff AZ 86002 +C. Dougherty Wheat Ridge CO 80034 +Teri Meadows Fairfax CA 94930 +Lisa Tenney Bellingham WA 98225 +Kathy Chiavola Nashville TN 37209 +Cassie Pearson Mount Carmel PA 17851 +Lori Hayes Springfield OR 97478 +Joel Milton Amagansett NY 11930 +Christopher Fry San Francisco CA 94110 +Jonathan Adelman Sausalito CA 94965 +Eren Giles Austin TX 78746 +Connie Peirce Belvedere CA 94920 +Amy Lawton Dover PA 17315 +Virginia Levasseur Norwich CT 06360 +Frank Rowland Newfield NY 14867 +Diana Maney Asheville NC 28801 +Marie Nickell Mabel MN 55954 +Marie Nickell Mabel MN 55954 +Chris Dewey South Jordan UT 84095 +Beth Swanson St. Louis MO 63108 +Kessler Christine Nantes ot 44000 +Brewer Thompson College Park MD 20740 +Melinda Shaw Florence MA 01062 +Sacha Stallman Arcata CA 95518 +Paula Andries Houston TX 77007 +Linda Dellaria Trenton NJ 08610 +Sandra Bohannon Gibsonton FL 33534 +Marla Estes Ashland OR 97520 +Tracy Lein-Elmore Caseyville IL 62232 +jennifer spada lake city PA 16423 +Rebecca Hassett Lynchburg VA 24504 +leo masciulli travelers rest SC 29690 +Morgan Holbrook Denver CO 80204 +Kirsten Greene Jersey City NJ 07302 +Jade Lai San Francisco CA 94117 +Karolyn Redoutey Minneapolis MN 55407 +Virginia Zawistowski Minneapolis MN 55406 +Tamara Matz Los Angeles CA 90027 +Joe Ginsburg Seattle WA 98133 +Carol Schiro Cleveland OH 44109 +thomas dorsey belmont MA 02478 +Margaret Clay Clayton ID 83227 +Anne Holzinger Minneapolis MN 55407 +Wendy Bauer san Francisco CA 94112 +John and Dorothy Tambornino necedah WI 54646 +Ronald Rennert Oakland CA 94611 +Melinda Chupp Chesapeake VA 23322 +Hilda Spagna Green Valley AZ 85614 +Bobbi Elliott ORANGEVALE CA 95662-5140 +lorraine gaines Goleta CA 93118 +Michael Finley Knoxville TN 37923 +Terry Vlossak Hartford WI 53027 +tom chagolla frederick CO 80530 +Gabriele Zsebi Vienna VA 22181 +Marina Zaturenskaya Skokie IL 60077 +Pam Carter Anna OH 45302 +Jennifer Rasmuson East Helena MT 59635 +marilyn foster woodridge IL 60517 +Becky CM willow springs IL 60480 +Christa Hein Centerburg OH 43011 +Shayna DeMedici Tampa FL 33603 +Sharon Rieger Arnold MD 21012 +Trisa Swerdlow rockin CA 95765 +Jody Seeke Iron Mountain MI 49801 +Claire Kozower Somerville MA 02143 +jane kirkwood wauwatosa WI 53213 +Linda Bruce baltimore MD 21202 +Riley Spicer Annapolis MD 21401 +Dennis M Schaefer new port richey FL 34562 +Mary McMahon Greenville RI 02828 +Robert Glenn San Socie Jacksonville FL 32224 +Kalinke ten Hulzen Wieringerwerf ot 1771 RW +Ann Thornlow Pleasant Garden NC 27313 +Brian Erickson Columbus OH 43202 +Amanda Meyer Tempe AZ 85282 +James Ellis Brooklyn NY 11222 +Kathy Leitner Angleton TX 77515 +Dara Marks Marino Flagstaff AZ 86004 +dena seki santa monica CA 90405 +Keith Schiller Madison WI 53703 +shamu sadeh falls village CT 06031 +Megan Jackson Lincoln NE 68508 +Virginia Schmidt Sloatsburg NY 10974 +Patricia Coffey Langley WA 98260 +Mary Thrantell Oak Park IL 60302 +Amarantha Harrison Homer AK 99603 +RICHARD QUARCINI meridian ID 83642 +Hannah Crum Los Angles CA 90034 +G. Stephen Chrsitopher Troy NY 12180 +Bonnie Raguet Duluth GA 30096 +Jessika Rek Mineral Ridge OH 44440 +Phillip Sparrow Wasilla AK 99654 +Brianna Knight Malden MA 02148 +Julie Reynolds` Leasburg NC 27291 +gerald clarke austin TX 78745 +Elizabeth Trindade Smyrna GA 30080 +Matthew Tumas haverhill FL 33415 +Rob McKenzie Glen Ellyn IL 60137 +Lynn Willeford Langley WA 98260 +Kathy Link Clinton WA 98236 +Bill Livermore Monrovia CA 91016 +Susan Preucil Ketchum ID 83340 +Janet Woodman Crestone CO 81131 +Linda Wallace Clinton WA 98236 +Angela Johnson Wauwatosa WI 53213 +Katherine Clifford Portland OR 97206 +Stephanie McCleary Port Hadlock WA 98339 +Kenneth Dishman Milwaukie OR 97222 +elena gardella berkeley CA 94702 +Pamela Mitchell Langley WA 98260 +Linda Bainbridge Greenbank WA 98253 +Marcia Kilpatrick Malden MA 02148 +Adriana Botic Chicago IL 60647 +Anna Spanjaart San Jose CA 95120-1943 +Ka Higgins Orange CA 91866 +Joan Gugerty Baldwin MD 21013 +Josef Reiter Astoria NY 11106 +Sherrie Wendt Clinton WA 98236 +Jack Cousineau Altadena CA 91001 +Lisa Florenzano Hingham MA 02043 +Roger Carrillo Tucson AZ 85719 +Lisa Camasi Berkeley CA 94709 +Lisa Yarrow Langley WA 98260 +Kathryn Persha Iron Ridge WI 53035 +Sarah Winston Glendale AZ 85306 +Lauren McCurdy Mountain Top PA 18707 +Melinda Arndt Fairfield IA 52556 +Traci Gustin Chicago IL 60647 +Janice Wood Sunderland MA 01375 +luke schell st Paul MN 55104 +Kaye Williams Berkeley CA 94705 +Evelyn Sanchez Covington LA 70433 +Lorene Marchioli Atlantic Beach FL 32233 +Eric Sortun Everett WA 98201 +wendy johnson arundel ME 04046 +Anne McLaughlin Hot Springs NC 28743 +Kathy Smith Estes Park CO 80517 +donna Dixon Eugene OR 97404-3222 +Anna Tegarden Murfreesboro TN 37129 +Jennifer Zacco Minneaplois MN 55405 +Michael Nichols Clinton WA 98236 +Charles Wyrostok Spencer WV 25276 +Alexis Abell Leetsdale PA 15056 +Mary Till Derry NH 03038 +Stanley Guild IV Monkton MD 21111 +J. T. Parker Hamilton MT 59840 +Marianne Edain Langley WA 98260 +karen olson camp meeker CA 95419 +Lisa Friede Seattle WA 98112 +Barbara Schiltz Clinton WA 98236 +Deborah Ellenwood Hudson MI 49247 +Elaine Herzog Thousand Oaks CA 91360 +Michael DiGioia New York NY 10014 +Leslie Linnebur San Francisco CA 94115 +Khummit Hatshepsitu Philadelphia PA 19131 +Swan Anderson Boxborough MA 01719 +Susie Fehrmann poughquag NY 12570 +Julie Buckman Sacramento CA 95819 +Jane Solomon Morgan Hill CA 95037 +rebecca schmitt warwick RI 02889 +Kane Cotton Monument CO 80132 +Ronald Bjick Apalachin NY 13732 +Carey Caccavo Wheaton Sebastopol CA 95472 +Lea Langdon Columbia MO 65203 +Alyce Strong Stuart FL 34994 +Michelle Rivera La Puente CA 91746 +Cheryn Zimmer Maggie Valley` NC 28751 +Jane Fulmer Port Townsend WA 98368 +wendy Ferrier LANGLEY WA 98260 +Peggy Elscott Overland Park KS 66212 +Anne-Corinne Kell Palmer AK 99645 +William Maag SOUTH GLASTONBURY CT 06073 +Anju Arora SOUTH GLASTONBURY CT 06073 +Kumud Arora SOUTH GLASTONBURY CT 06073 +Heather Shelhamer Douglassville PA 19518 +Julie Rockcastle Panama NY 14767 +Susan Abram Fremont CA 94536 +Bliss Knorpp langley WA 98260 +Marcia Michel Portland OR 97211 +Christina McDowell Winnipeg MB R3G 3C7 +Flora Goldman New York NY 10013 +Christopher Barlow Gillette WY 82718 +Bliss Knorpp langley WA 98260 +Laura McGuire Palos Verdes Estates CA 90274 +Pamela Todd WEbster Groves MO 63119 +Gregory Abell Leetsdale PA 15056 +Jolia Koo Oakland CA 94602 +Eric Rose Buskirk NY 12028 +K. Sage Madison WI 53703 +Tom jacko Cave Creek AZ 85331 +Mary Seeber lakewood CO 80232 +Gretchen Olson Austin TX 78751 +Doug bBelscher Boulder CO 80303 +Jeanne Ham Coon Rapids MN 55448 +garrett stuessy santa cruz CA 95062 +Karen Antholis Los Angeles CA 90035 +Michael Guarino San Jose CA 95124 +Benjamin Short Santa Cruz CA 95062 +Lauren Zack Los Alamitos CA 90720 +yen chu Roseville CA 95678 +stacey williams cave junction OR 97523 +Corinne Pettey Sacramento CA 95842 +Anne Yount Mendocino CA 95460 +Kim Goldman Irvine CA 92618 +Guy Sperling Memphis TN 38183 +Joyce Oates Langley WA 98260 +Trevor Scott philadelphia PA 19150 +Melody Jeffrey VIRGINIA BEACH VA 23456 +adam kimmel NY NY 10003 +Roselene Haines Haines City FL 33844 +Kimberly Williams holton MI 49425 +Patricia Powell Joplin MO 64803 +Brian Karpin Prt Jefferson Sta NY 11776 +K Boyce Wheaton IL 60187 +Jennifer Aday Lancaster CA 93535 +Laurie Freeman Hingham MA 02043 +Veronica Marohn Tumwater WA 98501 +David Ellenwood Hudson MI 49247 +E Kovacs Denver CO 80203 +Juanita Hamre Lacey WA 98503 +selma faucher gainesville FL 32609 +Gwen Clemens Hot Springs NC 28743 +Dianne Hanlon-Druyff Marblehead MA 01945 +Catherine Bleser Manitowoc WI 54220 +Colleen Gustafson Barrington IL 60010 +Colleen Gustafson Barrington IL 60010 +Elizabeth Reeves Salisbury NC 28147 +LIa Payne Kalispell MT 59901 +Regina Vogt Sugar Land TX 77479 +Jayme Mills Waltham MA 02453 +L. Peterson Brooklyn NY 11232 +Natalie Philip Orange Park FL 32065 +Jessica Toole Knoxville TN 37919 +Jim Gagne Phoenixville PA 19460 +Albert Lorelli brooklyn NY 11206 +Mookie Fudemberg Sebastopol CA 95472 +Anne Cornell Beavercreek OH 45430 +Miguel Garcia Boulder CO 80302 +sue blackwell iowa city IA 52246 +Eva Tamez Davis CA 95618 +Leticia Tirrez San Francisco CA 94124 +Ann Amberg Langley WA 98260 +Maggi Bronson Sandy UT 84093 +howard rotstein portland OR 97213 +Pamela Kravetz Brooklyn NY 11214 +heather herbert sun valley CA 91352 +Thomas Higgins Durham NC 27707 +Alexis Franzese Durham NC 27707 +Diane Franzese Hauppauge NY 11788 +Lisa Ryder Hermosa Beach CA 90254 +joshua pribanic sandusky OH 44870 +sandi silagi Vashon WA 98070 +james montgomery buckley WA 98321 +Julia Eark Larkspur CA 9 +Sakima White McDonough GA 30252 +Kathleen Fabish Rock Hill SC 29732 +Leyna Vick Lincoln NE 68503 +Sarah Miller Ft. Collins CO 80521 +Carlo Popolizio Estell Manor NJ 08319 +ERIC MEYERS ANN ARBOR MI 48105 +Tiffany LeRoux Holton MI 49425 +Susan McFarlane Hermosa Beach CA 90254 +Susan Buchanan Garden Valley CA 95633 +patricia becchetti stillwater MN 55082 +Anza Muenchow Clinton WA 98236 +Meghan Van Vleet Portland OR 97215 +Lynne Lapidus Whippany NJ 07981 +Lauren Berlekamp Perrysburg OH 43551 +Peggy DeBell Hot Springs NC 28743 +Marilyn Karim Wheaton IL 60187 +Courtney Couch Kamiah ID 83536 +Ahmed Nasus Freehold NJ 07728 +Susan McPherson Sterling MA 01564 +Abby Johnson Memphis TN 38120 +Susan loesser Edgewater NJ 07020 +Ann Tharp Fort Collins CO 80525 +Kim Glann Culver City CA 90232 +Roni Murphy Perry GA 31069 +Elizabeth Gracia Chicago IL 60608 +Helen Francis Silver City NM 88061 +Georgia Hardy Garland TX 75040 +John Ashley Sevierville TN 37876 +Todd Born Seattle WA 98115 +Ruth Siekevitz NY NY 10023 +Rita Rivera Santa Cruz CA 95062 +Gweneeth Conklin Hot Springs NC 28743 +Heather Anne Bednarz Brimfield MA 01010 +Marcia Michel Portland OR 97211 +Jane Angulo Denver CO 80210 +domingo e gapuz jr brooklyn NY 11218 +CAROL PLUNKETT FREELAND WA 98249 +D J Spence-Gilbert Milwaukee WI 53222 +Darlene Jakusz Amherst Jct. WI 54407-9580 +Jeff and Karen Hay Carlsbad CA 92010 +Christy Levine Saint George UT 84770 +ANNE VAN DEN AVOND Austin TX 78749 +Debra Arch Santa Barbara CA 93105 +jim allAn whitney point NY 13862 +rita leon monterey CA 93940 +Amy Stone Girdwood AK 99587 +Barbara Krull Mableton GA 30126 +Bliss Knorpp langley WA 98260 +laura lorenzetti Yarmouth ME 04096 +Merle Kramer Ypsilanti MI 48197 +Darcy Bowden Ypsilanti MI 48197 +Paul Kaplan Amherst MA 01002 +Craig Hultman Marana AZ 85653 +Rhonda Smith Seattle WA 98106 +Sarah Snider Cambridge MA 02138 +Jenifer Goetz State College PA 16801 +Brunilda Almodovar Coram NY 11727 +Bev Huntsberger Altadena CA 91001 +Cathy McCabe Denver CO 80220 +Joy Koski Ceres CA 95307 +Alvie Hearren Lancaster PA 17603 +Mark Robison Argyle TX 76226 +Ginger Jones Magnolia AR 71753 +Katharine Brabec Delano MN 55328 +Barbara Wishingrad Santa Barbara CA 93121 +Victoria Poliquin Ventura CA 93001 +Kim Turner Bountiful UT 84010 +Erin Hamant Los Angeles CA 90034 +Catina Courtney Phoenix AZ 85008 +Brian Esterberg Farmington Hills MI 48334 +Karolina Peret Calgary AB T2W3N3 +Michaella Romero albuquerque NM 87108 +Jennifer Coy Littleton CO 80128 +Anthony Mix Roselle IL 60172 +Ralph Lotz Downers Grove IL 60516 +CAROL NEENO MADISON WI 53713 +Kathleen Fitzgerald Boston MA 02122 +Debra Greenbaum Clearwater FL 33755 +JoAn O'Connor Viroqua WI 54665 +Mary DeWitt Sandy Lake PA 16145 +Lynn Weatherford Azle TX 76098 +Steve Kohn Highland NY 12528 +LIsa Dembrosky Perkasie PA 18944 +Mary Rowland Raleigh NC 27608 +Win Parker Eureka Springs AR 72632 +Martina Chamberlain-Bierman Prairie du Sac WI 53578 +Ann Gammill Shreveport LA 71119 +Tammy Kronebusch Burke VA 22015 +laura krepps ocean grove NJ 07756 +Marie Wheatley St. Louis MO 63116 +Kelly Autrey-Webber Princeton IL 61356 +Robert Jenks Landisburg PA 17040 +kally alford MIAMI FL 33257 +Joan Dukes Prescott Valley AZ 86305 +Ananda Duszynski Fairfield IA 52556 +Deanna Durica Berwyn IL 60402 +Makyla Waters Corrales NM 87048 +Melissa McAree astoria NY 11105 +Stacy Wykle Austin TX 78741 +Daniela LeBlanc Maple Park IL 60151 +Philip Johnston Scotts Valley CA 95066 +kimberly volkots east boston MA 02128 +Michael Baranowski North San Juan CA 95960 +kris prins edmonton AB t5g 1n9 +Elizabeth Johnston Columbus OH 43202 +MaryLin Slater Chattanooga TN 37424 +Tessa Karel Albuquerque NM 8106 +Judy McLean Goffstown NH 03045 +Donna Gawlas Berkeley Lake GA 30096 +Tibor Weinreb Brooklyn NY 11236 +Martin Brown Atlanta GA 30310 +lauren blick millstadt IL 62260 +Shelly Dunn Irrigon OR 97844 +Jonna Woodburn Midlothian TX 76065 +Denise Hacker Edmond OK 73012 +John Belanger Dania FL 33004 +Lynda Hollida santa fe NM 87504 +Nancy gepfert anthony NM 88021 +Jessica La Conte Sausalito CA 94965 +Beki Lincks Portland OR 97217 +Martina Filerio Anthony NM 88021 +tara payne pollock pines CA 95726 +Jason Thomas Crystal MN 55422 +Heather Greek Scottsmoor FL 32775 +Susan Barclay Pittsburgh PA 15208 +Michael Blincoe San Francisco CA 94114 +kendra hunter Haiku HI 96708 +Danika Lugo Long Beach CA 90814 +Louisa Cohen Las Vegas NV 89142 +l whipple los angelesw CA 90038 +Brody Kline Dover PA 17315 +Richard Satterman Mesa AZ 85205 +Sarah Christiansen Summerset SD 57718 +Sarah Dagg Crosslake MN 56442 +Meera Chaturvedi Berkeley CA 94702 +Margaret Vrana Lincoln NE 68502 +Zandra Saez Spokane WA 99203 +Malisa Hlavacek Broomfield CO 80020 +Patricia Bullock Skillman NJ 08558 +Pam Conley Boise ID 83701 +Jessica Evans Santa Cruz CA 95060 +Stephen Hughes EUGENE OR 97403 +Melissa Silvers Seminole FL 33776 +Rana McCollum boulder CO 80303 +Jaki Erdoes Mt. Desert ME 04660 +Lisa Ham Phila. PA 19114 +Lisa Ham Phila. PA 19114 +Carol Mone Trinidad CA 95570 +Donna E Holt-Sieradzki Georgetown MA 01833 +Julie Stephens Fairfield IA 52556 +Cassia Gordon Norton MA 02766 +Susan Weisenburg Cleveland Heights OH 44106 +Lydia Morken Chicago IL 60618 +Chastity Dulay Hanford CA 93230 +Bill Markson Sacramento CA 95822 +Liila Woods Charlestown MA 02129 +Emily Taft Georgetown MA 01833 +John Gabison Aiea HI 96701 +Susie Smith Trumbull CT 06611 +Catherine Mone San Carlos CA 94070 +Janice Foss El Cerrito CA 94530 +Lou Stallcop Spokane Valley WA 99037 +Martina Wickizer Indianapolis IN 46220 +Lynna Dhanani Chicago IL 60615 +Kelly Skoda Decorah IA 52101 +Nanci Avitable Denver CO 80231 +Sue Collins Tempe AZ 85283 +Barbara Bear Boulder CO 80305 +Jessica Bright Madison OH 44057 +Elizabeth Patten Van Nuys CA 91405 +Elizabeth Patten Van Nuys CA 91405 +Kelly Pavlik Hometown IL 60456 +Karen Bartig Minneapolis MN 55418 +Suzanne and John Golembieski East Hampton CT 06424 +Natasha Perez Los Angeles CA 90049 +Allan LaValier Stillwater MN 55082 +john fremont los angeles CA 90027 +Anna Bush Aurora CO 80011 +Jill DiSalvio Floral Park NY 11001 +Laura Louria Richmond VA 23233 +Kim Freeman Santa Fe NM 87505 +Jill Oana Alameda CA 94501 +Marya Kravets Richmond VA 23229 +B. A. Brown Liberty TX 77575 +Jerry Frederick Homer AK 99603 +Lauren Permenter Los Angeles CA 90046 +Gale Stocking Stockton CA 95204 +Judy Dowell Cottage Grove OR 97424 +Jessie Casteel Houston TX 77035 +michele samela Phoenix AZ 85042 +Jen Kaiser Green Lake WI 54941 +Joy Del Grosso Howard Beach NY 11414 +D Glave Bloomfield CT 06002 +Beverly Jennings Santa Cruz CA 95060 +Barbara Diederichs Poway CA 92064 +Lisa Allen Hamilton MT 59840 +Mark Koschwitz Clinton CT 06413 +Dolores Voorhees Cedar MN 55011 +Barb Rupert Duluth MN 55803 +angela dimartino chesterfield MI 48047 +Ivan O'Neill Los Angeles CA 90026 +Sarah Hunt Rockville MD 20850 +Jeffrey Way Spring Hill FL 34610 +Steven Moore Snohomish WA 98291 +Christina Abbey Palm Harbor FL 34684 +Daniel Laub Goleta CA 93117 +Leah Samson-Samuel madison WI 53711 +Dawn Prior Pinellas Park FL 33782 +janine jones tallahassee FL 32303 +Yvonne Hansen Austin TX 78745 +Laura Kuehlke Hillsdale NJ 07642 +Blanche Thoma Lake Forest CA 92630 +Wendy MacBain Gilroy CA 95021 +Jackie Johnson Eugene OR 97404 +Erika Parker Concord CA 94521 +Kanui Manley North San Juan CA 95960 +Heather Crimson Pacific Grove CA 93950 +Susannah Hollister New Haven CT 0511 +Victoria Morea Atlanta GA 30345 +Ellen Leaf Santa Monica CA 90403 +John Robbins Soquel CA 95073 +Rachel Deierling Tucson AZ 85716 +Shawna Chacartegui Nampa ID 83686 +Lucy Neider Ashland WI 54806 +Tanya Szymberski Altamonte Springs FL 32714 +June Villeco Blue Bell PA 19422 +Marjean Denby Stanwood WA 98292 +Erica Seidel Plymouth MI 48170 +Erica Seidel Plymouth MI 48170 +Erica Seidel Plymouth MI 48170 +Marlene Walsh Pittsburgh PA 15234 +Marlene Walsh Pittsburgh PA 15234 +Michel Faliero Daniel Island SC 29492 +Bill Cook Minneapolis MN 55407 +stephen benchouk PHILADELPHIA PA 19130 +michele maraldo cleveland OH 44144 +stephen benchouk PHILADELPHIA PA 19130 +Meghan Daugherty Greenville NC 27858 +Arlene Pantalone Redding CA 96003 +Sharon Adam San Francisco CA 94110 +Diane Stone Clinton WA 98236 +Greg Stone Clinton WA 98236 +Sandra King Kelso WA 98626 +Mary Ann DiDomenico Chicago IL 60630 +kIM kROEGER Alpharetta GA 30004 +Bette Mulhearn Aspen CO 81612 +Gerard L Breton Jay ME 04239 +Carol Falender Santa Monica CA 90403 +Flora Goldman New York NY 10013 +Krista White Chicago IL 60614 +Lisa Bodey Crestone CO 81131 +heidi bailey chicago IL 60614 +krista hill twinsburg OH 44087 +Lynn Cerda Price Oakland CA 94602 +Blake Corbitt Kihei HI 96753 +Kari Tornow Pine CO 80470 +caroline kreide Merced CA 95340 +Judith Fleming-Berger Bruce Crossing MI 49912 +william Evans New Braunfels TX 78130 +Tina Husak FLagstaff AZ 86001 +Samara Davy Lakewood CO 80227 +Rebekah Horton Fayetteville AR 72703 +Verna Marceron Kingsland GA 31548 +Michelle Pressler Philadelphia PA 19107 +joannne fleck st cloud MN 56303 +casey throneberry hartselle AL 35640 +Mary Cummings Mount Morris MI 48458 +Cameron Wilson Kennebunkport ME 04046 +Gerry Schenk Bad Axe MI 48413 +Rachel Baldwin Wilmington NC 28401 +judith delottie hampton CT 06247 +Alicia Divens Columbia MD 21046 +Nicholas Sanchez Kansas City MO 64111 +reinette senum Nevada City CA 95959 +Brenda Kennedy Grand Rapids MI 49505 +Courtney Carag Avon CO 81620 +kenn goldman tucson AZ 85733 +Darbi Jewell Green Bay VA 23942 +Achaessa James de Garibay Bothell WA 98021 +Virginia Thomas Durham NC 27712 \ No newline at end of file diff --git a/office/regression/000_000106.txt b/office/regression/000_000106.txt new file mode 100644 index 0000000..5340789 --- /dev/null +++ b/office/regression/000_000106.txt @@ -0,0 +1,1679 @@ +HD|220803|9711198832||AB4NN|A|HA|04/27/2000|04/27/2010||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|226923|0003669274||AG4FM|A|HV|12/11/2008|01/08/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|229155|0002702074||K0CWD|A|HA|12/11/2008|01/27/2019||||||||||||||||||||N||RALPH|V|OAKES||||||||||12/11/2008|12/11/2008|||||| +HD|229647|0003669248||K0FUN|A|HV|12/11/2008|02/26/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|229897|0003672413||K0HCV|A|HV|12/11/2008|02/26/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|236367|9612108737||K2AFD|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|239127|9610213211||K2SGA|E|HV|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|241139|0003672405||K3HX|A|HV|12/11/2008|01/13/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|242121|0003672415||K3ORS|A|HV|12/11/2008|03/03/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|244553|9802095997||K4DET|A|HV|12/28/2007|03/10/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|244623|9612108735||K4DKS|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|246073|9612108938||K4IED|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|246553|9612108902||K4JND|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|246563|9612108713||K4JNX|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||04/19/2000|12/11/2008|||||| +HD|246789|9612108849||K4KEK|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|250780|9612108989||K5DBJ|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|252865|9612108951||K5OYA|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|255044|0003671995||K6CRO|A|HV|12/11/2008|12/15/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|257300|9612108998||K6OUW|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|258191|0003671986||K6TAV|A|HV|12/11/2008|12/15/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|258979|9612108709||K6YUQ|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|259561|9610213624||K7CHX|E|HV|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|260332|9612108968||K7HWZ|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|260714|0003671985||K7KIM|A|HV|12/11/2008|12/15/2018||||||||||||||||||||N||KIMBERLY|M|DINWIDDIE-WEBB||||||||||12/11/2008|12/11/2008|||||| +HD|261045|9906145996||K7MKT|A|HV|07/09/1999|07/09/2009||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|261856|9612108969||K7RPW|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|261898|0003669263||K7RWJ|A|HV|12/11/2008|12/09/2018||||||||||||||||||||N||Robert|W|Jacobs||||||||||12/11/2008|12/11/2008|||||| +HD|262114|9612108822||K7TAR|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|262931|9612108935||K7ZIG|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|263125|9612108843||K8ANS|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|263800|0003672401||K8DTR|A|HV|12/11/2008|02/26/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|264382|0003672412||K8IHF|A|HV|12/11/2008|01/13/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|264461|9612108784||K8ISM|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|264483|0003668012||K8IXB|A|HA|10/13/2006|01/08/2017||||||||||||||||||||N||Nathaniel|L|Grant|Cpp|||||||||12/11/2008|12/11/2008|||||| +HD|265031|9902236994||K8MEG|A|HA|12/11/2008|02/24/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|265731|0003671987||K8QW|A|HV|12/11/2008|10/05/2018||||||||||||||||||||N||ROBERT|E|LIBBIN||||||||||12/11/2008|12/11/2008|||||| +HD|267187|0003669265||K9ACO|A|HV|12/11/2008|10/29/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|270217|9612108860||K9TJM|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|273376|9612108731||KA0MNC|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|273424|9612108896||KA0MTP|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|278295|9812228953||KA1JNG|A|HA|12/11/2008|12/22/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|287362|9901226991||KA2TBU|A|HA|12/11/2008|01/25/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|287830|9612030427||KA2VDP|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|297863|9702048770||KA4NNR|A|HA|11/14/2006|02/04/2017||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|298166|9612108846||KA4PBT|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|299534|9902180231||KA4WOO|A|HA|12/11/2008|02/24/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|299579|9812020239||KA4WUR|A|HA|12/11/2008|12/11/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|300003|9612108774||KA4ZZH|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|303456|0001583379||KA5SAD|A|HA|01/06/2004|02/22/2014||||||||||||||||||||N||JOHN|W|PRIDDY||||||||||12/11/2008|12/11/2008|||||| +HD|306637|9812228975||KA6JXX|A|HA|12/11/2008|12/22/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|306676|9612108746||KA6KCZ|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|307107|9612030408||KA6MXF|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||Mark|A|Panasci||||||||||03/07/2003|12/11/2008|||||| +HD|307828|9612030124||KA6REY|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|308374|9612108895||KA6UCQ|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|312049|9612108993||KA7NZE|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|316016|9612108894||KA8INT|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|316994|9612108773||KA8OBS|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|317161|9612108829||KA8OWQ|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|317311|9612108830||KA8PRY|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|322126|9612108978||KA9NFJ|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|324491|9612108588||KA9WLE|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|324626|9612108911||KA9WWL|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|333520|9604228828||KB0RFE|A|HA|01/06/2005|02/27/2015||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|337850|9612108567||KB0ZCN|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|337852|9612108569||KB0ZCP|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|337855|9612108577||KB0ZCT|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|337856|9612108682||KB0ZCU|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|339393|9810139993||KB1CAU|E|HA|10/13/1998|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/04/1999|12/11/2008|||||| +HD|342246|9400106409||KB2ECN|A|HA|03/21/2000|03/21/2010||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|350846|9508148828||KB2VIQ|A|HA|06/21/2007|06/21/2017||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|353891|9612109883||KB3BRG|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|362220|0002452437||KB5AAU|A|HA|05/17/2002|07/14/2012||||||||||||||||||||N||JOSEPH|W|MILLER|SR|||||||||12/11/2008|12/11/2008|||||| +HD|365175|0002428314||KB5IWF|A|HA|05/17/2002|06/16/2012||||||||||||||||||||N||DORIS|J|MILLER||||||||||12/11/2008|12/11/2008|||||| +HD|376866|9612108958||KB6PGZ|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||09/07/2000|12/11/2008|||||| +HD|376877|9612108759||KB6PII|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|377105|9612108780||KB6QGN|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|380434|9612108992||KB7ATI|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|382636|0003135267||KB7GYC|A|HA|12/11/2008|02/05/2019||||||||||||||||||||N||Joanne|E|Miller||||||||||12/11/2008|12/11/2008|||||| +HD|384367|9905198955||KB7LJP|A|HA|03/20/2003|06/08/2013||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|385407|9505250305||KB7NUO|A|HA|07/18/2001|10/15/2011||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|392343|9612108711||KB8AUC|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|392344|9612108710||KB8AUD|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|394302|9902158858||KB8FZI|A|HA|12/11/2008|02/15/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|394328|9812038994||KB8GAQ|A|HA|12/03/1998|12/03/2008||||||||||||||||||||N||||||||||||||12/03/1998|12/11/2008|||||| +HD|404506|0001748468||KB9AGW|A|HA|12/11/2008|12/11/2018||||||||||||||||||||N||Charles|W|Warner||||||||||12/11/2008|12/11/2008|||||| +HD|412286|9612108544||KB9PCN|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|415121|9811278886||KB9TSW|A|HA|12/11/2008|12/11/2018||||||||||||||||||||N||MICHAEL|D|HALL||||||||||12/11/2008|12/11/2008|||||| +HD|415142|0002751872||KB9TTR|A|HA|12/11/2008|12/11/2018||||||||||||||||||||N||LILLIAN|L|HARDY||||||||||12/11/2008|12/11/2008|||||| +HD|415245|9812238954||KB9TXW|A|HA|12/11/2008|12/23/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|415287|0003537133||KB9TZQ|A|HA|12/11/2008|01/19/2019||||||||||||||||||||N||James|L|Riley||||||||||12/11/2008|12/11/2008|||||| +HD|415383|9903228414||KB9UDN|A|HA|12/11/2008|02/16/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|419011|9812148875||KC0EQY|A|HA|12/11/2008|12/14/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|419242|9902238707||KC0FAX|A|HA|12/11/2008|02/23/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|420234|9612108727||KC0QN|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|421094|9612108558||KC2AKM|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|423715|9903088850||KC2ETF|A|HA|12/11/2008|03/08/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|425779|9812300601||KC4CJX|A|HA|12/11/2008|12/31/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|429298|9812228909||KC4KGF|A|HA|12/11/2008|12/22/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|446803|0002566992||KC5QNJ|A|HA|06/01/2005|08/30/2015||||||||||||||||||||N||JUSTIN|L|WILLIAMS||||||||||12/11/2008|12/11/2008|||||| +HD|450880|0001828481||KC5YFG|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||JOSH|J|GEORGE||||||||||08/03/2004|12/11/2008|||||| +HD|450881|9612108539||KC5YFI|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|450883|9612108696||KC5YFK|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|450886|9612108706||KC5YFN|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|450887|9902250432||KC5YFO|E|HA|03/05/1999|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||03/05/1999|12/11/2008|||||| +HD|453515|9902056996||KC6EBR|A|HA|12/11/2008|02/08/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|455390|0003672954||KC6ITW|A|HA|10/10/2003|01/04/2014||||||||||||||||||||N||William|B|Thomas||||||||||12/11/2008|12/11/2008|||||| +HD|476344|9612109935||KC7TPC|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|476347|9701159986||KC7TPG|E|HA|01/15/1997|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||01/15/1997|12/11/2008|||||| +HD|476348|9612108836||KC7TPI|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|482958|0002812575||KC8FBP|A|HA|11/08/2006|10/17/2016||||||||||||||||||||N||PETER|J|VAN DER MAAS||||||||||12/11/2008|12/11/2008|||||| +HD|487076|9902178847||KC8LSR|A|HA|12/11/2008|02/17/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|487152|9903018866||KC8LVR|A|HA|12/11/2008|03/01/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|488415|9612108811||KC9TL|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|488435|0001466794||KC9UMR|A|HV|12/11/2008|02/03/2019||||||||||||||||||||N||KENNETH|R|CECHURA||||||||||12/11/2008|12/11/2008|||||| +HD|503538|9711198831||KD4WES|A|HA|08/22/2003|08/22/2013||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|507076|0001999694||KD5CYI|A|HA|03/04/2008|03/04/2018||||||||||||||||||||N||LARRY|A|WHITELY||||||||||12/11/2008|12/11/2008|||||| +HD|507157|9801168617||KD5DCB|A|HA|12/11/2008|12/11/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|509291|9903118966||KD5GOB|A|HA|03/11/1999|03/11/2009||||||||||||||||||||N||James|M|Hutches||||||||||12/11/2008|12/11/2008|||||| +HD|509344|9903178884||KD5GQD|A|HA|03/17/1999|03/17/2009||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|528429|9901278974||KD7DWK|A|HA|12/11/2008|01/27/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|541650|9612108821||KE4OE|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|565448|9902090353||KE9GY|A|HA|02/09/1999|02/09/2009||||||||||||||||||||N||||||||||||||02/09/1999|12/11/2008|||||| +HD|575326|9612108553||KF4NTS|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|575327|9612108590||KF4NTT|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|575328|9612108591||KF4NTU|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|575333|9612108600||KF4NTZ|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|575335|9612108602||KF4NUA|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|575336|9612108604||KF4NUC|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|575338|9612108608||KF4NUE|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||10/19/2001|12/11/2008|||||| +HD|575342|9612108623||KF4NUI|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|575345|9612108642||KF4NUM|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||RONALD||CHENEY||||||||||08/13/2001|12/11/2008|||||| +HD|587439|9612108580||KF6HUY|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|587443|9612108662||KF6HVB|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|587444|9612108664||KF6HVC|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|587445|9703138643||KF6HVD|E|HA|03/13/1997|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||03/13/1997|12/11/2008|||||| +HD|587448|9612108668||KF6HVG|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|587449|9612108669||KF6HVH|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||MERLE|A|SHEETS||||||||||05/01/2001|12/11/2008|||||| +HD|587451|9808248891||KF6HVJ|E|HA|08/24/1998|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||11/24/1999|12/11/2008|||||| +HD|587453|9612108675||KF6HVL|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|587457|9612108681||KF6HVP|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|587458|9803108830||KF6HVQ|E|HA|03/10/1998|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||03/10/1998|12/11/2008|||||| +HD|587459|9612108684||KF6HVR|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|587460|9612108685||KF6HVS|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|587461|9612108686||KF6HVT|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|587462|9612108687||KF6HVU|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|587463|9612108688||KF6HVV|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|587465|9612108690||KF6HVX|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|587470|9612108697||KF6HWC|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|587471|9612108699||KF6HWD|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|587472|9612108700||KF6HWE|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|588652|9703208801||KF6JTV|A|HA|12/11/2008|12/11/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|590095|9805038981||KF6MBZ|A|HA|12/11/2008|12/11/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|594997|9812108826||KF6UDK|A|HA|12/11/2008|12/11/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|595022|9901158889||KF6UEK|A|HA|12/11/2008|12/15/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|599444|9903040348||KG3E|A|HA|12/11/2008|03/08/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|599781|0001854404||KG4AOG|A|HA|08/26/2004|11/23/2014||||||||||||||||||||N||MATTHEW|J|GIBSON||||||||||12/11/2008|12/11/2008|||||| +HD|600501|9902018852||KG4BTT|A|HA|12/11/2008|02/01/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|605481|9901165989||KH6FT|A|HV|02/10/1999|02/10/2009||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|611769|9612108844||KK4IJ|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|613529|9400511457||KK7N|A|HA|05/14/2002|06/09/2012||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|614326|9400483477||KL7BB|A|HA|08/31/2001|03/02/2011||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|618304|9612108789||KN9M|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|623605|9901260612||KT3B|A|HA|12/11/2008|01/28/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|629804|9703130135||N0HYE|A|HA|12/11/2008|12/11/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|630838|9806238996||N0JVA|A|HA|12/11/2008|12/11/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|631123|9902020219||N0KHX|A|HA|12/11/2008|02/03/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|631610|0003669233||N0LE|A|HV|12/11/2008|03/03/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|635115|0002953030||N0QZV|A|HA|01/08/2002|02/04/2012||||||||||||||||||||N||James|P|Horn||||||||||12/11/2008|12/11/2008|||||| +HD|637013|9400046890||N0TXR|A|HA|09/24/2002|09/24/2012||||||||||||||||||||N||Brian|C|Hart||||||||||12/11/2008|12/11/2008|||||| +HD|641568|9612108882||N1BUV|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|642738|9612030511||N1EOL|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|642786|9612108792||N1ERN|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|646363|9400076882||N1LEF|A|HA|12/11/2001|01/21/2012||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|657005|9612108949||N2DOV|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|659369|9902198979||N2ISI|A|HA|12/11/2008|02/19/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|665074|9400140317||N2SIL|A|HA|06/20/2002|08/18/2012||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|673196|9812228889||N3GZK|A|HA|12/11/2008|12/22/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|682929|9604240705||N3WVX|A|HA|02/19/2005|03/08/2015||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|683923|9705058907||N3YKU|E|HA|05/05/1997|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||05/05/1997|12/11/2008|||||| +HD|686638|0003669258||N4DXJ|A|HV|12/11/2008|02/03/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|687762|9612108802||N4GQL|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|692014|9612108982||N4PPZ|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|694577|9810260334||N4UHT|A|HA|12/11/2008|12/11/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|700907|0003672416||N5HMH|A|HV|12/11/2008|03/04/2019||||||||||||||||||||N||HOWARD|M|HILL||||||||||12/11/2008|12/11/2008|||||| +HD|702102|9612108762||N5KHN|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|703704|9812300135||N5NFS|A|HA|12/11/2008|12/30/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|703706|9812300134||N5NFU|A|HA|12/11/2008|12/30/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|712731|0003669262||N6DDU|A|HV|12/11/2008|01/13/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|714435|9812176996||N6HPC|A|HA|12/11/2008|01/08/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|714580|9612030624||N6HXW|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|717931|9612108945||N6PAK|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|725226|9903086945||N7CK|A|HA|12/11/2008|03/09/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|727200|0003392442||N7GVV|A|HA|12/02/2008|02/26/2019||||||||||||||||||||N||JAMES|E|RAISLER||||||||||12/11/2008|12/11/2008|||||| +HD|727973|9612030326||N7INI|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|729873|9810260333||N7LZJ|A|HA|12/11/2008|12/11/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|742603|0001507233||N8JCE|A|HA|12/11/2008|12/11/2018||||||||||||||||||||N||PETER|D|WICKIZER||||||||||12/11/2008|12/11/2008|||||| +HD|751563|9904288895||N8XTO|A|HV|12/11/2008|03/03/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|753976|9612030543||N9CLZ|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|754128|9612108788||N9CVW|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|754248|9612108991||N9DDB|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|755783|9711198996||N9GQG|A|HA|12/11/2008|12/11/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|756785|9901261027||N9ILL|A|HA|12/11/2008|01/28/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|769358|9908069956||NH0K|A|HA|12/11/2008|02/03/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|770321|9612108770||NJ6K|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|771865|9703310610||NO8DX|A|HV|12/11/2008|12/11/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|772354|9612108633||NP3II|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|772355|9612108635||NP3IK|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|773403|9612108736||NQ9W|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|775423|9612108766||NZ7O|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|775939|9612030425||W0CBV|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|776884|9612108907||W0GNZ|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|779278|0002958424||W0RCA|A|HV|12/11/2008|01/13/2019||||||||||||||||||||N||Roderick|C|Anderson||||||||||12/11/2008|12/11/2008|||||| +HD|779344|9610213609||W0RHB|E|HV|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|781948|9612108946||W1FUW|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|783828|0003669226||W1PHM|A|HV|12/11/2008|02/23/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|784715|9612108952||W1UPA|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|785871|9612108888||W2CCS|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|787537|0003671958||W2ISN|A|HV|12/11/2008|01/13/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|789088|9612108744||W2QZK|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|790690|9810230207||W3BSA|A|HV|12/11/2008|12/11/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|792127|9806016947||W3ICB|A|HA|06/10/2008|06/10/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|792619|9809159988||W3KHW|A|HV|12/11/2008|12/11/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|793653|9905141215||W3ROC|A|HV|06/03/1999|06/03/2009||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|794977|0003669180||W4ANB|A|HV|12/11/2008|01/07/2019||||||||||||||||||||N||ARTHUR|N|BURNETTE||||||||||12/11/2008|12/11/2008|||||| +HD|795731|0003672403||W4DAI|A|HV|12/11/2008|01/28/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|796495|0003669273||W4FPT|A|HV|12/11/2008|10/27/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|796912|9612108899||W4HAO|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|797426|0003669268||W4JAD|A|HV|12/11/2008|10/27/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|798177|0003669270||W4LNS|A|HV|12/11/2008|12/15/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|803060|0003669266||W5DEI|A|HV|12/11/2008|12/30/2018||||||||||||||||||||N||DONALD|E|IVIE|SR|||||||||12/11/2008|12/11/2008|||||| +HD|804458|0003671946||W5JLB|A|HV|12/11/2008|02/10/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|805137|9612108908||W5MLC|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|805456|9612108874||W5NYR|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|806148|0003669202||W5RAB|A|HV|12/11/2008|03/03/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|806865|9612108820||W5TJV|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|808542|0003669156||W6BAY|A|HV|12/11/2008|03/03/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|810209|9612108995||W6HHS|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|811222|9612108898||W6KTL|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|811950|9610213643||W6NEN|E|HV|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|811953|9903295988||W6NEV|A|HV|04/21/1999|04/21/2009||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|812298|9612108754||W6OHP|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|813067|0003672410||W6RCG|A|HV|12/11/2008|02/26/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|813649|9612108893||W6SQB|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|819618|9902120305||W7SFE|A|HV|12/11/2008|02/26/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|819820|9610213724||W7TKO|E|HV|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|820528|0003672406||W7ZIR|A|HV|12/11/2008|03/03/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|821406|0003671957||W8DFM|A|HV|12/11/2008|12/30/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|821510|9612108999||W8DRD|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|821700|9902186980||W8EOG|A|HA|12/11/2008|02/19/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|821950|9612108847||W8FRH|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|824512|0003672418||W8RAY|A|HV|12/11/2008|03/03/2019||||||||||||||||||||N||Ray|L|Willey||||||||||12/11/2008|12/11/2008|||||| +HD|825335|9811250115||W8VLB|E|HA|12/09/1998|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/09/1998|12/11/2008|||||| +HD|825509|0003672408||W8WIL|A|HV|12/11/2008|02/03/2019||||||||||||||||||||N||Donald|E|Wilson||||||||||12/11/2008|12/11/2008|||||| +HD|827100|9805048994||W9FIS|E|HA|05/04/1998|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||05/04/1998|12/11/2008|||||| +HD|827994|9901251039||W9JVZ|A|HA|12/11/2008|01/27/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|828462|9612108971||W9LXJ|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|829086|9612108996||W9OCL|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|829333|9812090737||W9PNR|A|HA|12/11/2008|12/11/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|830330|9612108959||W9WAY|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|833157|9612108803||WA0URU|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|833703|9612108743||WA1AFM|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|833866|0002716495||WA1CFS|A|HV|08/18/2006|11/08/2016||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|839204|9812108963||WA2ITP|A|HA|12/11/2008|12/11/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|845020|9902026993||WA3SXP|A|HA|12/11/2008|02/03/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|850174|9811240149||WA4PWS|A|HA|12/11/2008|12/11/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|850898|9612108715||WA4SRO|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|852470|9709119998||WA4ZIW|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|852840|9610212227||WA5BUV|E|HV|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|852952|9400319359||WA5CVI|A|HA|05/20/2003|08/03/2013||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|858423|9612108944||WA6LQR|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|860943|9801060230||WA6VMD|A|HA|12/11/2008|12/11/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|861671|9612108804||WA6ZXJ|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|862118|9612108923||WA7ECW|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|863914|9612108922||WA7TNE|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|864143|9902240526||WA7VCS|A|HA|12/11/2008|02/25/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|867254|9612108732||WA8VNW|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|870060|9612108726||WA9USM|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|872097|9612108873||WB0NHC|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|872901|9612108965||WB0RXY|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|873600|9400049382||WB0VEQ|A|HA|08/28/2003|11/02/2013||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|875034|9612108953||WB1DKS|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|876458|9612108797||WB2CSQ|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|877904|9902040441||WB2JIL|A|HA|12/11/2008|02/04/2019||||||||||||||||||||N||Russell|D|Brown||||||||||12/11/2008|12/11/2008|||||| +HD|878258|9612108879||WB2KYD|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|878751|9810238926||WB2NDN|A|HA|12/11/2008|12/11/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|879516|9901060424||WB2RHX|A|HA|12/11/2008|01/08/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|881051|9612108814||WB3ACY|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|883502|9612108723||WB4ACZ|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|884423|9612108950||WB4EEK|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|885797|9810290118||WB4KNW|E|HA|10/30/1998|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||10/30/1998|12/11/2008|||||| +HD|887021|9612108807||WB4QHV|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|887112|9612108981||WB4RAF|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|887840|9612108862||WB4UJK|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|887956|9612108717||WB4UZY|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|889356|9612108984||WB5DGM|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||08/01/2000|12/11/2008|||||| +HD|892701|9612108864||WB5WKW|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||Edward|E|Stull||||||||||04/30/2001|12/11/2008|||||| +HD|894096|9901218972||WB6EJV|A|HA|12/11/2008|01/21/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|897053|9612108771||WB6SMF|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|897111|9612108859||WB6SSS|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|897667|9612108756||WB6VGK|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|897698|9612108997||WB6VIP|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|898762|9612108905||WB7BTO|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|902307|9807070201||WB8EQA|E|HA|07/08/1998|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||07/08/1998|12/11/2008|||||| +HD|903146|9612108750||WB8MMC|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|905223|0003669269||WB9AOU|A|HV|12/11/2008|12/17/2018||||||||||||||||||||N||DIANE|M|BELCHER||||||||||12/11/2008|12/11/2008|||||| +HD|906929|9708050429||WB9OLF|A|HA|12/11/2008|12/11/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|907011|9612108948||WB9PBY|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|907326|9612108799||WB9RCV|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|909153|0003672409||WC1W|A|HV|12/11/2008|12/30/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|917856|9612108739||WD6DGY|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|922312|9612108975||WD9BJY|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|924319|0003669448||WF6A|A|HV|12/11/2008|02/26/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|929230|0003671999||WN8RUG|A|HV|12/11/2008|12/30/2018||||||||||||||||||||N||William|J|Sido||||||||||12/11/2008|12/11/2008|||||| +HD|929531|9612030514||WP2AAY|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|931044|9612030122||WP4GOJ|E|HA|12/10/1996|12/10/2006|12/11/2008|||||||||||||||||||N||||||||||||||12/10/1996|12/11/2008|||||| +HD|935826|0003669155||WR7HE|A|HV|12/11/2008|01/07/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|935936|9812090545||WS0Y|A|HA|12/11/2008|12/11/2018||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|936113|9902268881||WS8J|A|HA|12/11/2008|02/26/2019||||||||||||||||||||N||||||||||||||12/11/2008|12/11/2008|||||| +HD|936281|0003669264||WT4WT|A|HV|12/11/2008|12/17/2018||||||||||||||||||||N||SERGIO|R|BARRETO||||||||||12/11/2008|12/11/2008|||||| +HD|1060511|||N4MC|A|HV|10/26/1999|10/26/2009||||||||||||||||||||N||MICHAEL|E|CARROLL||||||||||12/11/2008|12/11/2008|||||| +HD|1099396|0003547670||K9HFX|A|HV|09/06/2000|09/06/2010||||||||||||||||||||N||SCOT|M|CLAYTON||||||||||12/11/2008|12/11/2008|||||| +HD|1961873|||W2RXR|A|HV|04/24/2001|04/24/2011||||||||||||||||||||N||James|B|Ryan||||||||||06/13/2006|12/11/2008|||||| +HD|2381539|0002938474||KG4RKR|A|HA|02/06/2002|02/06/2012||||||||||||||||||||N||Martin|S|Flowers||||||||||12/11/2008|12/11/2008|||||| +HD|2526101|0001360168||KD5YDM|A|HA|06/24/2003|06/24/2013||||||||||||||||||||N||PAUL|T|MARTIN||||||||||12/11/2008|12/11/2008|||||| +HD|2678199|0002507870||KG6ILA|A|HV|12/11/2004|12/11/2014||||||||||||||||||||N||R Pinkney||Foster||||||||||12/11/2008|12/11/2008|||||| +HD|2691398|0002922617||KG6YFS|A|HA|02/02/2005|02/02/2015||||||||||||||||||||N||Raul|M|Mendez||||||||||12/11/2008|12/11/2008|||||| +HD|2695604|0002052878||KG6YME|A|HA|02/18/2005|02/18/2015||||||||||||||||||||N||ALEXANDER|P|ANGLUM||||||||||12/11/2008|12/11/2008|||||| +HD|2776571|0002968164||KK4DXR|A|HV|01/10/2006|01/10/2016||||||||||||||||||||N||John|N|McCreary||||||||||12/11/2008|12/11/2008|||||| +HD|2860825|0003321647||KL2CQ|A|HA|11/21/2006|11/21/2016||||||||||||||||||||N||Kevin|C|Kelley||||||||||12/11/2008|12/11/2008|||||| +HD|2899374|||N4PRT|A|HV|04/07/2007|04/07/2017||||||||||||||||||||N||Patrick|R|Thrush||License Holder||||||||12/11/2008|12/11/2008|||||| +HD|2906780|||W4KCJ|A|HV|05/01/2007|05/01/2017||||||||||||||||||||N||STEVENSON||JAKES||MSGT USMC||||||||12/11/2008|12/11/2008|||||| +HD|3019461|0003673745||W4TLG|A|HV|06/06/2008|06/06/2018||||||||||||||||||||N||Terry|L|Grimes||||||||||12/11/2008|12/11/2008|||||| +HD|3029934|||K2AMW|A|HV|07/18/2008|07/18/2018||||||||||||||||||||N||Anthony|M|Williams||||||||||12/11/2008|12/11/2008|||||| +HD|3035020|0003669737||KE7VIF|C|HA|08/07/2008|08/07/2018|12/11/2008|||||||||||||||||||N||Kyle|J|Merrill||||||||||12/08/2008|12/11/2008|||||| +HD|3058519|0003655429||KE5YES|A|HA|11/19/2008|11/19/2018||||||||||||||||||||N||Glenn||Pattrson||||||||||12/11/2008|12/11/2008|||||| +HD|3061635|0003665082||KB1RNV|A|HA|12/02/2008|12/02/2018||||||||||||||||||||N||Stephen|C|Young||||||||||12/11/2008|12/11/2008|||||| +HD|3063606|||AD7XP|A|HA|08/07/2008|08/07/2018||||||||||||||||||||N||Kyle|J|Merrill||||||||||12/11/2008|12/11/2008|||||| +HD|3063673|0003673744||KJ4IIB|A|HA|12/11/2008|12/11/2018||||||||||||||||||||N||Thomas|E|Owen||||||||||12/11/2008|12/11/2008|||||| +EN|220803|||AB4NN|L|L00233339|CHRISTIANSEN, JONATHAN D|JONATHAN|D|CHRISTIANSEN|||||693 Hwy 91|ELIZABETHTON|TN|37643|||000|0006388474|I||| +EN|226923|||AG4FM|L|L01450721|MC MILLAN, MICHAEL|MICHAEL||MC MILLAN|||||202 BADGETT AVE|MOUNT AIRY|NC|27030|||000|0018331850|I||| +EN|229155|||K0CWD|L|L00628628|OAKES, RALPH V|RALPH|V|OAKES|||||308 PITCHFORK LANE|CANYON|TX|79015|||000|0008323263|I||| +EN|229647|||K0FUN|L|L01450708|BAY, RICHARD A|RICHARD|A|BAY||||||UNION|MO|63084|106||000|0018331751|I||| +EN|229897|||K0HCV|L|L00142516|VAN DAVEER JR, HAROLD C|HAROLD|C|VAN DAVEER|JR||||16645 W 145TH TER|OLATHE|KS|66062|||000|0002185619|I||| +EN|236367|||K2AFD|L||GRAY, STEPHEN|STEPHEN||GRAY|||||57 HAMILTON DR|HENDERSONVILLE|NC|28739|||000||I||| +EN|239127|||K2SGA|L||COTTON, GEOFFREY B|GEOFFREY|B|COTTON|||||305 OTTAWA AVE|WESTERVILLE|OH|43081|||000||I||| +EN|241139|||K3HX|L|L01451125|COLBERT, TIMOTHY N|TIMOTHY|N|COLBERT|||||4512 PINEWOOD|ALLISON PARK|PA|15101|||000|0018336073|I||| +EN|242121|||K3ORS|L|L01451127|COOKENHAM, EDWARD D|EDWARD|D|COOKENHAM|||||3654 APPLING LAKE DR|MEMPHIS|TN|38133|||000|0018336099|I||| +EN|244553|||K4DET|L|L00242941|TILLER, DAVID E|DAVID|E|TILLER|||||11236 ROCKY RIDGE RD|GLEN ALLEN|VA|23059|||000|0003289113|I||| +EN|244623|||K4DKS|L||MURPHY, RAYMOND R|RAYMOND|R|MURPHY|||||506 YORK ST|GULF BREEZE|FL|32561|||000||I||| +EN|246073|||K4IED|L||ARMENTROUT, MAURICE E|MAURICE|E|ARMENTROUT|||||2333 BELVUE RD|WAYNESBORO|VA|22980|||000||I||| +EN|246553|||K4JND|L||GORDON JR, JOHN J|JOHN|J|GORDON|JR||||4915 MEADOW ST|PANAMA CITY|FL|32401|||000||I||| +EN|246563|||K4JNX|L|L00192068|HOUSER, RICHARD J|RICHARD|J|HOUSER|||||47 RIDGEWOOD DR|NORWALK|OH|44857|||000|0003117652|I||| +EN|246789|||K4KEK|L||GAYLE, TOM M|TOM|M|GAYLE|||||105 INN LN APT 101|OAK RIDGE|TN|378307304|||000||I||| +EN|250780|||K5DBJ|L||MANN, MORRIS D|MORRIS|D|MANN|||||1907 GUADALUPE|COLEMAN|TX|76834|||000||I||| +EN|252865|||K5OYA|L||BOWMAN, ERNEST A|ERNEST|A|BOWMAN|||||102 BRADLEY|WEST MONROE|LA|71291|||000||I||| +EN|255044|||K6CRO|L|L01451060|BALEN, ZDRAVKO|ZDRAVKO||BALEN||||||PANAMA CITY|FL|324018183|4183||000|0018334599|I||| +EN|257300|||K6OUW|L||PFUND JR, EDWARD T|EDWARD|T|PFUND|JR||||25 SILVER SADDLE LN|ROLLING HILLS ESTATE|CA|90274|||000||I||| +EN|258191|||K6TAV|L|L00216440|VARIN, THOMAS A|THOMAS|A|VARIN|||||9211 COCKATOO AVE|FOUNTAIN VALLEY|CA|92708|||000|0003640067|I||| +EN|258979|||K6YUQ|L||HODGSON, GERALD L|GERALD|L|HODGSON|||||21909 SHADY CT|TEHACHAPI|CA|93561|||000||I||| +EN|259561|||K7CHX|L||ELLIS, WALLACE E|WALLACE|E|ELLIS||||||BREMERTON|WA|98312|4064||000||I||| +EN|260332|||K7HWZ|L||MASON, GERALD E|GERALD|E|MASON|||||145 N ROANOKE BOX 237|HINES|OR|97738|||000||I||| +EN|260714|||K7KIM|L|L01450719|DINWIDDIE-WEBB, KIMBERLY M|KIMBERLY|M|DINWIDDIE-WEBB|||||6237 SE 67TH|PORTLAND|OR|97206|||000|0018331835|I||| +EN|261045|||K7MKT|L|L00231015|TRAWICK, MAUREEN K|MAUREEN|K|TRAWICK||||||Plains|MT|59859|1250||000|0002173375|I||| +EN|261856|||K7RPW|L||MASON, DUANE D|DUANE|D|MASON|||||BOX 237 145 N ROANOKE ST|HINES|OR|97738|||000||I||| +EN|261898|||K7RWJ|L|L00267355|Jacobs, Robert W|Robert|W|Jacobs|||||17931 NE Wasco 2|Portland|OR|97230|||000|0003845294|I||| +EN|262114|||K7TAR|L||ROBISON SR, ELDON L|ELDON|L|ROBISON|SR||||2516 NE 112 AVE|VANCOUVER|WA|98684|||000||I||| +EN|262931|||K7ZIG|L||BUNDY, LEONARD P|LEONARD|P|BUNDY||||||CLATSKANIE|OR|97016|1048||000||I||| +EN|263125|||K8ANS|L||CRAWFORD, JAMES A|JAMES|A|CRAWFORD|||||8292 COLDWATER RD|FLUSHING|MI|484331124|||000||I||| +EN|263800|||K8DTR|L|L00150757|RISTANEO, TOM|TOM||RISTANEO|||||6590 HURSH RD|MIDDLETOWN|OH|45042|||000|0003094075|I||| +EN|264382|||K8IHF|L|L00233210|WEST JR, FRANKLIN A|FRANKLIN|A|WEST|JR||||11094 Timbergrove Ct|South Lyon|MI|48178|||000|0002803229|I||| +EN|264461|||K8ISM|L||IACONO, STEPHEN C|STEPHEN|C|IACONO|||||1075 VIRGINIA AVE|COLUMBUS|OH|43212|||000||I||| +EN|264483|||K8IXB|L|L00857463|Grant Cpp, Nathaniel L|Nathaniel|L|Grant|Cpp||||31499 Harlo Drive Apt D|Madison Heights|MI|48071||Nathaniel L. Grant, CPP|000|0010856797|I||| +EN|265031|||K8MEG|L|L01451435|FOWLER, RICHARD L|RICHARD|L|FOWLER|||||3290 E COOK RD|GRAND BLANC|MI|484398377|||000|0010642551|I||| +EN|265731|||K8QW|L|L00622491|LIBBIN, ROBERT E|ROBERT|E|LIBBIN|||||10 BOUGH LEAF PL|THE WOODLANDS|TX|77381|||000|0008254625|I||| +EN|267187|||K9ACO|L|L01450717|HOWELL, MIYO M|MIYO|M|HOWELL|||||307 ELLIS DRIVE|MINDEN|LA|71055|||000|0018331819|I||| +EN|270217|||K9TJM|L||WILSON, VAUGHN M|VAUGHN|M|WILSON|||||11412 SMITH DIAMOND RD|MOUNT VERNON|IN|47620|||000||I||| +EN|273376|||KA0MNC|L||BINGHAM, WILLIAM|WILLIAM||BINGHAM|||||7205 VO TECH RD|BONNE TERRE|MO|63628|||000||I||| +EN|273424|||KA0MTP|L||DAY, MICHAEL J|MICHAEL|J|DAY|||||11915 WINTERGREEN ST|COON RAPIDS|MN|55433|||000||I||| +EN|278295|||KA1JNG|L|L00626019|BARBIERI, JOHN L|JOHN|L|BARBIERI|||||89 WHITTIER AVE|WATERBURY|CT|06708|||000|0008293136|I||| +EN|287362|||KA2TBU|L|L00851562|HOMER, RAYMOND E|RAYMOND|E|HOMER|||||1066 MARATHON MCGRAW ROAD|MARATHON|NY|13803|||000|0010794949|I||| +EN|287830|||KA2VDP|L||MERTEN, DEAN J|DEAN|J|MERTEN|||||1271 POPLAR AVE 908|MEMPHIS|TN|38104|||000||I||| +EN|297863|||KA4NNR|L|L01211772|YOUNG, RICKY J|RICKY|J|YOUNG|||||10855 SONORA HARDIN SPRING RD|EASTVIEW|KY|42732||Ricky Young|000|0015713993|I||| +EN|298166|||KA4PBT|L||WILLIAMS, CHARLIE D|CHARLIE|D|WILLIAMS|||||2895 SUNSET BLVD|NAPLES|FL|34112|||000||I||| +EN|299534|||KA4WOO|L|L01440897|MC GLON, WALTER L|WALTER|L|MC GLON||||||UMATILLA|FL|327840713|713||000|0015847171|I||| +EN|299579|||KA4WUR|L|L00230916|DIXON, CAROLYN R|CAROLYN|R|DIXON|||||1606 CRESCENT RIDGE|FORT MILL|SC|29715|||000|0003247202|I||| +EN|300003|||KA4ZZH|L||YOUNG, WILLIAM J|WILLIAM|J|YOUNG|||||4455 KIMBALL RD|MEMPHIS|TN|38117|||000||I||| +EN|303456|||KA5SAD|L|L00792273|PRIDDY, JOHN W|JOHN|W|PRIDDY|||||10 Private Road 136|MULLIN|TX|76864|||000|0010142867|I||| +EN|306637|||KA6JXX|L|L01451478|SHADDEN, THOMAS E|THOMAS|E|SHADDEN|||||104 RIVO ALTO CANAL|LONG BEACH|CA|90803|||000|0017695818|I||| +EN|306676|||KA6KCZ|L||WORCH, ALBERT B|ALBERT|B|WORCH|||||27500 RAINBOW RIDGE RD|PALOS VERDES PENINSU|CA|90274|||000||I||| +EN|307107|||KA6MXF|L|L00650692|Panasci, Mark A|Mark|A|Panasci|||||140 Baldwin Rd|Nordland|WA|98358|||000|0008571598|I||| +EN|307828|||KA6REY|L||OLSON, DAVID A|DAVID|A|OLSON||||||SAN DIEGO|CA|92137|371425||000||I||| +EN|308374|||KA6UCQ|L||HOPPERT, HAROLD L|HAROLD|L|HOPPERT|||||1650 E OLD BADILLO ST|COVINA|CA|91724|||000||I||| +EN|312049|||KA7NZE|L||CASTEEL, ROBERT|ROBERT||CASTEEL|||||7534 SE REED COLLEGE PL|PORTLAND|OR|97202|||000||I||| +EN|316016|||KA8INT|L||DOTY JR, JAY W|JAY|W|DOTY|JR||||6956 WEIDNER RD|FRANKLIN|OH|45005|||000||I||| +EN|316994|||KA8OBS|L||ELROD, ROWENA M|ROWENA|M|ELROD|||||111 LANCELOT PL|LANSING|MI|48906|||000||I||| +EN|317161|||KA8OWQ|L||CHANDLER, GARY E|GARY|E|CHANDLER|||||14297 MONTLE RD|CLIO|MI|48420|||000||I||| +EN|317311|||KA8PRY|L||CHANDLER, PEGGY M|PEGGY|M|CHANDLER|||||14297 MONTLE RD|CLIO|MI|48420|||000||I||| +EN|322126|||KA9NFJ|L||BENDER, DONALD C|DONALD|C|BENDER|||||390 WOOD LAWN AVE|PORTER|IN|46304|||000||I||| +EN|324491|||KA9WLE|L||DUNN, THOMAS A|THOMAS|A|DUNN|||||1137 GUNDERSON AVE|OAK PARK|IL|60304|||000||I||| +EN|324626|||KA9WWL|L||EICHELBERGER, MICHELLE A|MICHELLE|A|EICHELBERGER|||||1224 W 37TH PL|HOBART|IN|463422017|||000||I||| +EN|333520|||KB0RFE|L|L00332265|GROSSMAN, CHERYL A|CHERYL|A|GROSSMAN|||||3739 S. Espana Way|Aurora|CO|80013|||000|0004671921|I||| +EN|337850|||KB0ZCN|L||GRAY, BRIAN D|BRIAN|D|GRAY|||||6009 YARROW ST UNIT E|ARVADA|CO|80004|||000||I||| +EN|337852|||KB0ZCP|L||GILLUM, DAVID M|DAVID|M|GILLUM|||||3607 S PONTIAC WAY|DENVER|CO|80237|||000||I||| +EN|337855|||KB0ZCT|L||BOSWELL, HEIDI E|HEIDI|E|BOSWELL||||||BLACK HAWK|CO|80422|656||000||I||| +EN|337856|||KB0ZCU|L||MOSHER, LAWRENCE F|LAWRENCE|F|MOSHER|||||323 4200 DR|CRAWFORD|CO|81415|||000||I||| +EN|339393|||KB1CAU|L|L00179146|KEARSARGE AMATEUR RADIO SOCIETY||||||||7 LORRAINE RD|MANCHESTER|CT|06040||LOUISE R IRWIN|000|0001518851|B||| +EN|342246|||KB2ECN|L|L00190271|JOHNSON, CARL A|CARL|A|JOHNSON|||||12204 Redwood Ct.|Woodbridge|VA|221921611|||000|0003614419|I||| +EN|350846|||KB2VIQ|L|L01023052|BARONIAN, JOHN A|JOHN|A|BARONIAN|||||99-63 66th Ave. Apt. A3|Rego Park|NY|11374|||000|0013542014|I||| +EN|353891|||KB3BRG|L|L00160975|TRI STATE AMATEUR RADIO CLUB||||||||2004 SPROUL RD|BROOMALL|PA|19008|||000|0003489325|B||| +EN|362220|||KB5AAU|L|L00149172|MILLER SR, JOSEPH W|JOSEPH|W|MILLER|SR||||410 SOUTH ROCK|SHERIDAN|AR|72150|||000|0002547461|I||| +EN|365175|||KB5IWF|L|L00149182|MILLER, DORIS J|DORIS|J|MILLER|||||410 SOUTH ROCK|SHERIDAN|AR|72150|||000|0002309771|I||| +EN|376866|||KB6PGZ|L|L00282869|SMITH, THOMAS J|THOMAS|J|SMITH||||||REDONDO BEACH|CA|90277|3600||000|0003967478|I||| +EN|376877|||KB6PII|L||HOWARD, DIANE L|DIANE|L|HOWARD|||||204 BALLENA DR|DIAMOND BAR|CA|91765|||000||I||| +EN|377105|||KB6QGN|L||CARNAHAN, KEITH C|KEITH|C|CARNAHAN|||||1826 TANAGER DR|COSTA MESA|CA|92626|||000||I||| +EN|380434|||KB7ATI|L||PARKIN, ORA F|ORA|F|PARKIN|||||1306 NE 127TH ST|VANCOUVER|WA|98685|||000||I||| +EN|382636|||KB7GYC|L|L01312844|Miller, Joanne E|Joanne|E|Miller||||||OREGON CITY|OR|97045|2703|JOANNE E MILLER|000|0016802571|I||| +EN|384367|||KB7LJP|L|L00657070|SWEEDEN, JAMES D|JAMES|D|SWEEDEN|||||145 Chree Tree Lane|Port Angeles|WA|98362|||000|0008645095|I||| +EN|385407|||KB7NUO|L|L00379895|CARSWELL, HAROLD A|HAROLD|A|CARSWELL|||||5022 FOOTHILLS RD APT B|LAKE OSWEGO|OR|97034|||000|0005355755|I||| +EN|392343|||KB8AUC|L||KIRBY, JAMES P|JAMES|P|KIRBY|||||5715 OLIVE AVE|FRANKLIN|OH|45005|||000||I||| +EN|392344|||KB8AUD|L||KIRBY, JOYCE G|JOYCE|G|KIRBY|||||5715 OLIVE AVE|FRANKLIN|OH|45005|||000||I||| +EN|394302|||KB8FZI|L|L01451410|BRAUNSCHWEIGER, LINDA D|LINDA|D|BRAUNSCHWEIGER|||||5907 GROVEWOOD DR|MENTOR|OH|44060||Linda D. Braunschweiger|000|0018339242|I||| +EN|394328|||KB8GAQ|L|L01451505|KARAWAN, KENNETH M|KENNETH|M|KARAWAN|||||2556 SHARON|DETROIT|MI|48209|||000|0018340398|I||| +EN|404506|||KB9AGW|L|L00125346|Warner, Charles W|Charles|W|Warner|||||351 Colorado Ave|Aurora|IL|60506|||000|0010813673|I||| +EN|412286|||KB9PCN|L||MAMMITZSCH, KURT H|KURT|H|MAMMITZSCH|||||INGRID DIETZ 9508 MAPLE WAY|INDIANAPOLIS|IN|46268|||000||I||| +EN|415121|||KB9TSW|L|L00577810|HALL, MICHAEL D|MICHAEL|D|HALL|||||230 VIRGINIA|HANNIBAL|MO|63401|||000|0007758048|I||| +EN|415142|||KB9TTR|L|L01192593|HARDY, LILLIAN L|LILLIAN|L|HARDY|||||504 S HOLLAND|EDINBURGH|IN|46124|||000|0015504491|I||| +EN|415245|||KB9TXW|L|L00422015|JOHNSON, JOSEPH M|JOSEPH|M|JOHNSON|||||N1873 Greenville Dr.|Greenville|WI|54942|||000|0005221759|I||| +EN|415287|||KB9TZQ|L|L01246328|Riley, James L|James|L|Riley|||||9 Shelbyville Rd|Hillsboro|IL|62049|||000|0016107880|I||| +EN|415383|||KB9UDN|L|L00242710|PORTER, MARK A|MARK|A|PORTER|||||W3169 RIM ROCK RD|EAU CLAIRE|WI|54701|||000|0002673747|I||| +EN|419011|||KC0EQY|L|L00226191|BUDD, JAMES A|JAMES|A|BUDD|||||1008 5TH AVE NW|AUSTIN|MN|559122114|||000|0002355378|I||| +EN|419242|||KC0FAX|L|L01358618|HOFFMAN, HAROLD|HAROLD||HOFFMAN|||||315 Division Street Apt. 217|Sauk Rapids|MN|56379|||000|0017321324|I||| +EN|420234|||KC0QN|L||DUESLER, DONALD B|DONALD|B|DUESLER|||||3 SUNSHINE DR|CEDAR HILL|MO|63016|||000||I||| +EN|421094|||KC2AKM|L||ARNDT, FREDERICK A|FREDERICK|A|ARNDT|||||860 MURPHY HILL RD|HORSE HEADS|NY|14845|||000||I||| +EN|423715|||KC2ETF|L|L00769631|TERRY, ROBERT S|ROBERT|S|TERRY|||||21 ETHEL DR|LOUDONVILLE|NY|12211|||000|0009889080|I||| +EN|425779|||KC4CJX|L|L01451472|WASSERMAN, PETER H|PETER|H|WASSERMAN|||||4173 Weaver Street|Smyrna|GA|30080|||000|0018340000|I||| +EN|429298|||KC4KGF|L|L01451354|WEY JR, JOHN D|JOHN|D|WEY|JR||||1123 E Camino Diestro|TUCSON|AZ|85704|||000|0018338558|I||| +EN|446803|||KC5QNJ|L|L00669368|WILLIAMS, JUSTIN L|JUSTIN|L|WILLIAMS|||||309 Fairland Drive|Wylie|TX|75098||INTELLIGENT Lights & Sound|000|0008779787|I||| +EN|450880|||KC5YFG|L|L00900620|PANTHER RADIO CLUB||||||||1145 Hwy 42E|Petal|MS|39465||JOSH J GEORGE|000|0011332715|B||| +EN|450881|||KC5YFI|L||NICCOLINI, BEPPE|BEPPE||NICCOLINI|||||3400 BEDFORD|MIDLAND|TX|79703|||000||I||| +EN|450883|||KC5YFK|L||GELB, VIRGINIA L|VIRGINIA|L|GELB|||||4001 POLK LN|DEER PARK|TX|77536|||000||I||| +EN|450886|||KC5YFN|L||HALL, JIMMY T|JIMMY|T|HALL|||||3608 NC 22ND|AMARILLO|TX|79107|||000||I||| +EN|450887|||KC5YFO|L||CAMERON, JEANENE|JEANENE||CAMERON||||||LORENZO|TX|79343|277||000||I||| +EN|453515|||KC6EBR|L|L00628551|LAMB, JUDITH A|JUDITH|A|LAMB|||||6119 East Lippizan Way|Hereford|AZ|85615|||000|0008322273|I||| +EN|455390|||KC6ITW|L|L00753619|Thomas, William B|William|B|Thomas|||||2973 Sonrisa Dr|Corona|CA|92881|||000|0009711466|I||| +EN|476344|||KC7TPC|L||EMERSON ELEMENTARY SCHOOL AMATEUR RADIO CLUB||||||||808 19TH ST|SNOHOMISH|WA|98290|||000||B||| +EN|476347|||KC7TPG|L||PERRONE, DOUGLAS J|DOUGLAS|J|PERRONE|||||1610 W MARKLE AVE|VANCOUVER|WA|98660|||000||I||| +EN|476348|||KC7TPI|L||MOWER, MICHAEL E|MICHAEL|E|MOWER|||||890 E 7905 S|SANDY|UT|84094|||000||I||| +EN|482958|||KC8FBP|L|L01037234|VAN DER MAAS, PETER J|PETER|J|VAN DER MAAS|||||4805 Lakeshore Terrace|Fort Gratiot|MI|48059||Peter J. van der Maas|000|0013716006|I||| +EN|487076|||KC8LSR|L|L00602844|WRIGHT, JEFFERY L|JEFFERY|L|WRIGHT|||||77 MAPLE LAKE|BRIDGEPORT|WV|26330||Jeffery L. Wright|000|0008034555|I||| +EN|487152|||KC8LVR|L|L00205872|LAMB, SUSAN L|SUSAN|L|LAMB|||||761 S. MAPLE ST.|LANCASTER|OH|43130|||000|0003076171|I||| +EN|488415|||KC9TL|L||MYERS, RICHARD M|RICHARD|M|MYERS|||||1425 E JACKSON BLVD|ELKHART|IN|46516|||000||I||| +EN|488435|||KC9UMR|L|L00188739|CECHURA, KENNETH R|KENNETH|R|CECHURA|||||2891 29th Avenue|Marion|IA|52302|||000|0002956951|I||| +EN|503538|||KD4WES|L|L00571619|CHRISTIANSEN, KATHERINE B|KATHERINE|B|CHRISTIANSEN|||||693 Hwy. 91|ELIZABETHTON|TN|37643|||000|0007686207|I||| +EN|507076|||KD5CYI|L|L00218144|WHITELY, LARRY A|LARRY|A|WHITELY|||||510 N. Booth|Elk City|OK|73644|||000|0004753562|I||| +EN|507157|||KD5DCB|L|L01451375|DUNBAR, BONNIE J|BONNIE|J|DUNBAR|||||16720 SE 43rd|Issaquah|WA|98027|||000|0018338897|I||| +EN|509291|||KD5GOB|L|L00157605|Hutches, James M|James|M|Hutches|||||109 Trail Creek Dr.|Victor|ID|83455|1144||000|0002520237|I||| +EN|509344|||KD5GQD|L|L01451484|LaDue, DAPHNE S|DAPHNE|S|LaDue|||||901 SE 96TH AVE|NORMAN|OK|73026||Daphne LaDue|000|0018307553|I||| +EN|528429|||KD7DWK|L|L01451251|RUFFNER, DUANE E|DUANE|E|RUFFNER|||||1521 Burton Court|Ogden|UT|84403|||000|0018337543|I||| +EN|541650|||KE4OE|L||DUMM, WILFRED M|WILFRED|M|DUMM|||||6502 SEAWRIGHT DR|SAVANNAH|GA|31406|||000||I||| +EN|565448|||KE9GY|L|L01266024|MONROE, CLARENCE J|CLARENCE|J|MONROE|||||2429 CYPRESS ST|MADISON|IN|472501725|||000|0007372485|I||| +EN|575326|||KF4NTS|L||MITCHELL, PATRICIA A|PATRICIA|A|MITCHELL|||||4824 PRESTWICK DR|FAIRFAX|VA|22030|||000||I||| +EN|575327|||KF4NTT|L|L00198809|WILLIAMS, JB|JB||WILLIAMS|||||1407 PLAZA ST SE|DECATUR|AL|35603|||000|0002557882|I||| +EN|575328|||KF4NTU|L||WADSWORTH, ALLISON K|ALLISON|K|WADSWORTH|||||1085 HILLCREST RD|ARAB|AL|35016|||000||I||| +EN|575333|||KF4NTZ|L||LEWIS SR, SAMUEL A|SAMUEL|A|LEWIS|SR||||3504 MAGGIE AVE|HUNTSVILLE|AL|35810|||000||I||| +EN|575335|||KF4NUA|L||HENRY, FRANK J|FRANK|J|HENRY|||||1010 SUNLAKE BLVD APT 210|HUNTSVILLE|AL|35824|||000||I||| +EN|575336|||KF4NUC|L||ENGLAND III, RICHARD C|RICHARD|C|ENGLAND|III||||209 RUSSELL RD|JACKSON|TN|38305|||000||I||| +EN|575338|||KF4NUE|L|L00411038|ELSASSER, WILLIAM C|WILLIAM|C|ELSASSER|||||439 NEWTON ROAD|HATBORO|PA|19040|||000|0005106802|I||| +EN|575342|||KF4NUI|L||ADAMS, PHILLIP G|PHILLIP|G|ADAMS|||||6293 OCCOQUAN FOREST DR|MANASSAS|VA|20112|||000||I||| +EN|575345|||KF4NUM|L|L00388864|CHENEY, RONALD|RONALD||CHENEY|||||HC 5 BOX 954|OLD TOWN|FL|32680|||000|0005332119|I||| +EN|587439|||KF6HUY|L||NOTTINGHAM, WILBUR L|WILBUR|L|NOTTINGHAM|||||1766 SINALOA 182|SIMI VALLEY|CA|93065|||000||I||| +EN|587443|||KF6HVB|L||YIN, KEAT E|KEAT|E|YIN|||||20622 PIONEER BLVD|LAKEWOOD|CA|90715|||000||I||| +EN|587444|||KF6HVC|L||WILLIAMS, JUDY I|JUDY|I|WILLIAMS|||||5441 EMERYWOOD DR|BUENA PARK|CA|90621|||000||I||| +EN|587445|||KF6HVD|L||WILLIAMS, GLENN W|GLENN|W|WILLIAMS|||||5441 EMERYWOOD DR|BUENA PARK|CA|90621|||000||I||| +EN|587448|||KF6HVG|L||SLEICHTER, CHARLES G|CHARLES|G|SLEICHTER||||||CAPO BEACH|CA|92624|2614||000||I||| +EN|587449|||KF6HVH|L|L00352440|SHEETS, MERLE A|MERLE|A|SHEETS|||||9640 MALPASO RD|PHELAN|CA|923718940|||000|0004853198|I||| +EN|587451|||KF6HVJ|L|L00177248|ROHRS, MARVIN M|MARVIN|M|ROHRS|||||113 GRAND CANAL|BALBOA ISLAND|CA|92662|||000|0001977388|I||| +EN|587453|||KF6HVL|L|L00190102|PILTZ, LORIE L|LORIE|L|PILTZ|||||79 551 PORT ROYAL AVE|BERMUDA DUNES|CA|92201|||000|0002133866|I||| +EN|587457|||KF6HVP|L||MULLANEY, MARY|MARY||MULLANEY|||||CYM BERTH 202 62|WILMINGTON|CA|90744|||000||I||| +EN|587458|||KF6HVQ|L||MITCHELL, KENNETH R|KENNETH|R|MITCHELL|||||206 S SULLIVAN 64|SANTA ANA|CA|92704|||000||I||| +EN|587459|||KF6HVR|L||MICHEL, KEVIN|KEVIN||MICHEL|||||16852 GREEN ST 103|HUNTINGTON BEACH|CA|92649|||000||I||| +EN|587460|||KF6HVS|L||MARQUEZ, CHRISTOPHER F|CHRISTOPHER|F|MARQUEZ|||||6606 W 86TH PL 6|LOS ANGELES|CA|90045|||000||I||| +EN|587461|||KF6HVT|L||JORG, LUCIAN K|LUCIAN|K|JORG|||||13967 MARQUESAS WY 13|MARINA DEL REY|CA|90292|||000||I||| +EN|587462|||KF6HVU|L||JOHNSON, DENNIS D|DENNIS|D|JOHNSON|||||1631 STRAND WY 13|CORONADO|CA|92118|||000||I||| +EN|587463|||KF6HVV|L||HOLSTROM, DAYN A|DAYN|A|HOLSTROM||||||YORBA LINDA|CA|928868726|87026 117||000||I||| +EN|587465|||KF6HVX|L||HEYWARD, ROBERT E|ROBERT|E|HEYWARD|||||710 N REXFORD DR|BEVERLY HILLS|CA|90210|||000||I||| +EN|587470|||KF6HWC|L||EVES MCKENNA, MAIREAD R|MAIREAD|R|EVES MCKENNA|||||13967 MARQUESAS WY 13|MARINA DEL REY|CA|90292|||000||I||| +EN|587471|||KF6HWD|L||CARVER, CHRISTOPHER J|CHRISTOPHER|J|CARVER|||||CYM BERTH 202 62|WILMINGTON|CA|90744|||000||I||| +EN|587472|||KF6HWE|L||BRAUN, H MICHAEL|H MICHAEL||BRAUN|||||3525 DEL MAR HEIGHTS 329|SAN DIEGO|CA|92130|||000||I||| +EN|588652|||KF6JTV|L|L01451301|MANZANO, JESUS J|JESUS|J|MANZANO|||||12574 Ramona ave.|Chino|CA|91710|||000|0018337980|I||| +EN|590095|||KF6MBZ|L|L01451427|ZEICHIK, JOSHUA A|JOSHUA|A|ZEICHIK|||||19400 WYANDOTTE ST 37|RESEDA|CA|91335|||000|0018339531|I||| +EN|594997|||KF6UDK|L|L01451486|EDWARDS, DONALD G|DONALD|G|EDWARDS|||||8 VILLA MARIA|NOVATO|CA|94947|||000|0018340133|I||| +EN|595022|||KF6UEK|L|L01451449|BUTLER, RHETT B|RHETT|B|BUTLER|||||35 Magnolia Dr.|Calistoga|CA|94515||Rhett B. Butler|000|0018339788|I||| +EN|599444|||KG3E|L|L01440102|MC CAFFREY, ROBERT P|ROBERT|P|MC CAFFREY|||||31 STONE CROP RD|WILMINGTON|DE|198101315|||000|0018214577|I||| +EN|599781|||KG4AOG|L|L00285801|GIBSON, MATTHEW J|MATTHEW|J|GIBSON|||||11921 North Tazwell Drive Unit 3|Anchorage|KY|40245|||000|0003921889|I||| +EN|600501|||KG4BTT|L|L00204580|JENKINS, CHRISTOPHER M|CHRISTOPHER|M|JENKINS|||||2411 Hunters Trail|MYRTLE BEACH|SC|29588|||000|0003522315|I||| +EN|605481|||KH6FT|L|L01289974|ALEXANDER, WAYNE A|WAYNE|A|ALEXANDER|||||3412 kahikolu way|honolulu|HI|96818|||000|0003720638|I||| +EN|611769|||KK4IJ|L||NIBLOCK, WILLIAM L|WILLIAM|L|NIBLOCK|||||2041 SUNWOOD PT|HOMOSASSA|FL|34448|||000||I||| +EN|613529|||KK7N|L|L00508192|GRUBER, MICHAEL E|MICHAEL|E|GRUBER|||||12038 SE Beckman Ave|Milwaukie|OR|97222|||000|0006979959|I||| +EN|614326|||KL7BB|L|L00174440|BALZARINI, WILLIAM R|WILLIAM|R|BALZARINI|||||1414 South 324th St. #B-209-105|Federal Way|WA|980038444|||000|0002077915|I||| +EN|618304|||KN9M|L||PARTRIDGE, EVERETT L|EVERETT|L|PARTRIDGE|||||2600 HIGH ST RD|LOGANSPORT|IN|46947|||000||I||| +EN|623605|||KT3B|L|L01336538|WILSON, MARTIN P|MARTIN|P|WILSON|||||8995 E. Aster Drive|SCOTTSDALE|AZ|85260|||000|0017071069|I||| +EN|629804|||N0HYE|L|L01451355|BOGER, WILLIAM A|WILLIAM|A|BOGER|||||1408 N CENTRAL AV3E 124|AVONDALE|AZ|85323||WILLIAM A BOGER|000|0006386346|I||| +EN|630838|||N0JVA|L|L01451445|BOMGAARS, DAWN D|DAWN|D|BOMGAARS|||||3026 McDonald St|SIOUX CITY|IA|51104|||000|0018339721|I||| +EN|631123|||N0KHX|L|L01451450|HULL, STEPHEN P|STEPHEN|P|HULL||||||EVERGREEN|CO|804373131|3131||000|0018339812|I||| +EN|631610|||N0LE|L|L00159301|ELLIS, MAURICE L|MAURICE|L|ELLIS|||||12486 Sutton Road|BELGRADE|MO|636229197|||000|0002907277|I||| +EN|635115|||N0QZV|L|L00444644|Horn, James P|James|P|Horn|||||2676 Millridge Lane|Oskaloosa|IA|52577|||000|0006051197|I||| +EN|637013|||N0TXR|L|L00574024|Hart, Brian C|Brian|C|Hart|||||2163 Upper Afton Rd E|Saint Paul|MN|551194641|||000|0007714892|I||| +EN|641568|||N1BUV|L||HOWELL, RAYMOND A|RAYMOND|A|HOWELL|||||35 OLD WOOD RD|NORTH ATTLEBORO|MA|02760|||000||I||| +EN|642738|||N1EOL|L||COLLORD, BARRY F|BARRY|F|COLLORD|||||41 RANDAL AVE|WEST HARTFORD|CT|061101744|||000||I||| +EN|642786|||N1ERN|L||RASCATI, SAVERIO J|SAVERIO|J|RASCATI|||||130 CONTACT DR|WEST HAVEN|CT|06516|||000||I||| +EN|646363|||N1LEF|L|L00337874|WILSON III, WILLIAM E|WILLIAM|E|WILSON|III||||268 Pleasant St Apt # 8|Gardner|MA|01440|||000|0004897807|I||| +EN|657005|||N2DOV|L||CHRIST, WILLIAM F|WILLIAM|F|CHRIST|||||1290 SPENCERPORT RD|ROCHESTER|NY|14606|||000||I||| +EN|659369|||N2ISI|L|L01451336|SARDOS JR, JOSEPH J|JOSEPH|J|SARDOS|JR||||115 LECONEY CIR|PALMYRA|NJ|08065|||000|0018338343|I||| +EN|665074|||N2SIL|L|L00467635|MC GRATH, THOMAS C|THOMAS|C|MC GRATH|||||18 SMOCK ST|NEPTUNE CITY|NJ|07753|||000|0006379952|I||| +EN|673196|||N3GZK|L|L00779251|ADAMS, PETER A|PETER|A|ADAMS|||||304 West Ashbridge Street|West Chester|PA|19380|||000|0009996760|I||| +EN|682929|||N3WVX|L|L00980360|WALSH, KENNETH W|KENNETH|W|WALSH|||||201 Pinnacle Drive SE, Apt. 411|Rio Rancho|NM|87124|||000|0012829917|I||| +EN|683923|||N3YKU|L||WHITING, DALE G|DALE|G|WHITING|||||6817 99TH AVE|SEABROOK|MD|20706|||000||I||| +EN|686638|||N4DXJ|L|L01450714|JOHNSON, DOUGLAS X|DOUGLAS|X|JOHNSON|||||631 JOHNSON RD|HAYESVILLE|NC|28904|||000|0018331793|I||| +EN|687762|||N4GQL|L||BOLICK, RALPH E|RALPH|E|BOLICK|||||2624 2ND AVE NW|HICKORY|NC|28601|||000||I||| +EN|692014|||N4PPZ|L||COOK, RUSSELL J|RUSSELL|J|COOK|||||1264 CIRCLE DR|DE FUNIAK SPRINGS|FL|32433|||000||I||| +EN|694577|||N4UHT|L|L01273892|HALL, JERALD N|JERALD|N|HALL|||||14300 NE 20 AV #D102 PMB 212|Vancouver|WA|986861493|||000|0016381949|I||| +EN|700907|||N5HMH|L|L01253899|HILL, HOWARD M|HOWARD|M|HILL|||||212 RAY DR|MONROE|LA|71203|||000|0016191017|I||| +EN|702102|||N5KHN|L||MARCUSSEN, CHARLEY|CHARLEY||MARCUSSEN|||||127 MIDDLEBROOK DR|SLIDELL|LA|70458|||000||I||| +EN|703704|||N5NFS|L|L00285315|BOODRY JR, THEODORE|THEODORE||BOODRY|JR||||3300 Bee Caves Rd Ste 650|Westlake Hills|TX|78746|175||000|0003886280|I||| +EN|703706|||N5NFU|L|L01430536|BOODRY, MARITA M|MARITA|M|BOODRY|||||3300 Bee Caves Rd STE 650|Westlake Hills|TX|78746|175||000|0018107847|I||| +EN|712731|||N6DDU|L|L00145035|FRITCHEY, NEAL L|NEAL|L|FRITCHEY|||||109 COURT LN APT 15|HOLBROOK|AZ|86025|||000|0001987494|I||| +EN|714435|||N6HPC|L|L01228570|LINSCOTT, DAVID C|DAVID|C|LINSCOTT|||||4252 Via Azul|Newbury Park|CA|91320|||000|0015904469|I||| +EN|714580|||N6HXW|L||GEITNER, LINDA M|LINDA|M|GEITNER|||||5312 MARINA PACIFICA N|LONG BEACH|CA|90803|||000||I||| +EN|717931|||N6PAK|L||CANNON, ORION K|ORION|K|CANNON|||||21500 LASSEN ST SP 65|CHATSWORTH|CA|91311|||000||I||| +EN|725226|||N7CK|L|L00146524|BUCCIARELLI, MICHAEL R|MICHAEL|R|BUCCIARELLI|||||210 E. 8th St.|Benson|AZ|85602|||000|0002117588|I||| +EN|727200|||N7GVV|L|L00448064|RAISLER, JAMES E|JAMES|E|RAISLER|||||1438 Winchester Ct|WINONA LAKE|IN|46590|||000|0006092449|I||| +EN|727973|||N7INI|L||MELTON, DAVID A|DAVID|A|MELTON||||||KIRKLAND|WA|98083|612||000||I||| +EN|729873|||N7LZJ|L|L01273892|HALL, KATHY E|KATHY|E|HALL|||||14300 NE 20 AV #D102 PMB 212|Vancouver|WA|986861493|||000|0016381949|I||| +EN|742603|||N8JCE|L|L00764161|WICKIZER, PETER D|PETER|D|WICKIZER|||||2985 SECLUSION BAY DR|ANCHORAGE|AK|99515|||000|0009828534|I||| +EN|751563|||N8XTO|L|L01451372|MILLER, ROBERT D|ROBERT|D|MILLER|||||30 GLENCROFT PL|CENTERVILLE|OH|45459|||000|0018189290|I||| +EN|753976|||N9CLZ|L||PARKER, GLADYS P|GLADYS|P|PARKER|||||4516 N 575TH ST|ROBINSON|IL|624546518|||000||I||| +EN|754128|||N9CVW|L||VON TROTT, DOROTHEA E|DOROTHEA|E|VON TROTT|||||W65 N548 ST JOHN AVE|CEDARBURG|WI|53012|||000||I||| +EN|754248|||N9DDB|L||SALA, WALTER R|WALTER|R|SALA|||||1617 SUNNYSLOPE DR|CROWN POINT|IN|46307|||000||I||| +EN|755783|||N9GQG|L|L00786487|FISCHER, LELAND A|LELAND|A|FISCHER|||||535 3rd Ave Apt 414|ANTIGO|WI|544092262|||000|0008409195|I||| +EN|756785|||N9ILL|L|L00170956|BROWNFIELD, ROBERT A|ROBERT|A|BROWNFIELD|||||1437 W ST RD 163|CLINTON|IN|47842|||000|0003003860|I||| +EN|769358|||NH0K|L|L01254778|KOJIMA, MINORU|MINORU||KOJIMA||||||SAIPAN|MP|969501969|501969|SAIPAN RADIO AMUSEMENT CLUB|000|0016200156|I||| +EN|770321|||NJ6K|L||NELSON, CARL H|CARL|H|NELSON|||||15208 E CARNELL ST|WHITTIER|CA|90603|||000||I||| +EN|771865|||NO8DX|L|L00243595|NORTHERN OHIO DX ASSOCIATION||||||||16806 W 130th ST|STRONGSVILLE|OH|44136||Theodore Mirgliotta|000|0003091600|B||| +EN|772354|||NP3II|L||RODRIGUEZ PADIN, ADULBERTO|ADULBERTO||RODRIGUEZ PADIN|||||CLUSTER 2 102 BO ESPINAL|AGUADA|PR|00602|||000||I||| +EN|772355|||NP3IK|L||ABDUL HADI, MOHAMAD A|MOHAMAD|A|ABDUL HADI||||||LAS MARIAS|PR|00670|255||000||I||| +EN|773403|||NQ9W|L||BELL, CHRISTOPHER M|CHRISTOPHER|M|BELL|||||3619 W 67TH PL|CHICAGO|IL|60629|||000||I||| +EN|775423|||NZ7O|L||WELLING, DALE|DALE||WELLING|||||40 W 100 N|FIELDING|UT|84311|||000||I||| +EN|775939|||W0CBV|L||BAKER, ALDEN P|ALDEN|P|BAKER|||||705 SW LEA DR|LEES SUMMIT|MO|64081|||000||I||| +EN|776884|||W0GNZ|L||JAMES, RAYMOND H|RAYMOND|H|JAMES|||||3901 PALISAADE WAY|EAGAN|MN|55122|||000||I||| +EN|779278|||W0RCA|L|L00201059|Anderson, Roderick C|Roderick|C|Anderson|||||248 Centennial Drive|Louisville|CO|80027|||000|0002237295|I||| +EN|779344|||W0RHB|L||BABBS, CHARLES C|CHARLES|C|BABBS||||||WICHITA|KS|67201|3664||000||I||| +EN|781948|||W1FUW|L||MIERZ, EDMUND J|EDMUND|J|MIERZ|||||138 HIGBY RD|MIDDLETOWN|CT|06457|||000||I||| +EN|783828|||W1PHM|L|L01450699|MACCHI, PHILIP H|PHILIP|H|MACCHI|||||15 NORTHWOOD DR BOX 381|WALPOLE|MA|02081|||000|0018331652|I||| +EN|784715|||W1UPA|L||CSISAR SR, WILLIAM F|WILLIAM|F|CSISAR|SR||||1680 EAGLEVILLE RD|TIVERTON|RI|02878|||000||I||| +EN|785871|||W2CCS|L||ZANGENBERG, HENRY E|HENRY|E|ZANGENBERG|||||3152 WESLEY WAY|HENDERSNVILLE|NC|287921168|||000||I||| +EN|787537|||W2ISN|L|L01451047|RINKER, LEONARD P|LEONARD|P|RINKER||||||LYNDONVILLE|NY|14098|106||000|0005059548|I||| +EN|789088|||W2QZK|L||ARDNER, ROBERT W|ROBERT|W|ARDNER|||||408 SUNRISE DR|SYRACUSE|NY|13205|||000||I||| +EN|790690|||W3BSA|L|L00461082|SCOUT VENTURE CREW 80 NATL CAP AREA CNL BSA||||||||3800 POWELL LANE PH-5|FALLS CHURCH|VA|22041||DEMETRIOS G. PULAS, jR.|000|0006302418|B||| +EN|792127|||W3ICB|L|L01406393|ALLISTON, WILLIAM H|WILLIAM|H|ALLISTON|||||3488 GREENSBURG RD|MURRYSVILLE|PA|15668|||000|0017842105|I||| +EN|792619|||W3KHW|L|L01451452|ACKER, AARON G|AARON|G|ACKER|||||1685 MAE COURT|FRUITA|CO|81521|||000|0018339853|I||| +EN|793653|||W3ROC|L|L01450248|PALERMO, ROSS|ROSS||PALERMO|||||521 Albion Street|SCRANTON|PA|18505|||000|0018326264|I||| +EN|794977|||W4ANB|L|L00209831|BURNETTE, ARTHUR N|ARTHUR|N|BURNETTE|||||435 ARROWHEAD TRAIL|MARION|NC|28752|||000|0003223419|I||| +EN|795731|||W4DAI|L|L00143026|ISBELL, DARYL A|DARYL|A|ISBELL|||||3212 BROOKVIEW LN|TRUSSVILLE|AL|35173|||000|0002602118|I||| +EN|796495|||W4FPT|L|L00505233|TAYLOR, FREDERICK P|FREDERICK|P|TAYLOR|||||9400 QUARTER CREEK CT 33|Richmond|VA|23294|||000|0006947543|I||| +EN|796912|||W4HAO|L||BROWN SR, GEORGE W|GEORGE|W|BROWN|SR||||911 MOCKINGBIRD LN|GRIFFIN|GA|30224|||000||I||| +EN|797426|||W4JAD|L|L00145386|DANIEL, JAMES A|JAMES|A|DANIEL|||||424 ETIWAN AVE|COLUMBIA|SC|29205|||000|0003195088|I||| +EN|798177|||W4LNS|L|L00183237|SANDLIN, LARRY N|LARRY|N|SANDLIN|||||225 Gayle Blvd|Tarrant|AL|35217|||000|0002568285|I||| +EN|803060|||W5DEI|L|L00164046|IVIE SR, DONALD E|DONALD|E|IVIE|SR||||HC 1 BOX 445|ZALMA|MO|63787|||000|0002935575|I||| +EN|804458|||W5JLB|L|L01451042|BURGESS, JIMMY L|JIMMY|L|BURGESS||||||FORT SUPPLY|OK|73841|142||000|0018335299|I||| +EN|805137|||W5MLC|L||HOPKINS JR, LOUIS A|LOUIS|A|HOPKINS|JR|||||CORRALES|NM|87048|1343||000||I||| +EN|805456|||W5NYR|L||REEVES SR, ROBERT S|ROBERT|S|REEVES|SR||||2908 CHERRY LN|AUSTIN|TX|78703|||000||I||| +EN|806148|||W5RAB|L|L00203565|BUFORD, ROBERT A|ROBERT|A|BUFORD|||||22111 N 4028 DR|BARTLESVILLE|OK|740069607|||000|0002478212|I||| +EN|806865|||W5TJV|L||MARSHALL, BILLY R|BILLY|R|MARSHALL|||||433 SO 78TH EAST AVE|TULSA|OK|74112|||000||I||| +EN|808542|||W6BAY|L|L01450670|DANVILLE RADIO CLUB||||||||310 HOUSTON CT|DANVILLE|CA|94526||MICHAEL A JARCHOW|000|0018331389|B||| +EN|810209|||W6HHS|L||BOX JR, BYRON D|BYRON|D|BOX|JR||||17 PRIVATEER DR|CORTE MADERA|CA|94925|||000||I||| +EN|811222|||W6KTL|L||HODGKINS, MARTIN B|MARTIN|B|HODGKINS|||||30000-335 KASSON RD|TRACY|CA|95376|||000||I||| +EN|811950|||W6NEN|L||DAVIDSON, STUART N|STUART|N|DAVIDSON|||||4843 LAKERIDGE TER W|RENO|NV|89509|||000||I||| +EN|811953|||W6NEV|L|L00152208|WAYNE, MARTY|MARTY||WAYNE|||||1039 BRYANT WAY|SUNNYVALE|CA|94087|||000|0002100220|I||| +EN|812298|||W6OHP|L||KIPLINGER, JOE H|JOE|H|KIPLINGER|||||4630 CUSTIS AVE|SACRAMENTO|CA|95822|||000||I||| +EN|813067|||W6RCG|L|L00210529|FERNANDEZ, WESTLEY E|WESTLEY|E|FERNANDEZ|||||1851 WILLIAM WAY|CONCORD|CA|945203950|||000|0001956424|I||| +EN|813649|||W6SQB|L||CHAMBERS, WILLIAM W|WILLIAM|W|CHAMBERS|||||706 NO PINE ST|ANAHEIM|CA|92805|||000||I||| +EN|819618|||W7SFE|L|L01451429|ROSELLE, WILLIAM F|WILLIAM|F|ROSELLE|||||1310 Perdita Lane|Lincoln|CA|95648|||000|0018339556|I||| +EN|819820|||W7TKO|L||RHOADES, F HAZEN|F HAZEN||RHOADES|||||353 RANSOM RD|WALLA WALLA|WA|99362|||000||I||| +EN|820528|||W7ZIR|L|L01451126|DRISKELL, CHARLES C|CHARLES|C|DRISKELL||||||Tenino|WA|98589|4027||000|0018336081|I||| +EN|821406|||W8DFM|L|L00144466|MONTAGUE, DAVID F|DAVID|F|MONTAGUE|||||7465 MAPLE AVE|GRAND BLANC|MI|48439|||000|0002732402|I||| +EN|821510|||W8DRD|L||BUTTRAM, ANDREW J|ANDREW|J|BUTTRAM|||||171 LAGUNA CT|SAINT AUGUSTINE|FL|32086|||000||I||| +EN|821700|||W8EOG|L|L01451481|MC FADDEN, HENRY T|HENRY|T|MC FADDEN|||||2360 LOUDON ST RR 2|GRANVILLE|OH|43023|||000|0018340067|I||| +EN|821950|||W8FRH|L||JOHNSON, ANDREW E|ANDREW|E|JOHNSON|||||34128 HARLOWSHIRE|FARMINGTON HILLS|MI|482355354|||000||I||| +EN|824512|||W8RAY|L|L00195929|Willey, Ray L|Ray|L|Willey|||||307 Pentecost Hwy|Onsted|MI|49265|||000|0003106044|I||| +EN|825335|||W8VLB|L||MARKLEY, GLENN F|GLENN|F|MARKLEY|||||8969 CHEVINGTON CHASE RD|PICKERINGTON|OH|43147|||000||I||| +EN|825509|||W8WIL|L|L00150498|Wilson, Donald E|Donald|E|Wilson|||||Rt 2 Box 86|Salem|WV|26426|||000|0003251105|I||| +EN|827100|||W9FIS|L|L00204810|HAWKINS, ROBERT J|ROBERT|J|HAWKINS|||||1120 ELIZABETH ROW 1 LOT 2|GREEN BAY|WI|54302|||000|0002696649|I||| +EN|827994|||W9JVZ|L|L01451369|KLEIN, ARTHUR|ARTHUR||KLEIN|||||524 S MITCHELL AVE|ARLINGTON HEIGHTS|IL|600051812|||000|0018338756|I||| +EN|828462|||W9LXJ|L||WALCZAK, JOHN R|JOHN|R|WALCZAK|||||1260 ROLLING GREEN DR|WAUKESHA|WI|53186|||000||I||| +EN|829086|||W9OCL|L|L00141659|WEBB, ROBERT C|ROBERT|C|WEBB|||||8208 VALLEY ESTATES DR|INDIANAPOLIS|IN|46227|||000|0001999895|I||| +EN|829333|||W9PNR|L|L00365937|FAULKNER, FREDERICK L|FREDERICK|L|FAULKNER|||||1016 Flora Vista St.|TRINITY|FL|346557017|||000|0005294475|I||| +EN|830330|||W9WAY|L||CASPERS, GEORGE E|GEORGE|E|CASPERS|||||COOLIDGE DR|LAKE NEBAGAMON|WI|54849|6||000||I||| +EN|833157|||WA0URU|L||GANNAWAY, WILLIAM F|WILLIAM|F|GANNAWAY|||||272 ORRIN|WINONA|MN|55987|||000||I||| +EN|833703|||WA1AFM|L||AUBIN, GERALD C|GERALD|C|AUBIN|||||6 SKYLINE DR|LYNDONVILLE|VT|05851|||000||I||| +EN|833866|||WA1CFS|L|L00400971|HAMM III, JOHN J|JOHN|J|HAMM|III||||191 MT AUBURN ST FLOOR 3|Cambridge|MA|02138|||000|0005206156|I||| +EN|839204|||WA2ITP|L|L01451443|MAYERCIK, DAVID J|DAVID|J|MAYERCIK|||||219 VILLAGE LN|MOUNT GRETNA|PA|17064|||000|0018338905|I||| +EN|845020|||WA3SXP|L|L01406279|PEIKIN, ROBERT E|ROBERT|E|PEIKIN|||||952 SHORELINE DR.|SAN MATEO|CA|94404|||000|0017840802|I||| +EN|850174|||WA4PWS|L|L01451345|BRUMBACK, STEPHEN L|STEPHEN|L|BRUMBACK|||||106 CHERRY HILL CIR|WINCHESTER|VA|22602|||000|0018338459|I||| +EN|850898|||WA4SRO|L||LYONS, DEWEY J|DEWEY|J|LYONS|||||24 BLACKROCK RANCH RD|SYLVA|NC|28779|||000||I||| +EN|852470|||WA4ZIW|L||BRYANT, ALVIE C|ALVIE|C|BRYANT|||||2818 WALDMAN DR|CHARLESTON HEIGHTS|SC|29406|||000||I||| +EN|852840|||WA5BUV|L|L00685968|HOUSTON AREA COMMUNICATORS||||||||14835 ELMTEX|HUMBLE|TX|77396|||000|0008962078|B||| +EN|852952|||WA5CVI|L|L00686736|SHANNON, SCOTT|SCOTT||SHANNON||||||LUBBOCK|TX|79453|54195|SCOTT SHANNON|000|0008970287|I||| +EN|858423|||WA6LQR|L||BICKERSTAFF, HARVEY D|HARVEY|D|BICKERSTAFF|||||394 TERMINAL AVE|MENLO PARK|CA|94025|||000||I||| +EN|860943|||WA6VMD|L|L01447359|SCHULTZ, RAY A|RAY|A|SCHULTZ|||||2668 TAMALPAIS DR|PINOLE|CA|945641243|||000|0018295071|I||| +EN|861671|||WA6ZXJ|L||WELCH, CALVIN K|CALVIN|K|WELCH|||||5061 DUBOIS DR|SAN DIEGO|CA|92117|||000||I||| +EN|862118|||WA7ECW|L||O DONNELL JR, CHARLES F|CHARLES|F|O DONNELL|JR||||3246 NE 56TH|PORTLAND|OR|97213|||000||I||| +EN|863914|||WA7TNE|L||SMITH, JACK C|JACK|C|SMITH|||||310 SOUTH EAST PINE|ROSEBURG|OR|97470|||000||I||| +EN|864143|||WA7VCS|L|L01438313|RAUBUCH, ROGER J|ROGER|J|RAUBUCH|||||3118 HUDSON ST|LONGVIEW|WA|98632|||000|0018195693|I||| +EN|867254|||WA8VNW|L||CULLEN, FRANK L|FRANK|L|CULLEN|||||2133 RICHLAND AVE|LAKEWOOD|OH|44107|||000||I||| +EN|870060|||WA9USM|L||HENDRICK, GORDON K|GORDON|K|HENDRICK|||||368 HEARTHSTONE TER|PORT ORANGE|FL|32127|||000||I||| +EN|872097|||WB0NHC|L||SCOTT, JAMES W|JAMES|W|SCOTT|||||12470 CROSS GREEN LN|SAINT LOUIS|MO|63141|||000||I||| +EN|872901|||WB0RXY|L||ERLANDSON, ALVIN P|ALVIN|P|ERLANDSON|||||7314 BRYANT AVE SOUTH|RICHFIELD|MN|55423|||000||I||| +EN|873600|||WB0VEQ|L|L00735558|LUSTRI, ROGER D|ROGER|D|LUSTRI|||||711 Jenny Lane|Myrtle Creek|OR|97457|||000|0009510207|I||| +EN|875034|||WB1DKS|L||STEVENSON, RICHARD J|RICHARD|J|STEVENSON|||||20 ARBOR DR|VEAZIE|ME|04401|||000||I||| +EN|876458|||WB2CSQ|L||STOBERL, DONALD L|DONALD|L|STOBERL|||||149 MILLWOOD DR|TONAWANDA|NY|14150|||000||I||| +EN|877904|||WB2JIL|L|L00464035|Brown, Russell D|Russell|D|Brown|||||8725 E Floyd Rd|Holland Patent|NY|133543558|||000|0006337133|I||| +EN|878258|||WB2KYD|L||LOUGH JR, HARRY B|HARRY|B|LOUGH|JR||||31350 SIGNS DR|DEER ISLAND|OR|970549613|||000||I||| +EN|878751|||WB2NDN|L|L01451340|KISKIS, DANIEL C|DANIEL|C|KISKIS|||||457 Deerfield Cir|FORT COLLINS|CO|805248604||Daniel C Kiskis|000|0018338392|I||| +EN|879516|||WB2RHX|L|L01451343|DEUBLE, ANDREW H|ANDREW|H|DEUBLE|||||13907 SW 114th Circle|Dunnellon|FL|34432||Andrew H,. Deuble|000|0018338475|I||| +EN|881051|||WB3ACY|L||GRIFFO, JOSEPH S|JOSEPH|S|GRIFFO|||||12330 OLD CANAL RD|POTOMAC|MD|20854|||000||I||| +EN|883502|||WB4ACZ|L||CROOM, RICHARD D|RICHARD|D|CROOM|||||695 PARK DR|MARS HILL|NC|28754|||000||I||| +EN|884423|||WB4EEK|L||GRAVES, ELVA J|ELVA|J|GRAVES|||||2741 BAYVIEW RD|JACKSONVILLE|FL|32210|||000||I||| +EN|885797|||WB4KNW|L||MASINGILL, WILLIAM T|WILLIAM|T|MASINGILL|||||2310 BRENTWOOD CIR|LECANTO|FL|34461|||000||I||| +EN|887021|||WB4QHV|L||THORNTON, GARY A|GARY|A|THORNTON|||||BOX 411|WINDER|GA|30680|||000||I||| +EN|887112|||WB4RAF|L||WATSON, DALE F|DALE|F|WATSON|||||14 GLEN OAK DR|DANVILLE|VA|24541|||000||I||| +EN|887840|||WB4UJK|L||POLLARD, MACK E|MACK|E|POLLARD|||||2612 LUTHER CT|WINTERVILLE|NC|28590|||000||I||| +EN|887956|||WB4UZY|L||BYNUM, PALMIRA R|PALMIRA|R|BYNUM|||||4886 LANTERN LN SW|MABLETON|GA|30059|737||000||I||| +EN|889356|||WB5DGM|L|L00273331|COGHLAN, MARVIN|MARVIN||COGHLAN|||||113 Cherry St|KOSCIUSKO|MS|39090|||000|0003908399|I||| +EN|892701|||WB5WKW|L|L00351588|Stull, Edward E|Edward|E|Stull|||||1561 Tecolote Tr|Las Cruces|NM|88012|||000|0004670295|I||| +EN|894096|||WB6EJV|L|L01370802|COPELAND, BARRY G|BARRY|G|COPELAND|||||9412 180th Ave E|Bonney Lake|WA|98391|||000|0017456435|I||| +EN|897053|||WB6SMF|L||MANGIAMELI, FRANCES L|FRANCES|L|MANGIAMELI|||||14415 CARTELA DR|LA MIRADA|CA|90638|||000||I||| +EN|897111|||WB6SSS|L||WILLMAN, BILL|BILL||WILLMAN|||||5312 DORIS WAY|SOUTH TORRANCE|CA|90505|||000||I||| +EN|897667|||WB6VGK|L||NELSON, ROGER C|ROGER|C|NELSON|||||2112 ADAIR ST|SAN MARINO|CA|91108|||000||I||| +EN|897698|||WB6VIP|L||GREEN, RICHARD M|RICHARD|M|GREEN|||||4156 INTERDALE WAY|PALO ALTO|CA|94306|||000||I||| +EN|898762|||WB7BTO|L||KIVETT, HARRY L|HARRY|L|KIVETT|||||10817 E 15TH AVE|SPOKANE|WA|99206|||000||I||| +EN|902307|||WB8EQA|L||EICKHOFF, REIMUND|REIMUND||EICKHOFF|||||1040 S PERRY ST APT 24 BAVARIAN VLG|NAPOLEON|OH|43545|||000||I||| +EN|903146|||WB8MMC|L||SOLLMAN, VIVIAN J|VIVIAN|J|SOLLMAN|||||5957 CHANEY DR|TOLEDO|OH|43615|||000||I||| +EN|905223|||WB9AOU|L|L00133984|BELCHER, DIANE M|DIANE|M|BELCHER|||||956 N 200 W|VALPARAISO|IN|46383|||000|0003000890|I||| +EN|906929|||WB9OLF|L|L01451356|CAMEROTA, THOMAS J|THOMAS|J|CAMEROTA|||||22 WINGATE DR|OSWEGO|IL|60543|||000|0018335638|I||| +EN|907011|||WB9PBY|L||MICHNA, JAMES T|JAMES|T|MICHNA|||||4732 OTTAWA RD|ROCKFORD|IL|61107|||000||I||| +EN|907326|||WB9RCV|L||HARRIS, WILLIAM M|WILLIAM|M|HARRIS|||||RR 1 BOX 53|ROCKPORT|IN|47635|||000||I||| +EN|909153|||WC1W|L|L00414714|CHADWICK, WILBUR M|WILBUR|M|CHADWICK|||||WOTTONS MILL RD|UNION|ME|04862|547||000|0005214309|I||| +EN|917856|||WD6DGY|L||SCHILLREFF, DOROTHY G|DOROTHY|G|SCHILLREFF|||||4560 MAPLE AVE 132|LA MESA|CA|92041|||000||I||| +EN|922312|||WD9BJY|L||VALDE, EINER E|EINER|E|VALDE|||||120 S WORTH AVE|INDIANAPOLIS|IN|46241|||000||I||| +EN|924319|||WF6A|L|L00182390|FERGUSON, WILLIAM C|WILLIAM|C|FERGUSON|||||18834 E GALATEA ST|AZUSA|CA|91702|||000|0005507892|I||| +EN|929230|||WN8RUG|L|L00287143|Sido, William J|William|J|Sido|||||7540 Club Rd|Sylvania|OH|43560|||000|0003966439|I||| +EN|929531|||WP2AAY|L||SMITH, JUDE F C|JUDE F|C|SMITH|||||BOX 7767 CHRISTIANSTED|SAINT CROIX|VI|008237767|||000||I||| +EN|931044|||WP4GOJ|L||VILLARES, LUIS A|LUIS|A|VILLARES||||||CAGUAS|PR|00726|9598||000||I||| +EN|935826|||WR7HE|L|L01364168|OLALLA REPEATER GROUP||||||||14260 FORSMAN RD SE|OLALLA|WA|98359||HERMAN J ENTZ|000|0017384298|B||| +EN|935936|||WS0Y|L|L01217969|ROUE, JOHN M|JOHN|M|ROUE|||||105 5TH AVE N|CROOKSTON|MN|56716|||000|0015784952|I||| +EN|936113|||WS8J|L|L01451455|SPENCER, TERRY M|TERRY|M|SPENCER|||||04951 Coash Rd.|VANDERBILT|MI|49795|||000|0018339887|I||| +EN|936281|||WT4WT|L|L00433796|BARRETO, SERGIO R|SERGIO|R|BARRETO||||||TRENTON|FL|32693|1416||000|0005885751|I||| +EN|1060511|||N4MC|L|L00138317|CARROLL, MICHAEL E|MICHAEL|E|CARROLL|||||14602 FRISCO CT|Woodbridge|VA|22193|||000|0003467685|I||| +EN|1099396|||K9HFX|L|L00209278|CLAYTON, SCOT M|SCOT|M|CLAYTON|||||14881 Hwy 231/431 N. Ste. G|HAZEL GREEN|AL|35750|||000|0003914066|I||| +EN|1961873|||W2RXR|L|L00215073|RYAN, JAMES B|JAMES|B|RYAN|||||60 east Grant Avenue|Roselle Park|NJ|07204|||000|0003419512|I||| +EN|2381539|||KG4RKR|L|L00462546|Flowers, Martin S|Martin|S|Flowers|||||216 N George Wallace Dr|Troy|AL|36081|||000|0006320394|I||| +EN|2526101|||KD5YDM|L|L00705894|MARTIN, PAUL T|PAUL|T|MARTIN|||||8905 MARYBANK DRIVE|Austin|TX|78750|||000|0009182940|I||| +EN|2678199|||KG6ILA|L|L00400385|Foster, R Pinkney|R Pinkney||Foster|||||5751 N Kolb Rd, Unit 20102|Tucson|AZ|857500880|||000|0005506621|I||| +EN|2691398|||KG6YFS|L|L00972947|Mendez, Raul M|Raul|M|Mendez|||||2705 Avenida de Anita #26|Carlsbad|CA|92010|||000|0012626453|I||| +EN|2695604|||KG6YME|L|L00980278|ANGLUM, ALEXANDER P|ALEXANDER|P|ANGLUM|||||1025 Heatherfield Ave|Rosamond|CA|93560|||000|0012828224|I||| +EN|2776571|||KK4DXR|L|L01070026|McCreary, John N|John|N|McCreary|||||3206 Peninsula Circle|Hampton Cove|AL|35763|||000|0014088835|I||| +EN|2860825|||KL2CQ|L|L01214773|Kelley, Kevin C|Kevin|C|Kelley|||||8901 N Palmer Fishhook Rd.|Palmer|AK|99645|||000|0015747678|I||| +EN|2899374|||N4PRT|L|L01258750|Thrush, Patrick R|Patrick|R|Thrush|||||1715 Birdsong Street|Knoxville|TN|379152302|||000|0016188351|I||| +EN|2906780|||W4KCJ|L|L00489977|JAKES, STEVENSON|STEVENSON||JAKES||||||Gallup|NM|873050822|822||000|0006780589|I||| +EN|3019461|||W4TLG|L|L01398963|Grimes, Terry L|Terry|L|Grimes|||||467 Dunn Adams Rd|Eclectic|AL|36024|||000|0017760620|I||| +EN|3029934|||K2AMW|L|L01411586|Williams, Anthony M|Anthony|M|Williams|||||999 Hidden Lake DR Apt. 4G|North Brunswick|NJ|08902|||000|0017899659|I||| +EN|3035020|||KE7VIF|L|L01422354|Merrill, Kyle J|Kyle|J|Merrill|||||4850 NW Fir Pl|Albany|OR|97321|||000|0018016865|I||| +EN|3058519|||KE5YES|L|L01446667|Patterson, Glenn|Glenn||Patterson|||||3149 Myrleville Rd|Yazoo City|MS|39194|||000|0018287581|I||| +EN|3061635|||KB1RNV|L|L01277366|Young, Stephen C|Stephen|C|Young|||||86 Clinton St|Springfield|VT|05156||stephen young|000|0016413437|I||| +EN|3063606|||AD7XP|L|L01422354|Merrill, Kyle J|Kyle|J|Merrill|||||4850 NW Fir Pl|Albany|OR|97321|||000|0018016865|I||| +EN|3063673|||KJ4IIB|L|L01451494|Owen, Thomas E|Thomas|E|Owen|||||700 Margian DR S|Saraland|AL|36572|||000|0018340273|I||| +HS|220803||AB4NN|04/27/2000|LIREN +HS|220803||AB4NN|12/10/2008|ESCFRN +HS|220803||AB4NN|12/11/2008|LIAUA +HS|220803||AB4NN|12/11/2008|LTSFND +HS|226923||AG4FM|12/08/2008|LITIN +HS|226923||AG4FM|12/11/2008|LIREN +HS|229155||K0CWD|01/29/2003|LIMOD +HS|229155||K0CWD|12/11/2008|LIREN +HS|229155||K0CWD|09/11/2004|LIAUA +HS|229155||K0CWD|08/03/2006|LIMOD +HS|229647||K0FUN|12/08/2008|LITIN +HS|229647||K0FUN|12/11/2008|LIREN +HS|229897||K0HCV|12/11/2008|LIREN +HS|236367||K2AFD|12/11/2008|LIEXP +HS|239127||K2SGA|12/11/2008|LIEXP +HS|241139||K3HX|12/09/2008|LITIN +HS|241139||K3HX|12/11/2008|LIREN +HS|242121||K3ORS|12/09/2008|LITIN +HS|242121||K3ORS|12/11/2008|LIREN +HS|244553||K4DET|05/23/2000|LIMOD +HS|244553||K4DET|12/11/2008|LIAUA +HS|244553||K4DET|12/28/2007|LIREN +HS|244623||K4DKS|12/11/2008|LIEXP +HS|246073||K4IED|12/11/2008|LIEXP +HS|246553||K4JND|12/11/2008|LIEXP +HS|246563||K4JNX|04/19/2000|LIAUA +HS|246563||K4JNX|12/11/2008|LIEXP +HS|246789||K4KEK|12/11/2008|LIEXP +HS|250780||K5DBJ|12/11/2008|LIEXP +HS|252865||K5OYA|12/11/2008|LIEXP +HS|255044||K6CRO|12/09/2008|LITIN +HS|255044||K6CRO|12/11/2008|LIREN +HS|257300||K6OUW|12/11/2008|LIEXP +HS|258191||K6TAV|03/09/2000|LIMOD +HS|258191||K6TAV|04/25/2000|LIMOD +HS|258191||K6TAV|12/11/2008|LIREN +HS|258979||K6YUQ|12/11/2008|LIEXP +HS|259561||K7CHX|12/11/2008|LIEXP +HS|260332||K7HWZ|12/11/2008|LIEXP +HS|260714||K7KIM|12/08/2008|LITIN +HS|260714||K7KIM|12/08/2008|LIMOD +HS|260714||K7KIM|12/11/2008|LIREN +HS|261045||K7MKT|04/22/2000|LIAUA +HS|261045||K7MKT|09/22/2000|LIMOD +HS|261045||K7MKT|12/11/2008|LIAUA +HS|261856||K7RPW|12/11/2008|LIEXP +HS|261898||K7RWJ|05/03/2002|LIMOD +HS|261898||K7RWJ|12/11/2008|LIREN +HS|262114||K7TAR|12/11/2008|LIEXP +HS|262931||K7ZIG|12/11/2008|LIEXP +HS|263125||K8ANS|12/11/2008|LIEXP +HS|263800||K8DTR|05/12/2000|LIMOD +HS|263800||K8DTR|12/11/2008|LIREN +HS|264382||K8IHF|12/11/2008|LIREN +HS|264382||K8IHF|01/06/2005|LIAUA +HS|264461||K8ISM|12/11/2008|LIEXP +HS|264483||K8IXB|05/04/2004|LTSFRN +HS|264483||K8IXB|05/12/2004|LIAUA +HS|264483||K8IXB|05/12/2004|LIAUA +HS|264483||K8IXB|12/05/2008|LIMOD +HS|264483||K8IXB|12/11/2008|LIAUA +HS|264483||K8IXB|10/13/2006|LIREN +HS|265031||K8MEG|12/10/2008|ESCFRN +HS|265031||K8MEG|12/11/2008|LIREN +HS|265731||K8QW|12/11/2008|LIREN +HS|265731||K8QW|10/14/2004|LITIN +HS|265731||K8QW|10/14/2004|LIAUA +HS|265731||K8QW|09/07/2006|LIAUA +HS|267187||K9ACO|12/08/2008|LITIN +HS|267187||K9ACO|12/11/2008|LIREN +HS|270217||K9TJM|12/11/2008|LIEXP +HS|273376||KA0MNC|12/11/2008|LIEXP +HS|273424||KA0MTP|12/11/2008|LIEXP +HS|278295||KA1JNG|12/11/2008|LIREN +HS|287362||KA2TBU|04/23/2004|LTSFRN +HS|287362||KA2TBU|12/11/2008|LIREN +HS|287830||KA2VDP|12/11/2008|LIEXP +HS|297863||KA4NNR|12/11/2008|LIAUA +HS|297863||KA4NNR|11/10/2006|LITIN +HS|297863||KA4NNR|11/14/2006|LIREN +HS|298166||KA4PBT|12/11/2008|LIEXP +HS|299534||KA4WOO|10/28/2008|ESCFRN +HS|299534||KA4WOO|12/11/2008|LIREN +HS|299579||KA4WUR|04/22/2000|LIMOD +HS|299579||KA4WUR|12/11/2008|LIREN +HS|300003||KA4ZZH|12/11/2008|LIEXP +HS|303456||KA5SAD|01/06/2004|LIREN +HS|303456||KA5SAD|01/15/2004|LIMOD +HS|303456||KA5SAD|01/06/2004|LIREN +HS|303456||KA5SAD|12/11/2008|LIAUA +HS|306637||KA6JXX|12/11/2008|LIREN +HS|306676||KA6KCZ|12/11/2008|LIEXP +HS|307107||KA6MXF|03/07/2003|LITIN +HS|307107||KA6MXF|03/07/2003|LIMOD +HS|307107||KA6MXF|12/11/2008|LIEXP +HS|307828||KA6REY|12/11/2008|LIEXP +HS|308374||KA6UCQ|12/11/2008|LIEXP +HS|312049||KA7NZE|12/11/2008|LIEXP +HS|316016||KA8INT|12/11/2008|LIEXP +HS|316994||KA8OBS|12/11/2008|LIEXP +HS|317161||KA8OWQ|12/11/2008|LIEXP +HS|317311||KA8PRY|12/11/2008|LIEXP +HS|322126||KA9NFJ|12/11/2008|LIEXP +HS|324491||KA9WLE|12/11/2008|LIEXP +HS|324626||KA9WWL|12/11/2008|LIEXP +HS|333520||KB0RFE|03/06/2001|LIMOD +HS|333520||KB0RFE|03/01/2002|LIMOD +HS|333520||KB0RFE|04/27/2004|LIAUA +HS|333520||KB0RFE|12/11/2008|LIAUA +HS|333520||KB0RFE|01/06/2005|LIREN +HS|337850||KB0ZCN|12/11/2008|LIEXP +HS|337852||KB0ZCP|12/11/2008|LIEXP +HS|337855||KB0ZCT|12/11/2008|LIEXP +HS|337856||KB0ZCU|12/11/2008|LIEXP +HS|339393||KB1CAU|12/04/1999|LIAUA +HS|339393||KB1CAU|12/11/2008|LIEXP +HS|342246||KB2ECN|03/21/2000|LIREN +HS|342246||KB2ECN|12/11/2008|LIAUA +HS|350846||KB2VIQ|12/11/2008|LIAUA +HS|350846||KB2VIQ|05/30/2005|LTSFRN +HS|350846||KB2VIQ|06/21/2007|LIREN +HS|353891||KB3BRG|12/11/2008|LIEXP +HS|362220||KB5AAU|12/29/1999|LIMOD +HS|362220||KB5AAU|05/17/2002|LIREN +HS|362220||KB5AAU|12/11/2008|LIAUA +HS|362220||KB5AAU|01/19/2006|LIAUA +HS|362220||KB5AAU|10/23/2007|LIAUA +HS|362220||KB5AAU|05/13/2008|LIAUA +HS|365175||KB5IWF|12/30/1999|LIMOD +HS|365175||KB5IWF|05/17/2002|LIREN +HS|365175||KB5IWF|12/11/2008|LIAUA +HS|365175||KB5IWF|12/30/2005|LIAUA +HS|365175||KB5IWF|10/23/2007|LIAUA +HS|365175||KB5IWF|10/23/2007|LIAUA +HS|365175||KB5IWF|05/13/2008|LIAUA +HS|376866||KB6PGZ|09/07/2000|LIMOD +HS|376866||KB6PGZ|12/11/2008|LIEXP +HS|376877||KB6PII|12/11/2008|LIEXP +HS|377105||KB6QGN|12/11/2008|LIEXP +HS|380434||KB7ATI|12/11/2008|LIEXP +HS|382636||KB7GYC|12/11/2008|LIREN +HS|382636||KB7GYC|08/10/2007|LITIN +HS|382636||KB7GYC|08/10/2007|LIMOD +HS|384367||KB7LJP|03/20/2003|LIREN +HS|384367||KB7LJP|12/11/2008|LIAUA +HS|384367||KB7LJP|10/03/2006|LIAUA +HS|385407||KB7NUO|07/18/2001|LITIN +HS|385407||KB7NUO|07/18/2001|LIREN +HS|385407||KB7NUO|12/11/2008|LIAUA +HS|392343||KB8AUC|12/11/2008|LIEXP +HS|392344||KB8AUD|12/11/2008|LIEXP +HS|394302||KB8FZI|12/10/2008|ESCFRN +HS|394302||KB8FZI|12/11/2008|LIREN +HS|404506||KB9AGW|04/27/2004|LTSFRN +HS|404506||KB9AGW|05/08/2004|LIAUA +HS|404506||KB9AGW|05/25/2004|LIMOD +HS|404506||KB9AGW|12/11/2008|LIREN +HS|412286||KB9PCN|12/11/2008|LIEXP +HS|415121||KB9TSW|04/10/2003|LIAUA +HS|415121||KB9TSW|12/11/2008|LIREN +HS|415142||KB9TTR|12/11/2008|LIREN +HS|415142||KB9TTR|09/14/2006|LITIN +HS|415142||KB9TTR|09/14/2006|LIAUA +HS|415245||KB9TXW|11/21/2001|LIAUA +HS|415245||KB9TXW|12/11/2008|LIREN +HS|415287||KB9TZQ|12/11/2008|LIREN +HS|415287||KB9TZQ|02/15/2007|LIAUA +HS|415287||KB9TZQ|02/15/2007|LTSFRN +HS|415287||KB9TZQ|09/13/2007|LIAUA +HS|415287||KB9TZQ|08/07/2008|LIMOD +HS|415383||KB9UDN|05/23/2000|LIMOD +HS|415383||KB9UDN|12/11/2008|LIREN +HS|419011||KC0EQY|12/11/2008|LIREN +HS|419242||KC0FAX|11/20/2008|LIAUA +HS|419242||KC0FAX|12/11/2008|LIREN +HS|419242||KC0FAX|01/15/2008|LIAUA +HS|419242||KC0FAX|01/15/2008|LTSFRN +HS|420234||KC0QN|12/11/2008|LIEXP +HS|421094||KC2AKM|12/11/2008|LIEXP +HS|423715||KC2ETF|12/11/2008|LIREN +HS|425779||KC4CJX|12/11/2008|LIREN +HS|429298||KC4KGF|12/10/2008|ESCFRN +HS|429298||KC4KGF|12/11/2008|LIREN +HS|446803||KC5QNJ|04/12/2003|LIAUA +HS|446803||KC5QNJ|06/26/2003|LIMOD +HS|446803||KC5QNJ|12/11/2008|LIAUA +HS|446803||KC5QNJ|12/11/2008|LIAUA +HS|446803||KC5QNJ|06/01/2005|LIREN +HS|446803||KC5QNJ|04/11/2006|LIAUA +HS|450880||KC5YFG|12/11/2008|LIEXP +HS|450880||KC5YFG|08/03/2004|LITIN +HS|450880||KC5YFG|08/03/2004|LIMOD +HS|450881||KC5YFI|12/11/2008|LIEXP +HS|450883||KC5YFK|12/11/2008|LIEXP +HS|450886||KC5YFN|12/11/2008|LIEXP +HS|450887||KC5YFO|12/11/2008|LIEXP +HS|453515||KC6EBR|12/11/2008|LIREN +HS|453515||KC6EBR|04/03/2008|LIAUA +HS|455390||KC6ITW|10/10/2003|LITIN +HS|455390||KC6ITW|10/10/2003|LIREN +HS|455390||KC6ITW|12/10/2008|LIAUA +HS|455390||KC6ITW|12/10/2008|LIMOD +HS|455390||KC6ITW|12/11/2008|LIAUA +HS|476344||KC7TPC|12/11/2008|LIEXP +HS|476347||KC7TPG|12/11/2008|LIEXP +HS|476348||KC7TPI|12/11/2008|LIEXP +HS|482958||KC8FBP|12/11/2008|LIAUA +HS|482958||KC8FBP|07/06/2005|LIAUA +HS|482958||KC8FBP|07/06/2005|LTSFRN +HS|482958||KC8FBP|11/08/2006|LIREN +HS|487076||KC8LSR|12/05/2002|LIAUA +HS|487076||KC8LSR|12/11/2008|LIREN +HS|487152||KC8LVR|09/05/2003|LIMOD +HS|487152||KC8LVR|12/02/2008|LIAUA +HS|487152||KC8LVR|12/11/2008|LIREN +HS|488415||KC9TL|12/11/2008|LIEXP +HS|488435||KC9UMR|05/26/2000|LIMOD +HS|488435||KC9UMR|09/29/2003|LIMOD +HS|488435||KC9UMR|12/11/2008|LIREN +HS|488435||KC9UMR|07/13/2004|LIAUA +HS|488435||KC9UMR|04/06/2005|LIAUA +HS|488435||KC9UMR|08/07/2007|LIAUA +HS|503538||KD4WES|08/22/2003|LIREN +HS|503538||KD4WES|12/11/2008|LIAUA +HS|507076||KD5CYI|01/24/2001|LITIN +HS|507076||KD5CYI|01/24/2001|LIAUA +HS|507076||KD5CYI|12/11/2008|LIAUA +HS|507076||KD5CYI|01/10/2005|LIAUA +HS|507076||KD5CYI|03/04/2008|LIREN +HS|507157||KD5DCB|12/10/2008|ESCFRN +HS|507157||KD5DCB|12/11/2008|LIREN +HS|509291||KD5GOB|03/22/2000|LIMOD +HS|509291||KD5GOB|06/01/2000|LIMOD +HS|509291||KD5GOB|03/20/2002|LIMOD +HS|509291||KD5GOB|04/09/2004|LIAUA +HS|509291||KD5GOB|12/11/2008|LIAUA +HS|509291||KD5GOB|06/20/2007|LIAUA +HS|509344||KD5GQD|12/11/2008|LIAUA +HS|528429||KD7DWK|12/11/2008|LIREN +HS|528429||KD7DWK|12/11/2008|LTSFRN +HS|541650||KE4OE|12/11/2008|LIEXP +HS|575326||KF4NTS|12/11/2008|LIEXP +HS|575327||KF4NTT|12/11/2008|LIEXP +HS|575328||KF4NTU|12/11/2008|LIEXP +HS|575333||KF4NTZ|12/11/2008|LIEXP +HS|575335||KF4NUA|12/11/2008|LIEXP +HS|575336||KF4NUC|12/11/2008|LIEXP +HS|575338||KF4NUE|10/19/2001|LIAUA +HS|575338||KF4NUE|12/11/2008|LIEXP +HS|575342||KF4NUI|12/11/2008|LIEXP +HS|575345||KF4NUM|08/13/2001|LITIN +HS|575345||KF4NUM|08/13/2001|LIAUA +HS|575345||KF4NUM|12/11/2008|LIEXP +HS|587439||KF6HUY|12/11/2008|LIEXP +HS|587443||KF6HVB|12/11/2008|LIEXP +HS|587444||KF6HVC|12/11/2008|LIEXP +HS|587445||KF6HVD|12/11/2008|LIEXP +HS|587448||KF6HVG|12/11/2008|LIEXP +HS|587449||KF6HVH|05/01/2001|LITIN +HS|587449||KF6HVH|05/01/2001|LIMOD +HS|587449||KF6HVH|12/11/2008|LIEXP +HS|587451||KF6HVJ|11/24/1999|LIMOD +HS|587451||KF6HVJ|12/11/2008|LIEXP +HS|587453||KF6HVL|12/11/2008|LIEXP +HS|587457||KF6HVP|12/11/2008|LIEXP +HS|587458||KF6HVQ|12/11/2008|LIEXP +HS|587459||KF6HVR|12/11/2008|LIEXP +HS|587460||KF6HVS|12/11/2008|LIEXP +HS|587461||KF6HVT|12/11/2008|LIEXP +HS|587462||KF6HVU|12/11/2008|LIEXP +HS|587463||KF6HVV|12/11/2008|LIEXP +HS|587465||KF6HVX|12/11/2008|LIEXP +HS|587470||KF6HWC|12/11/2008|LIEXP +HS|587471||KF6HWD|12/11/2008|LIEXP +HS|587472||KF6HWE|12/11/2008|LIEXP +HS|588652||KF6JTV|12/10/2008|ESCFRN +HS|588652||KF6JTV|12/11/2008|LIREN +HS|590095||KF6MBZ|12/11/2008|LIREN +HS|590095||KF6MBZ|12/11/2008|LTSFRN +HS|594997||KF6UDK|12/11/2008|LIREN +HS|595022||KF6UEK|12/11/2008|LIREN +HS|595022||KF6UEK|12/11/2008|LTSFRN +HS|599444||KG3E|10/23/2008|ESCFRN +HS|599444||KG3E|12/11/2008|LIREN +HS|599781||KG4AOG|09/20/2000|LIAUA +HS|599781||KG4AOG|12/11/2008|LIAUA +HS|599781||KG4AOG|07/29/2004|LIAUA +HS|599781||KG4AOG|09/06/2006|LIAUA +HS|600501||KG4BTT|02/05/2000|LIMOD +HS|600501||KG4BTT|12/11/2008|LIREN +HS|605481||KH6FT|12/11/2008|LIAUA +HS|605481||KH6FT|06/03/2007|ESCFRN +HS|611769||KK4IJ|12/11/2008|LIEXP +HS|613529||KK7N|05/14/2002|LIREN +HS|613529||KK7N|12/11/2008|LIAUA +HS|614326||KL7BB|08/25/2001|LIAUA +HS|614326||KL7BB|08/25/2001|LIAUA +HS|614326||KL7BB|08/31/2001|LIREN +HS|614326||KL7BB|11/09/2001|LIMOD +HS|614326||KL7BB|12/11/2008|LIAUA +HS|614326||KL7BB|06/19/2007|LIAUA +HS|618304||KN9M|12/11/2008|LIEXP +HS|623605||KT3B|12/11/2008|LIREN +HS|623605||KT3B|10/27/2007|ESCFRN +HS|623605||KT3B|10/30/2007|LIAUA +HS|629804||N0HYE|12/11/2008|LIREN +HS|629804||N0HYE|12/11/2008|LTSFRN +HS|630838||N0JVA|12/10/2008|ESCFRN +HS|630838||N0JVA|12/11/2008|LIREN +HS|631123||N0KHX|12/11/2008|LIREN +HS|631123||N0KHX|12/11/2008|LTSFRN +HS|631610||N0LE|05/25/2004|LIAUA +HS|631610||N0LE|12/11/2008|LIREN +HS|635115||N0QZV|01/08/2002|LIREN +HS|635115||N0QZV|12/11/2008|LIAUA +HS|635115||N0QZV|01/09/2007|LIAUA +HS|635115||N0QZV|03/16/2007|LIMOD +HS|637013||N0TXR|09/24/2002|LITIN +HS|637013||N0TXR|09/24/2002|LIREN +HS|637013||N0TXR|12/11/2008|LIAUA +HS|641568||N1BUV|12/11/2008|LIEXP +HS|642738||N1EOL|12/11/2008|LIEXP +HS|642786||N1ERN|12/11/2008|LIEXP +HS|646363||N1LEF|12/11/2001|LIREN +HS|646363||N1LEF|12/11/2008|LIAUA +HS|657005||N2DOV|12/11/2008|LIEXP +HS|659369||N2ISI|12/11/2008|LIREN +HS|659369||N2ISI|12/11/2008|LTSFRN +HS|665074||N2SIL|06/20/2002|LIREN +HS|665074||N2SIL|06/27/2002|LIMOD +HS|665074||N2SIL|12/11/2008|LIAUA +HS|673196||N3GZK|12/11/2003|LIMOD +HS|673196||N3GZK|12/11/2008|LIREN +HS|682929||N3WVX|12/11/2008|LIAUA +HS|682929||N3WVX|02/19/2005|LIREN +HS|682929||N3WVX|02/21/2005|LTSFRN +HS|682929||N3WVX|03/24/2005|LIAUA +HS|682929||N3WVX|02/21/2007|LIAUA +HS|683923||N3YKU|12/11/2008|LIEXP +HS|686638||N4DXJ|12/08/2008|LITIN +HS|686638||N4DXJ|12/11/2008|LIREN +HS|687762||N4GQL|12/11/2008|LIEXP +HS|692014||N4PPZ|12/11/2008|LIEXP +HS|694577||N4UHT|12/11/2008|LIREN +HS|694577||N4UHT|04/24/2007|LIAUA +HS|694577||N4UHT|04/24/2007|LTSFRN +HS|700907||N5HMH|12/11/2008|LIREN +HS|700907||N5HMH|03/07/2007|LITIN +HS|700907||N5HMH|03/07/2007|LIMOD +HS|702102||N5KHN|12/11/2008|LIEXP +HS|703704||N5NFS|09/19/2000|LIMOD +HS|703704||N5NFS|12/11/2008|LIREN +HS|703706||N5NFU|12/11/2008|LIREN +HS|703706||N5NFU|09/11/2008|ESCFRN +HS|712731||N6DDU|08/27/1999|LIMOD +HS|712731||N6DDU|09/21/1999|LIMOD +HS|712731||N6DDU|11/17/1999|LIMOD +HS|712731||N6DDU|12/11/2008|LIREN +HS|714435||N6HPC|12/11/2008|LIREN +HS|714435||N6HPC|12/28/2006|ESCFRN +HS|714435||N6HPC|12/29/2006|LIAUA +HS|714580||N6HXW|12/11/2008|LIEXP +HS|717931||N6PAK|12/11/2008|LIEXP +HS|725226||N7CK|12/11/2008|LIREN +HS|725226||N7CK|08/19/2004|LIAUA +HS|727200||N7GVV|01/15/2002|LIMOD +HS|727200||N7GVV|12/02/2008|LIREN +HS|727200||N7GVV|12/11/2008|LIAUA +HS|727200||N7GVV|12/23/2004|LIAUA +HS|727200||N7GVV|03/11/2008|LIAUA +HS|727200||N7GVV|04/10/2008|LIMOD +HS|727973||N7INI|12/11/2008|LIEXP +HS|729873||N7LZJ|12/11/2008|LIREN +HS|729873||N7LZJ|04/24/2007|LIAUA +HS|729873||N7LZJ|04/24/2007|LTSFRN +HS|742603||N8JCE|11/05/2003|LITIN +HS|742603||N8JCE|11/05/2003|LIAUA +HS|742603||N8JCE|12/11/2008|LIREN +HS|751563||N8XTO|12/10/2008|ESCFRN +HS|751563||N8XTO|12/11/2008|LIREN +HS|753976||N9CLZ|12/11/2008|LIEXP +HS|754128||N9CVW|12/11/2008|LIEXP +HS|754248||N9DDB|12/11/2008|LIEXP +HS|755783||N9GQG|12/11/2008|LIREN +HS|755783||N9GQG|03/21/2006|LIAUA +HS|756785||N9ILL|12/11/2008|LIREN +HS|769358||NH0K|12/11/2008|LIREN +HS|769358||NH0K|03/09/2007|ESCFRN +HS|769358||NH0K|04/17/2007|LIAUA +HS|769358||NH0K|05/30/2007|LIAUA +HS|769358||NH0K|03/29/2008|LIAUA +HS|770321||NJ6K|12/11/2008|LIEXP +HS|771865||NO8DX|12/11/2008|LIREN +HS|771865||NO8DX|12/11/2008|LTSFRN +HS|772354||NP3II|12/11/2008|LIEXP +HS|772355||NP3IK|12/11/2008|LIEXP +HS|773403||NQ9W|12/11/2008|LIEXP +HS|775423||NZ7O|12/11/2008|LIEXP +HS|775939||W0CBV|12/11/2008|LIEXP +HS|776884||W0GNZ|12/11/2008|LIEXP +HS|779278||W0RCA|01/29/2000|LIMOD +HS|779278||W0RCA|12/11/2008|LIREN +HS|779278||W0RCA|03/20/2007|LIMOD +HS|779344||W0RHB|12/11/2008|LIEXP +HS|781948||W1FUW|12/11/2008|LIEXP +HS|783828||W1PHM|12/08/2008|LITIN +HS|783828||W1PHM|12/11/2008|LIREN +HS|784715||W1UPA|12/11/2008|LIEXP +HS|785871||W2CCS|12/11/2008|LIEXP +HS|787537||W2ISN|12/09/2008|LITIN +HS|787537||W2ISN|12/11/2008|LIREN +HS|789088||W2QZK|12/11/2008|LIEXP +HS|790690||W3BSA|12/11/2008|LIREN +HS|792127||W3ICB|12/11/2008|LIAUA +HS|792127||W3ICB|06/07/2008|ESCFRN +HS|792127||W3ICB|06/10/2008|LIREN +HS|792619||W3KHW|12/11/2008|LIREN +HS|793653||W3ROC|12/06/2008|LTSFRN +HS|793653||W3ROC|12/11/2008|LIAUA +HS|794977||W4ANB|08/27/2003|LIAUA +HS|794977||W4ANB|12/11/2008|LIREN +HS|795731||W4DAI|05/31/2000|LIMOD +HS|795731||W4DAI|12/11/2008|LIREN +HS|795731||W4DAI|04/05/2006|LIAUA +HS|796495||W4FPT|04/24/2002|LIAUA +HS|796495||W4FPT|12/19/2003|LIAUA +HS|796495||W4FPT|12/11/2008|LIREN +HS|796495||W4FPT|11/14/2006|LIAUA +HS|796495||W4FPT|08/03/2007|LIAUA +HS|796912||W4HAO|12/11/2008|LIEXP +HS|797426||W4JAD|08/27/1999|LIMOD +HS|797426||W4JAD|12/11/2008|LIREN +HS|798177||W4LNS|04/25/2000|LIMOD +HS|798177||W4LNS|12/11/2008|LIREN +HS|803060||W5DEI|09/13/2000|LIAUA +HS|803060||W5DEI|09/23/2002|LIAUA +HS|803060||W5DEI|12/11/2008|LIREN +HS|804458||W5JLB|12/09/2008|LITIN +HS|804458||W5JLB|12/11/2008|LIREN +HS|805137||W5MLC|12/11/2008|LIEXP +HS|805456||W5NYR|12/11/2008|LIEXP +HS|806148||W5RAB|06/20/2000|LIMOD +HS|806148||W5RAB|12/11/2008|LIREN +HS|806865||W5TJV|12/11/2008|LIEXP +HS|808542||W6BAY|12/08/2008|LITIN +HS|808542||W6BAY|12/11/2008|LIREN +HS|810209||W6HHS|12/11/2008|LIEXP +HS|811222||W6KTL|12/11/2008|LIEXP +HS|811950||W6NEN|12/11/2008|LIEXP +HS|811953||W6NEV|06/20/2000|LIMOD +HS|812298||W6OHP|12/11/2008|LIEXP +HS|813067||W6RCG|02/23/2000|LIMOD +HS|813067||W6RCG|05/31/2000|LIMOD +HS|813067||W6RCG|12/11/2008|LIREN +HS|813649||W6SQB|12/11/2008|LIEXP +HS|819618||W7SFE|12/10/2008|ESCFRN +HS|819618||W7SFE|12/11/2008|LIREN +HS|819820||W7TKO|12/11/2008|LIEXP +HS|820528||W7ZIR|12/09/2008|LITIN +HS|820528||W7ZIR|12/11/2008|LIREN +HS|821406||W8DFM|12/11/2008|LIREN +HS|821510||W8DRD|12/11/2008|LIEXP +HS|821700||W8EOG|12/11/2008|LIREN +HS|821950||W8FRH|12/11/2008|LIEXP +HS|824512||W8RAY|05/05/2000|LIMOD +HS|824512||W8RAY|03/04/2004|LIAUA +HS|824512||W8RAY|12/11/2008|LIREN +HS|825335||W8VLB|12/11/2008|LIEXP +HS|825509||W8WIL|05/25/2000|LIMOD +HS|825509||W8WIL|04/04/2002|LIMOD +HS|825509||W8WIL|12/11/2008|LIREN +HS|827100||W9FIS|12/11/2008|LIEXP +HS|827994||W9JVZ|12/10/2008|ESCFRN +HS|827994||W9JVZ|12/11/2008|LIREN +HS|828462||W9LXJ|12/11/2008|LIEXP +HS|829086||W9OCL|12/11/2008|LIEXP +HS|829333||W9PNR|12/11/2008|LIREN +HS|830330||W9WAY|12/11/2008|LIEXP +HS|833157||WA0URU|12/11/2008|LIEXP +HS|833703||WA1AFM|12/11/2008|LIEXP +HS|833866||WA1CFS|12/11/2008|LIAUA +HS|833866||WA1CFS|02/16/2006|LIAUA +HS|833866||WA1CFS|08/18/2006|LIREN +HS|839204||WA2ITP|12/10/2008|ESCFRN +HS|839204||WA2ITP|12/11/2008|LIREN +HS|845020||WA3SXP|12/11/2008|LIREN +HS|845020||WA3SXP|06/06/2008|ESCFRN +HS|845020||WA3SXP|06/07/2008|LIAUA +HS|850174||WA4PWS|12/11/2008|LIREN +HS|850174||WA4PWS|12/11/2008|LTSFRN +HS|850898||WA4SRO|12/11/2008|LIEXP +HS|852470||WA4ZIW|12/11/2008|LIEXP +HS|852840||WA5BUV|12/11/2008|LIEXP +HS|852952||WA5CVI|05/20/2003|LIREN +HS|852952||WA5CVI|12/11/2008|LIAUA +HS|858423||WA6LQR|12/11/2008|LIEXP +HS|860943||WA6VMD|11/24/2008|ESCFRN +HS|860943||WA6VMD|12/11/2008|LIREN +HS|861671||WA6ZXJ|12/11/2008|LIEXP +HS|862118||WA7ECW|12/11/2008|LIEXP +HS|863914||WA7TNE|12/11/2008|LIEXP +HS|864143||WA7VCS|10/17/2008|LTSFRN +HS|864143||WA7VCS|12/11/2008|LIREN +HS|867254||WA8VNW|12/11/2008|LIEXP +HS|870060||WA9USM|12/11/2008|LIEXP +HS|872097||WB0NHC|12/11/2008|LIEXP +HS|872901||WB0RXY|12/11/2008|LIEXP +HS|873600||WB0VEQ|08/28/2003|LIREN +HS|873600||WB0VEQ|12/11/2008|LIAUA +HS|875034||WB1DKS|12/11/2008|LIEXP +HS|876458||WB2CSQ|12/11/2008|LIEXP +HS|877904||WB2JIL|02/08/2002|LITIN +HS|877904||WB2JIL|02/08/2002|LIMOD +HS|877904||WB2JIL|12/11/2008|LIREN +HS|878258||WB2KYD|12/11/2008|LIEXP +HS|878751||WB2NDN|12/11/2008|LIREN +HS|878751||WB2NDN|12/11/2008|LTSFRN +HS|879516||WB2RHX|12/11/2008|LIREN +HS|879516||WB2RHX|12/11/2008|LTSFRN +HS|881051||WB3ACY|12/11/2008|LIEXP +HS|883502||WB4ACZ|12/11/2008|LIEXP +HS|884423||WB4EEK|12/11/2008|LIEXP +HS|885797||WB4KNW|12/11/2008|LIEXP +HS|887021||WB4QHV|12/11/2008|LIEXP +HS|887112||WB4RAF|12/11/2008|LIEXP +HS|887840||WB4UJK|12/11/2008|LIEXP +HS|887956||WB4UZY|12/11/2008|LIEXP +HS|889356||WB5DGM|08/01/2000|LIMOD +HS|889356||WB5DGM|12/11/2008|LIEXP +HS|892701||WB5WKW|04/30/2001|LITIN +HS|892701||WB5WKW|04/30/2001|LIMOD +HS|892701||WB5WKW|12/11/2008|LIEXP +HS|894096||WB6EJV|12/11/2008|LIREN +HS|894096||WB6EJV|02/19/2008|ESCFRN +HS|894096||WB6EJV|02/20/2008|LIAUA +HS|897053||WB6SMF|12/11/2008|LIEXP +HS|897111||WB6SSS|12/11/2008|LIEXP +HS|897667||WB6VGK|12/11/2008|LIEXP +HS|897698||WB6VIP|12/11/2008|LIEXP +HS|898762||WB7BTO|12/11/2008|LIEXP +HS|902307||WB8EQA|12/11/2008|LIEXP +HS|903146||WB8MMC|12/11/2008|LIEXP +HS|905223||WB9AOU|12/11/2008|LIREN +HS|905223||WB9AOU|10/24/2005|LIMOD +HS|906929||WB9OLF|12/11/2008|LIREN +HS|906929||WB9OLF|12/11/2008|LTSFRN +HS|907011||WB9PBY|12/11/2008|LIEXP +HS|907326||WB9RCV|12/11/2008|LIEXP +HS|909153||WC1W|12/11/2008|LIREN +HS|917856||WD6DGY|12/11/2008|LIEXP +HS|922312||WD9BJY|12/11/2008|LIEXP +HS|924319||WF6A|12/11/2008|LIREN +HS|929230||WN8RUG|12/11/2008|LIREN +HS|929230||WN8RUG|05/19/2005|LIMOD +HS|929531||WP2AAY|12/11/2008|LIEXP +HS|931044||WP4GOJ|12/11/2008|LIEXP +HS|935826||WR7HE|12/11/2008|LIREN +HS|935826||WR7HE|01/30/2008|ESCFRN +HS|935936||WS0Y|12/11/2008|LIREN +HS|935936||WS0Y|11/29/2006|ESCFRN +HS|936113||WS8J|12/11/2008|LIREN +HS|936281||WT4WT|12/14/2001|LITIN +HS|936281||WT4WT|12/14/2001|LIMOD +HS|936281||WT4WT|12/11/2008|LIREN +HS|936281||WT4WT|08/17/2005|LIAUA +HS|1060511||N4MC|10/26/1999|LIISS +HS|1060511||N4MC|04/03/2001|LIAUA +HS|1060511||N4MC|12/11/2008|LIAUA +HS|1060511||N4MC|02/01/2005|LIAUA +HS|1060511||N4MC|08/09/2005|LIAUA +HS|1060511||N4MC|10/17/2006|LIAUA +HS|1060511||N4MC|07/07/2007|LIAUA +HS|1099396||K9HFX|09/06/2000|LIISS +HS|1099396||K9HFX|09/15/2001|LIAUA +HS|1099396||K9HFX|04/28/2004|LIAUA +HS|1099396||K9HFX|12/11/2008|LIAUA +HS|1099396||K9HFX|03/19/2007|LIMOD +HS|1099396||K9HFX|05/13/2008|LIAUA +HS|1099396||K9HFX|08/15/2008|LIAUA +HS|1961873||W2RXR|04/24/2001|LIISS +HS|1961873||W2RXR|06/13/2006|LIAUA +HS|2381539||KG4RKR|02/06/2002|LIISS +HS|2381539||KG4RKR|02/16/2002|LIAUA +HS|2381539||KG4RKR|12/11/2008|LIAUA +HS|2381539||KG4RKR|03/07/2007|LIMOD +HS|2526101||KD5YDM|06/24/2003|LIISS +HS|2526101||KD5YDM|12/11/2008|LIAUA +HS|2526101||KD5YDM|05/23/2006|LIAUA +HS|2678199||KG6ILA|12/11/2008|LIAUA +HS|2678199||KG6ILA|12/11/2004|LIISS +HS|2678199||KG6ILA|12/11/2004|VANGRT +HS|2678199||KG6ILA|03/01/2006|LIMOD +HS|2691398||KG6YFS|12/11/2008|LIAUA +HS|2691398||KG6YFS|02/02/2005|SYSGRT +HS|2691398||KG6YFS|02/02/2005|LIISS +HS|2691398||KG6YFS|03/22/2005|LIAUA +HS|2691398||KG6YFS|09/07/2005|LIAUA +HS|2691398||KG6YFS|06/30/2006|LIAUA +HS|2691398||KG6YFS|12/22/2006|LIAUA +HS|2691398||KG6YFS|02/23/2007|LIMOD +HS|2691398||KG6YFS|04/10/2007|LIAUA +HS|2691398||KG6YFS|12/05/2007|LIAUA +HS|2691398||KG6YFS|04/17/2008|LIAUA +HS|2695604||KG6YME|12/11/2008|LIAUA +HS|2695604||KG6YME|02/18/2005|SYSGRT +HS|2695604||KG6YME|02/18/2005|LIISS +HS|2695604||KG6YME|09/16/2006|LIAUA +HS|2776571||KK4DXR|12/11/2008|LIAUA +HS|2776571||KK4DXR|01/10/2006|LIISS +HS|2776571||KK4DXR|01/10/2006|VANGRT +HS|2776571||KK4DXR|03/26/2007|LIMOD +HS|2860825||KL2CQ|12/11/2008|LIAUA +HS|2860825||KL2CQ|11/21/2006|SYSGRT +HS|2860825||KL2CQ|11/21/2006|LIISS +HS|2860825||KL2CQ|03/01/2007|LIMOD +HS|2860825||KL2CQ|02/12/2008|LIMOD +HS|2899374||N4PRT|12/11/2008|LIAUA +HS|2899374||N4PRT|04/07/2007|LIISS +HS|2899374||N4PRT|04/07/2007|VANGRT +HS|2906780||W4KCJ|12/11/2008|LIAUA +HS|2906780||W4KCJ|05/01/2007|LIISS +HS|2906780||W4KCJ|05/01/2007|VANGRT +HS|3019461||W4TLG|12/11/2008|LIMOD +HS|3019461||W4TLG|06/06/2008|LIISS +HS|3019461||W4TLG|06/06/2008|VANGRT +HS|3029934||K2AMW|12/11/2008|LIAUA +HS|3029934||K2AMW|07/18/2008|LIISS +HS|3029934||K2AMW|07/18/2008|VANGRT +HS|3035020||KE7VIF|12/08/2008|LIMOD +HS|3035020||KE7VIF|12/11/2008|LICAN +HS|3035020||KE7VIF|08/07/2008|SYSGRT +HS|3035020||KE7VIF|08/07/2008|LIISS +HS|3058519||KE5YES|11/19/2008|SYSGRT +HS|3058519||KE5YES|11/19/2008|LIISS +HS|3058519||KE5YES|12/11/2008|LIAUA +HS|3061635||KB1RNV|12/02/2008|SYSGRT +HS|3061635||KB1RNV|12/02/2008|LIISS +HS|3061635||KB1RNV|12/11/2008|LIAUA +HS|3063606||AD7XP|12/11/2008|LIISS +HS|3063606||AD7XP|12/11/2008|SYSGRT +HS|3063673||KJ4IIB|12/11/2008|SYSGRT +HS|3063673||KJ4IIB|12/11/2008|LIISS +AM|220803|||AB4NN|E|A|4||Y|||||||A| +AM|226923|||AG4FM|E|A|4||||||E|||A| +AM|229155|||K0CWD|E|C|5|||||||||A| +AM|229647|||K0FUN|E|C|10||||||E|||A| +AM|229897|||K0HCV|A|C|10||||||E||WA0PKF|| +AM|236367|||K2AFD|E|C|4|||||||||| +AM|239127|||K2SGA|G|C|8||||||A||WB8YUU|| +AM|241139|||K3HX|E|A|3||||||E||WA8MLV|| +AM|242121|||K3ORS|E|C|4||||||E||WA2CPY|| +AM|244553|||K4DET|E|C|4||||||E||N2KAU|P| +AM|244623|||K4DKS|G|C|4|||||||||| +AM|246073|||K4IED|G|C|4|||||||||| +AM|246553|||K4JND|A|C|4|||||||||| +AM|246563|||K4JNX|G|C|8|||||||||| +AM|246789|||K4KEK|G|C|4|||||||||| +AM|250780|||K5DBJ|G|C|5|||||||||| +AM|252865|||K5OYA|G|C|5|||||||||| +AM|255044|||K6CRO|G|C|4||||||E||KF6FBF|| +AM|257300|||K6OUW|A|C|6|||||||||| +AM|258191|||K6TAV|G|C|6||||||E||KD6CDY|P| +AM|258979|||K6YUQ|G|C|6|||||||||| +AM|259561|||K7CHX|E|C|7||||||A||N7MWQ|A| +AM|260332|||K7HWZ|G|C|7|||||||||| +AM|260714|||K7KIM|T|C|7||||||E||KC7MED|| +AM|261045|||K7MKT|G|C|7||||||E||KC7FTD|P| +AM|261856|||K7RPW|G|C|7|||||||||| +AM|261898|||K7RWJ|G|C|7||||||E||KA7ZTB|P| +AM|262114|||K7TAR|G|C|7|||||||||| +AM|262931|||K7ZIG|E|C|7|||||||||| +AM|263125|||K8ANS|P|C|8|||||||||| +AM|263800|||K8DTR|G|C|8||||||E||KC8LDS|P| +AM|264382|||K8IHF|G|C|8||||||E||KC8IHP|P| +AM|264461|||K8ISM|A|C|8|||||||||| +AM|264483|||K8IXB|E|C|8|||||||||A| +AM|265031|||K8MEG|E|C|8|||||||||A| +AM|265731|||K8QW|E|A|5||Y||||E||AE8L|| +AM|267187|||K9ACO|T|C|5||||||E||KB5RXU|| +AM|270217|||K9TJM|G|C|9|||||||||| +AM|273376|||KA0MNC|P|D|10|||||||||| +AM|273424|||KA0MTP|N|D|10|||||||||| +AM|278295|||KA1JNG|G|D|1|||||||||| +AM|287362|||KA2TBU|A|D|2|||||||||G| +AM|287830|||KA2VDP|N|D|4|||||||||| +AM|297863|||KA4NNR|G|D|4|||||||||| +AM|298166|||KA4PBT|N|D|4|||||||||| +AM|299534|||KA4WOO|G|D|4|||||||||| +AM|299579|||KA4WUR|G|D|4|||||||||P| +AM|300003|||KA4ZZH|P|D|4|||||||||| +AM|303456|||KA5SAD|G|D|5|||||||||T| +AM|306637|||KA6JXX|T|D|6|||||||||P| +AM|306676|||KA6KCZ|P|D|6|||||||||| +AM|307107|||KA6MXF|G|D|7|||||||||P| +AM|307828|||KA6REY|N|D|6|||||||||| +AM|308374|||KA6UCQ|P|D|6|||||||||| +AM|312049|||KA7NZE|N|D|7|||||||||| +AM|316016|||KA8INT|N|D|8|||||||||| +AM|316994|||KA8OBS|P|D|8|||||||||| +AM|317161|||KA8OWQ|N|D|8|||||||||| +AM|317311|||KA8PRY|N|D|8|||||||||| +AM|322126|||KA9NFJ|N|D|9|||||||||| +AM|324491|||KA9WLE|N|D|9|||||||||| +AM|324626|||KA9WWL|N|D|9|||||||||| +AM|333520|||KB0RFE|A|D|10|||||||||T| +AM|337850|||KB0ZCN|T|D|10|||||||||| +AM|337852|||KB0ZCP|T|D|10|||||||||| +AM|337855|||KB0ZCT|T|D|10|||||||||| +AM|337856|||KB0ZCU|T|D|10|||||||||| +AM|339393|||KB1CAU|||1|W1KI|||||||||IRWIN, WAYNE K +AM|342246|||KB2ECN|P|D|4|||||||||N| +AM|350846|||KB2VIQ|G|D|2|||||||||P| +AM|353891|||KB3BRG|||3|K3HR|||||||||Lambert, Ross H +AM|362220|||KB5AAU|G|D|5|||||||||T| +AM|365175|||KB5IWF|T|D|5|||||||||P| +AM|376866|||KB6PGZ|G|D|6|||||||||P| +AM|376877|||KB6PII|P|D|6|||||||||| +AM|377105|||KB6QGN|N|D|6|||||||||| +AM|380434|||KB7ATI|N|D|7|||||||||| +AM|382636|||KB7GYC|T|D|7|||||||||N| +AM|384367|||KB7LJP|E|D|7|||||||||A| +AM|385407|||KB7NUO|G|D|7|||||||||T| +AM|392343|||KB8AUC|N|D|8|||||||||| +AM|392344|||KB8AUD|N|D|8|||||||||| +AM|394302|||KB8FZI|T|D|8|||||||||P| +AM|394328|||KB8GAQ|P|D|8|||||||||| +AM|404506|||KB9AGW|G|D|9|||||||||N| +AM|412286|||KB9PCN|T|D|9|||||||||| +AM|415121|||KB9TSW|T|D|10|||||||||| +AM|415142|||KB9TTR|T|D|9|||||||||| +AM|415245|||KB9TXW|T|D|9|||||||||| +AM|415287|||KB9TZQ|G|D|9|||||||||T| +AM|415383|||KB9UDN|G|D|9|||||||||P| +AM|419011|||KC0EQY|T|D|10|||||||||| +AM|419242|||KC0FAX|T|D|10|||||||||| +AM|420234|||KC0QN|A|B|10|||||||||| +AM|421094|||KC2AKM|T|D|2|||||||||| +AM|423715|||KC2ETF|T|D|2|||||||||| +AM|425779|||KC4CJX|N|D|4|||||||||| +AM|429298|||KC4KGF|N|D|7|||||||||| +AM|446803|||KC5QNJ|G|D|5|||||||||P| +AM|450880|||KC5YFG|||5|KE5AFC|||||||||GEORGE, JOSH J +AM|450881|||KC5YFI|P|D|5|||||||||| +AM|450883|||KC5YFK|T|D|5|||||||||| +AM|450886|||KC5YFN|T|D|5|||||||||| +AM|450887|||KC5YFO|T|D|5|||||||||| +AM|453515|||KC6EBR|T|D|7|||||||||P| +AM|455390|||KC6ITW|E|D|6|||||||||G| +AM|476344|||KC7TPC|||7|AB7RK|||||||||EVANS, GARY P +AM|476347|||KC7TPG|T|D|7|||||||||| +AM|476348|||KC7TPI|G|D|7||||||||KA7GYA|| +AM|482958|||KC8FBP|T|D|8|||||||||| +AM|487076|||KC8LSR|T|D|8|||||||||| +AM|487152|||KC8LVR|T|D|8|||||||||| +AM|488415|||KC9TL|A|B|9|||||||||| +AM|488435|||KC9UMR|E|D|10||||||E||KB9SBF|G| +AM|503538|||KD4WES|T|D|4|||||||||| +AM|507076|||KD5CYI|T|D|5|||||||||| +AM|507157|||KD5DCB|T|D|7|||||||||| +AM|509291|||KD5GOB|E|D|7|||||||||G| +AM|509344|||KD5GQD|T|D|5|||||||||| +AM|528429|||KD7DWK|T|D|7|||||||||| +AM|541650|||KE4OE|A|B|4|||||||||| +AM|565448|||KE9GY|E|B|9|||||||||| +AM|575326|||KF4NTS|T|D|4|||||||||| +AM|575327|||KF4NTT|T|D|4|||||||||| +AM|575328|||KF4NTU|T|D|4|||||||||| +AM|575333|||KF4NTZ|T|D|4|||||||||| +AM|575335|||KF4NUA|T|D|4|||||||||| +AM|575336|||KF4NUC|N|D|4|||||||||| +AM|575338|||KF4NUE|T|D|3|||||||||| +AM|575342|||KF4NUI|T|D|4|||||||||| +AM|575345|||KF4NUM|T|D|4|||||||||| +AM|587439|||KF6HUY|T|D|6|||||||||| +AM|587443|||KF6HVB|T|D|6|||||||||| +AM|587444|||KF6HVC|T|D|6|||||||||| +AM|587445|||KF6HVD|G|D|6|||||||||T| +AM|587448|||KF6HVG|T|D|6|||||||||| +AM|587449|||KF6HVH|G|D|6|||||||||T| +AM|587451|||KF6HVJ|G|D|6|||||||||P| +AM|587453|||KF6HVL|T|D|6|||||||||| +AM|587457|||KF6HVP|T|D|6|||||||||| +AM|587458|||KF6HVQ|P|D|6|||||||||T| +AM|587459|||KF6HVR|T|D|6|||||||||| +AM|587460|||KF6HVS|T|D|6|||||||||| +AM|587461|||KF6HVT|T|D|6|||||||||| +AM|587462|||KF6HVU|T|D|6|||||||||| +AM|587463|||KF6HVV|T|D|6|||||||||| +AM|587465|||KF6HVX|P|D|6|||||||||| +AM|587470|||KF6HWC|T|D|6|||||||||| +AM|587471|||KF6HWD|T|D|6|||||||||| +AM|587472|||KF6HWE|T|D|6|||||||||| +AM|588652|||KF6JTV|T|D|6|||||||||| +AM|590095|||KF6MBZ|T|D|6|||||||||P| +AM|594997|||KF6UDK|T|D|6|||||||||| +AM|595022|||KF6UEK|A|D|6|||||||||G| +AM|599444|||KG3E|E|A|3|||||||||| +AM|599781|||KG4AOG|G|D|4||||||||KE4TDA|T| +AM|600501|||KG4BTT|T|D|4|||||||||P| +AM|605481|||KH6FT|A|C|13||||||E||AH6FT|| +AM|611769|||KK4IJ|A|B|4|||||||||| +AM|613529|||KK7N|E|A|7||||||||NN4T|| +AM|614326|||KL7BB|E|C|7|||||||||| +AM|618304|||KN9M|E|A|9|||||||||| +AM|623605|||KT3B|E|A|7|||||||||| +AM|629804|||N0HYE|T|C|7|||||||||P| +AM|630838|||N0JVA|T|C|10|||||||||P| +AM|631123|||N0KHX|T|C|10|||||||||P| +AM|631610|||N0LE|E|A|10||||||E||KB9EN|A| +AM|635115|||N0QZV|G|C|10|||||||||T| +AM|637013|||N0TXR|T|C|10|||||||||| +AM|641568|||N1BUV|G|C|1|||||||||| +AM|642738|||N1EOL|G|C|1|||||||||| +AM|642786|||N1ERN|G|C|1|||||||||| +AM|646363|||N1LEF|T|C|1||||||||KA1YGP|P| +AM|657005|||N2DOV|G|C|2|||||||||| +AM|659369|||N2ISI|E|C|2|||||||||| +AM|665074|||N2SIL|T|C|2||||||||KB2PDZ|P| +AM|673196|||N3GZK|T|C|3|||||||||P| +AM|682929|||N3WVX|T|C|5|||||||||P| +AM|683923|||N3YKU|P|C|3|||||||||T| +AM|686638|||N4DXJ|T|C|4||||||E||KD4AUL|| +AM|687762|||N4GQL|P|C|4|||||||||| +AM|692014|||N4PPZ|G|C|4|||||||||| +AM|694577|||N4UHT|T|C|7|||||||||P| +AM|700907|||N5HMH|G|C|5||||||E||KB5VXZ|T| +AM|702102|||N5KHN|P|C|5|||||||||| +AM|703704|||N5NFS|G|C|5|||||||||P| +AM|703706|||N5NFU|T|C|5|||||||||P| +AM|712731|||N6DDU|E|C|7||||||E|||G| +AM|714435|||N6HPC|G|C|6|||||||||T| +AM|714580|||N6HXW|P|C|6|||||||||| +AM|717931|||N6PAK|P|C|6|||||||||| +AM|725226|||N7CK|E|A|7||Y|||||||| +AM|727200|||N7GVV|E|C|9|||||||||A| +AM|727973|||N7INI|P|C|7|||||||||| +AM|729873|||N7LZJ|T|C|7|||||||||P| +AM|742603|||N8JCE|G|C|11|||||||||| +AM|751563|||N8XTO|T|C|8||||||E|||P| +AM|753976|||N9CLZ|A|C|9|||||||||G| +AM|754128|||N9CVW|P|C|9|||||||||| +AM|754248|||N9DDB|G|C|9|||||||||| +AM|755783|||N9GQG|G|C|9|||||||||| +AM|756785|||N9ILL|T|C|9|||||||||P| +AM|769358|||NH0K|E|A|13|||||||||| +AM|770321|||NJ6K|E|A|6|||||||||| +AM|771865|||NO8DX|||8|N8DJX|||||F||KC8FTB||Bacik, Bruce M +AM|772354|||NP3II|T|C|12|||||||||| +AM|772355|||NP3IK|T|C|12|||||||||| +AM|773403|||NQ9W|E|A|9|||||||||| +AM|775423|||NZ7O|E|A|7|||||||||| +AM|775939|||W0CBV|A|C|10|||||||||| +AM|776884|||W0GNZ|G|C|10|||||||||| +AM|779278|||W0RCA|E|C|10||||||E||N0NZO|T| +AM|779344|||W0RHB|P|C|10||||||B||N0UTF|| +AM|781948|||W1FUW|G|C|1|||||||||| +AM|783828|||W1PHM|E|C|1||||||E||N1RZK|A| +AM|784715|||W1UPA|G|C|1|||||||||| +AM|785871|||W2CCS|A|C|4|||||||||| +AM|787537|||W2ISN|G|C|2||||||E||N2KJA|T| +AM|789088|||W2QZK|A|C|2|||||||||| +AM|790690|||W3BSA|||4|K4BSA|||||F||KF4CNF||PULAS JR, DEMETRIOS G +AM|792127|||W3ICB|E|C|3|||||||||| +AM|792619|||W3KHW|T|C|10||||||B|||| +AM|793653|||W3ROC|A|C|3||||||A||KE3LC|| +AM|794977|||W4ANB|T|C|4||||||E||KE4ANS|| +AM|795731|||W4DAI|E|C|4||||||E||KF4BQR|A| +AM|796495|||W4FPT|T|C|4||||||E||WA4WIF|P| +AM|796912|||W4HAO|G|C|4|||||||||| +AM|797426|||W4JAD|G|C|4||||||E||KF4JOC|P| +AM|798177|||W4LNS|G|C|4||||||E||KF4MPV|P| +AM|803060|||W5DEI|G|C|10||||||E||N5HVU|T| +AM|804458|||W5JLB|T|C|5||||||E||KC5FYW|| +AM|805137|||W5MLC|A|C|5|||||||||| +AM|805456|||W5NYR|A|C|5|||||||||| +AM|806148|||W5RAB|E|C|5||Y||||E||KD5QD|A| +AM|806865|||W5TJV|A|C|5|||||||||| +AM|808542|||W6BAY|||6|W6TS|||||F||KF6ULU||JARCHOW, MICHAEL A +AM|810209|||W6HHS|G|C|6|||||||||| +AM|811222|||W6KTL|G|C|6|||||||||| +AM|811950|||W6NEN|N|C|7||||||A||KA6VKY|| +AM|811953|||W6NEV|E|C|6||||||A||KF6KKJ|A| +AM|812298|||W6OHP|G|C|6|||||||||| +AM|813067|||W6RCG|G|C|6||||||E||KF6RCG|P| +AM|813649|||W6SQB|P|C|6|||||||||| +AM|819618|||W7SFE|T|C|6||||||E||KF6URJ|| +AM|819820|||W7TKO|G|C|7||||||A||KC7JIY|| +AM|820528|||W7ZIR|E|C|7||||||A||AA7BW|G| +AM|821406|||W8DFM|T|C|8||||||E||N8SXC|P| +AM|821510|||W8DRD|A|C|4|||||||||| +AM|821700|||W8EOG|E|C|8|||||||||A| +AM|821950|||W8FRH|A|C|8|||||||||| +AM|824512|||W8RAY|G|C|8||||||E||WA8BQW|P| +AM|825335|||W8VLB|E|C|8|||||||||| +AM|825509|||W8WIL|E|C|8||||||E||KC8DQR|G| +AM|827100|||W9FIS|A|C|9|||||||||G| +AM|827994|||W9JVZ|G|C|9|||||||||| +AM|828462|||W9LXJ|G|C|9|||||||||| +AM|829086|||W9OCL|G|C|9|||||||||| +AM|829333|||W9PNR|G|C|4|||||||||| +AM|830330|||W9WAY|A|C|9|||||||||| +AM|833157|||WA0URU|N|D|10|||||||||| +AM|833703|||WA1AFM|G|D|1|||||||||| +AM|833866|||WA1CFS|G|D|1||Y||||B||N1REU|P| +AM|839204|||WA2ITP|T|D|3|||||||||P| +AM|845020|||WA3SXP|A|D|6|||||||||| +AM|850174|||WA4PWS|T|D|4|||||||||P| +AM|850898|||WA4SRO|G|D|4|||||||||| +AM|852470|||WA4ZIW|G|D|4|||||||||| +AM|852840|||WA5BUV|||5|WB5SHT|||||D||KC5TEM||SHERMAN, DON M +AM|852952|||WA5CVI|E|D|5|||||||||| +AM|858423|||WA6LQR|P|D|6|||||||||| +AM|860943|||WA6VMD|G|D|6|||||||||| +AM|861671|||WA6ZXJ|G|D|6|||||||||| +AM|862118|||WA7ECW|G|D|7|||||||||| +AM|863914|||WA7TNE|A|D|7|||||||||| +AM|864143|||WA7VCS|G|D|7|||||||||| +AM|867254|||WA8VNW|G|D|8|||||||||| +AM|870060|||WA9USM|A|D|4|||||||||| +AM|872097|||WB0NHC|A|D|10|||||||||| +AM|872901|||WB0RXY|G|D|10|||||||||| +AM|873600|||WB0VEQ|G|D|7|||||||||| +AM|875034|||WB1DKS|G|D|1|||||||||| +AM|876458|||WB2CSQ|G|D|2|||||||||| +AM|877904|||WB2JIL|E|D|2|||||||||P| +AM|878258|||WB2KYD|P|D|7|||||||||| +AM|878751|||WB2NDN|G|D|10|||||||||| +AM|879516|||WB2RHX|G|D|4|||||||||| +AM|881051|||WB3ACY|G|D|3|||||||||| +AM|883502|||WB4ACZ|A|D|4|||||||||| +AM|884423|||WB4EEK|G|D|4|||||||||| +AM|885797|||WB4KNW|G|D|4|||||||||| +AM|887021|||WB4QHV|P|D|4|||||||||| +AM|887112|||WB4RAF|P|D|4|||||||||| +AM|887840|||WB4UJK|A|D|4|||||||||| +AM|887956|||WB4UZY|P|D|4|||||||||| +AM|889356|||WB5DGM|G|D|5|||||||||P| +AM|892701|||WB5WKW|G|D|5|||||||||P| +AM|894096|||WB6EJV|A|D|7|||||||||| +AM|897053|||WB6SMF|P|D|6|||||||||| +AM|897111|||WB6SSS|A|D|6|||||||||| +AM|897667|||WB6VGK|G|D|6|||||||||| +AM|897698|||WB6VIP|G|D|6|||||||||| +AM|898762|||WB7BTO|A|D|7|||||||||| +AM|902307|||WB8EQA|G|D|8|||||||||| +AM|903146|||WB8MMC|P|D|8|||||||||| +AM|905223|||WB9AOU|T|D|9||||||E||KB9PJE|| +AM|906929|||WB9OLF|G|D|9|||||||||| +AM|907011|||WB9PBY|A|D|9|||||||||| +AM|907326|||WB9RCV|A|D|9|||||||||| +AM|909153|||WC1W|E|A|1||||||E||KD1ZS|A| +AM|917856|||WD6DGY|G|D|6|||||||||| +AM|922312|||WD9BJY|P|D|9|||||||||| +AM|924319|||WF6A|E|A|6||||||E||N3FU|A| +AM|929230|||WN8RUG|G|D|8||||||E||KC8KWA|T| +AM|929531|||WP2AAY|P|D|12|||||||||N| +AM|931044|||WP4GOJ|N|D|12|||||||||| +AM|935826|||WR7HE|||7|K7PAG|||||F||KD7DJP||ENTZ, HERMAN J +AM|935936|||WS0Y|E|A|10|||||||||| +AM|936113|||WS8J|E|A|8|||||||||| +AM|936281|||WT4WT|E|B|4||||||E||KF4EJN|A| +AM|1060511|||N4MC|E|A|4||||||E||AA4BP|| +AM|1099396|||K9HFX|G|C|4||||||E||KC0HFX|T| +AM|1961873|||W2RXR|G|C|2||||||E||N2EIY|P| +AM|2381539|||KG4RKR|G|D|4|||||||||T| +AM|2526101|||KD5YDM|T|D|5|||||||||| +AM|2678199|||KG6ILA|G|D|7||||||A||W6PST|T| +AM|2691398|||KG6YFS|G|D|6|||||||||T| +AM|2695604|||KG6YME|T|D|6|||||||||| +AM|2776571|||KK4DXR|G|D|4||||||E||KI4MBW|T| +AM|2860825|||KL2CQ|E|C|11|||||||||G| +AM|2899374|||N4PRT|G|C|4||||||E||KI4UMG|| +AM|2906780|||W4KCJ|E|C|5||||||E||KG4SIY|T| +AM|3019461|||W4TLG|G|C|4||||||E||KJ4EAX|T| +AM|3029934|||K2AMW|T|C|2||||||E||KC2TPN|| +AM|3035020|||KE7VIF|E|D|7|||||||||G| +AM|3058519|||KE5YES|T|D|5|||||||||| +AM|3061635|||KB1RNV|T|D|1|||||||||| +AM|3063606|||AD7XP|E|A|7||||||||KE7VIF|G| +AM|3063673|||KJ4IIB|T|D|4|||||||||| +SC|306637|KA6JXX|P|999|| +SC|365175|KB5IWF|P|999|| +SC|394302|KB8FZI|P|999|| +SC|453515|KC6EBR|P|999|| +SC|590095|KF6MBZ|P|999|| +SC|600501|KG4BTT|P|999|| +SC|629804|N0HYE|P|999|| +SC|630838|N0JVA|P|999|| +SC|631123|N0KHX|P|999|| +SC|646363|N1LEF|P|999|| +SC|665074|N2SIL|P|999|| +SC|673196|N3GZK|P|999|| +SC|682929|N3WVX|P|999|| +SC|694577|N4UHT|P|999|| +SC|703706|N5NFU|P|999|| +SC|729873|N7LZJ|P|999|| +SC|751563|N8XTO|P|999|| +SC|756785|N9ILL|P|999|| +SC|796495|W4FPT|P|999|| +SC|821406|W8DFM|P|999|| +SC|839204|WA2ITP|P|999|| +SC|850174|WA4PWS|P|999|| +CO|3035020||KE7VIF|12/11/2008|Issued new systematic call sign.|| diff --git a/office/regression/000_000123.html b/office/regression/000_000123.html new file mode 100644 index 0000000..16de1eb --- /dev/null +++ b/office/regression/000_000123.html @@ -0,0 +1,618 @@ + + + + + + + + + + + + + + + + + MedlinePlus Herbs and Supplements: + + Pycnogenol® (Pinus pinaster ssp. atlantica) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Skip navigation +
MedlinePlus Trusted Health Information for YouU.S. National Library of MedicineNational Institutes of Health
+
+ + +
+ + + + +
+ +
+
+ Contact Us + FAQs + Site Map + About MedlinePlus + +
+
+
+ español + Home + Health Topics + Drugs & Supplements + Medical Encyclopedia + Dictionary + News + Directories + Other Resources +
+
+ +
+ + + + + + + + + + + + + +
+
+ Other herb and supplement names:  + + A  + B  + C  + D  + E  + F  + G  + H  + I  + J  + K  + L  + M  + N  + O  + P  + Q  + R  + S  + T  + U  + V  + W  + X  + Y  + Z  +
+ +

Pycnogenol® (Pinus pinaster ssp. atlantica)

+ + + + + +
Printer-friendly versionE-mail this page to a friend
+

+
+ + + + +
+ + + + + + + +
Contents of this page: +
 
+ +
+

+
+

+
+ + + + + + + +
Pycnogenol®
Pycnogenol®
+
+

+ +

BackgroundReturn to top +

+

+
+Pycnogenol® is the patented trade name for a water extract of the bark of the French maritime pine ( Pinus pinaster  ssp.  atlantica ), which is grown in coastal southwest France. Pycnogenol® contains oligomeric proanthocyanidins (OPCs) as well as several other bioflavonoids: catechin, epicatechin, phenolic fruit acids (such as ferulic acid and caffeic acid), and taxifolin. Procyanidins are oligometric catechins found at high concentrations in red wine, grapes, cocoa, cranberries, apples, and some supplements such as Pycnogenol®. +
+

+
+There has been some confusion in the U.S. market regarding OPC products containing Pycnogenol® or grape seed extract (GSE) because one of the generic terms for chemical constituents ("pycnogenols") is the same as the patented trade name (Pycnogenol®). Some GSE products were formerly erroneously labeled and marketed in the U.S. as containing "pycnogenols." Although GSE and Pycnogenol® do contain similar chemical constituents (primarily in the OPC fraction), the chemical, pharmacological, and clinical literature on the two products are distinct. The term Pycnogenol® should therefore only be used to refer to the specific proprietary pine bark extract. Scientific literature regarding this product should not be referenced as a basis for the safety or effectiveness of GSE. +
+

+

+ +

SynonymsReturn to top +

+

+
+Cocklebut, condensed tannins, Evelle® (vitamins C and E, carotenoids, selenium, zinc, amino acids, glycosaminoglycans, blueberry extract, Pycnogenol®), French maritime pine bark extract, French  Pinus  maritime bark, grape marc extract, leucoanthocyanidins,  Pinus pinaster ,  Pinus maritima , oligomeric proanthocyanidin complexes (OPCs), Pinaceae (family), proanthocyanidins, PYC, pygenol, stickwort, Zinopin® (Pycnogenol® and Standardized Ginger Root Extract (SGRE)). +
+

+

+ +

EvidenceReturn to top +

+

+

+These uses have been tested in humans or animals. Safety and effectiveness have not always been proven. Some of these conditions are potentially serious, and should be evaluated by a qualified healthcare provider. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Uses based on scientific evidenceGrade*
Asthma +

+Pycnogenol® may offer clinical benefit to both children and adults with asthma. Additional study is needed before a strong recommendation can be made. +
B
Chronic venous insufficiency +

+Chronic venous insufficiency (CVI) is a syndrome that includes leg swelling, varicose veins, pain, itching, skin changes, and skin ulcers. The term is more commonly used in Europe than in the United States. Pycnogenol® used in people with chronic venous insufficiency is reported to reduce edema and pain. Pycnogenol® may also be used in the management of other CVI symptoms. +
B
Antioxidant +

+Due to conflicting study results, it is unclear if Pycnogenol® has significant antioxidant effects in humans. Further research is necessary. +
C
Attention deficient hyperactivity disorder (ADHD) +

+Pycnogenol® has been used in adult patients with ADHD to improve concentration, but does not appear to be more effective than placebo. Further research is necessary in this area before a firm conclusion can be reached. +
C
Cramps (muscular pain) +

+Pycnogenol® may effectively prevent cramps, muscular pain at rest, and pain after/during exercise in normals, in athletes prone to cramps, in patients with venous disease, in claudicants, and in diabetics with microangiopathy. Further high quality trails are needed to make a firm recommendation. +
C
Diabetes +

+Supplementation of Pycnogenol® with conventional diabetes treatment may lower glucose levels and improve endothelial function. Further research is needed to confirm these results. +
C
Diabetic microangiopathy +

+Supplementation with Pycnogenol® may improve symptoms associated with diabetic microangiopathy. Further research is needed to confirm these results. +
C
Dysmenorrhea (painful menstruation) +

+Preliminary human data shows that Pycnogenol® may have a potential analgesic (pain relieving) effect on menstrual pain. Further research is needed to confirm these results. +
C
Edema (in patients with high blood pressure) +

+Edema occurs when fluid builds up in body tissues causing swelling. Some drugs used to treat high blood pressure may cause edema. Early research suggests that Pycnogenol® may help treat edema linked to calcium antagonist (nifedipine) or angiotensin-converting enzyme inhibitors. More research is needed in this area. +
C
Erectile dysfunction +

+Pycnogenol®, in combination with L-arginine, may cause an improvement in sexual function in men with erectile dysfunction. It is not known what effect each of the individual compounds may have directly on this condition. Further research is needed. +
C
Gingival bleeding / plaque +

+Chewing gum containing Pycnogenol® is reported to minimize gingival bleeding and plaque formation. Pycnogenol® has also been added to toothpaste for a potential antioxidant effect. Further research is needed to confirm these results. +
C
High blood pressure +

+Use of Pycnogenol® may reduce the need for nifedipine and decrease systolic blood pressure in patients with high blood pressure. Further research is needed to confirm these results. +
C
High cholesterol +

+Pycnogenol® may reduce low-density lipoprotein (LDL/"bad cholesterol") levels and increase high-density lipoprotein (HDL/"good cholesterol") levels. However, some studies have reported decreases in total cholesterol and LDL levels with no change in HDL. Due to conflicting data, further studies are necessary. +
C
Male infertility +

+Human studies report that Pycnogenol® may improve sperm quality and function in sub-fertile men. Further research is needed to confirm these results. +
C
Melasma (chloasma) +

+Melasma (or chloasma) is a common disorder of hyperpigmentation of the skin predominately affecting sun-exposed areas in women. Formations of tan or brown patches/spots may occur. Pycnogenol® has been reported to decrease the darkened area and the pigment intensity of melasma and improve symptoms of fatigue, constipation, body pains, and anxiety. Further research is needed before a clear recommendation can be made. +
C
Menopausal symptoms +

+Early research suggests that Pycnogenol® may help reduce menopausal symptoms without causing side effects. Additional research is needed to determine if this treatment is safe and effective. +
C
Migraine +

+A combination of pine bark extract containing vitamin C and vitamin E may help reduce the frequency and severity of migraines. However, the effects of pine bark extract alone are unknown because other supplements were also used. More research with Pycnogenol® alone is needed. +
C
Platelet aggregation +

+One human study reports reduced platelet aggregation in smokers. Further research is needed before a clear conclusion can be reached. +
C
Prevention of blood clots/edema during long airplane fights +

+Preliminary human study suggests that Pycnogenol® treatment may be effective in decreasing the number of thrombotic events (DVT and SVT) in moderate-to-high risk subjects during long-haul flights. Edema (swelling) may also be reduced. Further research is needed to confirm these results. +
C
Retinopathy +

+Several studies report benefits of Pycnogenol® in the treatment and prevention of retinopathy, including slowing the progression of retinopathy in diabetics. Better-quality research is needed before a firm conclusion can be reached. +
C
Sunburn +

+Pycnogenol®, taken by mouth, may reduce erythema (redness of the skin) caused by solar ultraviolet light. Further study is needed before a recommendation can be made. +
C
Systemic lupus erythematosus (SLE) +

+Pycnogenol® may be useful as a second line therapy to reduce inflammatory features of SLE. Further research is needed before a recommendation can be made. +
C
Venous leg ulcers +

+Pycnogenol® may be useful for reduction of leg ulcers. Further research is needed before a recommendation can be made. +
C
+
+

+*Key to grades +
A: Strong scientific evidence for this use; +
B: Good scientific evidence for this use; +
C: Unclear scientific evidence for this use; +
D: Fair scientific evidence against this use; +
F: Strong scientific evidence against this use. +

+

+Grading rationale +

+
+Uses based on tradition or theory +
+The below uses are based on tradition or scientific theories. They often have not been thoroughly tested in humans, and safety and effectiveness have not always been proven. Some of these conditions are potentially serious, and should be evaluated by a qualified healthcare provider. +
+

+Alzheimer's disease, antihistamine, antimicrobial, anti-parasitic, arthritis, atherosclerosis, autoimmune disorders, bleeding, bone marrow production, bruising, cancer prevention, cancer treatment, cardiac mitral valve prolapse, cardiovascular disease, cerebral ischemia, chemotherapy side effects, Ehlers-Danlos syndrome, exercise capacity, fat burning, G6PD deficiency, gout prevention (xanthine oxidase and dehydrogenase inhibitor), hemorrhoids, immune enhancement, immune suppression, inflammation, inflammatory bowel disease, joint hypermobility, leukemia, lung cancer, musculoskeletal problems, osteoporosis, periodontitis, premenstrual syndrome, macular degeneration, motion sickness, myocardial ischemia/reperfusion injury, myalgia, myopathy, night vision, pelvic pain, neurodegenerative diseases, prevention of fat formation, psoriasis, retinal protection, rheumatoid arthritis, scar prevention, sickle cell anemia, skin aging, skin disorders, spinal scoliosis, varicose veins, vascular problems, vasorelaxant, venous thromboembolism (VTE), wound healing.
+
+

+

+ +

DosingReturn to top +

+

+

+The below doses are based on scientific research, publications, traditional use, or expert opinion. Many herbs and supplements have not been thoroughly tested, and safety and effectiveness may not be proven. Brands may be made differently, with variable ingredients, even within the same brand. The below doses may not apply to all products. You should read product labels, and discuss doses with a qualified healthcare provider before starting therapy. +

+
+Adults (18 years and older) +
+
+In general, 25-360 milligrams has been taken by mouth in divided doses daily. For gum health, 5 milligrams Pycnogenol® in chewing gum for 14 days has been used. +
+

+
+Pycnogenol® appears to be absorbed into the bloodstream in about 20 minutes. Once absorbed, therapeutic effects are purported to last for approximately 72 hours, followed by excretion in the urine. Because of its astringent taste and occasional minor stomach discomfort, it may be best to take Pycnogenol® with or after meals +
+

+
+Children (younger than 18 years) +
+
+Due to insufficient data, Pycnogenol® is not recommended for use in children. +
+

+

+ +

SafetyReturn to top +

+

+

+The U.S. Food and Drug Administration does not strictly regulate herbs and supplements. There is no guarantee of strength, purity or safety of products, and effects may vary. You should always read product labels. If you have a medical condition, or are taking other drugs, herbs, or supplements, you should speak with a qualified healthcare provider before starting a new therapy. Consult a healthcare provider immediately if you experience side effects. +

+
+Allergies +
+
+Individuals should not take Pycnogenol® if allergic to it or any of its components. +
+

+
+Side Effects and Warnings +
+
+Pycnogenol® is generally reported as being well tolerated. Low acute and chronic toxicity with mild unwanted effects may occur in a small percentage of patients following oral administration. Because of its astringent taste and occasional minor stomach discomfort, it may be best to take Pycnogenol® with or after meals. To date, no serious adverse effects have been reported in the available scientific literature, although systematic study of safety is not available. +
+

+
+In theory, Pycnogenol® may alter blood sugar levels. Caution is advised in patients with diabetes or hypoglycemia and in those taking drugs, herbs, or supplements that affect blood sugar. Serum glucose levels may need to be monitored by a healthcare provider, and medication adjustments may be necessary. +
+

+
+In theory, Pycnogenol® may increase the risk of bleeding. Caution is advised in patients with bleeding disorders or taking drugs that may increase the risk of bleeding. Dosing adjustments may be necessary. +
+

+
+Pregnancy & Breastfeeding +
+
+Pycnogenol® is not recommended during pregnancy or breastfeeding due to lack of scientific evidence. +
+

+

+ +

InteractionsReturn to top +

+

+

+Most herbs and supplements have not been thoroughly tested for interactions with other herbs, supplements, drugs, or foods. The interactions listed below are based on reports in scientific publications, laboratory experiments, or traditional use. You should always read product labels. If you have a medical condition, or are taking other drugs, herbs, or supplements, you should speak with a qualified healthcare provider before starting a new therapy. +

+
+Interactions with Drugs +
+
+Pycnogenol® may interact with other blood pressure lowering medications, specifically angiotensin converting enzyme inhibitors (ACE-I) such as benazepril (Lotensin®), captopril (Capoten®), enalapril (Vasotec®), fosinopril (Monopril®), lisinopril (Prinivil®), moexipril (Univasc®), perindopril (Aceon®), quinapril (Accupril®), ramipril (Altace®), trandolapril (Mavik®), or angiotensin converting enzyme receptor blockers such as losartan (Cozaar®), irbesartan (Avapro®), candesartan, cilexetil (Atacand®), or valsartan (Diovan®). +
+

+
+Pycnogenol® may lower blood sugar levels. Caution is advised when using medications that may also lower blood sugar. Patients taking drugs for diabetes by mouth (such as metformin, glyburide, glipizide) or insulin should be monitored closely by a qualified healthcare provider. Medication adjustments may be necessary. +
+

+
+Pycnogenol® may increase the risk of bleeding when taken with drugs that increase the risk of bleeding. Some examples include aspirin, anticoagulants ("blood thinners") such as warfarin (Coumadin®) or heparin, anti-platelet drugs such as clopidogrel (Plavix®), and non-steroidal anti-inflammatory drugs such as ibuprofen (Motrin®, Advil®) or naproxen (Naprosyn®, Aleve®). +
+

+
+Pycnogenol® may interfere with immunosuppressant or immunostimulant drugs. Pycnogenol® may also prevent fluoride induced kidney damage. +
+

+
+Pycnogenol® may have protective effects against alcohol's effects on brain neurons; further research is needed to confirm these results. +
+

+
+Interactions with Herbs and Dietary Supplements +
+
+Although data has yet to confirm this claim, it has been proposed that Pycnogenol® may increase vitamin C levels. +
+

+
+Pycnogenol® may lower blood sugar levels. Caution is advised when using herbs or supplements that may also lower blood sugar. Blood glucose levels may require monitoring, and doses may need adjustment. +
+

+
+Pycnogenol® may increase the risk of bleeding when taken with herbs and supplements that are believed to increase the risk of bleeding. Multiple cases of bleeding have been reported with the use of  Ginkgo biloba , and fewer cases with garlic and saw palmetto. Numerous other agents may theoretically increase the risk of bleeding, although this has not been proven in most cases. +
+

+
+Pycnogenol® may interact with herbs and supplements that affect blood pressure. Pycnogenol® may interfere with immunosuppressant or immunostimulant herbs and supplements. Pycnogenol® and other antioxidants may have additive effects. +
+

+

+ +

Methodology + Return to top +

+

+
+This patient information is based on a systematic review of scientific literature edited and peer-reviewed by contributors to the Natural Standard Research Collaboration (www.naturalstandard.com): James Ceurvels, PharmD (Northeastern University); Julie Conquer, PhD (RGB Consulting); Dawn Costa, BA, BS (Natural Standard Research Collaboration); Nicole Giese, MS (Natural Standard Research Collaboration); Sooyoun Kang, PharmD (Massachusetts College of Pharmacy); Shaina Tanguay-Colucci, BS (Natural Standard Research Collaboration); Catherine Ulbricht, PharmD (Massachusetts General Hospital); Wendy Weissner, BA (Natural Standard Research Collaboration); Jen Woods, BS (Northeastern University). +
+

+

+Methodology details +

+

+ +

Selected references + Return to top +

+

+
    +
  1. Belcaro G, Cesarone MR, Rohdewald P, et al. Prevention of venous thrombosis and thrombophlebitis in long-haul flights with pycnogenol. Clin Appl Thromb Hemost 2004 Oct;10(4):373-7.
  2. +
  3. Belcaro G, Cesarone MR, Errichi BM, et al. Venous ulcers: microcirculatory improvement and faster healing with local use of Pycnogenol Angiology 2005 Nov-Dec;56(6):699-705.
  4. +
  5. Belcaro G, Cesarone MR, Ricci A, et al. Control of edema in hypertensive subjects treated with calcium antagonist (nifedipine) or angiotensin-converting enzyme inhibitors with Pycnogenol. Clin Appl Thromb Hemost 2006 Oct;12(4):440-4.
  6. +
  7. Cesarone MR, Belcaro G, Rohdewald P, et al. Rapid relief of signs/symptoms in chronic venous microangiopathy with pycnogenol: a prospective, controlled study. Angiology 2006 Oct-Nov;57(5):569-76.
  8. +
  9. Cesarone, MR, Belcaro G, Rohdewald P, et al. Prevention of edema in long flights with pycnogenol. Clin Appl Thromb Hemost 2005;11(3):289-294.
  10. +
  11. Chayasirisobhon S. Use of a pine bark extract and antioxidant vitamin combination product as therapy for migraine in patients refractory to pharmacologic medication. Headache 2006 May;46(5):788-93.
  12. +
  13. Dvorakova M, Jezova D, Blazícek P, et al. Urinary catecholamines in children with attention deficit hyperactivity disorder (ADHD): modulation by a polyphenolic extract from pine bark (pycnogenol). Nutr Neurosci 2007 Jun-Aug;10(3-4):151-7.
  14. +
  15. Koch R. Comparative study of Venostasin and Pycnogenol in chronic venous insufficiency. Phytother Res 2002;16 Suppl 1:S1-S5.
  16. +
  17. Lau BH, Riesen SK, Truong KP, et al. Pycnogenol as an adjunct in the management of childhood asthma. J Asthma 2004;41(8):825-32.
  18. +
  19. Liu X, Wei J, Tan F, et al. Antidiabetic effect of Pycnogenol French maritime pine bark extract in patients with diabetes type II. Life Sci. 2004 Oct 8;75(21):2505-13.
  20. +
  21. Nikolova V, Stanislavov R, Vatev I, et al. [Sperm parameters in male idiopathic infertility after treatment with prelox]. Akush Ginekol (Sofiia) 2007;46(5):7-12.
  22. +
  23. Segger D, Schonlau F. Supplementation with Evelle improves skin smoothness and elasticity in a double-blind, placebo-controlled study with 62 women. J Dermatolog Treat 2004;15(4):222-226.
  24. +
  25. Stanislavov R, Nikolova V. Treatment of erectile dysfunction with pycnogenol and L-arginine. J Sex Marital Ther 2003;29(3):207-213.
  26. +
  27. Tenebaum S, Paull JC, Sparrow EP. An experimental comparison of Pycnogenol and methylphenidate in adults with Attention-Deficit/Hyperactivity Disorder (ADHD). J Atten Disord 2002;6(2):49-60.
  28. +
  29. Yang HM, Liao MF, Zhu SY, et al. A randomised, double-blind, placebo-controlled trial on the effect of Pycnogenol on the climacteric syndrome in peri-menopausal women. Acta Obstet Gynecol Scand 2007;86(8):978-85.
  30. +
+

February 01, 2008.

+

+

+
Natural Standard Logo +This evidence-based monograph was prepared by the Natural Standard Research Collaboration. The information provided should not be used during any medical emergency or for the diagnosis or treatment of any medical condition. Talk to your health care provider before taking any prescription or over the counter drugs (including any herbal medicines or supplements) or following any treatment or regimen. Copyright© 2009 Natural Standard (www.naturalstandard.com). All Rights Reserved. +
+

+ + + + + + + + + + + + + + + diff --git a/office/regression/000_000129.html b/office/regression/000_000129.html new file mode 100644 index 0000000..5c73732 --- /dev/null +++ b/office/regression/000_000129.html @@ -0,0 +1,524 @@ + + + + + + + + + + + + + + + + + MedlinePlus Herbs and Supplements: + + Horsetail (Equisetum arvense L.) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Skip navigation +
MedlinePlus Trusted Health Information for YouU.S. National Library of MedicineNational Institutes of Health
+
+ + +
+ + + + +
+ +
+
+ Contact Us + FAQs + Site Map + About MedlinePlus + +
+
+
+ español + Home + Health Topics + Drugs & Supplements + Medical Encyclopedia + Dictionary + News + Directories + Other Resources +
+
+ +
+ + + + + + + + + + + + + +
+
+ Other herb and supplement names:  + + A  + B  + C  + D  + E  + F  + G  + H  + I  + J  + K  + L  + M  + N  + O  + P  + Q  + R  + S  + T  + U  + V  + W  + X  + Y  + Z  +
+ +

Horsetail (Equisetum arvense L.)

+ + + + + +
Printer-friendly versionE-mail this page to a friend
+

+
+ + + + +
+ + + + + + + +
Contents of this page: +
 
+ +
+

+
+

+
+ + + + + + + +
Horsetail
Horsetail
+
+

+ +

BackgroundReturn to top +

+

+
+Horsetail ( Equisetum arvense ) has traditionally been used in Europe as a diuretic for the treatment of edema (swelling/fluid retention). The German Commission E expert panel has approved horsetail for this indication. Horsetail is also occasionally used for osteoporosis, nephrolithiasis (kidney stones), urinary tract inflammation, and wound healing (topical). It is also used in cosmetics and shampoos. These uses have largely been based on anecdote and clinical tradition, rather than scientific evidence. +
+

+
+There is preliminary human evidence supporting the use of horsetail as a diuretic. One poorly designed human trial found horsetail to effectively raise bone density equally to calcium supplements. +
+

+
+In theory (based on mechanism of action), horsetail ingestion in large amounts may cause thiamine deficiency, hypokalemia (low potassium), or nicotine toxicity. Reported adverse effects include dermatitis. +
+

+

+ +

SynonymsReturn to top +

+

+
+Bottle brush, cola de caballo (Spanish), common horsetail, common scouring rush, corn horsetail, corncob plant, couring rush, Dutch rush, Equisetaceae (family),  Equisetum arvense ,  Equisetum myriochaetum ,  Equisetum ramosissimum ,  Equisetum telmateia , field horsetail, Herba Equiseti Hiemalis, hippuric acid, homovanillic acid, horse willow, horsetail grass, horsetail rush, mokuzoku (Japanese), mokchok, mokjeok (Korean), muzei ( E .  hymale ), paddock pipes, pewterwort, prele, pribes des champs, running clubmoss, Schachtelhalm (German), scouring rush, shave grass, shenjincao (Chinese), toadpipe, Wenjing, Zinnkraut (German). +
+

+
+Crude drugs derived from  Equisetum arvense  include Wenjing, Jiejiecao, and Bitoucai. +
+

+
+Note:  Equisetum arvense  should not be confused with members of the genus  Laminaria,  kelp, or brown alga, for which "horsetail" has been used as a synonym. +
+

+

+ +

EvidenceReturn to top +

+

+

+These uses have been tested in humans or animals. Safety and effectiveness have not always been proven. Some of these conditions are potentially serious, and should be evaluated by a qualified healthcare provider. +

+ + + + + + + + + + +
Uses based on scientific evidenceGrade*
Diuresis (increased urine) +

+Use of horsetail dates to ancient Roman and Greek medicine. The name  Equisetum  is derived from equus, "horse," and seta, "bristle." Preliminary human and laboratory research suggests that horsetail may increase the amount of urine produced by the body. More studies are needed to determine if horsetail is safe or useful for specific health conditions. +
B
Osteoporosis (weakening of the bones) +

+Silicon may be beneficial for bone strengthening. Because horsetail contains silicon, it has been suggested as a possible natural treatment for osteoporosis. Preliminary human study reports benefits, but more detailed research is needed before a firm recommendation can be made. People with osteoporosis should speak with a qualified healthcare provider about possible treatment with more proven therapies. +
C
+
+

+*Key to grades +
A: Strong scientific evidence for this use; +
B: Good scientific evidence for this use; +
C: Unclear scientific evidence for this use; +
D: Fair scientific evidence against this use; +
F: Strong scientific evidence against this use. +

+

+Grading rationale +

+
+Uses based on tradition or theory +
+The below uses are based on tradition or scientific theories. They often have not been thoroughly tested in humans, and safety and effectiveness have not always been proven. Some of these conditions are potentially serious, and should be evaluated by a qualified healthcare provider. +
+

+Antibacterial, antioxidant, astringent, bedwetting, benign prostate hyperplasia (enlarged prostate), bladder disturbances, bleeding, brittle fingernails, cancer, cosmetic uses, cystic ulcers, diabetes, dropsy, dyspepsia, edema, fever, fluid in the lungs, frostbite, gonorrhea, gout, hair loss, hematuria (blood in the urine), hepatitis, itch, itching (chronic), kidney disease, kidney stones, leg swelling, liver protection, malaria, menorrhagia (heavy menstrual bleeding), menstrual pain, nosebleeds, prostate inflammation, styptic (to stop bleeding cuts on the skin), Reiter's syndrome, rheumatism, sedative, stomach upset, thyroid disorders, tuberculosis, urinary incontinence, urinary tract infection (UTI), urinary tract inflammation, urolithiasis (urinary tract stones), vaginal discharge, wound healing.
+
+

+

+ +

DosingReturn to top +

+

+

+The below doses are based on scientific research, publications, traditional use, or expert opinion. Many herbs and supplements have not been thoroughly tested, and safety and effectiveness may not be proven. Brands may be made differently, with variable ingredients, even within the same brand. The below doses may not apply to all products. You should read product labels, and discuss doses with a qualified healthcare provider before starting therapy. +

+
+Adults (18 years and older) +
+
+Most reported doses for horsetail are based on historical use or expert opinion. There is a lack of reliable studies available in humans that show horsetail to be effective or safe at any specific dose. Different doses of horsetail have been used, starting at 300-milligram capsules taken three times per day, up to 6 grams per day. A maximum of 6 cups of tea, containing 1.5 grams of dried stem in one cup of hot water, is a dose that has been used. A common dose for a tincture (1:1 in 25% alcohol) is 1 to 4 milliliters three times daily. To treat osteoporosis, a supplement containing 270 milligrams of Osteosil® calcium (a combination of horsetail and calcium) has been taken twice daily for one year. A wash prepared by mixing 10 teaspoons of horsetail in cold water and soaking for 10 to 12 hours has been applied on the skin. +
+

+
+Children (younger than 18 years) +
+
+There is not enough scientific information to recommend the use of horsetail in children. Poisonings have been reported in children using horsetail stems as whistles. +
+

+

+ +

SafetyReturn to top +

+

+

+The U.S. Food and Drug Administration does not strictly regulate herbs and supplements. There is no guarantee of strength, purity or safety of products, and effects may vary. You should always read product labels. If you have a medical condition, or are taking other drugs, herbs, or supplements, you should speak with a qualified healthcare provider before starting a new therapy. Consult a healthcare provider immediately if you experience side effects. +

+
+Allergies +
+
+People with allergies to  Equisetum arvense , related substances, or to nicotine should avoid horsetail. Rash has been reported in a patient taking horsetail who was known to be sensitive to nicotine. +
+

+
+Side Effects and Warnings +
+
+There are few scientific studies or reports of side effects with horsetail. It is more often used in Germany and Canada, where it is traditionally considered to be safe when taken in appropriate doses.  Equisetum palustre  (marsh horsetail) contains a poisonous ingredient and should be avoided. There are reports that some batches of  Equisetum arvense  (horsetail) have been contaminated with  Equisetum palustre . +
+

+
+Large doses of horsetail may cause symptoms of nicotine overdose, including fever, cold hands and feet, abnormal heart rate, difficulty walking, muscle weakness, and weight loss. People who smoke or who use nicotine patches or nicotine gum should avoid horsetail. Reports from animal studies and one report of a nicotine-allergic person describe a rash occurring after the use of white horsetail. Other reports from use in animals describe nausea, increased frequency of bowel movements, increased urination, loss of the body's potassium stores, and muscle weakness. People with kidney disorders should avoid horsetail. +
+

+
+Studies in mice suggest that horsetail may change the activity of the kidneys, causing abnormal control of the amount of water and potassium release. Low potassium, which in theory may occur with horsetail, can have negative effects on the heart. Individuals who have heart rhythm disorders or who take digoxin should be cautious. Studies suggest that horsetail does not change blood pressure. +
+

+
+Horsetail contains an ingredient that destroys thiamine (vitamin B1), which could lead to deficiency with long-term use. This may cause permanent damage to the brain and nervous system, including confusion, difficulty walking, difficulties with vision and eye movement, and memory loss. People who have thiamine (vitamin B1) deficiency or poor nutrition should avoid horsetail, as it may affect levels of thiamine even more. Alcoholic or malnourished individuals are often thiamine deficient and this may be worsened by horsetail. +
+

+
+Avoid use in children due to anecdotal reports of poisonings while using horsetail stems as whistles. +
+

+
+Avoid use in patients taking antidiabetic agents, as a different horsetail species ( Equisetum myriochaetum ) has reportedly caused low blood sugar levels in type 2 diabetic patients. However, the effects of  Equisetum arvense  are unclear. +
+

+
+Avoid use in patients with gout or in those taking antigout agents, as horsetail has been shown to increase the formation of uric acid crystals in the urine. +
+

+
+Pregnancy and Breastfeeding +
+
+Horsetail is not recommended during pregnancy or breastfeeding, since little information is available about its safety. Its potential to cause thiamine (vitamin B1) depletion, low potassium, and nicotine-like effects are of particular concern. Many tinctures contain high levels of alcohol and should be avoided during pregnancy. +
+

+

+ +

InteractionsReturn to top +

+

+

+Most herbs and supplements have not been thoroughly tested for interactions with other herbs, supplements, drugs, or foods. The interactions listed below are based on reports in scientific publications, laboratory experiments, or traditional use. You should always read product labels. If you have a medical condition, or are taking other drugs, herbs, or supplements, you should speak with a qualified healthcare provider before starting a new therapy. +

+
+Interactions with Drugs +
+
+Some diuretic drugs ("water pills") can cause the body to lose water and potassium, for example loop diuretics like furosemide (Lasix®). The use of horsetail with certain diuretics may cause dehydration or further potassium deficiency. Some steroids and laxative drugs can also lower potassium levels and should not be combined with horsetail. Individuals with heart rhythm disorders who are treated with digoxin (Lanoxin®) or digitoxin may be especially sensitive to low potassium levels, and potassium levels should be monitored in such individuals. +
+

+
+Nicotine, a stimulant, may be found in horsetail. Because horsetail can stimulate the brain and nervous system, caution should be used when combining horsetail with stimulant drugs and nicotine. +
+

+
+Horsetail may interact with antigout agents, as horsetail has been shown to increase the formation of uric acid crystals in the urine. +
+

+
+Other horsetail species have caused low blood sugar and therefore horsetail may increase the effects of diabetes medications. However, clinical effects on diabetes therapies are unclear. +
+

+
+Horsetail may have additive effects when taken with agents that treat osteoporosis, as horsetail may increase bone density. However, horsetail's anti-osteoporosis effects are not well established. +
+

+
+Many tinctures contain high levels of alcohol and may cause nausea or vomiting when taken with metronidazole (Flagyl®) or disulfiram (Antabuse®). +
+

+
+Interactions with Herbs and Dietary Supplements +
+
+Increased urine production, dehydration, or electrolyte imbalances may theoretically occur when horsetail is used with herbs that may increase urination. Dehydration or low potassium levels also may theoretically occur if horsetail is used with laxatives. Horsetail may also interact with herbs or supplements taken for gout or osteoporosis, although supportive evidence is currently lacking. +
+

+
+In theory, low potassium levels caused by horsetail may be dangerous in people using herbs that have cardiac glycoside activity on the heart such as foxglove and oleander. Other potassium-depleting herbs, such as licorice, should also be avoided when taking horsetail. +
+

+
+Horsetail may interact with stimulants and herbs and supplements with similar properties such as ephedra and licorice. +
+

+
+Other horsetail species have caused low blood sugar and therefore horsetail may increase effects of diabetes medications. However, clinical effects on diabetes therapies are unclear. +
+

+
+Horsetail may break down thiamin and may cause thiamine deficiency. Horsetail may also have additive effects in patients taking antioxidants. +
+

+

+ +

Methodology + Return to top +

+

+
+This information is based on a professional level monograph edited and peer-reviewed by contributors to the Natural Standard Research Collaboration (www.naturalstandard.com): Ethan Basch, MD (Natural Standard Research Collaboration); Samuel Basch, MD (Mt. Sinai School of Medicine, NY); Wendy Chao, PhD (Natural Standard Research Collaboration); Dawn Costa, BA, BS (Natural Standard Research Collaboration); Paul Hammerness, MD (Harvard Medical School); Adrianne Rogers, MD (Boston University School of Medicine); Michael Smith, MRPharmS, ND (Canadian College of Naturopathic Medicine); David Sollars, MAc, HMC (New England School of Acupuncture); Shaina Tanguay-Colucci, BS (Natural Standard Research Collaboration); Catherine Ulbricht, PharmD (Massachusetts General Hospital), Mamta Vora, PharmD (Northeastern University); Wendy Weissner, BA (Natural Standard Research Collaboration). +
+

+

+Methodology details +

+

+ +

Selected references + Return to top +

+

+
    +
  1. Corletto F. [Female climacteric osteoporosis therapy with titrated horsetail (Equisetum arvense) extract plus calcium (osteosil calcium): randomized double blind study]. Miner Ortoped Traumatol 1999;50:201-206.
  2. +
  3. Dos Santos JG Jr, Blanco MM, Do Monte FH, et al. Sedative and anticonvulsant effects of hydroalcoholic extract of Equisetum arvense. Fitoterapia 2005 Sep;76(6):508-13.
  4. +
  5. Fabre B, Geay B, Beaufils P. Thiaminase activity in Equisetum arvense and its extracts. Plant Med Phytother 1993;26:190-197.
  6. +
  7. Gibelli C. The hemostatic action of Equisetum. Arch Intern Pharmacodynam 1931;41:419-429.
  8. +
  9. Graefe EU, Veit M. Urinary metabolites of flavonoids and hydroxycinnamic acids in humans after application of a crude extract from Equisetum arvense. Phytomedicine 1999;6(4):239-246.
  10. +
  11. Henderson JA, Evans EV, McIntosh RA. The antithiamine action of Equisetum. J Amer Vet Med Assoc 1952;120:375-378.
  12. +
  13. Joksic G, Stankovic M, Novak A. Antibacterial medicinal plants Equiseti herba and Ononidis radix modulate micronucleus formation in human lymphocytes in vitro. J Environ Pathol Toxicol Oncol 2003;22(1):41-48.
  14. +
  15. Katikova OI, Kostin I, Tishkin VS. [Hepatoprotective effect of plant preparations]. Eksp Klin Farmakol 2002;65(1):41-43.
  16. +
  17. Maeda H, Miyamoto K, Sano T. Occurrence of dermatitis in rats fed a cholesterol diet containing field horsetail (Equisetum arvense L.). J Nutr Sci Vitaminol (Tokyo) 1997;43(5):553-563.
  18. +
  19. Nitta A, Yoshida S, Tagaeto T. A comparative study of crude drugs in Southeast Asia. X. Crude drugs derived from Equisetum species. Chem Pharm Bull (Tokyo) 1977;25(5):1135-1139.
  20. +
  21. Oh H, Kim DH, Cho JH, et al. Hepatoprotective and free radical scavenging activities of phenolic petrosins and flavonoids isolated from Equisetum arvense. J Ethnopharmacol 2004;95(2-3):421-424.
  22. +
  23. Perez Gutierrez RM, Laguna GY, Walkowski A. Diuretic activity of Mexican equisetum. J Ethnopharmacol 1985;14(2-3):269-272.
  24. +
  25. Revilla MC, Andrade-Cetto A, Islas S, et al. Hypoglycemic effect of Equisetum myriochaetum aerial parts on type 2 diabetic patients. J Ethnopharmacol 2002;81(1):117-120.
  26. +
  27. Sudan BJ. Seborrhoeic dermatitis induced by nicotine of horsetails (Equisetum arvense L.). Contact Dermatitis 1985;13(3):201-202.
  28. +
  29. Tiktinskii OL, Bablumian IA. [Therapeutic action of Java tea and field horsetail in uric acid diathesis]. Urol Nefrol (Mosk) 1983;3(1):47-50.
  30. +
+

February 01, 2008.

+

+

+
Natural Standard Logo +This evidence-based monograph was prepared by the Natural Standard Research Collaboration. The information provided should not be used during any medical emergency or for the diagnosis or treatment of any medical condition. Talk to your health care provider before taking any prescription or over the counter drugs (including any herbal medicines or supplements) or following any treatment or regimen. Copyright© 2009 Natural Standard (www.naturalstandard.com). All Rights Reserved. +
+

+ + + + + + + + + + + + + + + diff --git a/office/regression/000_000136.html b/office/regression/000_000136.html new file mode 100644 index 0000000..2e1a451 --- /dev/null +++ b/office/regression/000_000136.html @@ -0,0 +1,704 @@ + +FDA Enforcement Report + +

FDA

+

Enforcement Report

+The FDA Enforcement Report is published weekly by the Food and Drug +Administration, +U.S. Public Health Service, Department of Health and Human Services. It contains +information +on actions taken in connection with agency regulatory activities. +
+
 ENFORCE
+08/19/1992
+
+RECALLS AND FIELD CORRECTIONS: August 19, 1992
+
+                              FOODS -- CLASS I
+                                                                 92-34   
+              
+PRODUCT        Frozen Crabmeat, in 8 ounce tubs, unlabeled or under Young's     
+               Shellfish label.  Recall #F-486-2.
+CODE           C372.
+MANUFACTURER   Young's Shellfish Company, Inc., Belfast, Maine.
+RECALLED BY    Manufacturer, by telephone July 1, 1992, followed by letter on   
+               or about July 7, 1992.  Firm-initiated recall ongoing.
+DISTRIBUTION   Massachusetts, Vermont.
+QUANTITY       150 pounds were distributed.
+REASON         Product is contaminated with Listeria monocytogenes.
+
+              
+PRODUCT        Fresh Backfin Crabmeat.  Recall #F-487-2.
+CODE           None.
+MANUFACTURER   Edwards Seafood, Onley, Virginia.
+RECALLED BY    Manufacturer, by telephone June 15, 1992.  Firm-initiated        
+               recall ongoing.
+DISTRIBUTION   Washington, D.C.
+QUANTITY       100 pounds were distributed; firm estimates none remains on the  
+               market.
+REASON         There is a potential for contamination with Listeria             
+               monocytogenes.
+                                       
+RECALLS AND FIELD CORRECTIONS:  FOODS -- CLASS II
+              
+PRODUCT        Carousel brand Rich and Creamy Cheese Cake, packed in 4 ounce    
+               metal cups with plastic sealed tops.  Recall #F-224-2.
+CODE           All codes.
+MANUFACTURER   Carousel Foods, Inc., Glenville, New York.
+RECALLED BY    Manufacturer, by letter February 18, 1992.  Firm-initiated       
+               recall complete.
+DISTRIBUTION   New York, New Jersey, Pennsylvania.
+QUANTITY       500 cases (24 cups per case) were distributed.
+REASON         There is a remote potential for contamination with Clostridium   
+               botulinum.
+
+              
+PRODUCT        (a) Winters Pure Sugar Cane Syrup, in 25 and 12 fluid ounce      
+               glass bottles; (b) Winters Pure Cane Syrup, in 25 and 12 fluid   
+               ounce bottles.  Recall #F-466/467-2.
+CODE           All product manufactured between 1/13/92 and March 31, 1992.     
+               Product in 25 fluid ounce and 12 fluid ounce bottles did not     
+               bear lot numbers or serial numbers.
+MANUFACTURER   Winters & Son, Inc., West Green, Georgia.
+RECALLED BY    Manufacturer, by letter July 25, 1992.  Firm-initiated recall    
+               ongoing.
+DISTRIBUTION   Georgia, Florida.
+QUANTITY       300 cases (12 25-ounce bottles per case) and 15 cases (12        
+               12-ounce bottles per case) were distributed.
+REASON         Product contains undeclared corn syrup.
+
+               
+PRODUCT        Pasteurized Caviar in blue tins, 3-1/6 ounces.  Recall #F-468-2.
+CODE           All product.
+MANUFACTURER   Royal Baltic Ltd., Brooklyn, New York.
+RECALLED BY    Manufacturer, by telephone and by letters dated June 5, 1992.    
+               Firm-initiated recall ongoing.
+DISTRIBUTION   New York, Massachusetts.
+QUANTITY       79 tins were distributed.
+REASON         Product contains the unsafe food additive, borates.
+
+               
+PRODUCT        Canned Mushrooms, in 68 ounce cans, grown in the People's        
+               Republic of China and packed in Hong Kong.  Recall #F-469-2.
+CODE           MPS-TC-1Y28.
+MANUFACTURER   Tak Chance Food Products, Ind., Ltd., Tseun Wan, Hong Kong.
+RECALLED BY    Tak Yuen Corporation, San Leandro, California, by letter May     
+               14, 1992.  Firm-initiated recall ongoing.
+DISTRIBUTION   Washington state, Oregon, Idaho, California, Nevada, Texas,      
+               Colorado, Minnesota, Missouri, Michigan, Wisconsin, Florida.
+QUANTITY       444 cases were distributed.
+REASON         Product is contaminated with Staphylococcal Enterotoxin.
+
+                                      -2-
+              
+PRODUCT        Various Fruit Pastry Fillings:  Bono Apple Danish, Viking Apple  
+               Danish, and Fettings Frozen Products Apple Danish.  The three    
+               products have the same formulation and are fruit filling or      
+               topping products for Danish Sweet Rolls, packaged in 2 pound     
+               flexible plastic tubs.  Recall #F-471-2.
+CODE           All lots made prior to Julian date 154 of 1992.
+MANUFACTURER   Best Brands, Inc., Eagen, Minnesota.
+RECALLED BY    Manufacturer, by telephone July 21, 1992, followed by letter     
+               July 22, 1992.  Firm-initiated recall ongoing.
+DISTRIBUTION   Missouri, North Dakota, Minnesota.
+QUANTITY       Firm estimates 100 24-pound cases remain on the market.
+REASON         Product contains undeclared sulfites.
+
+              
+PRODUCT        Rival Variety and Perfection Variety Fresh Apricots, in 17       
+               pound and 24 pound containers.  Recall #F-472-2.
+CODE           MSCRO followed by 6/23U92, 6/25H92, 6/27Q92, 7/1092, 6/25G92,    
+               6/27092, 6/27R92.
+MANUFACTURER   Johnny Appleseed Company of Washington/CRO Fruit Company,        
+               Wenatchee, Washington.
+RECALLED BY    Manufacturer, by telephone July 9, 1992, followed by letter      
+               July 10, 1992.  Firm-initiated recall ongoing.
+DISTRIBUTION   Massachusetts, New York, Michigan, California, Connecticut,      
+               Washington state.
+QUANTITY       407 17-pound boxes and 109 24-pound boxes were distributed.
+REASON         Product is contaminated with pesticides, acephate and            
+               methamdidophos.
+
+              
+PRODUCT        Pan Dulce (sweet bread), Mexican fresh pastry products, 10       
+               ounces:  (a) Mantecadas; (b) Cochinitos; (c) Empanadas; (d)      
+               Galleta de Azucar; (e) Semitas de Amoz;
+               (f) Pan de Huevo; (g) Pan Fino.  Recall #F-473/479-2.
+CODE           All lots manufactured prior to April 30, 1992.
+MANUFACTURER   C Ramirez & Sons Food Manufacturing, Inc., Hereford, Texas.
+RECALLED BY    Manufacturer, by letter April 30, 1992.  Firm-initiated recall   
+               complete.
+DISTRIBUTION   Oklahoma, Texas.
+QUANTITY       Firm estimates none remains on the market.
+REASON         Product contains undeclared FD&C Yellow No. 5.
+
+
+RECALLS AND FIELD CORRECTION:  FOODS -- CLASS III
+              
+PRODUCT        Flavorzest Oral Liquid, in 16 ounce plastic bottles, a           
+               multi-vitamin for children.  Recall #F-463-2.
+CODE           Lot #051920 EXP 4/95.
+MANUFACTURER   Vita-Fore Products Company, Inc., Ozone Park, New York.
+RECALLED BY    Manufacturer, by telephone and letter July 17, 1992.             
+               Firm-initiated recall ongoing.
+DISTRIBUTION   New York.
+
+                                      -3-
+QUANTITY       6 cases x 74 bottles were distributed.
+REASON         Product is incorrectly labeled as to quantity of concentrate.
+
+              
+PRODUCT        Fresh Gutted Mahi-Mahi Fish imported from Ecuador.  Recall       
+               #F-465-2.
+CODE           Uncoded.
+MANUFACTURER   Independent Seafoods, West Palm Beach, Florida.
+RECALLED BY    Manufacturer, by telephone June 13, 1992.  Firm-initiated        
+               recall complete.
+DISTRIBUTION   Florida.
+QUANTITY       600 pounds were distributed.
+REASON         Product is decomposed.
+
+              
+PRODUCT        Minute Maid Orange Juice, in 8.45 fluid ounce tetra brik         
+               packages.  Recall #F-470-2.
+CODE           DEC1392AB.
+MANUFACTURER   Coca-Cola Foods, Anaheim, California.
+RECALLED BY    Coca-Cola Foods, Houston, Texas, by visit July 8, 1992.          
+               Firm-initiated recall complete.
+DISTRIBUTION   California, Oregon.
+QUANTITY       480 cases (27 packages per case) were distributed; firm          
+               estimates none remains on the market.
+REASON         Product contained in swollen containers.
+
+              
+PRODUCT        Various salad dressing:
+               (a) Ken's Steak House Lite Caesar Dressing, in 8 ounce bottles;
+               (b) Ken's Steak House Olive Oil Vinaigrette Dressing, in 8 and   
+               16 ounce bottles.  Recall #F-480/481-2.
+CODE           (a) All bottles with expiration date of 16 FEB 93;
+               (b) All bottles with expiration date of 2 MAR 93 and 7 MAR 93.
+MANUFACTURER   Ken's Foods, Inc., Marlborough, Massachusetts.
+RECALLED BY    Manufacturer, by telephone June 30, 1992, followed by letter     
+               July 1, 1992.  Firm-initiated recall ongoing.
+DISTRIBUTION   New York, New Jersey, Pennsylvania, Massachusetts, Maine.
+QUANTITY       (a) 10,696 cases (12 bottles) per case; (b) 2,120 cases (12      
+               8-ounce bottles per case), and 851 cases (6 16-ounce bottles     
+               per case) were distributed.
+REASON         Product is contaminated with yeast.
+
+
+RECALLS AND FIELD CORRECTIONS:  DRUGS -- CLASS I
+              
+PRODUCT        Albuterol Sulfate, bulk powder, a bulk chemical repackaged into  
+               4 sizes of bottles, 10 gms, 25 gms, 100 gms, 500 gms, for use    
+               in compounding prescription bronchodilator medications.
+               Recall #D-450-2.
+                                      -4-
+CODE           PCCA Lot 13401.
+MANUFACTURER   Topchem s.r.l., Milano, Italy.
+RECALLED BY    Professional Compounding Centers of America, Inc., Houston,      
+               Texas, by letter September 6, 1991.  Firm-initiated recall       
+               complete.
+DISTRIBUTION   Nationwide.
+QUANTITY       8,945 grams were distributed; firm estimates none remains on     
+               the market.
+REASON         Product labeled Albuterol Sulfate identified by analysis as      
+               Dextromethorphan hydrobromide.
+
+
+RECALLS AND FIELD CORRECTIONS:  DRUGS -- CLASS II
+              
+PRODUCT        Acetaminophen Elixir, 80 mg acetaminophen per 1/2 teaspoon, an   
+               OTC oral liquid, under the following labels:  Esquire,           
+               Mediguard.  Recall #D-451-2.
+CODE           Lot numbers:  10088, 11006, 11011, 11015, 11026, 11031, 11041,   
+               11046, 11052, 11067.
+MANUFACTURER   Esquire Pharmaceuticals, Inc., Westmont, Illinois.
+RECALLED BY    Manufacturer, by letter June 10, 1992.  Firm-initiated recall    
+               ongoing.
+DISTRIBUTION   Nationwide.
+QUANTITY       48,928 4-ounce bottles and 10,704 8-ounce bottles were           
+               distributed; firm estimates that little remains on the market.
+REASON         Markings on dosage cups not totally compatible with labeled      
+               dosage instructions.
+
+
+RECALLS AND FIELD CORRECTION:  DRUGS -- CLASS III
+              
+PRODUCT        Sunrise Smooth Metamucil, orange flavored psyllium fiber, in     
+               .43 ounce packets, an OTC oral soluble fiber.  Recall #D-452-2.
+CODE           Lot number 2149XD061 EXP 3/94.
+MANUFACTURER   Procter & Gamble Company, Phoenix, Arizona.
+RECALLED BY    Procter & Gamble Company, Cincinnati, Ohio, by telephone         
+               between July 20 and 24, 1992, followed by letter on or about     
+               July 21, 1992.  Firm-initiated recall ongoing.
+DISTRIBUTION   Nationwide.
+QUANTITY       620 cases were distributed.  There are 30 packets to a shelf     
+               carton and 12 shelf cartons to case.
+REASON         Some individual packets are mislabeled as "Sugar-Free."  The     
+               cartons are correctly labeled as the sugar containing product.
+
+              
+PRODUCT        Hydrocodone Bitartrate and Acetaminophen Tablets, 5 mg/500 mg    
+               each, in 500 tablet bottles, a Rx analgesic, under the Goldline  
+               and Halsey Drug labels.  Recall #D-453-2.
+CODE           Lot #1G08D.
+
+                                      -5-
+MANUFACTURER   Halsey Drug Company, Inc., Brooklyn, New York.
+RECALLED BY    Manufacturer, by letter July 9, 1992.  Firm-initiated recall     
+               ongoing.
+DISTRIBUTION   Florida.
+QUANTITY       1,986 bottles were distributed.
+REASON         Presence of mold.
+
+              
+PRODUCT        Precaine Topical Anesthetic in both aerosol and gel forms, a Rx  
+               dental drug.  Recall #D-454/455-2.
+CODE           All lot numbers.
+MANUFACTURER   Pascal Company, Inc., Bellevue, Washington.
+RECALLED BY    Manufacturer, by letter June 15, 1992.  Firm-initiated recall    
+               ongoing.
+DISTRIBUTION   Nationwide and international.
+QUANTITY       3,844 units of gel and 2,015 units of aerosol were distributed;  
+               firm estimates 1,200 units remain on the market.
+REASON         Products marketed without new drug approval.
+
+              
+PRODUCT        Ibuprofen Tablets, 400 mg, in 120 tablet bottles, an OTC         
+               analgesic.  Recall #D-456-2.
+CODE           Lot numbers:  06617 EXP 7/93, 06618 EXP 7/93.
+MANUFACTURER   Boots Pharmaceuticals, Inc., Shreveport, Louisiana.
+RECALLED BY    Manufacturer, by letter.  Firm-initiated recall ongoing.
+DISTRIBUTION   Illinois, California, New Jersey.
+QUANTITY       11,550 bottles were distributed.
+REASON         Product does not meet dissolution specifications.
+
+
+RECALLS AND FIELD CORRECTIONS:  DEVICES -- CLASS I
+              
+PRODUCT        Spacelabs Model 90510 (First Medic 510) Defibrillator.
+               Recall #Z-959-2.
+CODE           All serial numbers from 0001 through 0308.
+MANUFACTURER   Spacelabs, Inc., Hillsboro, Oregon.
+RECALLED BY    Spacelabs, Inc., Redmond, Washington, by letter June 23, 1992.   
+               Firm-initiated recall ongoing.
+DISTRIBUTION   Nationwide, UK, Germany.
+QUANTITY       274 units were distributed.
+REASON         The defibrillator may not function due to cable kinks resulting  
+               in cable connectors becoming dislodged after continued opening   
+               and closing of the lid on the top of the defibrillator which     
+               contains the operator display.
+
+
+RECALLS AND FIELD CORRECTIONS:  DEVICES -- CLASS II
+              
+PRODUCT        Surgical Instruments Imported from Pakistan:
+               1.  Iris Scissors, Straight;
+
+                                      -6-
+               2.  Forester Sponge Holding Forceps;
+               3.  Mosquito Forceps 5" Curved; 
+               4.  Adson Dressing Forceps;
+               5.  Adson Tissue Forceps;
+               6.  Webster N. Holders;
+               7.  Kelly Forceps Curved;
+               8.  Disposable Towell Forceps;
+               9.  Mosquito Forceps 3 1/2" Curved;
+               10. Baumgartner Needle Holders;
+               11. Backhaus Towel Forceps;
+               12. Lister Bandage Scissors;
+               13. Articulating Paper Forceps;
+               14. Rankin Crile Forceps Straight;
+               15. Mayo Hegar Needle Holders;
+               16. Bob Parker Handle;
+               17. Baby Allis Tissue Forceps;
+               18. Kelly Scissors;
+               19. Roger Wire Cutting Scissors, Angular;
+               20. Webster Needle Holders Satin;
+               21. Eye Dressing Forceps 1/2" Curved;
+               22. Evacuation Forceps, 14mm Width;
+               23. Plaster Nippers;
+               24. Roger Wire Scissors;
+               25. Evacuation Forceps, 15mm Width;
+               26. Schamber Comedone Extractors;
+               27. Doyen Intestinal Clamp Curved;
+               28. Doyen Intestinal Clamp Straight;
+               29. Mosquito Forceps 5" Straight;
+               30. Evacuation Forceps, 19mm Width;
+               31. Sophar CVUM Forceps;
+               32. Rankin Crile;
+               33. Sims Uterine Sounds;
+               34. Micro Alligator Forceps, Cupped Typed;
+               35. Iris Scissors Straight McCoys;
+               36. Lister Bandage Scissors McCoys;
+               37. Fine Point Forceps, with Guide Pin;
+               38. Operating Scissors, Smooth Blunt;
+               39. Operating Scissors, Smooth Smooth, 5 1/2" Straight McCoys;
+               40. Operating Scissors, Smooth Smooth, 4 1/2" Straight;
+               41. Light Mall Probes;
+               42. Screw Lock Scalpel Handles;
+               43. Vienna Nasal Speculums Medium;
+               44. Rochester Pean;
+               45. Mayo Hegar Needle Holders 8";
+               46. Lister Bandage Scissors 4 1/2";
+               47. Allis Tissue Forceps;
+               48. Thumb Dressing Forceps;
+               49. Tooth Extracting Forceps, Number 16-S;
+               50. Tooth Extracting Forceps, Number 150-S;
+               51. Tooth Extracting Forceps, Number 151-S;
+               52. Bozeman Uterine Dressing Forceps Curved;
+               53. Bozeman Uterine Dressing Forceps Straight;
+               54. Tooth Extracting Forceps No:Mayo Scissors;
+
+                                      -7-
+               55. Eye Dressing Forceps 1/2" Curved 4";
+               56. Rochester Pean Forceps 12" Curved;
+               57. Rochester Pean Forceps 12" Straight;
+               58. Plain Splinter Forceps;
+               59. Cartilage Splinter Forceps;
+               60. College Dental Tweezers;
+               61. Rochester Pean Forceps 8" Curved;
+               62. Sponge Holding Forceps, Smooth Jaws;
+               63. Doyen Intestinal Clamps 9 1/2" Straight;
+               66. Webster Needle Holders 5" Standard;
+               67. Weitlaner Retractors;
+               68. Webster Needle Holders 5" Fine Point;
+               69. Mosquito Clamps 5" Curved;
+               70. Gum Scissors Straight;
+               71. Kelly Clamps Curved;
+               72. Dissecting Scissors, Smooth Blunt;
+               73. Mayo Dissection Scissors Straight;
+               74. Lister Bandage Scissors 5 1/2" Straight;
+               75. Bandage Scissors;
+               76. Dissection Forceps;
+               77. Gum Scissors Curved;
+               78. Dissection Forceps 4 3/4";
+               79. College Tweezers;
+               80. U.S. Army Gauze 8" Scissors;
+               81. Kelly Clamp Straight;
+               82. Roaching Shears;
+               83. Holzheimer Skin Retractors;
+               84. Rankin Crile Forceps Curved;
+               85. Babinski Percussion Hammers Large;
+               86. Babinski Percussion Hammers, Large 10";
+               87. Schroeder Tenaculum Forceps;
+               89. Magille Catheter Forceps Adult Size;
+               90. Bandage Scissors with one Heavy Blade;
+               91. U.S. Army Gauze Scissors 8 1/2";
+               92. Graves Speculums Small;
+               93. Cusco Speculums Medium;
+               94. Crown Scissors Smooth Blades;
+               95. Mayo Hegar Needle Holders 6" in Bag;
+               96. Webster Needle Holders 5" in Bag;
+               97. Sponge Stick 7" Straight;
+               98. Suture Scissors;
+               99. Dissection Forceps in Bag;
+               100. Kelly Scissors 6 1/4" Straight 1 Blade;
+               101. Mayo Hegar Needles Holders 5";
+               102.  Plain Splinter Forceps 3 1/2";
+               103. Mosquito Clamps 5" Straight;
+               104. College Pliers;
+               105. Providence Hospital Clamps;
+               106. Dissecting Forceps 5 1/2";
+               107. Rochester Pean Forceps 7 1/4 Curved;
+               108. Doyen Clamps;
+               109. Babcock Forceps;
+               110. Magille Catheter Forceps Child Size;
+
+                                      -8-
+               111. Lister Bandage Scissors 7 1/4";
+               112. Student Dissecting Forceps 1/2" Curved & Full Curved;
+               113. Hartmann Forceps;
+               114. Rochester Pean Forceps 8" Curved;
+               115. Student Dissecting Forceps Full Curved;
+               116. Cartilage Forceps Curved;
+               117. Rochester Pean Forceps 8" Straight;
+               118. Crown Scissors Smooth Blades Straight;
+               119. Crown Scissors Smooth Blades Curved;
+               120. Student Dissecting Forceps Serrated 1/2" Curved;
+               121. Ringes Expander Pliers,
+               122. McCoys Fine Point Forceps No. 3160;
+               123. McCoys Dissection Scissors Smooth Smooth Straight No. 1155;
+               124. Student Dissecting Scissors No. 5520;
+               125. McCoys Dissection Scissors Smooth Blunt;
+               126. Dissection Scissors Smooth Smooth Straight No. 1150;
+               127. McCoys Dissection Scissors Smooth Smooth No. 1150;
+               128. Dissection Scissors, Smooth Blunt Straight;
+               129. Dissecting Forceps 6" McCoys;
+               130. Towel Clamps;
+               131. Tooth Extracting Forceps No. 150;
+               132. Tooth Extracting Forceps No. 69;
+               133. Rochester Pean Curved Forceps 7 1/4";
+               134. Dissecting Forceps 5 1/2";
+               135. Darryan;
+               136. Mosquito Clamps 3 1/2" Straight in Bag;
+               137. Jansen Gruenwald Nasal Forceps;
+               138. Rochester Pean Forceps Curved (Special);
+               139. Metzenmbaum Scissors Curved;
+               140. Poultary Scissors;
+               141. Kelly Scissors 6 1/4" Straight;
+               142. Metzenmbaum Scissors Curved;
+               143. Iris Scissors 4 1/2" Straight Regular in Bags;
+               144. Lister Bandage Scissors in Boxes;
+               145. Operating Scissors Smooth Blunt;
+               146. Kelly Forceps 5 1/2" Straight;
+               147. Towel Clamps 3 1/2" in Bags;
+               148. U.S. Army Scissors 8";
+               149. Bozeman Uterine Forceps 10 1/2";
+               150. Gum Scissors Straight No. 1167;
+               151. Mosquito Clamps 3 1/2" Straight in Bags;
+               152. Kelly Scissors 6 1/4" Curved 1 Blade.
+               Recall #Z-1004/1152-2.
+CODE           AWB numbers (airway numbers): 214 5376 3812LHE NYC 3818/157 and  
+               214 5378 8210/298LHE NYC.
+MANUFACTURER   Tinopal Surgical, PVT, LTD, Sialkot-4, Pakistan.
+RECALLED BY    Fine Surgical Instruments Corporation, Hempstead, New York, by
+               letter on or about May 12, 1992.  Firm-initiated recall ongoing.
+DISTRIBUTION   Nationwide.
+QUANTITY       512,589 pieces were distributed
+REASON         The devices were imported from Pakistan and/or are labeled as    
+               stainless steel, and are subject to refusal of admission under   
+               Import Alert #76-01.  The devices were subsequently distributed 
+
+                                      -9-
+               into interstate commerce.  The quality of the device fails to    
+               meet established standard requirements for the appropriate type  
+               of stainless steel, as entered, labeled or promoted.  The        
+               devices also lack an approved 510(k).
+
+              
+PRODUCT        Brockenbrough Fittings (stopcocks), Item #002414, used with      
+               USCI 8.5F Brockenbrough Transseptal Catheters.
+               Recall #Z-1161-2.
+CODE           Lot numbers:  07EA3983, 07AB2197, 07GB3882, 07HA1936, 07DB0795,  
+               07LA7505, 07DB3818.
+MANUFACTURER   Bard Urological Division of C.R. Bard, Inc., Glens Falls, New    
+               York.
+RECALLED BY    USCI Division of C.R. Bard, Inc., Billerica, Massachusetts, by   
+               letter and by telephone February 25, 1992.  Firm-initiated       
+               recall ongoing.
+DISTRIBUTION   Nationwide, Canada, Ireland.
+QUANTITY       330 units were distributed.
+REASON         The stopcocks were modified without a male fitting, causing a    
+               potential for a non-reliable fit between the stopcocks and the   
+               catheters, which could result in leakage and/or introduction of  
+               air into the system.
+
+              
+PRODUCT        LDS 1700 Series Adult Heated Anesthesia Circuits, non-sterile,   
+               single patient use, Rx devices for use with LDS brand            
+               humidifiers intended to be used for respiratory care,            
+               anesthesia, or situations where upper respiratory tract is       
+               bypassed or heated and humidified gas are delivered to the       
+               patient:
+               1.  LDS-17340 and LDS-17340E Single Limb, 40";
+               2.  LDS-17360 and LDS-17360E Single Limb, 60";
+               3.  LDS-17372 and LDS-17372E Single Limb, 72";
+               4.  LDS-17440 and LDS-17440E Circle, Dual Wire, 40";
+               5.  LDS-17441 and LDS-17441E Circle, Dual Wire, 40", 40" 
+                   Extension Filter Flex II;
+               6.  LDS-17450 and LDS-17450E Circle, Dual Wire, 40";
+               7.  LDS-17460 and LDS-17460E Circle, Dual Wire, 60";
+               8.  LDS-17470 and LDS-17470E Circle, Single Wire, 60";
+               9.  LDS-17480 and LDS-17480E Circle, Dual Wire, 80";
+               10. LDS-17490 and LDS-17490E Circle, Single Wire, 72";
+               11. LDS-17499-108 and LDS-17499-108 Ventilator, Single
+                   Wire, 72";
+               12. LDS-17630 and LDS-17630E Ventilator, Dual Wire, 60";
+               13. LDS-17640 and LDS-17640E Ventilator, Single Wire, 60";
+               14. LDS-17641 and LDS-17640E Ventilator, Single Wire,
+                   60" with 10" Nebulizer;
+               15. LDS-17642 and LDS-17642E Ventilator, Single Wire,
+                   60" with 20" Nebulizer;
+               16. LDS-17648-271 and LDS-17648-271E Ventilator, Single
+                   Wire, 60" with Low Flow Cannister, Filter Flex II;
+
+                                     -10-
+               17. LDS-17651 and LDS-17651E Ventilator, Single Wire,
+                   60" with 10" Water Trap;
+               18. LDS-17652 and LDS-17652E Ventilator, Single Wire,
+                   60" with 20" Water Trap;
+               19. LDS-17660 and LDS-17660E Ventilator, Dual Wire, 60";
+               20. LDS-17661 and LDS-17661E Ventilator, Dual Wire, 60"
+                   with 10" Nebulizer;
+               21. LDS-17730 and LDS-17730E Ventilator, Dual Wire, 72"
+                   with 20" Water Trap;
+               22. LDS-17740 and LDS-17740E Ventilator, Single Wire, 72";
+               23. LDS-17741 and LDS-17741E Ventilator, Single Wire,
+                   72" with 10" Nebulizer;
+               24. LDS-17742 and LDS-17742E Ventilator, Single Wire,
+                   72" with 20" Nebulizer;
+               25. LDS-17748-271 and LDS-17748-271E Ventilator, Single
+                   Wire, 72" with Low Flow Cannister, Filter Flex II;
+               26. LDS-17751 and LDS-17751E Ventilator, Single Wire,
+                   72" with 10" Water Trap;
+               27. LDS-17752 and LDS-17752E Ventilator, Single Wire,
+                   72" with 20" Water Trap;
+               28. LDS-17760 and LDS-17760E Ventilator, Dual Wire, 72";
+               29. LDS-17761 and LDS-17761E Ventilator, Dual Wire, 72";
+               30. LDS-17764 and LDS-17764E Ventilator, Dual Wire, 72"
+               with 2 Port Wye.  Recall #Z-1162/1191-2.
+CODE           Lot numbers:  136001 through 208000.
+MANUFACTURER   Life Design Systems, a division of Bird Medical Technologies,    
+               Inc., Carrollton, Texas.
+RECALLED BY    Manufacturer, by letter May 11, 1992.  Firm-initiated recall     
+               complete.
+DISTRIBUTION   Nationwide.
+QUANTITY       1,722 units were distributed; firm estimates none remains on     
+               the market.
+REASON         Device may have loose crimps on the terminals of the circuit     
+               wires which may cause the circuit not to heat.
+REASON         Device may cause an artifact and the release of excessive        
+               ultrasound (Isppa) and mechanical index.
+
+              
+PRODUCT        Mainstream CO2 Airway Adapter, a single-use adapter for use      
+               with MGA-IR Mainstream C02 Modules, used to measure carbon       
+               dioxide concentration in respiratory gases.  Recall #Z-1195-2.
+CODE           Catalog #405908-001, lot numbers 9213 and 9221.
+MANUFACTURER   Pryon Corporation, Menomonee Falls, Wisconsin.
+RECALLED BY    Marquette Electronics, Inc., Milwaukee, Wisconsin, by letter     
+               June 22, 1992.  Firm-initiated recall ongoing.
+DISTRIBUTION   Nationwide and international.
+QUANTITY       1,490 units of lot 9213 and 1,510 units of lot 9221 were         
+               distributed.
+REASON         Some of the adapters may have molding flash, which is visible    
+               as pieces of plastic threads that are not completely removed     
+               during the molding process.
+
+                                     -11-
+              
+PRODUCT        Reichert Jung Unistat Bilirubinometer, a stat photometric        
+               analyzer for determining total bilirubin concentration in        
+               neonates up to 7 days old.  Recall Z-1197-2.
+CODE           Model 10310 (110 volt), and Model 10311 (220 volts).  All        
+               serial numbers.
+MANUFACTURER   Leica, Inc., Buffalo, New York.
+RECALLED BY    Manufacturer, by letter March 4, 1992.  Firm-initiated recall    
+               ongoing.
+DISTRIBUTION   Nationwide and international.
+QUANTITY       193 units of model 10310 and 222 units of model 10311 were       
+               manufactured.
+REASON         The device may display a falsely low value when reading samples  
+               with elevated bilirubin levels.
+
+              
+PRODUCT        Prestilix 1690 and 1690S X-ray Tables.  Recall #Z-1198-2.
+CODE           Model Z.7A9A5.902B.
+MANUFACTURER   General Electric Medical Systems, Milwaukee, Wisconsin.
+RECALLED BY    Manufacturer.  FDA approved the firm's corrective action plan    
+               July 22, 1992.  Firm-initiated field correction ongoing.
+DISTRIBUTION   Nationwide.
+QUANTITY       45 units were distributed.
+REASON         Noncompliance with the Performance Standards for Radiographic    
+               Equipment in that it failed to meet the x-ray field alignment    
+               requirements for spot-file devices, in that torsional twist of   
+               support arm allows diagnostic source assembly to sag, causing    
+               misalignment of the x-ray field.
+
+
+RECALLS AND FIELD CORRECTIONS:  VETERINARY -- CLASS II
+              
+PRODUCT        Neovet Neomycin Sulfate for Oral or topical use, 200 mg/ml, in   
+               1 gallon plastic bottles, OTC for the treatment of diarrhea and  
+               bacterial enteritis in cattle, swine, sheep, horses, and         
+               poultry when the illness is due to organisms susceptible to      
+               neomycin.  Recall #V-046-2.
+CODE           Lot #B121 EXP 10/92.
+MANUFACTURER   Sparhawk Laboratories, Inc., Kansas City, Kansas.
+RECALLED BY    Manufacturer, by letter June 4, 1992.  Firm-initiated recall     
+               ongoing.
+DISTRIBUTION   Missouri.
+QUANTITY       996 1-gallon bottles were distributed.
+REASON         Product is contaminated with mold.
+
+              
+PRODUCT        Lactated Ringer's Injection, USP, in 1000 ml plastic bottles,    
+               Rx, intravenous or subcutaneous administration, for replacement  
+               of acute fluid and electrolyte losses and for correcting mild    
+               acidosis.  Recall #V-047-2.
+CODE           Lot #50330.
+MANUFACTURER   Sanofi Animal Health, Inc., Fort Dodge, Iowa.
+
+                                     -12-
+RECALLED BY    Sanofi Animla Health, Inc., Overland Park, Kansas, by letter     
+               July 20, 1992.  Firm-initiated recall ongoing.
+DISTRIBUTION   Maryland, Oklahoma, Colorado, Illinois, Texas, Iowa, South       
+               Dakota, Nebraska, Massachusetts, Louisiana.
+QUANTITY       6,178 bottles were distributed.
+REASON         Lack of sterility.
+
+
+MEDICAL DEVICE SAFETY ALERTS:
+              
+PRODUCT        Humidifier probes with dual temperature sensor used with LDS     
+               Humidi-Flo DSC17000 Dual Servo Heated Humidifiers, used to       
+               monitor the temperature in the inspiratory limb of the           
+               breathing circuit:  (a) LDS-71455 Humidifier Probe, Dual         
+               Temperature Sensor, 40"; (b) LDS-17475 Humidifier Probe, Dual    
+               Temperature Sensor, 60"; (c) LDS-17495 Humidifier Probe, Dual    
+               Temperature Sensor, 72".  Safety Alert #M-089/091-2.
+CODE           Lot numbers:  146047, 146048, 146049, 147012, 147031, 206047,    
+               206061, 208022.
+MANUFACTURER   Life Design Systems (LDS), a Division of Bird Medical            
+               Technologies, Inc., Carrollton, Texas.
+ALERTED BY     Manufacturer, by letter May 11, 1992.
+DISTRIBUTION   California, Louisiana, New York, Oho, Texas.
+QUANTITY       31 probes were distributed; 14 units remain on the market, 5 of  
+               which are used for demonstration purposes only.
+REASON         LDS could not recommend ETO sterilization of these probes (firm  
+               has not validated the procedures).
+
+SEIZURES:
+              
+PRODUCT        Pulsator 2000TM electrical stimulator (92-400-792).
+CHARGE         Adulterated - The product is a class III medical device which    
+               does not have in effect the required approved premarket          
+               approval application.
+               Misbranded - The product is a device in package form and the
+               product's labeling fails to state the place of business of
+               the manufacturer, packer, or distributor.  The device's
+               labeling also fails to bear adequate directions for use.  It
+               is a prescription device for which adequate directions,
+               which will allow lay persons to safely or effectively use
+               the device, cannot be written.  The device is further
+               misbranded because it is not listed as required.
+FIRM           Etna Products Company, Inc., New York, New York.
+FILED          June 23, 1992 - U.S. District Court for the Southern
+               District of New York; Civil #92 CIV 4462(CES), FDC #66380.
+SEIZED         August 4, 1992 - goods valued at approximately $17,900.
+
+                                     -13-
+              
+PRODUCT        Frozen scallops (92-639-586).
+CHARGE         Adulterated - The scallops consist in part of a substance,
+               water, which has been added thereto so as to increase its
+               weight to make it appear of greater value than it is.
+FIRM           Mar-Lees Seafood, Inc., New Bedford, Massachusetts.
+FILED          July 15, 1992 - U.S. District Court for the District
+               of Massachusetts; Civil #92-11735WF, FDC #66457.
+SEIZED         July 22, 1992 - goods valued at approximately $23,000.
+
+              
+PRODUCT        Various device components used in lithotriptors (92-516-233).
+CHARGE         Adulterated - The products are class III medical devices
+               which do not have in effect the required approved
+               premarket approval application.
+               Misbranded - The products' labeling does not bear adequate
+               directions for use and the devices were manufactured in an
+               establishment that was not registered, nor were the devices
+               included in a list, as required by statute.
+FIRM           Frederick Self Storage, Frederick, Maryland.
+FILED          July 1, 1992 - U.S. District Court for the District
+               of Maryland; Civil #B-92-1849, FDC #66430.
+SEIZED         July 13, 1992 - goods valued at approximately $3,000.
+
+                                     -14-
+
+
+END OF ENFORCEMENT REPORT FOR AUGUST 19, 1992.  BLANK PAGES MAY
+FOLLOW.
+
+                                     ###
+
diff --git a/office/regression/000_000138.html b/office/regression/000_000138.html new file mode 100644 index 0000000..de5c71f --- /dev/null +++ b/office/regression/000_000138.html @@ -0,0 +1,25 @@ + + + + + NPS - Page Not Found + + + + + + + + + + + + + +
+ +
Page Not Found
+ I'm sorry that page could not be found, but you may want to try this park's homepage here: http://www.nps.gov/caco/. +
+ + diff --git a/office/regression/000_000173.html b/office/regression/000_000173.html new file mode 100644 index 0000000..011c822 --- /dev/null +++ b/office/regression/000_000173.html @@ -0,0 +1,278 @@ +Water-borne cues induce chemical defense in a marine alga + (Ascophyllum nodosum)
pmc logo imageJournal ListSearchpmc logo image
Logo of pnasPNAS Home page.Reference to the article.PNAS Info for AuthorsPNAS SubscriptionsPNAS About
Proc Natl Acad Sci U S A. 2000 December 19; 97(26): 14418–14420.
Published online 2000 December 5.
PMCID: PMC18933
Ecology
Water-borne cues induce chemical defense in a marine alga + (Ascophyllum nodosum)
Gunilla B. Toth* and Henrik Pavia
Department of Marine Botany, Tjärnö Marine Biological + Laboratory, SE 452 96 Strömstad, Sweden
*To whom reprint requests should be addressed. E-mail: + gunilla.toth/at/marbot.gu.se.
Edited by Jane Lubchenco, Oregon State University, Corvallis, OR, + and approved October 15, 2000
Received May 18, 2000.
Abstract
It is well known that herbivores can induce chemical defenses in + terrestrial vascular plants, but few examples of inducible production + of defense chemicals have been reported for aquatic macrophytes. + Furthermore, it is well established that water-borne chemical cues from + predators or predator-wounded conspecifics can induce defensive changes + of aquatic prey animals, but no such communication between aquatic + herbivores and seaweeds has been reported. Here we show that + water-borne cues from actively feeding herbivorous gastropods, flat + periwinkles (Littorina obtusata), can serve as external + signals to induce production of defense chemicals (phlorotannins) in + unharmed individuals of seaweeds, knotted wrack (Ascophyllum + nodosum), and that the increased levels of defense chemicals + deter further feeding by periwinkles. Because seaweeds have poorly + developed internal-transport systems and may not be able to elicit + systemic-induced chemical defenses through conveyance of internal + signals, this mechanism ensures that seaweeds can anticipate future + periwinkle attacks without receiving direct damage by herbivores.
 
The evolution of inducible, + as opposed to constitutive, defenses is favored when the risk of attack + from predators is unpredictable, when the production of defenses + involves fitness costs, and when reliable environmental cues, e.g., + direct visual or physical contact or air- and water-borne substances, + are available (1, 2). Research on the induction of defensive changes in + behavior, life history, and morphology in response to water-borne cues + has a long tradition for aquatic animals (24). Furthermore, + phytoplankton can sense and respond to water-borne chemical cues from + herbivorous zooplankton by adjusting their phenotypes (5). The + induction of chemical defenses in terrestrial plants subjected to + direct grazing is also well documented (1) and can occur in response to + airborne chemical cues (6, 7), although this phenomenon is a subject of + debate (8, 9). In contrast, there are only three examples of + herbivore-induced production of chemical defenses in seaweeds (1012), + all of which have focused on the impact of direct grazing. Here we + report on water-borne chemical cues inducing chemical defense in a + seaweed species, the knotted wrack (Ascophyllum nodosum).

Knotted wrack is a common brown seaweed species that may form dense + monospecific stands in the intertidal zone of sheltered North Atlantic + rocky shores. An individual consists of several genetically identical + primary shoots that arise from a common holdfast and branch into + secondary shoots as the individual grows. Knotted wrack can be + inhabited and grazed on by flat periwinkles (Littorina + obtusata) that are specialized to live and feed on knotted wrack + and a few other brown seaweed species (13). The abundance of flat + periwinkles in the study area is highly variable within and among sites + (ref. 12; H.P., unpublished data). Partitioning of the variation of the + data from a field survey showed that there were highly significant + (P < 0.001) differences in periwinkle abundance among + sites, but 75% of the total variation was caused by differences among + individual plants within sites. Periwinkles inhabited 16% of the + monitored plants (H.P., unpublished data). Furthermore, flat + periwinkles feed slowly compared with many larger marine herbivores + such as fishes and sea urchins, and they are relatively sedentary and + probably only move among seaweed individuals growing within a distance + of a few meters (13, 14). Given these observations, one can assume that + the probability of periwinkle attack for a particular seaweed + individual is unpredictable but increases if neighboring individuals + are under attack. Because grazing damage made by periwinkles may + increase the mortality risk of knotted wrack (12), individuals that are + able to assess and respond to water-borne signals that indicate an + increase in herbivory risk may have a selective advantage.

Brown seaweeds contain variable levels of secondary polyphenolic + metabolites, called phlorotannins (1517), that may deter feeding by + herbivorous gastropods (12, 18). The production of phlorotannins in + knotted wrack is negatively correlated with seaweed growth rate (17). + Direct grazing by periwinkles induces significant increases of + phlorotannin levels in knotted wrack, whereas grazing by isopods + (Idotea granulosa) and artificial damage do not (12), + indicating that herbivore-specific cues are involved in the elicitation + of the response. This observation led us to test the hypothesis that + water-borne chemical cues from periwinkles actively feeding on knotted + wrack will induce a higher phlorotannin content in unharmed neighboring + seaweeds.

An induction experiment was conducted in a flow-through system + where water from aquariums with knotted wrack and adult periwinkles was + transferred to aquariums with equally sized artificially wounded or + undamaged seaweeds. Knotted wrack and adult (>1 cm) flat periwinkles + were collected from their natural habitats in the intertidal zone + outside Kristineberg Marine Research Station on the Swedish west coast + in July 1999. Then, 40 knotted wrack individuals were placed + individually in 2-liter glass aquariums connected to a flow-through + system (1 liter[center dot]min−1) with filtered (100, + 10, and 1 μm) seawater. In natural populations, knotted wrack + individuals are shaded by neighboring plants, and to expose the plants + to a natural daily rhythm of light but not to direct sunlight, the + aquariums were placed in the shade outside the laboratory. The time + frame of the experiment (20 days) and the density of periwinkles (five + individuals per plant) were chosen according to observed feeding + activity and maximum abundance of periwinkles in natural knotted wrack + populations (unpublished observations). Periwinkles were added to 10 of + the aquariums, and water from these and 10 more aquariums containing + only seaweed was transferred to aquariums containing either + artificially damaged (with a hole-punch) or undamaged seaweeds (Fig. + 1). When the experiment was terminated, + 10 apical shoots were collected and pooled from each experimental + individual in “receiving” aquariums. Phlorotannins were + measured by using the Folin–Ciocalteus method (19) for quantification + of total phenolics. Phloroglucinol (Chemical Abstract Service no. + 6099-90-7) was used as a standard. Data were statistically analyzed by + using a two-way analysis of variance with water-borne cues (two levels) + and artificial damage (two levels) as fixed orthogonal factors. The + mean phlorotannin content in knotted wrack exposed to water from + aquariums containing periwinkles actively feeding on seaweeds increased + by a significant 15% compared with plants receiving water from + aquariums with unharmed seaweed individuals (Fig. + 2). Knotted wrack responded to cues + irrespective of initial mechanical damage, because induction occurred + in both undamaged and artificially damaged plants (Fig. 2). To our + knowledge, these are the first published results demonstrating that + seaweeds can respond to water-borne cues by increasing levels of + secondary metabolites. + + + +

Figure 1Figure 1
Experimental set-up in the induction experiment. Filtered seawater was + transferred through aquariums with knotted wrack only (no water-borne + cues) or with knotted wrack and flat periwinkles (water-borne cues) to + aquariums containing either undamaged (more ...)
Figure 2Figure 2
Phlorotannin content (percentage of dry weight) in undamaged and + artificially damaged knotted wrack receiving water from aquariums + either with unharmed seaweed individuals (no water-borne cues) or with + conspecifics being grazed on by flat periwinkles (more ...)

For increases in levels of secondary metabolites to function as + effective chemical defenses, increased resistance to further grazing + must also be demonstrated (1, 2). Therefore, we tested the hypothesis + that induced changes in secondary chemistry (phlorotannins or other + compounds) in knotted wrack individuals receiving water-borne cues in + the present study will decrease the palatability of the seaweeds to + periwinkles. We performed a bioassay whereby flat periwinkles were + allowed to choose between artificial diets containing seaweed material + from the induction experiment. Two types of artificial diets were + produced by pooling all seaweed material collected from experimental + individuals that had received water from aquariums with and without + water-borne cues. The seaweed material was freeze-dried, ground to a + fine powder, and molded into agar discs (1.5% wet-weight agar, 5.6% + wet-weight seaweed material). New adult flat periwinkles were placed in + 0.2-liter glass aquariums (three periwinkles per aquarium) together + with one piece (2 g wet-weight) each of both types of artificial diets. + Controls without herbivores were also prepared to measure autogenic + weight changes in agar discs during the experiment. Each treatment + (periwinkles and controls) was replicated 20 times. The wet-weight of + agar discs was determined at the start and at the end of the 6-day + experiment by using a standard blotting procedure, and the wet-weight + change (WWC) of each agar disk was calculated by subtracting + the stop weight from the start weight. To study feeding preference of + periwinkles, the difference (D) between weight changes of + the two agar discs in each aquarium was calculated as: +
equation M1
+ (20) and used as a dependent variable in a one-way analysis of + variance with herbivore (two levels) as a fixed factor. Periwinkles + were significantly deterred by artificial food containing knotted wrack + that had received water-borne cues from aquariums with other + periwinkles actively feeding on seaweeds, as indicated by the + significantly lower difference in wet-weight changes between agar discs + grazed on by periwinkles compared with control agar discs without + herbivores (Fig. 3). Because any + morphological differences between seaweeds from the induction + experiment were eliminated in the artificial diets, this deterrence + must be caused by differences in chemistry, although we cannot discern + whether deterrence was caused by phlorotannins or some other unknown + change in chemical content. + +

Figure 3Figure 3
Difference in wet-weight change (g) between artificial food containing + seaweed material from knotted wrack that received water with and + without water-borne cues in the induction experiment. Periwinkles were + deterred by artificial food containing seaweed (more ...)

The increase in phlorotannin content of knotted wrack subjected to + water-borne cues could be caused either by increased production of + phlorotannins or by absorption and accumulation of phlorotannins + released from wounded conspecifics. Release of phlorotannins from brown + seaweeds can be increased in response to stresses such as desiccation + (21) or mechanical damage (22). To investigate whether knotted wrack + releases phlorotannins in response to herbivore damage, we performed an + experiment to measure the total phenolic concentration in filtered + seawater from aquariums in which knotted wrack individuals were + subjected to herbivory by flat periwinkles. Knotted wrack and flat + periwinkles were collected outside Tjärnö Marine Biological + Laboratory on the Swedish west coast in October 1999. The experimental + set-up was as described in the induction experiment (Fig. 1) except + that no seaweeds receiving water-borne cues were used. Empty aquariums + with only seawater were used as controls of background levels of total + phenolics. After 7 days, the seawater supply was turned off, and + phlorotannins were allowed to accumulate for 6 h (22), after which + water samples (50 ml) were collected from each aquarium. The water + samples were concentrated with ultrafiltration [molecular weight + > 1,000; the majority of knotted wrack phlorotannins have a molecular + weight of 10,000 (15)], and the total phenolic concentration was + measured by using the Folin–Ciocalteus method (19). Data were analyzed + statistically by using a one-way analysis of variance with treatment + (three levels) as a fixed factor. Herbivory did not increase the + release of phlorotannins, because there were no significant differences + between water samples from different aquariums (one-way analysis of + variance, F2,6 = 0.17, + P = 0.85). The phenolic concentration in aquariums + containing knotted wrack, knotted wrack and periwinkles, and plain + seawater was 0.812 ± 0.070, 0.833 ± 0.195, and 0.925 + ± 0.149 mg[center dot]liter−1, respectively + (means ± SEM). Given these results, we conclude that the increase + in phlorotannin content in knotted wrack discovered in the induction + experiment (Fig. 2) was a result of an increased phlorotannin + production and not only an accumulation of phlorotannins released from + plants under attack.

The notion of a mechanism that allows plants to “communicate” by + means of airborne chemical compounds has been criticized because of the + fact that there can be no selective advantage to plants that warn their + neighbors of imminent danger (1). However, selection should favor the + evolution of inducible production of secondary metabolites that may + function as defenses when reliable cues for pathogen detection are + present (1, 2, 23), and chemical compounds released by herbivores or + wounded plants may serve as such cues (1). Furthermore, induced + chemical defenses may be either localized at the site of a wound or + systemic throughout the seaweed (24). Induced systemic responses are + common in terrestrial vascular plants (1) in response to internal (25, + 26) and external (6, 7, 27) signaling cues, and systemically released + signals have been found in communication between plants and predators + in tritrophic interactions (28, 29). Unlike vascular plants, most + seaweed species (except kelps and siphonous green seaweeds) have poorly + developed conducting tissues and cannot easily transport chemical + compounds long distances within a genetic individual (30). Therefore, + most seaweeds cannot use internal signaling efficiently to induce + systemic defenses in response to damage, and the selection pressure to + evolve mechanisms to respond to external chemical cues is probably + greater than for plants with more developed internal transport systems.

We have shown that knotted wrack has evolved a mechanism to sense + and respond to the presence of actively feeding flat periwinkles + through water-borne cues in the laboratory, although we do not + presently know the exact origin of the cue (seaweed or periwinkle) that + elicited the induced response. This mechanism may be important for both + undamaged seaweed individuals growing nearby an attacked conspecific + and for attacked individuals eliciting induced systemic defenses to + minimize further herbivory. However, rigorous experimental field + investigations are needed to reveal whether this mechanism is present + also in knotted wrack individuals in natural populations. We have also + shown that flat periwinkles are sensitive to induced changes in the + chemistry of their food. Because they are relatively sedentary + herbivores, induced systemic chemical defense in knotted wrack is + probably effective against this herbivore species, even if it takes + days or weeks to be manifested. In conclusion, we propose that external + chemical cues may be common elicitors of induced systemic plant + defenses in interactions between nonvascular plants and sedentary, + slowly feeding herbivores.

Acknowledgments

We are grateful to all staff and students at Kristineberg Marine + Research Station and Tjärnö Marine Biological Laboratory + for their helpfulness and hospitality. K. Johannesson, P. Nilsson, L. + Svärdh, P. Åberg, and three anonymous reviewers provided + valuable comments on earlier drafts of the manuscript. The research + foundations of Adlerbertska, Ernst Colliander, Lars Hierta, and Carl + Stenholm supported this study. H.P. was supported by the Foundation for + Strategic Research through the Marine Science and Technology program.

Footnotes
This paper was submitted + directly (Track II) to the + PNAS office.
Article published online before print: Proc. Natl. Acad. Sci. USA, + 10.1073/pnas.250226997.
Article and publication date are at www.pnas.org/cgi/doi/10.1073/pnas.250226997
References
1.
Karban, R; Baldwin, I T. Induced Responses to Herbivory. Chicago: Univ. of Chicago Press; 1997.
2.
Tollrian R, Harvell C D. , editors. The Ecology and Evolution of Inducible Defenses. Princeton: Princeton Univ. Press; 1999.
3.
Chivers, D P; Smith, R J F. Ecoscience. 1998;5:338–352.
4.
Kats, L B; Dill, M. Ecoscience. 1998;5:361–394.
5.
Van Donk, E; Lürling, M; Lampert, W. The Ecology and Evolution of Inducible Defenses. Tollrian R, Harvell C D. , editors. Princeton: Princeton Univ. Press; 1999. pp. 89–103.
6.
Bruin, J; Sabelis, M W; Dicke, M. Trends Ecol Evol. 1995;10:167–170.
7.
Shonle, I; Bergelson, J. Ecology. 1995;76:2660–2663.
8.
Fowler, S V; Lawton, J H. Am Nat. 1985;126:181–195.
9.
Firn, R D; Jones, C G. Trends Ecol Evol. 1995;10:371.
10.
Van Alstyne, K L. Ecology. 1988;69:655–663.
11.
Cronin, G; Hay, M E. Ecology. 1996;77:2287–2301.
12.
Pavia, H; Toth, G. Ecology. 2000;81:3212–3225.
13.
Williams, G A. Field Studies. 1990;7:469–482.
14.
Williams, G A. Hydrobiologia. 1995;309:143–150.
15.
Ragan, M A; Glombitza, K-W. Prog Phycol Res. 1986;4:129–241.
16.
Targett, N M; Arnold, T M. J Phycol. 1998;36:195–205.
17.
Pavia, H; Toth, G; Åberg, P. J Ecol. 1999;87:761–771.
18.
Steinberg, P D. J Exp Mar Biol Ecol. 1988;120:221–237.
19.
Van Alstyne, K L. J Chem Ecol. 1995;21:45–58.
20.
Peterson, S H; Renaud, P E. Oecologia. 1989;80:82–86.
21.
Carlson, D J; Carlson, M L. Limnol Oceanogr. 1984;29:1077–1087.
22.
Jennings, J G; Steinberg, P D. Mar Biol (Berlin). 1994;121:349–354.
23.
Karban, R; Agrawal, A A; Thaler, J S; Adler, L S. Trends Ecol Evol. 1999;14:443–447. [PubMed]
24.
Järemo, J; Tuomi, J; Nilsson, P. The Ecology and Evolution of Inducible Defenses. Tollrian R, Harvell C D. , editors. Princeton: Princeton Univ. Press; 1999. pp. 33–44.
25.
Green, T; Ryan, C A. Science. 1972;175:776–777.
26.
Pearce, G; Strydom, D; Johnson, S; Ryan, C A. Science. 1991;253:895–898.
27.
Farmer, E E; Ryan, C A. Proc Natl Acad Sci USA. 1990;87:7713–7716. [PubMed]
28.
Dicke, M; Sabelis, M W; Takabayashi, J; Bruin, J; Posthumus, M A. J Chem Ecol. 1990;16:3091–3118.
29.
Turlings, T C J; Loughrin, J H; McCall, P J; Röse, U S R; Lewis, W J; Tumlinson, J H. Proc Natl Acad Sci USA. 1995;92:4169–4174. [PubMed]
30.
Lobban, C S; Harrison, P J. Seaweed Ecology and Physiology. Cambridge, U.K.: Cambridge Univ. Press; 1994.
+ diff --git a/office/regression/000_000178.html b/office/regression/000_000178.html new file mode 100644 index 0000000..1b1602e --- /dev/null +++ b/office/regression/000_000178.html @@ -0,0 +1,31 @@ +Recovery and Phylogenetic Analysis of nifH Sequences from Diazotrophic Bacteria Associated with Dead Aboveground Biomass of Spartina alterniflora
pmc logo imageJournal ListSearchpmc logo image
Logo of aemFormerly Appl MicrobiolAppl Environ Microbiol SubscriptionsAppl Environ Microbiol Web Site
Appl Environ Microbiol. 2001 November; 67(11): 5308–5314.
doi: 10.1128/AEM.67.11.5308-5314.2001.
PMCID: PMC93305
Recovery and Phylogenetic Analysis of nifH Sequences from Diazotrophic Bacteria Associated with Dead Aboveground Biomass of Spartina alterniflora
Charles R. Lovell,1* Michael J. Friez,2 John W. Longshore,2 and Christopher E. Bagwell1
Department of Biological Sciences, University of South Carolina, Columbia, South Carolina 29208,1 and Molecular Diagnostics Laboratory, Greenwood Genetic Center, Greenwood, South Carolina 296462
*Corresponding author. Mailing address: Department of Biological Sciences, University of South Carolina, Columbia, SC 29208. Phone: (803) 777-7036. Fax: (803) 777-4002. E-mail: lovell/at/biol.sc.edu.
Present address: Environmental Sciences Division, Oak Ridge National Laboratory, Oak Ridge, TN 37831.
Received June 4, 2001; Accepted August 21, 2001.
Abstract
DNA was extracted from dry standing dead Spartina alterniflora stalks as well as dry Spartina wrack from the North Inlet (South Carolina) and Sapelo Island (Georgia) salt marshes. Partial nifH sequences were PCR amplified, the products were separated by denaturing gradient gel electrophoresis (DGGE), and the prominent DGGE bands were sequenced. Most sequences (109 of 121) clustered with those from α-Proteobacteria, and 4 were very similar (>99%) to that of Azospirillum brasilense. Seven sequences clustered with those from known γ-Proteobacteria and five with those from known anaerobic diazotrophs. The diazotroph assemblages associated with dead Spartina biomass in these two salt marshes were very similar, and relatively few major lineages were represented.
 
Low elevations of salt marshes along the Atlantic and northern Gulf of Mexico coasts of temperate North America are characterized by extensive monoculture stands of the smooth cordgrass Spartina alterniflora (35). Spartina marshes support high rates of macrophyte primary production and microbially mediated nutrient cycling. Numerous studies indicate that primary production (16, 37) and decomposition (15, 19, 38) in Spartina marshes are nitrogen limited. In these systems, diazotrophy (N2 fixation) is an important source of “new” nitrogen (8, 23, 40).

A significant but often overlooked focus of diazotrophy in salt marshes is dead aboveground Spartina biomass, particularly standing dead biomass (19, 33). There are quite large amounts of standing dead biomass at all times of the year, with ratios of dead to live aboveground biomass exceeding 1:1 during the winter and spring months (7, 31). Standing dead biomass is partially mineralized and frequently very dry (17) but supports substantial microbial activity (1719), which is greatly stimulated when the material becomes wet through tidal action or precipitation (17). Rates of diazotrophy in moist standing dead Spartina are among the highest reported for decomposing plant materials (see Table 4 in reference 19).

Relatively little attention has been given to the microorganisms involved in decomposition of and diazotrophy in dead aboveground Spartina biomass. Much of the microbial biomass in standing dead materials consists of fungal hyphae (18). Cyanobacteria are present but occur chiefly in clay-rich surface films (18), while diazotrophy occurs primarily on and within the decaying biomass itself (19). It seems that the predominant diazotrophs in this material are heterotrophic bacteria, but the types of organisms present have not been determined.

Recent applications of molecular biological methods have greatly facilitated the study of natural bacterial communities and functionally significant taxa within them (9, 34, 39, 42). In particular, PCR amplification has been used to recover segments of nifH, the structural gene encoding the nitrogenase iron protein, from various types of environmental samples, including marine and freshwater plankton (1, 3, 44), termite hindguts (11, 20), microbial mats and aggregates (21, 22, 43), terrestrial soils (28, 29, 32, 41), the rhizoplanes of rice (Oryza sativa) (36) and of shoal grass (Halodule wrightii) (10), and the rhizosphere of Spartina (14). PCR amplification of nifH sequences followed by their separation through denaturing gradient gel electrophoresis (DGGE) has been used to examine the complexity and stability of the diazotroph assemblage found in the Spartina rhizosphere (2527), and sequence analysis of the DGGE bands has been used to determine phylogenetic relationships of the diazotrophic organisms represented (14). While such methods have certain inherent limitations and biases (25, 42), they provide an efficient means to profile the diazotrophs associated with dead aboveground Spartina biomass and to determine the phylogenetic affiliations of these organisms.

In this study we determined the types of diazotrophic heterotrophic bacteria present in standing dead and loose, recently deposited (wrack) Spartina biomass, as defined by recoverable partial nifH sequences resolved by DGGE. Our primary objectives were to assess the diversity of these assemblages and to identify the major phylogenetic groups of organisms that are capable of contributing to N2 fixation in dead aboveground Spartina biomass.

Sampling sites. Samples of standing dead Spartina stalks and Spartina wrack were collected from the short-form Spartina zones in two different salt marsh systems. The Crab Haul Creek Basin site in the North Inlet estuary, near Georgetown, S.C. (79°12′W, 33°20′N), was located in the intertidal zone approximately 50 m from the nearest tidal creek and was sampled on 31 August 2000. The Doboy Sound site on Sapelo Island, Ga. (31°23′N, 81°17′W), was located in the intertidal zone near Doboy Sound (Georgia Coastal Ecosystems Long Term Ecological Research Site 6) and was sampled on 1 August 2000. The upper, approximately 10-cm lengths of dry standing dead stalks were collected. Dry wrack, which consisted of loose stalks (litter) recently deposited on the sediment surface, was collected from deposits lying near the sampling locations for standing dead stalks. Standing dead stalks and wrack were transferred to sterile Whirl-Pak bags and stored at −70°C pending DNA extraction.

DNA extraction. Standing dead and wrack stalks were broken up into 2-cm fragments. DNA was extracted from the samples using a direct lysis procedure described previously (13, 25). DNA extracts were further purified and concentrated using the Wizard DNA clean-up system following the manufacturer's instructions (Promega, Madison, Wis.). DNA quality and quantity were assessed by agarose gel electrophoresis and fluorometry, respectively.

PCR amplification of nifH. PCR was performed using Taq DNA polymerase (Qiagen, Valencia, Calif.) in a reaction mixture containing (25-μl reaction volume) 25 ng of template DNA, 1.5 mM MgCl2, 2 μM deoxynucleoside triphosphate (dNTP) mixture, 0.5 pmol of each primer, and 10 μg of bovine serum albumin. The nifH primers used were those of Piceno et al. (25) and are specific for heterotrophic diazotrophs. These primers were designed to have low degeneracy, which is needed for DGGE applications, and are not expected to amplify nifH sequences from cyanobacteria, Frankia spp., and methanogens. Primer design and testing have been described previously (25). Amplification was initiated by a denaturation step at 94°C for 2 min and proceeded in two phases: (i) a 20-cycle touchdown program (94°C for 45 s, 58°C for 30 s, decreasing 0.5°C/cycle, and 70°C for 30 s), and (ii) 20 cycles of a standard amplification program at a 48°C annealing temperature for 30 s. A final extension step at 70°C for 2 min was used. Multiple individual reactions were performed for each sample. PCR products were pooled (200-μl final volume per sample) and stored as alcohol precipitates at −20°C. Prior to DGGE, amplimers were recovered by centrifugation and dissolved in 15 μl of TE (10 mM Tris-HCl [pH 8.0], 1 mM EDTA).

DGGE. nifH amplimers were electrophoresed on denaturing gradient gels (1-mm thick, 6.5% polyacrylamide, 78 to 89% denaturant, where 100% denaturant contains 7 M urea and 40% formamide) at 48°C for 1,900 V · h using the Bio-Rad (Hercules, Calif.) DCode universal mutation detection system. Gels were stained for 30 min in TE with SYBR Gold (Molecular Probes, Eugene, Oreg.) and documented using the Alpha Imager 2000 (Alpha Innotech Corp., San Leandro, Calif.). Gel plugs were collected from all well-resolved bands in the profiles using wide-bore micropipette tips and stored in 50 μl of distilled water at −20°C. Gel bands were designated homoduplexes or heteroduplexes following previously described methods (25).

Amplimer cloning and identification of different cloned amplimer sequences. Amplimers from DGGE gel plugs were recovered by reamplification and cloned as described previously (14). Recombinant colonies were maintained on Luria-Bertani agar plates containing 100 μg of ampicillin ml−1. Clones were screened for appropriately sized insert by amplification using primers specific for the SP6 and T7 RNA polymerase binding sites (14). Restriction fragment length polymorphism analysis was employed to assess gel band amplimer composition (i.e., homogeneous or heterogeneous) and to identify different clones for sequencing (14).

DNA sequencing and analysis. Recombinant plasmids were purified from selected clones by using the Qiagen Plasmid Mini Kit. Plasmid concentrations were determined fluorometrically. Sequencing reactions used T7 and Sp6 primers and ABI (Applied Biosystems, Foster City, Calif.) BigDye version 2.0 chemistry. Sequences were determined using an ABI 3100 genetic analyzer. For phylogenetic reconstructions, nifH sequences from numerous different known diazotrophs and from various environmental sources were selected using the Blast search feature of the NCBI GenBank database (2). Nucleotide sequences were translated, and the inferred amino acid sequences were aligned (5) and checked by hand for proper alignment of conserved marker residues (14). Neighbor-joining phylogenies (30) were constructed in MEGA version 2.0 (12) using percent dissimilarity distances and pairwise deletion of gaps and missing data. The use of alternative amino acid distance measures (e.g., Poisson and gamma correction for multiple substitutions) or tree construction methods (neighbor joining or Unweighted Pair Group Method Using Arithmetic Averages) had no significant effect on the resulting dendrogram topology (data not shown). NifH amino acid sequences from Methanobacterium thermoautotrophicum (accession no. AE00916) and Methanosarcina barkeri (X56072) were used as outgroup taxa. Bootstrapping (6) was used to estimate the reliability of phylogenetic reconstructions (500 replicates).

All dead aboveground Spartina biomass samples yielded strong amplification products, although the North Inlet samples produced substantially stronger amplification than the Sapelo Island samples (Fig. 1). DGGE yielded 16 well-resolved nifH amplimer bands from North Inlet standing dead biomass and 9 bands from wrack. Due to somewhat lower yields of amplification products from the Sapelo Island samples, only five robust bands were recovered from the standing dead material and four bands from wrack. All of these bands were successfully sampled, and the amplimers were cloned and screened for unique sequences. An artifact band, which was described previously (25), was also observed in each sample lane. A total of 54 different partial nifH sequences were recovered from standing dead Spartina and 24 from Spartina wrack collected at North Inlet. Twenty-one different sequences were recovered from the standing dead material and 20 from the wrack from Sapelo Island.

FIG. 1FIG. 1
Denaturing gradient gel images showing nifH amplimers from dead aboveground Spartina biomass. PCR and DGGE conditions are described in Materials and Methods. Lanes: A, North Inlet standing dead Spartina; B, North Inlet Spartina wrack; C, Sapelo Island (more ...)

The partial nifH sequences were initially translated and examined for key, highly conserved amino acid residues that are important in nitrogenase iron protein structure and function (4, 24). Within the segments analyzed, 11 amino acids, including (Klebsiella pneumoniae [J01740] numbering) Lys15 and Ser16 (within the MgATP binding domain), Arg100 (the ADP-ribosylation site), Asp125 (possibly involved in protein conformation changes), Asp129 (involved in ATP hydrolysis), Arg140 and Lys143 (contribute to salt bridge formation), and four conserved Cys residues (numbers 38, 85, 97, and 132, two of which coordinate the Fe4S4 cluster), were used as markers for determining sequence accuracy. Four sequences had one substitution each: NIS2-1 and SIW2-6, Cys85 replaced by Arg85; NIS3-2, Ser16 replaced by Trp16; and NIW8-1, Cys97 replaced by Arg97. All sequences were used in subsequent analyses.

The sequences from dead aboveground Spartina biomass and their closest affiliations with known diazotrophs on the basis of sequence similarity are listed in Table 1. As has been reported in numerous previous studies of environmental nifH sequences (1, 3, 14, 29, 36, 41, 43, 44), these sequences fell into three major clusters. The overwhelming majority of dead Spartina nifH sequences were affiliated with a cluster defined by sequences from α-Proteobacteria and well supported by bootstrapping (Fig. 2). Forty-six of 54 sequences (85%) from the North Inlet standing dead sample, all 24 of the sequences from North Inlet wrack (100%), 19 of 21 sequences (90%) from the Sapelo Island standing dead sample, and 17 of 20 sequences (85%) from Sapelo Island wrack were from presumptive α-Proteobacteria. These sequences were further subdivided into a number of smaller clusters, some of which contained nifH sequences from known diazotrophs.

TABLE 1

Similarities of dead aboveground Spartina biomass NifH amino acid sequences to the most similar sequences from known diazotrophic bacterial speciesa

Dead Spartina sequence(s)Organism(s) with most similar sequence(s)% Similarity
Presumptive α-Proteobacteria
 NIS2-1Gluconacetobacter diazotrophicus95.2
 NIS2-2, NIS2-3, NIS4-2, NIS4-4, NIS5-1, NIS5-2, NIS6-1, NIS6-2, NIS7-1, NIS8-1, NIS9-2, NIS10-2, NIS12-3, NIS13-1, NIS13-2, NIW4-1, NIW6-2Rhodobacter sphaeroides94.4
 NIS3-1, NIS6-2, NIS7-3Azospirillum brasilense94.4
 NIS3-2, NIS9-1, NIS10-3, NIS14-1, NIS15-2, NIS15-4, NIS16-3Bradyrhizobium japonicum97.6
 NIS4-1Azospirillum brasilense, Gluconacetobacter diazotrophicus92.8
 NIS4-3Rhodobacter sphaeroides95.2
 NIS7-2, NIW2-3, NIW4-2, NIW5-1, NIW8-2, NIW8-3, NIW9-4Rhizobium sp.94.4
 NIS8-2Rhodobacter sphaeroides92.8
 NIS8-3, NIW3-1Rhodobacter sphaeroides96.0
 NIS10-1, NIS13-3Rhodobacter sphaeroides96.8
 NIS10-4Azospirillum brasilense88.0
 NIS11-1Rhodobacter capsulatus, Rhodobacter sphaeroides97.6
 NIS11-2Azospirillum brasilense92.0
 NIS11-3Rhodobacter sphaeroides98.4
 NIS12-1Bradyrhizobium japonicum, Rhizobium leguminosarum biovar phaseoli95.2
 NIS12-2Rhodobacter sphaeroides93.6
 NIS13-4Herbaspirillum seropedicae, Rhizobium sp.92.0
 NIS14-3, NIS14-4, NIS15-3, NIS16-4Rhodobacter sphaeroides97.6
 NIS15-1Azospirillum brasilense91.2
 NIS16-2, NIW8-1, NIW9-1Rhizobium sp.92.8
 NIW2-2, NIW6-3, SIS5-1Herbaspirillum seropedicae, Rhizobium sp.92.8
 NIW2-4Azospirillum brasilense, Gluconacetobacter diazotrophicus96.8
 NIW3-2, NIW6-1Herbaspirillum seropedicae, Rhizobium sp.92.0
 NIW3-3, NIW4-3, NIW5-2, NIW6-3, NIW7-1, NIW9-2, NIW9-3Rhizobium sp.93.6
 NIW4-4Azospirillum brasilense98.4
 NIW5-3Azospirillum brasilense, Gluconacetobacter diazotrophicus91.2
 SIS1-1, SIS4-4Azospirillum brasilense, Gluconacetobacter diazotrophicus94.4
 SIS2-1, SIS4-2Azospirillum brasilense100.0
 SIS2-2, SIW1-2Gluconacetobacter diazotrophicus94.4
 SIS2-3Gluconacetobacter diazotrophicus92.8
 SIS2-5Azospirillum brasilense92.8
 SIS2-6Gluconacetobacter diazotrophicus86.4
 SIS3-1Azospirillum brasilense95.2
 SIS3-2, SIW1-7Gluconacetobacter diazotrophicus97.6
 SIS3-3, SIS3-6Azospirillum brasilense93.6
 SIS3-4Azospirillum brasilense, Bradyrhizobium japonicum, Gluconacetobacter diazotrophicus, Rhodobacter sphaeroides93.6
 SIS3-5Gluconacetobacter diazotrophicus, Rhizobium sp.83.2
 SIS3-7Azospirillum brasilense, Gluconacetobacter diazotrophicus92.0
 SIS3-8, SIW2-3, SIW2-5Gluconacetobacter diazotrophicus93.6
 SIS4-1, SIW2-6Herbaspirillum seropedicae, Rhizobium sp.93.6
 SIS4-3Azospirillum brasilense99.2
 SIW1-5Azospirillum brasilense, Bradyrhizobium japonicum, Gluconacetobacter diazotrophicus, Rhizobium leguminosarum biovar phaseoli94.4
 SIW1-6Azospirillum brasilense, Gluconacetobacter diazotrophicus93.6
 SIW2-1Rhodobacter sphaeroides96.0
 SIW2-2Azospirillum brasilense96.0
 SIW2-4, SIW4-2Herbaspirillum seropedicae92.8
 SIW3-1Gluconacetobacter diazotrophicus96.0
 SIW4-1Gluconacetobacter diazotrophicus91.2
 SIW4-3Rhizobium sp.89.6
 SW4-4Azospirillum brasilense99.2
 SW4-5Azospirillum brasilense97.6
Presumptive γ-Proteobacteria
 NIS1-2Azomonas agilis, Azotobacter chroococcum95.2
 NIS1-3Azomonas agilis, Azotobacter chroococcum99.2
 NIS1-4Pseudomonas stutzeri98.2
 NIS11-4Azotobacter chroococcum, Azotobacter vinelandii84.9
 SIS2-4Vibrio diazotrophicus86.1
 SIS2-7Vibrio diazotrophicus84.2
 SIW1-4Azomonas agilis96.8
Presumptive anaerobes
 NIS1-1Desulfovibrio salexigens84.2
 NIS3-3Desulfonema limicola84.8
 NIS14-2Desulfonema limicola82.8
 NIS16-1Desulfovibrio salexigens88.1
 SIW1-1Desulfovibrio salexigens85.1
aPercent similarities are from the distance matrix constructed in MEGA version 2.0. Spartina sequences are listed by the DGGE gel bands from which they were recovered (see Materials and Methods) and grouped into the major sequence clusters shown in Fig. 2 to 4. Note that these clusters are named for the predominant types of organisms that they contain, but some sequences from other phylogenetic groupings can occur.
FIG. 2FIG. 2
Phylogenetic analysis of dead aboveground Spartina biomass NifH amino acid sequences from presumptive α-Proteobacteria, from various known α-Proteobacteria, and from selected unknown, presumptive α-Proteobacteria from other sources. (more ...)

Several sequences from North Inlet standing dead Spartina biomass were closely affiliated with purple nonsulfur bacteria, and seven had substantial similarity (≥96%) to the Rhodobacter sphaeroides NifH sequence (Table 1). Several sequences from all sample types were over 95% similar to the Gluconacetobacter diazotrophicus sequence. Another group of eight sequences from North Inlet samples were substantially similar (≥95%) to NifH sequences from rhizobia. Seven of these were over 97% similar to a Bradyrhizobium japonicum sequence. Another substantial sequence grouping, predominantly from the Sapelo Island standing dead sample, was strongly affiliated with the NifH sequence from Azospirillum brasilense. Four of these had 99% or greater similarity to the A. brasilense sequence, and two were identical to it. The NifH sequences of A. brasilense and Azospirillum lipoferum are 99.3% similar, so at least four of the dead Spartina biomass NifH sequences were very likely from Azospirillum species and two seemingly from a strain of A. brasilense. This finding confirms the prediction of Newell et al. (19) that Azospirillum-like organisms may be involved in degradation of standing dead Spartina biomass. There were also many sequences that were not closely affiliated with any known diazotrophs among the α-Proteobacteria. Blast searches of the NCBI GenBank database revealed only a few sequences from other types of environmental samples that had meaningful similarity to any sequences from dead aboveground Spartina biomass. Among these were four sequences recovered from the Spartina rhizosphere (14).

The second major cluster containing sequences from dead aboveground Spartina biomass was characterized by sequences from γ-Proteobacteria (Fig. 3). This cluster contained three sequences from standing dead Spartina whose positions were ambiguous. When these three sequences were omitted and the tree was reconstructed, the γ-Proteobacteria cluster was strongly supported by bootstrap analysis (60% for the cluster as a whole, 96 and 91% for the two major subclusters). Omitting these sequences also raised the bootstrap score for the α-Proteobacteria cluster from 76 to 99%. One of the remaining seven presumptive γ-Proteobacteria sequences was very strongly affiliated with the Azotobacteriaceae, with over 99% similarity to the NifH sequences of Azomonas agilis and Azotobacter chroococcum (Table 1). For comparison, the NifH sequences of A. chroococcum and Azotobacter vinelandii are 99.3% similar. Two other sequences also had substantial similarity (≥95%) to sequences from azotobacteria. The only other sequence with strong similarity to a sequence from a known organism was a North Inlet standing dead sequence that was >98% similar to the sequence from Pseudomonas stutzeri. As was the case for sequences from presumptive α-Proteobacteria, few environmental sequences were substantially similar to those from dead aboveground Spartina biomass, and these were from the Spartina rhizosphere.

FIG. 3FIG. 3
Phylogenetic analysis of dead aboveground Spartina biomass NifH amino acid sequences from presumptive γ-Proteobacteria, from various known γ-Proteobacteria, and from selected unknown, presumptive γ-Proteobacteria from other sources. (more ...)

Only five sequences recovered from dead aboveground Spartina biomass were affiliated with the remaining major NifH sequence cluster, the anaerobes (Fig. 4). While the closest affiliations of these sequences to any from known organisms were all with sulfate-reducing bacteria, none of the dead Spartina NifH sequences were sufficiently similar to any sequence from a known diazotroph to permit even presumptive identification. Two sequences from the North Inlet standing dead sample were similar to sequences from Spartina rhizosphere, but since the rhizosphere core samples contained both roots and sediments, and the dead aboveground biomass samples all carried a small amount of sediment, these sequences may be from sediment diazotrophs rather than species closely affiliated with the decomposing plant materials.

FIG. 4FIG. 4
Phylogenetic analysis of dead aboveground Spartina biomass NifH amino acid sequences from unknown, presumptive anaerobic bacterial sequences, from various known anaerobic bacteria, and from selected unknown, presumptive anaerobic bacteria from other sources. (more ...)

NifH sequences recovered from dead Spartina biomass reflected a diazotroph assemblage of very limited diversity, consisting almost exclusively of α-Proteobacteria. Some of these organisms are apparently related to known diazotrophs, including Azospirillum brasilense, Bradyrhizobium japonicum, Gluconacetobacter diazotrophicus, and Rhodobacter sphaeroides. Very few sequences from dead Spartina biomass were affiliated with the other major NifH sequence groups. However, it is noteworthy that among the few sequences recovered from presumptive γ-Proteobacteria, several were quite similar to those from known diazotrophs, including Azomonas agilis, Azotobacter chroococcum, and Pseudomonas stutzeri. While it is certainly possible that some sequences were lost due to PCR biases or other artifacts (25, 42), identical methods have yielded much more diverse sequence collections from other sample types (14; Lovell et al., unpublished data). It appears that while the relatively harsh (partially mineralized and frequently dry) microenvironments represented by dead aboveground Spartina biomass can support impressive rates of diazotrophy (19) when wet, they pose a substantial challenge for many diazotrophic biota and consequently harbor a very restricted range of organisms.

Nucleotide sequence accession numbers. The nifH sequences determined in this study are available in the GenBank database under accession numbers AF389702 to AF389823.

Acknowledgments

We acknowledge Steven Newell for assistance with Sapelo Island sampling site identification and the Belle W. Baruch Institute for Marine and Coastal Research for access to North Inlet sampling sites.

This research was supported by NSF award DEB-9903623 to C.R.L.

REFERENCES
1.
Affourtit, J; Zehr, J P; Paerl, H W. Distribution of nitrogen-fixing microorganisms along the Neuse River Estuary, North Carolina. Microb Ecol. 2001;41:114–123. [PubMed]
2.
Benson, D A; Boguski, M S; Lipman, D J; Ostell, J; Ouellette, B F F. GenBank. Nucleic Acids Res. 1998;26:1–7. [PubMed]
3.
Braun, S T; Proctor, L M; Zani, S; Mellon, M T; Zehr, J P. Molecular evidence for zooplankton-associated nitrogen-fixing anaerobes based on amplification of the nifH gene. FEMS Microbiol Ecol. 1999;28:273–279.
4.
Dean, D R; Jacobson, M R. Biochemical genetics of nitrogenase. In: Stacey G, Burris R H, Evans H J. , editors; Stacey G, Burris R H, Evans H J. , editors. Biological nitrogen fixation. New York, N.Y: Chapman and Hall; 1992. pp. 763–834.
5.
Devereux, J; Haeberli, P; Smithies, O. A comprehensive set of sequence analysis programs for the VAX. Nucleic Acids Res. 1984;12:387–395. [PubMed]
6.
Felsenstein, J. Confidence limits on phylogenies: an approach using the bootstrap. Evolution. 1985;39:783–791.
7.
Gallagher, J L; Reimold, R J; Linthurst, R A; Pfeiffer, W J. Aerial production, mortality, and mineral accumulation-export dynamics in Spartina alterniflora and Juncus roemerianus plant stands in a Georgia salt marsh. Ecology. 1980;61:303–312.
8.
Hanson, R B. Nitrogen fixation activity (acetylene reduction) in the rhizosphere of salt marsh angiosperms, Georgia, USA. Bot Mar. 1983;26:49–59.
9.
Head, I M; Saunders, J R; Pickup, R W. Microbial evolution, diversity, and ecology: a decade of ribosomal RNA analysis of uncultivated microorganisms. Microb Ecol. 1998;35:1–21. [PubMed]
10.
Kirshtein, J D; Paerl, H W; Zehr, J. Amplification, cloning, and sequencing of a nifH segment from aquatic microorganisms and natural communities. Appl Environ Microbiol. 1991;57:2645–2650. [PubMed]
11.
Kudo, T; Ohkuma, M; Moriya, S; Noda, S; Ohtoko, K. Molecular phylogenetic identification of the intestinal anaerobic microbial community in the hindgut of the termite Reticulitermes speratus, without cultivation. Extremophiles. 1998;2:155–161. [PubMed]
12.
Kumar, S., K. Tamura, I. B. Jakobsen, and M. Nei. MEGA2: molecular evolutionary genetics analysis, version 2.0. Bioinformatics, in press.
13.
Lovell, C R; Piceno, Y M. Purification of DNA from estuarine sediments. J Microbiol Methods. 1994;20:161–174.
14.
Lovell, C R; Piceno, Y M; Quattro, J M; Bagwell, C E. Molecular analysis of diazotroph diversity in the rhizosphere of the smooth cordgrass Spartina alterniflora. Appl Environ Microbiol. 2000;66:3814–3822. [PubMed]
15.
Marinucci, A C; Hobbie, J E; Helfrich, J V K. Effect of litter nitrogen on decomposition and microbial biomass in Spartina alterniflora. Microb Ecol. 1983;9:27–40.
16.
Morris, J T. Effects of nitrogen loading on wetland ecosystems with particular reference to atmospheric deposition. Annu Rev Ecol Syst. 1991;22:257–279.
17.
Newell, S Y; Fallon, R D; Cal Rodriguez, R M; Groene, L C. Influence of rain, tidal wetting and relative humidity on release of carbon dioxide by standing-dead salt-marsh plants. Oecologia. 1985;68:73–79.
18.
Newell, S Y; Fallon, R D; Miller, J D. Decomposition and microbial dynamics for standing, naturally positioned leaves of the salt-marsh grass Spartina alterniflora. Mar Biol. 1989;101:471–481.
19.
Newell, S Y; Hopkinson, C S; Scott, L A. Patterns of nitrogenase activity (acetylene reduction) associated with standing, decaying shoots of Spartina alterniflora. Estuar Coast Shelf Sci. 1992;35:127–140.
20.
Ohkuma, M; Noda, S; Usami, R; Horikoshi, K; Kudo, T. Diversity of nitrogen fixation genes in the symbiotic intestinal microflora of the termite Reticulitermes speratus. Appl Environ Microbiol. 1996;62:2747–2752.
21.
Olson, J B; Steppe, T F; Litaker, R W; Paerl, H W. N2-fixing microbial consortia associated with the ice cover of Lake Bonney, Antarctica. Microb Ecol. 1998;36:231–238. [PubMed]
22.
Olson, J B; Litaker, R W; Paerl, H W. Ubiquity of heterotrophic diazotrophs in marine microbial mats. Aquat Microb Ecol. 1999;19:29–36.
23.
Patriquin, D G; McClung, C R. Nitrogen accretion, and the nature and possible significance of N2 fixation (acetylene reduction) in a Nova Scotian Spartina alterniflora stand. Mar Biol. 1978;47:227–242.
24.
Peters, J W; Fisher, K; Dean, D R. Nitrogenase structure and function: a biochemical-genetic perspective. Annu Rev Microbiol. 1995;49:335–366. [PubMed]
25.
Piceno, Y M; Noble, P A; Lovell, C R. Spatial and temporal assessment of diazotroph assemblage composition in vegetated salt marsh sediments using denaturing gradient gel electrophoresis analysis. Microb Ecol. 1999;38:157–167. [PubMed]
26.
Piceno, Y M; Lovell, C R. Stability in natural microbial communities. I. Nutrient addition effects on rhizosphere diazotroph assemblage composition. Microb Ecol. 2000;39:32–40. [PubMed]
27.
Piceno, Y M; Lovell, C R. Stability in natural microbial communities. II. Plant resource allocation effects on rhizosphere diazotroph assemblage composition. Microb Ecol. 2000;39:41–48. [PubMed]
28.
Poly, F; Ranjard, L; Nazaret, S; Gourbière, F; Monrozier, L J. Comparison of nifH gene pools in soils and soil microenvironments with contrasting properties. Appl Environ Microbiol. 2001;67:2255–2262. [PubMed]
29.
Rosado, A S; Duarte, G F; Seldin, L; Van Elsas, J D. Genetic diversity of nifH gene sequences in Paenibacillus azotofixans strains and soil samples analyzed by denaturing gradient gel electrophoresis of PCR-amplified gene fragments. Appl Environ Microbiol. 1998;64:2770–2779. [PubMed]
30.
Saitou, N; Nei, M. The neighbor-joining method: a new method for reconstructing phylogenetic trees. Mol Biol Evol. 1987;4:406–425. [PubMed]
31.
Schubauer, J P; Hopkinson, C S. Above- and belowground emergent macrophyte production and turnover in a coastal marsh ecosystem, Georgia. Limnol Oceanogr. 1984;29:1052–1065.
32.
Shaffer, B T; Widmer, F; Porteous, L A; Seidler, R J. Temporal and spatial distribution of the nifH gene of N2-fixing bacteria in forests and clearcuts in western Oregon. Microb Ecol. 2000;39:12–21. [PubMed]
33.
Thomson, A D; Webb, K L. The effect of chronic oil pollution on salt-marsh nitrogen fixation (acetylene reduction). Estuaries. 1984;7:2–11.
34.
Tunlid, A. Molecular biology: a linkage between microbial ecology, general ecology and organismal biology. Oikos. 1999;85:177–189.
35.
Turner, R E. Geographic variations in salt marsh macrophyte production: a review. Contrib Mar Sci. 1976;20:47–68.
36.
Ueda, T; Suga, Y; Yahiro, N; Matsuguchi, T. Remarkable N2-fixing bacterial diversity detected in rice roots by molecular evolutionary analysis of nifH gene sequences. J Bacteriol. 1995;177:1414–1417. [PubMed]
37.
Valiela, I; Teal, J M. Nutrient limitation in salt marsh vegetation. In: Riemold R J, Queen W H. , editors; Riemold R J, Queen W H. , editors. Ecology of halophytes. New York, N.Y: Academic Press; 1974. pp. 547–563.
38.
Valiela, I; Teal, J M; Allen, S D; Van Etten, R; Goehringer, D; Volkmann, S. Decomposition in salt marsh ecosystems: the phases and major factors affecting disappearance of above-ground organic matter. J Exp Mar Biol Ecol. 1985;89:29–54.
39.
Ward, D M; Ferris, M J; Nold, S C; Bateson, M M. A natural view of microbial biodiversity within hot spring cyanobacterial mat communities. Microbiol Mol Biol Rev. 1998;62:1353–1370. [PubMed]
40.
Whiting, G J; Morris, J T. Nitrogen fixation (C2H2 reduction) in a salt marsh: its relationship to temperature and an evaluation of an in situ chamber technique. Soil Biol Biochem. 1986;18:515–521.
41.
Widmer, S; Shaffer, B T; Porteous, L A; Seidler, R J. Analysis of nifH gene pool complexity in soil and litter at a Douglas fir forest site in the Oregon Cascade mountain range. Appl Environ Microbiol. 1999;65:374–380. [PubMed]
42.
Zehr, J P; Capone, D G. Problems and promises of assaying the genetic potential for nitrogen fixation in the marine environment. Microb Ecol. 1996;32:263–281. [PubMed]
43.
Zehr, J P; Mellon, M; Braun, S; Litaker, W; Steppe, T; Paerl, H W. Diversity of heterotrophic nitrogen fixation genes in a marine cyanobacterial mat. Appl Environ Microbiol. 1995;61:2527–2532.
44.
Zehr, J P; Mellon, M T; Zani, S. New nitrogen-fixing microorganisms detected in oligotrophic oceans by amplification of nitrogenase (nifH) genes. Appl Environ Microbiol. 1998;64:3444–3450. [PubMed]
+ diff --git a/office/regression/000_000179.html b/office/regression/000_000179.html new file mode 100644 index 0000000..c035e24 --- /dev/null +++ b/office/regression/000_000179.html @@ -0,0 +1,311 @@ + + + Sandy Beaches-Section III + + + +iconicon
+
+

III. Beach Zonation

+See Figure 1 +icon +
+

A. Upper zone (also see Coastal Dunes section)

+
1. Environmental influences
+
+The upper intertidal zone is the most terrestrial of the beach environments. +It exhibits the widest range of heat and cold. Thus, desiccation is a significant +problem for marine organisms in the summer, and freezing is a problem in +the winter. Fresh water, both surface water from rainfall and subsurface +flow, can impact populations. Because of the limited inundation time, marine +food resources are limited. The high intertidal fauna consists mostly of +scavengers, which rely on "islands" of wrack material for sustenance. +The wrack communities go through successional stages, being colonized first +by highly motile talitrids and flies, with later colonization by terrestrial +isopods and beetles.
+
+
+2. Dominant species
+
+
+
Talitrid amphipods (see Bousfield 1957, Bowers 1964, Craig 1973)
+
+In the high intertidal, the dominant marine organisms, i.e. organisms which +rely on the ocean for survival, are talitrid amphipod crustaceans. Commonly +known as 'beach hoppers' or 'sand fleas', they are highly motile animals +which can either crawl or hop along the sand surface. They are well modified +for the high intertidal zone, having gills that function almost as lungs. +They only enter the ocean occasionally to re-wet their gill cavities, and +indeed will drown if submerged in sea water.
+
+Talitrids are generally nocturnal, both to reduce desiccation and limit +predation. They leave their shelter at night and migrate down the beach +searching for food. They are preyed upon by shorebirds and staphylinid beetles, +as well as unexpected predators such as foxes, raccoons, and burrowing owls. +While juveniles generally live beneath wrack, adults dig burrows to depths +of over 3 feet, which are guarded by males. Competition over females can +lead to territorial fights between males, after which amplexis takes place +in the winners burrow. Females brood their eggs in an internal brood pouch, +releasing fully active juveniles.
+
+Much work has been done on orientation in talitrids, which seem to rely +on subtle beach gradients and landmarks to navigate on wide beaches. They +are non-specific scavengers, ingesting plant and animal material, as well +as human debris such as paper. The two most common talitrid species are Megalorchestia (formerly Orchestoidea) corniculata and +M. californiana. M. californiana +is generally found on exposed beaches of medium and fine sand backed +by dunes. M. corniculata +is generally found on more sheltered pocket beaches with coarser sand. Less commonly found is M. +benediction, a smaller species found on transient pocket beaches with +course sand, and several others species are occasionally seen (M. columbine, +M. pugetensis, Traskorchestia traskiana).
+
+Because of their highly patchy distribution, it is difficult to get accurate +estimates of talitrid abundance, though they can be quite abundant (several +hundred/m²) in the early fall.
+
+
+Insects and kin
+
+Beach wrack is inhabited by a wide variety of insect and other arthropod +species. Coleopteran beetles and flies (Diptera) are the most abundant, +with 35 and 11 species respectively being found in one study. The larvae +of the flies feed on kelp and other beach wrack, while many of the beetles +are predaceous. Other groups include mites, spiders, pseudoscorpions, centipedes, +isopod crustaceans, hymenopterids (wasps), and orthopterids (Lavoie 1984). +
+
+
+Oligochaetes
+
+The only strictly infaunal organisms to inhabit the upper intertidal are +several species of oligochaetes. They can be found in large numbers, and +are somewhat tidally influenced (Locy 1981).
+
+
+

B. Mid zone

+
1. Environmental influences
+
+The mid-littoral zone is characterized by a moderate inundation time, but +is subject to many of the same rigors as the upper zone (temperature extremes, +fresh water). The mid zone is more subject to rapid sediment removal during +winter storms, requiring extreme mobility of its fauna.
+
+
+2. Dominant species
+
+
+
Excirolana spp. (see Enright 1965, Klapow 1972, Johnson 1976, Oakden +and Nybakken 1977)
+
+The dominant, defining species of the mid-littoral zone is the cirolanid +isopod, Excirolana. Excirolana is a carnivorous scavenger, +subsisting in Monterey Bay mostly on dead Emerita and Emerita +eggs, but vigorously attacking any animal material encountered. They +have been used by astute scientists to clean skeletons for laboratory use, and +will attack bathers' feet if left stationary for too long (pers. obs.). +Excirolana burrows into the top 1 cm of sediment at low tide, and +leaves the sand to swim rapidly about looking for food when inundated. This +rhythmic activity pattern persists for several days even after animals are +removed to laboratory aquaria. Females brood their young in a brood pouch. +The upper limit of their distribution is probably determined by having sufficient +inundation time for feeding, while the lower limit may be determined by +the mechanical stress of wave action. They are preyed upon by various shorebirds.
+
+The species generally encountered on exposed sandy beaches is Excirolana +linguifrons. They grow to a length of about 1 cm, and reach abundances +of over 800/m2. A larger (to about 1.5 cm), less common species is Excirolana +chiltoni, generally found on more sheltered beaches with coarser sediment. +Another cirolanid, Cirolana hardordi is found in large numbers in +sand patches in rocky intertidal zones.
+
+

C. Swash zone

+
1. Environmental influences
+
+The swash zone, where wave breaking and runup often occurs, is characterized +by the highest water movement, so consequently has a high degree of mechanical +stress and possibility of rapid sediment removal. It remains inundated over +half the time, and so is less subject to extremes of temperature and salinity.
+
+2. Dominant species
+
+
+
Sand crab (Emerita analoga) (see Efford 1965, Efford 1966, Dugan et al. 1991, +Myers et al. 1980)
+
+The dominant species in the swash zone is the hippid crab, Emerita analoga, +commonly known as the sand crab. Emerita is a filter feeder, facing +out to sea with only eyes and short first antennae exposed as a wave passes, +then filtering the receding waves through its feathery second antenna, which +it passes through its mouth to remove food particles. Sand crabs must be +highly active, moving and reburying themselves frequently, to maintain their +location on the beach.
+
+Sand crabs often form dense aggregations on beaches. These aggregations +move up and down and along the beach in response to tidal changes, and may +help to increase feeding efficiency or reduce predation. Females are generally +larger than males, with a large (3.5 cm) female carrying in excess of 20,000 +bright orange eggs. Larvae are broadcast into the water, where the planktonic +zoea stay for 3-6 months. Because of the long residence time in the plankton, +there is probably some intermingling of the Pacific coast populations of +Emerita.
+
+Emerita,
as the only widespread herbivore on the beach, serves as the +basis for much of the sandy intertidal food web. At high tide it is preyed +upon by several fishes, including surfperch (Embioticidae) and croakers (Scianidae). Numerous studies +have demonstrated its importance as a food source for shorebirds, including +plovers, sandpipers, sanderlings, and willets (e.g. see Pitelka 1978, Estelle +1991). When dead, it serves as the bulk of the diet of Excirolana and +the mole crab Blepharipoda. It is also is preyed upon by humans: +4,100 kg (roughly 2 million individuals) were taken for bait in southern +California in 1967 (Morris et al.1980).
+
+
+Archaeomysis (see Oakden and Nybakken 1977, Ricketts et al. +1968)
+
+The 2 cm glass shrimp, Archaeomysis grebnitzkii, is a mysid which +inhabits the swash zone and lower intertidal. They burrow into the top 1 +cm of the sand, and emerge at high tide to feed on zooplankton.
+
+
+Nephtys (see Clark 1962, Clark and Haderlie 1962)
+
+The errant polychaete Nephtys californiensis is a ubiquitous but +sparse (4-8/m2) resident of the swash zone and lower intertidal. It is found +on moderately exposed beaches with clean, well-sorted sand. Nephtys can +get quite large, to 30 cm, but individuals over 15 cm are rare. Nephtys +is generally carnivorous on other infaunal animals, and is found in +the top 5 cm of sediment.
+
+

D. Low intertidal zone

+See Figure 1 +icon +
+
1. Environmental influences
+
+The low intertidal zone, extending into the shallow subtidal, is almost +fully marine, being aerially exposed for short periods only on the lowest +tides. The low intertidal is subject to almost constant wave action, requiring +that the inhabitants be either rapid burrowers (e.g. Blepharipoda) +or protected against mechanical damage (e.g. Tivella). It houses +the most diverse faunal assemblage of the beach zones.
+
+
+2. Dominant species
+
+
+
Pismo Clam (Tivela stultorum) (see Coe and Fitch 1950, Morris et al. 1980, +Stephenson 1977).
+
+Until the early 1970's, the pismo clam, Tivella stultorum, was the +most characteristic species in the lower intertidal of the central California coast. There are records of +350,000 clams/year being harvested from central California in the 1930s; +plows were used to rake up clams at low tide. In the early 1970's, two factors +combined to eliminate the clam as a human food resource. First, overfishing +occurred, and was not solved by the institution of bag limits and a minimum +legal size of 4.5". However, legal-size clams were still occasionally +found on the beach in the early 70's, largely due to a huge breeding pool +of shallow-subtidal adults which were beyond the reach of clammers. However, +in 1972-73 the first wave of a resurgent sea otter population reached central +Monterey Bay, and around the same time reached Pismo Beach. Within a few +years the otters had consumed the subtidal clams. Now, while it is possible +to find occasional small pismo clams on the beach, generally the only sign +of adult clams are shells washed up on the beach exhibiting the characteristic +diagonal break of otter predation.
+
+Pismo clams can reach a length of over 15 cm, and inhabit shallow burrows +with their hinge facing seaward. They are filter feeders, with a medium-sized +clam capable of filtering 60 liters of water/day. They have a very heavy +shell, both to provide protection from breaking waves, and to give them +sufficient weight to burrow rapidly.
+
+
+Spiny Mole Crab (Blepharipoda)
+
+The spiny mole crab, Blepharipoda occidentalis, inhabits the low +intertidal zone, generally on beaches with Emerita populations. The +mole crab reaches a length of 6 cm, and can burrow very rapidly. They are +scavengers, subsisting mostly on dead Emerita, and are preyed on +by surfperch (Embioticidae), and in deeper water, by bat rays (Myliobatis +californica). Because of their rapid burrowing and the difficulty of +working in the surf zone, they are difficult to accurately sample, but are +found in densities of several dozen/m².
+
+
+Other Fauna
+
+A variety of other fauna are found in the lower zone of sandy beaches. Table +2, from Moss Landing beach, is a representative list of the fauna found +on exposed beaches throughout the MBNMS. Other species occasionally found +on MBNMS beaches include the bean clam (Donax gouldii), the Northern +razor clam (Siliqua patula), moon snails (Polinices lewisi), +the polychaete Euzonus (3 spp.) on more sheltered beaches, 2 cumaceans +(Anchicolorous occidentalis, Diastylopsis tenuis), and several +other species of beach hoppers (Megalorchestes columbiana, M. puggetensis, +M. benedicti, Traskorchestia traskiana).
+
+

E. Transient organisms

+
Sand dollar (Dendraster excentricus) (see Birkeland and Chia 1971)

+(also see Shallow Soft Bottom Habitats section) +

+Although not strictly an intertidal organism, the sand dollar Dendraster +excentricus is very commonly found washed up on MBNMS beaches, and in +sheltered beach environments outside the MBNMS does inhabit the intertidal +zone. Live sand dollars are gray, brown or purple, and covered with short +(2 mm) spines. The white tests of dead animals show the distinctive aboral +"petal" shapes, caused by the ambulacral (feeding) grooves.
+
+Dendraster are found from the shallow subtidal to depths of 30 m, +but on open MBNMS coastlines generally have a center of distribution at +around 7-10m. They form dense beds (more than 625/m²), with animals on +edge protruding at an angle from the sand, aboral sides facing into the +current. The beds occur off sandy beaches along much of the MBNMS, and are +particularly abundant in Monterey Bay.
+
+Dendraster are filter feeders, with food particles being trapped +by the spines on their surface and conveyed to their mouths. They spawn +into the water, with the eggs having a coating which seems to prevent them +from being eaten by the adults. Larvae are eaten, however, which means that +most recruitment takes place at the edge of beds, with individuals migrating +towards the center as they mature. They generally have successful recruitment +only every few years, leading to distinct size classes in beds. They are +fed on by bottom-feeding fish, particularly the starry flounder, and by +seastars such as Pisaster brevispinus and Pycnopodia healianthoides.
+
+
+Velella
(see Morris et al. 1980).
+
(also see Pelagic Zone section). +Velella velella is a pelagic Cnidarian (jellyfish) which generally +occurs floating on the surface in offshore waters worldwide. They have a +sail which is angled at 45° to their main body axis, either to the +right or left, so that animals drift to right or left of the true wind direction. +Right-handed Velellapredominate off California, meaning that the +prevailing northerly winds tend to hold the population offshore. However, +prolonged westerly or southerly winds, often found in the spring, can drive +them up on beaches in huge numbers. On beaches they don't seem to be fed +upon by the resident scavengers, but just dry up and blow away (pers. obs.).
+
+Velella was once thought to be a siphonophore, related to the Portuguese +Man-o-war, but is now known to be a hydrozoan. They reach a length of 8 +cm and are bright blue when alive, but turn transparent in death. They have +short tentacles, which hang into the water and capture plankton.
+
+
Next-Section IV. Selected Sandy Beach +Resources
+iconSandy Beaches Table of Contents
+
+
iconiconiconicon +icon +
+ + + diff --git a/office/regression/000_000180.html b/office/regression/000_000180.html new file mode 100644 index 0000000..18a54cf --- /dev/null +++ b/office/regression/000_000180.html @@ -0,0 +1,301 @@ + + + + + +Storm Effects - Photo Gallery + + + + + + + + + +USGS Home - www.usgs.gov
+Center for Coastal Geology Home + + + + + + + + + + +
+

Gulf of Mexico Tidal Wetlands

+

A Photo Gallery of Florida's Big Bend Tidal Wetlands

+
+ + + + + + + + + + + + + + + + + + + +
+ + + + +
Tidal Wetlands Home
+
+ + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + +
Photo Gallery:
+
+ + + + +
Introduction
+
+ + + + +
Geology
+
+ + + + +
Marsh Environments:
+
+ + + + + +
»Grasses
+
+ + + + + +
»Coastal Hammocks, Oyster Bars & Salt Barrens
+
+ + + + + +
»Mangroves
+
+ + + + +
Sabal Palm
+
+ + + + +
Resources
+
+ + + + +
Science
+
+ + + + +
Resilience
+
+ + + + + +
Storm Effects
+
+ + + + +
Map of Study Area
+
+
+
+ + + + +
Contact:
+Ellen Raabe
+
+
+

Storm Effects

+ + +

+ + + + +
 Tidal Creek Wrack +storm debris on marsh
+Storm tides, or surge, along this Florida coast often deposit thick piles of wrack on the marsh. This wrack is +composed mostly of the decaying stems of black needlerush. Black needlerush has a hollow, rounded leaf, that +floats easily and can be carried great distances by a storm surge.

+ +

In severe storms, wrack deposits can be found even in the coastal hammocks. This intrusion of salt water into +normally freshwater areas can stress the plants. Wrack deposits and salt-water inundation are not the only effects +from severe storms. Trees are also uprooted and die as a result of storm surge and wind.

+ +

Coastal hammocks occupying high elevations throughout the marsh have been exposed to increased tidal flow with +rising sea level. The loss of tree stands is attributed to tree damage, a gradual decline in health +from increased tidal flooding, and erosion of the organic soil layer.

+

+ + + + + + +
red cedar roots
Red cedar roots
 toppled red cedar near Suwannee River
Toppled red cedar

+ +
+  +top of page +

+ + +back to Resilience + |  +on to Map of Study Area + + +
+
+
+
+Coastal and Marine Geology Program > Center for Coastal Geology > Gulf of Mexico Tidal Wetlands > Photo Gallery > Storm Effects
+
+U.S. Department of the Interior | U.S. Geological Survey
+Center for Coastal Geology and Regional Marine Studies
+
+contact webmaster | USGS privacy policy & disclaimers
+
+This page is http://coastal.er.usgs.gov/wetlands/gallery/storms.html
+Updated March 19, 2001 @ 10:03 AM (THF)
+ + + diff --git a/office/regression/000_000182.html b/office/regression/000_000182.html new file mode 100644 index 0000000..a34e6d9 --- /dev/null +++ b/office/regression/000_000182.html @@ -0,0 +1,189 @@ + + + + +Coastal Wetlands + + + + + + + +
+ + + + + +
+ +
+
+ + +

Coastal Wetlands

+
+

Hurricanes and other storms generally produce damaging winds, storm tides, and rain that flood inland coastal areas as well as erode beaches and barrier islands. Coastal wetlands help to dissipate +the force of storm surges and can therefore lessen the impact of these storms on areas farther inland. Damage to these valuable coastal wetlands themselves however, can be quite severe. The effects of +high winds and storm surges are most apparent as continuous marsh is broken up into pieces, channels are filled with debris, and areas of marsh are converted into open water. (Figure 8a,b)

+

Other types of physical damage to coastal wetlands were evident following the passage of Hurricane Andrew. Most striking was the widespread lateral compression of marsh, resulting in a series of +accordion-like folds with ridges rising 2 m (7 ft) above the normal surface level.

+

In other areas, the marsh was scoured as portions were washed away, leaving open water. At some sites, large pieces of soil and vegetation were torn from the marsh and thrown to the tops of levees +or deposited into oil and pipeline canals, effectively blocking them. Some of these pieces were as large as a small car. Other marsh sites were covered with 1.5-2 m (5-7 ft) of wrack (plant debris), +which completely buried the existing vegetation. Areas that were not physically disrupted or covered with sediment or wrack also appeared to lose plant cover because the salty gulf waters driven +onshore by the hurricane "burned" the tops of the plants, killing the aboveground parts.

+
+ marsh breakup
+ Figure 8a,b - Two aerial photographs of coastal Louisiana, before and after Hurricane Andrew, show marsh break-up into open water.
+ NASA AMES 1990, 1993
+

Hurricane Andrew also introduced large amounts of sediment into these coastal marsh systems. In some cases, vegetation was completely buried while, in others, the sediment was deposited as a thin +layer on the marsh surface but did not smother plants. Sediments were deposited over large expanses of the coast, and even sites as far as 130 km (81 mi) from the path of the hurricane received +significant amounts.

+

Where did these sediments originate? Careful measurements of sediment characteristics indicated that some were introduced from outside the coastal marsh system, while others were redistributed from +the bottoms of shallow basins where the marsh substrate had eroded.

+

Coastal marshes closest to the path of the storm east of Atchafalaya Bay had the thickest deposit of storm-generated sediment, which was 10-16 cm (4-6 inches) deep and most probably came from the +bottom of Atchafalaya Bay. As the storm approached, water was pulled from the bay by the force of the storm, exposing the sediments of the shallow bay bottom. As the storm passed the bay, this water +rushed back in and the resulting storm surge of 1.8 m (6 ft) mixed these sediments into the water column. As the storm surge moved over the marsh, it deposited the sediments onto the surface.

+

Subsidence and lack of sediment are critical factors affecting wetland loss in coastal Louisiana. To remain stable, coastal marshes must grow in height as rapidly as they sink and sea level rises, +but many portions of coastal Louisiana are isolated from renourishment by sediment. Events such as winter storms and hurricanes, which suspend sediments in the water column, may partially off-set the +effects of subsidence and subsequent wetland loss by supplying needed sediment.

+
+Bayou Chitigue, Louisiana - Chart
+Figure 9 - Although winter storms and hurricanes can deposit great amounts of sediments and wrack on marshes (accretion), the height and stability of the marsh + sometimes remain unaffected.
+ NATIONAL BIOLOGICAL SERVICE
+

Not all hurricanes appear to contribute as much sediment to the coastal environment as Hurricane Andrew did. Whether they do depends on their idiosyncratic nature: wind velocity, storm tide height, +angle of approach to the shore, and the availability of a source of sediments. And even if hurricanes do contribute much sediment, it may not ultimately help certain coastal marshes maintain their +elevation relative to increasing sea level.

+

In studying the effects of Hurricane Andrew, scientists have found that, in certain areas of coastal Louisiana, even significantly increased contributions of sediment cannot completely counteract +subsidence patterns, and marshes will continue to be drowned and lost. (Figure 9) In other areas, additional sediment resulted only in a temporary increase in elevation that was slowly lost in +following years. The increases in elevation were short-lived phenomena and these sites are returning to prestorm conditions.

+

Proximity to the coast was not necessarily the primary factor that determined damage to wetland vegetation. In many cases, salt marshes closest to the path of the hurricane showed the least signs +of damage. On the other hand, freshwater plants in interior marshes suffered most from exposure to the moderately saline water that accompanied the storm surge as it moved inland. At research sites +20-40 km (12-25 mi) from the coast, the hurricane-induced storm surge was still 1.7 m (6 ft) high with a salinity of 10-15 parts per thousand-about half the salt in seawater. This saltwater +"burned," and in many cases killed, the aboveground portions of fresh marsh plants. This phenomenon was seen as far away as the Pearl River, located on the border of Louisiana and +Mississippi, over 180 km (112 mi) from the storm's eye. Most of the plants affected, however, began to resprout within six weeks of the storm.

+

Five days after the hurricane, the salinity of some interior marsh sites was still eight times higher than it was prior to the storm and, at one site in western Terrebonne Parish, a wedge of +saltwater was still evident below the marsh surface 55 days after the storm. Results from earlier studies of Louisiana wetlands indicate that impounded marshes suffer more extensive and long-term +effects from saltwater than do marshes that drain freely. In one instance, the vegetation of an impounded marsh on the chenier plain in southwestern Louisiana required four years to recover from the +entrapment of saltwater driven ashore by a hurricane storm surge.

+
+coverage chart +
+Figure 10 - Depending on the type of damage suffered, coastal marsh plants recovered at different rates and some have yet to recover.
+NATIONAL BIOLOGICAL SERVICE
+

At sites where researches had prestorm data, they were readily able to see how Hurricane Andrew caused changes in plant composition. Areas with different types of storm damage, including sediment +addition, wrack, lateral compression, and scoured marsh, were affected quite differently. (Figure 10)

+

Surfaces at the compressed-marsh sites were elevated, creating drier habitat. The most dramatic changes in species composition were in the compressed areas. Plants not typically found in coastal +marshes increased significantly because of the drier conditions. (Figure 11)

+
+folded land
+Figure 11 - Lateral compression caused the most significant damage and the longest recovery for coastal marshes.
+NATIONAL BIOLOGICAL SERVICE
+ +

Areas where sediment was deposited did not change substantially in species composition. In these sites, it is likely that the sediment will act as a fertilizer, increasing the growth of the +existing vegetation. In areas with wrack deposition, plants have recolonized very slowly because the wrack must first decay enough to allow plants to grow through the thick debris.

+

Virtually all of the study areas in the coastal marsh had some degree of disturbance after Hurricane Andrew. Although the kinds of species present in many sites changed, this change is likely to +persist only in areas of compressed marsh where increased surface elevations will last longer.

+

Ultimately, scientists have found that vegetation of these coastal marshes recovers fairly quickly from the impacts of hurricanes and other tropical storms. Even areas where the vegetation dies +back because of salt burn generally recover over time. Only in areas with dramatic changes, such as lateral compression, erosion, and wrack deposition, will long-term adverse effects be seen. (Figure +12a,b)

+
+satellite images
+Figure 12a,b - Satellite images interpreted by computer software show that large areas of Louisiana's coast were affected by Hurricane Andrew. Image (b) is an + enlargement of area marked with square on image (a).
+ NATIONAL BIOLOGICAL SERVICE
+

Areas where the marsh was totally lost are unlikely to recover, worsening the existing problems of coastal marsh erosion and degradation. In other cases, sediment added to the marsh surface +contributes to the health of these systems.

+

The overall firmness and "health" of the marsh strongly influence the degree to which it is affected by storms. Hurricane Andrew had a major impact on floating and weakly rooted wetlands, +but a much smaller effect on firmly rooted marshes. In the future, areas of degraded marsh will be more susceptible to increased erosion from hurricane winds and associated storm surges.

+

Levees surrounding impoundments can also isolate marshes from available sources of sediment, which can promote subsidence and result in marsh loss. The sediment that enters an impounded marsh as a +hurricane storm surge washes over the levee may be the only significant addition of sediment received by the marsh since its enclosure.

+

Hurricanes are valuable sources of sediment for coastal wetlands and may in the short-term be able to counteract subsidence and slow the process of the marsh's interior fragmentation and +degradation. Although these sediments may not completely counteract the subsidence associated with Louisiana's coastal wetlands, they are an important addition in areas cut off from normal sediment +supplies. Marsh managers should consider these often opposing effects when considering restoration and mitigation projects. The best way to protect wetlands from future hurricane destruction is to +promote the inorganic and organic accretionary processes that encourage a "healthy" marsh.

+ +

< Previous Page | Next Page >

+
+
+ + + + + +
Taken from:Guntenspergen, G.R., and B.A. Vairin. 1996. Willful Winds: Hurricane Andrew and Louisiana's Coast. Louisiana Sea Grant College Program, Baton + Rouge, LA, and U.S. Department of the Interior, Lafayette, LA. 16 pp.
+
+
+ + + + + diff --git a/office/regression/000_000183.html b/office/regression/000_000183.html new file mode 100644 index 0000000..9d05c71 --- /dev/null +++ b/office/regression/000_000183.html @@ -0,0 +1,536 @@ + + + + + + + + + + + + + + + + + MedlinePlus Herbs and Supplements: + + Seaweed, kelp, bladderwrack (Fucus vesiculosus) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Skip navigation +
MedlinePlus Trusted Health Information for YouU.S. National Library of MedicineNational Institutes of Health
+
+ + +
+ + + + +
+ +
+
+ Contact Us + FAQs + Site Map + About MedlinePlus + +
+
+
+ español + Home + Health Topics + Drugs & Supplements + Medical Encyclopedia + Dictionary + News + Directories + Other Resources +
+
+ +
+ + + + + + + + + + + + + +
+
+ Other herb and supplement names:  + + A  + B  + C  + D  + E  + F  + G  + H  + I  + J  + K  + L  + M  + N  + O  + P  + Q  + R  + S  + T  + U  + V  + W  + X  + Y  + Z  +
+ +

Seaweed, kelp, bladderwrack (Fucus vesiculosus)

+ + + + + +
Printer-friendly versionE-mail this page to a friend
+

+
+ + + + +
+ + + + + + + +
Contents of this page: +
 
+ +
+

+
+

+
+ + + + + + + +
Seaweed, kelp, bladderwrack
Seaweed, kelp, bladderwrack
+
+

+ +

BackgroundReturn to top +

+

+
+ + Fucus vesiculosus  is a brown seaweed that grows on the northern coasts of the Atlantic and Pacific oceans and the North and Baltic seas. Its name is sometimes used for  Ascophyllum nodosum , which is another brown seaweed that grows alongside  Fucus vesiculosus . These species are often included in kelp preparations along with other types of seaweed. +
+

+
+The Vietnamese, as well as other Asian populations, consume seaweed as food in various forms: raw in a salad and as a vegetable, pickled with sauce or with vinegar, as a relish or in sweetened jellies, and also cooked for vegetable soup. As an herbal medicine, seaweed has been used for traditional cosmetics, treatments for cough, asthma, hemorrhoid, boils, goiters, stomach ailments, and urinary diseases, and for reducing the incidence of tumors, ulcers, and headaches. Vietnam has an abundance of algae floral with a total number of species estimated to be nearly 1,000 of which there are 638 species of marine algae identified. +
+

+

+ +

SynonymsReturn to top +

+

+
+Black-tang, bladder, bladder fucus, bladderwrack, Blasen-tang, brown algae, common seawrack, cut weed, Dyers fucus, edible seaweed, fucoidan, fucoxantin, Fucus, green algae, Hai-ts'ao, kelp, kelpware, knotted wrack, Meereiche, Quercus marina, popping wrack, red algae, red fucus, rockrack, rockweed, schweintang, sea kelp, sea oak, seetang, seaware, seaweed, sea wrack, swine tang, tang, Varech vesiculeux, vraic, wrack. +
+

+

+ +

EvidenceReturn to top +

+

+

+These uses have been tested in humans or animals. Safety and effectiveness have not always been proven. Some of these conditions are potentially serious, and should be evaluated by a qualified healthcare provider. +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Uses based on scientific evidenceGrade*
Antibacterial/antifungal +

+Laboratory study suggests antifungal and antibacterial activity of bladderwrack. However, there are no reliable human studies to support use as an antibacterial or antifungal agent. +
C
Anticoagulant (blood-thinner) +

+Laboratory study has found anticoagulant properties in fucans or fucoidans, which are components of brown algae such as bladderwrack. However, there are no high quality human studies available to support this use. +
C
Antioxidant +

+Laboratory study suggests antioxidant activity in fucoidans, which are components in some brown algae. However, there is a lack of high quality human studies available to support use as an antioxidant. +
C
Cancer +

+Several brown algae, including bladderwrack ( Fucus vesiculosus ), appear to suppress the growth of various cancer cells in animal and laboratory studies. However, currently there is a lack of reliable human studies available to support a recommendation for use in cancer. +
C
Diabetes +

+Based on animal research, extracts of bladderwrack may lower blood sugar levels. However, there is a lack of reliable human studies available to support a recommendation for use in diabetes. +
C
Goiter (thyroid disease) +

+Bladderwrack contains variable levels of iodine. As a result, it has been used to treat thyroid disorders, such as goiters. While the evidence does suggest thyroid activity, there is not enough research to support this use of bladderwrack. +
C
Weight loss +

+Bladderwrack and other seaweed products are often marketed for weight-loss. However, safety and effectiveness have not been studied in humans. +
C
+
+

+*Key to grades +
A: Strong scientific evidence for this use; +
B: Good scientific evidence for this use; +
C: Unclear scientific evidence for this use; +
D: Fair scientific evidence against this use; +
F: Strong scientific evidence against this use. +

+

+Grading rationale +

+
+Uses based on tradition or theory +
+The below uses are based on tradition or scientific theories. They often have not been thoroughly tested in humans, and safety and effectiveness have not always been proven. Some of these conditions are potentially serious, and should be evaluated by a qualified healthcare provider. +
+

+Antiviral, atherosclerosis (hardening of the arteries), arthritis, benign prostatic hypertrophy (BPH or enlarged prostate), bladder inflammatory disease, eczema, edema, enlarged glands, fatigue, hair loss, heart disease, heartburn, herpes simplex virus, high cholesterol, kidney disease, laxative, lymphoma, malnutrition, menstruation irregularities, orchitis (swollen or painful testes), parasites, psoriasis, radiation protection, rheumatism, sore throat, stool softener, stomach upset, ulcer, urinary tract tonic.
+
+

+

+ +

DosingReturn to top +

+

+

+The below doses are based on scientific research, publications, traditional use, or expert opinion. Many herbs and supplements have not been thoroughly tested, and safety and effectiveness may not be proven. Brands may be made differently, with variable ingredients, even within the same brand. The below doses may not apply to all products. You should read product labels, and discuss doses with a qualified healthcare provider before starting therapy. +

+
+Adults (18 years and older) +
+
+Soft capsules (alcohol extract) in doses of 200 to 600 milligrams daily have been taken by mouth. Tablets have also been used, initially taken three times per day and gradually increased to 24 tablets per day. 16 grams of bruised plant mixed with one pint of water has been used, administered in 2 fluid ounce doses three times per day or an alcoholic liquid extract in a dose of 4 to 8 milliliters before meals. +
+

+
+Topical (on the skin) bladderwrack and seaweed patches are sold commercially as weight loss products, although there is a lack of commonly accepted or well tested doses. +
+

+
+Children (under 18 years old) +
+
+There is not enough scientific evidence to recommend the safe use of bladderwrack in children. Because of the iodine content and potential for contamination with heavy metals, it may be inadvisable for use in children. +
+

+

+ +

SafetyReturn to top +

+

+

+The U.S. Food and Drug Administration does not strictly regulate herbs and supplements. There is no guarantee of strength, purity or safety of products, and effects may vary. You should always read product labels. If you have a medical condition, or are taking other drugs, herbs, or supplements, you should speak with a qualified healthcare provider before starting a new therapy. Consult a healthcare provider immediately if you experience side effects. +

+
+Allergies +
+
+Avoid in individuals with an allergy/hypersensitivity to  Fucus vesiculosus , any of its components, or iodine, as sensitivity may occur. +
+

+
+Side Effects and Warnings +
+
+Most adverse effects appear related to the high iodine content, heavy metal, or other contamination of bladderwrack preparations, rather than to the seaweed itself. Because of the potential contamination of bladderwrack with heavy metals, its consumption should always be considered potentially unsafe. +
+

+
+Based on the known effects of iodine toxicity and case reports, the high iodine content in bladderwrack may lead to abnormal thyroid conditions. In theory, bladderwrack may increase or decrease blood thyroid hormone levels. In addition, acne-type skin lesions may occur, and there are reports of severe acne exacerbations with the use of kelp. Iodine may also cause a brassy taste, increased salivation, and stomach irritation. +
+

+
+Reports of kidney and nerve toxicity have occurred in persons taking seaweed/kelp, attributed to high levels of arsenic. Abnormal bleeding and reduced blood platelet count was attributed to contaminants in a kelp product. Bladderwrack may contain vitamins and minerals, calcium, magnesium, potassium, and sodium and may increase blood levels. +
+

+
+Extracts of bladderwrack may cause lowered blood sugar. Caution is advised in patients with diabetes or hypoglycemia and in those taking drugs, herbs, or supplements that affect blood sugar. Serum glucose levels may need to be monitored by a healthcare provider, and medication adjustments may be necessary. +
+

+
+Bladderwrack may have blood-thinning (anticoagulant) properties. Abnormal bleeding, petechiae, and autoimmune thrombocytopenic purpura with dyserythropoiesis have been reported. Caution is advised in patients with bleeding disorders or taking drugs that may increase the risk of bleeding. Dosing adjustments may be necessary. +
+

+
+Laxative properties have traditionally been attributed to chronic use of bladderwrack and other brown seaweeds and may be due to the component alginic acid, present in many laxative agents. +
+

+
+Pregnancy and Breastfeeding +
+
+Bladderwrack is not recommended during pregnancy or lactation due to a lack of reliable scientific information and because of the presence of high levels of iodine and possible heavy metal contamination. +
+

+

+ +

InteractionsReturn to top +

+

+

+Most herbs and supplements have not been thoroughly tested for interactions with other herbs, supplements, drugs, or foods. The interactions listed below are based on reports in scientific publications, laboratory experiments, or traditional use. You should always read product labels. If you have a medical condition, or are taking other drugs, herbs, or supplements, you should speak with a qualified healthcare provider before starting a new therapy. +

+
+Interactions with Drugs +
+
+In theory, the high iodine content of bladderwrack may interfere with the function of drugs that act on the thyroid such as levothyroxine (Synthroid®, Levoxyl®). Use of bladderwrack and amiodarone may alter thyroid function due to high iodine levels in both agents. Use of iodine-containing agents such as bladderwrack or kelp may alter thyroid function when used with lithium. Other endocrine hormones, estrogen levels, and progesterone levels may be affected and therefore bladderwrack may interacte with hormonal drugs. +
+

+
+Extracts of bladderwrack may cause lowered blood sugar. Caution is advised when using medications that may also lower blood sugar. Patients taking drugs for diabetes by mouth or insulin should be monitored closely by a qualified healthcare provider. Medication adjustments may be necessary. +
+

+
+Bladderwrack may have blood-thinning (anticoagulant) properties. Therefore, bladderwrack may increase the risk of bleeding when taken with drugs that increase the risk of bleeding. Some examples include aspirin, anticoagulants ("blood thinners") such as warfarin (Coumadin®) or heparin, anti-platelet drugs such as clopidogrel (Plavix®), and non-steroidal anti-inflammatory drugs such as ibuprofen (Motrin®, Advil®) or naproxen (Naprosyn®, Aleve®) .  + +
+

+
+Laxative properties have traditionally been attributed to chronic use of bladderwrack and other brown seaweeds and may be due to the component alginic acid, present in many laxative agents. Combination with laxatives may cause an additive effect. In theory, due to thyroid stimulant properties, bladderwrack may cause additive effects if taken with stimulants. The presence of heavy metal contaminants in bladderwrack preparations, including arsenic, cadmium, chromium, or lead, may increase the risk of kidney toxicity if taken with drugs that cause kidney damage. Bladderwrack may interact with diuretics. +
+

+
+Interactions with Herbs and Dietary Supplements +
+
+Extracts of bladderwrack may lower blood sugar levels. Caution is advised when using herbs or supplements that may also lower blood sugar. Blood glucose levels may require monitoring, and doses may need adjustment. +
+

+
+Bladderwrack may increase the risk of bleeding when taken with herbs and supplements that are believed to increase the risk of bleeding. Multiple cases of bleeding have been reported with the use of  Ginkgo biloba , and fewer cases with garlic and saw palmetto. Numerous other agents may theoretically increase the risk of bleeding, although this has not been proven in most cases. +
+

+
+Laxative properties have traditionally been attributed to the chronic use of bladderwrack and other brown seaweeds, and may be due to the component alginic acid, present in many laxative agents. Combination with laxatives may cause an additive effect. +
+

+
+In theory, due to thyroid stimulant properties, bladderwrack may cause additive effects if taken with herbs or supplements with stimulant-type activity, such as caffeine, guarana, or ephedra (ma huang). The presence of heavy metal contaminants in bladderwrack preparations, including arsenic, cadmium, chromium, or lead, may increase the risk of kidney toxicity if taken with herbs or supplements that can cause kidney damage. +
+

+
+In theory, bladderwrack may decrease iron absorption, especially if ingested for a prolonged period of time. Bladderwrack preparations contain variable levels of calcium, magnesium, potassium, sodium, vitamins, and minerals and may therefore increase corresponding blood levels. Bladderwrack may interact with diuretics. +
+

+

+ +

Methodology + Return to top +

+

+
+This information is based on a professional level monograph edited and peer-reviewed by contributors to the Natural Standard Research Collaboration (www.naturalstandard.com): Ethan Basch, MD (Harvard Medical School); Heather Boon, B.Sc.Phm, PhD (University of Toronto); Dawn Costa, BA, BS (Natural Standard Research Collaboration); Ivo Foppa, MD, PhD (Harvard University); Sadaf Hashmi, MD, MPH (Johns Hopkins School of Hygiene and Public Health); Beth N. Kerbel, PharmD (Northeastern University); Michael Smith, MRPharmS, ND (Canadian College of Naturopathic Medicine); David Sollars, M.Ac, H.M.C. (New England School of Acupuncture); Shaina Tanguay-Colucci, BS (Natural Standard Research Collaboration); Catherine Ulbricht, PharmD (Massachusetts General Hospital); Wendy Weissner, BA (Natural Standard Research Collaboration), Jen Woods, BS (Natural Standard Research Collaboration). +
+

+

+Methodology details +

+

+ +

Selected references + Return to top +

+

+
    +
  1. Amster E, Tiwary A, Schenker MB. Case report: potential arsenic toxicosis secondary to herbal kelp supplement. Environ Health Perspect 2007 Apr;115(4):606-8.
  2. +
  3. Clark CD, Bassett B, Burge MR. Effects of kelp supplementation on thyroid function in euthyroid subjects. Endocr Pract 2003;9(5):363-369.
  4. +
  5. Conz PA, La Greca G, Benedetti P, et al. Fucus vesiculosus: a nephrotoxic alga? Nephrol Dial Transplant 1998;13(2):526-527.
  6. +
  7. Durig J, Bruhn T, Zurborn KH, et al. Anticoagulant fucoidan fractions from Fucus vesiculosus induce platelet activation in vitro. Thromb Res 1997;85(6):479-491.
  8. +
  9. Eliason BC. Transient hyperthyroidism in a patient taking dietary supplements containing kelp. J Am Board Fam Pract 1998;11(6):478-480.
  10. +
  11. Ellouali M, Boisson-Vidal C, Durand P, et al. Antitumor activity of low molecular weight fucans extracted from brown seaweed Ascophyllum nodosum. Anticancer Res 1993;13(6A):2011-2020.
  12. +
  13. Lamela M, Anca J, Villar R, et al. Hypoglycemic activity of several seaweed extracts. J Ethnopharmacol 1989;27(1-2):35-43.
  14. +
  15. Le Tutour B, Benslimane F, Gouleau MP, et al. Antioxidant and pro-oxidant activities of the brown algae, Laminaria digitata, Himanthalia elongata, Fucus vesiculosus, Fucus serratus and Ascophyllum nodosum. J Applied Phycology 1998;10(2):121-129.
  16. +
  17. Müssig K, Thamer C, Bares R, et al. Iodine-induced thyrotoxicosis after ingestion of kelp-containing tea. J Gen Intern Med 2006 Jun;21(6):C11-4.
  18. +
  19. Nishiyama S, Mikeda T, Okada T, et al. Transient hypothyroidism or persistent hyperthyrotropinemia in neonates born to mothers with excessive iodine intake. Thyroid 2004;14(12):1077-1083.
  20. +
  21. Picco G, de Dios-Romero A, Albanell N, et al. [Regular intake of seaweed and hyperthyroidism]. Med Clin (Barc) 2006 Jul 1;127(5):199
  22. +
  23. Pye KG, Kelsey SM, House IM, et al. Severe dyserythropoiesis and autoimmune thrombocytopenia associated with ingestion of kelp supplements. Lancet 1992;339(8808):1540.
  24. +
  25. Shilo S, Hirsch HJ. Iodine-induced hyperthyroidism in a patient with a normal thyroid gland. Postgrad Med J 1986;62(729):661-662.
  26. +
  27. Skibola CF, Curry JD, VandeVoort C, et al. Brown kelp modulates endocrine hormones in female sprague-dawley rats and in human luteinized granulosa cells. J Nutr 2005;135(2):296-300.
  28. +
  29. Teas J, Braverman LE, Kurzer MS, et al. Seaweed and soy: companion foods in Asian cuisine and their effects on thyroid function in American women. J Med Food 2007 Mar;10(1):90-100.
  30. +
+

January 01, 2008.

+

+

+
Natural Standard Logo +This evidence-based monograph was prepared by the Natural Standard Research Collaboration. The information provided should not be used during any medical emergency or for the diagnosis or treatment of any medical condition. Talk to your health care provider before taking any prescription or over the counter drugs (including any herbal medicines or supplements) or following any treatment or regimen. Copyright© 2009 Natural Standard (www.naturalstandard.com). All Rights Reserved. +
+

+ + + + + + + + + + + + + + + diff --git a/office/regression/000_000184.html b/office/regression/000_000184.html new file mode 100644 index 0000000..6be54aa --- /dev/null +++ b/office/regression/000_000184.html @@ -0,0 +1,155 @@ + + + +Coastal Services (November/December 2005) - Storm Water Management: Putting Real Life to the Test in Connecticut + + + + + + + +
+
+
+

Coastal Services Center

+

National Oceanic and Atmospheric Administration

+
+
+
+ + + + + + + + + +Search >> +
+
+ +
+
+
+ + + + + + +
+ +
+

Beach Grooming: Raking Through the Issues in California

+
+ +
+
+ + + + + + + + +
"We’re trying to be more proactive than reactive."
Karen Martin, +
Pepperdine Universit
+
+ +

California is famous for its golden sandy beaches, attracting millions of tourists and their dollars every year. To keep the beaches tourist-brochure perfect, workers may mechanically rake a beach to remove trash left by beach goers, as well as kelp and debris washed ashore by the tides.

+

Researchers are finding that raking also can sweep away a myriad of small creatures that are vital to ecosystem health.

+

As a result, local beach managers, researchers, the California Coastal Commission, and others have teamed up to develop and encourage more ecologically friendly beach management practices, and to help educate the public about the need for more natural beaches.

+

“We’re trying to be more proactive than reactive,” says Karen Martin, a professor of biology at Pepperdine University in Malibu. “We’re definitely moving in the right direction here.”

+

Catchall

+

Beach grooming is practiced in many states and throughout the world, but the term is a catchall describing a variety of methods of raking, sieving, and bulldozing sand to remove material from a beach.

+

It is estimated that over a hundred miles of Southern California beaches are groomed, primarily by tractors with forks on the front and rakes on the rear. Six-wheel dump trucks haul kelp, trash, and debris off the beaches.

+

In San Diego, beach grooming has been regularly practiced since the 1960s, with reports of beach grooming from the 40s and 50s, says Dennis Simmons, beach manager for the city’s Park and Recreation Department.

+

Their operations consist of raking up and removing excess kelp, cleaning the sand of debris, which can include fire rings and dead animals such as seals and whales, and making sure lifeguards have emergency access to the water. They also empty 1,000 fifty-five-gallon trashcans and provide overall beach management, trail management, and bluff maintenance, Simmons says.

+

He notes that 35 to 40 percent of the city’s beaches are physically maintained, and the ones that are groomed “are the ones that have the greatest impact as far as our patrons are concerned.”

+

Beaches as Business

+

California’s beaches are recognized as an enormous economic engine in the state, drawing in billions of tourist dollars every year.

+

“We have 2 million people living in San Diego and 20 million tourists every year,” notes Simmons. “This is a significant economic issue, as well as an overall safety and cleanliness issue.”

+

He notes that San Diego beaches that receive grooming are often in large urban areas and are used daily by thousands of visitors year-round.

+

Beaches as Ecosystems

+

Ecologically, the state’s beaches are just as rich, says Jenny Dugan, associate research biologist at the Marine Science Institute at the University of California in Santa Barbara.

+

Each year, from March through July, grunion lay eggs in the sand on the beaches in Southern California, including many of the beaches in San Diego.

+

Grunion are fish that come ashore in California during particularly high nighttime tides to reproduce and lay their eggs. The eggs develop out of water while buried in the sand and hatch two weeks later when high tides enable the baby grunion to reach the sea.

+

Dugan notes that beach wrack—or the piles of kelp and plant and animal remains that are washed ashore by waves—are a valuable part of the marine ecosystem, providing microhabitat for a variety of animals. Many of these animals provide vital resources for shorebirds.

+

“While this may appear to beach visitors as unsightly debris, wrack accumulates and breaks down as a result of natural processes,” Dugan says. “Grooming removes or destroys the wrack and degrades the beach habitat.”

+

Cause for Concern

+

In the late 1990s, conservationists and scientists began expressing concerns that beach grooming could be harmful to birds and other species that reproduce and forage on the coast.

+

Simmons and the San Diego beach maintenance staff agreed to work with Martin to research the impact beach grooming had on the buried grunion eggs and later with Dugan to study the recovery of the animals dependent on beach wrack.

+

“You can’t ignore the public and various concerned groups,” Simmons says. “We share the concerns with them and want to find balance. We needed to find out what was happening.”

+

Research Results

+

Martin’s and Dugan’s research showed that aggressive mechanized grooming removes significant amounts of wrack and sand, and disturbs or destroys countless beach organisms, including grunion eggs.

+

Grooming also strips beaches of native plants and “embryo dunes,” making the shoreline more vulnerable to erosion.

+

“Wrack is an important coastal resource,” says Dugan. “The coastal ecosystem will benefit from changing or improving the management of this particular resource.”

+

With the research in hand, Simmons began educating his staff to recognize and avoid sensitive grunion breeding areas during spawning season and validated the city’s practice of not grooming below the line of high tide.

+

Coming Together

+

Simmons began calling beach managers from around the state to come together to talk about the research and how to improve beach-management practices in general.

+

In 2004, Martin hosted the first meeting of beach managers at Pepperdine University to discuss ecologically sound management practices and to educate beach managers and state agencies about the importance of protecting, restoring, and enhancing natural beach resources.

+

The working group for Beach Management in Ecologically Sensitive Areas meets twice a year. The group is in the process of incorporating as a nonprofit educational organization, the Beach Ecology Coalition.

+

“We plan to examine some standard practices,” Martin says, “and from those we can develop some options for best practices.”

+

For instance, during grunion season, almost all public beaches across the state now only groom beaches following a protocol distributed through the group, notes Jonna Engel, staff ecologist with the California Coastal Commission.

+

“Nothing is groomed below the highest high-tide mark, which is adjusted every two weeks to help the operators of the grooming tractors stay higher on the shore than the recently deposited eggs,” she says.

+

Alternative Approach

+

Besides participating in the meetings of the beach managers group, the California Coastal Commission has formed a beach grooming work group.

+

The work group is looking at “several beach grooming alternatives that are being discussed, promoted, and in several cases implemented by cities through permit conditions,” Engel says. Cities and counties are also being encouraged to voluntarily change their local coastal plans to address beach grooming.

+

Alternatives being promoted, she says, include no grooming, hand grooming, seasonal grooming, zonal or rotational grooming, and threshold grooming, or wrack removal beyond a certain density or height.

+

Changing Views

+

To educate the public and beach managers about these alternative practices and their benefits, the California Coastal Commission and the Beach Ecology Coalition plan to create a statewide natural beach ecosystem awareness campaign and to develop a statewide best beach management practices guide.

+

“We understand that the tourist draw is really important, but we feel that with education we can perhaps change the public’s viewpoint on what is a desirable beach,” Engel says.

+

Simmons also encourages other beach and coastal managers to start a dialogue with those performing beach grooming in their state.

+

“It’s very important,” Simmons says. “The best way to address issues is to first get them out on the table and talk about them.”

+

*

+

For more information on beach grooming in California, contact Karen Martin at (310) 506-4808, or Karen.Martin@pepperdine.edu, Jenny Dugan at (805)893-2675, or j_dugan@lifesci.ucsb.edu, or Jonna D. Engel at (805) 585-1821, or jengel@coastal.ca.gov. For more information on beach grooming in San Diego, contact Dennis Simmons at (858) 581-9975, or DJSimmons@sandiego.gov.

+
+
+ +

View Issue ContentsGo to Next Article
+ • Subscribe to MagazineView Other Issues

+
+ + +
+ + + diff --git a/office/regression/000_000185.html b/office/regression/000_000185.html new file mode 100644 index 0000000..874aada --- /dev/null +++ b/office/regression/000_000185.html @@ -0,0 +1,509 @@ + + + + + + + + + + + + + + + + + + + MedlinePlus hierbas y suplementos: + + Algas marinas, kelp, fuco negro (Fucus vesiculosus) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Omita y vaya al Contenido +
MedlinePlus Información de Salud para UstedLa Biblioteca Nacional de Medicina de EE.UU.Los Institutos Nacionales de la Salud
+
+ + +
+ + + + +
+ +
+ + +Contáctenos +FAQs - Preguntas más frecuentes +Índice +Sobre MedlinePlus + +
+
+
+ + + English + Página Principal + Temas de Salud + + Medicinas y Suplementos + + Enciclopedia Médica + + Tutoriales Interactivos + + Noticias + +
+
+ +
+ + + + + + + + + + + + + +
+
+ Otras hierbas y suplementos:  + + A  + B  + C  + D  + E  + F  + G  + H  + I  + J  + K  + L  + M  + N  + O  + P  + Q  + R  + S  + T  + U  + V  + W  + X  + Y  + Z  +
+ +

Algas marinas, kelp, fuco negro (Fucus vesiculosus)

+ + + + + +
Versión para imprimirEnviar esta página a un amigo
+

+
+ + + + +
+ + + + + + + +
Contenido: +
 
+ +
+

+
+

+
+ + + + + + + +
Algas marinas, kelp, fuco negro
Algas marinas, kelp, fuco negro
+
+

+ +

HistoriaVolver al comienzo +

+

+
+El  Fucus vesiculosus  es un alga parda que crece en la costa norte de los océanos Pacífico y Atlántico y en los mares del Norte y Báltico. En ocasiones se usa este nombre para denominar la  Ascophyllum nodosum , que es otra alga parda que crece junto a al  Fucus vesiculosus . Estas especies de algas son frecuentemente incluidas en preparados de kelp junto con otras variedades de algas marinas. +
+

+
+En Vietnam, así como en otras poblaciones asiáticas, las algas marinas se consumen como alimento que preparan de distintas formas: crudas en ensaladas y como vegetal, encurtidas en salsa o vinagre, como aderezos, o en la confección de jaleas dulces, y también cocinadas en sopa de vegetales. Como hierba medicinal, las algas marinas se han usado en la elaboración de cosméticos tradicionales, en tratamientos para la tos, asma, hemorroides, diviesos, bocio, malestares estomacales, enfermedades urinarias y para reducir la aparición de tumores, úlceras y dolores de cabeza. Vietnam posee gran abundancia de algas florales, con un total estimado en mil especies, de las que se han identificado unas 638. +
+

+

+ +

SinónimosVolver al comienzo +

+

+
+Black-tang, bladder, bladder fucus, bladderwrack, Blasen-tang, algas pardas, common seawrack, cut weed, Dyers fucus, algas marinas comestibles, fucoidán, fucoxantina, Fucus, algas verdes, Hai-ts'ao, kelp, kelpware, knotted wrack, Meereiche, Quercus marina, popping wrack, algas rojas, rockrack, rockweed, schweintang, sea kelp, sea oak, seetang, seaware, seaweed, sea wrack, swine tang, tang, Varech vesiculeux, vraic, wrack. +
+

+

+ +

EvidenciaVolver al comienzo +

+

+

+Se han sometido a prueba los siguientes usos en humanos o animales. La seguridad y eficacia de los mismos no siempre se han demostrado. Algunas de estas afecciones son potencialmente serias y las debe evaluar un proveedor médico calificado. +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Uso basado en evidencia científicaGrado*
Antibacteriano/antifúngico +

+Estudios de laboratorio sugieren actividad antifúngica y antibacteriana del fuco negro. Sin embargo, no se han realizado estudios confiables en humanos que apoyen su uso como agente antibacteriano o antifungicida. +
C
Anticoagulante (adelgazador de la sangre) +

+Estudios de laboratorio han descubierto propiedades anticoagulantes en el fucoidán o fucano, que son componentes de las algas pardas como el fuco negro. Sin embargo, no existen estudios disponibles y de buena calidad en humanos que apoyen este uso. +
C
Antioxidante +

+Estudios de laboratorio sugieren que el fucoidán, componente de algunas algas pardas, promueve la actividad antioxidante. Sin embargo, no se han realizado estudios en humanos de buena calidad que apoyen el uso como antioxidante. +
C
Cáncer +

+Según estudios en animales y de laboratorio, muchas de las algas pardas, incluido el fuco negro ( Fucus vesiculosus ), parecen suprimir el crecimiento de varios tipos de células cancerígenas. Sin embargo, no existen en la actualidad estudios confiables disponibles realizados en humanos para ofrecer una recomendación de su uso para tratar el cáncer. +
C
Diabetes +

+Según estudios realizados en animales, se cree que el extracto de fuco negro pudiera bajar los niveles de azúcar en la sangre. Sin embargo, no existen estudios disponibles ni confiables, realizados en humanos en que apoyar una recomendación en el tratamiento de la diabetes. +
C
Bocio (inflamación de la tiroides) +

+El fuco negro contiene diferentes concentraciones de yodo, por lo que se ha utilizado para tratar trastornos de la tiroides tales como el bocio. Aunque la evidencia sugiere actividad tiroidea, no existe suficiente investigación que apoye el uso de fuco negro en tratamientos de la tiroides. +
C
Pérdida de peso +

+El fuco negro y otros productos de algas marinas son frecuentemente publicitados en el mercado para perder peso. Sin embargo, su eficacia y seguridad no han sido estudiadas en humanos. +
C
+
+

+*Referencia para los grados: +
A: Sólida evidencia científica para este uso; +
B: Buena evidencia científica para este uso; +
C: Dudosa evidencia científica para este uso; +
D: Aceptable evidencia científica contra este uso; +
F: Sólida evidencia científica contra este uso. +

+

+Razones para los grados +

+
+Usos basados en la tradición o teoría +
+Los siguientes usos están basados en la tradición, teorías científicas o investigación limitada. A menudo no se han probado completamente en humanos y no siempre se han demostrado su seguridad y eficacia. Algunas de estas afecciones son potencialmente serias y las debe evaluar un proveedor médico calificado. Podría haber otros usos propuestos que no están señalados a continuación. +
+

+Antiviral, arteriosclerosis (endurecimiento de las arterias), artritis, hipertrofia benigna de la próstata (HPB o agrandamiento de la próstata), inflamación de la vejiga, cáncer cervical, cáncer de colon, eczemas, edemas, agrandamiento de glándulas, fatiga, enfermedades del corazón, caída del cabello, acidez estomacal, herpes viral simple, colesterol alto, enfermedades de los riñones, laxante, linfomas, desnutrición, menstruaciones irregulares, orquitis (testículos hinchados o dolorosos), parásitos, soriasis, protección contra la radiación, reumatismo, dolores de garganta, ablandador de materia fecal, malestares estomacales, úlceras, tónico para el tracto urinario.
+
+

+

+ +

SeguridadVolver al comienzo +

+

+

+La Administración de Drogas y Alimentos de EE.UU. (FDA) no regula las hierbas y suplementos de manera estricta. No hay garantías respecto a la potencia, pureza o seguridad de los productos, y los efectos podrían variar. Lea siempre las etiquetas del producto. Si usted padece de alguna afección, o si está tomando otras drogas, hierbas o suplementos, deberá consultar con un proveedor médico calificado antes de iniciar una terapia nueva. Consulte con un proveedor médico de inmediato si sufre efectos secundarios. +

+
+Alergias +
+
+Debe evitarse en individuos con alergias/hipersensibilidad al  Fucus vesiculosus,  a alguno de sus compuestos o al yodo ya que se puede presentar sensibilidad. +
+

+
+Efectos secundarios y advertencias +
+
+La mayoría de las reacciones negativas a estos preparados parecen relacionarse más con altos contenidos de yodo, de metales pesados, u otros tipos de contaminación, que con el propio fuco negro. Debido a la posible contaminación de éste con metales pesados, su consumo debe siempre ser considerado como potencialmente peligroso. +
+

+
+Según los efectos tóxicos conocidos del yodo y según casos reportados, su alta concentración en el fuco negro pudieran causar una afección anormal de la actividad tiroidea. En teoría, el fuco negro puede elevar o disminuir los niveles de la hormona tiroidea en la sangre. A ello debemos sumar la posibilidad de que pueda causar lesiones de acné. Existen datos sobre brotes severos de acné asociados al uso de kelp. El yodo, por otra parte, puede causar sabor metálico en la boca, aumentar la salivación y causar irritación en el estómago. +
+

+
+Existe también información con respecto a personas que desarrollaron enfermedades del riñón y toxicidad nerviosa a consecuencia del consumo de algas marinas/kelp, lo que se atribuye a su alto contenido de arsénico. El sangrado anormal y conteo insuficiente de plaquetas se atribuyó a los contaminantes presentes en un derivado de kelp. El fuco negro, por otro lado, puede contener vitaminas, minerales, calcio, magnesio, potasio y sodio y además puede elevar los niveles sanguíneos. +
+

+
+Los extractos de fuco negro pueden disminuir el nivel de azúcar en la sangre; se recomienda precaución en pacientes diabéticos o con hipoglucemia y en aquellos que estén tomando medicinas, hierbas o suplementos que afecten el nivel de azúcar en la sangre se recomienda prudencia. Se recomienda que un médico siga una estrecha vigilancia de los niveles de glucosa sérica, así como hacer ajustes en los medicamentos. +
+

+
+El fuco negro puede tener propiedades adelgazantes de la sangre (anticoagulante). Se han observado sangrado anormal, petequias y púrpura trombocitopénica autoinmune con diseritropoyesis. Los pacientes con trastornos de coagulación o que estén tomando medicamentos que puedan aumentar el riesgo de sangrado deben tener prudencia en el uso. Puede ser necesario ajustar las dosis. +
+

+
+A la ingesta constante del fuco negro y de otras algas marinas pardas tradicionalmente se le atribuyen propiedades laxantes, que pueden deberse a un componente, ácido algínico, que se encuentra en muchos agentes laxantes. +
+

+
+Embarazo y lactancia +
+
+No se recomienda el uso del fuco negro durante el embarazo ni durante el periodo de lactancia debido a la falta de información científica confiable, por la presencia de altas concentraciones de yodo y por la posible contaminación con metales pesados. +
+

+

+ +

InteraccionesVolver al comienzo +

+

+

+La mayoría de las hierbas y suplementos no se han probado completamente en cuando a la interacción con otras hierbas, suplementos, drogas o alimentos. Las interacciones que se señalan a continuación se basan en informes y publicaciones científicas, experimentos de laboratorio o uso tradicional. Siempre debe leer las etiquetas del producto. Si usted padece de alguna afección, o si está tomando otras drogas, hierbas o suplementos, deberá consultar con un proveedor médico calificado antes de iniciar una terapia nueva. +

+
+Interacción con otras drogas +
+
+En teoría, el alto contenido de yodo del fuco negro puede interferir con la función de drogas que actúan sobre la tiroides, tales como la levotiroxina (Synthroid®, Levoxil®). El uso de fuco negro y de amiodarona puede alterar la función tiroidea por causa del alto nivel de yodo en ambos agentes. El uso de agentes que contienen yodo, como el fuco negro y el kelp puede alterar la función tiroidea cuando se usan con litio. Otras hormonas endocrinas, los niveles de estrógeno y los niveles de progesterona, pueden resultar afectadas y por tanto el fuco negro puede interactuar con medicamentos hormonales. +
+

+
+Los extractos de fuco negro pueden disminuir el azúcar en la sangre. Se recomienda prudencia en el uso de medicamentos que también puedan disminuir el azúcar en la sangre. Aquellos pacientes que estén tomando drogas para la diabetes vía oral o insulina deberán recibir estrecha vigilancia por parte de un médico calificado. También puede ser necesario realizar un ajuste a la medicación. +
+

+
+El fuco negro puede tener un efecto adelgazante de la sangre (anticoagulante), por lo que su uso puede aumentar el riesgo de hemorragia si es usado en combinación con otras drogas que aumentan el riesgo de sangrado, como la aspirina, anticoagulantes (adelgazantes de la sangre) como la Warfarina (Coumadin®) o heparina, medicamentos contra plaquetas como clopidogrel (Plavix®), y drogas antiinflamatorias sin base de esteroides como ibuprofeno (Motrin®, Advil® o naproxen (Naprosin®, Aleve®). +
+

+
+Al uso constante de fuco negro y de otras algas pardas se le atribuyen tradicionalmente propiedades laxantes, lo que puede deberse al componente ácido algínico, presente en muchos agentes laxantes. El uso combinado con laxantes puede aumentar los efectos. En teoría, ya que posee propiedades que estimulan la tiroides, el fuco negro si se combina con estimulantes se puede sumar a los efectos. La presencia de metales pesados contaminantes, como arsénico, cadmio, cromo y plomo, en los preparados de fuco negro, puede aumentar el riesgo de toxicidad en el riñón si se combina con drogas que le causen daño al riñón. El fuco negro puede interactuar con los diuréticos. +
+

+
+Interacción con hierbas y suplementos dietéticos +
+
+Los extractos de fuco negro pueden disminuir los niveles de azúcar en la sangre. Se recomienda precaución en el uso de las hierbas y suplementos dietéticos que a su vez puedan disminuir el azúcar en la sangre. Puede ser necesaria una estrecha vigilancia de los niveles de glucosa en la sangre así como ajustar las dosis de medicación.. +
+

+
+El fuco negro puede aumentar el riesgo de sangrado si se combina con hierbas y suplementos. Se tiene evidencia de numerosos casos de sangrado asociados al uso de  Ginkgo biloba , y en menor número, de casos de sangrado asociados al ajo y palma enana americana. Muchos otros agentes pueden, en principio, aumentar el riesgo de sangrado, aunque esto no se ha comprobado en la mayoría de los casos. +
+

+
+A la ingesta constante del fuco negro y de otras algas marinas pardas se le atribuyen tradicionalmente propiedades laxantes, que pueden deberse a un componente, el ácido algínico, que se encuentra en muchos agentes laxantes. El uso combinado con laxantes puede aumentar los efectos. +
+

+
+Debido a propiedades que estimulan la tiroides, el fuco negro puede, en teoría, exacerbar los efectos si es combinado con hierbas o suplementos estimulantes, como cafeína, guaraná o efedra (ma huang). La presencia de metales pesados contaminantes en las preparaciones de fuco negro, como el arsénico, cadmio, cromo y plomo, puede aumentar el peligro de toxicidad en el riñón si se toman con hierbas o suplementos que pueden causar daño al riñón. +
+

+
+El fuco negro puede, en teoría, disminuir la absorción de hierro, especialmente si se toma por periodos prolongados de tiempo. Sus preparaciones contienen diferentes niveles de calcio, magnesio, potasio, sodio, vitaminas y minerales y por lo tanto podría aumentar los niveles sanguíneos correspondientes. El fuco negro puede interactuar con los diuréticos. +
+

+

+ +

MetodologíaVolver al comienzo +

+

+
+Esta información está basada en una monografía a nivel profesional editada y revisada por colaboradores del Natural Standard Research Collaboration (www.naturalstandard.com): Ethan Basch, MD (Harvard Medical School); Heather Boon, B.Sc.Phm, PhD (University of Toronto); Dawn Costa, BA, BS (Natural Standard Research Collaboration); Ivo Foppa, MD, PhD (Harvard University); Sadaf Hashmi, MD, MPH (Johns Hopkins School of Hygiene and Public Health); Beth N. Kerbel, PharmD (Northeastern University); Michael Smith, MRPharmS, ND (Canadian College of Naturopathic Medicine); David Sollars, M.Ac, H.M.C. (New England School of Acupuncture); Shaina Tanguay-Colucci, BS (Natural Standard Research Collaboration); Catherine Ulbricht, PharmD (Massachusetts General Hospital); Wendy Weissner, BA (Natural Standard Research Collaboration), Jen Woods, BS (Natural Standard Research Collaboration); Marilyn Zeledón (New England Translations). +
+

+

+Metodología + +

+

+ +

ReferenciasVolver al comienzo +

+

+
    +
  1. Amster E, Tiwary A, Schenker MB. Case report: potential arsenic toxicosis secondary to herbal kelp supplement. Environ Health Perspect 2007 Apr;115(4):606-8.
  2. +
  3. Clark CD, Bassett B, Burge MR. Effects of kelp supplementation on thyroid function in euthyroid subjects. Endocr Pract 2003;9(5):363-369.
  4. +
  5. Conz PA, La Greca G, Benedetti P, et al. Fucus vesiculosus: a nephrotoxic alga? Nephrol Dial Transplant 1998;13(2):526-527.
  6. +
  7. Durig J, Bruhn T, Zurborn KH, et al. Anticoagulant fucoidan fractions from Fucus vesiculosus induce platelet activation in vitro. Thromb Res 1997;85(6):479-491.
  8. +
  9. Eliason BC. Transient hyperthyroidism in a patient taking dietary supplements containing kelp. J Am Board Fam Pract 1998;11(6):478-480.
  10. +
  11. Ellouali M, Boisson-Vidal C, Durand P, et al. Antitumor activity of low molecular weight fucans extracted from brown seaweed Ascophyllum nodosum. Anticancer Res 1993;13(6A):2011-2020.
  12. +
  13. Lamela M, Anca J, Villar R, et al. Hypoglycemic activity of several seaweed extracts. J Ethnopharmacol 1989;27(1-2):35-43.
  14. +
  15. Le Tutour B, Benslimane F, Gouleau MP, et al. Antioxidant and pro-oxidant activities of the brown algae, Laminaria digitata, Himanthalia elongata, Fucus vesiculosus, Fucus serratus and Ascophyllum nodosum. J Applied Phycology 1998;10(2):121-129.
  16. +
  17. Müssig K, Thamer C, Bares R, et al. Iodine-induced thyrotoxicosis after ingestion of kelp-containing tea. J Gen Intern Med 2006 Jun;21(6):C11-4.
  18. +
  19. Nishiyama S, Mikeda T, Okada T, et al. Transient hypothyroidism or persistent hyperthyrotropinemia in neonates born to mothers with excessive iodine intake. Thyroid 2004;14(12):1077-1083.
  20. +
  21. Picco G, de Dios-Romero A, Albanell N, et al. [Regular intake of seaweed and hyperthyroidism]. Med Clin (Barc) 2006 Jul 1;127(5):199
  22. +
  23. Pye KG, Kelsey SM, House IM, et al. Severe dyserythropoiesis and autoimmune thrombocytopenia associated with ingestion of kelp supplements. Lancet 1992;339(8808):1540.
  24. +
  25. Shilo S, Hirsch HJ. Iodine-induced hyperthyroidism in a patient with a normal thyroid gland. Postgrad Med J 1986;62(729):661-662.
  26. +
  27. Skibola CF, Curry JD, VandeVoort C, et al. Brown kelp modulates endocrine hormones in female sprague-dawley rats and in human luteinized granulosa cells. J Nutr 2005;135(2):296-300.
  28. +
  29. Teas J, Braverman LE, Kurzer MS, et al. Seaweed and soy: companion foods in Asian cuisine and their effects on thyroid function in American women. J Med Food 2007 Mar;10(1):90-100.
  30. +
+

+ 01 Enero de 2008.

+

+

+
Natural Standard Logo + Copyright© 2009 Natural Standard Inc. Se prohíbe la distribución o reproducción comercial. +La información en esta monografía tiene la intención de servir para fines informativos únicamente, y está diseñada para ayudar a los usuarios a aclarar sus inquietudes de salud. La información está basada en la revisión de datos de investigación científica, patrones históricos de práctica y experiencia clínica. Esta información no se debe interpretar como un consejo médico especifico. Los usuarios deben consultar con un proveedor médico calificado para preguntas específicas respecto a terapias, diagnósticos y/o enfermedades, antes de tomar decisiones acerca de una terapia. +
+

+ + + + + + + + + + + + + + + + diff --git a/office/regression/000_000186.html b/office/regression/000_000186.html new file mode 100644 index 0000000..ac170b2 --- /dev/null +++ b/office/regression/000_000186.html @@ -0,0 +1,339 @@ + + + + + + + + + Issue 25  Summer 2004 + + + +
+
+Issue 25 +
+Summer +2004
+

 

+ + + + + + + +

+
 
+ + + + + + + + + + + +
                         +
Drifting +Seeds and other Treasure
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
National +Weather +Service
+
+
Melbourne, +FL
+
 
+
Your Local +Weather Experts !!!
+

+
+
General +Info
+
+
Who +We Are
+
+
Contact +Us
+
+
News +& Notes
+
+
Customer +Service
+
+
Research +Activities
+
+
Weather +Forum
+
+
Questions +and Answers
+
+
Feedback
+
+
Neat +Stuff
+
+
Weather +Trivia
+
+
Office +Tour
+
+
Partners
+
+
SKYWARN
+
+
COOP +Volunteers
+
+
Previous +Issues
+
+
Issue #24
+
 
 
 
 
 
 
 
 
 
 

+
+
  +

                                                                               + Along the east coast of Florida, September and October are +typically the most bountiful times to find drifting seeds also known by +collectors as "sea beans".  Tidal cycles leave behind sea beans +along with seaweed, driftwood, tar, trash, and other floatable +items.  This line of debris on the beach is called a wrack.  + With each successive tide, the wrack is pushed farther +toward the dune line.  However, sometimes a high tide will sweep +over the wrack and pull it back out to sea, carrying the seaweed and +drift seeds to another beach.  Ocean currents, connected to each +other in a huge global transit system, can carry sea-beans from current +to current. A seed from Jamaica could conceivably travel to Florida, +then to Long Island, and then across the Atlantic to the United Kingdom.

+

In Eastern Florida, +the ability to find drift seeds on the beach is affected by a number of +conditions. The prevailing winds perhaps being the most dominant +condition affecting abundance. With an East wind (i.e., wind from +the east), the winds affect floating objects and blow them westward +toward Florida's eastern shore. The best time of year for this to begin +to occur is in October, but it continues throughout the winter. Note, +however, that sea-beans can be found throuthout the year, but are +simply much more abundant at some times of the year.
+
+Additionally, the proximity of the swift Gulf Stream current carry +sea-beans close to Florida's eastern coast.  Sea beans have a +shorter distance to be pushed westward toward Florida's eastern shore.

+________________________________________________________________________________

+

How +the Treasure Coast got its name

+

When viewing our text +products one will occasionally see a reference to the Treasure +Coast.  The Treasure Coast is roughly the coastal area bordered +from Sebastian Inlet from the north to Jupiter inlet to the South. +  
+

+

On July 31, 1715, a savage +hurricane swept across the Bahama Channel from the northeast, catching +in its path a large Spanish treasure fleet on its way from Havana to +Spain.  It was a disaster to the fleet and to the King of Spain +Phillip V.  His fortunes rose and fell with the arrival or loss of +the fleet as he often faced bankruptcy. This fleet was very important +because it was the first fleet leaving the new world in four +years.  It carried an accumulation of gold and silver coins and +bullion from the New World mints.

+

To the fleet, it was chaos. There +were twelve vessels, five of these from General Ubilla's Nueva Espana +fleet, six of General Echeverz Galcones fleet and a French vessel. The +French vessel accompanied the fleet back to Spain for protection and +was the only one that survived. The rest of the fleet disintegrated on +the jagged coral reefs of Florida between Fort Pierce and Sebastian +Inlet.

+
Over +seven hundred lives were lost, including General Ubilla, and $14 +million in gold and silver was scattered over the beaches and reefs a +few hundred yards offshore. There was a salvage effort by the Spanish, +but when their work was done, a great quantity of treasure remained +undiscovered. One of the survivors, Captain Sebastian Mendez, the pilot +of Nuestra Senora del Carmen, spoke of a hurricane that came on from +the east-northeast so strongly that although he has sailed the seas for +many years and suffered through many tempests he has never seen another +like it for violence, and his ship and all the rest were lost.  +Today treasure still continues to be found from these wreck sites off +the Florida Coast and along the beaches after storms.
+
+

 

+
 
+
+  +
+ + + + + + + +

+
The +NWS Melbourne +Digest is an informal publication designed to inform customers of +weather +related news, specific events and other items of interest related to +the +operations and outreach of the NWS Forecast Office Melbourne, FL. +

Comments and +suggestions +may be directed to the editor.

+
+
+ + + + + + + +

+
.
+
+  +
+  +
+  + + diff --git a/office/regression/000_000188.html b/office/regression/000_000188.html new file mode 100644 index 0000000..7237b7f --- /dev/null +++ b/office/regression/000_000188.html @@ -0,0 +1,2162 @@ + + + + + + + + +FIGURE 1-1-1 + + + + + + + + + + + + +
+ +

FIGURE +7-1-1. +Historical maps depicting the evolutionary changes for Croatan Sound and +opening of Roanoke Marshes between Croatan and Pamlico Sounds. Notice the +dramatic changes in inlet location through the barrier islands, the habitat +changes within Croatan Sound due to current scour, and the slow dissection of Stumpy Point Lake by +the receding shoreline. Maps are not to the same scale. PANEL A. Map of Moseley dated 1733. PANEL B. Map of Collet dated 1770. PANEL C. Map of Price and Strother dated 1808. PANEL D. Map of MacRae and Brazier dated 1833. All four maps are +from Cumming (1966).

+ +
+
+ +

 

+ +

FIGURE +7-1-2. +Longitudinal cross section along the channel thalweg of Pamlico Creek on the +south, across the interstream divide at Roanoke Marshes, through the channel +thalweg of Croatan Creek, and into the Roanoke + River on the north. This section shows the general antecedent or +paleotopography of the Pleistocene surface and thickness of Holocene sediment +that infilled the channel in response to estuarine flooding by rising sea level +during the past 10,000 years. Figure is modified from Riggs et al. (2000).

+ +
+
+ +

 

+ +

FIGURE 7-1-3. Side-scan sonar images of Croatan Sound bottom +showing relict geologic units exposed on the sound floor. All images are about +200 meters in width. PANEL A. A +scour channel located in the center span of the old Croatan bridge (U.S. +Highway 64) shows linear dark gray patterns (areas of low reflectance) +resulting from the exposure of organic-rich mud sediments. These mud sediments +infilled Croatan Creek during estuarine flooding in response to rising Holocene +sea level. Today, these muds are being severely eroded by the modern flow +channel displayed in bathymetric profiles on Figure 7-1-4. Also, notice the linear white sand deposits +(areas of high reflectance) that occur in the lee (south) of each bridge +piling. The broad white reflectance pattern on the north side of the bridge is +the sonar shadow with refraction patterns from the bridge pilings. PANEL B. A shallow, sand-covered +Pleistocene platform on the western side of old Croatan bridge (see bathymetric +profiles on Fig. 7-1-4). The +extensive white pattern is due to the high reflectance character of quartz sand +that dominates the platform tops with sand waves having about 10 meter +wavelengths. Also, notice the linear scarp that has been eroded into an older +mud or peat sediment unit buried below the surficial sand to the east. PANELS C and D. The highly irregular, +mottled pattern is the erosional character of marsh peat that crops out on the +sound bottom along the southwest side of Roanoke Island. +These are the basal remnants of the Roanoke Marshes peat deposits. The peat +deposit is dissected by paleo-tidal creeks (smooth areas) that were backfilled +with soft mud and very fine sand. These channel fill muds erode faster than the +associated peat producing lower depressions. The dark gray pattern of peat, +closest to the center line, grades to white away from the center line, due to +the shadow effect of eroding 3-D peat blocks on the sound floor. The peat +blocks range from 1 to 5 meters across with vertical relief up to 1 meter. See +Figure 7-1-2 for the general +location of these eroded peat remnants of Roanoke Marshes.

+ +
+
+ +

 

+ +

FIGURE +7-1-4. +Composite of four bathymetric profiles along the south side of the old Croatan +bridge (U.S. Highway 64). The profiles include a general interpretation and +reconstruction for 1817 based upon old maps (see Fig. 7-1-1), the U.S. +hydrographic Survey profile H257 of 1851, a 1954 N.C. Department of +Transportation profile made during the pre-construction survey along the +proposed bridge location, and an October 1997 profile from Rudolph (1999). +Comparison of these profiles supply the baseline information concerning +shoreline and bathymetric changes along the old Croatan bridge corridor through +time. Figure is modified from Riggs et al. (2000).

+ +
+
+ +

 

+ +

FIGURE +7-1-5. +Portion of a satellite image (EOSAT from SPACESHOTS, Inc.) of the Cedar Island area +showing the modern process of drowning across the Carteret Peninsula +interstream divide. The vast Cedar Island Juncas roemarianus marsh (gray color) occurs on the interstream divide +between West Thorofare and Thorofare Bays. With +continued flooding due to rising sea level and shoreline erosion, the marsh +will rapidly disappear and eventually form an open Thorofare Sound. This is a +modern analog for the transition of Croatan Creek to Croatan Bay and finally +Croatan Sound.

+ +
+
+ +

+ +

FIGURE +8-1-1. Map +shows the location of estuarine shoreline erosion sites in northeastern North + Carolina included in the present study (Chapter +8).

+ +
+
+ +

 

+ +

FIGURE 8-2-1. +Photographs of the Hatteras Overwash site. PANEL +A. Looking east along the north side of the eroding marsh platform. The +outer zone has been totally stripped of marsh grass during winter storms. PANEL +B. Close-up of the peat surface in the outer zone that has been stripped of +marsh grass and is now dominated by green algae. PANEL C. Close-up of +outer edge of eroding marsh platform with a large eroded peat block lying in +the adjacent shallow waters. The marsh grass is Spartina alternaflora. +Photograph is from Murphy (2002). PANEL D. Looking east along the inner +zone of the marsh platform and the adjacent zone of scrub-shrub that occupies +the higher elevation of a more recent overwash fan. Notice the extensive +accumulation of wrack along the inner zone of the Juncus roemarianus +marsh platform. PANEL E. Looking west along the strandplain beach +associated with an overwash fan that occurs to the immediate west of the marsh +platform. Notice the minor amounts of dead submerged aquatic vegetation (SAV) +that has accumulated locally on this summer beach. PANEL F. Same +location as Panel E, but now the fall strandplain beach is covered with an +extensive accumulation of dead SAV.

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-2-2. +The Hatteras Overwash site 1998 Digital Orthophoto Quarter Quadrangle (DOQQ) +with digitized shorelines for 1962 and 1998.

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-2-3. +The Hatteras Overwash site aerial photograph +time slices from 1945, 1962, and 1989. The 1945 photo predates construction of +N.C. Highway 12 and regular maintenance of the associated barrier-dune ridges. +Consequently, this barrier segment is dominated by active overwash processes. +However, in the 1962 post-Ash Wednesday storm photograph, the overwash is +significantly diminished in magnitude. The difference probably reflects the +presence of an elevated N.C. Highway 12 roadbed and reconstruction of the +associated barrier-dune ridge. The 1989 photo shows no overwash due to a major +barrier-dune ridge with increased vegetation growth along the landward side.

+ +

 

+ +
+
+ +

 

+ +

 

+ +

FIGURE 8-2-4. +Photographs of the Buxton Inlet site. PANEL +A. Summer photograph looking north along the backside of the marsh platform +with Spartina alternaflora in bright green and Juncus roemarianus +in dark green colors. PANEL B. +Winter photograph looking north along the backside of the marsh platform with +the marsh grasses partially eroded off the peat surface. Notice the scarped +outer marsh edge and the irregular geometry to the marsh shoreline due to +active shoreline erosion processes. PANEL C. Winter photograph looking +south along the marsh platform. Notice that there is some sand available to +form a high water sand berm on top of the marsh platform. PANEL D. +Summer photograph looking north along the backside of the marsh platform. +Notice the abundant sand available to form a major strandplain beach in front +of and temporarily protecting the outer scarped marsh. Also, notice the dead +submerged aquatic vegetation (SAV) that formed wrack berms at three different +previous water levels. Photograph is from Murphy (2002). PANEL E. Winter +photograph looking east across the inner portion of the marsh platform, the narrow +scrub-shrub zone, and the newly constructed barrier-dune ridge on the east side +of the new N.C. Highway 12. Notice the beach berm in the lower right hand +portion of the photo that is composed of a lower sand component and two upper +SAV wrack components. Also, behind the wrack berms is an irregular patch of +rafted wrack within the transition zone vegetation. PANEL F. Looking +east at the newly constructed and vegetated barrier-dune ridge built to protect +the post-Hurricane Dennis (1999) N.C. Highway 12 relocation. These structures +eliminate the overwash and inlet processes that built this portion of the +barrier island and are necessary for maintaining the island for the long term. +Without overwash and inlet processes supplying sand to the estuarine side, +estuarine erosion rates increase causing the barrier to narrow through time.

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-2-5. PANEL A. A 1992 oblique aerial photograph looking north towards Avon and showing three previous locations of N.C. +Highway 12, two of which are going-to-sea highways. Notice the small marsh +platforms that occur along the back side of the barrier. The dark vegetation +occurring between the marsh platforms and upland overwash fans, is dense +scrub-shrub growing around the outer lobe of older overwash fans. PANEL B. A +1999 post-Hurricane Dennis aerial photograph (N.C. +Department of Transportation) showing N.C. Highway 12 (#3) going to sea and +the newly relocated N.C. Highway 12 (#4). The new highway was built on the west +side of the power lines in the 1992 photograph. However, there is no room to +move the road further west in the future, as the island continues to narrow in +response to shoreline erosion that is taking place on both sides of the +barrier.

+ +
+
+ +

 

+ +

FIGURE 8-2-6. +The Buxton Inlet site 1998 Digital Orthophoto Quarter Quardrangle (DOQQ) with +digitized shorelines for 1962, 1974, and 1998.

+ +

 

+ +

 

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-2-7. +The Buxton Inlet site aerial photograph time +slices from 1962, 1964, 1983, and 2000. In the post-Ash Wednesday noreaster +storm aerial photo of 1962, notice the extensive overwash zone and the newly +opened Buxton Inlet. In the 1964 photograph, notice the extensive sand body, or +flood-tide delta, that developed on the sound side behind Buxton Inlet. The +Inlet was closed by the U.S. Army Corps of Engineers using sand dredged from +the dark rectangular holes in the flood-tide delta immediately behind the +former inlet. In the 1983 and 2000 photos, notice the two different segments of +N.C. Highway 12 on the left side of the photo that were sequentially relocated +prior to each photograph. Also, notice the numerous and extensive sand mines +(red stars in 2000 photo) that were dredged up to 20 feet deep between 1964 and +1983. The sand was used to close the inlet and for several ocean beach +nourishment projects. The deep holes allow for increased wave action adjacent +to the estuarine shoreline and prevents existing offshore sands from moving +into the back-barrier system, causing increased rates of estuarine shoreline +recession.

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-2-8. +Photographs of the Salvo Day-Use site. PANEL +A. Winter photograph looking north along the outer portion of the peat +platform. Low wind tide has exposed the eroding wave-cut scarp in peat along +the front side of the marsh platform. Notice that the outer zone is stripped of +marsh vegetation by storms and is rapidly colonized by green algae. PANEL B. +Winter photograph looking south along the outer portion of the peat platform +during low wind tide. Notice how different layers of peat are eroded off in a +stair-step fashion and the occurrence of a high water berm composed of dead +submerged aquatic vegetation (SAV) with no sand. PANEL C. Close-up of +the eroding marsh during a low wind tide. Notice the tough modern root mass +forms a sloping overhang (on the left side of the photo) as the softer +underlying peat (visible on the lower right side) is easily eroded. PANEL D. +Close-up of a block of the modern, root-bound, upper peat surface as it begins +to finally crack and break off. PANEL E. Summer photograph of the very +narrow Spartina alternaflora marsh platform in front of a sand upland +dominated by maritime forest and the Salvo cemetery. Notice the occurrence of a +high-water level, thin sand berm perched on top of the marsh platform and a +low-water level, SAV wrack berm without any sand. Photograph is from Murphy +(2002). PANEL F. Winter photograph taken at the same spot as Panel E. +Notice that there are two SAV wrack berms with most of the sand gone that was +associated with the upper sand berm in the previous photo. Also, the marsh +grasses have been mostly stripped off the peat surface due to winter wave +action.

+ +

 

+ +

 

+ +
+
+ +

 

+ +

FIGURE +8-2-9. The Salvo Day-Use site 1998 Digital +Orthophoto Quarter Quadrangle (DOQQ) with digitized shorelines for 1962 and +1998.

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-2-10. +The Salvo Day-Use site aerial photograph +time slices from 1962, 1978, and 1983. In the 1962 photograph, notice that even +though N.C. Highway 12 and associated barrier dune ridges were in place prior +to the Ash Wednesday noreaster storm, the old overwash pattern was +re-established as the cross-island water flowed into Pamlico Sound through the existing +channel structures on either side of the study area. The ongoing process of +estuarine shoreline erosion through time is obvious along the outer edge of the +impoundment in the upper left portion of the photo sequence (1962 to 1983). By +1998 (Fig. 8-2-9) ongoing shoreline +recession has eroded through the adjacent dike and exposed an ever increasing +length of the north-south ditch to the open waters of Pamlico Sound.

+ +

 

+ +
+
+ +

 

+ +

 

+ +

FIGURE 8-2-11. +Photographs of Jockeys Ridge site. PANEL +A. An oblique aerial photograph showing Jockeys Ridge State Park and the irregular +geometry of the estuarine low sediment bank shoreline. Photograph is from the +Field Research Facility of the U.S. Army Corps of Engineers. PANEL B. +Looking north along the eroding low sediment bank shoreline composed entirely +of sand and covered with various types of grass vegetation. The low wind tide +has exposed the extremely broad and well developed strandplain beach that +consists of an upper portion occupied during high wind tides and a lower +portion occupied during low wind tides. Notice the grassed slump blocks that +have collapsed in front of the wave-cut scarp. PANEL C. Close-up view +looking south along the eroding low sediment bank shoreline and associated +upper strandplain beach. Rapid recession of the wave-cut scarp has required the +observation platform, that was sitting on top of the low sediment bank, to be +repiled and braced. Notice the exposed roots in the wave-cut scarp. PANEL D. +Photo during a low wind tide from a marsh headland and looking east into a +cove. The shoreline is a low sediment bank covered generally by pine trees and +a very broad and well developed strandplain beach. PANEL E. Photo +looking southwest from inside the cove towards the marsh headland of Panel D. +The abundant dead pine trees in the nearshore and on the strandplain beach +demonstrate the active rates of shoreline recession.

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-2-12. +The Jockeys Ridge and Nags Head Woods sites 1998 Digital Orthophoto Quarter +Quadrangle (DOQQ) with digitized shorelines for 1964 and 1998.

+ +

 

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-2-13. +The Jockeys Ridge site aerial photograph +time slices from 1962, 1971, and 1989. In 1962, the study site behind Jockeys +Ridge was essentially all active sand dune with very little vegetation. Erosion +of the dune field provided the sand for an extensive strandplain beach. A large +portion of the dune field along Roanoke Sound became vegetated with pine and +scrub-shrub through time, as indicated on the 1971 and 1989 aerial photographs. +This changed the small-scale pattern of the shoreline from a smooth curved +shoreline to the present irregular shoreline with numerous vegetated headlands +and coves (Fig. 8-2-11).

+ +

 

+ +
+
+ +

 

+ +

FIGURE +8-2-14. Comparison of barrier +island systems and the estuarine shorelines on aerial photographs from October +1932 and November 1999 for the northern portion of Nags Head including Jockeys +Ridge and Seven Sisters Dune fields. This segment is a complex barrier island +(Fig. 4-5-1B) that is not dominated by overwash. Thus, the back-barrier +estuarine shoreline is not under the influence of oceanic processes. Rather, it +totally responds to estuarine erosion dynamics similar to mainland estuarine +system. PANEL A. This 1932 aerial +photo predates any major shoreface modification such as construction of barrier +dune ridges that would have inhibited the overwash process. However, N.C. +Highway 12 had just been constructed and you can see the original beach houses +built in the late 1800s along the ocean shoreline. Notice the village of Old + Nags Head on the estuarine side of the island. +The Jockeys Ridge and Seven Sisters back-barrier dune fields are extensive and +very active. The photos were flown after a major noreaster in March 1932 for +the Beach Erosion Board (1935) as background data for a beach erosion study +(Field Research Facility, U.S. Army Corps of Engineers). PANEL B. This barrier island segment has been dominated by +construction and continuous maintenance of extensive barrier dune ridges since +the late 1930s, along with massive urbanization that has minimized oceanic +processes and allowed for the extensive growth of a major vegetative cover. +Since the estuarine shoreline is dominated by erosion, wherever development +occurs the shoreline has been extensively bulkheaded. However, the shoreline +behind Jockeys Ridge consists of portions of the older back-barrier dune field +that have been partially stabilized by vegetation. Consequently, this area is +now in an erosional mode, resulting in a low sediment bank shoreline with a +well developed sand strandplain beach. The photo was flown by the N.C. +Department of Transportation to evaluate shoreline erosion and the condition of +N.C. Highway 12 following Hurricane Dennis (9/1999).

+ +

 

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-2-15. +The Seven Sisters Dune Field site in a 1932 aerial photograph (Field +Research Facility, U.S. Army Corps of Engineers) with digitized shorelines (blue) and roads (red) from the 1998 +DOQQ.

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-2-16. +Photographs of Nags Head Woods site. PANEL +A. Winter photograph looking northeast along the eroding edge of a narrow +marsh platform towards a small segment of low sediment bank dominated by a +maritime forest of pine trees. Notice the irregular erosional geometry of the +marsh peat shoreline. PANEL B. Summer photograph looking the opposite +direction to Panel A, southwest along the eroding edge of a narrow marsh +platform that fronts an upland region dominated by a maritime forest of pine +trees. The outer zone of marsh grass is a mixed assemblage of Spartina +patens and Juncus roemarianus, while the inner zone of tall grass is +Spartina cynusoroides. PANEL C. Close-up winter photograph +looking southwest along the eroding edge of a marsh platform. Notice the two +large eroded peat blocks sticking out of the water just to the right of the +eroding shoreline. PANEL D. Close-up view of an eroding marsh peat +headland along the shoreline in Panel C during a low wind tide. The deeply +undercut modern root zone, slopes steeply into the water. A subsequent storm, +with a high wind tide and wave action, will cause the overhanging block to +break off and produce an offshore peat block as is seen in Panel C. PANEL E. +Close-up view of low sediment bank shoreline that occurs in the distance in +Panel A. The low wind tide has exposed the rippled sand flats of the lower +portion of the strandplain beach. Notice the many trees with the root +structures exposed by the erosional processes. PANEL F. Close-up view of +a dead live oak tree on the lower portion of the strandplain beach. The entire +root system has been exposed through the erosion of the upland soil.

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-2-17. The Nags Head Woods site aerial photograph time slices +from 1940, 1964, 1975, and 1983. These photographs show the four major +geomorphic components of this complex barrier island segment. In the 1940 +aerial photograph, the modern beach prism and active back-barrier dune field +were essentially uninhabited and only slightly vegetated. These two segments +have since undergone major urbanization along with significant levels of +vegetative stabilization by pines. Nags Head Woods, an older back-barrier dune +field that contains a major maritime forest and abundant inter-dunal +fresh-water lakes, has remained essentially unchanged through the same time +period. The marsh peat platform has accumulated up to 10 feet of peat that is +systematically burying the irregular paleotopography of the Nags Head Woods +dune field in response to ongoing rise in sea level. Notice the long fingers of +maritime forest (red color on the 1983 photograph) growing on the dune sands +that extend across the marsh platform (dark green color). The Nature +Conservancys Roanoke Trail follows one of these features to the study site +(red stars).

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-2-18. Photographs of the Duck Field Research Facility site. PANEL +A. An oblique aerial photograph showing the densely vegetated character of +the estuarine shoreline at the Duck site. The narrow, outer and lighter green +colored zone is marsh grass, whereas, the darker zone between the marsh and +N.C. Highway 12, is dense scrub-shrub growing on top of the low sediment bank.

+ +

Oblique aerial +photograph is from the Field Research Facility of the U.S. Army Corps of +Engineers. PANEL B. Winter photograph looking north along the +strandplain beach towards the eroded low sediment bank scarp in the distance on +the right side of the photo. Notice the fringing marsh consisting primarily of Juncus +roemarianus in the foreground and Phragmites australis in the +background. In the middle of the strandplain beach is a wrack berm composed of +dead marsh grasses. PANEL C. Summer photograph looking east across the +shoreline to the upland scrub-shrub. The shorter grass in the foreground is Juncus +roemarianus with Phragmites australis in the background.

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-2-19. The Duck Field Research Facility 1998 Digital Orthophoto Quarter Quadrangle (DOQQ) with digitized shorelines for 1986, 1992, and +1998.

+ +

 

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-2-20. The Duck Field Research Facility site aerial photograph +time slices from 1986, 1992, 1997, and 2000. Notice how the fringing marsh +along this low sediment bank shoreline fluctuates through time. In 1986, the +fringing marsh occurs only in the southern section of the study area and by +1992 there is no fringing marsh in the study area. A very wide and dense +fringing marsh occurs throughout the entire study area in 1997 and by 2000, the +shallows in front of the access area (red stars) have opened slightly.

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-3-1. Maps of northern Roanoke Island +showing the average annual estuarine shoreline erosion rates by shoreline +segment, shoreline types, types and locations of shoreline erosion control +structures, and the relationship between erosion rates and distance of open +water (fetch) that impact different shoreline segments. Actual erosion rates for any given shoreline segment are dependent +upon the type of shoreline in concert with the fetch and a whole series of +other variables (see chapter 5). PANEL +A. Map shows the average annual estuarine shoreline erosion rate data of +Dolan and others (1972, 1986). The erosion data generally predate the construction +of most erosion control structures. Due to the high erosion rates, much of the +shoreline has now been armored and is now relatively stable but without sand +beaches (Fig. 8-3-2B). The map also shows the location and type of structures, +as well as the distribution of shoreline types used in the present study. PANEL B. Map showing the differences in amount +of fetch around the northern end of Roanoke Island.

+ +

 

+ +
+
+ +

FIGURE +8-3-2. Photographs of the +north Roanoke Island site. PANEL A. March 2001 photograph looking east along the +bluff to high sediment bank shoreline of segment 6 (Fig. 8-3-1A). Photo is from +Dough Cemetery at the east end of segment 5 containing the rock revetment. The +eroding bluff shoreline decreases in elevation to a high sediment bank in the easterly +direction. Notice the extensive overhang of the modern root-bound soil mat. +This overhang will ultimately collapse, dropping the associated trees onto the +bluff and strandplain beach where the continuous supply of trees and shrubs +provides an evolving natural debris groin field. The increased size of the +strandplain beach in the distance marks the beginning of segment 7 containing a +wooden groin field. PANEL B. March 2001 photograph looking east along +the rock revetment of segment 5 (Fig. 8-3-1A). The rock revetment was built in +1980 by the U.S. National Park Service to abate the 22.4 ft/yr of shoreline +recession between 1969 to 1975 (Table 8-3-1). Notice that there is no +strandplain beach in front of this rock revetment. PANEL C. June 2001 +photograph looking west along eroding sediment banks of segment 6 (Fig. +8-3-1A). The photo shows the amount of recession of the unmodified sediment +bank shoreline (segment 6) since 1980. PANELS D and E. March 2002 +close-up views of the wave-cut scarp along segment 6 (Fig. 8-3-1A). Notice that +the bluff is composed entirely of clean sand except in the zone labeled as a +paleosol where a thin layer of sand is bound by organic matter and stained by +iron oxide. Due to the composition, large blocks of sand slump off the bluff +and form a sediment apron along the back side of the strandplain beach (below +the white dashed lines). During subsequent high tides, waves systematically +erode the slump aprons, forming the cuspate scarps and reworking sand into the +strandplain beach.

+ +


+

+

+ +

FIGURE +8-3-3. The north Roanoke +Island site 1998 Digital Orthophoto Quarter Quadrangle (DOQQ) with digitized +shorelines for 1969, 1975, and 1998.

+ +

 

+ +
+
+ +

 

+ +

FIGURE +8-3-4. The north Roanoke +Island site aerial photograph time slices from 1969 and 1994. Crab Claw Spit +formed over time from high rates of sediment bank erosion on the north end of +Roanoke Island and the associated long-shore currents driven by northwest +storms. However, during the latter part of the twentieth century, the amount of +sediment feeding Crab Claw Spit rapidly diminished as most of the north end of +Roanoke Island was stabilized (Fig. 8-3-1A). Loss of the sediment source led to +destabilization, breakup, and rapid eastward migration of the Spit remnants as +demonstrated in the 1994 photo. As the Spit moves, shorelines formerly +protected behind the Spit, become re-exposed to open water and increased rates +of shoreline erosion. The red star marks the same spot on both photographs.

+ +

 

+ +
+
+ +

 

+ +

FIGURE +8-3-5. Photographs of the Woodards Marina site. PANEL A. Summer photograph looking south into the three common zones that +characterize swampforest shorelines. The photo is taken from within the ghost +swampforest of zone 3 and backed by the dense growth of Spartina +cynosuroides that characterizes the middle zone 2 that is utilized as the +shoreline. Behind the marsh grasses is the dense and living swampforest of zone +1. PANEL B. Winter photograph looking west along the swampforest +shorelines from the same general location as Panel A. PANEL C. Close-up +photo of the shoreline (zone 2) characterized by a small sand berm upon which +supports the dense growth of Spartina cynosuroides. Photograph is from +Murphy (2002). PANEL D. Close-up photo of the cypress trees and +associated knees that are the last survivors within zone 3 as the shoreline of +zone 2 moves landward.

+ +

 

+ +
+
+ +

 

+ +

FIGURE +8-3-6. The Woodards Marina +site 1998 Digital Orthophoto Quarter Quadrangle (DOQQ) with digitized +shorelines for 1963 and 1998.

+ +

 

+ +
+
+ +

 

+ +

FIGURE +8-3-7. The Woodards Marina +site aerial photograph time slices from 1956, 1978, 1989, and 2000. Notice the +dense swampforest vegetation associated with the stream valleys of the many +small drainage systems flowing into Albemarle Sound. A small, classic drainage +system occurs within the boxed area on the 1956 aearial photograph. Notice that +a very prominent cypress headland (red stars) occurs where the main stem of +this stream intersects the Albemarle Sound shoreline. The shoreline within the +cove west of this cypress headland is a low sediment bank that is in agricultural +production. Compare the location of this cove through time as the low sediment +bank recedes more rapidly than the adjacent swampforest shoreline. Due to the +geometry of the drainage system, the length of swampforest shoreline increases +through time at the expense of the sediment bank shoreline, along with a +significant increase in the distance the cypress headland extends into +Albemarle Sound.

+ +

 

+ +
+
+ +

 

+ +

FIGURE +8-3-8. Photographs of the Grapevine Landing site. PANEL A. Summer photograph looking north along the swampforest shoreline of the +Alligator drowned river estuary. This swampforest shoreline has been +extensively modified by natural processes resulting in a broad shoreline zone +of marsh and strandplain beaches. The photo shows the southern portion of the +study area, the landing (pier) in the center, and the northern portion of the +study area in the distance. PANEL B. Winter photograph looking south +across the southern portion of the study area from the pier. The outer zone of +marsh grass is generally Juncus, whereas the inner zone occurring within +the swampforest is generally Spartina cynosuroides. PANEL C. +Close-up of strandplain beach within a cove formed by a small headland formed +by a series of stumps and covered with Juncus marsh grass. Photograph is +from Murphy (2002). PANEL D. Close-up of an eroded section of +swampforest with the root systems exposed and Spartina cynosuroides +marsh grass within the existing swampforest. Photograph is by M. Murphy. PANEL +E. Close-up of a strandplain beach within a cove formed by a headland of +swampforest trees that have been recently uprooted. The strandplain beach +consists of a thin, basal bed of quartz sand burying the eroded peat substrate. +The denser quartz sand has been buried by a one-foot thick accumulation of very +light organic detritus. PANEL F. Close-up of the depositional and +erosional sediment structures produced in the organic detritus layer on the +strandplain beach during the last falling wind tide. The coffee-colored water +is visible at the bottom left corner of the photo.

+ +

 

+ +
+
+ +

 

+ +

FIGURE +8-3-9. The Grapevine Landing +site 1998 Digital Orthophoto Quarter Quadrangle (DOQQ) with digitized +shorelines for 1981 and 1998.

+ +

 

+ +
+
+ +

 

+ +

FIGURE +8-3-10. Photographs of the +Point Peter Road site. PANEL A. +Winter photograph looking west at the former fresh-water swampforest shoreline +that has recently evolved into fresh- to low brackish-water transition zone and +marsh vegetation. Today, the vegetation is dominated by Spartina patens, +Cladium, Baccharis, and Myrica. PANEL B. Close-up +of the highly irregular eroding geometry of the peat shoreline. The small +headlands are held up either by modern Baccharis and Myrica +stumps that occur at the shoreline as it recedes or by larger stumps and logs +that occur in the lower portions of the eroding peat bank. PANEL C. +Close-up of the irregular peat shoreline displaying the tops of the abundant, +large, eroded peat blocks that litter the near-shore area. Notice the irregular +wrack berm on top of the Spartina patens marsh. PANEL D. Close-up +view of erosional wave action that causes the upper and overhanging modern +root-bound layer to oscillate as the softer, decomposing under layer is +actively eroded away. PANEL E. Similar photo to Panel A, but with a +small strandplain beach composed totally of organic detritus eroded out of the +underlying peat bed. The presence and extent of this organic detritus is +extremely variable and dependent upon the season and storm patterns. Notice how +the irregular erosional geometry of the original peat shoreline can be seen on +the landward side of the strandplain beach. PANEL F. Winter photograph +looking north from the same location as Panel E. Now the entire eroding peat +shoreline is buried beneath an extensive strandplain beach composed totally of +organic detritus. This detrital accumulation is over three feet thick at the +waters edge and extends some distance seaward below the waters surface. Notice +the beautiful detailed, and small-scale depositional and erosional sediment +structures that are preserved on this beach as the water rises and falls in +response to the wind tides.

+ +

 

+ +
+
+ +

 

+ +

FIGURE +8-3-11. The Point Peter Road +site 1998 Digital Orthophoto Quarter Quadrangle (DOQQ) with digitized +shorelines for 1969 and 1998.

+ +

 

+ +
+
+ +

 

+ +

FIGURE +8-3-12. The Point Peter Road +site aerial photograph time slices from 1969, 1983, 1998, and 2000. Notice that +the impoundment north of Point Peter Road is separated from Pamlico Sound by a +major outer ditch and associated dike. Comparison of land loss along the outer +ditch between the 1969 and 1983 photographs demonstrates the rapid rate of +shoreline recession. The ditch is long gone by 1998 and the impoundment has +reverted to the natural vegetation pattern. Also, notice the major expansion +through time of transition zone and marsh vegetation (light gray-green color on +the 1983 to 2000 photographs) at the expense of the swampforest vegetation (red +color on the 1983 and 1998 photos and dark green on the 2000 photographs). This +is interpreted to be the drowning of these low-lying wetlands in direct response +to ongoing sea-level rise.

+ +
+
+ +

 

+ +

FIGURE +8-3-13. Photographs of the +North Bluff Point site. PANELS A and B. Summer photographs looking northeast (A) across +the Outfall Canal to the upland vegetation on the far spoil bank and looking +southwest (B) along the outer edge of the marsh platform. The outer zone of +this platform marsh consists of Spartina alternaflora that grades +landward into a dense growth of Spartina cynosuroides. The latter grass +is growing on a slightly elevated zone of spoil that was deposited along the +outside of the impoundment ditch as indicated on Figure 8-3-13. Notice the +highly irregular shoreline geometry of the rapidly eroding marsh peat +shoreline. Photographs are by M. Murphy. PANELS C and D. Close-up +photographs of the irregular marsh peat shoreline. The peat is about 6 to 7 +feet thick at this point with the the wave-cut scarp eroded to depths of 2 to 4 +feet below the water surface. Thus, the bottom of the estuary is still in the +soft peat. The estuarine floor gently slopes away from the land to 6 to 7 feet +water depth where the peat has been totally eroded away and the underlying +tight clay forms the esturine floor. Notice the dark coffee color of the water.

+ +

 

+ +
+
+ +

 

+ +

FIGURE +8-3-14. The North Bluff +Point site 1998 Digital Orthophoto Quarter Quadrangle (DOQQ) with digitized +shorelines for 1983 and 2000.

+ +

 

+ +
+
+ +

 

+ +

FIGURE +8-3-15. The North Bluff +Point site aerial photograph time slices from 1983 and 1995. The rapid +rate of shoreline recession is indicated by the red star. An entire segment of +the marsh between Pamlico Sound and the outer ditch of the impoundment, +southwest of Outfall Canal Road, has largely disappeared in this 12-year +period.

+ +

 

+ +
+
+ +

 

+ +

FIGURE +8-3-16. The Swan Quarter +site 1998 Digital Orthophoto Quarter Quadrangle (DOQQ) with digitized shorelines +for 1956 and 1998.

+ +

 

+ +
+
+ +

 

+ +

FIGURE +8-3-17. Photographs of the +Lowland site. PANEL A. Winter photograph looking northeast within the +cove and along a low sediment bank shoreline with Spartina patens, +scrub-shrub, and pond pine growing on the upper surface. Notice the small +strandplain beach that occurs only within the apex of the cove. PANEL B. +Close-up of the wave-cut scarp eroded into the low sediment bank overlain by a +thin pocosin peat containing a cover of Spartina patens in the +foreground and pond pine with transition zone scrub-shrub in the background. +The sediment bank is composed of a Pleistocene, tight, slightly sandy clay. +This is the source of the limited sand forming the small strandplain beach in +Panel A. Photograph is by M. Murphy. PANEL C. Summer photograph +looking east along the narrow marsh platform in front of the mineral soils with +their wetland woods consisting predominantly of scrub-shrub, bay trees, and +pond pine. The marsh platform is composed of organic peat that is forming on +top of and pinches out onto the mineral soil that forms the shoreline in Panel +B. Photograph is by M. Murphy. PANEL +D. Summer close-up of the marsh +platform dominated by a narrow outer zone of Spartina patens adjacent to +the water and an inner zone of Spartina cynosuroides that is growing on +a very thin and slightly raised sand and wrack berm. Photograph is by M. +Murphy. PANEL E. Winter photograph looking northwest along the +marsh platform shoreline within the cove. Notice the thick roots of Spartina +cynosuroides that extend out to edge of the eroding marsh peat where the +plants have been stripped off by wave action. PANEL F. Close-up of the +wave-cut scarp and wave-cut platform eroded into the marsh peat. In the +foreground, the tight root-bound upper surface has been eroded off in a +stair-step fashion, whereas, in the background, this root-bound surface is +being undercut forming an overhang.

+ +

 

+ +
+
+ +

 

+ +

FIGURE +8-3-18. The Lowland site +1998 Digital Orthophoto Quarter Quadrangle (DOQQ) with digitized shorelines for +1964 and 1998.

+ +

 

+ +
+
+ +

 

+ +

FIGURE +8-3-19. The Lowland site +aerial photograph time slices from 1964, 1970, 1983, and 1995. The entire +region within the area of the photograph is wetland. Dense scrub-shrub +swampforest vegetation (red color in the 1983 photograph) lives in standing water +on top of the tight clay soils much of the year. The slightly lower area +surrounding and adjacent to the Oyster Creek drainage system is dominated by +marsh grasses (light blue-green color in the 1983 photograph) living on a marsh +peat substrate that thickens into the drainages. The time series suggests an +expansion of the scrub-shrub swampforest vegetation through time (excluding the +logged areas indicated with white stars) and loss of associated marsh along the +Outer Pamlico River shoreline due to erosion (red stars).

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-4-1. Photographs of the Wades Point site. PANEL +A. September 1979 photograph looking east towards the eroding Wades Point +and a former beach cottage located on the nonhardened low sediment bank +shoreline with upland pine vegetation. Photo is from Hardaway (1980). PANEL +B. A January 2001 photograph from about the same location as Panel A. +Notice the hardened shoreline, lack of upland vegetation, and a relatively new +beach cottage. PANEL C. September 1979 photograph looking west along the +low sediment bank shoreline of the Pamlico River. Photo is from Hardaway +(1980). PANEL D. Close-up of the wave-cut platform eroded into the low +sediment bank shoreline indicated in Panel E. The shoreline is composed of +tight Pleistocene clay with the absence of a strandplain beach due to lack of +sand in the eroding clay sediment. Also, the shallow root systems of the upland +vegetation is totally excavated as demonstrated by the trees along the +shoreline. PANEL E. January 2003 photograph looking north along the +platform marsh shoreline of the Pungo River from Wades Point. The marsh +interior is dominated by Juncus roemarianus with a narrow outer +perimeter marsh dominated by Spartina patens. Locally, there is a narrow +and mixed zone of Phragmites australis and Spartina +cynosuroides that grow on a thin sand and wrack berm that parallels the +shoreline. Notice the highly irregular erosion pattern of the marsh peat in the +foreground and the upland area and associated low sediment bank shoreline in +the distance (see Panel D). PANEL +F. January 2003 close-up photograph of the eroding platform marsh +shoreline. Notice the large peat block in the near shore that has recently +broken off the shoreline.

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-4-2. The Wades Point site 1998 Digital Orthophoto +Quarter Quadrangle (DOQQ) with digitized shorelines for 1970, 1984, and 1998.

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-4-3. The Wades Point site aerial photograph time +slices from 1970, 1984, 1989, and 2000. The rate of shoreline recession is +obvious along the Pamlico River shoreline through time. Compare the fairly +straight and unmodified shoreline and shore parallel Pamlico Beach Road in 1970 +with the 2000 aerial photograph. Notice the sequence and effect of shoreline +hardening upon the erosion process.

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-4-4. Photographs of the Hickory Point site. PANEL +A. Oblique aerial photograph (December 1991) looking west across Indian +Island and Hickory Point with Pamlico River to the right and South Creek to the +left. Indian Island and Hickory Point are high areas along the interstream +divide between the two water bodies. Indian Island has become separated from +Hickory Point by rising sea level and associated shoreline erosion. PANEL B. Oblique aerial photograph (December 1991) of the study area at Hickory +Point showing the marsh shoreline in the left foreground, modified low sediment +bank shoreline along both sides of the Point, and unmodified low sediment bank +shoreline along the wooded, curved coast in the upper left. PANEL C. A +1979 photograph along the South Creek low sediment bank shoreline prior to +human modification. Notice the small pine stumps left in the near shore as the +shoreline recedes and the beach cottage in the upper left corner that is +collapsing into South Creek. Photograph is from Hardaway (1980). PANEL D. +A 2001 photograph in approximately the same location as Panel C, showing the +human modified low sediment bank shoreline. Notice that the rock and rubble +revetment along the South Creek shoreline is slightly smaller scale than along +the Pamlico River shoreline in Panel F. Photograph is from Murphy (2002). PANEL +E. A 1979 photograph of a typical low sediment bank shoreline with a dense +growth of small pine trees. The long pine tap root holds the stumps in place in +the near shore as the shoreline recedes. Minor sand derived from the erosion of +the Pleistocene, slightly sandy clay bank results in a thin and ephemeral +strandplain beach. Photograph is from Hardaway (1980). PANEL F. A 2001 +photograph looking west along the human modified, low sediment bank shoreline +of the Pamlico River. Photograph is from Murphy (2002).

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-4-5. The Hickory Point and Pamlico Marine Lab +sites 1998 Digital Orthophoto Quarter Quadrangle (DOQQ) with digitized +shorelines for 1970, 1984, and 1998.

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-4-6. The Hickory Point and Pamlico Marine Lab +site aerial photograph time slices for 1970, 1984, and 2000. The marsh +shoreline on the South Creek side of Hickory Point has two small clumps of +upland trees (dark zones) forming small headlands on the south side of the +marsh in the 1970 aerial photograph. In the 2000 photograph these two areas of +upland vegetation are completely eroded away and the shoreline is beginning to +straighten out in response to the erosional processes. Notice the increased +rate of shoreline hardening from 1970 to 1984 in concert with a significant +recession of the unmodified low sediment bank shoreline west of Hickory Point +along the Pamlico River shore (see Fig. 8-4-5).

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-4-7. Photographs of the +Pamlico Marine Lab site. PANELS A and B. March 1978 close-up +photographs of the unmodified and eroding low sediment bank shoreline of the +Pamlico Marine Lab site. Panel A is on the western side and Panel B is on the +eastern side of the lab. Notice the large trees lying along the bank and the +stumps in the near shore, reflecting the receding shoreline. The area +has been generally cleared for the lab, leaving only a few trees along the +bank. PANELS C and D. August 2001 photographs of the modified low +sediment bank shorelines of the Pamlico Marine Lab site. Panel C is on the +western side and Panel D is on the eastern side of the lab. The rock revetment +has temporarily stopped the shoreline recession. Photographs are from the pier by M. Murphy.

+ +

 

+ +

 

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-4-8. Photographs of the Bayview site. PANEL A. +A September 1979 photograph looking at the eroding high sediment bank shoreline +on the north side of the study site along outer Bath Creek. Notice the small +strandplain beach due to the low sand content in the eroding bank, the +overhanging modern root mass and tree roots, and the slumped trees. Photograph +is from Hardaway (1980). PANEL B. A January 2001 photograph looking +north along the same eroding high sediment bank as Panel A. It appears that +there are far more stumps in the water and tree debris along the shoreline. PANEL +C. An August 2001 photograph looking at the last remnants of the low +sediment bank in front of an eroding high sediment bank shoreline in the middle +of the study site. Photograph is by M. Murphy. PANEL D. An August 2001 +close-up view of the eroding low sediment bank shoreline with a strandplain +beach and fringing marsh in front of a stable high sediment bank with a heavy +vegetative cover. Photograph is by M. Murphy. PANEL E. A September 1979 +photograph looking south at the low sediment bank shoreline on the south side +of the study site along outer Bath Creek. Notice the large number of trees +standing in the near shore area with exposed roots. Photograph is from Hardaway +(1980). PANEL F. A 2003 typical eroding low sediment bank along the open +Pamlico River that is experiencing a more severe state of shoreline recession +than the shoreline in Panel E. The sand strandplain beach is only a few inches +thick and is on top of a Pleistocene, tight sandy clay substrate.

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-4-9. The Bayview site 1998 Digital Orthophoto +Quarter Quadrangle (DOQQ) with digitized shorelines for 1970 and 1998. Notice +the small drainage system that flows west off the upland to form a small +cypress headland in the middle of the study area.

+ +

 

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-4-10. Photographs of the Camp Leach site. PANEL +A. A July 1977 photograph looking east along the undeveloped eastern +portion of the study site on the Pamlico River north shore. The low sediment +bank occurs behind an narrow zone of dense Juncus roemerianus and +cypress growing on a peat substrate up to 2 feet thick. Photo is from Hardaway +(1980). PANEL B. A January 1977 photograph looking west along a portion +of the study site utilized by Camp Leach. Notice the Juncus roemerianus headlands +with small coves containing thin strandplain beaches lapping up onto the low +sediment banks. PANEL C. A January 1977 photograph of the low sediment +bank shoreline in front of Camp Leach. Notice that the root system of the large +shoreline trees have been severely exposed by the slow erosion processes. No +marsh grass occurs within this high use area, however, there are local +strandplain beaches scattered in the small coves along the shoreline. PANEL +D. A January 2001 photograph in approximately the same area as Panel C. The +low sediment bank in this development has now been extensively bulkheaded with +the elimination of marsh headlands and shoreline trees. Notice that no +strandplain beaches exists in front of bulkheads.

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-4-11. The Camp Leach site 1998 Digital Orthophoto +Quarter Quadrangle (DOQQ) with digitized shorelines for 1970 and 1998.

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-4-12. Photographs of the Mauls Point site. PANEL +A. A July 1977 photograph looking southwest along the unmodified bluff at +Mauls Point. Notice the overhanging modern root mass, the tree debris along the +shoreline, and the strandplain beach in front of the wave-cut bluff. Photograph +is from Hardaway (1980). PANEL B. A August 1998 photograph of the +bulldozed and bulkheaded bluff that occurs in Panel A. A portion of the +modified bluff has been seeded and covered with landscape fabric. PANEL C. +An August 2001 close-up photograph of the modified bluff pictured in both +Panels A and B. Notice the lack of a strandplain beach in front of the steel +bulkhead and rock revetment. Photograph is from Murphy (2002). PANEL D. +A January 2003 photograph of the modified cypress headland that occurs off of a +small drainage system dissecting the upland and associated bluff on the +southwest side of the study site (see Fig. 8-4-14). The local occurrence of +sand in front of the bulkhead that formed in response to a bulkhead failure and +associated gullying just below the bottom of the photograph. PANEL E. A +1979 photograph of the swampforest shoreline along the cypress headland that +occurs at Mauls Point, on the northeast side of the study site. Photograph is +by S. Hardaway. PANEL F. An August 2001 photograph of the same location +as Panel E. The rock is the northeast end of the revetment in Panel C. Notice +how the swampforest has been thinned and the occurrence of a small strandplain +beach that used to be located in front of the bluff. Photograph is from Murphy +(2002).

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-4-13. The Mauls Point site 1998 Digital Orthophoto +Quarter Quadrangle (DOQQ) with digitized shorelines for 1970, 1984, and 1998.

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-4-14. The Mauls Point site aerial photograph time +slices from 1984 and 2000. Mauls Point Road runs north along an interstream +high between two small drainages that parallel the road. The drainage on the +northeast side of the road has been intersected by the Pamlico River creating a +wide swampforest shoreline along the Pamlico River side and forms a cypress +headland at Mauls Point (Fig. 8-4-12, Panels E and F). The bluff shoreline +occurs where Blounts Bay intersects the interstream divide at the end of the +road (Fig. 8-4-12, Panels A, B, and C). Another small swampforest shoreline +forms a cypress headland that extends into the water where the drainage on the +southwest side of the road flows into Blounts Bay (Fig. 8-4-12, Panel D).

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-4-15. Photographs of the Bay Hills site. PANEL +A. A July 1977 photograph looking east along a highly vegetated, natural +bluff shoreline. The lack of an erosional cut-bank, slump blocks, and tree and +shrub debris indicate that this bluff is not eroding on the year-to-year scale. +This moderately stable bluff shoreline has a modest slope that can develop a +significant vegetative cover that protects the bluff through the small storms +and the short term. Photograph is by S. Hardaway. PANEL B. A January +2003 photograph along the same portion of the Bay Hills that locally displays +steeper erosional bluff segments and wider strandplain beaches with abundant +tree debris. Portions of this shoreline were locally destabilized by a series +of very high storm tides (up to +10 feet above mean sea level) that impacted +the upper Pamlico River area between 1996 and 1999. Thus, normally stable +shorelines in semi-protected areas and estuarine segments with small fetches, +do erode, but mainly during extreme storm events when the shoreline recedes in +large pulses. PANELS C, D, and E. Panel C is a January 1977 photograph +looking west along a modified bluff shoreline. The bluff was bulldozed in 1975 +to form a 1:1 sloped ramp behind a low sediment bank shoreline. Both the +bulldozed bluff and low sediment bank have, in most cases, been extensively +bulkheaded as demonstrated in the 2001 photographs in Panels D and E. Much of +this extreme bulkheading was done since the high storm tides of the 1996-1999 +hurricanes destabilized and severely eroded the bluffs. Notice that the natural +bluff shoreline in Panel D still has a strandplain beach. Photograph in Panel D +is from Murphy (2002) and Panel E is by M. Murphy. PANELS E and F. Panel +E is a close-up view of the Pleistocene, tight blue clay that crops out along +the lower fifteen feet of the bluff shoreline. An easily erodable, +unconsolidated sand bed overlies the clay bed. The former readily slumps onto +the beach carrying the vegetative cover with it, as demonstrated in Panel F. +This stratigraphic combination produces bluffs with an overall lower slope that +can generally develop more stable vegetative covers. Photographs are from +Murphy (2002).

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-4-16. The Bay Hills site 1998 Digital Orthophoto +Quarter Quadrangle (DOQQ) with digitized shorelines for 1970 and 1998.

+ +

 

+ +
+
+ +

 

+ +

FIGURE 8-4-17. The Bay Hills site aerial photograph time +slices from 1938 and 1984. Compare the absence of waterfront cottages in the +1938 aerial photograph with the high density of homes with associated piers +extending into Chocowinity Bay in the 1984 photograph. Notice the small +drainage system just west of Bay Hills Drive in the 1984 photo. Where this +stream enters Chocowinity Bay, the cypress trees in the floodplain swampforest +form a cypress headland. Cypress headlands are more resistant to shoreline +erosion then adjacent sediment banks and therefore protrude out into the Bay, +while the sediment banks erode slightly faster and form shallow coves.

+ +

 

+ +

 

+ +
+ + + + diff --git a/office/regression/000_000190.html b/office/regression/000_000190.html new file mode 100644 index 0000000..b190721 --- /dev/null +++ b/office/regression/000_000190.html @@ -0,0 +1,255 @@ + + +NOAA Photo Library + + + +
+ + + + +
NOAA Photo Library Banner
+ + + + +
+ + + +
+ + + + + + + +
+

NOAA's Restoration Center Collection
Catalog of Images

+

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
700 thumbnail picture
Dixon Bay, oiled Spartina alterniflora in the wrack line of the marsh.
Venice, Plaquemines County, Louisiana January 28, 1995
701 thumbnail picture
Dixon Bay, an aerial image of degrading marsh in oil.
Venice, Plaquemines County, Louisiana January 28, 1995
702 thumbnail picture
Dixon Bay, boomed islands from the air.
Venice, Plaquemines County, Louisiana January 28, 1995
703 thumbnail picture
Dixon Bay, oiled hyacinths
Venice, Plaquemines County, Louisiana January 28, 1995
704 thumbnail picture
Dixon Bay, oiled hyacinths covered in emulsion
Venice, Plaquemines County, Louisiana January 28, 1995
705 thumbnail picture
Dixon Bay, oiled hyacinths and Spartina alterniflora covered in emulsion at the wrack line.
Venice, Plaquemines County, Louisiana January 28, 1995
706 thumbnail picture
Dixon Bay, oiled hyacinths and Spartina alterniflora covered in emulsion at the edge of the marsh.
Venice, Plaquemines County, Louisiana January 28, 1995
707 thumbnail picture
Dixon Bay, a close up of oiled Spartina alterniflora.
Venice, Plaquemines County, Louisiana January 28, 1995
708 thumbnail picture
Dixon Bay, oiled vegetation against backdrop of boomed marsh.
Venice, Plaquemines County, Louisiana January 28, 1995
709 thumbnail picture
Dixon Bay, oiled Phragmites and Spartina alterniflora.
Venice, Plaquemines County, Louisiana January 28, 1995
710 thumbnail picture
Dixon Bay, oiled hyacinths caught amid Phragmites australis.
Venice, Plaquemines County, Louisiana January 28, 1995
711 thumbnail picture
Dixon Bay, the southwest pass levee and base camp site in dense fog.
Venice, Plaquemines County, Louisiana January 28, 1995
712 thumbnail picture
Dixon Bay, the well site being capped.
Venice, Plaquemines County, Louisiana January 28, 1995
713 thumbnail picture
Dixon Bay, the barge that was used to decontaminate and collect oiled materials.
Venice, Plaquemines County, Louisiana January 28, 1995
714 thumbnail picture
Dixon Bay, clean-up activities at Sandy Spit.
Venice, Plaquemines County, Louisiana January 28, 1995
715 thumbnail picture
Harbor Island, East and West Waterways, the Duwamish River and the southwestern shore of Elliott Bay.
Seattle, King County, Washington
716 thumbnail picture
The Seattle City Light property. A portion of this site, right side of the image, was used to create the Hamm Creek project which daylighted the creek and created several meanders to improve the habitat function of this salmon-bearing stream.
Seattle, King County, Washington
717 thumbnail picture
A former, pre restoration, section of Hamm Creek choked by invasive vegetation.
Seattle, King County, Washington
718 thumbnail picture
A derelict ferry at the Turning Basin site adjacent to Kenco Marine and a Coastal America site. The ferry has since been removed as part of the restoration project.
Seattle, King County, Washington
719 thumbnail picture
Tribal fishermen on the Duwamish River.
Seattle, King County, Washington
720 thumbnail picture
Giant kelp, an important fisheries habitat can grow as much as two feet a day in depths at up to 150 feet.
Baja, California mid- 1980's
721 thumbnail picture
Giant kelp, an important fisheries habitat can grow as much as two feet a day in depths at up to 150 feet.
Baja, California mid- 1980's
722 thumbnail picture
Giant kelp, an important fisheries habitat can grow as much as two feet a day in depths at up to 150 feet.
Baja, California mid- 1980's
723 thumbnail picture
Giant kelp, an important fisheries habitat can grow as much as two feet a day in depths at up to 150 feet.
Baja, California mid- 1980's
724 thumbnail picture
Giant kelp, an important fisheries habitat can grow as much as two feet a day in depths at up to 150 feet.
Baja, California mid- 1980's
725 thumbnail picture
the existing siphon
Circa May 1996
726 thumbnail picture
back of Naomi Siphon
Circa May 1996
727 thumbnail picture
top of Naomi Siphon
Circa May 1996
728 thumbnail picture
Description not available.
Circa May 1996
729 thumbnail picture
Description not available.
Circa May 1996
730 thumbnail picture
This project was conducted to determine if geotube material could be used to as suitable substrate for oyster spat.
Circa June 1995
731 thumbnail picture
This project was conducted to determine if geotube material could be used to as suitable substrate for oyster spat.
Circa June 1995
732 thumbnail picture
This project was conducted to determine if geotube material could be used to as suitable substrate for oyster spat.
Circa June 1995
733 thumbnail picture
This project was conducted to determine if geotube material could be used to as suitable substrate for oyster spat.
Circa June 1995
734 thumbnail picture
This project was conducted to determine if geotube material could be used to as suitable substrate for oyster spat.
Circa June 1995
735 thumbnail picture
This project was conducted to determine if geotube material could be used to as suitable substrate for oyster spat.
Circa June 1995
736 thumbnail picture
This project was conducted to determine if geotube material could be used to as suitable substrate for oyster spat.
Circa June 1995
737 thumbnail picture
This project was conducted to determine if geotube material could be used to as suitable substrate for oyster spat.
Circa June 1995
738 thumbnail picture
This project was conducted to determine if geotube material could be used to as suitable substrate for oyster spat.
Circa June 1995
739 thumbnail picture
This project was conducted to determine if geotube material could be used to as suitable substrate for oyster spat.
Circa June 1995
740 thumbnail picture
This project was conducted to determine if geotube material could be used to as suitable substrate for oyster spat.
Circa June 1995
741 thumbnail picture
This project was conducted to determine if geotube material could be used to as suitable substrate for oyster spat.
Circa June 1995
742 thumbnail picture
This project was conducted to determine if geotube material could be used to as suitable substrate for oyster spat.
Circa June 1995
743 thumbnail picture
This project was conducted to determine if geotube material could be used to as suitable substrate for oyster spat.
Circa June 1995
744 thumbnail picture
This project was conducted to determine if geotube material could be used to as suitable substrate for oyster spat.
Circa June 1995
745 thumbnail picture
This project was conducted to determine if geotube material could be used to as suitable substrate for oyster spat.
Circa June 1995
746 thumbnail picture
This project was conducted to determine if geotube material could be used to as suitable substrate for oyster spat.
Circa June 1995
747 thumbnail picture
This project was conducted to determine if geotube material could be used to as suitable substrate for oyster spat.
Circa June 1995
748 thumbnail picture
This project was conducted to determine if geotube material could be used to as suitable substrate for oyster spat.
Circa June 1995
749 thumbnail picture
A potential land purchase. Land acquisitions are used in restoration to act as buffer areas for coastal wetlands and other significant fishery habitats.
Salem County, New Jersey Circa 1995

PAGES - 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |

+
+
+ + + + +
+ Publication + of the U.S. Department of Commerce, National Oceanic & Atmospheric + Adminstration (NOAA),
+ NOAA Central Library
+ NOAA Privacy Policy + | NOAA Disclaimer
+ + Last Updated:
+ April 23, 2007 +
+
+
+
+
+ + diff --git a/office/regression/000_000191.html b/office/regression/000_000191.html new file mode 100644 index 0000000..ed0582e --- /dev/null +++ b/office/regression/000_000191.html @@ -0,0 +1,1075 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + +Regulations.gov + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Zannichellia + + + + +L. +
Taxonomic Serial No.: 39067 + + + + +
+ +Download + + +Zannichellia + + TSN 39067 + + + + + + + + + + + + + + + + + + +

+
+ + + + + + + + + + + + + + + + +
+ +     February 05, 2009 +
Go to Regulations.gov Home + + + + + + + + + + +
 
gradient
+
+ +
+ + + + + + + + + + + + + + + + + + + + diff --git a/office/regression/000_000192.html b/office/regression/000_000192.html new file mode 100644 index 0000000..ca738dd --- /dev/null +++ b/office/regression/000_000192.html @@ -0,0 +1,178 @@ + + + + + + National Estuarine Research Reserve System + + + + + + + + + +
+ + + + + +
+ + + + + + + +
+ + + + + +
 
+
+ + + + + + + + + + + + + + +
 
Search Again:
+ + Go >> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 

 
Narrow Results
Click on Item to Add to Search List
 
Agency
-USCG (43)
-FDA (21)
-PHMSA (12)
-FAA (5)
-DOT (3)
 
Document Sub Type
-Supplement (57)
-C-Comment (Supporting and Related Material) (8)
-Analysis (6)
-GDL-Guidance (4)
-RPT-Report (Supporting and Related Material) (4)
-VRA-Variance (Supporting and Related Material) (2)
-PPAD-Petition Partial Approval and Denial (Supporting and Related Material) (2)
-More...
 
Docket Sub Type
-Notice (43)
-Hazardous Materials (6)
-Pipeline Safety (6)
-Civil Penalties (5)
-License (3)
 
Days Since Posted
-PostedToday (2)
-Last 3 Days (2)
-Last 7 Days (9)
-Last 15 Days (52)
-Last 30 Days (60)
-Last 90 Days (84)
-Last 180 Days (84)
-Last 365 days (84)
 
 
+
+ + + + + + + + + + + + + + + +
  + + + + +
+ + + + + + +
 You Searched:   (click entry to remove)
+ +   remove +  Docket Type: + +  Nonrulemaking
+ +   remove +  Comment Period Started: + +  Last 90 Days
+ +   remove +  Document Type: + +  Supporting & Related Materials
+ + + +
+
  remove  Start Over +
+ RSS FeedSavePrint +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + +
+ + + + 1  + + 2 + + 3 + + 4 + + 5 + + 6 + + 7 + + 8 + + 9 + +   Next  + + + +
1 to 10 + (84 Documents found) +
Sort By:
+ + + +
+ +
+ Display Results:
+ +
+
+
+ +
+ + +U.S. DOT/PHMSA - Final Rule - Environmental Assessment + + +
+ + + Notification  Notification +

+ + + …

+ Agency: PHMSA          + Document Type: SUPPORTING & RELATED MATERIALS +          + Comments Due: + + +
Docket ID: PHMSA-2007-0065         + + Document ID: PHMSA-2007-0065-0040 +
Date Posted:   Feb 2, 2009 +

+ View this Document:     +View as format pdf    + +  |    View more Documents in this Docket + + +

+ +
+
+ +
+ + +USACE Permit Application, Appendix I, 22 of 39 + + +
+ + + Notification  Notification +

+ + + …

+ Agency: USCG          + Document Type: SUPPORTING & RELATED MATERIALS +          + Comments Due: + + +
Docket ID: USCG-2008-1239         + + Document ID: USCG-2008-1239-0026 +
Date Posted:   Jan 26, 2009 +

+ View this Document:     +View as format pdf    + +  |    View more Documents in this Docket + + +

+ +
+
+ +
+ + +USACE Permit Application, Appendix G, 20 of 39 + + +
+ + + Notification  Notification +

+ + + …

+ Agency: USCG          + Document Type: SUPPORTING & RELATED MATERIALS +          + Comments Due: + + +
Docket ID: USCG-2008-1239         + + Document ID: USCG-2008-1239-0024 +
Date Posted:   Jan 26, 2009 +

+ View this Document:     +View as format pdf    + +  |    View more Documents in this Docket + + +

+ +
+
+ +
+ + +DWP License Application, Exhibit I, Seabed Suitability, 6 of 39 + + +
+ + + Notification  Notification +

+ + + …

+ Agency: USCG          + Document Type: SUPPORTING & RELATED MATERIALS +          + Comments Due: + + +
Docket ID: USCG-2008-1239         + + Document ID: USCG-2008-1239-0010 +
Date Posted:   Jan 22, 2009 +

+ View this Document:     +View as format pdf    + +  |    View more Documents in this Docket + + +

+ +
+
+ +
+ + +DWP License Application, Exhibit J, MetOcean Reports, 7 of 39 + + +
+ + + Notification  Notification +

+ + + …

+ Agency: USCG          + Document Type: SUPPORTING & RELATED MATERIALS +          + Comments Due: + + +
Docket ID: USCG-2008-1239         + + Document ID: USCG-2008-1239-0011 +
Date Posted:   Jan 22, 2009 +

+ View this Document:     +View as format pdf    + +  |    View more Documents in this Docket + + +

+ +
+
+ +
+ + +U.S. DOT/PHMSA - Revised Cost Summary Tables + + +
+ + + Notification  Notification +

+Revised Cost Summary Tables + + …

+ Agency: PHMSA          + Document Type: SUPPORTING & RELATED MATERIALS +          + Comments Due: + + +
Docket ID: PHMSA-2007-27954         + + Document ID: PHMSA-2007-27954-0180.1 +
Date Posted:   Dec 10, 2008 +

+ View this Document:     +View as format pdf    + +  |    View more Documents in this Docket + + +

+ +
+
+ +
+ + +USACE Permit Application, Appendix J Part 4, 26 of 39 + + +
+ + + Notification  Notification +

+ + + …

+ Agency: USCG          + Document Type: SUPPORTING & RELATED MATERIALS +          + Comments Due: + + +
Docket ID: USCG-2008-1239         + + Document ID: USCG-2008-1239-0030 +
Date Posted:   Jan 26, 2009 +

+ View this Document:     +View as format pdf    + +  |    View more Documents in this Docket + + +

+ +
+
+ +
+ + +U.S. DOT/PHMSA - Summary of Revised CRM Cost + + +
+ + + Notification  Notification +

+Summary of Revised CRM Cost + + …

+ Agency: PHMSA          + Document Type: SUPPORTING & RELATED MATERIALS +          + Comments Due: + + +
Docket ID: PHMSA-2007-27954         + + Document ID: PHMSA-2007-27954-0180.2 +
Date Posted:   Dec 10, 2008 +

+ View this Document:     +View as format pdf    + +  |    View more Documents in this Docket + + +

+ +
+
+ +
+ + +U.S. DOT/PHMSA - Summary of Revised CRM Cost + + +
+ + + Notification  Notification +

+Summary of Revised CRM Cost + + …

+ Agency: PHMSA          + Document Type: SUPPORTING & RELATED MATERIALS +          + Comments Due: + + +
Docket ID: PHMSA-RSPA-1998-4470         + + Document ID: PHMSA-RSPA-1998-4470-0260 +
Date Posted:   Dec 10, 2008 +

+ View this Document:     +View as format pdf    + +  |    View more Documents in this Docket + + +

+ +
+
+ +
+ + +USACE Permit Application, Appendix J Part 1, 23 of 39 + + +
+ + + Notification  Notification +

+ + + …

+ Agency: USCG          + Document Type: SUPPORTING & RELATED MATERIALS +          + Comments Due: + + +
Docket ID: USCG-2008-1239         + + Document ID: USCG-2008-1239-0027 +
Date Posted:   Jan 26, 2009 +

+ View this Document:     +View as format pdf    + +  |    View more Documents in this Docket + + +

+ +
+
bldot
+ + + + + + + + + + +
+ + + + 1  + + 2 + + 3 + + 4 + + 5 + + 6 + + 7 + + 8 + + 9 + +   Next  + + + +
1 to 10 + (84 Documents found) +
Sort By:
+ + +
+ +
+ Display Results:
+ +
+
+
+

 

+
+
+
+
+ + + + + + + + + +
 Change Text Size  A  A  a
+
+ + + + + + +
BusinessGovEGovUSAGov
+
+ + + + + + + + + + + + + + +

NERRS banner + +

+ + + +

+ +
+ + + + + + + + + + + +
+
+ Graduate Research Fellowship
+
+
+ + + + + + + The effects of seawalls and berms on salt marshes: Implications for marsh persistence and restoration of self-maintenance + + + + + + + + + + + + +
+
+ + Catherine Bozek +
+ + Graduate Research Fellow 2002-2003
+ + Great Bay, NH
+ + University of New Hampshire +
+
+
The purpose of this study is to examine the effects of man-made barriers, such as seawalls and berms, on salt marshes in the Great Bay Estuary of New Hampshire. Effects on sedimentary processes due to wave reflection off of the structure will be examined by using marker horizons and grain size analysis. The influence of seawalls and berms on wrack cover will also be assessed. Well transects will be installed to determine if seawalls and berms have an effect on fresh groundwater inflow to the marsh. The impacts of wave reflection, wrack burial, and groundwater flows on salt marsh vegetation will be assessed by studying the plant populations along transects in areas with and without man-made structures. The process level results examined at specific sites will be interpreted in the larger context of the distribution of barriers in the Great Bay Estuary, N.H., and implications for the future persistence of salt marshes adjacent to these structures will be assessed. Biodegradable wave buffers may help to lessen wave energy and decrease erosion due to wave reflection. Buffers will be installed at selected sites and the success of vegetation transplanted to the area will be assessed.
+
+
This project is significant on many levels. First, a basic understanding of the processes occurring in marshes near seawalls and berms is needed. The effects of these processes on natural salt marsh plant diversity can then be determined. These effects can be applied to marshes within the Great Bay Reserve, as well as marshes throughout the Great Bay Estuary and potentially to all salt marshes in New England. Understanding the effects of seawalls and berms on salt marshes will help managers guide regulation of these structures in the future.
+
+
+
+ +
+ Return to Project Abstracts
+
+
+
+

+

+ +


+ + + +

+
+
+

+ + + \ No newline at end of file diff --git a/office/regression/000_000193.html b/office/regression/000_000193.html new file mode 100644 index 0000000..73f9a3f --- /dev/null +++ b/office/regression/000_000193.html @@ -0,0 +1,159 @@ + + + + + USGS Patuxent Wildlife Research Center SIS Project + + + + + + + + + + + + + +
+ USGS +
+ Patuxent Home +
+ + + + + +

Accession Number5004870
+ + + + + +

TitleEffects of off-road vehicle traffic on the biotic community of sandy beaches
+ + + + +

at Cape Cod National Seashore (CACO)
+ + + + + +

Project DescriptionThis project will assess the effects of off-road vehicle (ORV) traffic on the beach
+ + + + +

natural community of Cape Cod National Seashore (CACO) and provide baseline
+ + + + +

data to support a long-term monitoring program for selected indicator species.
+ + + + +

Monitoring samples will be designed to distinguish changes in the beach biota
+ + + + +

resulting from vehicle distrubance, from differences between monitoring samples
+ + + + +

due to short-term succession in clumps of wrack or from environmental differences
+ + + + +

between different beach types. The monitoring program will be narrowly-targeted so
+ + + + +

as to minimize time investment so that it can be carried out by Park staff over the
+ + + + +

long term.
+ + + + + +

Keywordsbeach invertebrates, beach wrack, coastal, monitoring, sandy beach,
+ + + + + +

Principal Howard S. Ginsberg, USGS Patuxent + Wildlife Research Center:
+ + + + + +

InvestigatorsHoward_S_Ginsberg@usgs.gov 
+
+ +Navigate PWRC SIS projects by Accession Number: First +Previous +Next +Last + + +

+ + Return to SIS Projects Listing +

+ + Nav Bar link SIS List + Nav Bar Link Patuxent + Nav Bar Link Biological Resources + Nav Bar Link USGS + Nav Bar Link Interior + + Navigation Bar + + + + + + + + +
+ + + \ No newline at end of file diff --git a/office/regression/000_000194.html b/office/regression/000_000194.html new file mode 100644 index 0000000..e4212e2 --- /dev/null +++ b/office/regression/000_000194.html @@ -0,0 +1,351 @@ + + + + + Piping Plover Habitat Model + + +

+Piping Plover Habitat Model
+go to: +USFWS +Gulf of Maine Watershed Habitat Analysis
+go to: +Species +Table
+Feedback: +We welcome your suggestions on improving this model! +

+

+Draft Date:
+April 2001 +

+Species:
+Piping plover, Charadrius melodus; Atlantic coast population +

+Use of Study Area Resources:
+Reproduction and migration (piping plovers breed through Canadian Maritimes +and the Midwest).  The coastal population ranges from Newfoundland south +to the mid-Atlantic states (Haig 1992, DeGraff and Rappole 1995).  They +winter in southern Atlantic states and south into the Carribean. Only the +Great Lakes/Atlantic coast population is considered here. +

+Habitat Requirements:
+Cover. Piping plovers frequent dynamic coastal beaches (Hayman et +al. 1986) and sand spits above the high tide line.  Storms overwash +the shore, cutting into dunes or between dunes, creating ‘blowouts’, +ephemeral pools, and overwash fans behind primary dunes (USFWS 1996). + Plovers nest on beach areas with gently sloping foredunes, overwash +and blowout areas, and behind primary dunes (USFWS 1996). Nesting substrate +consists of sand and gravel or shells, on elevated areas away from the water, +in which the birds excavate a shallow depression. Nests are typically situated +on open soils, but can also be found in sparse or moderately dense beach +grass (DeGraaf and Rappole 1995, Haig 1992). Piping plovers will use dredged +spoil substrate. The smallest beach area used is about 11,000 sq m (John +Atwood Manomet Observatory, pers. com.). +

+Nest sites are typically spaced 30 m apart, or more, and actively defended +by the adults against intrusions by other plovers (Elias-Gerken 1995). However +plovers will nest in least tern and common tern colonies along the Atlantic +Coast, and have been documented to occur within 25 m of least tern nests +(Berger 1987, Bergstron and Terwilliger 1987; both in Haig 1992). +  Nesting has been recorded as early as April 20th in Massachusetts, +and April 24th in Nova Scotia. Although they hatch within an average of 27-30 +days, and most fledge by the end of July, chicks from late nestings may be +flightless until the end of August (USFWS 1996).  On the Maine coast, +nesting extends only as far north as Georgetown, which Jody Jones (Maine +Audubon Society, pers.comm.) attributes to the lack of required dune cover. +

+Nesting and brood rearing areas are typically contiguous with foraging areas +(USFWS 1996). Hatchlings are precocial but remain flightless for several +weeks during which time they are tended by one or both adults, which brood +them, lead them to and from foraging areas, and protect them from predation +(USFWS 1996). Broods may move hundreds of meters from the nest site during +their first week of life (USFWS 1996). +

+Food.  Plovers forage at the waters edge (Goossen 1989), in the +splash zone of beaches, on mudflats and sandflats (Haig 1992), and the edge +of ephemeral pools (Elias et al. 2000).  Plover adults and chicks feed +on invertebrates in the substrate and associated with beach wrack. Plover +foods consist of invertebrates such as marine worms, fly larvae, beetles, +crustaceans, and mollusks (Forbush 1925, Bent 1929, Cairns 1977, Nicholls +1989, Gibbs 1986, Shaffer and Laporte 1994; all cited in USFWS 1996). +Foraging habitat selection may vary from year to year, depending on relative +abundance of food in ephemeral pools, tide flats, and ocean intertidal beaches +(Elias et al. 2000). A study in Saskatchewan (Brown 1987 in Haig 1992) found +that feeding occurred predominantly with 5 m of the water’s edge. During +the reproductive season feeding areas generally are contiguous with nesting +and brood rearing areas. Jones and Camuso (1994) observed 65 of 453 feeding +events over the marsh behind nesting beaches versus 388 on the ocean side. +However, Loegering and Fraser (1995 in USFWS 1996) found that those +flightless plover chicks on Assateague Island, MD., able to reach bay beaches +and the island interior had significantly higher survival rates that those +which foraged solely on the ocean beaches. Goldin and Regosin (1998) found +higher fledging success for plovers similarly situated in Rhode Island, +apparently due to better food supplies. Elias et al. (2000) noted that escape +cover (old, dry wrack and vegetation) was more available around ephemeral +pools and bay tidal flats than in the ocean intertidal zone. +

+The rocky coasts of the western Atlantic boreal littoral zone produce an +abundant wrack and associated prey base. Based on the amount of foraging +habitat available in Maine, which is accentuated by greater tidal amplitude, +suitable nest sites may be more limiting than is availability of foraging +areas (Anne Hecht, pers. comm.). +

+Special Requirements:
+Though adults are somewhat tolerant of human activities, nests and chicks +are vulnerable to disturbance and accidental impacts. Survival on beaches +in the Northeast is dependent on restriction of human and predator access. +ORV traffic may displace plovers, kill chicks (USFWS 1996), or damage the +wrack (Leatherman 1982 in Elias-Gerken 1995) which is an important foraging +resource.  Nest monitoring in recent years in Maine has indicated that +pedestrian disturbance, beach maintenance and cleaning are significant problems +for nesting plovers, interfering with foraging and increasing the frequency +and duration of alertness (Jones & Camuso 1994). Pedestrians may trample +eggs or flush adults from eggs and expose eggs to overheating or to predation. +

+Model:
+Piping plover habitat was mapped using data on known nesting and migration +locations and suitability of cover for nesting and foraging (see table, below). +Nesting occurrence data was obtained from the Massachusetts and New Hampshire +Natural Heritage Programs, and from a report on Maine least tern and piping +plover surveys (Jones et al. 1999). The Massachusetts data consisted of points +observed up through 1992, and also more recent "Priority Habitat" polygons, +drawn by Heritage Program biologists to circumscribe the estimated habitat +of a species "based on field reports, first-hand knowledge, topographic maps +and aerial photos".   +

+Beach areas within 1/4 mi of recent plover nests and having suitable cover +were scored 1.0; areas within 1/4 mi of historic plover nests and having +suitable cover were scored 0.4. Areas within Massachusetts "Priority Habitat" +polygons were otherwise scored 0.8 because they are more generalized than +point data, but judged by local experts to include suitable habitat. Other +areas not documented as nest sites, but with adequate expanses ( > 11,000 +sq m) of apparently suitable cover were scored 0.2. Mapping of potential +nesting habitat was done only within the Ecological Regions (USDA Forest +Service Ecological subunits, Keys et al. 1995) hosting recent nest sites. +

+Foraging habitat was mapped in the vicinity of recent nesting locations, +and also at sites used during migration.  Nesting areas having recent +use were buffered to 120 m, and all suitable foraging cover within this zone, +or within the Massachusetts "Priority Habitat" polygons, was scored as indicated +(table, below); scores of 0.9 and 0.6 indicate relative differences in habitat +value, and allow feeding areas to be distinguished from nesting areas when +mapped. +

+Occurrence data for piping plovers during migration were obtained from the +International Shorebird Survey (Manomet Bird Observatory) and from Maine +Department of Inland Fisheries and Wildlife.  Observation points (ISS) +were buffered 1000 m.  Foraging habitat was scored within these buffer +zones and in the MDIFW polygons according to cover type. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NWI Designations +
+ (wetlands only)
Cover TypesCover Suitability (0 - 1 scale)
Upland deciduous forest
Upland coniferous forest
Upland mixed forest
Grassland1.0*
Upland scrub/shrub
Cultivated
Developed
Bare ground1.0*
PEM, L2EMLake/pond, emergent vegetation
PFOconPalustrine forest, conifer
PFOdecPalustrine forest, deciduous
PSSdecPalustrine scrub shrub, deciduous
PSSconPalustrine scrub shrub, conifer
PAB, L2ABLake/pond, aquatic vegetation
L1UB, PUBLake/pond, unconsolidated bottom
L2USLake, unconsolidated shore
L2RSLake, rocky shore
R1UBRiverine subtidal unconsolidated
RperRiverine perennial
E1ABEstuarine subtidal vegetated
E1UBEstuarine subtidal unconsolidated bottom
E2ABEstuarine intertidal algae
E2EMEstuarine intertidal emergent0.6**
E2RS, R1RSEstuarine, tidal river rocky shore
E2SSEstuarine intertidal shrub
E2US, R1USEstuarine, riverine intertidal unconsolidated shore0.9**
M1ABMarine subtidal vegetated
M1UBMarine subtidal unconsolidated bottom
M2ABMarine intertidal algae
M2RSMarine intertidal rocky shore
M2USMarine intertidal unconsolidated shore0.9**
NOTES*Dunes, vegetated beach ridge - as nesting
+ **Near active nesting areas, migration staging areas -  as foraging
+

+

+Sources:
+
+Elias-Gerken, S.P., J.D. Fraser and P.A. Buckley. 1995. Piping plover habitat +suitability on central Long Island, New York barrier islands. Final report +submitted to the National Park Service. Unpublished, 242 pp.
+
+Elias, S.P., J.D. Fraser and P.A. Buckley. 2000. Piping plover brood foraging +ecology on New York barrier islands. J. Wildl. Manage. 64(2):346-354. +

+Goldin, M.R. and J.V. Regosin. 1998. Chick behavior, habitat use, and +reproductive success of piping plovers at Goosewing Beach, Rhode Island. +J. Field Ornithol. 69(2):228-234.
+
+Haig. S.M. 1992. Piping plover. The Birds of North America, 2. +

+DeGraaf, R.M. and J.H. Rappole. 1995. Neotropical Migratory Birds: Natural +History, Distribution and Population Change. Comstock Publishing Associates, +Ithaca, NY. 676 pp.. +

+Goossen, J.P. 1989. Piping plover. Hinterland Who's Who. Canad. Wildl. Serv. +Ottawa, Ontario. +

+Hayman, P., J. Marchant and T. Prater. 1986. Shorebirds: an identification +guide to the waders of the world. Houghton Mifflin Co., Boston, MA. 412 pp. +

+Jones, J.J. and J. Camuso. 1994. Piping Plover and Least Tern Project Report. +Maine Audubon Society, Falmouth, ME. 40 pp. +

+Jones, J.J., G. Giumarro and K. Williamson. 1999. 1998 Piping Plover and +Least Tern Project Report. Maine Audubon Society, Falmouth, ME. 19 p. +

+Keys, J.E., Jr., J. C. Carpenter, S. Hooks, F. Koenig, W.H. McNab, W. Russell +and W. Smith. 1995. Ecological units of the eastern United States - first +approximation (map and booklet of map unit tables), Atlanta, GA. +

+USFWS. 1996. Piping Plover (Charadrius melodus) Atlantic Coast +Population, Revised Recovery Plan. Hadley, MA. 258 pp. + diff --git a/office/regression/000_000195.html b/office/regression/000_000195.html new file mode 100644 index 0000000..2d47906 --- /dev/null +++ b/office/regression/000_000195.html @@ -0,0 +1,90 @@ + + +BASIS+ Tools: Simple Search + + + + + + + + + +

+ +
+ + + PTS: 2302BM2.6.0
+ + Title: PWRC-Effects of offroad vehicles on beach fauna [FY04: 2070 A7Y 6]
+ + Keywords:wetland, coastal, geomorphology, pothole, submerged aquatic vegetation, SAV, sea level, SLR, subsidence, global climate change, global warming, terrapin, salt marsh, restoration, island, seaduck, scoter, ecosystem, vegetation, diet, OMWM, sea grass, climate, open marsh water management
+ + Leaders:
* Ginsberg, Howard S., hginsberg@usgs.gov, 401-874-4537, FAX 401-874-6887, University of Rhode Island Narragansett Bay Campus, Narragansett, RI 02882-1197
+ Communication Plan: The results of this project will be reported in peer-reviewed scientific publications, as well as in presentations at scientific meetings. A report will be produced for the National Park Service. A narrowly-targeted, low cost (in terms of labor and time) monitoring program for beach wrack and associated invertebrates will be provided for CACO. Supporting materials for compiling and interpreting monitoring data will be provided. + +The products from this project will provide Resource Management staff at CACO with a monitoring program for beach biota that will be doable by park staff, will fulfill the requirements of the negotiated rules on beach traffic, and will give resource managers clear indications of the effects of their management actions on the beach biota. The reports from this project will provide the first quantitative description of the community structure of the beach wrack biota. This will provide basic understanding of this fauna that will allow assessment of changes in beach fauna, and of the effects of disturbances such as beach nourishment and oil spills, as well as ORV traffic. The project will also provide previously unavailable information about the natural dynamics of organisms that provide food for shore birds, including the listed piping plover.
Objectives: This task addresses goal 5 of Terrestrial, Freshwater and Marine Ecosystems: Quantify and understand factors influencing patterns of temporal and spatial variability in key ecosystem components. This task also addresses goal 2 of Status and Trends of Biological Resources: Develop and evaluate inventory and monitoring methods, protocols, experimental designs, analytic tools, models, and technologies to measure biological status and trends. + +Community-level dynamics of the beach invertebrate fauna at Cape Cod National Seashore will be described and quantified. A monitoring program will be developed to assess the effects of offroad vehicle traffic on the beach biota. + +Results of the experiments will be analyzed, and the preliminary monitoring program will be evaluated based on the validation samples. + +Results will be presented to DOI staff with management interests in shoreline change and beach biota (e.g., coastal national parks and FWS staff and others working on piping plovers), and to USGS coastal scientists. Manuscripts and other standard scientific reporting instruments will be prepared.
Statement of Problem: Cape Cod National Seashore (CACO) harbors forty miles of pristine sandy beaches that attract millions of visitors each year. ORV use on beaches, primarily for fishing, predates the establishment of CACO in 1961. Until recently, many used the 8.5?mile Off?Road Vehicle (ORV) corridor (designated by the 1981/1985 ORV Management Plan) to access recreation sites. However, growing concern over nesting piping plovers Charadrius melodus (federally?designated threatened in 1986) has resulted in revision of the old ORV rule. The new ORV rule will close a section of the existing off?road vehicle corridor (Exit 8 to High Head North), but simultaneously open a section of the outer beach that was formerly closed (Coast Guard Beach to Longnook). This change could result in shifting impacts on ocean beach invertebrates, which comprise an important part of the piping plover's diet and a major portion of the natural beach community. Optimum foraging habitat appears to be a factor in piping plover nest site selection and reproductive success. As part of the agreement that gave rise to the new ORV rule, CACO is required to send yearly reports to the Secretary of the Interior, describing the effects of vehicle traffic on the beach fauna. This agreement was developed using the ¿Negotiated Rule Making¿ process, so CACO is obligated to carry out its provisions. In fact, CACO has recently come under threat of litigation if it does not carry out the beach biota monitoring provision of the negotiated agreement. + + In this project we will: (1) inventory the beach fauna at CACO, assess underlying variability, and set up a long-term monitoring program that can assess the status of the natural community on beaches open vs. closed to ORV traffic;. and (2) monitor the relationships between major environmental factors and beach invertebrate communities to determine whether ORV traffic or environmental differences account for the observed differences in beach biota between sites. Status of the beach biota will be assessed by monitoring species richness, abundance of indicator species, dominance-diversity relationships, and guild structure of the beach communities. + + +
2005 Statement of Work: Analysis of field experiments on the effects of ORV traffic on the beach invertebrate fauna will be completed. Analysis of studies on dynamics of the beach invertebrate fauna will be completed. A monitoring program to assess the effects of ORV traffic on beach invertebrates will be completed and presented to Cape Cod National Seashore staff. Results will be written for scientific publication.
2006 Statement of Work: Analysis will be completed and results written up for publication.
2007 Statement of Work: Field work is completed and data have been analyzed. Completion of reports and scientific manuscripts will be performed during FY07.
2008 Statement of Work: Field work has been completed on this project, data have mostly been analyzed, and reports are now being written. Manuscripts will be completed during FY08.
+ Product: Newsletters Delivered Ginsberg, H.S. & J.M. Steinback. 2000. The + biotic community of sandy beaches. + RINHewS 7(2):2-3.
Product: Posters Delivered Steinback, J., H. Ginsberg, and R. Cerrato. 2004. Effects of Off-Road Vehicles (ORVs) on beach invertebrates. poster, Expanding the Ark: the Emerging Science and Practice of +Invertebrate Conservation, American Museum of Natural History, NY
Product: Posters Delivered HOWARD GINSBERG +JACQUELINE STEINBACK, 2003, SANDY BEACH MACROINVERTEBRATES: COMMUNITY DYNAMICS AND EFFECTS OF OFF-ROAD VEHICLES, USGS
Product: Posters Delivered Maria Aliberti and Howard Ginsberg, 2006, Natal habitat use by dragonflies along an urbanization gradient in Rhode Island, Environmental Protection Agency Vulnerable Wetlands Forum
Product: Presentations Delivered Aliberti, M.A. & H.S. Ginsberg. Does anyone prefer urban wetlands? A landscape pattern for conservation consideration in New England. presentation. 2008 North American Benthological +Society (NABS) Annual Meeting - upcoming
Product: Presentations Delivered Aliberti, M.A. & H.S. Ginsberg. 2007. Urban vs. rural colonists ¿ teasing out the patterns of wetland use by dragonflies on our urbanizing New England landscape. presentation. 2007 North +American Benthological Society (NABS) Annual Meeting, Columbia, SC.
Product: Presentations Delivered HOWARD GINSBERG +JACQUELINE STEINBACK, 2002, MONITORING THE EFFECTS OF OFF-ROAD VEHICLE TRAFFIC ON THE BEACH INVERTEBRATE FAUNA, National Park Service, Cape Cod National Seashore
Product: Presentations Delivered M.A. Aliberti and H.S. Ginsberg, 2006, Persistence of dragongly exuviae on vegetation and rock substrates: a useful tool for monitoring wetland fauna, New England Association of Environmental Biologists
Product: Presentations Delivered M.A. Aliberti and H.S. Ginsberg, 2006, The assemblage of dragonfly species emerging from small wetlands along an urbanization gradient, North American Benthological Society
Product: Report Delivered Raithel, C.J., H.S. Ginsberg, & M.L. Prospero. 2006. Population trends and flight behavior +of the American burying beetle, Nicrophorus americanus (Silphidae), on Block Island, +RI. Journal of Insect Conservation 10:317-322
Product: Report Planned M.A. Aliberti and H.S. Ginsberg, Persistence of dragonfly exuviae on vegetation and rock substrates, Northeastern Naturalist
Product: Report Planned J.M. Steinback & H.S. Ginsberg, The effect of off-road vehicles on barrier beach invertebrates of the temperate Atlantic Coast, U.S.A., National Park Service
Product: Report Planned Steinback, J.M., R.M. Cerrato, & H.S. Ginsberg. , Guild structure of the sandy beach invertebrate fauna on Fire island, NY, Marine Biology
+
+Thanks to USGS Patuxent Wildlife Research Center for hosting this page for the USGS Biology Science Staff. + +
+

+ Accessibility + FOIA + Privacy + Policies and Notices +

+

+ Take Pride in America logo + USA.gov logo + U.S. Department of the Interior | + U.S. Geological Survey
+ URL: + + http://www.pwrc.usgs.gov/BasisSimpleSearch.cfm
+ Page Contact Information: Paul_Geissler@usgs.gov
+

+
+ + + diff --git a/office/regression/000_000197.html b/office/regression/000_000197.html new file mode 100644 index 0000000..2592b5d --- /dev/null +++ b/office/regression/000_000197.html @@ -0,0 +1,496 @@ + + + + + NOAA's National Ocean Service Education: Estuaries + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +NOAA Ocean Service Education banner + + + + + +
+ + + + + + + + + + + + + +
+


+
+

+
+
+ " "
+
+

Estuaries
+

+ + + + + + + +
+

Natural Disturbances to Estuaries

+
""next page
+ +
+
+ + + + + + + + + + + + + + + + + + + +
before ivan  after Ivan

 
This pair of images illustrates the destructive power that hurricanes can have on estuarine environments. This barrier island in Pine Beach, Alabama, was severed following hurricane Ivan’s landfall in late 2004. The image on the left was taken on July 17, 2001. The image on the right was taken on September 17, 2004, soon after Hurricane Ivan reached the Alabama mainland. Click on either image for a larger view.
 
+

Estuaries are fragile ecosystems that are very susceptible to disturbances. Natural disturbances are caused by the forces of nature, while anthropogenic disturbances are caused by people. Natural disturbances include winds, tidal currents, waves, and ice. Anthropogenic disturbances include pollution, coastal development, and the introduction of non-native species to an area.

+ + + + +
+ + + + + + + + + + + + + +
microscopic view of zooxanthellae

+
+ Dead floating plant material, called wrack, is often deposited on salt marshes by high spring tides, smothering all of the plant life beneath it. Click on image for more details and a larger view. (Photo: Weeks Bay NERRS site)
+
+

We like to think of natural places as being stable over time, but, in fact, they are not. Natural habitats are continually disturbed by natural processes, followed by periods of recovery. When a natural disturbance is followed by an anthropogenic disturbance or vice versa, a habitat may become so damaged that it never recovers.
+
One type of natural disturbance is the continual pounding of ocean waves. In many estuaries, barrier beaches protect inland habitats from wave erosion. If these beaches are destroyed, salt marshes and inland habitats adjacent to the estuary may become permanently damaged. Waves can also dislodge plants and animals, or bury them with sediments, while objects carried by the water can crush them. Large storms are especially destructive to estuaries, particularly in areas like Florida and the Carolinas, where barrier beaches are common.
+

+

A common disturbance to estuaries in nontropical regions is winter ice (Bertness, 1999). Ice can freeze on an estuary’s shoreline, or float freely in the water. When slabs of free-floating ice make contact with the shore, they have a scouring effect, dislodging and killing the plants and shoreline animals that lie in their path. When sheets of ice form on the shore, especially in salt marshes, they can trap plants and grass stalks inside them. During high tides, these ice sheets are lifted up, or rafted, inland to the high marsh. These rafts carry both ice and tufts of plants inshore. When the rafts settle down at low tide, they can smother inshore vegetation or scrape it from the soil. Further damage is caused as these sheets of ice and vegetation are rafted and dragged across the marsh with the ebb and flow of the daily tides.
+
Another natural disturbance in salt marshes is the burial of vegetation by rafts of dead floating plant material, called wrack. Wracks can be quite large—up to hundreds of square meters, and up to 30 centimeters thick. The spring high tides often move these wracks into the high marsh, where they become stranded (Bertness, 1999).
+
+

+

(top)

+
+ +
+ + + + +
" " +

+

+ + + + + + + + + + + + + +
+
+
+

+

+
+ +
+

+
+
+
+ +
+
+
+

Roadmap to Resources

+

Tutorial PDF
(pdf, 12.9Mb)

+

Subject Review
+ (pdf, 240 Kb) +

+
+

Welcome +

+ What is an Estuary? +

+ Why Are Estuaries Important? +
+
+ º Economy and Environment +
+
+ º Ecosystem Services +
+
+ Classifying Estuaries
+
+ º Geology

+ º Water Circulation

+ Estuarine Habitats

Adaptations to Life in the Estuary

+ Disturbances to Estuaries
+
+ º Natural
+
+
+ º Human
+
+
+ Monitoring Estuaries
+
+ The + Future
+ +
+ References

+
+
+

+
+ +
+
+

+
+

+
+ + + + + + + + +
""next page
+
+
+
+
+ +
+ + + \ No newline at end of file diff --git a/office/regression/000_000198.html b/office/regression/000_000198.html new file mode 100644 index 0000000..28791d1 --- /dev/null +++ b/office/regression/000_000198.html @@ -0,0 +1,644 @@ + + Fire Island National Seashore - Beaches (U.S. National Park Service) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
National Park Service LogoU.S. Department of the InteriorNational Park ServiceNational Park Service
National Park Service:  U.S. Department of the InteriorNational Park Service Arrowhead
+
Fire Island National SeashoreDune face erodes as waves break on shoreline.
view map
text size:largestlargernormal
printer friendly
+ + + + + + + + + + + + + + + + + + +
+ +
Fire Island National Seashore
+
Beaches
+
+ +
+ + + + + + + + + + + + + + + + + + +
 
+
+
+ + + + + +
+ + + + + +
Watch Hill Beach in summer.
The summer beach is typically wider and flatter than the beach in winter.
+

Fire Island's beaches are composed mainly of white quartz sand of varying grain size. Occasional layers of heavy mineral sands—which include grains of garnet and magnetite—appear as colored bands among the predominantly white sediment. Occasionally, you will find pebbles or other gravel and fragments of shell on the beach.  

+

The particle size of beach sand is layered, depending on the energy of the depositing waves and wind.

+

 

+
+
 
+ + + + + +
+ + + + + +
Exposed black peat is uncovered on ocean beach.
Hard, black deposits of peat are occasionally uncovered on Fire Island's Atlantic Ocean beach.
+

The size and shape of the beach is always changing. While sediment is constantly being moved more or less perpendicular to or from shoreline by tidal and wave action, the predominant net movement of sediment along Fire Island's coast is parallel with the shore through the effects of longshore currents. The movement is called longshore sediment transport and its rate is dependent on wave energy and the angle at which waves strike the coast.

+
+
 
+ + + + + +
+ + + + + +
Coastal Geology Multimedia program cover.
NPS Natural Resource Program Center
+

For More Information

+

You can learn more about coastal processes at the NPS "Views of the National Parks" web site:

+ +

 

+
+
+ +
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
+ +
Close-up view of roots and sand grains beneath golden stems.  +

+ Did You Know?
+ Tiny rootlets of the American beach grass (Ammophila breviligulata) and mycorrhyzal fungi hold together the grains of sand that make up sand dunes on Fire Island. You can help protect the dunes by not walking or driving over the beach grass. +
more... + +

+
+ + + + +
+ + + + + + + + +

Last Updated: January 20, 2007 at 18:30 EST

+ +
\ No newline at end of file diff --git a/office/regression/000_000199.html b/office/regression/000_000199.html new file mode 100644 index 0000000..eaca376 --- /dev/null +++ b/office/regression/000_000199.html @@ -0,0 +1,729 @@ + + Fire Island National Seashore - Threatened and Endangered Species (U.S. National Park Service) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
National Park Service LogoU.S. Department of the InteriorNational Park ServiceNational Park Service
National Park Service:  U.S. Department of the InteriorNational Park Service Arrowhead
+
Fire Island National SeashoreNest with four eggs in a slight depression on the sand, among fragments of broken sea shells.
view map
text size:largestlargernormal
printer friendly
+ + + + + + + + + + + + + + + + + + +
+ +
Fire Island National Seashore
+
Threatened and Endangered Species
+
+ +
+ + + + + + + + + + + + + + + + + + + + +
 
+
+
+ + + + + +
+ + + + + +
Piping Plover adult.
The piping plover is a small, stocky migratory shorebird that blends in with its sandy beach surroundings. From March to late July, piping plovers breed on Atlantic Coast beaches from Canada to Virginia. They return to the south Atlantic Coast, Gulf Coast, Bahamas and West Indies for the winter.
+

Since 1986, Fire Island National Seashore—together with other federal, state, and local governments, volunteers, and private organizations—has been preserving and monitoring critical habitats and open spaces for the protection of threatened and endangered shorebirds and coastal plants.

+

Two federally listed threatened and endangered (T & E) bird species are known to nest within Fire Island National Seashore. The piping plover (Charadrius melodus) is on the federal threatened and New York State endangered list. The roseate tern (Sterna dougallii) is federally and state endangered. The state-listed threatened least tern (Sternula antillarum) and the common tern (Sterna hirundo) also nest on Fire Island.

+

The bald eagle (Haliaeetus leucocephalus) was officially removed from the federally threatened list on August 8, 2007. Eagles continue to be protected by the 1940 Bald and Golden Eagle Protection Act and the 1918 Migratory Bird Treaty Act. Bald eagles are occasionally sighted in the national seashore. Its presence is recorded during the annual fall hawk watch by Fire Island Raptor Enumerators (FIRE) near the Fire Island Lighthouse.

+
+
 
+ + + + + +
+ + + + + +
Sprawling plant on sand.
Seabeach amaranth is a small annual plant with rounded, waxy leaves and reddish stems. It grows low to the ground and colonizes beaches between the high tide line and the dune area.
+

The seabeach amaranth (Amaranthus pumilus) is a federally threatened annual plant species that grows on some of Fire Island National Seashore's beaches.

+

The seabeach knotweed (Polygonum glaucum) is a New York State rare plant that can be found on Fire Island. 

+

 

+
+
 
+ + + + + +
+ + + + + +
Sign on beach in front of lighthouse.
Signs, symbolic fencing and exclosures around nests are some of the measures that are taken to ensure the survival of the federally threatened/state endangered piping plover.
+

Fire Island National Seashore's piping plover monitoring and protection program begins in March with a restriction on driving, pets and kites on portions of the beach. Symbolic fencing is installed to mark suitable plover habitat.

+

As nests are established, exclosures are constructed to protect both nest and eggs. After the chicks have fledged, restrictions on pets and kites are lifted, but the symbolic fencing is left in place for the protection of beach plants.

+

 

+

You Can Help

+
    +
  • Respect fenced areas and stay clear of bird nesting areas.
  • +
  • Where they are permitted, always keep dogs leashed.
  • +
+
+

 

+
+
 
+ + + + + +
+

Three species of endangered whales may occur in the waters offshore of Fire Island: fin whale (Balaenoptera physalus), humpback whale(Megaptera novaeangliae) and northern right whale (Eubalaena glacialis).

+

Five species of sea turtles have been documented around Fire Island, although none nest in the area. The Kemp's ridley turtle (Lepidochelys kempii), leatherback turtle (Dermochelys coriacea), and hawksbill turtle (Eretmochelys imbricata) are federally endangered species. The loggerhead turtle (Caretta caretta) and green turtle (Chelonia mydas) are federally threatened.

+

 

+
+
 
+ + + + + +
+ + + + + +
Riverhead Foundation and National Park Service staff examine dead turtle on beach.
Sea turtles are not known to nest on Fire Island, but an occasional animal will wash ashore. Staff from the Riverhead Foundation assist National Park Service rangers in the recovery and examination of stranded marine animals. 
+

Occasionally, a threatened or endangered species will wash ashore, where it may be rescued or recovered by the Riverhead Foundation, one of Fire Island National Seashore's partner organizations. Cold-stunned sea turtles are particularly vulnerable. 

+

You Can Help

+
    +
  • Patrol the beaches for sick & injured marine mammals and sea turtles
  • +
  • Report any sightings of healthy marine mammals and sea turtles to 631-369-9840 ext. 15
  • +
  • Riverhead Foundation's 
    +24-hour Stranding Hotline 631-369-9829
  • +
+
+

 

+
+
 
+ + + + + +
+ + + + + +
2007 T & E Species Monitoring report cover.
+

Learn More

+ +

Visit the National Park Service's Nature & Science web site to learn more about Threatened and Endangered Species.
+
+

+ +
+
+
+
Aerial view of Fire Island at its narrowest point, Barrett Beach.
Fire Island Habitats
Learn more about the natural features and ecosystems of Fire Island National Seashore.
more...
Close-up view of yellowthroat warbler head.
Learn More About Fire Island Birds
Diverse habitats along the Atlantic flyway support a variety of avian species.
more...
Two birdwatchers look through binoculars.
Birdwatching
is a great way to enjoy Fire Island's wildlife.
more...
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
+ +
Dead whale in swash on beach.  +

+ Did You Know?
+ Whales and other marine mammals live in the ocean south of Fire Island. Occasionally, they are can be spotted from shore, and rarely a dead whale will wash ashore. +
more... + +

+
+ + + + +
+ + + + + + + + +

Last Updated: October 30, 2007 at 10:03 EST

+ +
\ No newline at end of file diff --git a/office/regression/000_000200.html b/office/regression/000_000200.html new file mode 100644 index 0000000..6e87fe6 --- /dev/null +++ b/office/regression/000_000200.html @@ -0,0 +1,75 @@ + + +NOAA Photo Library + + + +
+ + + + +
NOAA Photo Library Banner
+ + + + +
+ + + +
+ + + + + + + + +
+

+NOAA Photo Library Image - r000db17

+

+ + + +

+Dixon Bay, oiled Spartina alterniflora in the wrack line of the marsh. +

+Image ID: r000db17, NOAA's Restoration Center Collection
+Location: Venice, Plaquemines County, Louisiana
+Photo Date: January 28, 1995
+Credit: NOAA Restoration Center +

+• High Resolution Photo Available +

+
+
+
+
+

+

+
+
+ + + + +
+ Publication + of the U.S. Department of Commerce, National Oceanic & Atmospheric + Adminstration (NOAA),
+ NOAA Central Library
+ NOAA Privacy Policy + | NOAA Disclaimer
+ + Last Updated:
+ April 23, 2007 +
+
+
+
+
+ + diff --git a/office/regression/000_000201.html b/office/regression/000_000201.html new file mode 100644 index 0000000..8bf8562 --- /dev/null +++ b/office/regression/000_000201.html @@ -0,0 +1,294 @@ + + + + + + + + + + + + + +Post Hurricane Katrina Photographs of Louisiana Barrier Islands + + + + + + + + + + +
+
+
USGS - science for a changing world
+ +
+
+
+

National Wetlands Research Center

+ + +
+ + + + + + +
+ + + + + + +
+ + + + + + + + + + + +
  + Home / + About NWRC / + Issues & Capabilities / + NWRC Library / + Publications / + Data & Maps / + Staff / + Hot Topics / + Search / + Site Index
+
+ + +

Hurricane Katrina Photographs August 30, 2005

+

Scientists with the U.S. Geological Survey’s National + Wetlands Research Center have surveyed the impacts of Hurricane Katrina on + the barrier islands, barrier shoreline, and the Mississippi River Delta along + the Louisiana coastline.

+

Louisiana Louisiana Barrier IslandsOn + August 30, the day after Hurricane Katrina struck the gulf coast, USGS research + wildlife biologist Tommy Michot and + USGS geographer Chris Wells conducted a post-hurricane flight to photograph + and assess damage from Raccoon Island to the Isles Dernieres, just east of + the important oil port, Port Fourchon. They continued to the mouth of the + Mississippi River Delta by Grand Isle, then Venice, up along the Chandeleur + Islands, and finally back west over the north shore of Lake Pontchartrain + to natural and wildlife areas around Fort Pike, Slidell, and then Mandeville.

+

Their primary focus was the impacts on the ecosystems, such as fish kills, + the destruction of rookeries, and the endangerment of seagrass beds that provide + habitats for fish, birds, and shellfish.

+

In addition to addressing these biological concerns, Michot and Wells also + witnessed the destruction of many human structures. For example, on Grand + Isle, a recreational area for sport fisheries, almost everything was damaged: + several homes and camps were completely obliterated, debris was scattered + across the island, and several cars and boats were displaced. The town of + Venice, just west of the Delta National Wildlife Refuge, was completely flooded + and suffered similar damage, leaving boats, lumber and dead vegetation washed + up against the levee.

+

Some of the most dramatic impacts of Hurricane Katrina were seen along the + Chandeleur Islands, the first line of defense from tropical storm damage for + the coast of Louisiana. The land mass has been reduced by approximately 50 + percent. The Chandeleur lighthouse is no longer visible and has most likely + toppled with its remains now submerged in the flooded water.

+

The Chandeleur Island chain has been hit by five storms in the past eight + years. In 1998 it endured the effects of Hurricane Georges. + In 2002 it suffered further damage from both Tropical Storm Isadore and Hurricane + Lili. In 2004 it was battered by Hurricane Ivan, + and it has been struck hard once again by Hurricane + Katrina.

+

Michot and other scientists have collected images of the impact and recovery + of the islands after each of these storms and found that after every major + storm hit, the depth of erosion was greater and the land’s recovery + time was longer. Before Hurricane Katrina there was some land recovery from + the damage caused by last year’s Hurricane Ivan; that restored landmass + has once again been destroyed.

+

The Chandeleur Islands not only protect important habitats for wildlife, + but they also act as barriers which help dampen the impacts of hurricanes + and tropical storms on Louisiana’s coast.

+

The National Park Service has requested images of Jean Lafitte Natural Historical + Park and Preserve, and the U.S. Fish and Wildlife Service has asked for images + from Pearl River. On September 1, 2005, Michot and Wells plan to fly again + to provide additional photographs. Continue to check back at this site for + updates and further information.
+

+

Chandeleur Islands, LA

+

 

+

Former Location of the Chandeleur Lighthouse
+ Chandeleur lighthouse +
+ Current northern extent of Chandeleur Island chain, 3.25 NM south of the former + location of the Chandeleur lighthouse.

+

 

+

Air Force Radio Tower
+ Air Force radio tower located near the former northern tip of the Chandeleur + Island chain. The Chandeleur lighthouse formerly stood just to the left of + this tower but is now gone.

+

 

+

Redfish Point
+ Redfish Point +
+ Middle of Chandeleur Island main chain, looking from north to south. Redfish + Point, on the longest peninsula, is visible in background, center of photo. + New Harbor Island to the right.

+

 

+

Redfish Point
+ Redfish Point looking from west to east. Note seagrass beds in the foreground.

+

 

+

Redfish Point +
+ Southern part of Chandeleur Island main chain from Redfish Point looking south.

+

 

+

Monkey Bayou
+ Chandeleur Island Monkey Bayou
+ Current southern tip of Chandeleur Island main chain, looking northward from + Monkey Bayou in the foreground. Note the dark brown wrack, wave deposited + dead vegetation and debris, on right.
+

+

Breton Island
+ Breton Island
+

+

Curlew Island
+ Curlew Island
+

+

Gosier Island
+ Gosier
+

+

New Harbor
+ New Harbor
+

+

North Island
+ North IslandNorth Island
+

+
+

Venice, LA
+ Venice + VeniceVeniceVenice
+ Venice is the southernmost permanently inhabited area on the Louisiana coast + and is situated within a ring levee on the Mississippi. The levee was ineffective + during Hurricane Katrina. The entire town was flooded, oil field vessels and + barges were strewn haphazardly, and huge deposits of wrack were left on both + sides of the ring levee on the west side of town. The U.S. Fish and Wildlife + Services headquarters for Delta National Wildlife Refuge appeared to be structurally + sound, although the first floor was damaged. A newly constructed tool shed + was crushed by a massive barge-crane, which apparently floated on top of the + building.

+
+

Grand Isle, + LA
+ Grand IsleGrand IsleGrand IsleGrand Isle
+

+
+

Grand Terre
+ Grand TerreGrand Terre
+

+
+

Isles + Dernieres
+ Isles DernieresIsles Dernieres
+ The central Isles Dernieres were minimally impacted by Hurricane Katrina.

+
+

Old Oyster + Bay
+ Old Oyster BayOld Oyster Bay
+ Scientists from the USGS maintain permanent research sites in coastal Louisiana + and elsewhere. Two important sites are at Old Oyster Bayou and at Bay Junop. + Neither site appeared to have any impact from the storm.

+
+

Raccoon + Island
+ Raccoon IslandRaccoon IslandRaccoon IslandRaccoon Island
+
+
Imagery from the 1950s to 2003 at Raccoon Island has been mapped + by NWRC geographers. The mapping has been conducted to assess changes in habitat + and island conformation. The post-Katrina photography here indicates minor + changes due to the hurricane. Some sand behind the breakwaters was repositioned + or eroded, and there was some minor overwash on the western end of the island. + Nestling pelicans were still present on the nests, but we also a few bodies + of birds beneath the mangroves.

+
+

Timbaliers
+ Timbaliers + Timbaliers
+
The Timbalier islands were increasingly affected from west to east. + Overwash fans and erosion were very apparent on the eastern islands.

+
+

The Rigolets
+ Rigollettes + Rigollettes
+
+ The area from east of the Rigoletes to Mandeville-Covington was in the direct + path of the eyewall of Hurricane Katrina. Many islands and islets were partially + or completely scraped-clean of vegetation. The human impact is stark, compelling, + and terrible. Many shoreline and near-shore homes were shattered leaving streaks + of debris-- formerly homes and businesses-- spread into the marsh and forming + vast wrack fields along the shoreline or drifting in Lake Pontchartrain.

+

The U.S. Fish & Wildlife Service’s Big Branch Headquarters looked + nearly unaffected.

+

 

+

 

+

Return to Hurricanes Katrina and Rita Special Feature
+ Photographs from the NWRC Rescue Effort +
+ Before and After + Photographs

+ +
+ + +
+

+ Accessibility + FOIA + Privacy + Policies and Notices +

+ +

+ Take Pride in America logo + USA.gov logo + U.S. Department of the Interior | + U.S. Geological Survey
+ URL: http://www.nwrc.usgs.gov/hurricane/post-hurricane-katrina-photos.htm
+ Page Contact Information: nwrcweb@usgs.gov
+ Page Last Modified: Tuesday, 12-Aug-2008 16:28:37 EDT +

+
+ + + + + diff --git a/office/regression/000_000202.html b/office/regression/000_000202.html new file mode 100644 index 0000000..e41f531 --- /dev/null +++ b/office/regression/000_000202.html @@ -0,0 +1,418 @@ + + +{ 2001/01/31 TIME: 16-45 , Wed. 107TH SENATE, FIRST SESSION}
+
+[HOME] + +[ARCHIVE] + +[CURRENT] + +
[ram] { NOT AN OFFICIAL TRANSCRIPT OF THE SENATE PROCEEDINGS.}
+
+           CONSTITUTIONAL RIGHTS OF ALL AMERICANS, WRACK, BROWN, WHITE,
+           MALE, FEMALE, YOUNG, OLD, RICH, POOR. IN MY OPINION, FORMER
+           SENATOR ASHCROFT'S RECORD CLEARLY FAILS TO SATISFY THAT MOST
+           BASIC QUALIFICATION. TO THE CON ,, HE HAS ESTABLISHED A YEER
+
+ +[ram]{16:45:37} (MS. STABENOW) { NOT AN OFFICIAL TRANSCRIPT } + +
+           YEAR TRACK RECORD OF OPPOSING EQUAL OPPORTUNITIES AND FAIR PLAY
+           FOR TOO MANY AMERICANS. THE BASIC FACT REMAINS THAT THE U.S.
+           ATTORNEY GENERAL IS THE PEOPLE'S LAWYER. NOT THE PRESIDENT'S
+           LAWYER. THE PEOPLE'S LAWYER. AND HE OR SHE IS THE GUARDIAN OF
+           THE CONSTITUTIONAL RIGHTS OF EVERY AMERICAN CITIZEN. AND I
+           CANNOT, MR. PRESIDENT, IN GOOD CONSCIENCE, SUPPORT A NOMINEE
+
+ +[ram]{16:46:11} (MS. STABENOW) { NOT AN OFFICIAL TRANSCRIPT } + +
+           WHO HAS SPENT MUCH OF THE PAST YEERS YEARS OPPOSING THE
+           CONSTITUTIONAL RIGHTS OF FAR TOO MANY OF OUR CITIZENS. THANK
+           YOU. I YIELD BACK.
+           
+
+ +[ram]{16:46:23 NSP} (THE PRESIDING OFFICER) { NOT AN OFFICIAL TRANSCRIPT } + +
+           THE PRESIDING OFFICER: THE SENATOR FROM NEVADA.
+           
+
+ +[ram]{16:46:25 NSP} (MR. REID) { NOT AN OFFICIAL TRANSCRIPT } + +
+           MR. REID: IF I COULD ENDID MI MY FRIEND FROM UTAH FOR A BRIEF
+           MINUTE. THE MANAGER OF THIS NOMINATION, I KNOW OUR FRIEND FROM
+           KANSAS IS HERE. THE SENATOR FROM HIGH WITH A SPOKE FOR QUITE A
+           LONG PERIOD OF TIME. THE SENATOR FROM MICHIGAN SPOKE FOR A FEW
+           MINUTES. WOULD IT BE APPROPRIATE TO HAVE -- I THINK IT WOULD BE
+           APPROPRIATE BUT I AM ASK THE SENATOR FROM UTAH TO HAVE THE
+           SENATOR FROM CALIFORNIA SPEAK. SHE WILL PROBABLY SPEAK FOR MINS
+           MINUTES OR MINS MINUTES.
+           
+
+ +[ram]{16:46:51 NSP} (MR. HATCH) { NOT AN OFFICIAL TRANSCRIPT } + +
+           MR. HATCH: IT IT WOULD BE ALL RIGHT. I BELIEVE SENATOR
+           BROWNBACK WAS NEXT AND HE WOULD -- I BELIEVE OWE.
+           
+
+ +[ram]{16:46:58 NSP} (MR. BROWNBACK) { NOT AN OFFICIAL TRANSCRIPT } + +
+           MR. BROWNBACK: MR. PRESIDENT, I HAVE ABOUT TEN MINUTES TO SPEAK
+           AND SO IF I COULD I IT WOULD LIKE TO GO IN A BACK AND FORTH
+           ORDER IT WOULD BE APPRECIATED. REELED REED THAT WILL BE FINE.
+           
+
+ +[ram]{16:47:10 NSP} (MR. HATCH) { NOT AN OFFICIAL TRANSCRIPT } + +
+           MR. HATCH: IF THE SENATOR CAN KEEP HIS SPEECH WITHIN TEN
+           MINUTES OR LESS WE WOULD APPRECIATE IT.
+           
+
+ +[ram]{16:47:15 NSP} (MR. BROWNBACK) { NOT AN OFFICIAL TRANSCRIPT } + +
+           MR. BROWNBACK: AM I LIMIT TODAY MINS MINUTES NOW IS THAT
+           CORRECT?
+           
+           
+
+ +[ram]{16:47:18 NSP} (MRS. BOXER) { NOT AN OFFICIAL TRANSCRIPT } + +
+           MRS. BOXER: CAN SKUK I ASK UNANIMOUS CONSENT THAT FOLLOWING
+           SENATOR BROWNBACK, SENATOR REED BE RECOGNIZED THEN SENATOR
+           BOXER THANK YOU.
+           
+
+ +[ram]{16:47:30 NSP} (THE PRESIDING OFFICER) { NOT AN OFFICIAL TRANSCRIPT } + +
+           THE PRESIDING OFFICER: WITHOUT OBJECTION. THE SENATOR FROM
+           KANSAS.
+           
+
+ +[ram]{16:47:33 NSP} (MR. BROWNBACK) { NOT AN OFFICIAL TRANSCRIPT } + +
+           MR. BROWNBACK: THANK YOU VERY MUCH, MR. PRESIDENT. I APPRECIATE
+           THE OPPORTUNITY TO BE HERE AND SPEAK IN FAVOR OF OUR COLLEAGUE,
+           JOHN ASHCROFT TO BE ATTORNEY GENERAL OF THE UNITED STATES. IN
+           LISTENING TO COMMENTS IN SERVING ON THE JUDICIARY COMMITTEE
+           WITH THE ESTEEMED PRESIDING OFFICERS, YOU WONDER SOMETIMES WHO
+           PEOPLE ARE TALKING ABOUT. WHEN I HEAR PEOPLE SAYING HE IS TOO
+           FAR THIS WAY OR THAT WAY TO BE ATTORNEY GENERAL, I WONDER HOW
+
+ +[ram]{16:48:03} (MR. BROWNBACK) { NOT AN OFFICIAL TRANSCRIPT } + +
+           DID HE WIN STATEWIDE ELECTION TO A SWING STATE LIKE MISSOURI
+           FOR STOLE DIFFERENT ELECTION HOU HOW WAS HE ELECTED PRESIDENT,
+           PRESIDING OFFICER OF THE NATIONAL ATTORNEY GENERALS ??
+           HOUR WAS HE ELECTED HEAD OF THE NATIONAL GOVERNOR ABSENCE SOAKS?
+           BIPARTISAN GROUPS. IF THIS GUY IS SO FAR OUT THERE ON THESE
+           ISSUES HOW ON EARTH DID HE GET ELECTED TO ALL THESE POSITIONS?
+           IT JUST BAFFLES ME OTHER THAN TO STAY HE IS NOT EXTREME. IN
+           MOST OF HIS POLICY ISSUES THAT HE HAS PUTS FORWARD HE CARRIES
+
+ +[ram]{16:48:35} (MR. BROWNBACK) { NOT AN OFFICIAL TRANSCRIPT } + +
+           STRONGLY WITH PASSION, BUT THERE IS A SOLID CORE OF AMERICANS
+           IN MANY CASES IN MOST CARESS A MAJORITY OF AMERICANS STRONGLY
+           BELIEVE AND AGREE WITH HIM ON ISSUES LIKE PARTIAL-BIRTH, OTHER
+           ITEMS. BUT THAT REALLY IS NEITHER HERE NOR THERE. THE REAL
+           ISSUE IS WILL HE ENFORCE THE LAW. THAT'S WHAT AN ATTORNEY
+           GENERAL IS REQUIRED TO DO, CALLED MONDAY TO DO WHAT THEY ARE
+           CALLED TO DO IN STATES. HE HAS DONE THAT AS A STATEWIDE ELECTED
+           ATTORNEY GENERAL AND HE WILL DO IT AS NATIONAL ATTORNEY
+           GENERAL. THE ATTORNEY GENERAL FOR THE UNITED STATES. I'M NEW TO
+
+ +[ram]{16:49:06} (MR. BROWNBACK) { NOT AN OFFICIAL TRANSCRIPT } + +
+           THE JUDICIARY COMMITTEE WITH THIS SESSION. I AM LOOKING FORWARD
+           TO SERVING ON THAT BODY. BUT WHAT I HAVE FOUND BY THIS PROCESS
+           THAT WE HAVE HAD OF TREATMENT OF JOHN ASHCROFT, EXTRA
+           ORDINARILY UNFAIR PROCESS UNFOLD, AND I THINK QUITE
+           UNDESERVEDLY TOWARDS JOHN. I GREW UP IN A EMPTY MILESE MILES
+           FROM MISSOURI FROM WHERE JOHN ASHCROFT SERVED IN HAS SMALL TOWN
+           CALLED PARKER, KANSAS. MUCH OF OUR NEWS CAME FROM MISSOURI. I
+           HAD THE OPPORTUNITY TO FOLLOW HIS CAREER NOR A LONG PEERED OF
+
+ +[ram]{16:49:39} (MR. BROWNBACK) { NOT AN OFFICIAL TRANSCRIPT } + +
+           TIME. IT IS AN ASTOUNDING CAREER. IT IS AN ACCOMPLISHED CAREER.
+           OUR STATES HA HAS COMMON ERER. IN THE SENATE JOHN AND I SERVED
+           ON TWO COMMITTEES TOGETHER. WE WERE ON EXAMINERS AND FOREIGN
+           RELATIONS. OUR OFFICES WERE DOWN THE HALL FROM EACH OTHER. ONE
+           TIME WHEN MY APARTMENT BUILDING IN TOWN CAUGHT FIRE HE TOOK ME
+           IN AND LET ME STAY WITH HIM NOR A WHILE WHICH I WOULD SUBMIT HE
+           WOULD DO FOR ANYBODY. THAT NEEDED A HOUSE AND ROOF OVER THEIR
+           HEAD. MORE IMPORTANTLY THAN GEOGRAPHY OR COMMIT ASSIGNMENTS OR
+           COMMON COURT CITIES JOHN EXTEND TODAY SOME PEOPLE IN HIS
+
+ +[ram]{16:50:12} (MR. BROWNBACK) { NOT AN OFFICIAL TRANSCRIPT } + +
+           LIFETIME, IS JOHN IS, AS I HAVE LEARNED AS A FRIEND AND PERSON
+           WHO KNOWS HIM WELL, IS AN HONEST INDIVIDUAL, COMPLETELY FULL OF
+           INTEGRITY, AS HAS GREAT DID HE TO TO HIS FAMILY, HIS CREATOR,
+           HIS STEADFAST IN HIS BELIEF THAT EACH OF US IS PUT HERE ON
+           EARTH TO HELP OUR FELLOW MAN AND TO LEAVE THE WORLD A BETTER
+           PLACE FOR ALL OF OUR CHILDREN. CONTRARY TO THE ASSERTIONS OF
+           THOSE WHO ARE MAKING A LIVING EBBS ASER BAITING THE TENSES THAT
+           DIVIDE US AS A NATION, I KNOW JOHN ASHCROFT IS COMMITTED TO OUR
+
+ +[ram]{16:50:46} (MR. BROWNBACK) { NOT AN OFFICIAL TRANSCRIPT } + +
+           NATION'S PROMISE OF EQUAL JUSTICE FOR ALL. PRESIDENT BUSH MADE
+           HAND OUTSTANDING CHOICE FOR ATTORNEY GENERAL. JOHN ASHCROFT IS
+           ONE OF THE MOST QUALIFIED NOMINEES FOR THE OFFICE OF ATTORNEY
+           GENERAL IN HISTORY. BUT EVEN MORE IMPRESSIVE IN HIS RESUME, MR.
+           PRESIDENT, ARE JOHN ASHCROFT'S WORDS AND DEEDS. ARTICLE ,,
+           SECTION 3 OF THE CONSTITUTION, PROVIDES THAT THE PRESIDENT OF
+           THE UNITED STATES AND HERE IS A QUOTE "SHALL TAKE CARE THAT THE
+           LAWS BE FAITH FLY EBBS CUTED." THE DEPARTMENT OF JUSTICE IS THE
+           PRIMARY GOVERNMENT AGENCY CHARGED WITH THE PRESIDENT'S
+
+ +[ram]{16:51:19} (MR. BROWNBACK) { NOT AN OFFICIAL TRANSCRIPT } + +
+           CONSTITUTIONAL DUTY TO FAITHFULLY EXECUTE THE LAWS OF THE
+           UNITED STATES. JOHN ASHCROFT FULFILLED THIS FUNCTION AS A TWO
+           TIME ATTORNEY GENERAL OF THE STATE OF MISSOURI. IN THAT ROAM
+           JOHN ASHCROFT UPHELD LAWS WHICH HE PERSONALLY DISAGREED WITH,
+           AND WHICH MANY OF US IN THIS BODY MIGHT DISAGREE WITH AS WELL.
+           BUT AS MISSOURI ATTORNEY GENERAL HE SWORE AN OATH TO UPHOLD THE
+           LAW AND HE DID. MR. PRESIDENT, THERE ARE MANY ISSUES ON WHICH
+           MANY OF US IN THIS BODY DISAGREE. BUT WE ARE LEGISLATORS AND
+           WRITE LAWS. THAT IS NOT THE ROLE OF THE ATTORNEY GENERAL OF THE
+
+ +[ram]{16:51:52} (MR. BROWNBACK) { NOT AN OFFICIAL TRANSCRIPT } + +
+           UNITED STATES. MR. PRESIDENT, JOHN ASHCROFT RAISED HIS RIGHT
+           HAND, SWORE BEFORE THE SENATE JUDICIARY COMMITTEE THAT HE WOULD
+           FAITHFULLY OWN FORCE THE LAWS OF THIS LAND TO HELP ME GOD. AS A
+           PERSON WHO FEELS FORTUNATE TO CALL JOHN ASHCROFT A FRIEND, AS
+           MOST PEOPLE IN THIS BODY, I DON'T THINK THERE IS A STRONGER
+           GUARANTEE HE WILL DO THAT THAN THE OAT THAT HE TOOK. SOME HAVE
+           CALLED SENATOR ASHCROFT'S RECORD ON CIVIL RIGHTS AND MISSOURI
+           INTO QUESTION. THIS HAS BEEN A PROGRAM OF DISTORTION. AS
+
+ +[ram]{16:52:23} (MR. BROWNBACK) { NOT AN OFFICIAL TRANSCRIPT } + +
+           MISSOURI GOVERNOR HE SIGNED THE FIRST HATE CRIME STATUTE INTO
+           LAW. AS UNITED STATES SENATOR HE SUPPORTED EVERY
+           AFRICAN-AMERICAN JUDICIAL NOMINEE CONFIRMED BY THE SENATE, AS
+           CHAIRMAN OF THE JUDICIARY COMMITTEE ON THE CONSTITUTION HE CON
+           STREEND A HEARING AND RACIAL PROFILING WITH SENATOR FEINGOLD.
+           STATED ON THE RECORD THAT RACIAL PROFILING IS UNCONSTITUTIONAL.
+           SENATOR ASHCROFT'S RECORD SPEAKS FOR ITSELF. HE IS A MAN OF
+           INTEGRITY DEDICATED TO EQUAL JUSTICE UNDER THE LAW. THERE HAVE
+           BEEN OTHER DISTORTIONS OF SENATOR ASHCROFT'S RECORD BUT I THINK
+
+ +[ram]{16:52:56} (MR. BROWNBACK) { NOT AN OFFICIAL TRANSCRIPT } + +
+           OTHERS HAVE BEEN ABLE TO HIT SOME OF THAT. ONE I WAS MOST HEART
+           END THOUGH TO HEAR ABOUT COMMENTS ABOUT HIS RECORD WERE THOSE
+           FROM SENATOR FEINGOLD, DEMOCRAT FROM WISCONSIN. REMARKS HE MADE
+           YESTERDAY IN THE JUDICIARY COMMITTEE. HE EXTENDED AN OLIVE
+           BRANCH OF PEACE AND COOPERATION TO OUR SIDE OF THE AISLE. WE
+           HAVE A SENATE MORE EVENLY DIVIDED THAN WE HAVE HAD FOR ALMOST
+           50 YEARS. SENATOR FEINGOLD ANSWERED PRESIDENT BUSH'S CALL TO
+           CHANGE THE TONE IN WASHINGTON. IT IS A BOLD STEP. A STEP I HOPE
+
+ +[ram]{16:53:28} (MR. BROWNBACK) { NOT AN OFFICIAL TRANSCRIPT } + +
+           MY INCREASE ON THE OTHER SIDE OF THE AISLE WILL FOLLOW. I HAD
+           THE OPPORTUNITY TO SPEAK PERSONALLY WITH WITNESSES WHO
+           TESTIFIED BOTH FOR AND AGAINST JOHN ASHCROFT'S NOMINATION.
+           BELIEVE ME, THERE IS MORE THAT BINDS US TOGETHER AS PA PEOPLE
+           AND A NATION THAN KEEPS US APART. LET US BEGIN THIS CONGRESS IN
+           THAT SPIRIT WHICH ABRAHAM LINCOLN USE TODAY HELP HEAL A NATION
+           WHETHER HE WARNED THAT HAS HOUSE DIVIDED CANNOT LONG STAND. YOU
+           INTEND TO VOTE FOR JOHN ASHCROFT NOMINATION TO BE ATTORNEY
+           GENERAL OF THE UNITED STATES. I ENCOURAGE MY COLLEAGUES ON BOTH
+
+ +[ram]{16:54:00} (MR. BROWNBACK) { NOT AN OFFICIAL TRANSCRIPT } + +
+           SIDES OF THE AISLE TO FOLLOW THE SPIRIT OF LINCOLN AND HELP
+           RENEW THE TIE THAT IS FWIND US TOGETHER AND RESIST THE
+           TEMPTATION TO USE THIS PROCESS FOR POLITICAL GAIN AND FURTHER
+           DIVIDE US AS A NATION. I THINK ONCE JOHN ASH CROOFT IS APPROVED
+           AS ATTORNEY GENERAL OF THE UNITED STATES, HE WILL BE AN
+           OUTSTANDING AND EXTRAORDINARY ATTORNEY GENERAL FOR ALL AMERICAN
+           PEOPLE. THANK YOU, MR. PRESIDENT. I YIELD THE FLOOR. MRS.
+           BOXER: MR. PRESIDENT?
+           
+           
+
+ +[ram]{16:54:32 NSP} (THE PRESIDING OFFICER) { NOT AN OFFICIAL TRANSCRIPT } + +
+           THE PRESIDING OFFICER: THE SENATOR FROM CALIFORNIA.
+           
+
+ +[ram]{16:54:35 NSP} (MRS. BOXER) { NOT AN OFFICIAL TRANSCRIPT } + +
+           MRS. BOXER: THANK YOU SO MUCH. I WANT TO THANK SENATOR HATCH
+           AND REED NOR RESERVING THIS TIME FOR ME. AS MOST PEOPLE NOPE
+           THERE ARE SEVERAL OF US THAT CAME OUT EARLY WITH A POSITION ON
+           JOHN ASHCROFT. MOST CAME OUT FOR HIM BEFORE THE HEARINGS AND I
+           CAME OUT AGAINST HIS CONFIRMATION, AND THE PEOPLE WHO CAME OUT
+           FOR JOHN ASHCROFT BEFORE THE HEARINGS SAID THEY KNEW ENOUGH TO
+
+ +[ram]{16:55:07} (MRS. BOXER) { NOT AN OFFICIAL TRANSCRIPT } + +
+           KNOW THEY WERE FOR HIM, AND I SAID AFTER LOOKING IF HE RECORD
+           AND BEING VERY FAMILIAR WITH THE RECORD, I COULD NOT SUPPORT
+           HIM AND I ACTUALLY ASKED THEN-PRESIDENT-ELECT BUSH TO
+           RECONSIDER HIS CHOICE BECAUSE I BELIEVED HIM WHEN HE SAID HE
+           WANTED TO UNITE THE NATION RATHER THAN DIVIDE THE NATION, AND I
+           FELT THAT THIS NOMINATION WOULD BE VERY DIVISIVE. WOULD RAISE
+           THE VERY SAME ISSUES THAT WERE RAISED DURING ONE OF THE MOST
+           DIFFICULT CAMPAIGNS THAT I CAN CERTAINLY EVER REMEMBER FOR
+
+ +[ram]{16:55:40} (MRS. BOXER) { NOT AN OFFICIAL TRANSCRIPT } + +
+           PRESIDENT AND I THINK WHAT I SAID WAS BORNE OUT. THIS
+           PRESIDENTIAL ELECTION WASN'T A MANDATE. MANY PEOPLE THINK IF
+           ALL THE VOTES HAD BEEN COUNTED IT MIGHT HAVE COME OUT A
+           DIFFERENT WAY. THAT'S NOT THE POINT. THE POINT IS, BECAUSE IT
+           WAS SO DIVISIVE, WHOEVER WON, WHETHER IT WAS AL GORE OR GEORGE
+           W. BUSH, WHOEVER ACTUALLY TOOK THE OFFICE, IN THIS CASE THE
+           SUPREME COURT DECIDED STOP THE COUNT AND GEORGE W. BUSH BECAME
+           THE PRESIDENT. WHOEVER WAS PRESIDENT, HAD TO KNOW THAT THIS WAS
+
+ +[ram]{16:56:18} (MRS. BOXER) { NOT AN OFFICIAL TRANSCRIPT } + +
+           A VERY DIVIDED NATION, AND THAT WE NEED TODAY PUT UP MODERATE
+           PEOPLE, MODERATE PEOPLE FOR IMPORTANT OFFICES SUCH AS ATTORNEY
+           GENERAL, INTERIOR SEC SECRETARY AND THE LIKE. AND I WILL SAY
+           FOR ME IT IS VERY RARE TO OPPOSE A BUSH CABINET NOMINEE, OUT OF
+           ALL OF THEM I HAVE OPPOSED TWO -- I HAVE SUPPORTED EVERY OTHER
+           ONE. ONE THING JOHN ASHCROFT SAID IS HE SAID I SUPPORTED 90% OF
+
+ +[ram]{16:56:57} (MRS. BOXER) { NOT AN OFFICIAL TRANSCRIPT } + +
+           PRESIDENT CLINTON'S JUDGES. WELL I SUPPORTED 90% OF BUSH'S
+           CABINET PICKS. AND THEREFORE, WHEN I CHOOSE TO SAY NO, IT IS
+           BECAUSE I FEEL VERY DEEPLY AND VERY FIRMLY THAT JOHN ASHCROFT
+           IS NOT THE RIGHT CHOICE. PRESIDENT BUSH SAID HE WOULD PICK JOHN
+           ASHCROFT BECAUSE, AND I AM QUOTING, "HE HAS A COMMITMENT TO
+           FAIR AND FIRM AND IMPARTIAL ADMINISTRATION OF JUSTICE." HE TOLD
+
+ +[ram]{16:57:28} (MRS. BOXER) { NOT AN OFFICIAL TRANSCRIPT } + +
+           US THAT JOHN ASHCROFT IS "A MAN WHO HAS A GOOD AND DECENT
+           HEART, AND HE ASKED US TO LOOK INTO THE HEART OF JOHN ASHCROFT.
+           BELIEVE ME, I HAVE DONE THAT. BE I HAVE LOOKED INTO THE HEARTS
+           OF PEOPLE WHO JOHN ASHCROFT HAS HURT. AND I BELIEVE THAT THIS
+           NOMINATION SHOULD BE REJECTED. AND I AM GOING TO BE VERY
+
+ +[ram]{16:58:02} (MRS. BOXER) { NOT AN OFFICIAL TRANSCRIPT } + +
+           SPECIFIC. JUDGE WHITE WAS JOHN ASHCROFT'S TREATMENT OF JUDGE
+           WHITE FAIR?
+           DID HE HAVE A GOOD HEART WHEN IT CAME TO DEAL WITH JUDGE RONNIE WHITE?
+           LET'S REVISIT IT. THE AMERICAN BAR ASSOCIATION GAVE JUDGE WHITE
+           A UNANIMOUS QUALIFIED RATING. JUDGE WHITE WAS INTRODUCED AT HIS
+           NOMINATION HEARING FOR A JUDGESHIP IN FRONT OF THE JUDICIARY
+           COMMITTEE WITH GLOWING REMARKS BY SENATOR BOND. WITH NO
+
+ +[ram]{16:58:33} (MRS. BOXER) { NOT AN OFFICIAL TRANSCRIPT } + +
+           WARNING, JOHN ASHCROFT CHAMPIONED THE DEFEAT OF JUDGE NWITE'S
+           NOMINATION ON THE SENATE FLOOR. AND MR. PRESIDENT, I WANT YOU
+           TO KNOW THAT I HAVE BEEN IN ELECTED LIFE FOR 25 YEARS, AND
+           CERTAIN THINGS JUST -- YOU DON'T REMEMBER AND A LOT OF THINGS
+           YOU DO. AND I WILL NEVER FORGET THE DAY THAT THIS UNITED STATES
+           SENATE VOTED DOWN JUDGE RONNIE WHITE ON A STRAIGHT PARTISAN
+           VOTE. THE FIRST TIME IN 50 LONG YEARS THAT A JUDGE NOMINEE WHO
+
+ +[ram]{16:59:05} (MRS. BOXER) { NOT AN OFFICIAL TRANSCRIPT } + +
+           HAD MASSED FAVORABLY THROUGH THE JUDICIARY COMMITTEE, WAS SO
+           TREAT IT HAD. WHY WOULD I REMEMBER IT SO CLEARLY?
+           I THOUGHT THAT A FEW PEOPLE MIGHT VOTE NO JUST AS WE HAVE ON
+           MANY JUDGE NOMINATIONS. BUT I NEVER THOUGHT THAT JOHN ASHCROFT
+           WOULD HAVE ROUNDED UP AND MADE A BIG POLITICAL ISSUE THAT ALL
+           OF THE REPUBLICANS WOULD STICK WITH HIM ON THIS VOTE. WE ALL
+           KNOW BECAUSE WE ARE NOT CHILDREN HERE IN THIS BODY, THAT THERE
+
+ +[ram]{16:59:38} (MRS. BOXER) { NOT AN OFFICIAL TRANSCRIPT } + +
+           ARE OTHER WAYS TO TREAT SOMEONE WHO SUDDENLY DOESN'T LOOK LIKE
+           HE IS GOING TO BE CONFIRMED. YOU BRING IT BACK TO DID THE
+           COMMITTEE. YOU HAVE ANOTHER VOTE. YOU DON'T DO WHAT THEY DID TO
+           RONNIE WHITE. AND I REMEMBER THAT CONGRESSWOMAN MAXINE WATERS
+           CAME OVER FROM THE HOUSE THAT DAY, ONE OF MY GOOD FRIENDS, AND
+           SHE WAS HERE BECAUSE SHE
+{END: 2001/01/31 TIME: 17-00 , Wed.  107TH SENATE, FIRST SESSION}
+
+ +[ram]{ NOT AN OFFICIAL TRANSCRIPT OF THE SENATE PROCEEDINGS.}
+
+[HOME] + +[ARCHIVE] + +[CURRENT] + diff --git a/office/regression/000_000203.html b/office/regression/000_000203.html new file mode 100644 index 0000000..b83e4e2 --- /dev/null +++ b/office/regression/000_000203.html @@ -0,0 +1,177 @@ + + NOAA's National Ocean Service Education: Estuaries + + + + + + + + + + + + + + + + + + + + + +
+ + + +
NOAA Ocean Service Education banner
+ + + + + + + + +
  Back
+
+ + + + + + + + + + +
+


+
+

+
+
+

" "
+
+
Return to Natural Disturbances to Estuaries

+

Dead floating plant material, called wrack, is often deposited on salt marshes by high spring tides. Wracks can be quite large—up to hundreds of square meters, and up to 30 centimeters thick. If these wracks are deposited in the high marsh, they often become stranded (Bertness, 1999), smothering all of the plant life beneath them. (Photo: Weeks Bay NERRS site)
+
+ Hudson river estuary

+

 

+

(top)

+
+
+
+

+ \ No newline at end of file diff --git a/office/regression/000_000204.html b/office/regression/000_000204.html new file mode 100644 index 0000000..3977c7b --- /dev/null +++ b/office/regression/000_000204.html @@ -0,0 +1,1019 @@ +Hazard Mitigation Technical Assistance Program +Contract No. EMW-2000-CO-0247 +Task Order 446 +Hurricane Rita Rapid Response +Wind Water Line (WWL) Data Collection Texas +FEMA-1606-DR-TX + +Final Report +February 28, 2006 + +Submitted to: +Federal Emergency Management Agency +Region VI +Denton, TX + +Graphic: Department of Homeland\FEMA logo + +Prepared by: +URS Group, Inc. +200 Orchard Ridge Drive +Suite 101 +Gaithersburg, MD 20878 + +Table of Contents + +Abbreviations and Acronyms ii +Glossary of Terms iii +Background 1 +Overview of Impacts in Texas 2 +Purpose 7 +Methodology 9 +Findings and Observations 17 +Conclusions 19 + +Appendices +Appendix A: Wind Water Line Data Points +Appendix B: Photographs +Appendix C: Debris Line and Inundation Mapping Summary +Appendix D: Notes on Analysis of Wind Water Line Data Points +Appendix E: Wind Water Line Maps + +List of Figures +Figure 1: Hurricane Rita Storm Track 2 +Figure 2. FEMA-1606-DR-TX Disaster Declaration 4 +Figure 3: Study Area 8 +Figure 4: Wind Water Line Illustration (Profile View/Plan View) 10 +Figure 5: Example Debris Field 11 +Figure 6: Example Water Marks 11 + +List of Tables +Table 1: Counties Designated for Individual Assistance and Public Assistance, Categories A and B Only 3 +Table 2: Counties Designated for Individual Assistance and Public Assistance, All Categories 3 +Table 3: Counties Designated Only for Public Assistance, All Categories 3 +Table 4: Initial Damage Assessments for Residential Structures 5 +Table 5: Wind Water Line Findings 17 + +ABBREVIATIONS AND ACRONYMS +Acronyms and Explanations + + CDT Central Daylight Time (daylight savings time zone) + CHWM Coastal High Water Mark + DEM Digital Elevation Model + EDT Eastern Daylight Time (daylight savings time zone)FEMA Federal Emergency Management AgencyFIRM Flood Insurance Rate Map + GIS Geographic Information SystemGPS Global Positioning SystemHMGP Hazard Mitigation Grant Program + HMTAP Hazard Mitigation Technical Assistance ProgramHWM High Water Mark + IA Individual Assistance + km Kilometers + kts Knots + LiDAR Light Detection and Ranging + mb Millibar + mph Miles Per HourNAD 83 North American Datum of 1983 + NAVD 88 North American Vertical Datum of 1988 + NFIP National Flood Insurance Program + NGVD 29 National Geodetic Vertical Datum of 1929 + NUAR Not Used After ReviewPA Public Assistance + PNP Private Non-Profit + RHWM Riverine High Water Mark + SOC State Operations Center + USGS U.S. Geological Survey + UTM Universal Transverse Mercator + WWL Wind Water Line +GLOSSARY OF TERMS + +Word Definition + + ArcCatalog - Software application from ESRI that organizes and manages all GIS information such as maps, globes, data sets, models, metadata, and services. + ArcGIS - The comprehensive name for the current suite of GIS products produced by ESRI that are used to create, import, edit, query, map, analyze, and publish geographic information. + ArcView - A software application from ESRI that provides extensive mapping, data use, and analysis, along with simple editing and geoprocessing capabilities.Base map - A map or chart showing certain fundamental information, used as a base upon which additional data of a specialized nature are compiled or overprinted. + Contour data - Ground elevation data displayed as continuous lines for given elevations. + Contour lines - Lines that connect a series of points of equal ground elevation and are used to illustrate topography, or relief, on a map. + Data point - A point associated with a discrete geographic location where data pertaining to the study were collected. + Debris line - Defines the extent of flooding where debris such as parts of houses, docks, cars, or other non-natural material is generally carried by floodwaters with some velocity and is then dropped as the floodwaters lose velocity and begin to recede.Disaster declaration - The formal action by the President to make a state eligible for major disaster or emergency assistance under the Stafford Act.Emergency protective measures - Actions taken by Applicants before, during, and after a disaster to save lives, protect public health and safety, and prevent damage to improved public and private property.Flood recovery map - High-resolution maps that show flood impacts, including high water mark flood elevations, flood inundation limits, the inland limit of waterborne debris (trash lines), and storm surge elevation contours based on the high water marks. The maps also show existing FEMA Flood Insurance Rate Map (FIRM) flood elevations for comparison to hurricane data.Geodatabase - The geodatabase provides the common data access and management framework for ArcGIS. Geodatabases organize geographic data into a hierarchy of data objects. These objects are stored in feature classes, object classes, and feature datasets. An object class is a table in the geodatabase that stores nonspatial data. A feature class is a collection of features with the same type of geometry and the same attributes. A feature dataset is a collection of feature classes sharing the same spatial reference.Hazard Mitigation Grant Program - Provides grants to States and local government to implement long-term hazard mitigation measures after a major disaster declaration. The purpose of the program is to reduce the loss of life and property due to natural disasters and to enable mitigation measures to be implemented during the immediate recovery from a disaster. + High Water Mark - Indicators of high water levels found on the ground or on structures. Examples are debris lines, wrack lines, and mud lines. Individual Assistance - Federal assistance provided to families or individuals following a major disaster or emergency declaration. Under a major disaster declaration, assistance to individuals and families is available through grants, loans, and other services offered by various Federal, state, local, and voluntary agencies.Inundated - Flooded or covered with water.Inundation polygon - Aerial extent of flooding as shown by polygon feature in ArcGIS. + Knot - A unit of speed, 1 nautical mile per hour, approximately 1.85 kilometers (1.15 statute miles) per hour. + LiDAR - LiDAR (Light Detection and Ranging or Laser Imaging Detection and Ranging) is a technology that determines distance to an object or surface using laser pulses. Like the similar radar technology, which uses radio waves instead of light, the range to an object is determined by measuring the time delay between transmission of a pulse and detection of the reflected signal. + Millibar - A unit of atmospheric pressure equal to 1/1,000 of a bar. Standard atmospheric pressure at sea level is about 1,013 millibars. + Mitigation - Any measure that will reduce or eliminate the long-term risk to life and property from a disaster event. Mud line Type of high water mark found on structures. Occurs when suspended solids carried by floodwaters are deposited along the walls, doors, etc. of structures leaving an indicator of the peak flood level. + National Flood Insurance Program - The Federal program created by an Act of Congress in 1968 that makes flood insurance available in communities which enact and enforce satisfactory floodplain management regulations. + National Geodetic Vertical Datum of 1929 - Vertical control datum that was widely used in the U.S. prior to the establishment of NAVD 88.North American Datum of 1983 - Horizontal datum used as the standard map coordinate system default by the majority of GPS devices. + North American Vertical Datum of 1988 - The most widely used vertical control datum in the U.S. today, it was officially established in 1991 by the minimum-constraint adjustment of the Canadian-Mexican-U.S. leveling observations. + Orthorectified - Orthorectification removes the effects of relief displacement and imaging geometry from aerial photographs. Polygon - A polygon, in ArcGIS, is a shape defined by one or more rings, where a ring is a path that starts and ends at the same point. If a polygon has more than one ring, the rings may be separate from one another or they may nest inside one another, but they may not overlap. + Public Assistance - Federal assistance provided to state and local government, Native American Tribes, and certain non-profit organizations after a disaster declaration. The assistance is for the repair, replacement, or restoration of disaster-damaged, publicly owned facilities and the facilities of certain Private Non-Profit (PNP) organizations. The Federal share of assistance is not less than 75 percent of the eligible cost for emergency measures and permanent restoration. The State determines how the non-Federal share (up to 25 percent) is divided among the applicants. + Riverine flooding - Occurs when rivers and streams overflow their banks. + Seed file - Seed files are used within software applications and serve as templates in which standard file parameters are set to predetermined standards. + Shapefile - Shapefiles store geographic features and their attributes. Geographic features in a shapefile can be represented by points, lines, or polygons (areas). + Storm surge - Onshore rush of water piled higher than normal as a result of high winds on an open water bodys surface. It occurs primarily along the open coast, and can destroy houses, wash away protective dunes, and erode soil. + Topographic quadrangle maps - A standard map size and scale used by the U.S. Geological Survey to show topography, roads, and landmarks. + Water mark - A mark, usually on structures, left by floodwaters. + Wind Water Line - An approximate boundary to delineate the inland extent of the area where structures were damaged as a result of flooding from storm surge from a particular event. Landward of the line, most of the damage is attributable to winds and/or wind-driven rain. Sometimes, the Wind Water Line is located along the debris line, but in some cases, inundation and flood damage extends beyond the area where major debris was deposited. Wrack line Defines the extent of flooding where organic type debris such as grass and weeds are carried by floodwaters and then dropped as the floodwaters recede. + +Background +The eighteenth tropical depression of the 2005 Hurricane Season formed on September 17, 2005, to the east of the Turks and Caicos Islands. It then became the seventeenth tropical storm of the season on September 18, less than a day after forming, and was named Rita. On September 18, a mandatory evacuation was ordered for the entire Florida Keys. + +As Rita moved westward over the next couple of days, it was slow to become a hurricane. National Hurricane Center discussions issued early on September 20 indicated that while some wind measurements suggested Rita might have surface level wind speeds of 74 miles per hour (mph), or 144 knots (kts), the lack of a complete eyewall did not support the hurricane designation. Therefore, the National Hurricane Center continued to designate Rita as a tropical storm with wind speeds of 70 mph (136 knots). However, Rita did gain strength and by 11:00 a.m. eastern daylight time (EDT) on September 20, it was designated as a Category 2 strength hurricane with 100 mph (194 knots) maximum sustained winds. Rita stayed a Category 2 for the rest of the day on September 20, but began increasing in intensity rapidly on September 21. By 5 p.m. EDT on September 21, Hurricane Rita was a Category 5 storm with maximum wind speeds of 165 mph (321 knots). Rita continued to strengthen and by the night of September 21, its maximum sustained winds had increased to 175 mph (340 knots), with an estimated minimum pressure of 897 millibars (mb). + +After peaking with steady winds of 175 mph (340 knots), Rita made landfall on September 24, between Sabine Pass, Texas, and Johnsons Bayou, Louisiana, as a Category 3 hurricane with wind speeds of 120 mph (233 knots) and a storm surge of 10 feet (3 meters [m]). Figure 1 shows Ritas path beginning on September 18, 2005, and ending on September 25 a day after making landfall. + + + + +Figure 1: Graphic of Hurricane Rita Storm Track +Source: http://cimss.ssec.wisc.edu/tropic/archive/2005/storms/rita/rita.html + +Overview of Impacts in Texas +On September 24, 2005, the President authorized a disaster declaration for several Texas counties (FEMA-1606-DR-TX). Through subsequent amendments, all Texas counties were included in the declaration, which provided the necessary assistance to meet immediate needs and to help Texas recover as quickly as possible through the following means: + +Public Assistance (PA): includes supplemental Federal disaster grant assistance for the repair, replacement, or restoration of disaster-damaged publicly owned facilities, and the facilities of certain private non-profit (PNP) organizations. There are seven subcategories (A-G) within this designation under two work types: emergency work and permanent work. Unless otherwise noted, Public Assistance will include all categories under both work types. However, often only the emergency work categories are designated, which include Category A, debris removal, and Category B, emergency protective measures. + +Individual Assistance (IA): includes cash grants of up to $26,200 per individual or household for housing (hotel or motel expenses reimbursement, rental assistance, home repair and replacement cash grants, and permanent housing construction assistance in rare circumstances) and other needs (medical, dental, and funeral costs, transportation costs, and other disaster-related needs). + +Hazard Mitigation Grant Program (HMGP): funds projects that will reduce or eliminate the losses from future disasters by providing a long-term solution to a problem. Eligible applicants include State and local government, Indian tribes or other tribal organizations, and certain non-profit organizations. FEMA can fund up to 75 percent of the eligible costs of each project, and the State or grantee must provide a 25 percent match. + +All of Texas 254 counties are eligible for HMGP funds. The majority of Texas counties (225) were designated for Public Assistance, Categories A and B only, and not for Individual Assistance. Tables 1 through 3 provide listings of which designation(s) other counties received for IA and PA. If a county is not listed in these tables, then it is only eligible for Public Assistance, Categories A and B only. Figure 2 shows this information graphically. + + +Table 1: Counties Designated for Individual Assistance and Public Assistance, Categories A and B Only +Fort Bend +Harris +Table 2: Counties Designated for Individual Assistance and Public Assistance, All Categories +Angelina + Brazoria + Chambers + GalvestonHardin + Jasper + JeffersonLibertyMontgomeryNacogdoches + Newton + OrangePolkSabine + San AugustineSan Jacinto + Shelby + TrinityTyler + Walker +Table 3: Counties Designated Only for Public Assistance, All Categories +CherokeeGreggHarrison + Houston + Marion + PanolaRusk + +Figure 2: FEMA-1606-DR-TX Disaster Declaration +Graphic of Texas Counties eligible for Hazard Mitigation. + +The effects of Rita were not as severe as expected. For the most part, Houston escaped major damage, apart from extensive loss of power. Some windows blew out of downtown skyscrapers, and some trees and traffic signals were downed. + +North of Houston, the 2.5-acre Lake Livingston dam sustained substantial damage from powerful waves driven by wind speeds of 117 mph (102 kts) and operators had to conduct an emergency release to lessen pressure on the dam. This release put lives at risk downstream and also threatened a major bridge because it caused a sizable barge to become unmoored. Repairs to the dam are expected to take months. After water levels were lowered and an inspection was conducted by national and local experts, the dam was declared stable late on September 26. + +All communities in the Golden Triangle formed by Beaumont, Port Arthur, and Orange Counties sustained enormous damage from Ritas winds. Texas Governor Rick Perry declared a nine-county disaster area. In Beaumont, an estimated 25% of trees in heavily wooded neighborhoods were uprooted. An enormous number of houses and businesses suffered extensive damage from Ritas winds and falling trees. The water treatment plant in Port Neches was heavily damaged. Some areas were without power for more than six weeks. + +The Golden Triangle was spared a more devastating ocean surge by the redirection of Ritas path hours before the storm made landfall, which placed most of the coastal community to the left of the hurricanes eye in the least damaging quadrant. Ritas surge was easily handled by Port Arthurs extensive levee system. Bolivar Peninsula between Galveston and Sabine Pass experienced only a small surge, in contrast to Louisianas unprotected communities east of Ritas center, which suffered under a 20-foot surge. + +Still, there was widespread property damage and loss in Texas following Hurricane Rita. Table 4 provides a summary of damages to residential structures. These numbers are initial damage assessment results reported by impacted counties and cities to the State of Texas. The table is from Situation Report #41 issued by the State of Texas, State Operations Center (SOC) and dated December 20, 2005. + +Table 4. Initial Damage Assessments for Residential Structures +COUNTY/CITY: Angelina/Lufkin +SINGLE FAMILY DWELLINGS +Destroyed: 0 +Major Damage: 30 + Minor Damage: 85 + +COUNTY/CITY: Angelina/Lufkin + MOBILE HOMES +Destroyed: 0 + Major Damage: 3 + Minor Damage: 12 + +COUNTY/CITY: Angelina/Lufkin + APARTMENTS + Destroyed: 0 +Major Damage: 0 +Minor Damage: 48 + +COUNTY/CITY: Angelina +SINGLE FAMILY DWELLINGS +Destroyed: 35 + Major Damage: 300 + Minor Damage: 500 + +COUNTY/CITY: Angelina + MOBILE HOMES +Destroyed: 35 + Major Damage: 400 + Minor Damage: 500 + +COUNTY/CITY: Angelina + APARTMENTS Destroyed: 0 + Major Damage: 25 +Minor Damage: 25 + +COUNTY/CITY: Chambers +SINGLE FAMILY DWELLINGS +Destroyed: 7 + Major Damage: 134 + Minor Damage: 167 + +COUNTY/CITY: Chambers + MOBILE HOMES +Destroyed: 15 + Major Damage: 66 + Minor Damage: 70 + +COUNTY/CITY: Chambers + APARTMENTS Destroyed: 0 + Major Damage: 4 + Minor Damage: 4 + +COUNTY/CITY: Cherokee +SINGLE FAMILY DWELLINGS +Destroyed: 0 + Major Damage: 0 + Minor Damage: 15 + +COUNTY/CITY: Cherokee + MOBILE HOMES +Destroyed: 0 + Major Damage: 0 + Minor Damage: 10 + +COUNTY/CITY: Cherokee + APARTMENTS Destroyed: 0 + Major Damage: 0 + Minor Damage: 0 + +COUNTY/CITY: Hardin +SINGLE FAMILY DWELLINGS +Destroyed: 6,050 + Major Damage: 4,440 + Minor Damage: 550 + +COUNTY/CITY: Hardin + MOBILE HOMES +Destroyed: 7,700 + Major Damage: 3,300 + Minor Damage: 0 + +COUNTY/CITY: Hardin + APARTMENTS +Destroyed: 0 + Major Damage: 0 + Minor Damage: 22 + +COUNTY/CITY: Harris +SINGLE FAMILY DWELLINGS +Destroyed: 16 + Major Damage: 27 + Minor Damage: 11,630 + +COUNTY/CITY: Harris + MOBILE HOMES +Destroyed: 0 + Major Damage:0 + Minor Damage: 0 + +COUNTY/CITY: Harris + APARTMENTS +Destroyed: 0 + Major Damage: 0 + Minor Damage: 0 + +COUNTY/CITY: Harris/La Porte +SINGLE FAMILY DWELLINGS +Destroyed: 0 + Major Damage: 0 + Minor Damage: 70 + +COUNTY/CITY: Harris/La Porte + MOBILE HOMES +Destroyed: 1 + Major Damage: 2 + Minor Damage: 5 + +COUNTY/CITY: Harris/La Porte + APARTMENTS +Destroyed: 0 + Major Damage: 0 + Minor Damage: 0 + +COUNTY/CITY: Jasper +SINGLE FAMILY DWELLINGS +Destroyed: 33 + Major Damage: 534 + Minor Damage: 515 + +COUNTY/CITY: Jasper + MOBILE HOMES +Destroyed: 63 + Major Damage: 176 + Minor Damage: 168 + +COUNTY/CITY: Jasper + APARTMENTS Destroyed: 0 + Major Damage: 5 + Minor Damage: 9 + + + + +COUNTY/CITY: Jefferson +SINGLE FAMILY DWELLINGS +Destroyed: 75 + Major Damage: 2,000 + Minor Damage: 10,000 + +COUNTY/CITY: Jefferson + MOBILE HOMES +Destroyed: 15 Major Damage: 500 + Minor Damage: 1,000 + +COUNTY/CITY: Jefferson + APARTMENTS +Destroyed: 35 Major Damage: 250 + Minor Damage: 500 + + +COUNTY/CITY: Jefferson/Port Arthur SINGLE FAMILY DWELLINGS +Destroyed: 750 + Major Damage: 3,000 + Minor Damage: 9,000 + +COUNTY/CITY: Jefferson/Port Arthur + MOBILE HOMES +Destroyed: 900 + Major Damage: 25 + Minor Damage: 40 + +COUNTY/CITY: Jefferson/Port Arthur + APARTMENTS +Destroyed: 200Major Damage: 3,000 + Minor Damage: 500 + + +COUNTY/CITY: Jefferson/Groves +SINGLE FAMILY DWELLINGS +Destroyed: 60 + Major Damage: 800 + Minor Damage: 2,000 + +COUNTY/CITY: Jefferson/Groves + MOBILE HOMES +Destroyed: 0 + Major Damage: 0 + Minor Damage: 60 + +COUNTY/CITY: Jefferson/Groves + APARTMENTS +Destroyed: 0Major Damage: 5 + Minor Damage: 4 + +COUNTY/CITY: Jefferson/Nederland +SINGLE FAMILY DWELLINGS +Destroyed: 116 + Major Damage: 1,456 + Minor Damage: 3,961 + +COUNTY/CITY: Jefferson/Nederland + MOBILE HOMES +Destroyed: 77 + Major Damage: 193 + Minor Damage: 116 + +COUNTY/CITY: Jefferson/Nederland + APARTMENTS +Destroyed: 47 Major Damage: 332 + Minor Damage: 475 + +COUNTY/CITY: Liberty SINGLE FAMILY DWELLINGS +Destroyed: 7 + Major Damage: 124 + Minor Damage: 94 + +COUNTY/CITY: Liberty + MOBILE HOMES +Destroyed: 10 + Major Damage: 294 + Minor Damage: 331 + +COUNTY/CITY: Liberty + APARTMENTS +Destroyed: 0 Major Damage: 12 + Minor Damage: 1 + + +COUNTY/CITY: Liberty/Liberty City +SINGLE FAMILY DWELLINGS +Destroyed: 0 + Major Damage: 3 + Minor Damage: 6 + +COUNTY/CITY: Liberty/Liberty City + MOBILE HOMES +Destroyed: 1 + Major Damage: 3 + Minor Damage: 5 + +COUNTY/CITY: Liberty/Liberty City + APARTMENTS +Destroyed: 0 Major Damage: 0 + Minor Damage: 0 + +COUNTY/CITY: Montgomery +SINGLE FAMILY DWELLINGS +Destroyed: 4 + Major Damage: 25 + Minor Damage: 67 + +COUNTY/CITY: Montgomery + MOBILE HOMES +Destroyed: 30 + Major Damage: 40 + Minor Damage: 60 + +COUNTY/CITY: Montgomery + APARTMENTS +Destroyed: 0 +Major Damage: 0 + Minor Damage: 0 + +COUNTY/CITY: Nacogdoches +SINGLE FAMILY DWELLINGS +Destroyed: 0 1 1 75 0 0 0 + Major Damage: 1 + Minor Damage: 10 + +COUNTY/CITY: Nacogdoches + MOBILE HOMES +Destroyed: 1 + Major Damage: 1 + Minor Damage: 75 + +COUNTY/CITY: Nacogdoches + APARTMENTS +Destroyed: 0 +Major Damage: 0 + Minor Damage: 0 + +COUNTY/CITY: Nacogdoches/ Nacogdoches City +SINGLE FAMILY DWELLINGS +Destroyed: 1 + Major Damage: 33 + Minor Damage: 125 + +COUNTY/CITY: Nacogdoches/ Nacogdoches City + MOBILE HOMES +Destroyed: 3 + Major Damage: 1 + Minor Damage: 1 + +COUNTY/CITY: Nacogdoches/ Nacogdoches City + APARTMENTS +Destroyed: 0 +Major Damage: 0 + Minor Damage: 0 + + + COUNTY/CITY: Newton SINGLE FAMILY DWELLINGS +Destroyed: 55 + Major Damage: 200 + Minor Damage: 800 + +COUNTY/CITY: Newton + MOBILE HOMES +Destroyed: 60 + Major Damage: 100 + Minor Damage: 310 + +COUNTY/CITY: Newton + APARTMENTS +Destroyed: 0 +Major Damage: 0 + Minor Damage: 0 + COUNTY/CITY: Newton/Newton City SINGLE FAMILY DWELLINGS +Destroyed: 0 + Major Damage: 155 + Minor Damage: 200 + +COUNTY/CITY: Newton/Newton City + MOBILE HOMES +Destroyed: 0 + Major Damage: 75 + Minor Damage: 75 + +COUNTY/CITY: Newton/Newton City + APARTMENTS +Destroyed: 0 +Major Damage: 18 + Minor Damage: 40 + +COUNTY/CITY: Orange SINGLE FAMILY DWELLINGS +Destroyed: 3,600 + Major Damage: 9,000 + Minor Damage: 11,250 + +COUNTY/CITY: Orange + MOBILE HOMES +Destroyed: 200 + Major Damage: 400 + Minor Damage: 500 + +COUNTY/CITY: Orange + APARTMENTS +Destroyed: 200 +Major Damage: 300 + Minor Damage: 600 + +COUNTY/CITY: Polk +SINGLE FAMILY DWELLINGS +Destroyed: 29 + Major Damage: 329 + Minor Damage: 305 + +COUNTY/CITY: Polk + MOBILE HOMES +Destroyed: 24 + Major Damage: 242 + Minor Damage: 325 + +COUNTY/CITY: Polk + APARTMENTS +Destroyed: 0 +Major Damage: 10 + Minor Damage: 5 + +COUNTY/CITY: Sabine +SINGLE FAMILY DWELLINGS +Destroyed: 20 + Major Damage: 94 + Minor Damage: 408 + +COUNTY/CITY: Sabine + MOBILE HOMES +Destroyed: 40 + Major Damage: 250 + Minor Damage: 482 + +COUNTY/CITY: Sabine + APARTMENTS +Destroyed: 1 +Major Damage: 5 + Minor Damage: 0 + +COUNTY/CITY: San Augustine/San Augustine City +SINGLE FAMILY DWELLINGS +Destroyed: 0 + Major Damage: 5 + Minor Damage: 100 + +COUNTY/CITY: San Augustine/San Augustine City + MOBILE HOMES +Destroyed: 0 + Major Damage: 5 + Minor Damage: 10 + +COUNTY/CITY: San Augustine/San Augustine City + APARTMENTS +Destroyed: 0 +Major Damage: 0 + Minor Damage: 0 + +COUNTY/CITY: San Jacinto +SINGLE FAMILY DWELLINGS +Destroyed: 250 + Major Damage: 500 + Minor Damage: 1,500 + +COUNTY/CITY: San Jacinto + MOBILE HOMES +Destroyed: 250 + Major Damage: 1,000 + Minor Damage: 500 + +COUNTY/CITY: San Jacinto + APARTMENTS +Destroyed: 0 +Major Damage: 0 + Minor Damage: 0 + +COUNTY/CITY: Shelby +SINGLE FAMILY DWELLINGS +Destroyed: 0 + Major Damage: 0 + Minor Damage: 10 + +COUNTY/CITY: Shelby + MOBILE HOMES +Destroyed: 0 + Major Damage: 0 + Minor Damage: 1 + +COUNTY/CITY: Shelby + APARTMENTS +Destroyed: 0 +Major Damage: 0 + Minor Damage: 0 + +COUNTY/CITY: Shelby/Shelby City +SINGLE FAMILY DWELLINGS +Destroyed: 0 + Major Damage: 3 + Minor Damage: 10 + +COUNTY/CITY: Shelby/Shelby City + MOBILE HOMES +Destroyed: 0 + Major Damage: 3 + Minor Damage: 5 + +COUNTY/CITY: Shelby/Shelby City + APARTMENTS +Destroyed: 0 +Major Damage: 0 + Minor Damage: 0 + +COUNTY/CITY: Trinity +SINGLE FAMILY DWELLINGS +Destroyed: 15 + Major Damage: 80 + Minor Damage: 295 + +COUNTY/CITY: Trinity + MOBILE HOMES +Destroyed: 21 + Major Damage: 75 + Minor Damage: 301 + +COUNTY/CITY: Trinity + APARTMENTS +Destroyed: 0 +Major Damage: 3 + Minor Damage: 2 + +COUNTY/CITY: Tyler +SINGLE FAMILY DWELLINGS +Destroyed: 150 + Major Damage: 375 + Minor Damage: 459 + +COUNTY/CITY: Tyler + MOBILE HOMES +Destroyed: 131 + Major Damage: 450 + Minor Damage: 650 + +COUNTY/CITY: Tyler + APARTMENTS +Destroyed: 0 +Major Damage: 0 + Minor Damage: 0 + +TOTALS: +SINGLE FAMILY DWELLINGS +Destroyed: 11,273 + Major Damage: 23,648 + Minor Damage: 54,132 + +TOTALS: + MOBILE HOMES +Destroyed: 9,577 + Major Damage: 7,604 + Minor Damage: 5,612 + +TOTALS: + APARTMENTS +Destroyed: 483 +Major Damage: 3,969 + Minor Damage: 2,235 + + +Additionally, concerns have been raised over the state of the oil industry in the aftermath of Rita. The storm threatened a large portion of the industrys infrastructure that was left undamaged by Hurricane Katrina. The Texas Gulf Coast is home to 23% of U.S. oil refining capacity, and numerous offshore production platforms were potentially in Ritas path. While no potential storm path would threaten all of the capacity at once, a direct strike on Houston could disable up to 8% of the nations refining capacity. + +Purpose +After a hurricane impacts a coastal area with significant flooding, it is imperative that data be collected to document the event to assist in response, recovery, and mitigation efforts, and to improve disaster preparedness and prevention efforts for future disasters. Wind Water Line (WWL) data collection is an initial step in accurately documenting an event. These data help place the event in historical perspective and improve the ability to estimate current flood risk and future event prediction. Collection of site-specific flood inundation data along rivers, bays, and coasts has numerous applications. + +The Federal Emergency Management Agencys (FEMAs) National Flood Insurance Program (NFIP) requires data to identify flood damages to provide a valid basis for establishing eligibility of flood insurance benefits. Information for insurance purposes is time-critical because the flood insurance and homeowner insurance claims cannot be concluded until the cause of damage is established. The WWL data provide a basis for delineating areas subject to flooding and help to identify approximate boundaries between areas where damages are due to flooding and wind versus areas of wind-only damages. FEMA will use these data to provide inundation boundaries and information on the flooding extent along the affected shoreline areas. + +Other FEMA programs that directly benefit from post-disaster flood data collection include: +Human Services: provides advice to individuals on how to use federal grants to increase their homes flood resistance; + +Public Assistance (PA): identifies appropriate flood mitigation measures to pursue when providing federal grants to repair publicly owned infrastructure; and, + +Hazard Mitigation Grant Program (HMGP): ensures that accurate benefit/cost analysis is performed. + +The purpose of the WWL Study is to determine the inland extent of damages caused by storm surge-induced flooding, and differentiate this area from those farther inland where damages were primarily the result of wind forces. By delineating the WWL, an approximate boundary is created between areas where both storm surge-induced flooding and wind forces caused damage to structures from those areas where wind forces were the primary cause of damages to structures and surge flooding did not have a significant impact. Sometimes, the WWL is located along the debris line, but in some cases, inundation and flood damages extend beyond the area where major debris was deposited. + +The WWL study extended from the northern portion of the Gulf Coast of Texas eastward through southwestern Louisiana. This report focuses on the determinations based on data collected in Texas, where the northeast coastline was studied. Figure 3 shows the WWL Study Area within Texas. + +Figure 3: Graphic of the Study Area + +Overview of Related Projects +In response to Rita, a Hazard Mitigation Technical Assistance Program (HMTAP) Task Order 446, Rapid Response, Hurricane Rita Wind Water Line Texas was issued and is the focus of this report. In addition, HMTAP Task Order 443, Rapid Response, Aerial Radar Texas and Louisiana; HMTAP Task Order 444, Rapid Response, Hurricane Rita Coastal High Water Mark Survey Texas; and HMTAP Task Order 449, Rapid Response, Hurricane Rita Riverine High Water Mark Survey Texas were also issued. An overview of these task orders is provided below: + +Under Task Order 443, Rapid Response, Aerial Radar Texas and Louisiana, cartographic analysts were tasked with using post-event aerial imagery to delineate areas affected by flooding along the northeast portion of Texas coastline and the western edge of Louisianas Gulf Coast. In Texas, the imagery acquired covered portions of Galveston Island and the Bolivar Peninsula in Galveston County, the eastern coastline of Jefferson County, and Orange County. + +Through Task Order 444, Rapid Response, Hurricane Rita Coastal High Water Mark Survey - Texas, field crews collected perishable high water mark (HWM) data at field observation point locations. The crews looked for evidence of the peak elevation of flooding caused by storm surge, then inventoried and surveyed these elevations. Peak flood elevations along the northeast coastline of Texas were recorded at several locations as part of this task order. These data can be used to help determine the extent of flooding. + +For Task Order 449, Rapid Response, Hurricane Rita Riverine High Water Mark Survey Texas, field crews also collected high water mark data at field observation point locations. Field crews for the riverine high water mark (RHWM) survey were focused on areas of overbank flooding where heavy and/or prolonged precipitation resulted in an exceedence of the capacity of rivers and streams to keep floodwaters within their banks. Peak flood elevations for riverine type flooding were surveyed and recorded as part of this task order. Riverine HWMs can be used to help delineate the extent of surge flooding by showing where riverine flooding predominates. + +In addition, comparison of WWL data with the impacts projected by modeled storm events provides insight into how well numerical models simulate a specific event (e.g., coastal storm surge, riverine flooding). When coupled with sufficient data density and observational information, it is possible to create flood recovery maps, which are high-resolution maps that show flood impacts, including HWM flood elevations, flood inundation limits, the inland limit of waterborne debris (trash lines), and storm surge elevation contours based on the HWMs. These event-related data can be used in conjunction with or, in some cases, instead of effective Flood Insurance Rate Map (FIRM) data to establish recommended coastal flood elevations for redevelopment and rebuilding purposes. + +Methodology +There were two basic elements to this project: field data collection and WWL mapping. While field crews worked to collect data in the weeks following Hurricane Rita, the WWL mapping process occurred after the data had been collected and involved interpretation and analysis of data from several sources. + +Data Collection Methodology +URS field crews were mobilized within 7 days of the disaster declaration. Field teams tasked with locating HWMs, marking them, and performing general data collection were called flaggers and began field work on October 1, 2005, and continued through October 15. Surveying teams followed the flaggers and surveyed the points the flaggers had identified, working from October 31 through November 16. Data collection for Task Order 446, Rapid Response, Hurricane Rita Wind Water Line Texas was performed in tandem with data collection for Task Order 444, Rapid Response, Hurricane Rita Coastal High Water Mark Survey - Texas and Task Order 449, Rapid Response, Hurricane Rita Riverine High Water Mark Survey Texas. The WWL points, which are also located by identifying water marks on structures or debris or wrack lines, doubled as HWMs. + +WWL points are used to define the extent inland of where there is damage to structures caused by surge flooding. Thus the points generally form a line showing the approximate inland limit of surge flooding. The WWL is so called because landward of the line in coastal areas, damage to structures is usually limited to wind damage, which includes direct rain damage where the envelope of the structure may have been compromised by high wind damage. Seaward of the line, damage is the result of surge-induced flooding with wind forces contributing as well (see Figure 4). + + +Figure 4: Graphic - Wind Water Line Illustration (Profile View/Plan View) + +Each field crew was tasked with identifying and documenting the WWL and collecting data points along the coastlines. The WWL data points were documented using a standardized flagger form to collect detailed information about the point. To define points along the WWL, field crews visited areas of known flood damage. Traveling away from the coast to the edge of damage, they attempted to locate debris fields (see Figure 5) or water marks close to the ground, and to trace them along topographic features to determine the extent of flooding (see Figure 6) and flood damages. + +Field crews notified County Emergency Managers prior to the start of field work in order to obtain all available information about the location and extent of damage to structures in the county. Areas identified by County Emergency Managers as having been damaged and/or having higher flood levels were given higher priority. + + +Figure 5: Photo of an Example Debris Field + + +Figure 6: Photo of an Example Water Mark +Generally, WWL data were collected every 2 to 4 miles in developed areas inland. However, in areas with significant damage to structures from flooding along the coastlines, the density of data points was sometimes higher. Similarly, there were certain stretches of coastline where field crews could not take data points either because these areas could not be accessed (no roads, thick vegetation or swampy areas, etc.) or because there was no clear physical evidence to define a WWL point. + +The following data were collected at each observed WWL point: +Address (if the point was near an addressable structure); +Latitude/longitude reading, taken in North American Datum 1983 (NAD 83), which is used as the standard map coordinate system default by the majority of Global Positioning System (GPS) devices; +Location description (e.g., neighborhood or other descriptive name); +Date the data point was taken; +Type of data point, including debris line, water mark, wrack line (indicates the high tide mark), etc.; +Type and severity of observed wind damage; +Flood source; +Approximate flood depth (if water mark data point); and, +Digital photographs. + +Data had to be collected quickly; as community clean-up efforts progressed, valuable debris line and water mark data were being destroyed. WWL data were entered into a database (see Appendix A). Each photograph was named according to the WWL point reference number (see Appendix B). In all, thirty-six WWL data points were collected. + +After the WWL data points were compiled and checked for accuracy, they were surveyed for elevation. Geographic information system (GIS) analysts worked with the data to make geodatabases and create associated shapefiles. +Mapping Methodology +To create the Wind Water Line maps, the project team relied heavily on data supplied from HMTAP Task Order 443, Rapid Response, Aerial Radar Texas and Louisiana, HMTAP Task Order 444, Rapid Response, Hurricane Rita Coastal High Water Mark Survey Texas, and HMTAP Task Order 449, Rapid Response, Hurricane Rita Riverine High Water Mark Survey Texas. + +Under Task Order 443, Rapid Response, Aerial Radar Texas and Louisiana, cartographic analysts used post-event aerial imagery to delineate areas affected by flooding along the Texas Coast. The analysts used natural color, orthorectified 3001, Inc. imagery acquired between September 30, 2005 and October 9, 2005. The imagery and secondary sources were interpreted by a team of professional cartographic analysts, which identified where inundation occurred from visual evidence of the HWM, and where relatively high velocity storm surge occurred, from visual evidence of deposited debris. The team of analysts produced a shapefile for the debris line and one for the inundation area extending inland of the debris line. All shapefiles were reprojected from latitude/longitude to Universal Transverse Mercator (UTM) Zone 16, NAD 83. Obscured polygons outline areas where imagery was void, corrupt, or covered by clouds. A summary report for this effort is provided as Appendix C. The post-event imagery used under Task Order 443, Rapid Response, Aerial Radar Texas and Louisiana was captured for areas closest to where the hurricane made landfall that generally experienced the most damage; the imagery did not cover all of the affected areas. In Texas, this imagery (and thus the photointerpreted debris line and inundation areas) was available for Orange County, Jefferson County, and portions of Chambers and Galveston Counties. + +Through Task Order 444, Rapid Response, Hurricane Rita Coastal High Water Mark Survey Texas, field crews collected perishable HWM data at field-observed, point locations. They looked for evidence of the peak elevation of flooding caused by storm surge, then inventoried and surveyed these elevations. HWM points are taken where surge directly affects flood levels including the shoreline of open coasts, bays, and tidally influenced rivers. HWMs are formed when the water level during a storm rises to a maximum elevation and leaves marks on the interior and/or exterior walls of a structure, or debris or wrack lines along the ground. HWM field crews were responsible for identifying these marks and recording some basic information about the data point. Survey crews then used these initial records to later relocate the points and survey them, thus determining the peak elevation of flooding. Sometimes, the accuracy of the individual WWL points was verified by comparing them to surrounding HWM data points. In these cases, the elevation data from the HWM surveys were used to complement the WWL data. + +Under this task order, field WWL data points were used together with the information about the extent of flooding determined as part of the aerial imagery task order to finalize the aerial measure of inundation based on both photointerpretation and field ground-truthed data. The inundation areas defined under Task Order 443, Rapid Response, Aerial Radar Texas and Louisiana, served as the base data for determining the WWL, and the field data collected under the effort described in this report (Task Order 446) were compared to this base data to determine if the two data sets were in agreement. This base data was only available in certain areas including Orange County, Jefferson County, and along the Gulf Coast of Chambers and Galveston Counties along Bolivar Peninsula. Where WWL field data points did not agree with the photointerpreted flood area delineation, analyses using information about the depth of flooding and flood elevation for the WWL (and potentially for nearby HWM points) were conducted. If the flood elevation data and supporting documentation, including comments and photographs from the field crews, confirmed that the WWL point was correct, the inundation coverage was modified to agree with the field collected data and topography was used to delineate the boundaries for these modifications. + +Where the aerial imagery, and subsequently the photointerpreted debris line and inundation area, were not available, the WWL data from the flaggers were used in conjunction with local topography to delineate the WWL. This methodology was used in Harris County and portions of Chambers and Galveston Counties. The local topography was obtained from the Texas Natural Resources Information System and was available online at http://www.tnris.org/hurricanerita/. + +To determine the inland limit of surge along major coastal rivers, HWMs were used. HWMs are grouped into two types, coastal and riverine(see footnote 1), and serve as a good tool in helping to distinguish the two types of flooding. Therefore, the first general indication of the extent of surge was the boundary between coastal HWMs (CHWMs) and RHWMs along these rivers. After finding this area, surge elevations for the CHWMs closest to this boundary were identified, and the inland limit of surge was mapped by following the topography along these elevations. Where there was more than one CHWM, the CHWM elevations were averaged. This methodology was used in Jefferson and Orange Counties along the Neches River, Sabine Lake/Willie Slough Gully, the Sabine River, and two tributaries of the Sabine River. +Footnote 1: The flooding type is provided in a column of Appendix A for each point. While the naming convention for RHWMs and CHWMs generally includes a 'C' or an 'R' within the point name to indicate the type of flooding, for Task Orders 444 and 449 these labels were not always true. Therefore, the flooding type data from Appendix A should be used. + +Notes from these data analyses are included in tabular format in Appendix D and are summarized by county below. As described previously, post-event imagery and the photointerpreted debris line and areas of inundation were only available in limited portions of the study area including Orange County, Jefferson County, and portions of Chambers and Galveston Counties. No debris line or inundation mapping was done around Galveston Bay (Chambers, Harris and Galveston Counties) or on Galveston Island (Gavelston County). +Chambers County +Three WWL data points were identified in Chambers County: RTXC-03-03, RTXC-03-04, and RTXC-03-05. A review of the flagger forms and photographs and local topography indicated that wrack lines were located around the coastline of Galveston Bay. To reflect this evidence, the WWL, a debris line in this area, was extended along Galveston Bay by following the 5-foot (1.5-meter) contour. +Galveston County +In Galveston County, 19 WWL data points were identified (see Appendices A and D). Of the 19 points, 12 were located long the perimeter of Galveston Island. A review of the flagger forms and photographs provided evidence that coastal surge left wrack and debris lines along the islands coast. An evaluation of local topography and spotty aerial imagery indicated the debris line followed the 5-foot (1.5-meter) contour. To reflect this evidence, a debris line was added along the perimeter of Galveston Island. + +The remaining seven points were located along the Bolivar Peninsula. Similar to the recommendation for Galveston Island, the WWL along the Bolivar Peninsula was extended along the northern border. Along the southern border where post-event imagery and a photointerpreted debris line were available, the WWL was adjusted slightly to generally follow the 5-foot contour. Although there are no WWL data points along the northern border of the Bolivar Peninsula due to lack of access, it was assumed that a WWL also formed along the perimeter of the bay side of the peninsula, which was the case with Galveston Island. Post-event aerial imagery, which was available for portions of Galveston Island and Bolivar Peninsula, was used in conjunction with local topography to delineate the WWL in this area. +Harris County +Two WWL data points were identified in Harris County. After a review of the flagger forms and photographs and topography, only point (RTXC-03-02) was deemed to accurately represent the WWL. To reflect this evidence, the WWL was extended along the bay by following the 5-foot (1.5-meter) contour to reach point RTXC-03-02. However, the comments on the flagger form and photographs for RTXC-03-01 do not provide conclusive evidence of a WWL. The flagger noted, [the] high water mark may be [due to the] normal high tide. Therefore, RTXC-03-01 was not included in the WWL analysis. No post-event aerial imagery for this county was available for review. +Jefferson County +Aerial imagery, topography, and flagger forms and photographs were reviewed to assess the inundation coverage for the four WWL points identified in Jefferson County. Field data for repetitive loss point RTXC-01-01 did not provide clear evidence of a WWL. The photograph shows a wrack line, but the flagger commented, [there is] no flooding or damage to [the] building. A review of aerial imagery supported the flaggers comment, as no flooding in proximity to this point was evident. Points RTXC-05-06, RTXC-05-26, and RTXC-05-27 were within 200 feet (61 meters) of the photointerpreted debris line and deemed to be in agreement with the photointerpreted flood area and debris line. + +Also in Jefferson, points RTXC-05-26 and RTXC-05-27 were used to delineate the extent of coastal flooding. Both of these points were coastal points and represented the furthest inland coastal flood data in the area. Elevations at these points were approximately 6 feet (1.8 meters) North American Vertical Datum of 1988 (NAVD 88), so the WWL was delineated at 6 feet (1.8 meters) NAVD 88 in this area. + +Along Sabine Lake/Willie Slough Gully, points RTXC 05-07 and RTXC 05-17 were used to define the extent of surge flooding. Elevations at these points averaged 4.5 feet (1.4 meters) NAVD 88; this number was rounded to 5 feet (1.5 meters) NAVD 88 to delineate the WWL. +Orange County +Five WWL data points were identified in Orange County. After reviewing flagger forms and photographs, aerial imagery, and the photointerpreted inundation area, it was deemed that the inundation area should be extended to include the four points that accurately represented the WWL. The remaining point, RTXC-01-03, was not included as a WWL point because of its remote location from a body of water and the lack of conclusive evidence from aerial imagery to indicate that flooding occurred within proximity to the point. + +Along the Sabine River, several points were used to determine the extent of surge flooding. In Texas, the points RTXR-05-14 (coastal), RTXC-03-06, and RTXC-03-07 show the inland extent of coastal data collected under the HWM task orders. In Louisiana, there was one point, RLAC-09-16, that was also used. The average of these points was approximately 6 feet (1.8 meters) NAVD 88 which was used to delineate the WWL. + +Two tributaries of the Sabine River where also analyzed. The point RTXC 05-13 was used to delineate the WWL along one of these tributaries with an elevation of 5 feet (1.5 meters) NAVD 88. Along the second tributary, point RTXR 05-147 (coastal) was used; this point also had an elevation of 5 feet (1.5 meters) NAVD 88. +Polk County +Both points identified as WWLs in Polk County were discarded based on a review of local topography and flagger comments. Wrack lines were located along the channel bank, indicating that flooding occurred within the stream channel. This data corroborates reports of flooding along the Trinity River after excess amounts of water were released from Lake Livingston Dam. The Trinity River channel was flooded, but no homes or structures were flooded or damaged in Polk County. No post-event aerial imagery was available for this region of Polk County. +Sabine County +One WWL point was identified in Sabine County. By reviewing the local topography, it was determined that point RTXR-02-14 had an elevation of 175 feet (53 meters) and was approximately 118 miles (190 kilometers [km]) away from the Gulf Coast. An evaluation of the flaggers comments revealed that flooding generally occurred within the stream channel and was not due to coastal surge. The flagger commented, It seems as if this corner [of the river] trapped some water, raising this [water surface elevation]. Otherwise the water in the area did not overflow the banks of the river. This point does not appear to be representative of the inundation trend and was therefore discarded for the purposes of modifying the inundation area. No post-event aerial imagery was available for this region. +Map Details +GIS maps of the WWL were produced at a scale of 1:24,000 (see Appendix E). The maps show the location and type of each WWL data point, the debris line, and the approximate coastal inundation extent of storm surge flooding. The GIS maps are based on U.S. Geological Survey (USGS) 7.5- minute topographic quadrangle maps. + +It is important to note that the maps use both the debris line and extent of inundation to show the damage caused by flooding. While the debris line helps to show where higher velocity storm surge pushed debris inland, causing damage, the inundation caused by surge extends further inland and shows where less powerful and, in many cases, shallower flooding also caused damage. Together, these illustrate the extent of the WWL along the northeast Gulf Coast of Texas. +Findings and Observations +In Texas, the WWL was delineated primarily by the debris line. Surge flooding inland of the debris line generally seemed to occur only in eastern Jefferson County and Orange County. Along portions of Galveston Bay, a WWL was delineated, but it was not believed to be a Debris Line since the areas are largely undeveloped wetlands. Table 5 presents a summary of inland distances of the WWL with a focus on developed areas. + +Damage caused by coastal storm surge effects was observed all along Texas Gulf Coast. The land along Galveston Bay in Chambers County, Harris County, and Galveston County escaped major coastal flooding as maximum surge levels were in the range of 4 to 6 feet 1.2 to 1.8 meters) (see map panels 16, 17, 21-26, and 31). + +Table 5: Wind Water Line Findings + +Note: Points in Polk and Sabine Counties were not deemed to accurately represent the WWL. + +COUNTY: Chambers + LOCATION (CITY OR AREA): Anahuac National Wildlife Refuge + DISTANCE INLAND TO DEBRIS LINE (FT/M): None +DISTANCE INLAND OF SURGE INUNDATION (FT/M): 35,000/10,700 + MAJOR FLOOD SOURCES: Gulf of Mexico + MAP PANEL NAMES AND NUMBERS: (East Bay) Frozen Point 33 + High Island 34 + Lake Stephenson 32 + Oyster Bayou 25 + Stanolind Reservoir 26 + +COUNTY: Chambers + LOCATION (CITY OR AREA):Trinity Bay Coast- Smith Point to the City of Anahuac + DISTANCE INLAND TO DEBRIS LINE (FT/M): 0-8,000/0-2,400 +DISTANCE INLAND OF SURGE INUNDATION (FT/M): None beyond debris line + MAJOR FLOOD SOURCES: Trinity Bay + MAP PANEL NAMES AND NUMBERS: Anahuac 17 + Lake Stephenson 32 + Oak Island 24 + Smith Point 31 + +COUNTY: Chambers + LOCATION (CITY OR AREA): Trinity Bay Coast- the City of Anahuac to Beach City DISTANCE INLAND TO DEBRIS LINE (FT/M): None +DISTANCE INLAND OF SURGE INUNDATION (FT/M): 0-25,000/0-7,600 MAJOR FLOOD SOURCES: Trinity Bay + MAP PANEL NAMES AND NUMBERS: Anahuac 17 + Cove 16 + +COUNTY: Chambers + LOCATION (CITY OR AREA): Galveston Bay Coast- Beach City to Harris County Border + DISTANCE INLAND TO DEBRIS LINE (FT/M): 0-2,000/0-600 +DISTANCE INLAND OF SURGE INUNDATION (FT/M): None beyond debris line + MAJOR FLOOD SOURCES: Galveston Bay MAP PANEL NAMES AND NUMBERS: Morgan Point 22 +Umbrella Point 23 + +COUNTY: Galveston + LOCATION (CITY OR AREA): Galveston Island + DISTANCE INLAND TO DEBRIS LINE (FT/M): 0-8,300/0-2,530 +DISTANCE INLAND OF SURGE INUNDATION (FT/M): None beyond debris line + MAJOR FLOOD SOURCES: Gulf of Mexico (West Bay and Galveston Bay) + MAP PANEL NAMES AND NUMBERS: Galveston 41 +Lake Como 44 +San Luis Pass 45 +Sea Isle 43 +The Jetties 42 +Virginia Point 40 + +COUNTY: Galveston + LOCATION (CITY OR AREA): Gulf of Mexico Side of Bolivar Peninsula + DISTANCE INLAND TO DEBRIS LINE (FT/M): 0-4,500/0-1,400 +DISTANCE INLAND OF SURGE INUNDATION (FT/M): None beyond debris line + MAJOR FLOOD SOURCES: Gulf of Mexico + MAP PANEL NAMES AND NUMBERS: Caplen 39 +Flake 38 +Frozen Point 33 +Galveston 41 +High Island 34 +The Jetties 42 + +COUNTY: Galveston + LOCATION (CITY OR AREA): East Bay Side of Bolivar Peninsula + DISTANCE INLAND TO DEBRIS LINE (FT/M): 1,000-12,0002/300-3,700 +Note: The bay side of Bolivar Peninsula consists of marshy areas and several water bodies and is not a solid land mass. +DISTANCE INLAND OF SURGE INUNDATION (FT/M): None beyond debris line + MAJOR FLOOD SOURCES: East Bay + MAP PANEL NAMES AND NUMBERS: Caplen 39 +Flake 38 +Frozen Point 33 +High Island 34 +Port Bolivar 37 + +COUNTY: Harris + LOCATION (CITY OR AREA): Coast- Border of Chambers County to Bayside Terrace + DISTANCE INLAND TO DEBRIS LINE (FT/M): 0-13,000/0-4,000 +DISTANCE INLAND OF SURGE INUNDATION (FT/M): None + MAJOR FLOOD SOURCES: Gulf of Mexico (Crystal Bay, Galveston Bay) + MAP PANEL NAMES AND NUMBERS: La Porte 21 +Morgan Point 22 + + +COUNTY: Jefferson + LOCATION (CITY OR AREA): Coast- Border with Chambers County to just west of Sabine + DISTANCE INLAND TO DEBRIS LINE (FT/M): 0-1,000/0-300 +DISTANCE INLAND OF SURGE INUNDATION (FT/M): None beyond debris line + MAJOR FLOOD SOURCES: Gulf of Mexico + MAP PANEL NAMES AND NUMBERS: Clam Lake 29 +Mud Lake 35 +South of Star Lake 36 +Star Lake 28 + +COUNTY: Jefferson + LOCATION (CITY OR AREA): Sabine + DISTANCE INLAND TO DEBRIS LINE (FT/M): 600-3,000/180-900 +DISTANCE INLAND OF SURGE INUNDATION (FT/M): 1,000-20,000/300-6,100 +Note: Distance inland from the debris line. + MAJOR FLOOD SOURCES: Gulf of Mexico + MAP PANEL NAMES AND NUMBERS: Sabine Pass 30 + +COUNTY: Jefferson + LOCATION (CITY OR AREA): Just north of Sabine to Port Arthur, Beaumont, and the border with Hardin County + DISTANCE INLAND TO DEBRIS LINE (FT/M): None +DISTANCE INLAND OF SURGE INUNDATION (FT/M): 0-6,000/0-1,800 +Note: Distance inland from channel bank of flooding source. + MAJOR FLOOD SOURCES: Sabine Lake, Neches River + MAP PANEL NAMES AND NUMBERS: Port Arthur North - 14 +Port Arthur South 20 +Sabine Pass 30 +West of Greens Bayou 15 + +COUNTY: Jefferson + LOCATION (CITY OR AREA): South Beaumont, West Port Arthur + DISTANCE INLAND TO DEBRIS LINE (FT/M): None +DISTANCE INLAND OF SURGE INUNDATION (FT/M): see maps for details + MAJOR FLOOD SOURCES: Willie Slough GullyMAP PANEL NAMES AND NUMBERS: Alligator Hole Marsh 18 +Big Hill Bayou 19 +Fannett East 12 +Port Acres 13 + +COUNTY: Jefferson/Orange + LOCATION (CITY OR AREA): From Port Arthur north to Hardin County along Neches River + DISTANCE INLAND TO DEBRIS LINE (FT/M): None +DISTANCE INLAND OF SURGE INUNDATION (FT/M): 0-25,000/0-6,100 +Note: Distance inland from channel bank of flooding source. + MAJOR FLOOD SOURCES: Neches River + MAP PANEL NAMES AND NUMBERS: Beaumont East 8 +Pine Forest 5 +Port Arthur North 14 +Terry 9 +Voth 4 + +COUNTY: Orange +LOCATION (CITY OR AREA): Orange Border with Jefferson County and Louisiana + DISTANCE INLAND TO DEBRIS LINE (FT/M): None +DISTANCE INLAND OF SURGE INUNDATION (FT/M): 24,000/7,315 13,000/3,962 + MAJOR FLOOD SOURCES: Neches River + MAP PANEL NAMES AND NUMBERS: Sabine River Echo 7 +Mauriceville 6 +Orange 11 +Orangefield 10 + + + + +4. Distance inland from channel bank of flooding source. + +In Chambers County, the WWL that falls within the Anahuac National Wildlife Refuge, located along the southern border of the county, extends up to approximately 7 miles (11 km) inland (see map panels 24-26 and 32-34). The WWL extending from Smith Point to Anahuac, as shown on map panels 17, 24, and 31, reaches from several blocks inland to 1.2 miles (1.9 km) inland. The remaining portion of Chambers County, which stretches from Anahuac to the border of Harris County and is shown on map panels 16, 17, 22, and 23, has a WWL that reaches up to 4 miles (6 km) inland in the marshy areas to the northeast of Dutton Lake and Cotton Lake. + +The WWL in Harris County, which extends from the border of Chambers County to Bayside Terrace, reaches up to 2.5 miles (4 km) inland along the San Jacinto River and is shown on map panels 21 and 22. + +In Galveston County, Galveston Island and the Bolivar Peninsula experienced a relatively mild ocean surge. The WWL follows the perimeter of both Galveston Island and the Bolivar Peninsula and extends from the coastline to approximately 1.6 miles (2.6 km) and 2.3 miles (3.7 km), respectively (see map panels 34, 37-39, and 40-45). + +The most damage caused by coastal storm surge effects was observed in Jefferson County. Although the hurricane surge was held back by an extensive levee system protecting Port Arthur, Jefferson County sustained heavy damage from Ritas winds. The WWL is shown as both a debris line and inland inundation in this county on map panels 4, 5, 8, 9, 12-15, 18-20, 27-30, 35, and 36. The debris line extends from the border of Chambers County to Sabine and reaches up to 3,300 feet (84 meters) inland. The inundation area extends up the Neches River from Port Arthur past Beaumont to Jasper and Hardin Counties; surge effects reach to the northern edge of Jefferson County and thus the WWL extends to this area stretching approximately 25 miles (40 km) from the confluence with Sabine Lake. Within Jefferson County the inundation area extends up to approximately 2 miles (3 km) inland from the Neches River channel bank. + +Orange County also sustained heavy damage from Ritas winds. The inundation extends up to 2.5 miles (4.0 km) inland from the Sabine River channel bank along the eastern border of Orange County, Texas and Calcasieu Parish, Louisiana. An inundation area also covers up to 5 miles (8 km) inland from the Neches River along the border of Orange County and Jefferson County. Orange County is shown on map panels 3, 5-7, 8-11, 14, and 15. +Conclusions +Storm surge and wind from Hurricane Rita clearly had a damaging effect along the Texas coastline. The coastal areas of Texas were vulnerable to Hurricane Ritas coastal storm surge due to the low-lying shore and extensive wetlands. However, as the upper Texas coast was in the left front hurricane quadrant where the forward speed of the storm did not add to the magnitude of the maximum wind speeds, Texas experienced a relatively low coastal storm surge compared to Louisiana. The coastal surge was significant enough to form debris lines along the coastline of Galveston Bay, around the perimeters of Galveston Island and the Bolivar Peninsula, and along the southern border of Jefferson County. Further east, in Jefferson and Orange Counties, surge induced flooding spread along the Neches and Sabine Rivers reaching as far as 5 miles (8 km) inland from the rivers channel banks and upstream as much as approximately 25 miles (40 km) + +Appendix A: Wind Water Line Data Points + + +Appendix A contains a data table for the WWL data points. + + + +DUE TO PRIVACY ISSUES (ADDRESSES ARE INCLUDED TO IDENTIFY POINT LOCATIONS), THIS APPENDIX IS NOT AVAILABLE IN THE VERSION OF THE REPORT POSTED ON THE FEMA WEBSITE. + + +Appendix B: Photographs + + + + +Appendix B contains an index and thumbnails of the photographs. The naming convention for the photographs uses the data point ID Number (RTXC-XX-XX) and then a sequential number for the photograph(s) associated with that ID Number (RTXC-XX-XX-1, RTXC-XX-XX-2). In most instances, two photographs were taken for each data point; however, when additional information was needed, three photographs were taken. + + +DUE TO PRIVACY ISSUES, THIS APPENDIX IS NOT AVAILABLE IN THE VERSION OF THE REPORT POSTED ON THE FEMA WEBSITE. + +Appendix C: Debris Line and Inundation Mapping Summary (HMTAP T.O. 443) + + + +Appendix C contains a summary report from HMTAP Task Order 443: Rapid Response, Aerial Radar Texas and Louisiana. The aerial imagery collected under this task order was used to delineate a debris line and flood boundaries that served as base data for HMTAP Task Order 446, Rapid Response, Hurricane Rita Wind Water Line Texas. WWL data points were used in conjunction with these data to delineate the WWL. + + + +Appendix D: Notes on Analysis of Wind Water Line Data Points + + + +Appendix D contains a record of the comparison of the photointerpreted data to the field data and the actions taken to resolve any differences between the two. Where photointerpreted data were not available, notes on how the WWL data points were used are included. + + +Appendix E: Wind Water Line Maps + + + +Appendix E contains the map panels illustrating the location of the Wind Water Line from Rita along the northeastern coastline of Texas. +1 The flooding type is provided in a column of Appendix A for each point. While the naming convention for RHWMs and CHWMs generally includes a C or an R within the point name to indicate the type of flooding, for Task Orders 444 and 449 these labels were not always true. Therefore, the flooding type data from Appendix A should be used. + + + + + HMTAP Task Order 446 + February 28, 2006 + +Hurricane Rita Rapid Response Page ii +Wind Water Line Report Texas Final Report + +Hurricane Rita Rapid Response Page 6 +Wind Water Line Report - Texas Final Report + +Hurricane Katrina Rapid Response +Wind Water Line Report Texas Final Report + +Hurricane Rita Rapid Response +Wind Water Line Report Texas Final Report + diff --git a/office/regression/000_000205.html b/office/regression/000_000205.html new file mode 100644 index 0000000..51c2169 --- /dev/null +++ b/office/regression/000_000205.html @@ -0,0 +1,81 @@ + + + + Gulf of the Farallones NMS: Sea Palms + + + + +

+

+
+ + + + + +

+ + +

+ + + + + + + + + +
+ +
+
+

+

+ + + + + +
back button + + + +

100 dpi image +

+ +

+ +

+ +

Branches of algae, or seaweed, that cast ashore in the + tideline often resemble the branches of terrestrial plants + or trees. Because of the insects and other organisms that + cling to it, this beach wrack is an important foraging area + for shorebirds. (photo: Joe Heath) + + + +

Download/Display 300 +dpi image + +
+
+
+ + + + + + + +
NOAA logoRevised November 28, 2005 by Sanctuaries Web Group
+ Many links leave the National Marine Sanctuary Web Site - please view our Link Disclaimer for more information
+
National Ocean Service | National Oceanic and Atmospheric Administration | Privacy Policy | + Contact Us
http://sanctuaries.noaa.gov/pgallery/pgfarallones/living/living_21.html
+
+

+
+ + diff --git a/office/regression/000_000206.html b/office/regression/000_000206.html new file mode 100644 index 0000000..eab2939 --- /dev/null +++ b/office/regression/000_000206.html @@ -0,0 +1,462 @@ + + + + + + + + + + + + + +USGS National Wetlands Research Center:Prehurricane Survey of Barrier Islands Surey Post Ivan + + + + + + + + + + +
+
+
USGS - science for a changing world
+ +
+
+
+

National Wetlands Research Center

+ + +
+ + + + + + +
+ + + + + + +
+ + + + + + + + + + + +
  + Home / + About NWRC / + Issues & Capabilities / + NWRC Library / + Publications / + Data & Maps / + Staff / + Hot Topics / + Search / + Site Index
+
+ + +

POSTHURRICANE IVAN SURVEY OF CHANDELEUR ISLANDS, LOUISIANA

+ + + + + +
By:Thomas C. Michot (Pilot/Biologist), USGS - + NWRC
+ Scott Wilson (Electronics Engineer), USGS - NWRC
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Aerial survey date:September 17-18, 2004
Storm name: Hurricane Ivan
Storm date (landfall):September 16, 2004
Max. sustained winds 212 kmph (132 mph)
Aircraft:
+
N727 (DOI 08), Cessna 185 Amphibian
Route of flight:Chandeleur LighthouseRedfish + PointMonkey BayouNorth/New + Harbor IslandsFreemason Island – + Curlew IslandGosier Island + – Breton Island
+ + + + + + + +
+ + Chandeleur Lighthouse + Redfish Point + New Harbor Island + Monkey Bayou + Freemason Island + Curlew Island + Gosier Island + Breton Island + Breton Island + + Chandeleur Map +
+
Map showing various landmarks in the Chandeleur + Island chain that were surveyed before and after Hurricane Ivan (click + on landmark name to go directly to the text and pictures for that area).
+
+

In coastal Louisiana, no event has such immediate and widespread economic, + human, and ecological effect as a tropical weather system. The high winds, + extreme rain, storm surge, and flooding may damage infrastructure, disrupt + and destroy lives, and impact the natural environment. There is a well developed + and understood emergency system in place for rapid assessment of storm impacts + on the human population and infrastructure (i.e., FEMA). A similar system + has not yet emerged for assessing the effects on the biota.

+

Researchers at National Wetlands Research Center (NWRC) have been monitoring + the barrier islands of the Gulf of Mexico coast for almost two decades. Scientific + studies of biological processes related to aspects of the barrier islands + have been an important part of research activities. Additionally, we have + produced numerous seagrass and terrestrial maps over the years allowing habitat + trends to be followed at a very detailed

+

scale in space and time. Finally, we have an active aircraft observation + methodology that allows rapid

+

qualitative and quantitative assessment of marsh and barrier island impacts + of various human-caused and naturally occurring events. We have data from + 13 flights conducted from September 1998 to present; from those data we can + document changes in shoreline characteristics and island integrity.

+ + + + + + + +
Number of overwashes on the Chandeleur Islands
+

Click on graph for caption and larger version.

+
+

The first line of defense that may weaken a tropical storm is a barrier island + system. Those islands are also usually the least resistant lands to the full + force of violent weather. The use of low-altitude aircraft observations has + allowed NWRC staff scientists to quickly respond to major events, informing + policymakers and public land managers of major storm effects on the natural + environment.

+ + + + + + + + + + +
+ Chandeleur Lighthouse +
Chandeleur Lighthouse 8/11/2004
Chandeleur Lighthouse 9/18/2004
The lighthouse was situated on land until Hurricane Georges + (September 28, 1998). After that the island had eroded from under the + lighthouse such that the lighthouse appeared to be in open water. Since + Georges, although the island had reformed behind the lighthouse, the lighthouse + remained in open water. The pre-Ivan photo (August 11, 2004) shows the + lighthouse in open water about 30 m from the shoreline, and the northern + tip of the island was relatively broad and extended several hundred meters + north of the lighthouse. Note in the background, beyond the lighthouse, + two large vegetated islands (1, 2), connected by beach, then an overwash + channel that still had not closed up since Hurricane Lili. That channel + is one of the seven overwash channels that were still open in our pre-storm + survey (see graph). Beyond the + aforementioned overwash channel, one can see two small vegetated islands + (3, 4) followed by a larger island (5).Note that the land behind the lighthouse has completely + washed away, and the first of the two large vegetated islands that were + beyond the lighthouse has disappeared as well. Consequently, the closest + vegetated island south of the lighthouse is now what was the second large + island (2) before the storm. Beyond that island one can see the two smaller + vegetated islands (3, 4) followed by the larger island (5), as in the + previous photo. Note that the water behind the lighthouse has no whitecaps + or breaking waves, which indicates an absence of shallow shoals. Such + shoaling was evident immediately after Hurricane Georges. It was probably + the cumulative effect of four hurricanes in 7 years that resulted in the + deep erosion (evidenced by lack of shoaling) seen now after Hurricane + Ivan.
+ + + + + + + + + + +
+ Redfish Point, looking west to east from + Chandeleur Sound to Gulf of Mexico.
+ Redfish Point is the largest peninsula in the Chandeleur chain and is the + most prominent land feature of the main chain when seen from the air or in + aerial photographs. It is located in the middle of the main chain +
Redfish Point 8/11/2004
Redfish Point 9/18/2004

Note that the beach at this time was completely closed, + with no exchange of water between the gulf and the sound. Overwash channels + from previous storms had closed up. Green vegetation in foreground is + smooth cordgrass (Spartina alterniflora, lighter green) and + black mangrove (Avicennia germinans, dark green).

Note that the a major overwash channel [see + graph] has opened between the gulf and the sound just south of Redfish + Point; a minor channel can be seen just north of Redfish Point. Note also + that, between overwash channels, the sand from the beach has been pushed + back into the adjacent marsh. Marsh vegetation and mangroves seem to have + survived the storm impacts so far, though a delayed response is possible. + Seagrass beds can be seen in the foreground, though some are not visible + because of the high turbidity in the water. The beds seem to be intact + along the island except for where they were buried by sediment (for instance, + 25% of the beds were buried during Hurricane Camille). Increased turbidity + from the overwash channels could cause a decrease in seagrass viability + in the near future.
+ + + + + + + + + + +
+ Monkey Bayou (main chain, Chandeleur Islands) + looking west to east from Chandeleur Sound toward the Gulf of Mexico +
Monkey Bayou 8/11/2004
Monkey Bayou 9/18/2004
Note that a small cut through the beach remained open from + the gulf to the sound since Hurricane Lili. Green vegetation in foreground + is smooth cordgrass (Spartina alterniflora, lighter green) and + black mangrove (Avicennia germinans, dark green).
Note that the opening between the gulf and the sound at + Monkey Bayou is now much wider than it was before Ivan. Additional "major" + overwash channels can be seen (see + graph) north and south of the Monkey Bayou cut. Note also that between + overwash channels, the sand from the beach has been pushed back into the + adjacent marsh. Marsh vegetation and mangroves seem to have survived the + storm impacts so far, though a delayed response is possible.
+ + + + + + + + + + + +
+ New Harbor Island, East (Chandeleur Islands) +
E New Harbor 8/11/2004
E New Harbor 9/18/2004
Looking north to south, the eastern portion of New Harbor + Island is shown; the tip of the western portion is + barely visible on the right border of the photo. Black mangroves (Avicennia + germinans, dark green) are well established along the shoreline of + New Harbor Island, with smooth cordgrass (Spartina alterniflora, + lighter green and brown) growing on most of the land mass. The mangroves + on this island serve as roosting habitat for thousands of magnificent + frigatebirds Fregata magnificens), a species that nests in the + Caribbean region. The birds forage in the waters of Chandeleur Sound throughout + the summer, which is the nonbreeding season for these + birds.
In a view from south to north, here you can see that the + island is intact after the storm, probably because it is situated directly + behind the middle of the main chain, which is the most protected part. + The marsh and mangroves seem unaffected at this time, though latent effects + are possible. We did not observe any magnificent frigatebirds over the + island on this flight, but during Hurricane Ivan birders reported more + than 1,000 magnificent frigatebirds sighted over New Orleans, which is + well inland of their normal foraging area. Note several areas of floating + wrack (darker brown), mats of dead marsh vegetation (such as Spartina + alterniflora and Phragmites australis) that was probably + broken from marsh areas of the Mississippi Delta during Hurricane Ivan. + Floating mats have commonly been observed in this area immediately after + hurricanes. Seagrass beds (apparently intact) can be seen adjacent to + the floating wrack mats.
+
+

+ + + + + + + + + + +
+ New Harbor Island, West (Chandeleur Islands) +
W New Harbor 8/11/2004
W New Harbor 9/18/2004
The western portion of New Harbor Island is shown. As in + the eastern portion of New Harbor Island, black mangroves + (Avicennia germinans, dark green) are well established along + the shoreline and smooth cordgrass (Spartina alteriflora, lighter + green) is growing the rest of the land mass. The mangroves on both portions + of New Harbor Island serve as roosting habitat for magnificent frigatebirds. The island is intact after the storm, probably because + it is situated directly behind the middle of the main chain, which is + the most protected part. The marsh and mangroves can be easily seen in + this image; they seem unaffected at this time, though latent effects are + possible. Seagrass beds and wrack can be seen adjacent to the island.
+ + + + + + + + + + +
+ Freemason Island (Chandeleur Islands)
+ Freemason Island is the southernmost of the "back islands" of the Chandeleur + chain. It is a subaerial island with a substrate composed of 100% shell fragments + from numerous mollusk species common to the area. This island is a favorite + fishing spot for recreational anglers. +
Freemason Island 8/11/2004
Freemason Island 9/18/2004
Looking east to west from Chandeleur Sound the island is + intact except for a shallow opening of approximately 30 m that separates + the two portions of the island. Two small patches of herbaceous vegetation + (green) are visible in the photo.Looking west to east from Chandeleur Sound the island has + been reduced to two small islets, one at each tip of what was previously + a much longer island. Note several areas of floating wrack (darker brown), + mats of dead marsh vegetation (such as Spartina alterniflora + and Phragmites australis) that were probably broken from marsh + areas of the Mississippi Delta during Hurricane Ivan. Floating mats such + as these have commonly been observed in this area immediately after hurricanes.
+ + + + + + + + + + +
+ South Gosier Island (Chandeleur Islands)
+
S. Gosier Island 8/11/2004
S. Gosier Island 9/18/2004
Prior to 1969, Grand Gosier Island was a single island, + but Hurricane Camille split it into two. After Hurricane Georges (1998), + North Gosier disappeared, but it came back so that just prior to Hurricane + Ivan it was a long sand spit, largely unvegetated. South Gosier remained + subaerial after Georges, and just prior to Ivan (pictured) it was a vegetated + island with a well-developed sand spit on each end. North Gosier Island was completely washed away with no + shoaling evident. South Gosier was also completely washed away, but with + a small shoal in evidence.
+ + + + + + + + + + +
+ North Curlew Island (Chandeleur Islands)
+
North Curlew Island 8/11/2004
North Curlew Island 9/18/2004
Curlew Island was a single island prior to Hurricane Georges + (September 28, 1998). After Georges it was split into two islands. Just + prior to Hurricane Ivan, South Curlew was only a subaerial spit, and North + Curlew (pictured) was a long sand island with no vegetation except for + a few small shrubs in the middle.

Both the north and south portions of Curlew Island + were completely washed away, with no shoaling evident.

+

 

+

 

+ + + + + + + + + + +
+ Breton Island +
Breton Island 8/11/2004
Breton Island 9/18/2004
Breton Island was a single island prior to Hurricane Opal + (1995), but it was divided into two during that storm. There was some + recovery, but during Hurricane Georges (1998) it was further divided into + three portions. Just prior to Hurricane Ivan, Breton Island (pictured) + was again two portions separated by a shallow gap Breton was cut into three portions by Hurricane Ivan.
+

 

+

See Also - Post + Hurricane Katrina Chandeluer Island Photographs

+ +
+ + +
+

+ Accessibility + FOIA + Privacy + Policies and Notices +

+ +

+ Take Pride in America logo + USA.gov logo + U.S. Department of the Interior | + U.S. Geological Survey
+ URL: http://www.nwrc.usgs.gov/hurricane/postivanphotos.htm
+ Page Contact Information: nwrcweb@usgs.gov
+ Page Last Modified: Tuesday, 12-Aug-2008 16:28:37 EDT +

+
+ + + + + diff --git a/office/regression/000_000207.html b/office/regression/000_000207.html new file mode 100644 index 0000000..4d12c1b --- /dev/null +++ b/office/regression/000_000207.html @@ -0,0 +1,75 @@ + + + +
+ IBIDS_Database +

+ + + + + + + + + + + + + + + + + +
+
+ + + +
+
+ +
+
+ + + + +
+
+ + + +
+
+ + + +
+
+ +
+
+ +
+
+ +
+ + + Mechanism of antimutagenicity of aquatic plant extracts against benzo[a]pyrene in the Salmonella assay. + + +
      

Record Detail

Return to previous page
+ + + + + + + + +
Save: + +
Title: Mechanism of antimutagenicity of aquatic plant extracts against benzo[a]pyrene in the Salmonella assay.
Author: Sato, T : Ose, Y : Nagase, H : Kito, H
Citation: Mutat-Res. 1990 Jul; 241(3): 283-90
Abstract: The mechanism of antimutagenicity of water extracts of grass-wrack pondweed (Potamogeton oxyphylus Miquel), curled pondweed (Potamogeton crispus L.) and smartweed (Polygonum hydropiper L.) towards benzo[a]pyrene mutagenicity in Salmonella typhimurium was investigated. The antimutagenic components in the aquatic plants were water-soluble, heat-resistant and had a high molecular weight; chlorophyll did not play an important role.
Review References: None
Notes: None
Language: English
Publication Type: Journal-Article
Keywords: Benzoapyrene pharmacology : Plant Extracts pharmacology : Salmonella typhimurium drug effects
URL: http://www.elsevier.com/locate/inca/600799


diff --git a/office/regression/000_000209.html b/office/regression/000_000209.html new file mode 100644 index 0000000..4c9b196 --- /dev/null +++ b/office/regression/000_000209.html @@ -0,0 +1,934 @@ + + + +Coastal Restoration - Innovative Techniques and Methods for Coastal Habitat Restoration + + + + + + + + + + +
+
+
+

Coastal Services Center

+

National Oceanic and Atmospheric Administration

+
+
+
+ + + + + + + + + +Search >> +
+
+ +
+
+
+ + + + + + +
+ + [Skip Navigation] + + + + + +
+ +
+

Five Basic Components +


+ + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 Quick Links
Salt Marsh Habitat
Mangrove Habitat
Seagrass Habitat
Kelp Habitat
Reef Habitats
Great Lakes Marsh Habitat
Summary
Glossary
  
+
+ + + + +
Innovative Techniques and Methods for Coastal Habitat Restoration
+ + + +
+ + + + + + +
Explosion used to create a tidal creek.
Explosive used carefully and effectively to create a meandering tidal creek.
+ Click to watch video Click to watch video
+

As the science of habitat restoration matures, coastal restoration + practitioners are developing new and innovative ways to increase the + efficiency and success of restoration efforts. Following are several + examples of recent or ongoing restoration projects that contribute to + our understanding of new practices for coastal habitat restoration.

+
+

Salt Marsh Habitat

+

Salt marshes occur on all coasts of the United States around low-energy + areas such as estuaries, lagoons, bays and river mouths. They play + a vital role in the health of the coastal ecosystem. Salt marshes function + to help control floods, improve water quality, and contribute significantly + to coastal food webs. They provide valuable habitat for fish, birds, + and other wildlife. Over the past century, salt marshes have disappeared + at an alarming rate, primarily as a result of such activities as + dredging, filling, diking, and ditching. Natural salt marshes are a + function of their hydrology and must maintain a delicate balance between + salt water and fresh water.

+

Restore and Regulate Tidal Hydrology Projects

+
+ + + + + + + +
Figure 1
Figure 1. Removal of existing levee during the Deepwater Slough Restoration Project Courtesy: U.S. Army Corps of Engineers (USACE), Seattle District.
+

The Deepwater Slough Restoration Project
+ South Fork of the Skagit River, Washington

+

The project seeks to restore the natural processes + and conditions of a 230-acre intertidal estuary that were disrupted + by diking, which eliminated the processes of river and tidal hydrology + and sediment supply.

+

Innovative component : The project removed 10,000 lineal + feet of existing levee — the first project in the Puget Sound region + to remove diking completely as compared to breaching (Figure + 1). To date, this technique has been successful in restoring tidal hydrology + to the system.

+

Contact: Curtis_Tanner@fws.gov
+
Web link: http://www.new.usace.army.mil/publicmenu/DOCUMENTS/deepwater.pdf

+
+ + + + + + + + + + +
Figure 2a
Figure 2b
Figure 2. Creation of a meandering tidal creek (bottom) with explosives + (top) for the Winchester Tidelands Restoration Project. Courtesy: South Slough National Estuarine Research Reserve.
+

The Winchester Tidelands Restoration Project
+
South Slough National Estuarine Research Reserve, + Oregon
+ video clip Watch video...

+

This project has two primary goals: 1) to restore + full tidal hydrology to a series of diked and degraded estuarine wetlands; + and (2) experimental correction for marsh surface subsidence by creating + marsh mesocosms at different tidal elevations (see Restoration Research).

+

Innovative component: In a portion of the project area where + the marsh surface was too soft to accommodate dump trucks for removal + of excavated material, explosives were used carefully and effectively + to create a meandering tidal creek (Figure 2; video clip). In another + area, an innovative method for removing a large amount of dike in one + low tide window of opportunity was accomplished by digging vaults at + various locations behind the dike to be removed. Filling the vaults + with dike material as it was removed greatly speeded the time of dike + removal by eliminating the need to truck dike material offsite.

+

Contact: craig.cornu@dsl.state.or.us
+
Web link: http://www.southsloughestuary.org

+
+ + + + + + + +
Figure 3
Figure 3. Inspecting installation of sheet metal, which will house + the self-regulating tidegate. Courtesy: National Oceanic and Atmospheric + Administration Photo Library.
+

Black Bayou Hydrologic Restoration Project
+
Over 25,000 acres of tidally-influenced intermediate + and brackish marshes in Cameron and Calcaieu Parishes, Louisiana

+

The purpose of the Black Bayou Hydrologic Restoration + Project project is to restore coastal marsh habitat and slow the conversion + of wetlands to shallow, open water.

+

Innovative component: A weir with a state-of-the-art, self-regulating + tidegate (SRT) was installed to regulate the amount of saltwater intrusion + into surrounding marsh habitat (Figure 3). In contrast to conventional + tide gates that close when the tide rises, the SRT can be adjusted to + allow tidal flow into the marsh behind it, closing only when a predetermined + high water level is reached. This restores tidal flushing of the marsh + while protecting upland property from flooding. Critical access for + fisheries is maintained through fish slots on either side of the SRT.

+

Contact: John.Foret@noaa.gov
+
Web link: http://www.lacoast.gov
+
SRT information available: http://www.watermanusa.com

+
> Return to top
+ + + +

Planting

+
+ + + + + + + +
Figure 4
Figure 4. High school students growing salt marsh plants for Tampa Bay Estuary restoration projects. Courtesy: Tampa BayWatch.
+

High School Wetland Nursery Program (also known + as Bay Grasses in Classes)
+ Tampa Bay, Florida

+

Tampa BayWatch facilitates the construction + of salt marsh plant nurseries in the bay region's schools. With a 44 percent + loss of shoreline vegetation in Tampa Bay over the past 100 years, the + nurseries provide an inexpensive source of salt marsh plants for large-scale + restoration projects in the Tampa Bay Estuary. The nurseries are monitored + and maintained by students of all ages in coordination with school science + teachers and science and ecology clubs. Smooth cordgrass plugs are harvested + from a natural donor site and planted at the school nursery (Figure + 4). After six to eights months of growth, the students transplant the + cordgrass at a restoration site.

+

Innovative component: It is estimated that the High School + Wetland Nursery Program saves public agencies approximately $69,000 + per year in salt marsh plant purchase costs. This is the first program + to use school systems to develop a permanent source of plants. Similar + programs now exist in other areas such as Chesapeake Bay and Louisiana.

+

Contact: info@tampabaywatch (manual + and video available)
+ Web links: Tampa Bay, http://www.tampabaywatch.org
+
Chesapeake Bay "Bay Grasses in Classes", http://www.dnr.state.md.us/bay/sav/bgic/grass_class.html
+
Louisiana, http://lamer.lsu.edu/projects/coastalroots/index.htm

+
> Return to top
+ +

Shoreline Stabilization and Erosion Control

+
+ + + + + + + +
Figure 5
Figure 5. Aerial photo of constructed terraces in Little Vermilion Bay. Courtesy: U.S. Geological Survey (USGS).
+

Little Vermilion Bay Sediment Trapping Project
+
Vermilion Parish, Louisiana

+

Coastal land in Louisiana continues to be lost + at staggering rate of 25 to 35 square miles per year. In the northwest + corner of Little Vermilion Bay, wind and wave energy increases shoreline + erosion and prevents Gulf Intracoastal Waterway sediments from settling + and forming the basis for vegetated marsh. In the Little Vermilion Bay + Sediment Trapping Project, a series of 100-ft wide by 6-ft deep channels + were dredged. The dredged sediments were then used to construct 23 earthen + terraces with a combined length of 23,300 feet (Figure 5). The bases + of the terraces were planted with 20,450 containers of smooth cordgrass.

+

Innovative component: Earthen terraces are used to diminish + waves such that sediment deposition will increase and erosion will decrease. + Preliminary monitoring has shown that the terraces are growing in width, + facilitating marsh growth.

+

Contact: John.Foret@noaa.gov
+
Web link: http://www.lacoast.gov

+
+ + + + + + + +
Figure 6
Figure 6. Polyester geotextile tube used for shoreline stabilization and marsh creation. Courtesy: NOAA Photo Library.
+

The Barren Island Restoration Project
+
Chesapeake Bay, Maryland

+

Barren Island has been eroding dramatically, + threatening habitat loss and causing reduced protection for nearby seagrass + beds. The Barren Island Restoration Project used geotextile tubes filled + with sand dredged from the nearby ship channel to expand and stabilize + the island's shoreline. Tubes are constructed of high-strength polyester + or polypropylene fabric and filled hydraulically with dredge material + (Figure 6). Industry standards have recently been developed for geotextile + tube manufacturing and installation procedures. An 11-acre area behind + the tubes was filled with dredged material to restore intertidal elevations + and then planted with salt marsh vegetation. Volunteers hand-planted + the seedlings to restore the natural marsh community.

+

Innovative component: Use of geotextile tubes to control + erosion of marsh planted on dredge material behind geotextile tube.

+

Contact: rich.takacs@noaa.gov
+
Web link: http://www.ngs.noaa.gov/PROJECTS/Wetlands/Barren_Is/. + More information on geotextile tubes is available from the Geosynthetic + Research Institute Web page: http:// www.geosynthetic-institute.org, + link to GRI Specifications and Guides. See also article on Dredging + and Geotextile Tubes, available http://www.dredge.com/casestudies/tp_geot.htm.

+
+ + + + + + + + + + + +
Figure 7a
Figure 7b
Figure 7. Assenmbling Filtration Enhancement Devices (FEDS) (top) used to stabilize eroding salt marsh in New Hampshire (bottom). Courtesy: David Burdick, University of New Hampshire.
+

Salt Marsh Restoration using FEDS
+
Portsmouth, New Hampshire

+

In New England, a combination of waves and ice + contribute to erosion of the lower edges of created and natural salt + marshes. At created marshes in Portsmouth, New Hampshire, Filtration + Enhancement Devices (FEDS) are used to stimulate marsh development. + FEDS are organic, biodegradable baffles designed to enhance filtration, + reduce resuspension of sediments, and intercept erosional sediments + in order to stabilize edges of eroding salt marsh in low wave-energy + environments. They also stimulate plant and animal colonization. FEDS + are constructed of two layers of erosion control fabric rolled tightly + around hay or wrack and can be assembled quickly by volunteers (Figure + 7).

+

Innovative component: Use of Filtration Enhancement Devices + (FEDS) to stabilize edges of eroding salt marsh in low wave-energy environment.

+

Contact: dburdick@cisunix.unh.edu
+
Web link : http://ciceet.unh.edu/abstract.php?full_proj_id=17

+


 

+
> Return to top +
+ +

Mangrove Habitat

+

Mangrove ecosystems represent a crucial link between land and sea + in tropical and subtropical regions. Mangroves and their associated + waters provide valuable habitat and food for a wide range of fish, birds, + mammals, reptiles, and amphibians. They also stabilize sediments and + protect coastal uplands from flooding. Loss of mangrove from coastal + Florida, Louisiana, and Texas can be attributed in large part to urban + and industrial development in the coastal zone.

+
+ + + + + + + + + + +
Figure 8a
Figure 8b
Figure 8. Mangrove reestablishment at Cross Bayou, Florida. Courtesy: NOAA.
+

Cross Bayou Mangrove Restoration
+
Pinellas County, Florida

+

The primary goal of the 11-acre project was + to establish a typical Tampa Bay mangrove forest. Rather than immediately + planting mangroves, as many mangrove restoration projects do, project + planners first determined if the site had normal tidal hydrology and + an available seed bank from adjacent mangrove stands. With these two + factors present, mangrove habitat can self-repair within 15 to 30 years. + At the Cross Bayou site, wetland elevation was restored and tidal creeks + were constructed to allow for tidal flushing. Because a source of seeds + was available from nearby stands, mangrove is recolonizing the site + through natural processes, eliminating the need to plant (Figure 8). + Two years of monitoring has shown that the success criterion for mangrove + cover (30 percent) has been significantly exceeded.

+

Innovative component: Working with natural recovery processes + to reestablish mangrove habitat.

+

Contact: Robin Lewis, lesrrl3@aol.com
+
Web link : not available

+
> Return to top
+ +

Seagrass Habitat

+

Seagrass beds are an integral part of the estuarine and nearshore + environments. They provide food for a variety of important species as + well as providing a platform for growth of an assortment of algae and + small animals, indirectly providing a food source for many other organisms. + In addition, seagrass beds provide refuge for a wide variety of nearshore + fish and invertebrate species. They also help stabilize sediments and + protect coastlines from erosion. Seagrasses are susceptible to activities + that reduce light, such as construction projects that increase suspension + of silt and sand or shading from docks and other overwater structures. + Excessive nutrient inputs from sewage discharge or agriculture can lead + to dense accumulations of macroalgae (seaweeds), which can smother seagrass. + Acitivities such as dredging and boating can impact seagrass by disturbing + the sediment in which it grows.

+
+

Stockpiling and Planting

+
+ + + + + + + +
Figure 9
Figure 9. Eelgrass plants growing in flowing seawater tank for later + transplant. Courtesy: Battelle Marine Sciences Laboratory.
+

Clinton Ferry Terminal Eelgrass Transplant Project
+
Clinton, Washington

+

Eelgrass restoration was conducted as part of + the mitigation for terminal expansion in Clinton, Washington. Eelgrass + was salvaged from the area prior to construction. Planted in tanks (totaling + 1560 ft 2 ) at a laboratory, the population increased fivefold (Figure + 9), plants were then transplanted to areas near the site after construction + was complete. To date, over 19,000 ft 2 have been planted with cultivated + plants.

+

Innovative component: Salvaging the eelgrass from the site + enabled restoration to be conducted without impacting a healthy donor + bed.

+

Contact: amy.borde@pnl.gov
+
Web link: http://www.wsdot.wa.gov/ferries/your_wsf/
+ corporate_communications/clinton_enviro

+
+ + + + + + + +
Figure 10
Figure 10. Tying eelgrass shoots to TERFS frame prior to planting. Courtesy: Fred Short, University of New Hampshire.
+

New Bedford Harbor Eelgrass Transplant Project
+
New Bedford Harbor, Massachusetts

+

"Transplanting Eelgrass Remotely with Frame + Systems" (TERFS) was perfected during a project to restore eelgrass + in New Bedford Harbor. Eelgrass shoots are tied to the bottom of a weighted + frame with biodegradable paper ties (Figure 10). The frame is lowered + onto the seafloor from a small boat and retrieved three to five weeks + later once the shoots have rooted and the paper ties have decomposed. + TERFS create 0.25 square meter patches at fairly high shoot densities + of 200 per square meter. The reusable frames allow for community involvement + in their deployment, and they protect against bioturbation.

+

Innovative component: Because the TERFS method does not require + SCUBA, it drastically reduces the cost of eelgrass restoration.

+

Contact: fred.short@unh.edu
+
Web links: http://shrimp.ccfhrb.noaa.gov/lab/fonseca/guide/chap3.pdf and http://savebay.org/bayissues/grass_transplant_1.htm

+
+ + + + + + + +
Figure 11
Figure 11. Eelgrass seeds harvested from the field in Naragansett + Bay. Courtesy: University of Rhode Island.
+

Seed-based Eelgrass Restoration
+
Chesapeake Bay

+

For large-scale restoration projects, seed-based + eelgrass restoration is gaining more interest in some areas as a viable + alternative to transplanting. At multiple sites in Chesapeake Bay, recent + eelgrass restoration efforts have involved broadcasting seeds by hand + from a motorized boat. Seeds may be obtained by harvesting reproductive + shoots in the field in the spring or early summer. The shoots are held + in large tanks with flowing seawater at ambient temperature and salinity + until the seeds mature. The shoots are stirred daily in order to release + mature seeds. Within four to six weeks, the majority of seeds will have + been released (Figure 11). Seeds are then broadcast prior to the period + of germination.

+

Innovative component: Use of seeds for eelgrass restoration + provides an alternative to harvesting plants from donor beds for transplant, + a more labor intensive and expensive method.

+

Contact: jjorth@vims.edu. + More information on the collection and handling of seeds is available + in a publication by Granger and others, "A Practical Guide for the Use of Seeds in Eelgrass ( Zostera marina L.) Restoration", available + from the Rhode Island Sea Grant Communications Office, tel. (401) 874-6842.
+ Web link : http://www.vims.edu/bio/sav/restoration/

+
+ + + + + + + +
Figure 12
Figure 12. Mechanized underwater seed planter being used in Naragansett + Bay, Rhode Island for large-scale eelgrass restoration. Courtesy: Cooperative Institute for Coastal and Estuarine Technology.
+

Mechanized Underwater Seed Planter
+
Naragansett Bay, Rhode Island

+

A mechanized underwater seed planter is being + developed to plant large areas with eelgrass seeds efficiently. The + planter is towed behind a boat and consists of a sled, which travels + over the sea bottom, and a pump that pushes seeds into the sediment + (Figure 12). The seeds are mixed in a gel before planting to help prevent + them from being displaced by waves, currents, or predators. Project researchers + plan to publish a pamphlet that will detail the design, construction + and deployment of the mechanical seed planter.

+

Innovative component: Use of a mechanized seed planter to + plant large areas with eelgrass seeds, providing an efficient and cost-saving + method for eelgrass restoration.

+

Contact: kale.matso@unh.edu; snixon@gso.uri.edu
+
Web link: http://ciceet.unh.edu/bulletins/nixon.html

+
+

Use of Seagrass Wrack for Restoration
+
Galveston Bay, Texas

+

Approximately 2200 acres of seagrass (consisting + primarily of shoalgrass) has been eliminated from West Bay in the Galveston + Bay System. To determine if seagrass wrack could be used to + restore seagrass beds successfully, seagrass wrack was collected from water intake + screens at the Central Power and Light Plant in Corpus Christi, Texas. + Large amounts of seagrass material collect on the screens and must be + raked off and trucked offsite to a landfill. Wrack was collected in + the late fall, when feeding ducks and larger waves produce a greater + volume of more viable seagrass material. The wrack was then experimentally + broadcast from a boat into two 60-meter diameter enclosures. Wooden + stakes were placed within the enclosures to catch drifting seagrass + material to facilitate the establishment of new plants. After four years + of the initial broadcasting, over 40 acres of clovergrass and shoalgrass + beds have recovered.

+

Innovative component: Recycling seagrass to restore seagrass + beds.

+

Contact: john_Huffman@fws.gov
+
Web link: http://www.tbeptech.org/SeagrassProceedgs/e-OtherCoastalAreas/145huffman.pdf

+
> Return to top
+ + + + + + +

Fertilization and Protection

+
+ + + + + + + +
Figure 13
Figure 13. Sediment tube deployment into a propeller scar in the Florida + Keys. Courtesy: Kamille Hammerstrom, NOAA
+

Use of Sediment Tubes to Repair Damaged Seagrass + Beds
+
Florida Keys National Marine Sanctuary

+

Sediment-filled tubes constructed of biodegradable + fabric are placed into propeller scars to enhance seagrass recovery + in shallow beds (Figure 13). Propeller scars are caused by motorboats + traveling in waters shallower than the draft of the vessel, and are + one of the fastest growing causes of habitat degradation in Florida. + Filling the scar with tubes brings the sediment to the surrounding level, + which enables seagrass to send out runners and heal over the tube. The + tubes disintegrate with time. To date, the sediment tubes appear to + be a successful method for deploying fine sediment, which would otherwise quickly + get eroded away.

+

Innovative component: Biodegradable sediment tubes placed + in propeller scars to speed recovery time of damaged seagrass beds.

+

Contact: Kamille.Hammerstrom@noaa.gov
+
Web link: http://www.seagrass.net/

+
+ + + + + + + +
Figure 14
Figure 14. Bird roosting stakes provide natural fertilization to enhance + seagrass recovery. Courtesy: Kevin Kirsch, NOAA.
+

Use of Bird-Roosting Stakes to Enhance Recovery + of Seagrass Beds
+
South Florida

+

In South Florida, fast-growing seagrasses are + stimulated to grow in damaged seagrass beds by planting bundled bare + root shoalgrass plants among bird roosting stakes. The stakes are constructed + of 0.5-inch PVC poles fitted with a treated wood block on the top where + cormorants and terns can roost (Figure 14). While roosting, the birds + defecate into the water, providing a source of natural fertilization. + Once the damaged area has been stabilized by shoalgrass, the stakes + are removed to allow succession to turtlegrass, a slower growing climax + species. This is because shoal grass may out-compete turtlegrass + in a fertilized environment.

+

Innovative component: Bird roosting stakes provide a source + of natural fertilization to enhance recovery of damaged seagrass beds.

+

Contact: Jud.Kenworthy@noaa.gov
+
Web link: http://shrimp.ccfhrb.noaa.gov/~mfonseca/reports

+
> Return to top
+ + +

Habitat Enhancement

+
+ + + + + + + +
Figure 15
Figure 15. Middle Harbor Habitat Enhancement Design. Courtesy: Port of Oakland.
+

Middle Harbor Enhancement Program
+
Oakland, California

+

The Middle Harbor Enhancement Program will + use dredge material to restore a prior naval boat basin to shallow water + eelgrass habitat (Figure 15). The 190-acre Middle Harbor, dredged continuously + since the 1940s, is up to 40 feet deep at low tide, rendering it far + less productive than the well-lit shallows more typical of the bay. Hydrodynamic and bathymetric analyses + were used to determine areas with conditions most suitable for eelgrass + growth. These areas will be filled with clean, dredged sand to elevations + that allow sufficient light penetration for plant photosynthesis. Eelgrass + will be transplanted in separate planting plots to facilitate natural + seedling and vegetative expansion.

+

Innovative component: Use of dredge material to restore eelgrass + beds.

+

Contact: merkelinc@aol.com
+
Web link: http://www.portofoakland.com/environm/

+
> Return to top
+ +

Kelp Habitat

+

Kelp forests occur in cold, nutrient-rich waters and are among the + most biologically productive habitats in the marine environment. Giant + kelp and bull kelp are the key species in the kelp forests that stretch + from Alaska to California on the west coast. These "rainforests of the + sea" are critical to sustaining commercial and recreational fisheries. + An increase in sedimentation from urban runoff and toxins from sewage + discharge has degraded kelp habitat. Overfishing and hunting of many + of the natural predators of sea urchins has seemingly led to an increase + in many area sea urchin populations. Sea urchins are voracious consumers + of kelp.

+
+ + + + + + + + + + +
Figure 16a
Figure 16b
Figure 16. Growing juvenile kelp (top) to restore coastal California + Giant kelp forests (bottom). Courtesy: California Coastkeepers.
+

Southern California Regional Kelp Restoration Program
+
Southern California

+

Off the coast of Southern California, the kelp + forests have largely disappeared. This project uses an integrated approach + to restore subtidal kelp forests. Cultivated juvenile kelp, grown on + ceramic tiles in laboratory aquaria and in portable eco-Kart aquaria + placed in science classrooms, is outplanted when the kelp has reached + 1 to 2 inches (Figure 16) (see Community Involvement article for more information on classroom program). Sporophyll bags + containing adult reproductive tissue are also used to help "reseed" barren + reefs, enabling young transplants to become established. Also, during + routine maintenance dives on the restoration plots, sea urchins may + be relocated to minimize damage from grazing and drift kelp may be opportunistically + transplanted on site.

+

Innovative component: Using several restoration methods in + an integrated approach to ensure success of kelp restoration.

+

Contact: kelplab@cacoastkeeper.org
+
Web link: http://www.cacoastkeeper.org

+
+

Use of Artificial Kelp Plants to Reduce Grazers
+
Southern California

+

A new tool was developed to protect giant kelp + transplanted in urchin-dominated areas. Artificial (plastic) kelp plants + sweep the substrate and create a whiplash effect, effectively "herding" the + sea urchins away from the transplant area

+

Innovative component: Use of artificial plants to protect + kelp transplants

+

Citation (no URL available): Vasquez, J.A., and R.H. McPeak. + 1998. "A New Tool for Kelp Restoration." California Fish and Game. Volume 84, Number 4. Pages 149 to 158.

+
> Return to top
+ + +

Reef Habitats

+
+

Oyster Reefs

+

Oyster reefs are typically found in estuaries, sounds, bays and tidal + creeks and provide important ecosystem services. Because oysters are filter + feeders, the reefs contribute greatly to water quality through + their enormous filtering capacity. They also provide valuable shelter + and habitat for many other estuarine organisms and serve as natural + breakwaters to reduce bank erosion. Once historically abundant throughout + U.S. coastal waters, oyster reefs have declined significantly due to + such causes as over harvest, water pollution, and destruction by shell + mining and fishing gear.

+
+ + + + + + + + + + +
Figure 17a
Figure 17b
Figure 17. Newly placed oyster reef balls on the toe of a residential + seawall (left, Courtesy: Tampa BayWatch). An established oyster reef ball fully encased with oysters + (right, Courtesy: Reef Ball Development Group, Ltd.).
+

Seawall Oyster Reef Program
+
Tampa Bay, Florida

+

Much of the natural shoreline in Tampa Bay has + been lost to the construction of seawalls. The loss of shoreline as + well as poor water quality has impacted the bay's scallop and oyster + fisheries. Through their seawall oyster reef program, Tampa BayWatch + is promoting the reestablishment of oyster reefs and other littoral + benthic communities by constructing seawall reef units along + residential and public waterfronts. Reef balls, constructed in two sizes + from nontoxic concrete mixture, are cured for about 1 week and then + placed in front of seawalls (Figure 17). The program uses volunteers + from youth groups, fishing organizations, homeowners associations, and + others to construct and install the reef balls. Once established, it + is anticipated that the oyster communities will improve water quality, + as mature oysters have the capacity to filter up to one liter of water + per hour. They are also expected to provide storm protection and habitat + for many species of shellfish, finfish, and other organisms.

+

Innovative component: Use of pre-cast concrete balls to restore + oyster reef habitat.

+

Contact: info@tampabaywatch.org
+
Web link: http://www.tampabaywatch.org/

+
> Return to top
+ +

Coral Reefs

+

Coral reefs are among the world's oldest living communities of plants + and animals and rival rainforests in species diversity. These habitats + are undergoing a pronounced decline from various human activities, such + as ship groundings, fishing practices, and general carelessness by boaters, + divers and snorkelers. Coral reefs can take decades or more to recover + under ideal conditions, and even longer in areas where stressors, both + man-induced and natural, are present.

+
+ + + + + + + + + + +
Figure 18a
Figure 18b
Figure 18. Prefabricated reef modules (top) help to restore hard + bottom and coral reef habitat along the Florida coast (bottom). Courtesy: NOAA.
+

Gulf Stream Pipeline Mitigation and M/V Wellwood + Restoration Projects
+
Florida coast

+

Along the Florida coast, the Gulf Stream Pipeline + mitigation project and other reef damage projects, such as the grounding + of the M/V Wellwood, seek to restore hard bottom and coral reefs by + deploying large limestone boulders (2.5 to 4.5 feet diameter) and prefabricated + reef modules (Figure 18). The modules consist of a hollow concrete and + limestone dome atop a reinforced concrete slab. Steps are taken to maximize + limestone exposure and minimize concrete exposure to mimic the natural + aesthetics and relief of the reef. Each module weighs approximately + 3500 pounds. The domes are structured to provide habitat for a variety + of organisms and settlement areas for coral. The domes also contain + a center galley for fish refugia.

+

Innovative component: Use of prefabricated, limestone-covered + concrete modules to restore hardbottom and coral reefs.

+

Contact: wkjaap@worldnet.att.net, haroldhudson@noaa.gov
+
Web link: http://www.sanctuaries.nos.noaa.gov/special/wellwood/

+
> Return to top
+ +

Great Lakes Marsh Habitat

+

Coastal marshes of the Great Lakes are unique systems dominated by + large lake processes such as water level fluctuations, wave actions, + and wind tides. They store and cycle nutrients and + organic material into the aquatic food web and sustain a tremendous + number of diverse resident and migratory species. Pressures from shoreline + development have impacted the processes of sediment input and transport — processes + important to maintaining the bars and spits that shelter these highly-productive + marshes.

+
+ + + + + + + + + + +
Figure 19a
Figure 19b
Figure 19. Restoration of Metzger Marsh on western Lake Erie, before and after. Courtesy: USGS.
+

Metzger Marsh Restoration Project
+ Lake Erie, Ohio

+

Historical and geospatial data guided the restoration + of Metzger Marsh, a coastal wetland in western Lake Erie. The marsh, + a 300-hectare wetland in an embayment, once formed the mouth of a creek + that was channelized directly to the lake in the late 1800s. Also, + a barrier beach that protected the wetland from Lake Erie waves was + ultimately destroyed in 1973 by a combination of extremely high water + levels, storm events, and reduced sediment supply. This resulted in + a significant loss of wetland vegetation. Large-scale aerial photographs + were interpreted to delineate major vegetation types as well as the + historical boundaries of the barrier beach. A geographic information + system (GIS) was then used to digitize the data and calculate areas + of vegetation and barrier beach. Paleoecological studies were also employed + to identify historical vegetation species. Based on these studies, the + restoration program was designed to return the embayment to a fully + functional, vegetated coastal marsh with hydrologic connection to the + lake, similar to the original wetland (Figure 19). A dike was constructed + to mimic the functions of the barrier beach and included a water-control + structure to allow hydrologic connection to the lake. The water-control + structure contains five 2-m wide channels that can be manipulated individually. + It also contains an experimental fish-control system that restricts + passage of large carp while allowing other fish to pass through. Each + passageway contains fish baskets that can be lifted out to capture, + count, and measure fish.

+

Innovative component: Use of historical, geospatial, and + paleoecological data to guide marsh restoration in the Great Lakes.

+

Contact: Douglas_Wilcox@usgs.gov
+
Web link: http://www.glsc.usgs.gov/science/wetlands/Metzger.htm

+
> Return to top
+
+ +

Summary

+

The projects featured above are but a small selection of the many + new and innovative restoration activities occurring around the nation. + We are fortunate that a more recent trend to monitor and + manage adaptively our restoration efforts affords the opportunity for applied research — enhancing + our understanding and ability to effectively restore our coastal systems + (see also Innovative Research Article). The results of these projects will provide much-needed guidance for + restoration efforts of the future.

+

Additional information and citations are available in:

+

Borde, A.B., and others. + 2003. National Review of Successful and Innovative Restoration Projects. Prepared + for NOAA Coastal Services Center, by Battelle Marine Sciences Laboratory. + Sequim, WA.
+ > Return to top

+

Glossary

+

bathymetric — pertaining to the measurement of ocean + or lake depth and the study of floor topograph.

+

benthic — pertaining to the sea bed, river bed or + lake floor.

+

bioturbation — the mixing of a sediment by the burrowing, + feeding, or other activity by living organisms.

+

breaching — the practice of creating a gap (e.g. + culvert) in a dike or levee to restore tidal flow.

+

climax species — a species that is characteristic + of a more or less stable biotic community which is in equilibrium with + existing environmental conditions and which represents the terminal + stage of an ecological succession.

+

filter feeders — organisms that feed by straining + particles from the water column.

+

hydrodynamic — pertaining to the + action of water, waves, or tides.

+

mesocosm — an intermediate sized-community that + is taken as representative of a much larger ecological system.

+

littoral — pertaining to the intertidal zone of + the seashore.

+

refugia — areas in which prey may escape from or + avoid a predator.

+ +

wind tides — or seiches, are lakewide, short-term + displacements of water that are wind-induced. Water depth can increase + along a shoreline when water is pushed up by winds. Once the wind is + reduced, the water mass continues to oscillate, much like the water + in a bathtub that sloshes back and forth.
> Return to top

+
+
+ +
+ + + Planning + Implementation + Performance Assessment + Adaptive Management + Dissemination of Results + Community Involvement + Economics + + + Community Involvement + + + diff --git a/office/regression/000_000210.html b/office/regression/000_000210.html new file mode 100644 index 0000000..820e355 --- /dev/null +++ b/office/regression/000_000210.html @@ -0,0 +1,228 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + +
+ You are here: FORT > Products > GIS > GISID: 8 > ThemeNo: 54 +
+ + + + + +
+ + +

Vegetation

+ + + + + + +
+
+
+ +

This data set consists of vegetation types in 4 tidal marsh sites within the San Francisco Bay area, California: Dumbarton, Faber Laumister, Greco Island, and Mowry Marsh. Vegetation types were interpreted from 30 1:4,800-scale color infrared (CIR) photo transparencies flown in September 1994. Ten vegetation type classes were interpreted: Levee (bare), levee (vegetated), wrack material, mudflat (bare), tidal slough (bare), marshplain (bare), gumplant spp., mixed spp., 100% cordgrass, and 100% pickleweed. [Polygonal Data]

+ + + + +
+
+ + + + + + +
+

+ File Availability +

+
+

+  Shape: + + sfbayveg.exe + +

+

+  Arc: + + sfbayveg_c.exe + +

+

+  Raster: + + None Available + +

+
+ + Map of San Francisco Bay +
+ +
+
+
+
+ + + +
+
+ +

 

+ +
+
+ + +
+
+
+ + +
+ + + + + + + + Skip navigation and continue to the page title + +

+ Accessibility + FOIA + Privacy + Policies and Notices

+ +

+ Take Pride in America home page. + FirstGov button + U.S. Department of the Interior | U.S. Geological Survey
+ URL: http://www.fort.usgs.gov/Products/GIS/GIS_theme.asp
+ Page Contact Information: AskFORT@usgs.gov
+ Page Last Modified: 6:13:34 PM +

+
+ + + + diff --git a/office/regression/000_000211.html b/office/regression/000_000211.html new file mode 100644 index 0000000..f67d9ba --- /dev/null +++ b/office/regression/000_000211.html @@ -0,0 +1,94 @@ + + + +Media Background + + + + + + +
+ +
+
+ + + + + + + + + + + + + + + + + +
+
+
External Affairs  title bar
Alaska Issues In-Depth title
+
+

U.S. Fish and Wildlife Service Response to + Vessel Grounding/Oil Spill off Unalaska Island

+

February 25, 2005: After lightering operations on the M/V Selendang + Ayu wreck were concluded on February 11, 2005, the response effort + moved into a winter operations phase. Fisheries water quality sampling + and seafood inspections are ongoing during this period, but clean + up activities were curtailed and monitoring limited to two flights + per week weather permitting. Assessment activities will resume on + April 4 and full scale clean up activities on April 15.

+

The initial response effort resulted in the collection of approximately + 38,000 bags of oily solid waste consisting of vegetation, wrack, sand/gravel, + and driftwood; 1,608 bird carcasses; 5 otter carcasses; and a total + of 144,931 gallons of oil, diesel and oil/water mixture. The bow of + the Selendang Ayu is now completely submerged and the Unified + Command estimates that 321,052 gallons of IFO and an unknown amount + of marine diesel fuel were released into the environment.

+

Beginning in April, Service personnel will head back out to Unalaska + to participate on Shoreline Cleanup Assessment Teams (SCAT), assigned + to assess the post-winter oiling shoreline conditions. Service biologists + will conduct wildlife reconnaissance, including observations of breeding + birds in the shoreline zone, oiled wildlife sightings, and presence + of oiled carcasses. Wildlife search and recovery teams may be activated + based on SCAT team observations. Service representatives will also + coordinate wildlife needs with SCAT activities and cleanup operations. +

+

+
+
+

Adobe + Reader
+ + +

+
+
+ + US Dept of Interior Logo (link to http://www.doi.gov) + US Fish & Wildlife Logo (link to http://www.fws.gov) + + + Back to External Affairs home + Back to top button + + + diff --git a/office/regression/000_000212.html b/office/regression/000_000212.html new file mode 100644 index 0000000..062d6b0 --- /dev/null +++ b/office/regression/000_000212.html @@ -0,0 +1,68 @@ + + +Marsh Characteristics + + + +
+ +Marsh Characteristics + + +
+ + +Click on any photograph on this page to view a large version. + +
+ +

+ +Click for 225k large version +In an otherwise flooded embayment, sabal palm (Sabal palmetto) and red +cedar (Juniperus siliciocola) form a a hammock on a rocky limestone +outcrop near Yankeetown, Florida. +


+ + +Click for 262k large version +A coastal band of wetlands is a mosaic of marsh and hammock vegetation +strongly influenced by the porous limestone bedrock. Hammocks have little +tolerance for salt and grow where the limestone elevation is high. The +marsh grows between the high and low tide lines where the limestone is +low enough to be coated by a veneer of mud. +


+ + +Click for 244k large version +Hammocks of sabal palm and red cedar thrive on limestone high areas scattered +throughout the wide marsh plain. +


+ + +Click for 303k large version +Wrack, a thick layer of marsh debris, is depostited against the tree line +following a major storm. Although resilient to storm events, the marsh +coast is sensitive to significant and long-term changes. +
+

+ +

+ +
+ +

+ + + +Return to Title Page + + + + + +Return to Wetlands Page

+ +
+ + diff --git a/office/regression/000_000213.html b/office/regression/000_000213.html new file mode 100644 index 0000000..609752b --- /dev/null +++ b/office/regression/000_000213.html @@ -0,0 +1,143 @@ + + +U.S. HOUSE OF REPRESENTATIVES +SUB-COMMITTEE ON THE CONSTITUTION HEARINGS +"RELIGIOUS EQUALITY AMENDMENTS" - JUNE 10, 1995 +WRITTEN STATEMENT BY RAY GINGERICH + + + +

U.S. HOUSE OF REPRESENTATIVES +SUB-COMMITTEE ON THE CONSTITUTION HEARINGS
+"RELIGIOUS EQUALITY AMENDMENTS"
+JUNE 10, 1995

+ +WRITTEN STATEMENT BY RAY GINGERICH
+

+I have been asked to testify to this body as a representative +of the Mennonite Church (specifically those Mennonite bodies +represented by the Mennonite Central Committee).[1] But as with +most other religious groups, it is not easy for Mennonites to +address issues of controversy with one voice. I have +therefore attempted to shape my testimony around critical +points of Mennonite heritage and identity held in common by +the Mennonite peoples.

+ + The heritage of the Mennonites that emerged out of the +sixteenth-century Reformation is that of a persecuted minority +people-tortured on the wrack, drowned in the rivers, burned at +the stake, driven out of the land-oppression legitimized in +the name of God and the Christian church, legalized by the +civilized states of Western Europe. Our Mennonite foreparents +came to this continent for land, for liberty, and for space to +practice love toward the neighbor. Mennonites today continue +to be one of the many religious minorities of this beloved +country, the United States of America. It is therefore +understandable that Mennonites cannot now maintain integrity +by aligning themselves with the majority religious position of +those controlling the legal instruments of the state when the +design of the majority position will quite clearly weaken the +voice of the minorities. Thus, in finding ourselves in +opposition to the proposed "Religious Equality' Constitutional +Amendment, we defend our current interests. But we do so +speaking out of our deep social, political, and theological +roots.

+ To pass an amendment would lower the safeguards of +religion from intrusion by the state and would allow greater +freedom (and added economic support) under the protective +umbrella of the state for those holding to the majority +religion. This added freedom to practice religion in public schools and other public places- +whether on a national or local level-would de facto be freedom +for the majority while de facto denying this freedom to most +minority religious groups not in power. This, as seen from +the perspective of the Mennonite heritage, is not a move +toward democracy but toward majority rule and majority +religion, not a nudge toward greater freedom and a deeper +national spirituality but a shift toward the potential for +religious tyranny.

+ + Secondly, in the tradition of toleration and the search +for the dignity of the socially marginated, we wish also to +assist in the protection of religious freedom for other +minorities. Mennonites are a people of the Book in the great +stream of the Judeo-Christian tradition whose master teaches +us to do unto others as we would have them do to us. We do +not want other minorities, whatever their beliefs and +religious understandings may be, to be subjected to +denunciations of their religious beliefs in public schools or +other public places or to face proselytizing through prayers +or other religious activities in our public institutions. +Such activities would most likely be sponsored and implemented +by those of the majority religion operating our public schools +and by government officials. But once the current +constitutional protections from religion-by-the-state would be +removed, public schools could become targeted arenas for small +but zealous political-religious groups to promulgate ideas and +behavior destructive to public interest and order.

+ + Third, Mennonites are a people of community-a people who +hold their daily acts and lifestyle to be expressions of their +faith as significant as their words and the creedal +statements. We hold the home and church to be the +institutions of primary responsibility to inculcate and model +religious values, practices and behavior, not the public +schools.

+ + Praying is a symbolic act in which the people and the +symbols surrounding us in prayer -are as important as the +words of the prayer itself. Mennonites would prefer to have +their progeny associate the Lord's Prayer with a community of +faith gathered before the cross symbolizing the servanthood of +Jesus and the self-giving love of God. To associate the +Christian faith with the nation's flag in a public school (or +elsewhere)-as the proponents of the proposed "Religious +Equality Amendment" are prone to do-is, within the theological +tradition of the Mennonites, seen as an idolatrous form of +civil religion. Such religion, when practiced on a regular +basis in our public schools, inextricably confuses the +Christian faith with American nationalism in the developing +child's psyche (and even in that of the practicing adult).

+ + Fourth, Mennonites are one of several denominations in +the United States who together are known as the "historic +peace churches." We claim a tradition in which the values and +the underlying assumptions of the community of faith are +distinct from those of the nation-state-at times even in +opposition. We believe that in "living out' our faith there +are times when the Christian commitment to a nonviolent Christ +conflicts with the claims of sovereignty made by a nation- +state that has largely rejected the path of nonviolence. We +believe that violence destroys justice and perpetuates greater +violence.

+ + We fear that our beloved nation is rapidly becoming a +demonstration to the world of a society created by violence, +driven by violence,destroyed by violence-the violence of +economic greed, the politics of deceit and misinformation. +All of this is happening while mainstream religion in America- +the religion of those groups most ardently lobbying for prayer +in schools and for placing restrictions on the First +Amendment-provides no critique of the fiandamental malady of +the nation-institutional, religiously sanctioned violence.

+ + Under these circumstances, we cannot and dare not in the +name of God, or evangelical faith, or "family values," or a +renewing of national spirituality, pursue the goals of our +faith by sanctioning prayer in public schools (or in other +ways enabling the state to become more involved in religion) +and thus allowing this to become yet another layer of +religious deception sanctioning American violence. + +[1] The current statement is an individual member's attempt +to be representative of the Mennonite Church. It should not +be viewed as a statement by the church. Mennonites are a +congregationally-oriented people-church. Statements of belief +and policy must not merely represent a broad spectrum of the +congregations, but must be officially adopted by the +congregations'delegates before they should be recognized as +statements by the Mennonite Church. + +

Judiciary +Homepage
+ + \ No newline at end of file diff --git a/office/regression/000_000214.html b/office/regression/000_000214.html new file mode 100644 index 0000000..6e3d75a --- /dev/null +++ b/office/regression/000_000214.html @@ -0,0 +1,908 @@ + + + + + + + + + + + + + + + + + + + + + + + ITIS Standard Report Page: Zannichellia + + + + + + + + + + + + + + + + + + + + + + + + + + + +
The ITIS LogoThe Report banner for the ITIS Data pages
+
+ + + + + + + + +Send us your comments +ITIS Data Access Main Menu +ITIS Data Development History and Quality Indicators +Return to the ITIS Home Page +Link to Submit Data to ITIS Menu +Link to ITIS Tools + + + + + + + + + + +
Go + to Print Version
+ + +
 Taxonomy and + Nomenclature + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    
 Kingdom:Plantae 
 Taxonomic Rank:Genus 
 Synonym(s):  
 Common Name(s):horned pondweed
+
 
  pondweed
+
 
    
  +Taxonomic Status: + + +   
 Current +Standing:accepted + + + + + + +  
    
  +Data Quality Indicators: + + +   
 Record + Credibility Rating: + verified - standards met + +  
 Global Species Completeness:unknown   
 Latest Record Review:1999   
    

+ + + + + + + + +
 Taxonomic + Hierarchy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    
 KingdomPlantae  + -- Planta, plantes, plants, Vegetal 
    SubkingdomTracheobionta  + -- vascular plants 
       DivisionMagnoliophyta  + -- angiospermes, angiosperms, flowering plants, phanrogames, plantes fleurs, plantes fruits 
          ClassLiliopsida  + -- monocotyldones, monocotyledons 
             SubclassAlismatidae  + 
                OrderNajadales  + 
                   FamilyZannichelliaceae  + -- grass wrack 
                      GenusZannichellia L. -- horned pondweed, pondweed 
  Direct Children: 
                         Species +Zannichellia palustris L. + -- horned pondweed, horned poolmat, horned-pondweed 
    

+ + + + + + + + + +
 References + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    
 Expert(s):  
 Expert: +John Kartesz + 
 Notes:Biota of North America Project (BONAP), University of North Carolina  
 Reference for:Zannichellia  
    
 Other + Source(s):  
 Source: +NODC Taxonomic Code, database (version 8.0) + 
 Acquired:1996  
 Notes:  
 Reference for:Zannichellia  
    
 Source: +The PLANTS Database, database (version 4.0.4) + 
 Acquired:1996  
 Notes:National Plant Data Center, NRCS, USDA. Baton Rouge, LA 70874-4490 USA. http://plants.usda.gov  
 Reference for:Zannichellia  
    
 Source: +The PLANTS Database, database (version 5.1.1) + 
 Acquired:2000  
 Notes:National Plant Data Center, NRCS, USDA. Baton Rouge, LA 70874-4490 USA. http://plants.usda.gov  
 Reference for:Zannichellia  
    
 Publication(s):  
 Author(s)/Editor(s):  
 Publication Date:  
 Article/Chapter Title:  
 Journal/Book Name, Vol. No.:  
 Page(s):  
 Publisher:  
 Publication Place:  
 ISBN/ISSN:  
 Notes:  
 Reference for:  
    

+ + + + + + + + + + + +
 Geographic Information + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    
 Geographic + Division:  
    
 Jurisdiction/Origin:  
 

 

  

+ + + + + + + + + +
 Comments + + + + + + + + + + + + + + + + + + +
    
 Comment:  
 

 

   + + +
+ + + + + + + + + + + + + +
+ + + + + + + + +
 Other Off-Site Resources + +    This is a new feature of ITIS + + + + + + + + + + + + + + + + + + + + +
    
  +

Additional off-site resources may be available for this taxon. + ITIS will build search links for all of the following that return results:

+
    +
  • Global Biodiversity Information Facility (GBIF) Data Portal
  • +
  • BioOne Journals
  • +
  • National Center for Biotechnology Information (NCBI) Entrez Life Sciences Search
  • +
  • Google Images
  • +
  • The National Biological Information Infrastructure (NBII)
  • +
  • Convention on International Trade in Endangered Species (CITES) of Wild Fauna and Flora Search
  • +
  • United Nations Environment Programme (UNEP) World Conservation Monitoring Centre (WCMC) Search
  • +
  • Threatened and Endangered Species (TESS) Search
  • +
  • U.S. Fish and Wildlife Service (FWS) Search
  • +
  • Ocean Biogeographic Information System (OBIS) Search
  • +
  • USDA PLANTS Database Search
  • +
  • NatureServe Explorer Search
  • +
+

Please be patient. The time it takes to return results depends + on the speed of the individual sites and may take several minutes.

+
+
 
  +
+ +
+
   +
+
+ + + + +
+ + + + + + + + + + + +
+ A gray graphic bar
Search on: + +  Any Name or TSN + +  Common Name + +  Scientific Name + +  TSN
+ + + + + +
In: +  Kingdom +   + +   + + +
+ + + + +
+ + +
+ + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
A gray bar +
Date Generated:  
+ + + + +Thu Feb 5 2009 06:13:38 MST + +
+ + + + diff --git a/office/regression/000_000215.html b/office/regression/000_000215.html new file mode 100644 index 0000000..99d6e3e --- /dev/null +++ b/office/regression/000_000215.html @@ -0,0 +1,202 @@ + + + +MBNMS Ecosystem Observations 2002: Beach Systems + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + +
+

Cover
+ & + Introduction

+

Sanctuary Program
+ Accomplishments

+

Beach Systems

+

Rocky Intertidal
+ & Subtidal Systems

+

Open Ocean
+ & Deep Water
+ Systems

+

The Physical
+ Environment

+

Wetlands
+ & Watersheds

+

Endangered
+ & Threatened
+ Species

+

Marine Mammals

+

Bird Populations

+

Harvested
+ Species

+

Exotic Species

+

Human
+ Interactions

+

Site Profile

+

Credits

+
+
  + + + + + + + + + + + + + +
+ +
+ + + + + + +
+

 

+

A Visit from Velella Velella

+ + + + + + + +
velella velella
Last spring persistent southwesterly winds pushed Velella velella onto Sanctuary beaches. photo Kelly Newton for NOAA/MBNMS
+

During April and May of 2002 sanctuary beaches were bombarded with millions of by-the-wind sailors (Velella velella). The sanctuary office as well as the California Department of Fish and Game received several calls reporting oil slicks off the coast of Big Sur. These reported slicks turned out to be thousands of these iridescent Velella floating at the surface.

+

Velella are bright blue pelagic colonial hydrozoans (a type of cnidarian) distributed worldwide in temperate and tropical seas. They float at the surface, mouth down due to their gas-filled bodies, and travel using a transparent sail that is formed by a chitinous exoskeleton. The sail is angled at 45 degrees to the right or left of the main body axis, allowing the animal to drift at a 45-degree angle to the wind direction, hence the name ‘by-the-wind sailor.’

+

Velella are normally found in the central water masses of the Pacific Ocean, where the prevailing northwesterly winds hold the population offshore of California. Last spring persistent southwesterly winds pushed the Velella onto sanctuary beaches from Cambria to north of San Francisco. All sizes of Velella, ranging from one to eight centimeters in length, were found. Several weeks after the initial strandings, all that remained of the Velella were clear chitinous exoskeletons.

+

While at sea, these animals feed upon fish eggs, crustacean larvae, and other zooplankton. Velella also contain single-celled symbiotic algae (zooxanthellae) in their tissues. It is thought that they may gain some nourishment from the photosynthetic activity of these algae. Pelagic gastropods, along with the ocean sunfish (Mola mola), feed on Velella.

+

The life cycle of Velella includes both asexual and sexual stages. This type of reproduction is known as alternation of generations. The asexual stage, or polyp, is the bright blue animal that washed ashore in 2002. The asexual polyp is made up of two different types of polyp: the central feeding polyp, or mouth, and smaller polyps surrounding the mouth that are both reproductive and used for feeding. From these smaller polyps small medusae bud off. Each medusa is either male or female, representing the sexual stage of Velella. These medusae sink to depths of 600 to 1,000 meters, where eggs and sperm are then released. A planula larva is formed that develops into the next larval stage, or conaria. This very small asexual polyp secretes an oil droplet, causing it to float back up to the surface where it will develop into the larger animal with sail.

+

In general, the Velella population spends three to four months on the surface in the spring, two to three months at depth, and then three to four months in the late summer on the surface before sinking to depth for two to three months in the fall. The Velella on the surface are larger in the spring than in the late summer. The late summer Velella rarely wash ashore, due to the prevailing northwesterly winds.

+

Velella wash ashore every few years. It has been several years since the last time they were cast upon sanctuary beaches, and it is likely that it will be several more before they return again.

+

Kelly Newton
+ Monterey Bay National Marine Sanctuary

+
+

Status of the Western Snowy Plover in the Monterey Bay Region

+

The next time you go for a walk on a sandy beach, keep your eyes open for what appears, at first glance, to be a drift of small snowballs. These diminutive fluffballs are actually roosting flocks of Western Snowy Plovers (Charadrius alexandrinus), small shorebirds that nest and winter on the sandy beaches of Monterey Bay.

+ + + + + + + +
snowy plover and chick
Western Snowy Plover male and chick photo Greg Smith
+

In the Monterey Bay region during spring and summer, Western Snowy Plovers nest and raise their chicks along the shoreline from Sunset State Beach south to Marina, at saline flats within the Moss Landing Wildlife Area, and at several small pocket beaches in northern Santa Cruz County. In winter large roosting flocks congregate at these locations, often near river mouths.

+

In 2002 Western Snowy Plovers nesting locally fledged more than 210 chicks – the second greatest number ever documented in the Monterey Bay region. The number of chicks fledged per breeding male was 1.4, well over the estimated 1.0 chicks per male necessary to stabilize the population. In 1997 and 1998 La Niña conditions over winter resulted in high adult mortality, but the high level of fledging success of the past three years has nonetheless resulted in a measurable increase in the size of the local breeding population (see Figure 1, opposite).

+

Despite these increases, the range of the plover in Monterey Bay has contracted, and nesting success at historic sites on the fringes has declined. As recently as five years ago, Western Snowy Plovers occupied nesting sites as far south as Monterey State Beach in southern Monterey Bay.

+

In 2002, however, the southernmost nesting attempt documented was north of Reservation Road in Marina. Prospecting pairs were observed at Marina State Beach and at Sand City, but nesting was not confirmed at these locations. Similarly, although 2002 was a banner year for plovers nesting at Sunset State Beach, it was the first time this site had been occupied in three years.

+

The success of plovers attempting to nest at pocket beaches in northern Santa Cruz County gradually has decreased. (Pocket beaches are small and bound at each end by a physical barrier that chicks cannot cross, so adults are unable to move their chicks large distances away from disturbances such as humans or predators.) At these beaches only 60 percent of fifteen nests hatched successfully, and only two fledglings were produced, in 2002. In response to their lack of success at their traditional nesting beaches, some pocket beach nesters have defected to the beaches of central Monterey Bay for their second nesting attempt.

+ + + + + + + +
snowy plover nesting graph
Figure 1. Number of Western Snowy Plovers nesting in Monterey Bay and northern Santa Cruz County
+

What are the factors that influence Western Snowy Plovers’ reproductive success? These shorebirds require relatively undisturbed areas to nest and rear chicks. They lay a clutch of three sand-colored eggs directly on the bare sand on the middle to upper beach area, above the wrack line but below the heavily vegetated dune. Because plovers must incubate the clutch around the clock for twenty-eight days, any disturbance that prevents the bird on duty from returning to the nest jeopardizes the survival of the eggs. Nests are also susceptible to trampling from humans, dogs, horses, and vehicles.

+

Plover chicks are precocial (active from birth), leaving the nest within hours of hatching, but they remain flightless for about one month. The male plover usually rears the brood alone. He protects them from danger, broods them until they can thermoregulate, and leads them to foraging areas. The birds feed primarily on small invertebrates associated with beach wrack, and chicks often make treacherous daily trips down to the wet wrack line, where they are susceptible to predators, trampling, and separation from the male parent. Because young chicks must be brooded regularly by the male to stay warm during the chilly Monterey Bay summers, prolonged separation can mean death for the chicks.

+

Urbanization, degradation and loss of coastal habitat, and the effects of introduced predators and invasive vegetation led to the listing of the Pacific Coast population of the Western Snowy Plover as threatened by the U.S. Fish and Wildlife Service in 1993. Currently, an estimated 1,200 to 1,500 Western Snowy Plovers compose the Pacific Coast population, which ranges from southern Washington south to Baja. Ten years after the plover’s listing, the same factors continue to affect the breeding success of these birds locally and throughout their range. Around Monterey Bay, recreational use of beaches continues to grow, causing an increase in human-related disturbance to nesting plovers. Habitat fragmentation and urbanization have enhanced the accessibility of beach habitat to non-native predators such as the red fox (Vulpes vulpes regalis) and invasive predators such as the Common Raven (Corvus corax) and American Crow (Corvus brachyrhynchos). Red foxes have been actively controlled since 1993 but are still present on beaches at the start of each nesting year. In 2002 ravens depredated twelve nests at the Pajaro River mouth – the first documented nest losses in the central Monterey Bay region attributed to this increasingly abundant predator.

+

The future of the Western Snowy Plover depends on several factors. As plovers are increasingly concentrated into smaller habitat areas, we have an obligation to protect them in their remaining habitat from the effects of our activities. This will mean active management of non-native and invasive predators, restoration of habitat, and a basic willingness on our part to share beaches and coastal areas with species that depend on these areas for basic life functions.

+

Kriss Neuman
+ Point Reyes Bird Observatory

+
+
+
   
+ + + + + + + + + + + + + + + + + + +
+ +
+
+
+
For Website comments/questions, contact the MBNMS Webmaster.
+ For programmatic comments/question, contact the appropriate MBNMS Staff
+
+ + + + + + +
MBNMS Privacy Policy +
This page last modified on: + 12.27.04
+
+
+
+
+
+
+
+
URL: http://montereybay.noaa.gov/reports/2002/eco/beach.html
+
+
+ + + diff --git a/office/regression/000_000216.html b/office/regression/000_000216.html new file mode 100644 index 0000000..503fae4 --- /dev/null +++ b/office/regression/000_000216.html @@ -0,0 +1,518 @@ + + + + +Sea Grant Communicators Facebook :Sea Grant: National Oceanic and Atmospheric Administration + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +

Sea Grant Communicators Facebook

+ + Facebook Main | Pacific | Great + Lakes | Northeast | Mid-Atlantic | Southeast/Gulf/Caribbean + +

Northeast Region

+ CT | MA [MIT, + Woods Hole] | ME | NH + | NY | RI + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Sea Grant Communicator in CT
+ (click + image for hi-res)
+
+
+
+ + Connecticut Sea Grant
+ Margaret (Peg) Van Patten
+ Communications Director

+ + Peg joined Connecticut Sea Grant as communications coordinator in 1987. She received a B.S. in environmental sciences from Connecticut College, and an M.S. in oceanography from the University of Connecticut. Before joining Sea Grant, she was editorial assistant for the Connecticut College Alumni Magazine, and she has done freelance writing for newspapers and magazines. Peg is editor and designer of Wrack Lines, Connecticut Sea Grant's magazine, and webmaster for the program. Knowledgeable about seaweeds, Peg is author of Seaweeds of Long Island Sound.
+ + +
+ + Sea Grant Communicator in MIT
+ (click + image for hi-res)
+
+
+
+ Massachusetts + Institute of Technology Sea Grant
+ Andrea Cohen
+ Communications Manager

+ Andrea joined MIT Sea Grant as an editor in 1992. She has been the + communications manager there since 1996. She holds a B.A. in English + and French literature from Tufts University and an M.F.A. from the + University of Iowa Writers' Workshop.
+

+ +
+ + vacant + +
+
+
+
+ Woods + Hole Oceanographic Institution Sea Grant
+ Position Vacant at this time.
+

+ +
+
+ + Sea Grant Communicator in ME
+ (click + image for hi-res)
+
+
+
Maine + Sea Grant
+ Susan White
+ Communications Coordinator

+ Susan is the associate director for outreach and communications + coordinator for Maine Sea Grant (MSG), where she has worked for + the past 19 years. She received a B.A. in psychology (with a minor + in art and French) from Earlham College in Richmond, Indiana, and, + more recently, was involved in a graduate program in science communications/ + marine biology at Northeastern University in Boston. Prior to her + tenure at Sea Grant, Susan worked as a video/ multi-image producer + in Portland, Maine, and taught language arts, drama, and art at + an alternative school in Freeport. While at MSG, Susan has written + and edited several books, including A Lobster in Every Pot: Recipes + and Lore, A Field Guide to Economically Important Seaweeds of Northern + New England, A Guide to Common Marine Organisms Along the Coast + of Maine, and Between the Tides: Marine Plants and Animals of the + Northeast. She co-produced the Sea & Shore radio spot series, + which aired for several years on Maine Public Radio, and has produced + many educational videos that have been shown at workshops throughout + the state, as well as on public and commercial television stations.
+
+ + Sea Grant Communicator in NH
+ (click + image for hi-res)
+
+
+
+ New + Hampshire Sea Grant
+ Steve Adams
+ Communications Coordinator

+ + Steve joined New Hampshire Sea Grant (NHSG) as communications coordinator in 1988. He received a B.A. in journalism and photography from the Univeristy of New Hampshire (UNH) and an M.S. in journalism from Ohio University. Before joining NHSG, he spent 10 years producing medical publications for Dartmouth Medical School. Since 1998, he and his colleagues in communications at Woods Hole Sea Grant have developed and maintained the national Sea Grant Web site that provides students with information on career opportunities in the marine sciences, www.marinecareers.net. In addition to his Sea Grant communications duties, he serves UNH as a member of the Alumni Publications Advisory Committee and the State of New Hampshire as a member of the New Hampshire Estuaries Project Public Outreach and Education Team. Steve's professional interests include the Internet, special publications, and communications research and history. His personal interests include just about anything that can be done outdoors, especially golf, hiking, bicycling, cross-country skiing, motorcycling, and exploring.
+ + +
Sea Grant Communicator in NY
+ (click + image for hi-res)
+
+
+
+ New + York Sea Grant
+ Barbara Branca
+ Communications Coordinator

+ + Barbara Branca joined New York Sea Grant as communicator in late 1997. She + received a B.S. in biology and an M.S. in biology education from the University at Albany (SUNY), + with graduate field work in the Adirondacks and Lake George under the tutelage of Don McNaught who + later became Minnesota Sea Grant director. After college, she spent five years teaching biology and + earth science in upstate New York and at Johnson State College in Vermont. Before joining Sea Grant, + she was the science editor for numerous educational publishers in Manhattan and author of several + texts. Since 1998, she and colleague Paul Focazio have published Coastlines, New York Sea Grant's + newsmagazine. Barbara served as Great Lakes Communications chair in 2000 and chair of the national + network in 2002 when she helped develop a strategy to evaluate the national communications projects. + Along with her NY and Connecticut colleagues, she was part of the award-winning outreach team that + educated the public about the cause of lobster mortalities in Long Island Sound. In addition to her + Sea Grant communications duties, she is part of the NYSG education and estuary working groups and a + member of both the Stony Brook University PR team and the Fair Media Council. Outside of work, her + passion is music, whether scatting with the Stony Brook Jazz Band, jamming with bluesman Sam Taylor, + singing in the chorus of the Stony Brook Opera Company or composing original sambas performed with + the Sound Symphony orchestra.
+ + + +
+ + Sea Grant Communicator in RI
+ (click + image for hi-res)
+
+
+
+ Rhode + Island Sea Grant
+ Malia Schwartz-Cromarty
+ Communications Leader

+ Malia joined Rhode Island Sea Grant (RISG) in + 1989 and became communications leader in 1995. She holds degrees in + zoology from Arizona State University (B.S.) and the University of + Rhode Island (M.S.), and a Ph.D. in Biological Sciences from the University + of Rhode Island (URI). Her professional interests center on translating + science into products that are understandable and useful for the public + and decision-makers. The award-winning Guide to Marine Mammals + & Turtles of the U.S. Atlantic & Gulf of Mexico, which + she co-authored with Alaska Sea Grant’s Kate Wynne, is an example + of that effort. Malia is the managing editor for 41°N: A Publication + of Rhode Island Sea Grant and the URI Coastal Institute, which + highlights research and outreach activities of the two programs as + they pertain to issues affecting the people of Rhode Island and southern + New England. She has written and edited numerous Sea Grant publications + and articles, and has published in peer-reviewed scientific journals. + Malia is an Adjunct Professor of Fisheries at URI, and continues to + maintain her research interest in studying the diving physiology of + marine and freshwater turtles, an interest driven by the persistent + problems of marine turtle injury and death caused by accidental entanglement. + She is currently designing a recovery protocol for marine turtles + found entangled in fishing gear and is working to educate the marine + fishing and boating community about steps they can take to help in + this recovery.
+ +
+ + + + + + +
+ + + + + + +
+ + +
+ + + + + +
+ + + \ No newline at end of file diff --git a/office/regression/000_000217.html b/office/regression/000_000217.html new file mode 100644 index 0000000..aea73e3 --- /dev/null +++ b/office/regression/000_000217.html @@ -0,0 +1,238 @@ + + + + + + + + Hurricanes Katrina and Rita | NOAA's Ocean Service Office of Response and Restoration + + + + + + + + + + + +
Emergency Response
+ + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + +
Emergency Response
+ + + + + + + + + + + + + +
Emergency Response
Pollutants in the Environment
Serving Communities
Natural Resource Restoration
+

+
+ + + + + + + + + + + + + + + + + +
+
+ Information for:
+
Emergency Responders
Students and Teachers
Interested Public
Research Institutions
Other Agencies
+
+
+
+ + + + + + + + + + +
+Current News
+Special Note
+FAQs
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ Catalogs of: +
+
Publications
Software & Data Sets
Web Portals
Links +
Downloads +
Image Galleries +
Abandoned Vessels +
Drift Card Studies +
+
+
+ + + + + + + + + + + + + + + + + + + +
+About OR&R +
+Contact Us +
+Advanced Search +
+Site Index +
+Privacy Policy
+Document Accessibility
+
+ + + + + + + + + + +

Emergency ResponseHome | Image Galleries | Emergency Response

+

Hurricanes Katrina and Rita

+

Photos of OR&R in action during Hurricanes Katrina and Rita.

+

Click on the image to return to the gallery

+
+ + + + +
Debris scattered around facility. +

Dynegy Venice facility damaged

+

Vast quantities of roseau cane (Phragmites) wrack blown into the Dynegy Venice facility by Hurricanes Katrina and Rita.

+

(09.29.05, Venice, Louisiana)

+
+
+ + + + + + + +
Related Pages on Our Site
    +
  • NOAA's Office of Response and Restoration Responds to Hurricane Katrina In the wake of Hurricane Katrina, NOAA's Office of Response and Restoration (OR&R) has provided invaluable scientific support to the USCG, EPA, and the states of Louisiana, Mississippi, and Alabama in their hazardous materials response efforts, as well as initial efforts to assess the environmental impacts. +
+
+
+
NOAA logo
+
+ + + + diff --git a/office/regression/000_000218.txt b/office/regression/000_000218.txt new file mode 100644 index 0000000..527f27f --- /dev/null +++ b/office/regression/000_000218.txt @@ -0,0 +1,359 @@ +WWL Data Point Analysis + + +WWL Data Point:RLAC-01-01 +County:Vermilion +Surveyed Elevation (ft NAVD 88):4.2 +Data Point Ground Elevation + (from 2 ft contours):4 +Flood Elevation from Original Debris Line or Flood Inundation Boundary (from 2 ft contours):N/A +Distance to Original Flood Inundation Boundary (ft):N/A +Distance to Original Debris Line (ft):N/A +ACTION:Extended inland flood polygon to meet point using 4 and 6 ft contours. +EXPLANATION: No inundation polygon was shown in this area from aerial imagery photointerpretation. Flagger form and photos indicate there was flooding here ("never flooded before Rita"). + + +WWL Data Point: RLAC-01-02 +County: Vermilion +Surveyed Elevation (ft NAVD 88): 7.4 +Data Point Ground Elevation + (from 2 ft contours): 6 +Flood Elevation from Original Debris Line or Flood Inundation Boundary (from 2 ft contours): N/A +Distance to Original Flood Inundation Boundary (ft):N/A +Distance to Original Debris Line (ft):N/A +ACTION: Extended inland flood polygon to meet point using 4 and 6 ft contours. +EXPLANATION: No inundation polygon was shown in this area from aerial imagery photointerpretation. Flagger observations and photos indicate there was flooding here ("never flooded before Rita"). + + +WWL Data Point: RLAC-01-03 +County: Vermilion +Surveyed Elevation (ft NAVD 88): 7.8 +Data Point Ground Elevation + (from 2 ft contours): 8 +Flood Elevation from Original Debris Line or Flood Inundation Boundary (from 2 ft contours): N/A +Distance to Original Flood Inundation Boundary (ft):N/A +Distance to Original Debris Line (ft):N/A +ACTION: Extended inland flood polygon from RLAC 11-24 using 6 and 8 ft contours. +EXPLANATION: No inundation polygon was shown in this area from aerial imagery photointerpretation. Flagger observations indicate flooding occurred here (waterline- 1' HWM to ground). + + +WWL Data Point: RLAC-01-04 +County: St. Mary +Surveyed Elevation (ft NAVD 88): 5.0 +Data Point Ground Elevation + (from 2 ft contours): 6 +Flood Elevation from Original Debris Line or Flood Inundation Boundary (from 2 ft contours): N/A +Distance to Original Flood Inundation Boundary (ft): N/A +Distance to Original Debris Line (ft): N/A +ACTION: Extended marsh polygon to this point using coast and HWY 317 as boundaries. +EXPLANATION: Area has low elevations and includes undeveloped marshland and should be included in the marsh polygon. + + +WWL Data Point: RLAC-01-05 +County: St. Mary +Surveyed Elevation (ft NAVD 88): 4.5 +Data Point Ground Elevation + (from 2 ft contours): 6 +Flood Elevation from Original Debris Line or Flood Inundation Boundary (from 2 ft contours): N/A +Distance to Original Flood Inundation Boundary (ft): N/A +Distance to Original Debris Line (ft): N/A +ACTION: Extended marsh polygon to this point using coast and HWY 317 as boundaries. +EXPLANATION: Point was taken on shoulder of road which is a high point in the area. Marshland surrounds the road and development. Flooding could have affected surrounding areas. + + +WWL Data Point: RLAC-02-11 +County: Calcasieu +Surveyed Elevation (ft NAVD 88): 3.7 +Data Point Ground Elevation + (from 2 ft contours): 4 +Flood Elevation from Original Debris Line or Flood Inundation Boundary (from 2 ft contours): 6 +Distance to Original Flood Inundation Boundary (ft): 120 +Distance to Original Debris Line (ft): N/A +ACTION: No action. +EXPLANATION: Point is within 200 ft of the inundation polygon. + + +WWL Data Point:RLAC-02-14 +County:Calcasieu +Surveyed Elevation (ft NAVD 88):10.9 +Data Point Ground Elevation + (from 2 ft contours):24 +Flood Elevation from Original Debris Line or Flood Inundation Boundary (from 2 ft contours):10 +Distance to Original Flood Inundation Boundary (ft):33000 +Distance to Original Debris Line (ft): - +ACTION: Designated as a WWL Data Point NUAR. +EXPLANATION: Point falls outside of the inundation polygon at an elevation that is greater than the flooding elevation. Ponding due to poor drainage is suspected as the cause of the observed HWM. Point should not have been designated as a WWL point. + + +WWL Data Point: +County: +Surveyed Elevation (ft NAVD 88): +Data Point Ground Elevation + (from 2 ft contours): +Flood Elevation from Original Debris Line or Flood Inundation Boundary (from 2 ft contours): +Distance to Original Flood Inundation Boundary (ft): +Distance to Original Debris Line (ft): +ACTION: +EXPLANATION: RLAC-03-01 Vermilion 6.8 6 N/A Extended inland flood polygon to meet point using 4 and 6 ft contours. No inundation polygon was show in this area from aerial imagery photointerpretation. Flagger observations and eyewitness account indicates flooding occurred here. + + +WWL Data Point: +County: +Surveyed Elevation (ft NAVD 88): +Data Point Ground Elevation + (from 2 ft contours): +Flood Elevation from Original Debris Line or Flood Inundation Boundary (from 2 ft contours): +Distance to Original Flood Inundation Boundary (ft): +Distance to Original Debris Line (ft): +ACTION: +EXPLANATION: RLAC-03-02 Cameron 4.6 4 4 2300 ------ No action. Point falls inside of inundation polygon. Point was taken on shoulder of the road which is a high point in the area so flooding could have reached further north. + +WWL Data Point: +County: +Surveyed Elevation (ft NAVD 88): +Data Point Ground Elevation + (from 2 ft contours): +Flood Elevation from Original Debris Line or Flood Inundation Boundary (from 2 ft contours): +Distance to Original Flood Inundation Boundary (ft): +Distance to Original Debris Line (ft): +ACTION: +EXPLANATION: RLAC-03-03 Calcasieu 6.1 8 8 730 ------ No action. Point lies within the inundation polygon. + +WWL Data Point: +County: +Surveyed Elevation (ft NAVD 88): +Data Point Ground Elevation + (from 2 ft contours): +Flood Elevation from Original Debris Line or Flood Inundation Boundary (from 2 ft contours): +Distance to Original Flood Inundation Boundary (ft): +Distance to Original Debris Line (ft): +ACTION: +EXPLANATION: RLAC-03-04 Vermilion 8.0 8 N/A Extended inland flood polygon from RLAR 12-09 using 8ft contours. No inundation polygon was shown in this area from aerial imagery photointerpretation. Flagger observations indicate flooding occurred here. + +WWL Data Point: +County: +Surveyed Elevation (ft NAVD 88): +Data Point Ground Elevation + (from 2 ft contours): +Flood Elevation from Original Debris Line or Flood Inundation Boundary (from 2 ft contours): +Distance to Original Flood Inundation Boundary (ft): +Distance to Original Debris Line (ft): +ACTION: +EXPLANATION: RLAC-03-05 Iberia 6.9 8 N/A Extended inland flood polygon from RLAC 3-05 using 8-ft contours. Point falls outside of the inundation polygon. Point was taken on the road shoulder, which is a high point in the area, so flooding could have reached surrounding areas. + +WWL Data Point: +County: +Surveyed Elevation (ft NAVD 88): +Data Point Ground Elevation + (from 2 ft contours): +Flood Elevation from Original Debris Line or Flood Inundation Boundary (from 2 ft contours): +Distance to Original Flood Inundation Boundary (ft): +Distance to Original Debris Line (ft): +ACTION: +EXPLANATION: RLAC-03-06 St. Mary 9.6 10 N/A Extended inland flood polygon from RLAC 3-06 using 8ft contours. Point falls outside of the inundation polygon. Point was taken on the road shoulder, which is a high point in the area, so flooding could have reached surrounding areas. + +WWL Data Point: +County: +Surveyed Elevation (ft NAVD 88): +Data Point Ground Elevation + (from 2 ft contours): +Flood Elevation from Original Debris Line or Flood Inundation Boundary (from 2 ft contours): +Distance to Original Flood Inundation Boundary (ft): +Distance to Original Debris Line (ft): +ACTION: +EXPLANATION: RLAC-03-07 3 Terrebonne 2.0 2 N/A Extended mash areas polygon to point using pre-event imagery and contours. Point is surrounded by undeveloped, swampy area. This is an isolated WWL point and nearby HWMs are concentrated in area along highways/roadways since surrounding land is inaccessible. + +WWL Data Point: +County: +Surveyed Elevation (ft NAVD 88): +Data Point Ground Elevation + (from 2 ft contours): +Flood Elevation from Original Debris Line or Flood Inundation Boundary (from 2 ft contours): +Distance to Original Flood Inundation Boundary (ft): +Distance to Original Debris Line (ft): +ACTION: +EXPLANATION: RLAC-04-01 2 Calcasieu 14.6 20 10 1240 ------ Designated as a WWL Data Point NUAR. Point falls outside of the inundation polygon at an elevation that is greater than the flooding elevation. It is suspected that flooding in the area was due to the lack of drainage. The point should not have been designated as a WWL point. + +WWL Data Point: +County: +Surveyed Elevation (ft NAVD 88): +Data Point Ground Elevation + (from 2 ft contours): +Flood Elevation from Original Debris Line or Flood Inundation Boundary (from 2 ft contours): +Distance to Original Flood Inundation Boundary (ft): +Distance to Original Debris Line (ft): +ACTION: +EXPLANATION: RLAC-07-02 2 Calcasieu 6.7 7 6 450 ------ No action. Point lies within the inundation polygon. + +WWL Data Point: +County: +Surveyed Elevation (ft NAVD 88): +Data Point Ground Elevation + (from 2 ft contours): +Flood Elevation from Original Debris Line or Flood Inundation Boundary (from 2 ft contours): +Distance to Original Flood Inundation Boundary (ft): +Distance to Original Debris Line (ft): +ACTION: +EXPLANATION: RLAC-08-01 Calcasieu 8.2 6 10-14 280 ------ Extend the inundation polygon by using 12- and 14-ft contours and aerial imagery. Point falls within the inundation polygon. Flaggers observations and imagery supports that flooding occurred further inland from the riverbank. + + +WWL Data Point: +County: +Surveyed Elevation (ft NAVD 88): +Data Point Ground Elevation + (from 2 ft contours): +Flood Elevation from Original Debris Line or Flood Inundation Boundary (from 2 ft contours): +Distance to Original Flood Inundation Boundary (ft): +Distance to Original Debris Line (ft): +ACTION: +EXPLANATION: RLAC-08-02 Calcasieu 7.8 8 8 390 ------ No action. Point lies within the inundation polygon. Topography, flagger observations, and aerial imagery support that flooding went further inland. + +WWL Data Point: +County: +Surveyed Elevation (ft NAVD 88): +Data Point Ground Elevation + (from 2 ft contours): +Flood Elevation from Original Debris Line or Flood Inundation Boundary (from 2 ft contours): +Distance to Original Flood Inundation Boundary (ft): +Distance to Original Debris Line (ft): +ACTION: +EXPLANATION: RLAC-08-03 Calcasieu 7.8 8 6 57 ------ No action. Point is within 200 ft of the inundation polygon. + +WWL Data Point: +County: +Surveyed Elevation (ft NAVD 88): +Data Point Ground Elevation + (from 2 ft contours): +Flood Elevation from Original Debris Line or Flood Inundation Boundary (from 2 ft contours): +Distance to Original Flood Inundation Boundary (ft): +Distance to Original Debris Line (ft): +ACTION: +EXPLANATION: + + + + + + + + +RLAC-08-04 Calcasieu 8.4 9 10 100 ------ No action. Point is within 200 ft of the inundation polygon. +RLAC-08-07 1,2 Calcasieu 7.0 6 6 10550 ------ Designated as a WWL Data Point NUAR. No inundation polygon was shown in this area from aerial imagery photointerpretation. No photos of site were available and the surveyed elevation was not consistent with points in surrounding area. +RLAC-09-12 Cameron 4.9 2 2 140 ------ No action. Point is within 200 ft of the inundation polygon. +RLAC-09-14 Calcasieu 5.3 4 4 6000 ------ No action. Point falls within the inundation polygon. Flagger observations, photos, and imagery support that flooding went further inland. +RLAC-09-15 Calcasieu 8.2 10 10 720 ------ Flood polygon was extended to this point by following the 8- and 10-ft contours. Flagger observations and imagery support that flooding went further inland from the tributary. +RLAC-09-16 Calcasieu 8.5 6 6-8 6200 ------ Extended the inundation polygon northward along the tributary to reach the point. Flaggers noted a wrack line here. This area is flat and the imagery supports that the flooding went further inland from the tributary. +RLAC-09-18 Calcasieu 9.2 10 10~12 3200 ------ Extended the inundation polygon northwestward to reach up this point using imagery as guide. Flaggers noted a wrack line here. This area is very flat and the imagery supports that flooding occurred further inland. +RLAC-09-27 Calcasieu 9.9 9 9 4 ------ No action. Point falls within 200 ft of inundation area. Flagger notes that point was taken on the roadway, which is a high point in the area, so flooding would have also occurred at lower points north of the road. +RLAC-09-41 2 Calcasieu 14.2 16 14 12,470 ------ Extended inland flood polygon north around stream channel by following the 14-ft contour. No inundation polygon was shown in this area from aerial imagery photointerpretation. Flagger forms and photos indicate there was flooding here. +RLAC-09-42 2 Calcasieu 23.5 28 18 9,650 ------ Designated as a WWL Data Point NUAR. Point falls outside of the inundation polygon at an elevation that is greater than the flooding elevation. Ponding due to poor drainage is suspected as cause for the observed HWM. Point should not have been designated as a WWL point. +RLAC-09-43 2 Calcasieu 21.7 22 24 72 ------ Designated as a WWL Data Point NUAR. Point falls outside of the inundation polygon, which is not in close proximity to a coastal drainage area. Ponding due to poor drainage is suspected as cause for the observed HWM. Point should not have been designated as a WWL point. +RLAC-09-44 2 Calcasieu 35.3 38 32 10,800 ------ Designated as a WWL Data Point NUAR. Point falls outside of the inundation polygon, which is not in close proximity to a coastal drainage area. Ponding due to poor drainage is suspected as cause for the observed HWM. Point should not have been designated as a WWL point. +RLAC-09-45 2 Calcasieu 32.8 33 10 60,000 ------ Designated as a WWL Data Point NUAR. Point falls outside of the inundation polygon at an elevation that is greater than the flooding elevation. Ponding due to poor drainage is suspected as cause for the observed HWM. Point should not have been designated as a WWL point. +RLAC-10-02 Calcasieu 8.2 10 6 0 ------ Created a "dry" area on island using aerial photos. Point falls within inundation polygons. The wrack line was located on an island inside the river channel. The higher ground of this island beyond this point was not flooded. +RLAC-10-16 Cameron 4.7 4 4 64 ------ No action. Point is within 200 ft of the inundation polygon. +RLAC-11-24 Vermilion 8.0 no contours available N/A Extended inland flood polygon from RLAC 3-01 using 6 and 8ft contours. No inundation polygon was shown in this area from aerial imagery photointerpretation. Flagger form and photos indicate there was flooding: "water stopped in area; some homes flooded." +RLAC-12-06 2 Calcasieu 9.0 7 8 30 ------ No action. Point is within 200ft from the inundation polygon. +RLAC-13-03 St. Tammany 8.2 8 N/A See note for RLAC-13-15. Added debris line between RLAC 13-03 and RLAC 13-06 using 6-ft contour. WWL points from RLAC-13-03 to RLAC-13-08 form a good inundation boundary for flooding caused by Lake Pontchartrain. +RLAC-13-04 St. Tammany 6.6 6 N/A See note for RLAC-13-03. see note for RLAC-13-03. +RLAC-13-05 St. Tammany 6.0 4 N/A See note for RLAC-13-03. see note for RLAC-13-03. +RLAC-13-06 St. Tammany 5.0 2 N/A See note for RLAC-13-03. From RLAC-13-06 to RLAC-13-07, added WWL using 4-ft and 6-ft contours. see note for RLAC-13-03. +RLAC-13-07 St. Tammany 5.3 2 N/A Added WWL between RLAC-13-06 and RLAC13-08 using 4-ft and 6-ft contours. see note for RLAC-13-03. +RLAC-13-08 St. Tammany 6.1 6 N/A See note for RLAC-13-07. see note for RLAC-13-03. +RLAC-13-15 St. Tammany 7.2 8 N/A Added WWL between RLAC-13-03 and RLAC-13-15 using 6 and 8 ft contours. No existing inundation polygon in this area. A series of HWMs and WWLs which were surveyed around Lake Pontchartrain form a good wind water line. +RLAC-14-13 Vermilion 10.9 10 N/A No action. Point falls inside of the inundation polygon that has RLAC-03-04 on the boundary. +RLAC-14-23 3 Orleans 5.6 2 N/A No action. There are no other WWL points south of Lake Pontchartrain since this whole area was heavily flooded by Hurricane Katrina. Flaggers noted a broken levee, which was possibly from Hurricane Katrina. +RLAC-15-14 3 Lafourche 6.3 2 N/A Designated as a WWL Data Point NUAR. Point located in undeveloped, swampy area. Nearby HWM points are concentrated in areas along highways/roadways. Point is a wrack line caught on fence (6' depth) and should not have been designated as a WWL. +RLAC-15-15 3 Lafourche 5.8 no contour available N/A Designated as a WWL Data Point NUAR. Point located along highway surrounded by undeveloped, swampy area. Point is a wrack line caught on fence (2' 7" to grade)- and should not have been designated as a WWL. +RLAC-15-16 3 Lafourche 6.4 no contour available N/A Designated as a WWL Data Point NUAR. Point is surrounded by undeveloped, swampy area. Point is a wrack line caught on a fence (5'2" to grade) and should not be designated as WWL. +RLAC-15-17 3 Lafourche 5.9 6 N/A Extended marsh polygon to this point. Point is surrounded by inaccessible, undeveloped, swampy area. Nearby HWMs are concentrated along highway. +RLAC-17-14 Plaquemines 1.2 2 N/A Created new inland flood polygon extending from RLAC 17-09 to RLAC 13-01 using HWY 23 and marsh area polygon as boundary. There was no existing inundation polygon in this area. A series of HWMs and WWLs, which were surveyed along State Highway 23, form a good wind water line. Water overtopped the levee but was stopped from spreading further inland by State Hwy 23. +RLAC-17-17 Plaquemines 1.2 2 N/A Created new inland flood polygon extending from RLAC 17-09 to RLAC 13-01 using HWY 23 and marsh area polygon as boundary. There was no existing inundation polygon in this area. A series of HWMs and WWLs, which were surveyed along State Highway 23, form a good wind water line. Water overtopped the levee but was stopped from spreading further inland by State Hwy 23. +RLAC-18-09 St. Mary 11.9 N/A Designated as a WWL Data Point NUAR. Point is a water line with a vertical distance to HWM of 9 feet. Other WWL points are further inland. This point should not have been designated as a WWL point. +RLAR-02-03 2 Jefferson Davis 22.7 28 N/A Designated as a WWL Data Point NUAR. Point is far away from existing inundation polygon and coast and is also isolated from other points. Point was taken at a bridge and the flooding only reached up to the river bank. +RLAR-02-05 2 Calcasieu 5.8 2 2 1,050 ------ Designated as a WWL Data Point NUAR. Point fall inside of inundation area. Flaggers notes wrack line here and the flood depth at point is 5.8 ft. This is flat area so the flooding could have gone 1000 ft inland. Point should not have been designated as a WWL point. +RLAR-09-19 Calcasieu 12.3 14 2 15,000 ------ Designated as a WWL Data Point NUAR. The point is far away from existing inundation polygons and coast and is also isolated from other points. Flaggers noted wrack line here, which probably was caused by poor drainage. +RLAR-12-09 Vermilion 9.8 10 N/A Extended inland flood polygon from RLAC 1-03 using 10-ft contours around tributary. Flooding occurred along tributary as indicated in flagger form and photos. Flooding consistent with nearby HWMs RLAR-12-07 and RLAR-12-08. +RLAR-15-02 2 Livingston 4.1 2 N/A Created inland flood polygon starting at RLAC 13-15 and connecting RLAR 15-02 to RLR1 15-06. As this point is on a tributary of a lake, the area has a low elevation and includes undeveloped marshland. Flaggers noted this the point as a water line with a vertical distance to HWM of 0.5 ft. +RLAR-15-03 2 Livingston 3.1 22 N/A Designated as a WWL Data Point NUAR. Flaggers noted this point as a water line with a vertical distance to HWM as 4.5 ft. Point is at an elevation that is greater than the flooding elevation. Poor drainage is suspected to be the cause of the observed HWM. Point should not have been designated as a WWL. +RLAR-15-04 2 Livingston 4.2 2 N/A Designated as a WWL Data Point NUAR. Point is in a very low area, just 0-2 ft from a canal. Flaggers noted this as a water line with a vertical distance to HWM of 1.7 ft. Point should not have been designated as a WWL. +RLAR-15-06 St. Mary 5.7 6 N/A Extended inland flood polygon to point using 6-ft contours and river boundaries. Area has low elevations and includes undeveloped marshland. Flaggers noted this as a wrack line. Topography leads to the conclusion that this area should be included in the inundation polygon. +RLAR-15-08 St. Mary 3.5 4 N/A Extended inland flood polygon to point using 6-ft contours and river boundaries. Area has low elevations and includes undeveloped marshland. Flaggers noted this as a wrack line. Topography leads to the conclusion that this area should be included in the inundation polygon. +RLAR-15-09 2 Assumption 2.9 2 N/A Designated as a WWL Data Point NUAR. The surrounding area has low elevations and contains undeveloped marshland. Although the land is very flat, the point is a considerable distance from the coast line and the observed wrack line is likely the result of drainage. The point should not have been marked as a WWL. No photos of site were available. +RLAR-15-10 2 St. Martin 3.9 4 N/A Designated as a WWL Data Point NUAR. Area has low elevations and contains undeveloped marshland. Flaggers noted this as a wrack line. Although land is very flat, point is a considerable distance from the coast line and is likely the result of poor drainage. Point should not have been designated as a WWL. +RLAR-15-11 Assumption 2.7 2 N/A Extended inland flood polygon to point using 6 foot contours and river boundaries. Area has low elevations and includes a lake, a canal, and undeveloped marshland. The proximity and flatness of the surrounding land indicate that this area should be included in the inundation polygon or the swamp polygon. No photos of this site were available. +RLAR-15-12 3 St. Charles 2.8 2 N/A No action. There was no existing inundation polygon in this area. The point is isolated from other points and flagger photos indicate flooding did not overtop bulkhead. +RLAR-20-11 2 St. Tammany 6.9 10 N/A Designated as a WWL Data Point NUAR. There is no existing inundation polygon in this area. Flaggers noted that the flood source is Pearl Rive, but point is isolated from other points. +RLR1-15-06 2 Livingston 5.2 4 N/A Extended inland flood polygon to point using 6-ft contours and river boundaries. As this point is near the lake, the surrounding area has a low elevation and includes undeveloped marshland. Flaggers noted this as a water line with a vertical distance to HWM of 1.5 ft. + + + +CHWM's RLAC-11-21, 11-22, 11-23, 11-33, 11-27, and 11-25 Vermillion 6-8 ft N/A Extended debris line to follow CHWMs along State Highway 82 (approx 6-8' contour). Flaggers found wrack and mud lines along Hwy 82 (road has a higher elevation than the surrounding area so it makes sense that debris would accumulate along the road). Land from coast to Hwy 82 is swampy, undeveloped area without access. + + + +Points Within 200 ft from Inundation Polygon - No Changes + +ENG: HZ +WWL Point: RLAC-10-16 +HWMADD: 1221 Highway 384, Lake Charles, LA +State: LA +Longitude: -93.176925 + +ENG: HZ +WWL Point: RLAC-09-12 +HWMADD: 199 Johnny Benoit, Hackberry, LA +State: LA +Longitude: -93.403823 + +ENG: CN +WWL Point: RLAC-07-02 +HWMADD: Sam Houston Jones State Park +State: LA +Longitude: -93.26134 + + +ENG: CN +WWL Point: RLAC-12-06 +HWMADD: 2737 Sam Houston Jones State Parkway (378 Spur) +State: LA +Longitude: -93.12144 + +ENG: CN +WWL Point: RLAC-08-04 +HWMADD: I-10 Exit 30A, I-10 service road +State: LA +Longitude: -93.23512 + +ENG: CN +WWL Point: RLAC-08-03 +HWMADD: 813 Shell Beach Drive +State: LA +Longitude: -93.23512 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/office/regression/000_000219.txt b/office/regression/000_000219.txt new file mode 100644 index 0000000..d25cbfc --- /dev/null +++ b/office/regression/000_000219.txt @@ -0,0 +1,32 @@ +Lib. IV. of John ^focquet. +and excufes himfelf, becaufe fuch an +one is his Friend, they cry him about +fora faint-hearted Coward. and'tis he +fa whom they will wrack their Re- +venge, if he has not a care of himfelL +Thefc are the Actions at this day. +One day ftanding at my Lodging +Door in the Street of theCr^X]Ifaw +two Companies of Soldiers, the nc +coming from the Mifericordia, and the +other feeming from the Cordeliers, an4 +drawing ni^h one to the other, laid +hands upon their Swords with great +fury, but the Rafcals did one another +no harm, being the numbers were t* +quai. But when loor i_ meets with. +one or two, then you fhall fee them +do wonderful Exploits. +Therewasoneamoiigft the reft,who" +tofoewhimfelfaChampion,challeng'd +another to fight him hand to hand* +whqappear'd but plainly with his or- +dinary Arms; But the other wicked +and falfe wretch, carrying with .him +J Harquebufs,prefented.it to give Fire,' +at which the firft cryed out that he +ihouldkill him like a man of Valour, +and not like a Coward , yet he would +^hearken to this, but told Jiim, that +,5f +1_ \ No newline at end of file diff --git a/office/regression/000_000220.txt b/office/regression/000_000220.txt new file mode 100644 index 0000000..41c203b --- /dev/null +++ b/office/regression/000_000220.txt @@ -0,0 +1,368 @@ +WWL DATA POINT ANALYSIS + + +HWM ID: RTXC-01-01 +County: Jefferson +Elevation (from 5' contours): 20 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): 5 +Distance to Original Debris Line (ft): - +Distance to Original Flood Inundation Boundary (ft): 9,400 +Action: Designated as a WWL Data Point NUAR. +Explanation: Photo shows wrack line, but flagger form indicates "no flooding or damage to building." It does not make sense to extend the inundation polygon to this point because aerials do not show evidence of flooding to the east of this point and the elevation is much higher than the flood elevation. + +HWM ID: RTXC-01-03 +County: Orange +Elevation (from 5' contours): 15 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): 5 +Distance to Original Debris Line (ft): - +Distance to Original Flood Inundation Boundary (ft): 10,600 +Action: Designated as a WWL Data Point NUAR. +Explanation: Photo shows a water line 9" above ground, however flooding does not appear to be due to coastal surge. Point does not appear to be along a tributary. + +HWM ID: RTXC-03-01 +County: Harris +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): N/A +Distance to Original Flood Inundation Boundary (ft): N/A +Action: Designated as a WWL Data Point NUAR. +Explanation: Flagger found a debris line, but noted "HWM may be normal high tide." + +HWM ID: RTXC-03-02 +County: Harris +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): N/A +Distance to Original Flood Inundation Boundary (ft): N/A +Action: Extended debris line to point using 5-ft contour. +Explanation: Flagger observations support that a debris line formed here. + +HWM ID: RTXC-03-03 +County: Chambers +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): N/A +Distance to Original Flood Inundation Boundary (ft): N/A +Action: Extended debris line to point using 5-ft contour. +Explanation: Flagger observations support that a debris line formed here. + +HWM ID: RTXC-03-04 +County: Chambers +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): N/A +Distance to Original Flood Inundation Boundary (ft): N/A +Action: Extended debris line to point using 5-ft contour. +Explanation: Flagger observations support that a debris line formed here. + +HWM ID: RTXC-03-05 +County: Chambers +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): N/A +Distance to Original Flood Inundation Boundary (ft): N/A +Action: Extended debris line to point using 5-ft contour. +Explanation: Flagger observations support that a debris line formed here. + +HWM ID: RTXC-03-06 +County: Orange +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): 5 +Distance to Original Debris Line (ft): - +Distance to Original Flood Inundation Boundary (ft): 100 +Action: No action. +Explanation: Point lies within 200 feet of the inundation polygon. + +HWM ID: RTXC-03-07 +County: Orange +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours):- +Original Flood Inundation Boundary Elev. (from 5' contours):5 +Distance to Original Debris Line (ft): - +Distance to Original Flood Inundation Boundary (ft): 400 +Action: Used imagery to extend inland flood polygon to flagger point. +Explanation: Flagger observations indicate flooding occurred further west than shown. + +HWM ID: RTXC-03-09 +County: Galveston +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): N/A +Distance to Original Flood Inundation Boundary (ft): N/A +Action: Added debris line to point using 5-ft contour. +Explanation: Flagger observations support that a debris line formed here. + +HWM ID: RTXC-03-10 +County: Galveston +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): N/A +Distance to Original Flood Inundation Boundary (ft): N/A +Action: Added debris line to point using 5-ft contour. +Explanation: Flagger observations support that a debris line formed here. + +HWM ID: RTXC-03-11 +County: Galveston +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): N/A +Distance to Original Flood Inundation Boundary (ft): N/A +Action: Added debris line to point using 5-ft contour. +Explanation: Flagger observations support that a debris line formed here. + +HWM ID: RTXC-03-12 +County: Galveston +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): N/A +Distance to Original Flood Inundation Boundary (ft): N/A +Action: Added debris line to point using 5-ft contour. +Explanation: Flagger observations support that a debris line formed here. + +HWM ID: RTXC-03-13 +County: Galveston +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): N/A +Distance to Original Flood Inundation Boundary (ft): N/A +Action: Added debris line to point using 5-ft contour. +Explanation: Flagger observations support that a debris line formed here. + +HWM ID: RTXC-03-14 +County: Galveston +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): N/A +Distance to Original Flood Inundation Boundary (ft): N/A +Action: Added debris line to point using 5-ft contour. +Explanation: Flagger observations support that a debris line formed here. + +HWM ID: RTXC-03-15 +County: Galveston +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): N/A +Distance to Original Flood Inundation Boundary (ft): N/A +Action: Added debris line to point using 5-ft contour. +Explanation: Flagger observations support that a debris line formed here. + +HWM ID: RTXC-03-16 +County: Galveston +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): N/A +Distance to Original Flood Inundation Boundary (ft): N/A +Action: Added debris line to point using 5-ft contour. +Explanation: Flagger observations support that a debris line formed here. + +HWM ID: RTXC-04-01 +County: Galveston +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): N/A +Distance to Original Flood Inundation Boundary (ft): N/A +Action: Added debris line to point using 5-ft contour. +Explanation: Flagger observations support that a debris line formed here. + +HWM ID: RTXC-04-02 +County: Galveston +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): N/A +Distance to Original Flood Inundation Boundary (ft): N/A +Action: Added debris line to point using 5-ft contour. +Explanation: Flagger observations support that a debris line formed here. + +HWM ID: RTXC-04-03 +County: Galveston +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): N/A +Distance to Original Flood Inundation Boundary (ft): N/A +Action: Added debris line to point using 5-ft contour. +Explanation: Flagger observations support that a debris line formed here. + +HWM ID: RTXC-04-04 +County: Galveston +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): N/A +Distance to Original Flood Inundation Boundary (ft): N/A +Action: Added debris line to point using 5-ft contour. +Explanation: Flagger observations support that a debris line formed here. + + +HWM ID: RTXC-05-06 +County: Jefferson +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): 5 +Distance to Original Debris Line (ft): - +Distance to Original Flood Inundation Boundary (ft): 220 +Action: Moved inland flood polygon north across the road to the point. +Explanation: Debris line is along the other side of the inundation polygon and more conservative. Inland flooding extends beyond debris line. + + +HWM ID: RTXC-05-08 +County: Galveston +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): 5 +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): 2,500 +Distance to Original Flood Inundation Boundary (ft): - +Action: Moved debris line inland to include point and follow 5-ft contour. +Explanation: Flagger observations support that a debris line formed here. + +HWM ID: RTXC-05-18 +County: Galveston +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): N/A +Distance to Original Flood Inundation Boundary (ft): N/A +Action: Extended debris line to point along the 5-ft contour. +Explanation: Flagger observations support that a debris line formed here. + +HWM ID: RTXC-05-19 +County: Galveston +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): 5 +Original Flood Inundation Boundary Elev. (from 5' contours):- +Distance to Original Debris Line (ft): 3,300 +Distance to Original Flood Inundation Boundary (ft): - +Action: Moved debris line inland to include point and follow 5-ft contour. +Explanation: Flagger observations support that a debris line formed here. + +HWM ID: RTXC-05-20 +County: Galveston +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): 5 +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): 900 +Distance to Original Flood Inundation Boundary (ft): - +Action: Moved debris line inland to include point and follow 5-ft contour. +Explanation: Flagger observations support that a debris line formed here. + +HWM ID: RTXC-05-21 +County: Galveston +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): 5 +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): 120 +Distance to Original Flood Inundation Boundary (ft): - +Action: No action. +Explanation: Point is within 200 feet of the debris line. + +HWM ID: RTXC-05-23 +County: Galveston +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): 5 +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): 260 +Distance to Original Flood Inundation Boundary (ft): - +Action: No action. +Explanation: Point is close to the debris line. + +HWM ID: RTXC-05-26 +County: Jefferson +Elevation (from 5' contours): <5 +Original Debris Line Elev. (from 5' contours):- +Original Flood Inundation Boundary Elev. (from 5' contours): <5 +Distance to Original Debris Line (ft):- +Distance to Original Flood Inundation Boundary (ft): 0 +Action: No action. +Explanation: Point is within 200 feet of the inundation polygon. + +HWM ID: RTXC-05-27 +County: Jefferson +Elevation (from 5' contours): <5 +Original Debris Line Elev. (from 5' contours):- +Original Flood Inundation Boundary Elev. (from 5' contours): <5 +Distance to Original Debris Line (ft):- +Distance to Original Flood Inundation Boundary (ft): 100 +Action: No action. +Explanation: Point is within 200 feet of the inundation polygon. + +HWM ID: RTXC-05-53 +County: Galveston +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): 5 +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): 1900 +Distance to Original Flood Inundation Boundary (ft): - +Action: Moved debris line inland to include point and follow 5-ft contour. +Explanation: Flagger observations support that a debris line formed here. + +HWM ID: RTXR-02-14 +County: Sabine +Elevation (from 5' contours): - +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): - +Distance to Original Flood Inundation Boundary (ft): - +Action: Designated as a WWL Data Point NUAR. +Explanation: Point has elevation 175 feet and is 118 miles away from coast. The flooding only happened inside the stream channel and is irrelevant to coastal surge. + +HWM ID: RTXR-05-35 +County: Polk +Elevation (from 5' contours): - +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): - +Distance to Original Flood Inundation Boundary (ft): 220 +Action: Designated as a WWL Data Point NUAR. +Explanation: Point has elevation above 200 feet and is 82 miles away from coast line. The flooding only happened inside the stream channel and is irrelevant to coastal surge. + +HWM ID: RTXR-05-36 +County: Polk +Elevation (from 5' contours): - +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): - +Distance to Original Debris Line (ft): - +Distance to Original Flood Inundation Boundary (ft): 220 +Action: Designated as a WWL Data Point NUAR. +Explanation: Point has elevation above 200 feet and is 82 miles away from coast line. The flooding only happened inside the stream channel and is irrelevant to coastal surge. + +HWM ID: RTXR-05-51 +County: Orange +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): 5 +Distance to Original Debris Line (ft): - +Distance to Original Flood Inundation Boundary (ft): 2,000 +Action: Extended inland flood polygon northwest along 5-ft contour. +Explanation: Flagger observations support that flooding occurred here. + +HWM ID: RTXR-05-52 +County: Orange +Elevation (from 5' contours): 5 +Original Debris Line Elev. (from 5' contours): - +Original Flood Inundation Boundary Elev. (from 5' contours): 5 +Distance to Original Debris Line (ft): - +Distance to Original Flood Inundation Boundary (ft): 0 +Action: No action. +Explanation: Point is within 200 feet of the inundation polygon. + + + + diff --git a/office/regression/000_000221.txt b/office/regression/000_000221.txt new file mode 100644 index 0000000..adc0d47 --- /dev/null +++ b/office/regression/000_000221.txt @@ -0,0 +1,38 @@ +m + + +-7 + +78 A Voyage to Peru +ver come up with me, fo that I happily ar- +riv'd in France at the Port of Socai, where +I by this means fav'd the fruit of my La- +bours and long Voyage. The great Ship +which I left in the Road of Barias had not +fo favourable a Lot, and one may fay, was +fhip-wrack'd at the very Port 5 for having +left the Road of Barias, to get fpeedily to +that of Santonge, to fecure all the Goods +fhe had on board, except 4000 Hides, of +which her Bill of Lading gave an account +and having begun to put 6co Hides into a +Dutch Veffel that fhe met there, the bad +Weather conftrain'd her to put in at the +Port from whence fhe firft went out, where +flic was Confifcated with all her Cargo for +the ufe of the King of Spain, under the pre- +tence before fpoken of, that fhe had not the +Permiflion of his Catholick Majefty for her +Voyage. +While thefe things were tranfacting, the +Sergeant Major of Buenos Ayres Arriv'd at +Madrid, and the King of Spain having +Caufed the Informations he brought to be +examiu'd, which principally infifted upon +the neceflity there was of fending new Re- +cruits of Men and Ammunition, to aug- +ment the Carifons of Buenos Ayres, and of +Chili, the better to fecure the Country a- +gainft the Enterprises of Strangers, and al- +io from the attempt of the Sa vages of Chili, +mi- \ No newline at end of file diff --git a/office/regression/000_000222.txt b/office/regression/000_000222.txt new file mode 100644 index 0000000..a136db6 --- /dev/null +++ b/office/regression/000_000222.txt @@ -0,0 +1,632 @@ +Identification_Information: + Citation: + Citation_Information: + Originator: U.S. Geological Survey, National Wetlands Research Center + Publication_Date: 200307 + Title: 2000 Brown Marsh Habitat Data + Geospatial_Data_Presentation_Form: Digital vector data + Larger_Work_Citation: + Citation_Information: + Originator: + Barataria-Terrebonne National Estuary Program + Scientific-Technical Committee + Publication_Date: 20010207 + Title: + Requests for submission of Scope of Services for Marsh + Dieback and Nutria Control Emergency Response. + Geospatial_Data_Presentation_Form: document + Publication_Information: + Publication_Place: Thibodaux, LA + Publisher: + Barataria-Terrebonne National Estuary Program + Scientific-Technical Committee + Online_Linkage: http://www.brownmarsh.net/reports/brown_marsh_rfp.pdf + Description: + Abstract: + This data set consists of digital data describing wetland and upland + habitats for the Brown Marsh area in 2000. The data set includes 12 + 7.5' quadrangles. Wetlands were classified according to the Marsh + Dieback Syndrome (MaDS) signature classification scheme. The + classification was developed to delineate features of healthy and + affected marsh and created through the use of field observations and + laboratory analysis of the photography. The classification (key) + references the defining vegetation and/or features and provides + signature information (consistent photographic elements) for photo + interpretation (located at http://www.brownmarsh.net). + Purpose: + The intended use of this data set is to map the extent of the marsh + dieback for 2000 and to provide information for comparison to later + habitat mapping efforts. + Time_Period_of_Content: + Time_Period_Information: + Range_of_Dates/Times: + Beginning_Date: 20000927 + Ending_Date: 20001115 + Currentness_Reference: Ground Condition during source photography acquisition. + Status: + Progress: Complete + Maintenance_and_Update_Frequency: None Planned + Spatial_Domain: + Bounding_Coordinates: + West_Bounding_Coordinate: -90.00 + East_Bounding_Coordinate: -89.00 + North_Bounding_Coordinate: 29.500 + South_Bounding_Coordinate: 28.875 + Keywords: + Theme: + Theme_Keyword_Thesaurus: None + Theme_Keyword: aquatic + Theme_Keyword: forested + Theme_Keyword: bayous + Theme_Keyword: canals + Theme_Keyword: scrub shrub + Theme_Keyword: wetlands + Theme_Keyword: marshes + Theme_Keyword: swamps + Theme_Keyword: marshlands + Theme_Keyword: habitats + Theme_Keyword: uplands + Theme_Keyword: impacted + Theme_Keyword: non-impacted + Theme_Keyword: uplands + Theme_Keyword: modifiers + Theme_Keyword: disease + Theme_Keyword: coastal + Theme_Keyword: emergent + Theme_Keyword: coastal habitats + Theme_Keyword: geographic information system data + Theme_Keyword: classified aerial photography + Theme_Keyword: maps + Theme_Keyword: mapping + Theme_Keyword: digitizing + Theme_Keyword: open water + Theme_Keyword: unconsolidated + Theme_Keyword: rocky shore + Theme_Keyword: dieback + Theme_Keyword: brown marsh + Theme_Keyword: wrack + Theme_Keyword: mangrove + Place: + Place_Keyword_Thesaurus: U.S. Geological Survey, Geographic Names Information System + Place_Keyword: Louisiana + Place_Keyword: Louisiana Coast + Place_Keyword: South Louisiana + Place_Keyword: Lake Quitman + Place_Keyword: Lake Tambour + Place_Keyword: Lake Felicity + Place_Keyword: Bay Courant + Place_Keyword: Oyster Bayou + Place_Keyword: East Bay Junop + Place_Keyword: Grand Bayou du Large + Place_Keyword: Dog Lake + Place_Keyword: Cocodrie + Place_Keyword: Pelican Pass + Place_Keyword: Leeville + Place_Keyword: Central Isle Dernieres + Temporal: + Temporal_Keyword_Thesaurus: None + Temporal_Keyword: 2000 + Temporal_Keyword: fall + Access_Constraints: + It is strongly recommended that this data is directly acquired from the + distributor described above or from another USGS Biological Resources + Division server and not indirectly through other sources which may have + changed the data in some way. The distributor makes no claims as to the + data's suitability for other purposes. + Use_Constraints: + Acknowledgement of the U.S. Geological Survey, National Wetlands Research + Center as a data source would be appreciated in products developed from + these data, and such acknowledgment as is standard for citation and legal + practices for data source is expected by users of this data. Sharing new + data layers developed directly from these data would also be appreciated + by U.S. Geological Survey, National Wetlands Research Center staff. Users + should be aware that comparison with other data sets for the same area + from other time periods may be inaccurate due to inconsistencies resulting + from changes in mapping conventions, data collection, and computer + processes over time. The distributor shall not be liable for improper or + incorrect use of this data, based on the description of + appropriate/inappropriate uses described in this metadata document. These + data are not legal documents and are not to be used as such. + Point_of_Contact: + Contact_Information: + Contact_Organization_Primary: + Contact_Organization: U.S. Geological Survey, National Wetlands Research Center + Contact_Person: Larry Handley + Contact_Position: Geographer and Principle Investigator + Contact_Address: + Address_Type: Mailing and Physical Address + Address: 700 Cajundome Blvd + City: Lafayette + State_or_Province: LA + Postal_Code: 70506 + Country: USA + Contact_Voice_Telephone: 337 266-8691 + Contact_Facsimile_Telephone: 337 266-8513 + Contact_Electronic_Mail_Address: larry_handley@usgs.gov + Point_of_Contact: + Contact_Information: + Contact_Organization_Primary: + Contact_Organization: U.S. Geological Survey, National Wetlands Research Center + Contact_Person: Steve Hartley + Contact_Position: Senior GIS Analyst/Geographer + Contact_Address: + Address_Type: Mailing and Physical Address + Address: 700 Cajundome Blvd + City: Lafayette + State_or_Province: LA + Postal_Code: 70506 + Country: USA + Contact_Voice_Telephone: 337 266-8543 + Contact_Facsimile_Telephone: 337 266-8616 + Contact_Electronic_Mail_Address: steve_hartley@usgs.gov + Data_Set_Credit: None + Native_Data_Set_Environment: Arc8.3, NT + +Data_Quality_Information: + Attribute_Accuracy: + Attribute_Accuracy_Report: + The attribute accuracy was tested using several methods during the + data development phases and completion. All interpreted photos were + checked by two photo interpreters; all transfered based maps were + checked by a cartographer and a photo interpreter, who didn't perform + the original interpretations. Within in the interpretation phase, + there were at least three stages of quality control. To further ensure + the accuracy of the classification, ground truthing was conducted for + both impacted and non-impacted areas. For areas of questionablity, + similar non-impacted sites were visited to assist in supporting the + classification. 1998 and 2000 aerial photography were used in the + ground truthing activity. For digitizing phase, data are checked at + least twice before finalization of maps. Data were tested by manual + comparison of the source with hard copy printouts and/or symbolized + display of the digital wetlands data on an interactive computer + graphic system. A check for adjacent polygons with the same attribute + was conducted using an Arcview Avenue script. Overall, the attribute + accuracy is believed high due to the multiple error-checking steps + done redundantly during processing (for both the photo-interpretation + and digitizing phases). Exact tolerances vary with coverages, as does + the date of the processing and testing. + Logical_Consistency_Report: + This logical consistency report includes information about both general + and specific topological tests and data generation dynamics in the + fidelity of data. Data is inherently polygonal. Polygons intersecting + the neatline are closed along the border. Segments making up the outer + and inner boundaries of a polygon tie end-to-end to completely enclose the + area. Line segments are a set of sequentially numbered coordinate pairs. + No duplicate features exist nor duplicate points in a data string. + Intersecting lines are separated into individual line segments at the + points of intersection. Point data are represented by two sets of + coordinate pairs, each with the same coordinate values. All nodes are + represented by a single coordinate pair which indicates the beginning or + end of a line segment. The neatline for each quad is generated by + connecting four corners of a digital file, as established during + initialization of the digital file. All data crossing the neatline are + clipped to the neatline and data within a specified tolerance of the + neatline are snapped to the neatline. During the photointerpretation + stage, the large scale maps were edge matched to ensure line connection + and attribute labeling. + Completeness_Report: + All photo-interpretable wetlands are identified and mapped using standard + methodologies and equipment for the photo interpretation phases of the + data development. All wetlands were identified and mapped regardless of + the size. In general, the minimum mapping unit is .5 acres depending of + the wetland type and the scale and emulsion of the source aerial + photography. Processing of the digital data also follows conventions and + standard methodologies for the time period and within limitations of + available workstation equipment at the date of data development. + Positional_Accuracy: + Horizontal_Positional_Accuracy: + Horizontal_Positional_Accuracy_Report: + For reference points accuracy, the accuracy for the digital data + are tested by visual comparison of the source with hard copy maps, + and by understanding of the hardware tolerances and processing + values reported by the software used in data development. + Additional checks on comparison were possible when + georeferencing/rectification was done using the USGS maps, which + cite National Mapping Accuracy Standard compliance. + Lineage: + Source_Information: + Source_Citation: + Citation_Information: + Originator: U.S. Geological Survey, National Wetlands Research Center + Publication_Date: 2001 + Title: Brown Marsh Rectified Aerial Photography + Edition: first + Geospatial_Data_Presentation_Form: Remote-Sensing Image + Publication_Information: + Publication_Place: Lafayette, LA + Publisher: + U.S. Geological Survey, National Wetlands Research + Center + Type_of_Source_Media: digital data base file + Source_Time_Period_of_Content: + Time_Period_Information: + Range_of_Dates/Times: + Beginning_Date: 20000927 + Ending_Date: 20001115 + Source_Currentness_Reference: Source Photography Date + Source_Citation_Abbreviation: USGS CIR + Source_Contribution: + Primary data for photo interpretation and identification of + wetland and upland classes. + Source_Information: + Source_Citation: + Citation_Information: + Originator: U.S. Geological Survey, National Mapping Division + Publication_Date: 1998 + Title: 1998 National Aerial Photography Program + Geospatial_Data_Presentation_Form: Remote-Sensing Image + Publication_Information: + Publication_Place: Lafayette, LA + Publisher: + U.S. Geological Survey, National Wetlands Research + Center + Type_of_Source_Media: stable based material + Source_Time_Period_of_Content: + Time_Period_Information: + Single_Date/Time: + Calendar_Date: 1998 + Source_Currentness_Reference: Source Photography Date + Source_Citation_Abbreviation: USGS NAPP + Source_Contribution: Reference data for barren areas and new, questionable open water. + Process_Step: + Process_Description: + Color infrared aerial photographs were photo interpreted for marsh + habitat and upland habitat according to the MaDS classification. + For questionable areas of barren and open water, the 1998 NAPP + photography was used to ensure if the feature was dieback related. + The interpreted photos were overlaid upon maps generated by the + original photography. + Process_Date: 2002-2003 + Process_Step: + Process_Description: + The hard copy maps were scanned, georeferenced, and vectorized at + the U.S. Geological Survey, National Wetlands Research Center + using an Ideal FCS 8010 scanner, Arc8.3 georeferencing module and + Able Software Corporation Raster to Vector (R2V) conversion + software. + Process_Date: 2003 + +Spatial_Data_Organization_Information: + Direct_Spatial_Reference_Method: Vector + +Spatial_Reference_Information: + Horizontal_Coordinate_System_Definition: + Planar: + Grid_Coordinate_System: + Grid_Coordinate_System_Name: Universal Transverse Mercator + Universal_Transverse_Mercator: + UTM_Zone_Number: 15 + Transverse_Mercator: + Longitude_of_Central_Meridian: -93 + Latitude_of_Projection_Origin: 0 + False_Easting: 500000 + False_Northing: 0 + Scale_Factor_at_Central_Meridian: .9996 + Planar_Coordinate_Information: + Planar_Coordinate_Encoding_Method: Coordinate Pair + Coordinate_Representation: + Abscissa_Resolution: .61 + Ordinate_Resolution: .61 + Planar_Distance_Units: Meters + Geodetic_Model: + Horizontal_Datum_Name: North American Datum of 1983 + Ellipsoid_Name: GRS80 + Semi-major_Axis: 6378137 + Denominator_of_Flattening_Ratio: 298.257 + +Entity_and_Attribute_Information: + Detailed_Description: + Entity_Type: + Entity_Type_Label: Marsh and Upland Habitat + Entity_Type_Definition: + Wetlands are saturated or inundated by water for an extended + period of time during the growing season. For the photo + interpretation process, the hydroregime results in hydric soil + formation and hydrophytic plant species that present consistent + aerial photographic signatures. For photointerpretation purposes, + uplands are areas not periodically saturated or inundated, + resulting in non-hydrophytic vegetation and soil signatures. + Entity_Type_Definition_Source: + Cowardin, Lewis M., Virginia Carter, Francis Goblet, and Edward T. + Laroe. Classification of wetlands and deepwater habitats of the + United States. U.S. Fish and Wildlife Service. Biological + Services Program; FWS/OBS - 79/31. 103 pp. + Attribute: + Attribute_Label: data + Attribute_Definition: + The alphanumerical designation for the wetlands and upland in the + brown marsh dieback impacted and non-impacted area. The values may + have associated modifiers attached. Modifiers include x + (excavated), s (spoil), h (impounded), g (mangrove), o (oil), r, + (wrack), and k (artificial). The designations were developed by an + ad hoc committee comprised of marsh dieback scientists and + researchers. All designations were developed through the use of + field observations, expertise of scientific community, and + examination of aerial photography. The signature key was developed + specifically for the marsh dieback. + Attribute_Definition_Source: Ad hoc MaDS committee + Attribute_Domain_Values: + Enumerated_Domain: + Enumerated_Domain_Value: EM + Enumerated_Domain_Value_Definition: + Healthy emergent marsh is comprised of relatively dense + vegetation dominated by smooth cordgrass (Spartina + alterniflora). Other emergent marsh species that may be + present, usually to a considerably lesser extent include + salt grass (Distichlis spicata), needle rush (Juncus + romerianus), and roseau cane (Phragmites australis). + Herbaceous species may occur, but do not contribute + significantly to the photographic signature. The emergent + vegetation is usually 0.3 to 1.5 m tall. Signature feature + - brilliant fuchsia with an even texture. + Enumerated_Domain_Value_Definition_Source: Ad hoc MaDS committee + Attribute_Domain_Values: + Enumerated_Domain: + Enumerated_Domain_Value: SS + Enumerated_Domain_Value_Definition: + Scrub/shrub is composed of woody vegetation under 6 meters + in height. Common species include mangrove (Avicennia + germinans), toothache tree (Zanthoxylum clava-herculis), + sugarberry (Celtis laevagata), wax myrtle (Myrica + cerifera), saltbush (Baccharis halimifolia), yaupon (Ilex + vomitoria), marsh elder (Iva frutescens), and live oak + (Quercus virginiana). There are four subclasses, + designated as 1 (Deciduous - uneven texture, color is + variable but generally a pale pink), 2 (Evergreen - uneven + texture, color is variable but generally a dark red), 3 + (Mixed - Uneven texture with highly variable color), and 4 + (Mangrove - uneven to smooth texture with consistent + brilliant red). + Enumerated_Domain_Value_Definition_Source: Ad hoc MaDS committee + Attribute_Domain_Values: + Enumerated_Domain: + Enumerated_Domain_Value: FO + Enumerated_Domain_Value_Definition: + Forest - Forest cover is composed of roughly the same + species as scrub/shrub, but canopy is greater than 6 + meters in height. There are three subclasses, designated + as 1 (Deciduous - uneven texture, color is variable but + generally a pale pink), 3 (Evergreen - Uneven texture, + color is variable but generally a dark red), and 4 (Mixed + - uneven texture with highly variable color). + Enumerated_Domain_Value_Definition_Source: Ad hoc MaDS committee + Attribute_Domain_Values: + Enumerated_Domain: + Enumerated_Domain_Value: AB + Enumerated_Domain_Value_Definition: + Aquatic bed is composed of algae, floating aquatic, rooted + submerged aquatic vegetation. Signature feature - smooth, + smokey texture with variable color from dark purples to + lavender. + Enumerated_Domain_Value_Definition_Source: Ad hoc MaDS committee + Attribute_Domain_Values: + Enumerated_Domain: + Enumerated_Domain_Value: OW + Enumerated_Domain_Value_Definition: + Open water is a vegetation-free water signature that is + consistent with the 1998 NAPP photography as being open + water to differentiate it from recent formation due to + marsh dieback. Signature feature - Even texture and dark + blue. + Enumerated_Domain_Value_Definition_Source: Ad hoc MaDS committee + Attribute_Domain_Values: + Enumerated_Domain: + Enumerated_Domain_Value: US + Enumerated_Domain_Value_Definition: + Unconsolidated shore is exposed vegetation-free soil, sand + or exposed shell bed that is saturated or tidally + inundated. Signature feature - Even texture and gray to + bluish depending on the moisture present. Lack of moisture + results in an even white color. + Enumerated_Domain_Value_Definition_Source: Ad hoc MaDS committee + Attribute_Domain_Values: + Enumerated_Domain: + Enumerated_Domain_Value: RS + Enumerated_Domain_Value_Definition: + Rocky shore is rip-rap deposited as oil canal plugs shore + stabilization structures and other similar features. + Signature feature - smooth texture, brilliant white. + Enumerated_Domain_Value_Definition_Source: Ad hoc MaDS committee + Attribute_Domain_Values: + Enumerated_Domain: + Enumerated_Domain_Value: USS + Enumerated_Domain_Value_Definition: + Upland scrub/shrub may be composed of a large list of + plants including those within the wetland scrub/shrub + signature. There are three subclasses, 1 (Deciduous - + uneven texture, color is variable but generally a pale + pink), 3 (Evergreen - uneven texture, color is variable + but generally a dark red), and 4 (Mixed - uneven texture + with highly variable color). + Enumerated_Domain_Value_Definition_Source: Ad hoc MaDS committee + Attribute_Domain_Values: + Enumerated_Domain: + Enumerated_Domain_Value: UF + Enumerated_Domain_Value_Definition: + Upland forest may be composed of the same species found in + the upland scrub/shrub. The canopy greater than 6 meters. + There are three subclasses, 1 (Deciduous - uneven texture, + color is variable but generally a pale pink), 3 (Evergreen + - uneven texture, color is variable but generally a dark + red), and 4 (Mixed - Uneven texture with highly variable + color). + Enumerated_Domain_Value_Definition_Source: Ad hoc MaDS committee + Attribute_Domain_Values: + Enumerated_Domain: + Enumerated_Domain_Value: UR + Enumerated_Domain_Value_Definition: + Upland range is mown grassland or pastures. Signature + feature - texture is smooth with even light red color. No + dark mottling present (indication of saturated soils). + Enumerated_Domain_Value_Definition_Source: Ad hoc MaDS committee + Attribute_Domain_Values: + Enumerated_Domain: + Enumerated_Domain_Value: UB + Enumerated_Domain_Value_Definition: + Upland barren is recently deposited or bulldozed areas. + Signature feature - texture like oatmeal with a + whitish-gray color. + Enumerated_Domain_Value_Definition_Source: Ad hoc MaDS committee + Attribute_Domain_Values: + Enumerated_Domain: + Enumerated_Domain_Value: UU + Enumerated_Domain_Value_Definition: + Upland urban is developed upland areas containing urban + structures (houses, buildings, etc.) + Enumerated_Domain_Value_Definition_Source: Ad hoc MaDS committee + Attribute_Domain_Values: + Enumerated_Domain: + Enumerated_Domain_Value: IEM + Enumerated_Domain_Value_Definition: + Slightly impacted emergent marsh vegetation. Herbaceous + plants exhibit some color characteristics similar to + healthy vegetation. Signature feature - color is less + brilliant to pale pink with even texture. No soil + exposure.) + Enumerated_Domain_Value_Definition_Source: Ad hoc MaDS committee + Attribute_Domain_Values: + Enumerated_Domain: + Enumerated_Domain_Value: BM2 + Enumerated_Domain_Value_Definition: + Moderately impacted emergent marsh with intact vegetation + signature. Signature feature - faint pink present with + pale, gray-blue to whitish inclusions. Texture is still + smooth without soil exposure. + Enumerated_Domain_Value_Definition_Source: Ad hoc MaDS committee + Attribute_Domain_Values: + Enumerated_Domain: + Enumerated_Domain_Value: USBM + Enumerated_Domain_Value_Definition: + Unconsolidated shore/severly impacted emergent marsh. + Vegetation is less dense with some soil exposure. + Signature feature - color is quite variable. The substrate + color (faintly pale bluish to clear blue) is becoming + increasingly evident through the pale pink to white + vegetation. Texture is clumped white to pink inclusions on + the bluish background. + Enumerated_Domain_Value_Definition_Source: Ad hoc MaDS committee + Attribute_Domain_Values: + Enumerated_Domain: + Enumerated_Domain_Value: USDM + Enumerated_Domain_Value_Definition: + Unconsolidated shore/dead emergent marsh. Stubble present + with exposed soil as dominant signature. Signature feature + - color is gray to bluish-gray with no apparent + photosynthetic tissue. There is no pink component. Texture + is very smooth and even. Color transitions are smooth and + gradual. + Enumerated_Domain_Value_Definition_Source: Ad hoc MaDS committee + Attribute_Domain_Values: + Enumerated_Domain: + Enumerated_Domain_Value: IUS + Enumerated_Domain_Value_Definition: + Impacted, unconsolidated shore. Exposed soil with no + vegetation present. Signature feature - color is dark blue + with absolutely no reddish or pinkish component. Very + little or no white or gray indicating stubble. + Differential from non-impacted unconsolidated shore by use + of 1998 NAPP photography. + Enumerated_Domain_Value_Definition_Source: Ad hoc MaDS committee + Attribute_Domain_Values: + Enumerated_Domain: + Enumerated_Domain_Value: NOW + Enumerated_Domain_Value_Definition: + Impacted open water. These areas were marsh prior to marsh + dieback. These are the most degraded areas with elevation + loss (through erosion and/or subsidence), allowing for the + formation of permanent ponds within the marsh or + confluence with pre-existing open water. Signature feature + - signature is differential from non-impacted open water + by use of 1998 NAPP photography. + Enumerated_Domain_Value_Definition_Source: Ad hoc MaDS committee + Attribute_Domain_Values: + Enumerated_Domain: + Enumerated_Domain_Value: IAB + Enumerated_Domain_Value_Definition: + Impacted aquatic beds. Marsh dieback areas that have been + converted to aquatic vegetation. Signature feature - + signature differentiated from unimpacted aquatic + vegetation by use of 1998 NAPP photography. + Enumerated_Domain_Value_Definition_Source: Ad hoc MaDS committee +Distribution_Information: + Distributor: + Contact_Information: + Contact_Organization_Primary: + Contact_Organization: U.S. Geological Survey, National Wetlands Research Center + Contact_Person: Scott Wilson + Contact_Position: Electrical Engineer + Contact_Address: + Address_Type: Mailing and Physical Address + Address: 700 Cajundome Blvd. + City: Lafayette + State_or_Province: Louisiana + Postal_Code: 70506 + Country: USA + Contact_Voice_Telephone: 337 266-8644 + Contact_Facsimile_Telephone: 337 266-8513 + Contact_Electronic_Mail_Address: scott_wilson@usgs.gov + Hours_of_Service: 8:00 a.m. to 4:00 p.m. Monday Through Friday + Distribution_Liability: + Although these data have been processed successfully on a computer system + at the U.S. Geological Survey, National Wetlands Research Center, no + warranty expressed or implied is made regarding the accuracy or utility of + the data on any other system or for general or scientific purposes, nor + shall the act of distribution constitute any such warranty. This + disclaimer applies both to individual use of the data and aggregate use + with other data. It is strongly recommended that these data are directly + acquired from a Biological Resources Division server, and not indirectly + through other sources which may have changed the data in some way. It is + also strongly recommended that careful attention be paid to the contents + of the metadata file associated with these data. U.S. Geological Survey, + National Wetlands Research Center shall not be held liable for improper or + incorrect use of the data described and/or contained herein. So, these + data are provided "as is" and without any express or implied warranties, + including, without limitation, the implied warranties or merchantability + and fitness for a particular purpose. Also, use of trade names or + commercial products in this metadata is solely for the purpose of + providing specific information, and does not imply recommendation or + endorsement by the US Government. Any downloading and use of these data + signifies a user's agreement to comprehension and compliance of the U.S. + Geological Survey, National Wetlands Research Center Standard Disclaimer. + Insure all portions of metadata are read and clearly understood before + using these data in order to protect both user and U.S. Geological Survey, + National Wetlands Research Center interests. + Standard_Order_Process: + Digital_Form: + Digital_Transfer_Information: + Format_Name: ARCE + Format_Version_Number: 8.3 + File_Decompression_Technique: ARC/INFO Export .e00 Compression Format + Digital_Transfer_Option: + Online_Option: + Computer_Contact_Information: + Network_Address: + Network_Resource_Name: http://www.brownmarsh.net + Fees: None, if data are available online. + Custom_Order_Process: None + +Metadata_Reference_Information: + Metadata_Date: 20030714 + Metadata_Review_Date: 20030723 + Metadata_Contact: + Contact_Information: + Contact_Organization_Primary: + Contact_Organization: U.S. Geological Survey, National Wetlands Research Center + Contact_Position: Metadata specialist + Contact_Address: + Address_Type: Mailing and Physical Address + Address: 700 Cajundome Blvd + City: Lafayette + State_or_Province: Louisiana + Postal_Code: 70506 + Country: USA + Contact_Voice_Telephone: 337 266-8500 + Contact_Facsimile_Telephone: 337 266-8513 + Metadata_Access_Constraints: None + Metadata_Use_Constraints: + Acknowledgement of the National Wetlands Research Center as the metadata + source would be appreciated. Please cite the original metadata when using + portions of the record to create a similar record of slightly altered + data, such as reprojection. + Metadata_Standard_Name: Content Standard for Digital Geospatial Metadata + Metadata_Standard_Version: FGDC-STD-001-1998 diff --git a/office/regression/000_000224.txt b/office/regression/000_000224.txt new file mode 100644 index 0000000..2818f75 --- /dev/null +++ b/office/regression/000_000224.txt @@ -0,0 +1,1122 @@ +/3.1 +(ODB.1 + FirstRootClassName: "Legend" + Roots: 2 + Version: 31 +) + +(Legend.2 + SymType: 0x02 + LegType: 0x08 + ClassType: 0x03 + FieldNames: 3 + Symbols: 4 + Class: 136 + Class: 137 + Class: 138 + Class: 139 + Class: 140 + Class: 141 + Class: 142 + Class: 143 + Class: 144 + Class: 145 + Class: 146 + Class: 147 + Class: 148 + Class: 149 + Class: 150 + Class: 151 + Class: 152 + Class: 153 + Class: 154 + Class: 155 + Class: 156 + Class: 157 + Class: 158 + Class: 159 + Class: 160 + Class: 161 + Class: 162 + Class: 163 + Class: 164 + Class: 165 + StdDevs: 1.00000000000000 + NullSym: 166 + NullValues: 170 + StatValues: 171 + Precision: -3 +) + +(AVStr.3 + S: "Hb_code" +) + +(SymList.4 + Child: 5 + Child: 10 + Child: 14 + Child: 18 + Child: 23 + Child: 28 + Child: 32 + Child: 36 + Child: 40 + Child: 44 + Child: 48 + Child: 53 + Child: 58 + Child: 63 + Child: 67 + Child: 72 + Child: 77 + Child: 81 + Child: 85 + Child: 90 + Child: 94 + Child: 98 + Child: 102 + Child: 106 + Child: 111 + Child: 116 + Child: 120 + Child: 124 + Child: 128 + Child: 132 +) + +(BShSym.5 + Color: 6 + Outline: 1 + OutlineColor: 7 + OutlineWidth: 0.10000000000000 + BgColor: 8 + Style: 0x01 + Stipple: 9 +) + +(TClr.6 + Name: "Transparent" +) + +(TClr.7 + Name: "Transparent" +) + +(TClr.8 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(Stipple.9 + Columns: 8 + Rows: 8 + Bits: 00000000 00000000 +) + +(BShSym.10 + Color: 11 + Outline: 1 + OutlineColor: 12 + OutlineWidth: 0.10000000000000 + BgColor: 13 +) + +(TClr.11 + Red: 0x189 + Green: 0x8200 + Blue: 0x81 +) + +(TClr.12 + Name: "Transparent" +) + +(TClr.13 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(BShSym.14 + Color: 15 + Outline: 1 + OutlineColor: 16 + OutlineWidth: 0.10000000000000 + BgColor: 17 +) + +(TClr.15 + Green: 0xffff +) + +(TClr.16 + Name: "Transparent" +) + +(TClr.17 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(BShSym.18 + Color: 19 + Outline: 1 + OutlineColor: 20 + OutlineWidth: 0.10000000000000 + BgColor: 21 + Style: 0x01 + Stipple: 22 +) + +(TClr.19 + Name: "Transparent" +) + +(TClr.20 + Name: "Transparent" +) + +(TClr.21 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(Stipple.22 + Columns: 8 + Rows: 8 + Bits: 00000000 00000000 +) + +(BShSym.23 + Color: 24 + Outline: 1 + OutlineColor: 25 + OutlineWidth: 0.10000000000000 + BgColor: 26 + Style: 0x01 + Stipple: 27 +) + +(TClr.24 + Name: "Transparent" +) + +(TClr.25 + Name: "Transparent" +) + +(TClr.26 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(Stipple.27 + Columns: 8 + Rows: 8 + Bits: 00000000 00000000 +) + +(BShSym.28 + Color: 29 + Outline: 1 + OutlineColor: 30 + OutlineWidth: 0.10000000000000 + BgColor: 31 +) + +(TClr.29 + Red: 0xc51c + Green: 0xfeff + Blue: 0xc33b +) + +(TClr.30 + Name: "Transparent" +) + +(TClr.31 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(BShSym.32 + Color: 33 + Outline: 1 + OutlineColor: 34 + OutlineWidth: 0.10000000000000 + BgColor: 35 +) + +(TClr.33 + Red: 0xb4e3 + Green: 0xfdff + Blue: 0xfd +) + +(TClr.34 + Name: "Transparent" +) + +(TClr.35 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(BShSym.36 + Color: 37 + Outline: 1 + OutlineColor: 38 + OutlineWidth: 0.10000000000000 + BgColor: 39 +) + +(TClr.37 + Red: 0x299 + Green: 0xdbff + Blue: 0xdb +) + +(TClr.38 + Name: "Transparent" +) + +(TClr.39 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(BShSym.40 + Color: 41 + Outline: 1 + OutlineColor: 42 + OutlineWidth: 0.10000000000000 + BgColor: 43 +) + +(TClr.41 + Red: 0x6e7 + Green: 0x75ff + Blue: 0x75 +) + +(TClr.42 + Name: "Transparent" +) + +(TClr.43 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(BShSym.44 + Color: 45 + Outline: 1 + OutlineColor: 46 + OutlineWidth: 0.10000000000000 + BgColor: 47 +) + +(TClr.45 + Red: 0x2c0 + Green: 0x2eff + Blue: 0x2e +) + +(TClr.46 + Name: "Transparent" +) + +(TClr.47 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(BShSym.48 + Color: 49 + Outline: 1 + OutlineColor: 50 + OutlineWidth: 0.10000000000000 + BgColor: 51 + Style: 0x01 + Stipple: 52 +) + +(TClr.49 + Name: "Transparent" +) + +(TClr.50 + Name: "Transparent" +) + +(TClr.51 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(Stipple.52 + Columns: 8 + Rows: 8 + Bits: 00000000 00000000 +) + +(BShSym.53 + Color: 54 + Outline: 1 + OutlineColor: 55 + OutlineWidth: 0.10000000000000 + BgColor: 56 + Style: 0x01 + Stipple: 57 +) + +(TClr.54 + Name: "Transparent" +) + +(TClr.55 + Name: "Transparent" +) + +(TClr.56 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(Stipple.57 + Columns: 8 + Rows: 8 + Bits: 00000000 00000000 +) + +(BShSym.58 + Color: 59 + Outline: 1 + OutlineColor: 60 + OutlineWidth: 0.10000000000000 + BgColor: 61 + Style: 0x01 + Stipple: 62 +) + +(TClr.59 + Red: 0xea72 + Green: 0x58a2 + Blue: 0xdf07 +) + +(TClr.60 + Name: "Transparent" +) + +(TClr.61 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(Stipple.62 + Columns: 8 + Rows: 8 + Bits: 00000000 00000000 +) + +(BShSym.63 + Color: 64 + Outline: 1 + OutlineColor: 65 + OutlineWidth: 0.10000000000000 + BgColor: 66 +) + +(TClr.64 + Red: 0x299 + Green: 0xdc00 + Blue: 0xdb +) + +(TClr.65 + Name: "Transparent" +) + +(TClr.66 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(BShSym.67 + Color: 68 + Outline: 1 + OutlineColor: 69 + OutlineWidth: 0.10000000000000 + BgColor: 70 + Style: 0x01 + Stipple: 71 +) + +(TClr.68 + Red: 0x59ce + Green: 0xf9bc + Blue: 0xa6af +) + +(TClr.69 + Name: "Transparent" +) + +(TClr.70 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(Stipple.71 + Columns: 8 + Rows: 8 + Bits: 00000000 00000000 +) + +(BShSym.72 + Color: 73 + Outline: 1 + OutlineColor: 74 + OutlineWidth: 0.10000000000000 + BgColor: 75 + Style: 0x01 + Stipple: 76 +) + +(TClr.73 + Red: 0xd9ce + Green: 0x7966 + Blue: 0x3ea +) + +(TClr.74 + Name: "Transparent" +) + +(TClr.75 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(Stipple.76 + Columns: 8 + Rows: 8 + Bits: 00000000 00000000 +) + +(BShSym.77 + Color: 78 + Outline: 1 + OutlineColor: 79 + OutlineWidth: 0.10000000000000 + BgColor: 80 +) + +(TClr.78 + Red: 0x299 + Green: 0xdc00 + Blue: 0xdb +) + +(TClr.79 + Name: "Transparent" +) + +(TClr.80 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(BShSym.81 + Color: 82 + Outline: 1 + OutlineColor: 83 + OutlineWidth: 0.10000000000000 + BgColor: 84 +) + +(TClr.82 + Red: 0xc3b5 + Green: 0xff00 + Blue: 0xc33b +) + +(TClr.83 + Name: "Transparent" +) + +(TClr.84 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(BShSym.85 + Color: 86 + Outline: 1 + OutlineColor: 87 + OutlineWidth: 0.10000000000000 + BgColor: 88 + Style: 0x03 + Stipple: 89 +) + +(TClr.86 + Red: 0xa610 + Green: 0xff00 + Blue: 0xa559 +) + +(TClr.87 + Name: "Transparent" +) + +(TClr.88 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(Stipple.89 + Columns: 8 + Rows: 8 + Bits: 03060c18 3060c081 +) + +(BShSym.90 + Color: 91 + Outline: 1 + OutlineColor: 92 + OutlineWidth: 0.10000000000000 + BgColor: 93 +) + +(TClr.91 + Green: 0xffff +) + +(TClr.92 + Name: "Transparent" +) + +(TClr.93 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(BShSym.94 + Color: 95 + Outline: 1 + OutlineColor: 96 + OutlineWidth: 0.10000000000000 + BgColor: 97 +) + +(TClr.95 + Red: 0x93ff + Green: 0x909b + Blue: 0x3d47 +) + +(TClr.96 + Name: "Transparent" +) + +(TClr.97 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(BShSym.98 + Color: 99 + Outline: 1 + OutlineColor: 100 + OutlineWidth: 0.10000000000000 + BgColor: 101 +) + +(TClr.99 + Red: 0xb599 + Green: 0xff00 + Blue: 0xfe +) + +(TClr.100 + Name: "Transparent" +) + +(TClr.101 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(BShSym.102 + Color: 103 + Outline: 1 + OutlineColor: 104 + OutlineWidth: 0.10000000000000 + BgColor: 105 +) + +(TClr.103 + Red: 0xb7b7 + Green: 0xdfdf + Blue: 0x8686 +) + +(TClr.104 + Name: "Transparent" +) + +(TClr.105 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(BShSym.106 + Color: 107 + Outline: 1 + OutlineColor: 108 + OutlineWidth: 0.10000000000000 + BgColor: 109 + Style: 0x01 + Stipple: 110 +) + +(TClr.107 + Red: 0xede9 + Green: 0x6732 + Blue: 0xd72c +) + +(TClr.108 + Name: "Transparent" +) + +(TClr.109 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(Stipple.110 + Columns: 8 + Rows: 8 + Bits: 00000000 00000000 +) + +(BShSym.111 + Color: 112 + Outline: 1 + OutlineColor: 113 + OutlineWidth: 0.10000000000000 + BgColor: 114 + Style: 0x01 + Stipple: 115 +) + +(TClr.112 + Red: 0x217e + Green: 0x6700 + Blue: 0x9ed9 +) + +(TClr.113 + Name: "Transparent" +) + +(TClr.114 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(Stipple.115 + Columns: 8 + Rows: 8 + Bits: 00000000 00000000 +) + +(BShSym.116 + Color: 117 + Outline: 1 + OutlineColor: 118 + OutlineWidth: 0.10000000000000 + BgColor: 119 +) + +(TClr.117 + Red: 0x925b + Green: 0xadff + Blue: 0x2f93 +) + +(TClr.118 + Name: "Transparent" +) + +(TClr.119 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(BShSym.120 + Color: 121 + Outline: 1 + OutlineColor: 122 + OutlineWidth: 0.10000000000000 + BgColor: 123 +) + +(TClr.121 + Red: 0x299 + Green: 0xdbff + Blue: 0xdb +) + +(TClr.122 + Name: "Transparent" +) + +(TClr.123 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(BShSym.124 + Color: 125 + Outline: 1 + OutlineColor: 126 + OutlineWidth: 0.10000000000000 + BgColor: 127 +) + +(TClr.125 + Red: 0xa82a + Green: 0xfeff + Blue: 0xa559 +) + +(TClr.126 + Name: "Transparent" +) + +(TClr.127 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(BShSym.128 + Color: 129 + Outline: 1 + OutlineColor: 130 + OutlineWidth: 0.10000000000000 + BgColor: 131 +) + +(TClr.129 + Red: 0x12e + Green: 0x63ff + Blue: 0x63 +) + +(TClr.130 + Name: "Transparent" +) + +(TClr.131 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(BShSym.132 + Color: 133 + Outline: 1 + OutlineColor: 134 + OutlineWidth: 0.10000000000000 + BgColor: 135 +) + +(TClr.133 + Name: "Transparent" +) + +(TClr.134 + Name: "Transparent" +) + +(TClr.135 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(LClass.136 + IsText: 1 + Label: "FLORIDA - Perdido Bay to Mosquito Lagoon" + Precision: -3 +) + +(LClass.137 + IsText: 1 + Label: "Continuous (FFWCC/FMRI) " + MinStr: "Sg: cont" + MaxStr: "Sg: cont" + Precision: -3 +) + +(LClass.138 + IsText: 1 + Label: "Discontinuous (FFWCC/FMRI) " + MinStr: "Sg: disc" + MaxStr: "Sg: disc" + Precision: -3 +) + +(LClass.139 + IsText: 1 + Precision: -3 +) + +(LClass.140 + IsText: 1 + Label: "MISSISSIPPI - Mississippi Sound & LOUISIANA - Chandeleur Islands" + Precision: -3 +) + +(LClass.141 + IsText: 1 + Label: "Very sparse (10% or less crown cover), (NWRC) " + MinStr: "Sg: PSG1" + MaxStr: "Sg: PSG1" + Precision: -3 +) + +(LClass.142 + IsText: 1 + Label: "Sparse (15%-40%), (NWRC) " + MinStr: "Sg: PSG2" + MaxStr: "Sg: PSG2" + Precision: -3 +) + +(LClass.143 + IsText: 1 + Label: "Moderate (45%-70%), (NWRC) " + MinStr: "Sg: PSG3" + MaxStr: "Sg: PSG3" + Precision: -3 +) + +(LClass.144 + IsText: 1 + Label: "Dense (75%-85%), (NWRC) " + MinStr: "Sg: PSG4" + MaxStr: "Sg: PSG4" + Precision: -3 +) + +(LClass.145 + IsText: 1 + Label: "Continuous (90% or more), (NWRC) " + MinStr: "Sg: CSG" + MaxStr: "Sg: CSG" + Precision: -3 +) + +(LClass.146 + IsText: 1 + Precision: -3 +) + +(LClass.147 + IsText: 1 + Label: "TEXAS" + Precision: -3 +) + +(LClass.148 + IsText: 1 + Label: "Matagorda Bay area" + Precision: -3 +) + +(LClass.149 + IsText: 1 + Label: "General (NWI) " + MinStr: "Sg" + MaxStr: "Sg" + Precision: -3 +) + +(LClass.150 + IsText: 1 + Precision: -3 +) + +(LClass.151 + IsText: 1 + Label: "San Antonio Bay to Corpus Christi Bay" + Precision: -3 +) + +(LClass.152 + IsText: 1 + Label: "Continuous (TPWD) " + MinStr: "Sg: c" + MaxStr: "Sg: c" + Precision: -3 +) + +(LClass.153 + IsText: 1 + Label: "Patchy (TPWD)" + MinStr: "Sg: p" + MaxStr: "Sg: p" + Precision: -3 +) + +(LClass.154 + IsText: 1 + Label: "Patchy & prop scars (TPWD)" + MinStr: "Sg: pp" + MaxStr: "Sg: pp" + Precision: -3 +) + +(LClass.155 + IsText: 1 + Label: "SAV (TPWD) " + MinStr: "Sg: sav" + MaxStr: "Sg: sav" + Precision: -3 +) + +(LClass.156 + IsText: 1 + Label: "Wrack & continuous (TPWD)" + MinStr: "Sg: wc" + MaxStr: "Sg: wc" + Precision: -3 +) + +(LClass.157 + IsText: 1 + Label: "Wrack & patchy (TPWD) " + MinStr: "Sg: ws" + MaxStr: "Sg: ws" + Precision: -3 +) + +(LClass.158 + IsText: 1 + Label: "Wrack, patchy & prop scars (TPWD) " + MinStr: "Sg: wp" + MaxStr: "Sg: wp" + Precision: -3 +) + +(LClass.159 + IsText: 1 + Precision: -3 +) + +(LClass.160 + IsText: 1 + Label: " Laguna Madre & Baffin Bay area" + Precision: -3 +) + +(LClass.161 + IsText: 1 + Label: "Halophila engelmanni (USFWS - NBS) " + MinStr: "Sg: He" + MaxStr: "Sg: He" + Precision: -3 +) + +(LClass.162 + IsText: 1 + Label: "Halodule wrightii (USFWS - NBS)" + MinStr: "Sg: Hw" + MaxStr: "Sg: Hw" + Precision: -3 +) + +(LClass.163 + IsText: 1 + Label: "MIXED (Syringodium filiforme etc.), (USFWS - NBS) " + MinStr: "Sg: MIXED" + MaxStr: "Sg: MIXED" + Precision: -3 +) + +(LClass.164 + IsText: 1 + Label: "Thalassia testudinum (USFWS - NBS) " + MinStr: "Sg: Tt" + MaxStr: "Sg: Tt" + Precision: -3 +) + +(LClass.165 + IsNoData: 1 + IsText: 1 + Label: "No Data" + Precision: -3 +) + +(BShSym.166 + Color: 167 + Outline: 1 + OutlineColor: 168 + OutlineWidth: 0.10000000000000 + BgColor: 169 +) + +(TClr.167 + Name: "Transparent" +) + +(TClr.168 + Name: "Transparent" +) + +(TClr.169 + Red: 0xffff + Green: 0xffff + Blue: 0xffff +) + +(NameDict.170 +) + +(NameDict.171 +) + diff --git a/office/regression/000_000226.txt b/office/regression/000_000226.txt new file mode 100644 index 0000000..bcc37c1 --- /dev/null +++ b/office/regression/000_000226.txt @@ -0,0 +1,4735 @@ +Braille Books 1995-1996 + +National Library Service for the +Blind and Physically Handicapped +Library of Congress +Washington 1997 + +Fiction + +Adventure + +The Call of the Wild BR 9833 +by Jack London +1 volume +Buck, a St. Bernard, is stolen and trained to be a sled dog +in the Alaska gold fields. Abused by both men and dogs, Buck +learns to fight ruthlessly until he finds in John Thornton a +master he loves and respects. For junior and senior high and +older readers. 1903. + +The Celestine Prophecy: An Adventure BR 9732 +by James Redfield +2 volumes +The author embarks on a search for an ancient Peruvian +manuscript that predicts a massive transformation in human +society. He meets with resistance from government and church +authorities in Peru, who attempt to suppress knowledge of +the manuscript. He persists, however, discovering nine +spiritual insights in separate encounters, beginning with +the most common--an awareness of coincidences in life. Some +strong language. Bestseller 1993. + +The Commodore BR 10224 +by Patrick O'Brian +3 volumes +As in sixteen previous tales in this series, Jack Aubrey and +Stephen Maturin occupy center stage. Upon their return to +England, the seafaring duo face several domestic +adjustments. Just as life on land becomes very interesting, +Captain Aubrey is ordered to Africa. But the Napoleonic Wars +are not over, so another, secret order redirects the +commodore to Ireland to intercept the French. Some strong +language. 1994. + +The Lost World BR 10243 +by Michael Crichton +3 volumes +This sequel to Jurassic Park (BR 9345) is set six years +after the dinosaur island park disaster in which humans +fought off genetically engineered replicas of prehistoric +animals. One survivor of that attack is now a member of a +group who return to the area and meet up with the remaining +dinosaurs. Strong language and violence. Bestseller 1995. + +The Reverse of the Medal BR 9868 +by Patrick O'Brian +2 volumes +Having successfully completed his mission in the Atlantic, +Captain Jack Aubrey is now back in London. While there he +makes some investments that suddenly put his career in +jeopardy. Once again his ship's surgeon, Stephen Maturin, +comes to his rescue. 1986. + +She BR 9971 +by H. Rider Haggard +3 volumes +An Englishman journeys to Africa to track down the evil +queen who, according to an ancient manuscript, murdered one +of his ancestors. In the jungle he meets with the beautiful, +ageless white goddess, "She," who falls in love with him and +shares the secret of the Pillar of Life. Some violence. +1887. + +Treason's Harbour BR 9869 +by Patrick O'Brian +3 volumes +Following a battle off the Ionian islands, Captain Jack +Aubrey and Dr. Stephen Maturin are in Malta, where both of +Aubrey's ships, the Worcester and the Surprise, are +undergoing repairs. While Aubrey concerns himself with the +reconditioning work, Maturin, surgeon and spy, learns that +agents of Napoleon are planning to sabotage Aubrey's next +mission. 1983. + +White Fang BR 9693 +by Jack London +1 volume +A wolf-dog, rescued from danger and tamed by a kind master, +redeems his brute nature by defending his master's family against an escaped convict. For junior +and senior high and older readers. 1905. + +Classics + +Around the World in Eighty Days BR 9468 +by Jules Verne +2 volumes +Phileas Fogg is certain that he can travel around the world +in eighty days--an incredibly short period of time in 1873. +He's so sure that it can be done that he's wagered half of +his fortune and set off on the grand adventure with his +servant Passepartout. For high school and older readers. +1874. + +The Call of the Wild BR 9833 +by Jack London +1 volume +Buck, a St. Bernard, is stolen and trained to be a sled dog +in the Alaska gold fields. Abused by both men and dogs, Buck +learns to fight ruthlessly until he finds in John Thornton a +master he loves and respects. For junior and senior high and +older readers. 1903. + +Doctor Zhivago BR 9814 +by Boris Pasternak +5 volumes +The story of a Russian physician and poet during the early +decades of the twentieth century. Yurii Zhivago, an +individualist and something of an outsider, is separated +from his wife by the Bolsheviks and falls in love with Lara, +the wife of another man. Pasternak's portrait of Russian +life during the post-revolution years includes an epilogue +expressing hope for liberation and freedom in the future. +1958. + +The Grapes of Wrath BR 9954 +by John Steinbeck +5 volumes +Pulitzer Prize-winning story of the Joads from Oklahoma, +who, along with other families during the Great Depression, +are driven from their dust-bowl farms by the encroachment of +large agricultural interests. They set out, like generations +before them, to the promised land of California to find +work. Instead they face organized opposition to their +struggle to survive. Strong language. 1939. + +Hilda Lessways BR 9851 +by Arnold Bennett +3 volumes +This companion to Clayhanger (BR 9121) begins in 1878 in +Turnhill, England, where twenty-one-year-old Hilda Lessways +finds life with her widowed mother unfulfilling. Afraid that +her inheritance will be squandered by her mother, Hilda +gathers her courage and seeks the advice of attorney George +Cannon. Cannon offers Hilda a vocation, and her life begins +to change. Then a second man enters her life: Edwin +Clayhanger. 1911. + +The Life and Adventures of Martin Chuzzlewit BR 10218 +by Charles Dickens +8 volumes +Old Chuzzlewit, surrounded by a selfish family, sees the +same traits forming in his grandson Martin and kicks him out +of the house. Penniless, young Martin makes his way to +America to seek his fortune. After a series of difficult +experiences, he is cured of his greed. Other members of the +Chuzzlewit clan have their own selfish goals, including a +plot to murder Old Chuzzlewit. 1844. + +Lord of the Flies BR 9480 +by William Golding +2 volumes +With horrifying implications, this novel relates the +experiences of a group of English boys who are wrecked on a +desert island and have to establish their own system of +government. For junior and senior high and older readers. +1954. + +The Mysterious Island BR 10097 +by Jules Verne +2 volumes +During the Civil War, Northerner and engineer Cyrus Smith is +a Southern captive. He escapes by hot-air balloon with three +other men, a boy, and a dog. A storm blows them to an +island, but Smith is lost at sea. Later the others find him, +but no one can explain how he reached land. Mysterious +events and resourcefulness help them survive the next four +years. Sequel to Twenty Thousand Leagues under the Sea (BR +9469). For high school and older readers. 1870. + +The Prince and the Pauper BR 9695 +by Mark Twain +2 volumes +The future Edward VI of England and a young pauper agree to +trade places for a few days. The pauper becomes king, and he +finds it quite insufferable. Meanwhile, the prince is +roaming the street in tatters. People and circumstances +almost make the role reversal permanent. For junior and +senior high and older readers. 1882. + +The Scarlet Letter BR 9407 +by Nathaniel Hawthorne +2 volumes +First published in 1850, this symbolic novel set in Puritan +New England traces the effects of one particular sin on the +lives of four people. Hester Prynne is forced to wear her +sin openly in the form of a scarlet letter "A" for adultery. +The other characters are Hester's child; her husband, who +seeks vengeance; and the minister, who conceals his guilt. +1850. + +Sons and Lovers BR 9812 +by D.H. Lawrence +5 volumes +Restored text. Story of Paul and William Morel, brothers who +bear witness to the tensions of their working-class parents. +William adopts the bitterness that his father expresses too +freely. Paul, the younger, finds one woman appealing and +another exciting, but can elicit for neither the sensitive +feelings he has for his mother. Some strong language and +some descriptions of sex. 1913. + +These Twain BR 9853 +by Arnold Bennett +4 volumes +In the third volume of the Clayhanger trilogy that includes +Clayhanger (BR 9121) and Hilda Lessways (BR 9851), Edwin and +Hilda have married after Hilda's "tragic adventure with a +rascal and a bigamist," and her son by George Cannon is now +ten years old. The book begins with an "at home" gathering +at the Clayhangers' in 1892 and follows the ups and downs of +their marriage through the next five years. 1915. + +Tom Brown's Schooldays BR 9429 +by Thomas Hughes +3 volumes +Tom Brown is from a long line of Browns who claim that the +British nation owes much of its greatness to them. As a +young boy, Tom, the son of a squire, is encouraged to play +with the village boys. But at the age of nine, Tom is packed +off to Rugby, where he fears but learns to respect the +famous Dr. Arnold; develops long-lasting friendships; and +gets involved in typical English schoolboy adventures, +including the inevitable fights. 1857. + +Twenty-Thousand Leagues under the Sea BR 9469 +by Jules Verne +3 volumes +A nineteenth-century science fiction tale of an electric +submarine, the Nautilus; its eccentric captain, Captain +Nemo; and the undersea world. The novel anticipates many of +the scientific achievements of the twentieth century. For +junior and senior high and older readers. 1869. + +War and Peace BR 9710 +by Leo Tolstoy +14 volumes +First published in 1869, this epic novel deals with Russia +and France at the time of Napoleon Bonaparte. It describes +the invasion of Russia by Napoleon and his army and presents +the author's theories of history. 1869. + +The War of the Worlds BR 9590 +by H.G. Wells +2 volumes +The Martians, a loathsome though highly organized race, +invade England and, with their superior weapons, subdue and +prey on the people. For high school and adult readers. 1898. + + +Family + +Dancing on Glass BR 9675 +by Susan Taylor Chehak +2 volumes +Adolescent Wolfgang Von Vechten, angry that his mother had +to marry his late father's business partner, kills the man +and hangs himself. Years later, his nephew Bader marries the +partner's great-granddaughter Katherine. But Bader becomes +involved with a neighbor's teenaged son, and when Katherine +crashes to her death while dancing on a skylight, history +repeats itself. Strong language, violence, and explicit +descriptions of sex. 1993. + +Family Games BR 9964 +by Jean Stubbs +3 volumes +Blanche Malpas's mother, Sybil, invites her grown children +to spend Christmas with her and their father, Tony, at their +Cornwall home. Tony has ignored Blanche since the birth of +her illegitimate son, Aaron. The reunion is interrupted by +unexpected guests: Aaron's father; Tony's mysterious sister, +Tasha; and the estranged wife of Blanche's brother. And +Blanche learns the shocking truth about her parentage. +Strong language. 1994. + +The Hundred Secret Senses BR 10230 +by Amy Tan +3 volumes +Although Olivia is disappointed and often embarrassed by her +Chinese-born half sister, she tolerates Kwan's eccentric, +brassy, meddlesome ways and even her incessant discussions +with nineteenth-century Chinese ghosts. Olivia is also +disappointed with her marriage and its own ghost. Eventually +Kwan helps Olivia to understand loyalty and unconditional +love. Some violence, some descriptions of sex, and some +strong language. Bestseller 1995. + +The Mother: The Good Earth Trilogy, Volume 3 BR 9579 +by Pearl S. Buck +2 volumes +Sequel to Sons (BR 9578). A Chinese peasant, overwhelmed by +the responsibility of an aged mother, a wife, and small +children and by the routine of his daily life, is stimulated +by travelers' tales and gambler's luck and suddenly deserts +his family. The young mother slaves to support everyone with +a devotion that achieves its reward at last in a grandchild. +1934. + +The Seventh Stone BR 9442 +by Nancy Freedman +4 volumes +World War II is drawing to a close, and Noboru Sanogawa, +unhappy in his marriage to Momoko, chooses death with honor +as a kamikaze pilot. Besides his wife, he leaves behind a +young son, Akio. As Momoko tries to remake her life within +traditional Japanese society, she watches Akio seek to +avenge his father's death by building a worldwide financial +network. Some violence, some strong language, and some +descriptions of sex. 1992. + +Song of Solomon BR 9632 +by Toni Morrison +3 volumes (Reissue) +This novel surveys nearly a century of American history as +it impinges upon four generations of a single black family. +Macon Dead III, known as Milkman, is the first black baby +allowed to be born in Mercy Hospital in the 1930s. Milkman +undertakes an epic journey into an understanding of his +family's heritage and, hence, himself. Strong language and +descriptions of sex. 1977. + +Fantasy + +Aegypt BR 9605 +by John Crowley +4 volumes +Pierce Moffett, an out-of-work professor, and Rosie +Rasmussen, a young divorcee, are drawn together by their +love for the historical novels of the reclusive and +eccentric Fellowes Kraft. They soon find themselves on the +trail of an alternate history of the world, full of angels, +magic, and the hidden lore of a country known as Aegypt. +1987. + +Both Sides of Time BR 10273 +by Caroline B. Cooney +2 volumes +Annie wants romance from her boyfriend, Sean, but he's only +interested in cars. While visiting his apartment at the +crumbling Stratton mansion, Annie wanders through the +building, sad that it is to be demolished. Suddenly, she is +pulled back a century to 1895 and meets Strat, young heir to +the mansion. The period is romantic but not kind to women or +immigrant groups, and a murder threatens Annie and her new +friends. For junior and senior high readers. 1995. + +The Catswold Portal BR 9804 +by Shirley Rousseau Murphy +3 volumes +A fantasy set in 1957 Earth and in the Netherworld or world +of faerie. Queen Siddonie, pretender to the throne of +faerie, plans to conquer the Netherworld--an act that would +profoundly affect the upper world. The true queen, +seventeen-year-old Melissa, has been transformed into a +calico cat and has taken up residence with artist Braden +West, who lives near the portal between the two worlds. For +high school and older readers. 1992. + +Dinotopia: A Land Apart from Time BR 9906 +by James Gurney +1 volume +In 1860 biologist Arthur Denison and his son Will sail from +Boston on a voyage of discovery. Two years later they are +shipwrecked and carried by dolphins to the lost island of +Dinotopia. There dinosaurs and people live harmoniously +together, sharing the dinosaurs' centuries of knowledge and +the newer learning brought by the humans. For junior and +senior high and older readers. Bestseller 1992. + +The Dragon at War BR 9385 +by Gordon R. Dickson +3 volumes +Dragon Knight Sir James Eckert loses the help of his +powerful ally, the magician Carolinus, just as the French, +allied with a host of nasty sea serpents, begin the invasion +of England. Alone with his lesser powers of magic and the +ability to transform himself into a dragon, Eckert faces the +evil mastermind behind the raid. Sequel to Dragon on the +Border (BR 9384). 1992. + +The Dragon on the Border BR 9384 +by Gordon R. Dickson +3 volumes +Twentieth-century American Jim Eckert, now Baron de +Malencontri et Riveroak, continues his sojourn in medieval +England. As he and Sir Brian travel toward the Scottish +border, they are met by several men who appear to be riding +on invisible steeds. They soon discover that England is +being invaded by Hollow Men, and, unfortunately, these men +when killed can be restored to life as long as one Hollow +Man lives. Sequel to Dragon Knight (BR 9094). 1992. + +The Fellowship of the Ring: Being the First Part of The Lord +of the Rings BR 9745 +by J.R.R. Tolkien +5 volumes +In this first volume of The Lord of the Rings, Frodo, a +home-loving hobbit, inherits the magic ring that his Uncle +Bilbo brought back from his adventures in The Hobbit. To +protect the ring from the powers of darkness, Frodo must +make a long, dangerous journey. 1954. + +Into the Green BR 9588 +by Charles De Lint +2 volumes +Traveling with her father's band of tinkers, +fifteen-year-old Angharad learns that she has "the sight" +when she meets a witch and his grandson Garrow. Shortly +after she and Garrow marry, a plague kills him and everyone +Angharad knows. Accepting the life of a witch, Angharad +obtains the gift of harping and meets a tree wizard. Soon, +the wizard has a dangerous mission into the green that only +Angharad can accomplish. Strong language and violence. 1993. + +The Little Country BR 9380 +by Charles De Lint +5 volumes +Musician Janey Little discovers an unknown fantasy novel, +entitled The Little Country, in her grandfather's Cornwall +home. She finds that the book contains a magic that somehow +connects her real-world life with the action of the story +itself. A chain of events is unleashed in both the actual +world and the book that brings the forces of good and evil +into sharp conflict. 1991. + +Love and Sleep BR 10083 +by John Crowley +1 volume +Pierce Moffett delves deeper into Renaissance metaphysics in +an attempt to come to grips with the modern world where he +has always felt out of place. Memories of his childhood, +coupled with his studies of Renaissance mystics, now seem to +reach out of the past, intertwining with his present, and he +perceives that he is on the threshold of a magical change in +his life, and perhaps in the universe itself. Sequel to +Aegypt (BR 9605). 1994. + +Orlando: A Biography BR 9501 +by Virginia Woolf +2 volumes +Fantasy about a young Elizabethan nobleman who, by book's +end, has been transformed into a young woman. The author +examines English literary and social history through the +three hundred years of Orlando's life, and the +transformation emphasizes Woolf's belief that women are the +intellectual equals of men. 1928. + +The Return of the King: Being the Third Part of The Lord of +the Rings BR 9749 +by J.R.R. Tolkien +5 volumes +In this third volume of the Ring trilogy, Frodo and Sam bear +the ring to Mount Doom. The War of the Rings, fought between +the forces for good and the Dark Lord of evil, is ended. +Sequel to The Two Towers (BR 9747). 1955. + +Strange Devices of the Sun and Moon BR 9553 +by Lisa Goldstein +3 volumes +London, 1590. A band of faeries invades the city as +conspirators plot to unseat Queen Elizabeth I. The sprites +are looking for their long-awaited king, Arthur--son of +Alice Wood, a widowed bookseller. But also searching are +alchemist Paul Hogg and famed London author Christopher +Marlowe. As their paths cross with the faeries, a battle +between good and evil ensues. For high school and older +readers. 1993. + +The Two Towers: Being the Second Part of The Lord of the +Rings BR 9747 +by J.R.R. Tolkien +4 volumes +In this second volume of The Lord of the Rings, the +now-separated companions of the Ring meet Saruman the +wizard, cross the Dead Marshes, and prepare for the Great +War in which the power of the Ring will be undone. Sequel to +The Fellowship of the Ring (BR 9745). 1954. + +When Bobby Kennedy Was a Moving Man BR 9528 +by Robert Ellis Gordon +1 volume +Seattle moving man Stanley Higgins is surprised to find +himself working with Bobby Kennedy, who has been sent back +to Earth with a few powers. But Bobby soon angers the gods +by abusing these gifts, gets fired, and attempts to murder +the mobster he holds responsible for Jack Kennedy's death. +In prison, Bobby hallucinates about his first life. Strong +language, explicit descriptions of sex, and some violence. +1994. + +Wilderness BR 9478 +by Dennis Danvers +2 volumes +Alice White's secret has prevented her from getting close to +people, because either they would think she is insane or +they would believe her and be horrified. When Alice falls in +love with biology professor Erik Summers, she decides to +risk everything and tell him the truth: ever since puberty, +Alice has changed into a wolf during each full moon. Strong +language, explicit descriptions of sex, and some violence. +1991. + +General + +Alma BR 10350 +by Gordon Burn +2 volumes +Burn bases this 1991 Whitbread Prize novel on the life of +Alma Cogan, a 1950s British singer who died of cancer in +1966. In Burn's tale, Alma is still alive in 1986, and she +explores the complex relationship between her public and +private life. Some strong language and some violence. 1991. + +The Book of Dreams BR 9838 +by Craig Nova +3 volumes +Marta works at the Hollywood Romance Advertiser. When an +errand for her boss ends in murder, Marta's ex-con neighbor, +Victor, who has been secretly following her, insists Marta +help him in a blackmail scheme. Cleaning offices, Victor has +stumbled upon tapes of a movie star's therapy sessions. +Meanwhile, Victor loses the boy he is assigned to as a Big +Brother, and a wealthy man falls for Marta. Strong language +and some violence. 1994. + +California Angel BR 10106 +by Nancy Taylor Rosenberg +2 volumes +Toy Johnson's husband is annoyed when she gives money to her +needy students. What is this compulsion to help children +that drives Toy time after time? And how are her efforts to +help children related to her dreams and to her recurring +cardiac episodes? While on a trip to New York with a friend, +she has an attack and finds herself saving a child from a +burning building. Then she is arrested for kidnapping. +Bestseller 1995. + +The Diary of Emily Dickinson BR 9760 +by Jamie Fuller +1 volume +This fictional diary of the thirty-seventh year of +nineteenth-century poet Emily Dickinson contains 102 +entries, twenty-five "new" poems, and biographical and other +editorial comments. The premise is that a workman found this +diary hidden in a wall after Dickinson's death. Enthralled, +he kept it secret until shortly before he died. This "window +into her thoughts" reflects the themes found in Dickinson's +poems and letters. 1993. + +Emily Louise BR 9861 +by Joan Darlington Beam +2 volumes +Twenty-nine-year-old Theresa Freidmann has been confined to +her bed in a nursing home for five years because of +arthritis. She is annoyed when "shameless" Emily Louise +begins working at the home and disrupts Theresa's +predictable life. Emily Louise dyes Theresa's hair, scolds +her for not doing things for herself, and warns her that her +lawyer may be after her money. Theresa's anger fades as she +begins to enjoy life again. Some strong language. 1994. + +Fat Lightning BR 9963 +by Howard Owen +2 volumes +When Nancy's husband, Sam, gets fed up with his pharmacist +job in Richmond, he takes Nancy and their toddler son back +to his hometown, where his surly uncle Lot has a +long-burning mountain of sawdust on his land. As Nancy and +Sam face extramarital temptations, Lot's solitary life +changes when he discovers an image of Jesus on his barn. +Years later, Nancy writes a novel about what happened to +Lot. Strong language, descriptions of sex, and some +violence. 1994. + +The Gates of Ivory BR 9423 +by Margaret Drabble +4 volumes +In A Natural Curiosity (BR 8228), Drabble portrayed the +lives of British women Liz, Alix, and Esther, friends since +college. In this sequel, Liz, a London psychiatrist, +receives an odd package from her longtime friend Stephen +Cox, who has gone to Cambodia. As Liz searches for Stephen +in Southeast Asia, glimpses of his life and the lives of Liz +and her two friends are revealed. Some strong language and +some descriptions of sex. 1991. + +Ghosts BR 9511 +by John Banville +2 volumes +Novel by Irish author of The Book of Evidence (BR 8400) +blends real people, ghosts, and painted figures. When seven +day-trip passengers come ashore after their pleasure boat is +wrecked, they descend upon the island household of Professor +Kreutznaer, who is engaged in writing art history. It seems +that the occupants of the boat and the house have reason to +study one another. 1993. + +The Holy Man BR 10232 +by Susan Trott +1 volume +Joe is a holy man who lives on a mountaintop with several +other monks. During the summer, there is a steady line of +people from all walks of life coming up the mountain path to +see Joe and to hear his words of wisdom. Each pilgrim comes +to Joe with a problem addressing themes such as violence, +love, fear, ego, or impatience. 1995. + +The Journey of Ibn Fattouma BR 9503 +by Naguib Mahfouz +1 volume +This novel by the Nobel Prize-winning author was first +published in Arabic in 1983. It is a parable about Fattouma, +a young man in search of answers to life's fundamental +questions, who is bound for Gebel--land of no return. His +journey is interrupted by marriage, children, wartime, +imprisonment, political demonstrations, and thwarted +attempts to follow his religion. Fattouma's journey toward +perfection lasts a lifetime. 1983. + +The Lost Boy: A Novella BR 9575 +by Thomas Wolfe +1 volume +Episodes based on the author's childhood recall his older +brother Grover from the perspective of different family +members. Grover himself relates an experience in the town +square. Then his mother recalls an incident with Grover on a +train trip to the World's Fair in St. Louis. A sister +examines old photographs and relives the day Grover +contracted typhoid fever. Finally, the author returns to the +house where Grover died. 1937. + +The Mandarins BR 9769 +by Simone de Beauvoir +7 volumes +Set in Paris after World War II, this novel won the Prix +Goncourt, the most coveted literary prize in France. The +author draws upon her intellectual circle, which includes +Jean-Paul Sartre and Albert Camus, for a portrait of the +philosophical and political climate of the period. 1954. + +Midaq Alley BR 9609 +by Naguib Mahfouz +2 volumes +Set in an ancient quarter of Cairo in the early 1940s, a +time when the British Army moved into the area in an effort +to thwart a Nazi invasion. Influenced by Western ideas, the +impoverished people who live and work in this crowded alley +are forever looking to escape life as they know it. Among +them are the caf owner, Kirsha, who likes drugs and little +boys; Hamida, a beautiful and ambitious prostitute; and +Abbas, a naive barber. Some strong language. 1966. + +Operation Wandering Soul BR 9667 +by Richard Powers +4 volumes +Richard Kraft, surgical resident at Carver General in Los +Angeles, and Linda Espera, therapist, are weary of trying to +patch up the children in their care, including Joy, a boat +child from Asia; Nico, a child in a man's body; and Chuck, +nicknamed No-Face. As they work on the children's physical +needs, they also try to instill hope by telling them stories +about the Pied Piper, Peter Pan, and the Secret Garden. Some +strong language and some violence. 1993. + +Papa's Suitcase BR 10271 +by Gerhard Kopf +1 volume +The narrator, who dubs himself Hemingstein, is a lover of +books, especially those by Ernest Hemingway. He is so +obsessed with the writer that he embarks on a trip to the +places Hemingway visited around the world. Hemingstein hopes +to find the suitcase containing all of Hemingway's +manuscripts that was lost in Paris in 1922. But is he really +traveling around the world or only imagining it? 1994. + +A Place Where the Sea Remembers BR 9524 +by Sandra Bentez +1 volume +In Santiago, Mexico, Candelario is pleased with his +promotion to salad-maker. When he learns his wife's young +sister Marta was raped and is planning to abort the fetus, +he grandly offers to raise the baby. But the unthinkable +happens: Candelario is fired for making lousy Caesar salads +and his once-barren wife becomes pregnant. When they refuse +her baby, Marta is desperate. Meanwhile, other Santiago +residents experience minidramas of their own. 1993. + +The Raiders BR 10130 +by Harold Robbins +3 volumes +Twenty years after The Carpetbaggers (BR 10129), wealthy +Jonas Cord is still regretting never telling his late father +he loved him and never having a son to express his love to. +Now, while Cord is on the run from federal marshals who want +him to take a business risk by testifying in front of +Congress, his wife is divorcing him. Then he learns he has a +grown son. Strong language, violence, and explicit +descriptions of sex. 1995. + +The Rothman Scandal BR 9817 +by Stephen Birmingham +5 volumes +Alexandra Rothman has come a long way since she left +Paradise, Missouri. She is editor-in-chief of Mode, a +fashion magazine that has just reached a record-breaking +circulation of five million. But at a celebration party, +Herbert Rothman, Alex's father-in-law and boss, makes an +announcement that shocks New York society and starts a chain +of events that may destroy the magazine. Violence, strong +language, and descriptions of sex. 1991. + +The Secret Diary of Laura Palmer BR 9421 +by Jennifer Lynch +2 volumes +Laura, late of the TV series Twin Peaks, received her diary +on July 22, 1984, a perfect day to turn twelve. As she +matures, Laura appears to be a happy and popular young girl. +But she also has a dark side. She is haunted in her dreams +by someone named BOB, and she is involved with drugs. As she +struggles through her teenage years, she becomes more and +more ashamed of the person she has become. Strong language +and descriptions of sex. Bestseller 1990. + +Shadow Play BR 9711 +by Charles Baxter +3 volumes +Wyatt Palmer, artistic and clever as a boy, is now an +assistant city manager in a small town. When an old school +chum turns up with an offer to bring in business and jobs in +the form of a chemical plant, a deal is cut. Citizens of the +local community seem pleased with what WaldChem has done for +them. But Palmer knows the awful truth about what the +company is doing to their environment, and now he must make +a dreadful decision. Some strong language. 1993. + +The Sixteen Pleasures BR 9793 +by Robert Hellenga +3 volumes +When Florence is flooded in 1966, twenty-nine-year-old +American book conservator Margot Harrington offers her +services to the country where she spent two years of her +youth. She is helping restore a convent's collection when a +nun discovers an ancient book of erotic drawings and +sonnets. While attempting to sell the book to profit the +convent, Margot, inspired by the book, begins an affair with +an older married man. Explicit descriptions of sex. 1994. + +The Temptations of St. Ed and Brother S BR 9601 +by Frank Bergon +3 volumes +In the 1990s many people are concerned about the +environment, as are St. Ed and Brother S, the only monks at +the Hermitage of Solitude in the Desert. Now there is a +nuclear waste dump planned for nearby land, and both monks, +as well as the Shoshone Indians, object. The monks also face +temptations, including lust and the desire for fame. Strong +language and some descriptions of sex. 1993. + +Time and Time Again BR 9990 +by Dennis Danvers +3 volumes +Novelist Marion Mead finds a 1769 newspaper ad by a man +whose wife, Susanna, ran away with a convict. Requesting +history on the family, Marion discovers Raymond Lord, who +owns the journal of Susanna's descendant, Pearl. As Marion's +novel about Susanna almost writes itself, she finds odd +coincidences between it and both Pearl's writing and her own +growing relationship with Raymond. Strong language, some +violence, and some explicit descriptions of sex. 1994. + +To Dance with the White Dog BR 9839 +by Terry Kay +2 volumes +Sam Peek's entry in his journal says simply, "Today my wife +died. We were married fifty-seven good years." His children +gather and begin to discuss what is to be done. Eventually +Sam finds himself alone, except for a mysterious white dog +only he can see--to the consternation of his children. +Although somewhat incapacitated by a bad leg, Sam remains +independent until he joins his wife in death. The dog then +appears to his family. Some strong language. 1990. + +The Training Ground BR 9420 +by Siegfried Lenz +4 volumes +Bruno Messmer, rescued by Konrad Zeller, narrates the story +of the Zeller family's resettlement on the Baltic coast +after World War II. Mistrust reigns until financial success +earns the Zellers a measure of respect. But Bruno is worried +that Konrad may soon die and that his children care little +for the tree farm that they have raised on a former military +training ground. Bruno's observations may be construed as a +metaphor for modern Germany. 1985. + +Gothic + +Dr. Haggard's Disease BR 9623 +by Patrick McGrath +2 volumes +Set in England at the outset of World War II. Edward +Haggard, a young doctor, learns that he is not immune to +love, but he is stunned by the consequences of his affair +with Fanny, the wife of an older physician. Dr. Haggard +removes himself from the scene, but the day that Fanny's son +turns up in uniform, he discovers that his passion is +rekindled in a bizarre manner. Some strong language and some +descriptions of sex. 1993. + +Vanish with the Rose BR 9489 +by Barbara Michaels +3 volumes +Diana, a lawyer, knows she is risking a lot when she +convinces Walt, the landscaper, to recommend her to the +Nicholsons as a landscape designer. But she has to find out +what has happened to her brother Brad, last seen when +working for the previous owner. With her identity soon +uncovered, Diana and several young people begin a search +that involves haunting music, spells of dj vu, a brutal +ex-husband, and a corpse. Strong language. 1992. + +Walking after Midnight BR 10189 +by Karen Robards +3 volumes +At 2:00 a.m., Summer McAfee, owner of a janitorial service, +is on her knees scrubbing the floor of a funeral home. +Suddenly the naked and badly bruised body of a man comes to +life, and he takes her hostage. Over the next four days they +are on the run, dodging bad cops and a ghost, as the former +corpse, a cop working under cover, tries to save himself and +Summer. Strong language, some violence, and some explicit +descriptions of sex. 1995. + +Waltz in the Shadows BR 9796 +by Catherine Rieger +2 volumes +Vienna, 1888. Emily Hopkins, twenty-two, has come to Vienna +at the request of Dr. Franz Joseph Demel to help write a +biography of her father that will, she hopes, dispel the +lies about him. But when Emily arrives, she doesn't remember +Dr. Demel. Mysterious events are occurring in the dark +house, which has become a sanitarium, and someone is +attempting to scare her with strange notes. She turns to Dr. +Maximillian Schaller for help. 1993. + +Growing Up + +Adam and Eve and Pinch-Me BR 9998 +by Julie Johnston +2 volumes +Sara Moone's adoptive parents died when she was three. Since +then, she has shuttled from one foster home to another, +refusing to make friends and dreaming of quitting school at +sixteen. But at fifteen she is placed with the Huddlestons, +where she reluctantly develops some relationships and comes +face to face with her birth mother. Sara writes about her +jumbled feelings in her computer journal. For junior and +senior high readers. 1994. + +The Hookmen BR 10151 +by Timothy Hillmer +3 volumes +After his mother and sister leave, nineteen-year-old Cruz +takes a job with the Kern River Search and Rescue to support +himself and his alcoholic father. Aging Crawdad teaches Cruz +how to be a hookman, fishing dead bodies out of the river. +Cruz makes friends with hookman Walker and begins a +relationship with troubled Rita. Despite Walker's advice, +Cruz agrees to go on a wild boat ride with Crawdad. Strong +language and some explicit descriptions of sex. 1994. + +Jasmine Nights BR 10268 +by S.P. Somtow +3 volumes +In a crazy mix of Thai, American, British, and classic Greek +influences, twelve-year-old Justin explores the mysteries of +the adult world in his native Bangkok. He and his two +cohorts-in-adventure, one from black Georgia, the other from +white South Africa, combine knowledge and misconceptions +from their very different backgrounds. Glossary of Siamese +words. Strong language and explicit descriptions of sex. +1994. + +Jesse BR 10145 +by Gary Soto +1 volume +In the 1960s, Jesse, seventeen, and his brother, Abel, move +out of their drunken stepfather's house into a cottage of +their own. Jesse then joins Abel in the community college. +They live on their late father's Social Security benefits +and their own work in the fields. Jesse worries about Cesar +Chavez's cause and about Abel's involvement with a +non-Mexican girl, and he tries to fit religion and +girlfriends into his own life. For high school and older +readers. 1994. + +Mysterious Skin BR 10270 +by Scott Heim +2 volumes +Little Leaguer Brian Lackey, eight, can't remember the five +hours following one of his games, and as the years pass, +Brian imagines he was abducted by aliens. Another boy on the +baseball team, Neil McCormick, had consented to sexual +fondling by their coach. When Brian begins to recollect that +his experience was shared by Neil, he tracks down Neil, who +is now a prostitute. Strong language, violence, and explicit +descriptions of sex. 1995. + +Tom Brown's Schooldays BR 9429 +by Thomas Hughes +3 volumes +Tom Brown is from a long line of Browns who claim that the +British nation owes much of its greatness to them. As a +young boy, Tom, the son of a squire, is encouraged to play +with the village boys. But at the age of nine, Tom is packed +off to Rugby, where he fears but learns to respect the +famous Dr. Arnold; develops long-lasting friendships; and +gets involved in typical English schoolboy adventures, +including the inevitable fights. 1857. + +A World for Julius BR 9739 +by Alfredo Bryce Echenique +5 volumes +Julius is a young boy growing up among the social elite in +Lima, Peru, during the 1940s and 1950s. His father died when +he was two, and he rarely sees his mother. His time is spent +playing in the great carriage that once belonged to his +great-grandfather, the president of the republic. But as +Julius's world expands through school and trips abroad, he +starts to realize the changes the outside world is bringing +to his country. Strong language. 1970. + +Yoruba Girl Dancing BR 9494 +by Simi Bedford +2 volumes +Remi's upbringing is entrusted to her wealthy grandparents +because she is a girl. She loves the "miniature village" of +her grandfather's African mansion. But at her grandfather's +death, Remi's parents send the six-year-old to school in +London, where she is set adrift in a sea of white faces. +Remi conquers the hurtful cultural differences and adjusts +to her life there. Years later she again becomes a Yoruba +girl dancing. For high school and older readers. 1991. + +Historical + +Beauty from Ashes BR 10167 +by Eugenia Price +5 volumes +St. Simons Island, Georgia, 1845. Anne Couper Fraser has had +to face the death of her parents, her beloved husband John, +and a daughter. Now she must face the loss of her much loved +plantation on St. Simons Island. With the rest of her +children, Anne moves to Marietta, Georgia, and begins to put +her life back together-- until war clouds begin to gather +over her and the South. Sequel to Where Shadows Go (BR +9375). 1995. Bestseller. + +The Burning Time BR 10229 +by Carol Matas +1 volume +Set in seventeenth-century France. Fifteen-year-old Rose and +her mother are stunned when Rose's father, Philippe Rives, +is killed in a riding accident. And soon after the accident, +Madame Rives, a midwife and a healer, is accused of being a +witch. Rose, too, is a suspect, but she manages to escape. +Soon a simple country life becomes a fight for survival. For +junior and senior high and older readers. 1994. + +Crossing by Night BR 9701 +by David Aaron +4 volumes +Fictionalized account of the exploits of World War II spy +Elizabeth Pack. Pack was an American debutante who married +the British diplomat who impregnated her. When he gave up +their baby to avoid embarrassment, Elizabeth was devastated. +Her attempt to be a demure diplomatic spouse was quickly put +aside when she was given the chance to save the ambassador +to Spain. Strong language, violence, and explicit +descriptions of sex. 1993. + +The Dawning of Deliverance: The Russians, Volume 5 BR 10264 +by Judith Pella +3 volumes +In the early 1900s, Countess Mariana Remizov, twenty-three +and unmarried, wants to do something with her life. Her +father and grandmother are outraged when Mariana heads to +the Manchurian front to work as a nurse. There she again +meets Daniel Trent. As war rages, Mariana and her family +rely on God's power to bring them love and freedom. Sequel +to Heirs of the Motherland (BR 9863). 1995. + +Doctor Zhivago BR 9814 +by Boris Pasternak +5 volumes +The story of a Russian physician and poet during the early +decades of the twentieth century. Yurii Zhivago, an +individualist and something of an outsider, is separated +from his wife by the Bolsheviks and falls in love with Lara, +the wife of another man. Pasternak's portrait of Russian +life during the post-revolution years includes an epilogue +expressing hope for liberation and freedom in the future. +1958. + +The Fifth of March: A Story of the Boston Massacre BR 10211 +by Ann Rinaldi +2 volumes +Rachel Marsh is an indentured nursemaid for the children of +John and Abigail Adams. Her friend Jane urges her to +consider her future and side with the rebelling colonists, +but like the Adamses, Rachel can't condone their gang-like +activities. Although Rachel doesn't like the attitude of the +newly arrived British troops either, she soon makes friends +with a lonely British soldier. For junior and senior high +readers. 1993. + +The Four Adventures of Richard Hannay: The Thirty-Nine +Steps, Greenmantle, Mr. Standfast, The Three Hostages BR +9656 +by John Buchan +8 volumes +First published between 1915 and 1924. In The Thirty-Nine +Steps, an engineer attempts to foil a conspiracy. +Greenmantle pits a secret agent against Germans trying to +start an Eastern holy war. Mr. Standfast deals with British +Intelligence in World War I. An agent uses hypnotism to +search for missing persons in The Three Hostages. 1988. + +Hard Road to Gettysburg BR 9743 +by Ted Jones +3 volumes +Caroline Wade's happiness when her twin sister, Victoria, +visits from Alabama turns to horror when two men break in to +kill Caroline--on her husband's orders. Victoria's slave +rescues the twins but an injured and pregnant Victoria is +bedridden until the birth of her triplets. She leaves one +infant with Caroline in Illinois and returns south, not +realizing that the siblings will meet again--on opposite +sides of the Civil War. Strong language and violence. 1993. + +The Hawk and the Jewel: The Kensington Chronicles, Volume 1 +BR 9603 +by Lori Wick +3 volumes +Even though she is English, Shani is the most favored child +in the household of Ahmad Khan. Thus she has trouble +understanding how her beloved Ahmad can send her back to +England. On the voyage, Captain Brandon Hawkesbury tells +Sunny (her given name) about her family and about life in +England. But Hawk cannot prepare her for the turmoil she +soon faces. Prequel to Wings of the Morning (BR 9604). 1993. + +Heirs of the Motherland: The Russians, Volume 4 BR 9863 +by Judith Pella +3 volumes +Russia, 1890s. War is on the horizon as Count Dmitri Remizov +returns from eighteen years in exile to claim his daughter +Mariana, raised by his wife Katrina's relatives--Sergei and +Anna Fedorcenko. The Fedorcenkos and Count Dmitri and +Mariana will have to call upon their faith to sustain them +as they struggle to reunite their families during these +tumultuous times. Sequel to Travail and Triumph (BR 9336). +1993. + +Homeland BR 9462 +by John Jakes +10 volumes +Berlin street urchin Pauli Kroner dreams of being a painter +and coming to America. At fourteen he arrives, makes his way +to his uncle's home in Chicago, and changes his name to Paul +Crown. A Kodak camera gives him a chance to put his artistic +skills to work, and he becomes involved in Hollywood and the +motion picture industry. Along the way, he falls in love +with Julie Vanderhoff. Crown Family Chronicles. Some strong +language. Bestseller 1993. + +If I Should Die before I Wake BR 10142 +by Han Nolan +2 volumes +Since her father died in an accident she attributes to his +Jewish boss, Hilary has shaved her head and joined a local +youth gang called the Great Aryan Warriors. Now in a Jewish +hospital after a motorcycle accident, Hilary is annoyed by +the pity in an elderly woman's eyes. Then Hilary spirals +into another place and time--Nazi Germany--and realizes she +is a Jewish girl named Chana. Strong language and some +violence. For junior and senior high readers. 1994. + +The Journal of Hildegard of Bingen BR 9516 +by Barbara Lachman +2 volumes +Inspired by the writings of a twelfth-century mystic, the +author creates a journal depicting a year in the life of the +medieval German abbess. Lachman reveals Hildegard's concern +for the secular and the spiritual world and depicts her as a +busy woman who established and ran an autonomous convent, +composed liturgical music, wrote poetry, tended the sick, +oversaw the illumination of manuscripts, and held her own +against paternalistic clergy. 1993. + +Kristin Lavransdatter: Volume 1, The Bridal Wreath BR 10085 +by Sigrid Undset +3 volumes +In this first volume of a trilogy set in medieval Norway, +the winner of the 1928 Nobel Prize for literature tells of +Kristin's girlhood and her love for Erlend Nikulaussn, a +young man of whom her father strongly disapproves. Prequel +to The Mistress of Husaby (BR 10086). 1923. + +The Moon Below BR 9820 +by Barbara Bickmore +5 volumes +Hallie Thomas has grown up in the coal-mining fields of +England, but she hates it there and wants a better life +somewhere else. Her chance comes when she receives a letter +from an old friend, Chad Morgan, asking her to come to +Australia to be his wife. But when she falls ill on board +ship and is cared for by Dr. Tristan Faulkner, she falls +passionately in love with him. Some violence and some +explicit descriptions of sex. 1990. + +Pacific Destiny: The Holts; An American Dynasty, Volume 8 +BR 9770 +by Dana Fuller Ross +3 volumes +In 1898 the Holts are affected by the battle over Cuba's +freedom from Spain. Tim Holt leaves his new bride to report +the action for his San Francisco newspaper, and Henry Blake +escapes the anger of wife Cindy by going undercover for the +army in Manila. Meanwhile, Frank Blake, last heard from in +Yukon Justice (BR 9323), considers giving up his adventurous +lifestyle. Strong language and some violence. 1994. + +Peter Nevsky and the True Story of the Russian Moon Landing +BR 9737 +by John Calvin Batchelor +5 volumes +Russia, 1968. Peter Nevsky, son of a World War II flying ace +who was murdered by Stalin's men, arrives at Starry Town, +home of the cosmonaut corps. At twenty-two, Peter has come +to keep a childhood appointment with the moon. But his life +will be ruled by the Martian Troika (three men who flew with +his father and are the soul of the space program) and by two +powerful women--Katya and Daemonia. Strong language. 1993. + +The Plymouth Cloak: The Second Tale of Roger the Chapman BR +9706 +by Kate Sedley +2 volumes +Roger the Chapman is in Exeter to peddle his wares when he +is summoned by the king's brother, the duke of Gloucester. +The duke, familiar with Roger's previous daring deeds, +requests that he join the king's messenger, who is +delivering an important letter. Roger learns there are many +who want to cause harm to messenger Philip Underdown, and +not just because of the letter. Some strong language and +some violence. 1992. + +Pomp and Circumstance BR 9418 +by Fred Mustard Stewart +4 volumes +As ten-year-olds, Adam Thorne and Lizzie Desmond vow their +love for each other. In 1856, at eighteen, they consummate +that love. Shortly thereafter, Lizzie finds she is with +child, and Adam unexpectedly becomes heir to a family secret +that sends him to India. Before the two can finally be +united, they will have become involved in significant +historical events in England, India, and the United States. +Violence, strong language, and descriptions of sex. 1991. + +The Prospector BR 9724 +by J.M.G. Le Clzio +3 volumes +In 1892 Alexis and his sister Laure are enjoying an idyllic +childhood in the wild Boucan valley on the island of +Mauritius. Their father has great plans, including building +a power plant, but none comes to fruition. Eventually, +economics drives the family from the valley, but Alexis is +not happy in civilization. Years later, after his father's +death, Alexis returns to the wild to search for gold and +paradise. Some descriptions of sex. 1985. + +Redemption BR 10148 +by Leon Uris +6 volumes +In this sequel to Trinity (BRA 14326, BRA 15339), Uris +continues his account of the Larkins, the Hubbles, and the +Fitzpatricks. Liam Larkin settles in New Zealand and begins +a family, while his brother Conor remains behind to fight +for Irish freedom. Liam's son Rory follows in his uncle's +footsteps, returning to Ireland with a mission of vengeance. +Strong language and some violence. Bestseller 1995. + +Sons: Good Earth Trilogy, Volume 2 BR 9578 +by Pearl S. Buck +3 volumes +Sequel to The Good Earth (BR 9400). After Wang Lung's death, +the land that he spent his lifetime acquiring is to be +divided among his three sons. The story revolves mainly +around the third son, a runaway who had become a powerful +military officer, and the use he makes of his inheritance. +1932. + +The Travels of Jaimie McPheeters BR 9581 +by Robert Lewis Taylor +5 volumes +In 1849 Dr. Sardius McPheeters decides to escape his debts +and his genteel wife's disapproval by heading for California +to strike it rich mining gold. Fourteen-year-old Jaimie is +allowed a year off from school to accompany his father. But +almost at once the hapless doctor must write to his wife +that Jaimie is lost and possibly dead. In fact, Jaimie is +captured by murderers in the first of his many adventures. +Some violence. Pulitzer Prize winner. 1958. + +The Tree Still Stands BR 9659 +by Mae Briskin +2 volumes +Ruth was only seven years old when her father made her +responsible for Imma (or Grandma). The scene was Warsaw, and +the Levy family was intact. But the Nazi threat changed +everything. The story of this Jewish family is told from +Ruth's perspective as they flee, first to Paris, then +southward through France to Italy. Their bravery and love +for one another sustain them through tragedies on their +perilous journey. 1991. + +The Venetian Mask BR 9439 +by Rosalind Laker +4 volumes +Marietta's life at the Piet, a Venetian orphanage and music +school, is happy, thanks to her friend Elena. Then Marietta, +shunned by her true love, is unknowingly promised to a +mysterious man who is linked to her past and is a sworn +enemy of the man Elena is forced to marry. The girls' secret +friendship survives illicit romance, babies switched at +birth, attempted murder, Napoleon's reign, and false +imprisonment. Violence and descriptions of sex. 1993. + +War and Peace BR 9710 +by Leo Tolstoy +14 volumes +First published in 1869, this epic novel deals with Russia +and France at the time of Napoleon Bonaparte. It describes +the invasion of Russia by Napoleon and his army and presents +the author's theories of history. 1869. + +The Waterworks BR 9665 +by E.L. Doctorow +2 volumes +Set in New York City just after the Civil War. Martin +Pemberton is walking in the rain when he spots his father, +whom he believed dead, passing in a horse-drawn omnibus. +When young Pemberton, who writes for a newspaper, tries in +vain to track the omnibus, he disappears. McIlvaine, his +editor and the narrator of this tale, sets off to search for +Pemberton and for answers to a growing set of mysterious +circumstances. Bestseller 1994. + +Where Shadows Go: Georgia Trilogy, Volume 2 BR 9375 +by Eugenia Price +5 volumes +After spending the first years of marriage in England, Anne +Fraser has finally convinced her husband John to return to +St. Simons Island. John has difficulty adjusting to owning +slaves, but the couple settle in and begin raising a family. +Their peace is shattered, however, when actress Fanny Kemble +comes to visit and marries the owner of a nearby plantation. +Sequel to Bright Captivity (BR 8538). 1993. + +Wings of the Morning: The Kensington Chronicles, Volume 2 +BR 9604 +by Lori Wick +2 volumes +For twenty-three years, Victoria (Smokey) Simmons's life has +been spent on board her father's ship the Aramis. Now he is +dead and she is captain. Dallas Knight, captain of the +Zephyr, often arrives at a port too late to pick up cargo +because the Aramis has gotten there first. He will not be +happy to find out that the Aramis's captain is a woman. +Sequel to The Hawk and the Jewel (BR 9603). 1994. + +Human Relationships + +America by Land BR 9526 +by Robert Olmstead +2 volumes +Raymond Romeo Redfield, twenty-three, drops out of college +and heads west to see his cousin Juliet, who knows him +better than anyone. Each has suffered from a heartbreaking +experience, but as these kindred spirits travel together +across America, they find between them a powerful and +undeniable love, a love that will set them on a course to +reclaim the child Juliet gave up for adoption. Strong +language and some descriptions of sex. 1993. + +And Do Remember Me BR 9862 +by Marita Golden +2 volumes +Jessie Foster runs away from her Mississippi home to escape +her father's sexual abuse. She is befriended by Lincoln +Sturgis, who enlists Jessie in Freedom Summer. Jessie also +finds a true friend in activist and scholar Macon Hightower. +After Jessie is a hit in an amateur production of Lincoln's +play, she adopts the name Pearl Moon and leaves for New York +with Lincoln. Some strong language, some violence, and some +explicit descriptions of sex. 1992. + +Angel Angel BR 10253 +by April Stevens +2 volumes +Shortly after Augusta Iris's artist husband leaves her for +another woman, she crawls into bed and stays there. Her +eighteen-year-old son, Henry, finally calls his brother, +Mathew, at Harvard for help. Mathew returns home, but +neither son is equipped to deal with Augusta's depression. +Help comes in the form of Bette Mack, a young woman who +makes a profound impact on each of their lives. Strong +language. 1995. + +Another Good Loving Blues BR 9559 +by Arthur Flowers +2 volumes +In 1918 blues piano player Lucas Bodeen stops his wandering +when he lays eyes on conjure woman Melvira Dupree in the +small town of Sweetwater, Arkansas. But, as Bodeen warns +her, "I ain't never tossed my shoes under no woman's bed for +long. When the blues call, I'm liable to answer." Likewise, +when hoodoo signs call, Melvira answers, and now she's being +called by the mother who abandoned her. Strong language and +some explicit descriptions of sex. 1993. + +Benediction at the Savoia BR 9417 +by Christine O'Hagan +3 volumes +Like Jackie Kennedy, thirty-two-year-old Delia Delaney is +pregnant. Anxious that her two daughters are growing up, +Delia is thrilled about another child. Delia is heartbroken +when Jackie's newborn son dies and worries that her own baby +is late and has stopped moving. She thinks of her wedding to +hard-drinking Irish cop Maurice, the births of her +daughters, her late alcoholic father, and her religious +mother. Strong language and some violence. 1992. + +A Bowl of Cherries BR 9608 +by Shena Mackay +2 volumes +Years ago, while Stanley was imprisoned as a conscientious +objector, his twin, Rex, stole both Stanley's chance at +literary fame and his girl, Daphne. Rex and Daphne now have +a grown daughter, Daisy, who, holding herself responsible +for a long-ago death, puts up with a husband who suffocates +her. But the past is dragged into the present when Rex's +illegitimate teenage son invades the family and demands +things be set right. Some strong language. 1992. + +Break the Heart of Me BR 9776 +by Elizabeth Dewberry Vaughn +2 volumes +As twenty-three-year-old Sylvia Mullins is being seduced by +a country-music singer, her troubled childhood comes to +mind. Her fatally injured teenaged mother is kept alive +until Sylvia is born. Raised by her grandparents, Sylvia +blocks out Paw Paw's molestation. When Memaw dies, Sylvia's +"uncle" admits he is her father. After a disastrous high +school crush, Sylvia marries older, overweight Buddy. Strong +language and some explicit descriptions of sex. 1994. + +Breath, Eyes, Memory BR 9784 +by Edwidge Danticat +2 volumes +Until age twelve, Sophie is raised by her aunt in Haiti. Her +mother then sends for her to come to New York and explains +that Sophie is the product of rape. When a grown Sophie is +befriended by an older musician, her mother tests her +virginity. Sophie rebels by violently deflowering herself, +an act that will later cause her to seek sexual phobia +therapy. She marries the musician and tries to come to terms +with her past as her mother does the same. Some violence. +1994. + +Bridie and Finn BR 9727 +by Harry Cauley +3 volumes +In the 1940s, when Finn is in the fourth grade, Bridie moves +into the house across the street and immediately proclaims +herself to be his best friend. She is a loud, opinionated +girl with self-chopped hair who lives with her hard-drinking +father, Laurie. After Laurie dies and Finn's family +dwindles, Bridie moves in with Finn and his father. The two +friends remain inseparable until Bridie's confession +shatters Finn's dreams. Strong language. 1994. + +Called Out BR 9897 +by A.G. Mojtabai +2 volumes +People of the small town of Bounds, Texas, react to the +crash of a 727 jet carrying ninety-nine people. The widow +whose field the plane lands in marvels that "you can't go +anywhere nowadays without the world raining in on you." The +local priest anoints all passengers regardless of their +religion or condition. A passenger with Alzheimer's disease +wanders lost through the town. And a man shocks his +neighbors by stealing a severed hand. Strong language. 1994. + +The Carpetbaggers BR 10129 +by Harold Robbins +7 volumes +A study of the rise to power of Jonas Cord, a man haunted by +a demanding father and committed to success, regardless of +the consequences. Prequel to The Raiders (BR 10130). Strong +language and explicit descriptions of sex. 1961. + +Consider This Home BR 9801 +by Greg Bills +3 volumes +Kath Miller is living in Las Vegas with her ten-year-old +son, Daron, when her father summons her back to Sterling, +Utah, because Kath's mother has left him. In Sterling, Kath +must also deal with her estranged husband, Merrill, and his +obsession with Mormonism. And Daron gets a chance to meet +Tom, his father, who admitted his homosexuality only after +Kath became pregnant with Daron. Strong language, some +violence, and some explicit descriptions of sex. 1994. + +A Cup of Christmas Tea BR 10231 +by Tom Hegg +1 volume +Shortly before Christmas a young man receives a letter from +a great-aunt asking that he stop in for a cup of Christmas +tea. Although he doesn't want to replace his childhood +memories of her with what she might be like now, he +reluctantly accepts. For senior high and older readers. +1982. + +Cured by Fire BR 10258 +by Tim McLaurin +2 volumes +Elbridge Snipes and Lewis Calhoon live in a homeless shelter +in Seattle, Washington. Similarities in their backgrounds +have brought them together, although each made his way here +by a different route. Both men have lost their families, and +now Elbridge is dying. On the night Elbridge knows will be +his last, Lewis takes him to the top of a nearby hill where +they reminisce about their lives and how they came to be +together. Some strong language. 1995. + +Dancer with Bruised Knees BR 10075 +by Lynne McFall +2 volumes +After Jake leaves Sarah, his new lover takes Sarah's eye out +with a pool cue. Sarah then loses her typing job because she +won't wear a patch. Meanwhile her brother Morgan is accused +of murdering his ex-wife, and their mother kicks out their +father for believing Morgan is guilty. Sarah's therapist +diagnoses her as manic-depressive and prescribes a cure. +Strong language and some violence. 1994. + +Decorations in a Ruined Cemetery BR 9780 +by John Gregory Brown +2 volumes +When Dr. Thomas Eagan leaves his second wife, Catherine, he +reenacts his mother's leave-taking years before. But, unlike +his mother, Thomas takes his children with him. His daughter +Meredith slowly learns the reasons behind both desertions +through letters from Catherine and encounters with Murphy +Warrington, the black man who assisted Thomas's late father +in his cemetery statue business. 1994. + +Excuse Me for Asking BR 9981 +by Janis Arnold +3 volumes +Julia Salwell and Robin Tilton meet as college roommates at +Texas Tech and, although very different in temperament, +begin a lifelong friendship back in Julia's small hometown. +Intellectual Robin doesn't admit that she has nagging doubts +about her aunt's hazy account of the death of Robin's +parents. But surprisingly, outspoken Julia also has a buried +secret that she has never confronted her beloved father +about. Some strong language. 1994. + +Fanfan BR 9888 +by Alexandre Jardin +1 volume +Descended from Robinson Cruso, Alexandre is not like other +men. When he discovers his parents' infidelities, Alexandre +dreams of a romance of perpetual expectation and vows to +discipline his urges and be monogamous. He becomes engaged +to stable, if boring, Laure, and then meets Fanfan, who +seems to share his dream. But anticipation of a half-century +of unconsummated seduction is threatened by Fanfan's libido. +Some strong language. 1990. + +The Favourite BR 9892 +by Meredith Daneman +1 volume +As Rosalind attempts to comprehend her husband Frank's +leave-taking, she thinks back to the times her father left. +As her father's favorite daughter, Rosalind's role was to +try to convince him to stay. In her relationship with Frank, +Rosalind was first the other woman, then the wife, and now, +finally, the wife being left for the other woman. Some +strong language and some descriptions of sex. 1993. + +A Feather on the Breath of God BR 10259 +by Sigrid Nunez +2 volumes +The narrator of this tale is the youngest daughter of +mismatched parents. Her half-Chinese, half-Panamanian father +is silent, withdrawn, and a former workaholic who married +her mother, a German, during World War II. They live in the +projects of New York, where her mother tries to make the +best of things. The narrator also attempts to make the best +of her life by studying ballet, but these plans seem doomed +when she falls for an immigrant. 1995. + +The Fire Eaters BR 9738 +by William Cobb +2 volumes +Damon Bell is five when he begins his story of growing up +with his widowed mother, his four siblings, a fruit jar +containing his father's severed ear, and the family secret +of a black grandfather. His mother soon marries Barry, who +has three children and an alcohol problem. After Barry +deserts them, the expanded family struggle along, the mother +marries again, and a grown Damon tries to come to terms with +his family history. Strong language. 1994. + +The Gift BR 9610 +by Danielle Steel +2 volumes +John and Liz Whittaker and their two children--Tom, fifteen, +and Annie, five--seem to be a happy, lucky family. But Annie +dies and the family falls apart. Maribeth Robertson, +sixteen, is pregnant and has been thrown out of her home by +her father. Traveling to Chicago, she stops in the +Whittakers' hometown, meets Tom, and forms a strong +friendship that affects all the Whittakers. Some strong +language and some descriptions of sex. Bestseller 1994. + +Good Girls Don't Wear Trousers BR 9878 +by Lara Cardella +1 volume +In Sicily young Annetta dreams of being able to wear +trousers. She decides to become a nun, thinking they wear +trousers under their habits like the priests. Then she tries +to become a boy but learns it isn't physically possible. +Next she attempts to become a slut because then she can wear +what she wants. Sent by her enraged parents to live with the +uncle who molested her as a child, Annetta finds a friend in +her unhappy aunt. Some descriptions of sex. 1989. + +Guppies for Tea BR 9850 +by Marika Cobbold +2 volumes +After her husband dies, Selma is put into a nursing home by +her son, who then leaves the country. Although troubled with +senility and incontinence, Selma is adamant about leaving +the home. Her daughter, Dagmar, is too busy obsessively +avoiding germs, so Selma's only chance at freedom comes from +her granddaughter, Amelia. As Amelia's personal life +crumbles around her, she tries to do right by Selma. Some +strong language. 1993. + +Gypsy Davey BR 10213 +by Chris Lynch +1 volume +Davey was raised by his sister Joanne while their mother was +out having a good time. Now Davey is twelve and his sister +is seventeen, with a baby. Davey is oddly quiet, although +inside his head he's talking constantly. But there's another +side to Davey that works perfectly in rhythm on his bike and +that cares for his nephew like "nobody ever loved babies +before." Strong language and some violence. For junior and +senior high and older readers. 1994. + +The Hanged Man BR 10237 +by Francesca Lia Block +1 volume +Seventeen-year-old Laurel lives at the top of a canyon in +Los Angeles. Waiting in a hospital for her father's death, +she meets Jack, who befriends her. Jack also introduces +Laurel to a fast-paced lifestyle. Meanwhile, Laurel slowly +confronts a lot of strange things going on in her life. +Descriptions of sex and some strong language. For high +school and older readers. 1994. + +A Heartbeat Away BR 9673 +by Barbara Rogan +3 volumes +Life is hectic in Mercy Hospital's emergency room, +especially with a little drama among the staff. Crow +Durango, housekeeper, gets the attention of Dr. Thomas +Graystone, emergency room chief, when a deceased doctor +gives her a diagnosis that saves two patients. Alice +Straugh, a white nurse, wants to adopt a badly abused black +child. Then there is Pilar, who keeps things moving, and +Plummer, a doctor with no bedside manner. Strong language. +1993. + +Hello Down There BR 9671 +by Michael Parker +2 volumes +In 1952, after the car wreck that claimed his fiance's +life, Edwin is addicted to morphine prescribed by his uncle. +He lives a reclusive life in his North Carolina hometown +until he becomes obsessed with young Eureka. When the +druggist is fired for refusing Edwin's wealthy mother's +demands to supply the drug, Edwin tries to kick the habit as +he slowly reveals his story to Eureka. Some strong language +and some explicit descriptions of sex. 1993. + +Home and Away BR 9985 +by Joanne Meschery +3 volumes +While her ski-champion husband is (as usual) off trying to +set another world record, California border inspector Hedy +Gallagher Castle struggles with changes in her life and in +the world. A new sportswriter insists he's in love with her, +her minister father is trying to recover from a stroke, her +daughter has been moved up to the varsity basketball team, +Operation Desert Storm begins, and the religious right seems +to be taking over. Some strong language. 1994. + +Hula BR 9633 +by Lisa Shea +1 volume +A ten-year-old girl and her slightly older sister fill their +summer days with imaginative activities in their backyard. +One is to hula dance the way their mother taught them. But +their father takes away the grass skirts their mother brings +home from the dance studio. Disturbed since the Vietnam War, +their father is prone to rages and shooting sprees, so the +girls are careful to stay out of his way. Some violence. For +high school and older readers. 1994. + +I Been in Sorrow's Kitchen and Licked Out All the Pots BR +9398 +by Susan Straight +4 volumes +At fourteen, Marietta Cook is already as tall as a man, with +blue-black skin and the speech cadence of her rural +community. When her mother dies, Marietta tries Charleston +rather than weave sweet grass baskets. Returning pregnant, +she learns her home is being restored as part of a +plantation tourist attraction. Disillusioned, she returns +with her twin boys to the modern world. Strong language and +descriptions of sex. 1992. + +I Hadn't Meant to Tell You This BR 9898 +by Jacqueline Woodson +1 volume +Twelve-year-old Marie is a popular eighth grader in a +predominantly African American class when Lena, a poor white +girl, arrives. Because both girls have lost their mothers, +they are soon drawn to one another. Then Lena reveals that +her father is molesting her. Marie refuses to believe her, +but once Marie gets over the shock, she begins to ask +questions and to try to help Lena find a way out of her +tragic situation. For junior and senior high and older +readers. 1994. + +In Troubled Waters BR 9720 +by Beverly Coyle +3 volumes +Ninety-one-year-old Tom Glover now shares his family home +with his daughter Lois and her husband, Paul, who has +Alzheimer's disease. Sitting on his front porch, Tom can +keep an eye on Paul and watch the group of rambunctious boys +that fish at the edge of his land. Ted, the one black boy, +reminds Tom of Lucky, a long-ago friend. When Tom hires Ted +to take Paul fishing, the resulting community furor recalls +Lucky's years-ago tragedy. Some strong language. 1993. + +A Map of the World BR 9800 +by Jane Hamilton +4 volumes +School nurse Alice Goodwin and her dairy farmer husband, +Howard, are never truly accepted by the small community of +Prairie Center. When the daughter of Alice's one friend, +Theresa, dies after falling in the Goodwin's pond, the town +turns vicious. Alice is accused of sexually molesting a +troubled young boy in her school. As Alice awaits trial in +jail, Theresa helps a stunned Howard cope at home. Strong +language and some descriptions of sex. 1994. + +Nobody's Fool BR 9783 +by Richard Russo +6 volumes +Don Sullivan, known in North Bath, New York, as Sully, is +about the unluckiest man in this unlucky town. At sixty, he +is divorced, able to do only piecemeal work because of an +injury, and living in a flat owned by his former +eighth-grade teacher, Miss Beryl. The day before +Thanksgiving 1980, Sully is offered a job by his old +construction boss. It just might be the chance to regain his +son's respect. Strong language and some descriptions of sex. +1993. + +Orlando: A Biography BR 9501 +by Virginia Woolf +2 volumes +Fantasy about a young Elizabethan nobleman who, by book's +end, has been transformed into a young woman. The author +examines English literary and social history through the +three hundred years of Orlando's life, and the +transformation emphasizes Woolf's belief that women are the +intellectual equals of men. 1928. + +Out of Control BR 10096 +by Norma Fox Mazer +1 volume +High school football star Rollo, student senator Candy, and +honor society president Brig are inseparable. So when Brig +teases art student Valerie, the other two go along. But when +the three fondle her in the hall and Valerie goes to the +principal, Rollo becomes confused. He tries to make Valerie +see that he's really a nice guy but begins to see himself +through her eyes. Some strong language. For junior and +senior high and older readers. 1993. + +Rocking the Babies BR 10246 +by Linda Raymond +2 volumes +Although Martha and Nettie Lee are both older African +American women who volunteer to rock premature babies at a +hospital, they dislike each other from the start. Martha +wants to become a foster mother for a preemie abandoned in a +Port-a-Potty. She doesn't realize that Nettie Lee is the +child's grandmother, who is staying anonymous to protect her +daughter. As the two women tell stories and befriend a young +mother, they grow closer. Strong language. 1994. + +Secrets of Paris BR 9740 +by Luanne Rice +3 volumes +Shortly after her father shocks Lydie and her mother by +shooting himself and a woman he secretly loved, Lydie's +husband, Michael, gets a year-long assignment in Paris. +Upset when Lydie is unable to enjoy the romance of the city, +Michael falls in love with a colleague. Meanwhile, Lydie has +finally made friends: an American married to a Frenchman and +their Filipino housekeeper. Strong language and some +explicit descriptions of sex. 1991. + +Selling the Lite of Heaven BR 9847 +by Suzanne Strempek Shea +3 volumes +When Eddie Balicki asks the thirtyish daughter of Polish +immigrants to marry him, she is thrilled. But just before +the wedding, Eddie gets a call to become a Catholic priest. +His jilted fiance places an ad in the PennySaver to sell +the engagement ring, which the paper calls "the lite of +heaven." Over the next year, she interviews an odd string of +possible buyers and reflects on the events that led up to +this debacle. 1994. + +The Shipping News BR 9612 +by E. Annie Proulx +3 volumes +The story centers around Quoyle, a lowly newspaper reporter. +When his wife, Petal Bear, runs off with another man and +gets killed, Quoyle's aunt convinces the distraught man to +move with his two daughters to an abandoned family home in +Newfoundland. Quoyle goes to work for a sleazy paper +covering the shipping news and learns to fit right in. +Strong language. 1993. + +Silk Hope, NC BR 10115 +by Lawrence Naumoff +2 volumes +While Frannie is away on a three-day romp with various men, +her mother dies. Frannie's sister, Natalie, and her fianc, +Jake, intensify the blow by informing Frannie they want to +sell the farmhouse and surrounding acres. A female ancestor +willed the land to stay in the hands of the family's women +so they would always have a place to live. To keep her +sanctuary, Frannie must somehow manage to buy out Natalie's +share. Some strong language. 1994. + +Singing Songs BR 9900 +by Meg Tilly +2 volumes +When Anna is four, her father takes her older brother and +leaves her mother and the four youngest children. Mama +marries Richard, who moves in with three children of his +own. Mama quits work, but they don't become a typical +family. They fight a lot, they move to avoid social workers, +and everyone calls Mama a "hoor." Worse, Richard insists on +giving Anna and her sisters kissing lessons. Strong +language, explicit descriptions of sex, and some violence. +1994. + +Sleepwalking BR 10263 +by Julie Myerson +2 volumes +Struggling artist Susan marries successful Alistair but is +soon unhappy. Eight months pregnant, she resolves leave him +when she falls in love with another artist. Meanwhile, +Susan's cruel father commits suicide, and his ghost as an +unhappy child begins to haunt her. Intertwined with Susan's +story is that of her grandmother Queenie, who failed +miserably as a mother and wife. Strong language and explicit +descriptions of sex. 1994. + +The Slow Natives BR 9564 +by Thea Astley +2 volumes +The Australian Leverson family consists of affable music +teacher Bernard; his wife, Iris; and their sullen son, +Keith. Bernard really doesn't mind when he learns that Iris +is having an affair, but for Keith it is definitely the last +straw. Keith loathes everything about his parents even +though he loves them, and he secretly admits he could use +some disciplining. A last act of rebellion finally tests his +parents' limits. Strong language. 1965. + +Sula BR 9661 +by Toni Morrison +1 volume +Set in an Ohio community called the Bottom, the novel +follows two friends, Sula and Nel, from childhood to old age +and death. Some strong language and explicit descriptions of +sex. 1973. + +Taft BR 10136 +by Ann Patchett +2 volumes +Drummer John Nickel becomes manager of Muddy's, a Memphis +bar, after his son Franklin is born. When Franklin's mother +moves him to Florida, the void in John's life is filled by +young Fay, who applies to be a waitress, and her troubled +brother, Carl. As John becomes entangled in their lives and +fantasizes about what their late father was like, he +realizes it is impossible to keep everyone safe. Strong +language and some violence. 1994. + +Talk before Sleep BR 9860 +by Elizabeth Berg +2 volumes +Ruth and Ann have been close friends for about five years +when Ruth is diagnosed with breast cancer. Ann, a former +nurse, puts her own life on hold to help Ruth cope with the +debilitating illness and face the approach of death. They +spend the last poignant months talking about their +friendship and socializing with Ruth's group of friends. +Strong language. 1994. + +Tortilla Flat BR 10108 +by John Steinbeck +2 volumes +The setting is Danny's house in a tumbledown section of +Monterey, California. Pilon, Pablo, Jesus Maria Corcoran, +Big Joe Portagee, and the old pirate--Danny's friends--are +paisanos of mixed Spanish, Indian, Mexican, and assorted +Caucasian bloods. They are also generally amoral vagabonds +with soft hearts and no scruples. 1935. + +The Track of Real Desires BR 9815 +by Beverly Lowry +2 volumes +Ten days before her scheduled breast biopsy, fiftyish Leland +Standard visits her hometown of Eunola, Mississippi, with +her gay son, Toby. They stay with Leland's friends Mell and +Baker Farrish, who are still reeling over the suicide of +their daughter. As other friends bring their troubled lives +to the welcome-home dinner party, they all ponder how they +got so far off the track of real desires. Strong language +and some explicit descriptions of sex. 1994. + +The Tracks of Angels BR 9773 +by Kelly Dwyer +2 volumes +The afternoon of her father's funeral, young Laura Neuman +takes a Greyhound bus from California to Boston to start a +new life. Shaking off the creepy feeling that she's being +watched, Laura takes a waitressing job and begins to educate +herself with an encyclopedia. A slightly irritable angel +appears in Laura's apartment, as Laura thinks back on the +sad events that led her to Boston. Some strong language and +some explicit descriptions of sex. 1994. + +Tunnel of Love BR 10084 +by Hilma Wolitzer +3 volumes +In this sequel to Hearts (BR 4651), Linda +Reismann--twenty-seven, newly widowed, and pregnant--and +Robin, her thirteen-year-old stepdaughter, have just arrived +in Los Angeles. They hope to begin a new life and establish +a less volatile relationship. But fate has more trouble in +store for both--robbery, murder, a car accident, and a +custody battle. Strong language and some descriptions of +sex. 1994. + +Under the Silk Cotton Tree BR 9594 +by Jean Buffong +2 volumes +Beginning and ending with the account of the wedding of her +two admired teachers, a "fete for so," young Flora gives a +fast-paced, rambling account of the highs and lows of her +life thus far on Grenada. She lives with her mother and +siblings after her father leaves for St. Croix to strike it +rich and never returns. Some strong language. For high +school and older readers. 1993. + +The Virgin Suicides BR 9600 +by Jeffrey Eugenides +2 volumes +The neighborhood boys are obsessed with the five Lisbon +sisters. The boys are attending the strict Lisbons' first +party when thirteen-year-old Cecilia Lisbon succeeds in her +second attempt to kill herself. They are on hand again a +year later when the other sisters follow Cecilia's lead. +Even after the boys become men, they still try to sort out +what happened and why. Strong language, violence, and some +explicit descriptions of sex. 1993. + +Virtual Love BR 9891 +by Avodah Offit +3 volumes +New York sex therapists Aphra and Marc begin corresponding +by e-mail after Marc moves to the West Coast and needs +advice on treating a patient he has sexual feelings for. The +relationship between Aphra and Marc (both married) soon +becomes more than friendship. When Marc returns to New York +for his father's funeral, he reads the lengthy passages +Aphra has never sent him, and the two discover an +astonishing fact. Strong language and some descriptions of +sex. 1994. + +Water BR 9840 +by Sue Thomas +2 volumes +Professor Ruth Murdoch's husband, Simon, left her for +another woman when their daughter, Julie, was three. After +one heartbreaking affair, Ruth settles for an imaginary +lover. Dismayed at the havoc Simon has wreaked on their +lives, Julie eventually has the opportunity to confront him. +Although Julie hates to swim, water surfaces again and again +throughout the story. Some strong language, some violence, +and some explicit descriptions of sex. 1994. + +The Waters of Thirst BR 9717 +by Adam Mars-Jones +2 volumes +William is a gay British actor who works doing voice-overs, +has a monogamous live-in relationship with an airline +worker, and suffers from kidney disease. William humorously +describes his bittersweet life: elaborate dinner parties, +encounters with the couple's strange neighbors and friends, +his obsession with a pornographic model, and his hope that a +careless motorcyclist will provide a kidney. Strong language +and some descriptions of sex. 1993. + +The Weekend BR 10076 +by Peter Cameron +2 volumes +Fortyish art critic Lyle is taking his new lover, Robert, to +visit friends Marian and John in the country for the +weekend. On the train, Lyle explains that a year ago his +lover Tony, who was John's half brother, died at this house. +Meanwhile, Marian is puzzled that Lyle would bring a guest +on this anniversary, and another weekend guest must justify +her plans when her daughter unexpectedly pays her a visit. +Some strong language and some descriptions of sex. 1994. + +Why Sarah Ran Away with the Veterinarian BR 10068 +by Liz Newall +2 volumes +A year after forty-year-old Sarah leaves her husband of +twenty years for her horse's veterinarian, she and her +family separately discuss the subject. Because her mother is +dying, Sarah has returned home to her husband. She is +pregnant after many miscarriages, and her husband believes +the baby is his, despite his vasectomy. And Sarah's aunt +reveals family history that sheds light on Sarah's +adventure. Some strong language. 1994. + +The Wind Blows Backward BR 9988 +by Mary Downing Hahn +2 volumes +Members of the popular crowd at Lauren's high school call +her "Mouse" if they notice her at all. When Spencer, a +fellow book lover and her secret crush in middle school, +joined that crowd she gave up on him. But now, in their +senior year, Spencer is starting to talk to her again. When +they begin to date, Lauren quickly falls in love, despite +Spencer's and others' warnings that he has problems. Some +strong language. For high school and older readers. 1993. + +Humor + +Carry On, Jeeves BR 9533 +by P.G. Wodehouse +1 volume +Ten stories about the adventures of the irresponsible Bertie +Wooster and his indispensable valet, Jeeves. Bertie recalls +the morning he hired Jeeves on the spot, thanks to Jeeves's +ability to produce a hangover cure. The incomparable valet +proves himself time and again as he copes with uninvited +houseguests, patches up broken romances, and listens +politely to Bertie's harebrained schemes. 1925. + +The Cover Artist BR 9561 +by Paul Micou +2 volumes +Satire on the art world. Oscar Lemoine, a cartoonist and +caricaturist, and his dog Elizabeth return to New York after +escaping for more than a year in the south of France. Known +for his wicked nude drawings of public figures on the cover +of Lowdown, Oscar fled in confusion when he belatedly +learned that the magazine was pornographic. But the peace he +found abroad was short-lived when he fell in love with a +manipulative woman. Descriptions of sex and some strong +language. 1990. + +Di and I BR 10276 +by Peter Lefcourt +3 volumes +Leonard Schecter has been given the opportunity to write the +script for a television series about England's royal family. +Entranced by Princess Di, he woos her by promising to write +an epic poem about her. Leonard and Di are besotted with one +another, and Di packs up the two princes and heads to +California for a life with Leonard. Strong language. 1994. + +Guest of a Sinner BR 9725 +by James Wilcox +3 volumes +Fortyish pianist Eric Thorsen's life is disrupted by the +elderly woman and her odoriferous twenty-odd cats in the +apartment beneath his in New York. While trying to bring +action against her, Eric seeks refuge in his older sister's +basement apartment but is annoyed by the appearance of his +pushy father. To escape, Eric agrees to house-sit the +apartment of adoring Wanda Skopinski. What follows is a +series of humorous mix-ups. Strong language. 1993. + +It Is Not Now: Tales of Maine BR 10168 +by John Gould +2 volumes +Yarns about everyday small-town life with a regional accent. +Octogenarian Gould, former columnist for the Christian +Science Monitor, recalls days when "eyah" closed a deal. He +can get into arguments over why anybody would need to +replace permanent antifreeze, and he is pleased when a +youngster expresses interest in a sled Gould is fixing, +until the boy announces, "We can use my father's snowmobile +to pull it back uphill!" 1993. + +Laughing Gas BR 10210 +by P.G. Wodehouse +2 volumes +Reginald, the third earl of Havershot, goes to Hollywood to +prevent the ill-contemplated marriage of his cousin +Egremont. The earl encounters even greater difficulties when +he accidentally ends up changing places--and bodies--with a +famous, but spoiled, child movie star. 1936. + +Once upon a More Enlightened Time: More Politically Correct +Bedtime Stories BR 10132 +by James Finn Garner +1 volume +In the sequel to Politically Correct Bedtime Stories (BR +9870), Garner once more provides fairytales without biases. +Hansel and Gretal become ecoheroes who turn their tree- +butcher father into a beaver. In "The Little Mer-Persun," +the air breather sacrifices his peopleness and becomes half +prawn to be with his mer-person underwater. Bestseller 1995. + +What's Wrong with America BR 10109 +by Scott Bradfield +2 volumes +Emma O'Hallahan begins a journal to explain to her relatives +and assorted genetic riff-raff why she shot her husband, +Marvin, and buried him in the back yard. During the writing, +flustered by a little too much brandy and the constant +appearances of her annoying husband's ghost, Emma discovers +she has also buried a nosy neighbor. When she finds a third +grave, she fears she has gone too far. Strong language. +1994. + +Mystery and Detective + +Alibi for an Actress BR 10134 +by Gillian B. Farrell +2 volumes +In this prequel to Murder and a Muse (BR 10121), struggling +actress Annie McGrogan offers her services to flashy private +detective Duke DeNobili. When he assigns her to help protect +soap opera actress Lucinda Merrill, Annie is proud of her +realistic portrayal of a private eye and grateful for the +easy money. But things get complicated when Merrill's +husband is killed and Lucinda is a suspect. Strong language. +1992. + +The Angel Gang: Tom Hickey Trilogy, Book 3 BR 10190 +by Ken Kuhlken +2 volumes +After rescuing childlike Wendy from a Tijuana dive in The +Loud Adios (BR 9977), ex-private eye Tom Hickey took her to +his Tahoe retreat and eventually married her. Now that Wendy +is about to give birth, Hickey is frustrated that she +insists he leave town to help a past acquaintance beat a +murder rap. His frustration turns to horror when Wendy is +kidnapped. Strong language and some violence. 1994. + +Bertie and the Crime of Passion BR 10305 +by Peter Lovesey +2 volumes +Paris, 1891. Bertie, prince of Wales, has just arrived in +Paris when Sarah Bernhardt informs him that the intended +son-in-law of his good friend Jules d'Agincourt has been +murdered. Bertie enlists Sarah's help, and they are soon off +to the Moulin Rouge, where the murder occurred. 1993. + +Blackening Song BR 10348 +by Aimee and David Thurlo +3 volumes +Ella Clah left the Navajo reservation to join the FBI and +start a new life. When her father is murdered, she returns, +against FBI rules, to the "Rez" to investigate. Her brother, +a medicine man, is considered a suspect. In trying to clear +his name, Ella feels the tug of two cultures and two ways of +life. She must discover her own identity as she seeks that +of the murderer. Some violence and some strong language. +1995. + +The Body in the Cornflakes BR 9676 +by K.K. Beck +2 volumes +Just before the grand reopening of his Galaxy Foods +supermarket, old Karl Krogstad announces his engagement to +the store's television model--Ginger of the enhanced +bustline. When Ginger's body is found in the cornflakes +display, assistant manager Ted Constantino suspects +everyone: Karl's daughter-in-law, who thinks Ginger slept +with her husband, Junior; Junior himself; and their spoiled +son, Lance, who wants the store. Some strong language. 1992. + +The Bold Thing BR 9712 +by Mark Daniel +3 volumes +Micky Brennan was a horseman before he was sent to Her +Majesty's prison for running someone down while drunk and +drugged. Now free, Micky, shunned by old acquaintances, +reluctantly agrees to go back home to Ireland to run a +disabled American woman's horse farm. But Micky's troubles +are not over: the woman is being pressured to pay extortion +for being a "guest of Ireland." Strong language, violence, +and explicit descriptions of sex. 1990. + +The Cat Who Said Cheese BR 10344 +by Lilian Jackson Braun +2 volumes +It is autumn in Pickax City, and Qwill, along with other +residents, is preparing for the Great Food Expo--a festival +of all kinds of happenings related to food. There is also a +mysterious female guest at the New Pickax Hotel whose +presence is causing quite a stir. But things really get +hectic when a bomb explodes in the hotel and the intended +victim seems to be the mystery guest. As usual, Siamese cats +Koko and Yum Yum help solve the crime. Bestseller 1996. + +Chosen for Death BR 10182 +by Kate Clark Flora +2 volumes +At her sister Carrie's funeral, Thea Kozak vows to find +Carrie's murderer. Adopted as a newborn, twenty-one-year-old +Carrie was waitressing in Maine and searching for her birth +mother when she was killed. Detective Andre Lemieux seems +dedicated to the case but can find no motive for the brutal +attack. Hoping to find a lead, Thea retraces Carrie's +search. Strong language, violence, and some descriptions of +sex. 1994. + +Dance Hall of the Dead BR 10352 +by Tony Hillerman +2 volumes +Navajo police lieutenant Joe Leaphorn faces a mystery and a +possible murder in the disappearance of a Zuni youth and his +Navajo best friend shortly before an important annual Zuni +religious ceremony. Beliefs, motivations, and actions of +characters reveal the differences between the Navajo and +Zuni cultures. 1973. + +Dead End Game BR 9875 +by Christopher Newman +2 volumes +The night before the most important World Series game, +Kansas City Royals pitcher Willie Cintron foolishly brings a +woman back to his New York hotel room. Before the night is +over, she has injected a drugged Cintron with a fatal dose +of heroin. Hearing about Cintron's death, a friend refuses +to believe the ballplayer returned to the "dead end game" of +his old New York crowd. And NYPD lieutenant Joe Dante +agrees. Violence and strong language. 1994. + +Dead Man's Island BR 9684 +by Carolyn G. Hart +2 volumes +Retired newspaper reporter Henrietta O'Dwyer Collins (Henrie +O.) is surprised to be summoned by her long-ago lover, +powerful Chase Prescott. Chase has also invited all of his +close associates and family to the island he owns to +determine with Henrie O. which of them tried to murder him. +This task is made more difficult by a hurricane like the one +that gave Dead Man's Island its name. Strong language and +violence. 1993. + +Death among the Dons BR 9679 +by Janet Neel +2 volumes +Francesca Wilson McLeish, wife of police superintendent John +McLeish, is at home on maternity leave. But the baby cries +all the time, and Francesca is miserable. When Dr. Judith +Symonds, warden of Gladstone College, is murdered, the +college hires Francesca as bursar to straighten out suspect +accounts. Then someone else dies, and Francesca almost +becomes a victim herself. 1993. + +Death in Disguise BR 9842 +by Caroline Graham +3 volumes +Most everyone in the village of Compton Dando is of the +opinion that the members of the commune who occupy the Manor +House are a peculiar lot. Curiosity increases when the body +of the group's spiritual leader is discovered. And life +becomes very interesting for Chief Inspector Barnaby and +Sergeant Troy as the number of murders grows. Some strong +language. 1993. + +Death of a Glutton BR 9704 +by M.C. Beaton +2 volumes +Excitement comes to the Scottish village of Lochdubh when a +singles club visits. Run by efficient Maria Worth, the club +attempts to find spouses for the wealthy. Maria's hopes for +this group are dashed, however, when her obnoxious business +partner, obese Peta Gore, decides to join the club and +disgusts everyone with her overeating and bad personality. +When Peta is found murdered, policeman Hamish Macbeth is not +short of suspects. Some strong language. 1993. + +Decider BR 9448 +by Dick Francis +3 volumes +As shareholders examine the grandstands of a run-down +family-owned racetrack, an explosion nearly kills Lee +Morris, whose stock in the track was part of his mother's +divorce settlement. It is not the first such incident to +befall Morris, a young architect who specializes in doing +restorations, and he intends to find out who is behind this +attack. Bestseller 1993. + +Degree of Guilt BR 9811 +by Richard North Patterson +5 volumes +Distinguished attorney Christopher Paget is raising his +fifteen-year-old son Carlo. Carlo's estranged mother, +television journalist Mary Carelli, is in town to interview +novelist Mark Ransom but instead is accused of his murder. +Not only does her story of Ransom's rape attempt have some +inconsistencies for Paget and his assistant to sort out, it +also involves a surprising group of well-known people. +Violence and some explicit descriptions of sex. Bestseller +1992. + +Dreamboat BR 10170 +by Doug J. Swanson +2 volumes +Private investigator Jack Flippo has come to Baggett County, +Texas, to uncover the real cause of Mingo Gideon's death. +Apparently Mingo and Rex Echols, his partner in the Melon +Patch Ranch Bar, were out on Lake Dolph Briscoe when Mingo +fell out of the boat and drowned. But is that what really +happened? After all, Rex had just taken out a large +insurance policy on Mingo. Some strong language. 1995. + +Edsel: A Novel of Detroit BR 10156 +by Loren D. Estleman +2 volumes +Estleman's fourth Detroit novel, following King of the +Corner (BR 9357), is set in the 1950s. Former newspaperman +Connie Minor now works in advertising and has been asked to +secretly create an ad campaign for the new Edsel car. But +Minor runs into problems when some people, especially the +UAW leader, begin to think Minor is a spy for management or +the competition. Strong language and some violence. 1995. + +The Father Hunt: A Nero Wolfe Mystery BR 9532 +by Rex Stout +2 volumes +Amy Denovo asks private investigator Nero Wolfe's assistant, +Archie Goodwin, to find out who her father is and +reluctantly agrees to hire Wolfe if Archie (the only man she +trusts) does the actual work. After her mother's recent +death, Amy learned that this unknown father has been sending +money for years. Archie learns that Amy's mother was just as +much a mystery as her father. Some strong language. 1968. + +Fatlands BR 10147 +by Sarah Dunant +2 volumes +Private investigator Hannah Wolfe is assigned to chaperone +Mattie Shepherd, fourteen, on a birthday excursion to +London. Her father, a research scientist, had promised to +take Mattie but was too busy. When Mattie goes to get a +theater guide from her father's car, the car explodes, +killing her. The police assume the scientist was the +intended victim and suspect animal-rights activists. But +Hannah wants to investigate. Strong language and violence. +1993. + +Fer-de-Lance: A Nero Wolfe Mystery BR 9653 +by Rex Stout +2 volumes +Nero Wolfe and Archie Goodwin make their debut in this first +of many tales about the corpulent master sleuth who operates +out of a New York brownstone. When Wolfe receives the gift +of a deadly snake, his assistant suspects that they are onto +the clever person who murdered an Italian immigrant and a +college president, although he cannot imagine what +connection there may be. 1934. + +A Grave Talent BR 9843 +by Laurie R. King +3 volumes +When Casey Martinelli transfers to a San Francisco precinct, +she is paired with Alonzo Hawkin on a serial killing case. +The bodies of three little girls have been found in an odd +colony outside of the city. When their investigation quickly +reveals that one colony resident is a convicted +child-murderer, the obvious conclusion seems too pat. And to +both detectives, famous painter Vaun Adams seems an +incongruous serial killer. Strong language and some +violence. 1993. + +Growing Light BR 9974 +by Martha Conley +2 volumes +When her husband dies in a car crash, Anne Munro accepts a +job at Growing Light, despite her misgivings about its +abrasive New Age owner, George Ashby, and his kooky staff. +The firm develops garden and farm management systems +software and hardware attuned to the owners' biorhythms. +When Ashby is killed on Anne's first day at work, she is +shocked to learn that, though Ashby had many enemies, she is +the primary suspect. Strong language. 1993. + +The Grub-and-Stakers House a Haunt BR 9746 +by Alisa Craig +2 volumes +Widow Zilla Trott is in her kitchen making a cup of camomile +tea for herself and her cat when the ghost of Hiram Jellyby +suddenly appears. He was murdered some years ago, and he +wants Zilla to find his bones and bury them decently so he +can rest in peace. Hiram also wants her to look for a wooden +box of gold that he buried. When Zilla and her friends begin +digging, they uncover more than bones and gold. 1993. + +The Horse You Came In On BR 9546 +by Martha Grimes +3 volumes +An old acquaintance asks Scotland Yard's Richard Jury to go +to Baltimore and investigate a young man's death. Jury takes +along Wiggins and his friend Plant who has, coincidentally, +been summoned by a Baltimore author friend whose student was +murdered while researching Poe. Following conveniently left +clues suggesting that the two murders and one more are +connected, the three immerse themselves in humorous +Baltimore sleuthing. Some strong language. 1993. + +A Hovering of Vultures BR 9813 +by Robert Barnard +2 volumes +The Sneddon Fellowship is having its inaugural weekend bash +at the Sneddon farmhouse in West Yorkshire. The late +Sneddons were brother and sister authors, and Joshua Sneddon +was said to have killed Susannah in a jealous snit and then +killed himself. Elderly attendee Mrs. Farraday, a former +resident, is shocked to find that her ancient, obnoxious +mother not only is still alive but remembers something +crucial about the elusive Sneddons. 1993. + +In a Pig's Eye BR 9750 +by Robert Campbell +2 volumes +Jimmy Flannery, sewer inspector, has just become the +Democratic councilman for Ward Twenty-Seven. His wife, Mary, +a nurse working with pregnant women, is herself expecting. +While Flannery works out at his club one day, a man known +only as P. Pig drops dead. Of course Flannery wants to know +who he is and why he died, especially when the cops tell him +to butt out. Some strong language. 1991. + +The Innocents BR 10269 +by Richard Barre +2 volumes +A flash flood uncovers a small skeleton in the California +desert. The remains of six more children are found nearby. +Successful restaurateur Ignacio Reyes is horrified to +discover one of the children is his own. Benito was given up +for adoption to wealthy Americans in 1967 when Reyes was +destitute in Mexico. Now Reyes calls in private investigator +Wil Hardesty to help avenge the child's death. Strong +language and violence. 1995. + +Justice for Some BR 9728 +by Kate Wilhelm +2 volumes +Sarah Drexler takes a break from filling her deceased +husband's judgeship in Oregon and travels to California for +a family reunion. There she finds her son, her daughter, and +her father are all very secretive. After her father's body +is found floating in the pool, Sarah learns that he had +hired a detective. When the detective is found murdered, +Sarah's entire family begins to look suspicious. Some strong +language and some violence. 1993. + +Kid's Stuff BR 10214 +by Susan B. Kelly +2 volumes +After Detective Chief Inspector Nick Trevellyan arrests +Arturo Bottone for selling child pornography, the inspector +is frustrated to find no clues leading to Bottone's other +clients or the photographer of the pornography. Meanwhile +Bottone's estranged wife is coping admirably with the fact +that Bottone hanged himself after the arrest, but the +harassed wife of Bottone's arrested client is not doing as +well. Strong language. 1994. + +"K" Is for Killer BR 9880 +by Sue Grafton +3 volumes +P.I. Kinsey Millhone is hired by Janice Kepler to +investigate the death of her daughter Lorna after the police +all but give up on the baffling case. The body is so badly +decomposed that it is impossible to determine if Lorna has +been murdered. Kinsey shifts to night hours to find a motive +when she learns that Lorna's part-time job and crude cabin +belied a high-dollar hooking career and large savings +account. Some strong language. Bestseller 1994. + +The Lethal Partner BR 10351 +by Jake Page +2 volumes +Blind Santa Fe artist Mo Bowdre, from The Stolen Gods (BR +10360), once again becomes involved in a murder +investigation. Shortly after gallery owner Elijah Potts +announces he has seven previously unknown Georgia O'Keeffe +paintings, his gallery manager is killed and the paintings +disappear. When Potts is arrested for her murder, he turns +to Bowdre, who discovers a complex web of deceit and +backstabbing. Strong language. 1996. + + +"L" Is for Lawless BR 10162 +by Sue Grafton +3 volumes +Following "K" Is for Killer (BR 9880), P.I. Kinsey Millhone +has a week off to help with the wedding of her landlord +Henry's elderly brother. But Henry has another favor to ask. +Neighbor Johnny Lee has passed away, and his relatives are +trying to get the army to pay for the funeral, but the army +has no record of Mr. Lee. The case takes Kinsey on a +cross-country chase for a hidden treasure. Some strong +language and some violence. Bestseller 1995. + +The Loud Adios: Tom Hickey Trilogy, Book 2 BR 9977 +by Ken Kuhlken +2 volumes +In 1943, shortly after his wife leaves taking their daughter +with her, thirty-six-year-old California private eye Tom +Hickey is drafted. On his post at the Mexican border, Hickey +is approached by a young soldier who wants help rescuing his +sister. Childlike Wendy Rose dances nude in a Tijuana club +whose owner has an odd control over her. Hickey's attempt to +retrieve her reveals a Nazi plot. Precedes The Angel Gang +(BR 10190). Violence and some strong language. 1991. + +Love Lies BR 9886 +by Fern Kupfer +3 volumes +Fran Meltzer; her best friend, Julia Markem; and Julia's +husband, Tyler, all teach at the same college. When Julia +discovers Tyler is having an affair with one of his +students, he shows no remorse and even blames Julia. Soon +after, Tyler dies while weight lifting. Fran, who always +disliked Tyler, is shocked to learn that the police suspect +Julia may have killed him, but is pleased to assist the +intriguing detective. Some strong language. 1994. + +Madame Maigret's Own Case BR 9537 +by Georges Simenon +2 volumes (Reissue) +Before her regular dentist appointment, Madame Maigret is in +the park, passing the time with the nice lady who is always +there with her small son. This time the lady asks Madame +Maigret to watch the child for a moment but doesn't return +for two hours. When Madame Maigret tells the inspector about +her annoying afternoon, both are unaware that she is +providing him with a clue in his frustrating, +well-publicized case about the body in the bookbinder's +furnace. 1959. + +The Mountain Cat Murders BR 9655 +by Rex Stout +2 volumes +In Cody, Wyoming, young Delia Brand has a mission: to find +and kill the man who murdered her father. Delia's mother has +just committed suicide after spending the family money +trying to do the same thing. But after Delia buys cartridges +for her father's gun and more or less admits her plan, she +can't find the gun. Then her father's business associate is +shot, and things look bad for Delia. Some strong language. +1939. + +The Moving Target: A Lew Archer Novel BR 9538 +by Ross Macdonald +2 volumes +Investigator Lew Archer is hired by paraplegic Mrs. Sampson +to find her much older husband. He's only been missing a +day, but she doesn't want him to get drunk and give away +more of the money she hopes to acquire when she outlives +him. Accompanying Archer are Mr. Sampson's daughter and +pilot. As Archer sniffs out a weak clue that leads to a +suspicious Hollywood crowd, a ransom note arrives. Strong +language and violence. 1949. + +Murder and a Muse BR 10121 +by Gillian B. Farrell +2 volumes +Actress Annie McGrogan works as a private investigator +between auditions until she lands a role in Alan DeLucca's +movie. McGrogan is attracted to the married director and +spends time alone with him on location. When DeLucca's +family shows up, DeLucca is found dead before he can smooth +things out. McGrogan reluctantly reverts to her role as +detective when she learns she is the prime suspect. Strong +language. 1994. + +Murder by the Numbers: An Eliot Ness Novel BR 9672 +by Max Allan Collins +2 volumes +Cleveland, Ohio, 1938. Five years ago, black cop Toussaint +Johnson watched as numbers king Rufus Murphy, for whom he +was doing some "unofficial" work, was shot to death. Eliot +Ness, director of public safety, has a reputation for +putting bad guys in jail, and he is counting on Johnson's +help in shutting down the numbers racket. But he doesn't +know that Johnson was once "on the pad." Strong language and +some violence. 1993. + +Murder in the Place of Anubis BR 10186 +by Lynda S. Robinson +2 volumes +Set in ancient Egypt during the reign of fourteen-year-old +Pharaoh Tutankhamun. Meren, young also but mature enough to +serve as counselor to the king, finds it his duty to learn +the truth about a scribe whose body is found in the sacred +Place of Anubis with an embalming knife protruding from the +neck. Meren is torn between loyalty to the king, respect for +the embalming priests, and suspicion of those who would take +advantage of the youthful pharaoh. 1994. + +Murder on the Iditarod Trail BR 10307 +by Sue Henry +2 volumes +Critical injuries are rare during the Iditarod dog-sled +race, but on day two musher George Koptak is found dead. +While Alaska state trooper Alex Jensen investigates the +accident, he learns that another contestant is dead. At a +loss for determining a motive, Jensen turns to musher Jessie +Arnold for help. As other racers die, Alex, who is growing +fond of Jessie, begins to fear for her. Strong language and +violence. For high school and older readers. 1991. + +Murder on the Potomac BR 9715 +by Margaret Truman +2 volumes +When the body of Pauline Juris, secretary to Wendell +Tierney, is found alongside the Potomac River, Tierney seeks +the advice of law professor Mac Smith. Incriminating +evidence in the form of love letters turns up in Pauline's +apartment. It seems that more than one of the Tierneys is +suspect. Meanwhile they all take part in a playacting group +that re-creates old Washington murders. Some strong +language. Bestseller 1994. + +Nine Lives to Murder BR 9683 +by Marian Babson +2 volumes +Leading Shakespearean actor Winstanley Fortescue awakens in +great pain. Was it a heart attack or was he in an accident? +As he cautiously stretches his limbs he gasps in horror to +see paws: he has become the stage cat, Monty! When he learns +that his body (the Instrument) is in the hospital, Win sets +out in Monty's body to learn just what happened. Some strong +language. 1992. + +Not Quite Dead Enough: A Nero Wolfe Mystery BR 9649 +by Rex Stout +2 volumes +Archie Goodwin, now a major in the army, has been ordered to +persuade Nero Wolfe to assist the army in solving a crime. +But before he can persuade do so, Archie finds himself +accused of murder. When a corpse refuses to rest in peace, +and Captain Albert Cross of Military Intelligence +"accidentally" falls from his hotel balcony, Nero Wolfe +agrees to get involved. 1942. + +Over My Dead Body: A Nero Wolfe Mystery BR 9651 +by Rex Stout +2 volumes +Wise-cracking Archie Goodwin is surprised when his +overweight employer, detective Nero Wolfe, refuses to help +Carla Lovchen's friend, a young Balkan. Carla then convinces +Wolfe to help by proving that her friend (who is accused of +stealing from her fencing student) is Wolfe's long-lost +adopted daughter. Archie is sent to investigate the robbery, +which quickly evolves into murder. Strong language and +violence. 1939. + +Please Pass the Guilt: A Nero Wolfe Mystery BR 9518 +by Rex Stout +2 volumes +Dr. Vollmer has asked Nero Wolfe to look into the case of a +man who refuses to give his real name but continually +returns to a psychiatric clinic claiming he keeps washing +his hands because they have blood on them. Is he in any way +connected to the explosion of a bomb in the office of a +potential candidate for the presidency of a large firm? The +bomb killed another man, and no one is certain who the +intended victim was. 1973. + +Prisoner's Base: A Nero Wolfe Mystery BR 9650 +by Rex Stout +2 volumes +A young woman has come knocking on Nero Wolfe's door asking +for a place to stay for a week--until June 30. She will not +give her name or explain why she wishes to stay. Shortly +thereafter Perry Helmar, guardian of Priscilla Eads, the +heiress to cotton-towel millions, arrives and asks for +Wolfe's help in finding Priscilla. The next morning +Priscilla and her maid are found strangled. Wolfe +reluctantly agrees to investigate. 1952. + +A Question of Guilt BR 9721 +by Frances Fyfield +2 volumes +The latest object of widowed, unloved Eileen Cartwright's +adoration is her married solicitor. When she convinces +financially desperate part-time P.I. Stanislaus Jaskowski to +kill the solicitor's wife, Jaskowski is quickly caught and +tells all. As prosecutor Helen West and Detective Geoffrey +Bailey build their case against her, Cartwright calmly +concocts a plan for revenge against her new opponents. +Strong language and violence. 1988. + +The Return of Mr. Campion BR 9852 +by Margery Allingham +2 volumes +A collection of mystery stories that feature sleuth Albert +Campion. The author admits that she knows little about her +protagonist other than that Campion is an assumed name for a +man whose business card proclaims, "Coups neatly executed; +nothing sordid, vulgar or plebeian; deserving cases +preferred; police no object." Born in 1900, Campion ages +from story to story until he is in his sixties. Includes a +tribute by Agatha Christie. 1989. + +Sacred Ground BR 9726 +by Mercedes Lackey +3 volumes +Jennifer Talldeer, also known as Kestrel-Hunts-Alone, is an +Osage shaman-in-training as well as a private investigator +in Tulsa, Oklahoma. She is looking into an accident at a +construction site on which an Indian burial ground has been +discovered. As she begins her probe, Jennifer suspects a +conspiracy. She also questions why her grandfather has not +made her a full shaman. Some strong language and some +violence. 1994. + +The Secret Adversary BR 9798 +by Agatha Christie +2 volumes +A pack of shocking love letters, a set of scandalous +memoirs, and the bloody corpse of a famous man turn +Chimneys, a secluded estate where politicians carry on +affairs of state and otherwise, into a place of murder and +menace. A nation's fate hangs on a beautiful woman's guilt +or innocence. 1922. + +Send a Fax to the Kasbah BR 9374 +by Dorothy Dunnett +3 volumes +Executive secretary Wendy Helmann is in Morocco with her +boss Sir Robert after she suggests that he have his +portrait-in-progress completed there while he secretly +attempts to buy out a smaller company. (Wendy's mother is +there because she's involved in every last detail of Wendy's +life.) Almost everyone else in the country appears to have +secret agendas also--from the portrait painter to some Arab +kidnappers. Strong language and some violence. 1991. + +The Seventh Sacrament BR 10133 +by James Bradberry +2 volumes +Wealthy Renzo Piruzzi has invited six famous architects to +his villa to design the new world headquarters for his +Italian firm. They will be advised by Jamie Ramsgill, a +university professor. When the architects arrive, they learn +they will actually be competing to design a chapel. But when +two of the competitors die, Jamie begins to suspect foul +play--and a connection with the seven sacraments. Strong +language. 1994. + +The Shaman's Knife BR 9573 +by Scott Young +3 volumes +After solving Murder in a Cold Climate (BR 8160), Matteesie +Kitologitak, the diminutive Inuit inspector with the Royal +Canadian Mounted Police, has a personal stake in his new +case. While visiting relatives, Kitologitak's ancient, +nomadic mother was struck down by the fleeing murderer of a +young Inuit man and his grandmother. Kitologitak looks to +the young Inuit crowd for a killer with a surprising murder +weapon. Some violence and some strong language. 1993. + +The Silent Speaker: A Nero Wolfe Mystery BR 9654 +by Rex Stout +2 volumes +Nero Wolfe, the orchid-growing gourmet detective, +investigates the death of a government official. Archie +Goodwin assists and reveals Wolfe's idiosyncrasies. 1946. + +Spark BR 9625 +by John Lutz +2 volumes +When seventy-year-old Jerome Evans keels over from a heart +attack after getting a clean bill of health, his no-nonsense +wife, Hattie, receives a note claiming Jerome was murdered. +She turns to private investigator Fred Carver, who +immediately stumbles upon the corpse of Jerome's elderly +girlfriend. Carver's continued nosing around the Florida +retirement community makes someone upset enough to +thoroughly work over the disabled PI. Strong language and +violence. 1993. + +Split-Levels BR 10217 +by Thomas Rayfiel +2 volumes +When David Stanley is found dead in the bathtub of his +suburban house, his son Allen returns for the first time in +thirteen years. Allen's mother is dead, and his teenaged +sister disappeared long ago without a trace. Now, as the +investigation shifts from suicide to murder, Allen has +disturbing dreams and becomes a suspect, local women attempt +to seduce him, and nasty rumors circulate about his father. +Strong language and some descriptions of sex. 1994. + +Strawgirl BR 9681 +by Abigail Padgett +2 volumes +Bo Bradley is a San Diego child-abuse investigator who is +struggling with manic depression. She is assigned the case +of Samantha, a three-year-old who dies after hemorrhaging. +The police suspect the mother's live-in anthropologist +boyfriend, Paul, who has taken Samantha's sister and fled. +Although Paul is a member of an unusual group, Bo is uneasy +with the cult motive and searches for another suspect. +Strong language and some violence. 1994. + +Suffer Little Children BR 9959 +by Thomas D. Davis +2 volumes +Two years ago, private investigator Dave Strickland lost his +baby to crib death and his wife to suicide. Now he has been +hired to find Billy, the missing five-year-old son of a +small-town minister. Billy shocked his mother and the +congregation with outbursts of profanity due to Tourette's +syndrome, and his babysitter thinks he was depressed enough +to kill himself. But a ransom note points to kidnapping. +Strong language and some violence. 1991. + +Suspended Animation: A Gil Beckman Mystery BR 10117 +by W.E. Davis +2 volumes +Gil Beckman quit his job with the police force to start a +mail-order business. To make ends meet, Gil works nights as +a security guard at a large California amusement park. When +he discovers that one of the mannequins is actually the body +of young park employee Everett Curran, a Christian like +himself, Gil uses his police training to do some sleuthing. +1994. + +Telling Lies: A Maggie MacGowen Mystery BR 10238 +by Wendy Hornsby +2 volumes +Twenty-two years ago today, investigative filmmaker Maggie +MacGowen's twenty-two-year-old brother, Marc, was killed in +Vietnam, and his twin sister, Emily, was the cover story in +Time magazine because of her antiwar activities. On this +anniversary, Emily, now a well-loved doctor, has summoned +Maggie and others together to meet a "mystery guest" but is +shot before the unveiling. Strong language, violence, and +descriptions of sex. 1992. + +To Play the Fool BR 10220 +by Laurie R. King +2 volumes +Three weeks after the homeless residents of San Francisco's +Golden Gate Park cremated a dog named Theophilus, they +gather wood for the pyre of the dog's master, John. Both +were murdered. Policewoman Kate Martinelli and her partner, +Al Hawkin, intervene. Kate attempts to interview the group's +leader, Brother Erasmus. But he speaks only in quotations, +making her inquiry difficult. Sequel to A Grave Talent (BR +9843). Some strong language. 1995. + +Too Many Clients: A Nero Wolfe Mystery BR 9652 +by Rex Stout +2 volumes +When a businessman is murdered, Nero Wolfe is called into +the case by three different people. First he must unravel +the motives behind his clients' requests. 1960. + +Tropic of Deceit BR 9488 +by Christopher Larson +2 volumes +The same day the U.S. consul in Navidad, Jim Biggins, +receives a threat to his life while looking into the +puzzling death of an American tourist, he also receives an +unexpected guest. Vivacious young Bobbi Lyons from Jim's New +York past needs a job and a place to stay. Jim's friend in +the CIA reluctantly hires Bobbi when she wins the admiration +of a key figure in the growing mystery surrounding the +recent death. Strong language and violence. 1993. + +Trouble in Triplicate: Nero Wolfe Mysteries BR 9648 +by Rex Stout +2 volumes +Three previously published short novels about detective Nero +Wolfe. In Before I Die, a gangster wants Wolfe to handle a +blackmailer. Help Wanted, Male involves a client who waits +too long to look for help. In Instead of Evidence, a man +predicts his own murder and tells Wolfe who the murderer +will be. 1949. + +Tunnel Vision BR 9826 +by Sara Paretsky +4 volumes +Investigator V.I. Warshawski agrees to find out why +low-income housing planned by a women's trade collective is +blocked. She also worries about a homeless family living in +the basement of her condemned office building. When a +shelter board member is found murdered in V.I.'s office +after offering to help the family, the concerns converge. +Strong language and some violence. Bestseller 1994. + +Turtle Baby BR 10216 +by Abigail Padgett +2 volumes +In this sequel to Strawgirl (BR 9681), child-abuse +investigator Bo Bradley offers to help out her ill, +Spanish-speaking colleague by looking into the case of a +poisoned Mayan infant, Acito. Acito stays with caretakers in +San Diego County, while his mother, a singer called Chac, is +living in Tijuana until her American recording contract +comes through. Chac's love for Acito is fierce, but she's +hiding something. Some strong language. 1995. + +Twister BR 9502 +by John Lantigua +2 volumes +An oil town gone bust, Paradise, Texas, has been all but +taken over by a preacher who can recognize the devil because +he himself has committed every sin except murder. When a +Paradise attorney is attacked by a weapon out of the Bible, +New York magazine writer Edward Thomas decides this is the +story that will end his two-month slump. His investigation +is helped along by a local journalist, a blacklisted +teacher, and a tornado. Some violence. 1992. + +A Typical American Town BR 10219 +by John Maddox Roberts +2 volumes +After being asked to leave the LAPD, Gabe Treloar is heading +to a new job in Cleveland when his latest failed suicide +attempt lands him in his hometown. An old girlfriend +welcomes him back, and he finds a room to rent in his +boyhood home. After his landlady encourages him to unload +the horrors that led to his job change, she is murdered, and +Gabe realizes he is being set up. Strong language, violence, +and some explicit descriptions of sex. 1994. + +Wasted Years BR 9557 +by John Harvey +2 volumes +Midlands Detective Inspector Charlie Resnick broods over a +ten-year-old case that coincided with the breakup of his +marriage. John Prior had been convicted on evidence that had +supposedly come from his wife, Ruth, a singer Resnick +admired. Now Prior is up for parole and a minor player in a +current investigation gives Resnick a chance to reenter the +case. Strong language, violence, and explicit descriptions +of sex. 1993. + +Occult + +Ghosts BR 9961 +by Noel Hynd +4 volumes +Actress Annette Carlson has moved to Nantucket Island to be +alone. But she is awakened one night by a transparent woman +in white who warns her that everyone on the island is in +danger. Then an evil-looking shape slithers into her cellar. +Detective Brooks, an adamant nonbeliever in ghosts, changes +his mind quickly as he witnesses the cruel actions of +whatever is haunting the island. Strong language, some +violence, and some descriptions of sex. 1993. + +The House of Thunder BR 9778 +by Dean R. Koontz +3 volumes +When Susan Thorton, thirty-two, awakes in a hospital room, +she has no recollection of why she is there. At first all +she remembers is her name and age. Then slowly her memory +returns and she dreams she is lying in a pool of blood in +the House of Thunder. Violence. Bestseller 1982. + +Jackals BR 9989 +by Charles Grant +2 volumes +Traveling to Virginia, Rachel is forced off a hill in +Tennessee by the occupants of an eerie Cadillac. Battered +and terrified, she escapes and crawls to the nearby home of +Jim Scott, who tells her the truth about her pursuers. They +are a band of jackal-like humans who skin and eat their +victims, and Scott has been hunting them for years. Strong +language and violence. 1994. + +Psychological Themes + +Last Call BR 9436 +by Tim Powers +5 volumes +Las Vegas's Flamingo Hotel, built by Bugsy Siegel in 1946, +appears to be the manifestation of the Tower in a Tarot card +deck. When it was built, Siegel was the reigning Fisher +King. His power was assumed by Georges Leon, who is now +attempting to assure his own immortality by assuming the +spirit of his son Scott. Now Scott, an alcoholic poker +player, finds himself in mortal combat with his father. +Violence, strong language, and descriptions of sex. 1992. + +Out of Body and Mind BR 9969 +by Veronica Jean +2 volumes +Eve White is in prison for killing her art teacher, Adam +Sault, with a poisoned apple. She explains how the Sandman, +her silent guide since she was seven, instructed her to do +it after Adam was repulsed by Eve's webbed toes. Eve, who +has been in therapy for anxiety attacks and out-of-body +experiences, also tells of her unusual past and the trial +that landed her in prison. Strong language, some violence, +and some descriptions of sex. 1993. + +The Trick Is to Keep Breathing BR 9787 +by Janice Galloway +2 volumes +Drama teacher Joy Stone is going through depression. As her +mouth (which knows more about her than the rest of her put +together) explains to her psychiatrist: her mother died, +Joy's live-in lover shook Joy's hand at the funeral, they +broke up, her married lover moved in, they went on vacation, +and he drowned. Joy's friend tells her just to last until +it's better, but Joy's question is, "What will I do while +I'm lasting?" Strong language. 1989. + +The Twenty-Third Dream BR 9767 +by Kathlyn Whitsitt Egbert +2 volumes +When middle-aged Adam Stauffer is diagnosed with Stage IV +cancer, he and his family try to prepare for his impending +death. After a difficult period when Adam is temporarily put +on a respirator, he convinces his wife to travel with him +and their three children back to his father's Texas ranch. +As Adam explains, slowly dying feels like getting ready to +go back to where you came from. Adam's journal entries +describe his growing acceptance. 1993. + +Religious Themes + +Heirs of the Motherland: The Russians, Volume 4 BR 9863 +by Judith Pella +3 volumes +Russia, 1890s. War is on the horizon as Count Dmitri Remizov +returns from eighteen years in exile to claim his daughter +Mariana, raised by his wife Katrina's relatives Sergei and +Anna Fedorcenko. The Fedorcenkos and Count Dmitri and +Mariana will have to call upon their faith to sustain them +as they struggle to reunite their families during these +tumultuous times. Sequel to Travail and Triumph (BR 9336). +1993. + +The Quilt BR 9762 +by T. Davis Bunn +1 volume +Mary can hardly remember when she was a little girl, the +years seem to have gone so fast. Now she is old, and she +hopes she has raised her family the way the Lord would have +wanted her to. But something has been keeping her awake at +night, and she finally realizes what it is: she is to make a +quilt, and "not a stitch is to be sewn without a prayer of +thanks." As the quilt-making draws to an end, so does Mary's +life. 1993. + +Romance + +"Earth Angel" BR 9748 +by Eileen Hehl +3 volumes +Fifty-three-year-old Kathryn Stuart is shocked when former +high school classmate Jamie Chandler answers an ad for her +fifties' records. Jamie is thrilled to find Kath, who had +dated and married his best friend Gary. Kath refuses to +discuss the past, including Gary, who died in Vietnam. But +Jamie, who is opening a fifties' restaurant, is stuck on the +past and has always loved Kath. Some strong language and +some descriptions of sex. 1993. + +Almost Home BR 9736 +by Debra S. Cowan +2 volumes +Leah Becker, a widow, really loved her husband Robert and +knows she will never love anyone else. But the shipping +business Robert started is in great trouble, and Leah can't +save it alone. She goes to businessman Cabot Montgomery for +assistance and is shocked by the offer he makes. He will +help her if she agrees to marry him and give him the +legitimate heir he wants. But can Leah forget Robert? Some +descriptions of sex. 1994. + +Back in Society: The Poor Relation, Volume 6 BR 9966 +by Marion Chesney +2 volumes +The Poor Relation Hotel has become the fashionable place to +stay--especially with the Prince of Wales's coat of arms +over the door. The last thing the proprietors need is a +suicide. But having been thrown out of her home, Lady Jane +Fremney is planning exactly that. Of course the Poor +Relation owners won't let it happen. Sequel to Colonel +Sandhurst to the Rescue (BR 9849). 1994. + +Border Music BR 9879 +by Robert James Waller +2 volumes +Texas Jack Carmine is a wandering man who spends very little +time on his one-horse ranch in Texas. He happens to be in +Dillon, Minnesota, one autumn night in 1986, when a man rips +off Linda Lobo's G-string instead of putting money in it. +Jack attacks the man, and he and Linda run out the back door +and keep on going. Thus begins an odyssey that takes Jack +back into his troubled past. Some strong language and some +descriptions of sex. Bestseller 1995. + +The Bridges of Madison County BR 9823 +by Robert James Waller +1 volume +Robert Kincaid, a photographer for National Geographic, +arrives in Madison County, Iowa, on August 16, 1965, to +photograph covered bridges. He stops at the home of +Francesca Johnson to ask directions, but stays for four +wonderful days--days that awaken within them a deep and +abiding love, which creates another being called "us." But +she is married, and they must let go of one another. Some +descriptions of sex. Bestseller 1992. + +Colonel Sandhurst to the Rescue: The Poor Relation, Volume 5 +BR 9849 +by Marion Chesney +1 volume +The owners of the Poor Relation hotel are in dire straits. +Colonel Sandhurst has been sent to collect an unpaid bill +from Sir Randolph Gray. But instead of returning with money, +he arrives with Miss Frederica Gray, who is running away +from home to avoid a forced marriage to the elderly Lord +Peter Bewley. As is typical at the Poor Relation, romance +takes over and all works out for the best. Sequel to Sir +Philip's Folly (BR 9567). 1994. + +Crimson Roses BR 9682 +by Grace Livingston Hill +2 volumes +Marion Warren is rather put upon in the family home now that +her brother's wife seems to have taken over. But Marion is +strong enough to find a place of her own, and with the +meagre earnings from her first job, she purchases a season +ticket to the symphony. At the second concert, a rose +appears on her seat, and then it happens at every concert. +Delighted, Marion learns that the sender is Lyman, a wealthy +young man who quickly makes his intentions known. 1928. + +Doctor Zhivago BR 9814 +by Boris Pasternak +5 volumes +The story of a Russian physician and poet during the early +decades of the twentieth century. Yurii Zhivago, an +individualist and something of an outsider, is separated +from his wife by the Bolsheviks and falls in love with Lara, +the wife of another man. Pasternak's portrait of Russian +life during the post-revolution years includes an epilogue +expressing hope for liberation and freedom in the future. +1958. + +Electricity: A Novel BR 10353 +by Victoria Glendinning +2 volumes +In Victorian England, the change of mores that broadens +women's roles and the coming of technology that alters daily +life are reflected in the notebooks of a young woman. Raised +in a repressive household, Charlotte Mortimer becomes +enamored of a young engineer who introduces electricity with +a missionary zeal. Her infatuation pales after marriage, +though, and she enters into a dangerous new liaison. 1995. + +Five Days in Paris BR 10234 +by Danielle Steel +2 volumes +Peter Haskell, president of a major pharmaceutical company, +is in Paris awaiting test results on a drug that could +revolutionize cancer care. Olivia Thatcher, who lost her son +to cancer, is also in Paris. While Peter's family means +everything to him, Olivia feels she no longer knows her +husband, a renowned United States senator. One night Peter +and Olivia meet, and their lives are changed forever. Some +descriptions of sex. Bestseller 1995. + +Forever Victoria BR 9486 +by Dorothy Garlock +2 volumes +After her father dies, Victoria McKenna is shocked to learn +that her English half brother has sold the ranch that was +left to her. When the buyer, Mason Mahaffey, arrives with +his brood of younger siblings, Victoria is forced to share +the ranch with them until legal ownership is proven. When +Victoria is stalked by an unknown person, her feelings about +Mason take an unexpected turn. Strong language, violence, +and explicit descriptions of sex. 1983. + +Halfway to Paradise BR 9772 +by Emily Bradshaw +3 volumes +Royalist Matthew Hawkins, earl of Chester, is stripped of +his title and thrown in prison for treason. Puritan widow +Jane Alexander learns Hawkins's servants are trying to find +a home for his young son Gideon. Against Hawkins's strong +objections, the childless woman takes Gideon in. But Hawkins +escapes, becomes a successful underworld thief, and plots to +retrieve his son and leave England. Strong language, +violence, and explicit descriptions of sex. 1993. + +The Hellion BR 9807 +by LaVyrle Spencer +2 volumes +Tommy Lee Gentry is known as a hell-raiser in his hometown +of Russellville, Alabama. He has been married three times, +drives fast cars, drinks, and almost always has a woman with +him. He has never been happy, but there is a chance for +things to change. Rachel, his childhood sweetheart, is free +again. Descriptions of sex. 1984. + +Keeper of the Heart BR 9471 +by Johanna Lindsey +3 volumes +The future on planet Kystran. Shanelle Ly-San-Ter has +completed her education and must now select a lifemate. +Unlike many of her friends, she has not shared sex with +anyone--her father provides a companion to make sure she +waits for her lifemate. But when she meets Falon Van'yer, +she throws caution to the wind. Has she made a big mistake? +Some descriptions of sex. Bestseller 1993. + +The Legacy BR 9782 +by Linda Lael Miller +3 volumes +Jacy Tiernan returns to South Australia when her father, +Jake, has a heart attack. Ian Yarbro is not happy to see +her: ten years ago Jacy broke Ian's heart by fleeing to +America when his ex-lover announced she was pregnant by him. +Now Jake wants Jacy and Ian to marry and take over his land. +But their lust for each other may not be enough to sustain a +marriage. Strong language, explicit descriptions of sex, and +some violence. Bestseller 1994. + +Love at the Ritz BR 9629 +by Barbara Cartland +1 volume +Lady Vilma Dale is in Paris with her father, the earl of +Cuttesdale, who has come to obtain treatment for a back +injury received while breaking in a horse. They are passing +as Colonel Crawshaw and his daughter to avoid recognition. +But when Vilma ends up at the new Ritz Hotel and is mistaken +for a maid by both a French count and an English marquis, +she is in for some surprises. 1993. + +The Morning Gift BR 9577 +by Eva Ibbotson +3 volumes +Ruth Berger, separated from her family during the early days +of World War II, marries longtime English family friend, +Quinton Somerville, in order to get out of Vienna. They plan +to annul the marriage upon arrival in England so Ruth may +marry Cousin Heini, a musician from Budapest. But the +situation becomes complicated when Ruth and Quinton finally +consummate their marriage and he gives her a gift the next +morning. 1993. + +Noblesse Oblige BR 10107 +by Helen Argers +3 volumes +Caroline Richmond has only one chance at a London season, +and it appears she will be successful. Caroline has captured +the attention of one of London's most eligible bachelors, +Branville, the marquis of Kimston. But as the season draws +to an end, the marquis has not offered for her, and Caroline +returns home in disgrace. Then her father arranges for her +to marry the marquis's father. 1994. + +Private Scandals BR 9668 +by Nora Roberts +4 volumes +Chicago, 1994. It is midnight when Deanna Reynolds arrives +at the CBC TV station, where Angela Perkins has demanded to +meet her. They have become enemies in the past few years as +Deanna has usurped Angela's place in the talk-show market +and in Finn Riley's life. Now Deanna hopes to have it out +with Angela. But when Deanna walks into the studio, she +discovers Angela with her face blown away. Strong language +and explicit descriptions of sex. Bestseller 1993. + +Promise Me Anything BR 9802 +by Meryl Sawyer +4 volumes +When his uncle dies, Alex Savich inherits the failing +British diamond company that his uncle sank all of their +savings into. As Alex tries to save the firm by sneaking +diamonds smuggled by his uncle onto the market, he fights a +wild attraction to jewelry designer Brett Lamont. Just as +their relationship begins, Brett's missing lover returns and +Alex is caught up in Russian political intrigue. Strong +language and explicit descriptions of sex. 1994. + +A Season of Angels BR 9582 +by Debbie Macomber +3 volumes +It is almost Christmas, and Gabriel, short on angels to +answer prayers, must rely upon angels Shirley, Goodness, and +Mercy, who have made serious mistakes in the past. Leah, +married ten years, desperately wants a child. Monica wants a +husband, but her lack of faith stands in the way. And Jody +must get over the death of her husband and find a new father +for her son. Some strong language and some descriptions of +sex. Bestseller 1993. + +The Silent Suitor BR 9896 +by Elisabeth Fairchild +2 volumes +Miss Sarah Wilkes Lyndle's mother died from a feverish +malaise when Sarah was still quite young. That same fever +took away Sarah's sight. Now, at twenty-four, Sarah has left +her sheltered country life behind and come to London for the +first time. Lady Castleford, who happens to have a son known +as the "Beast" and a handsome nephew known as "Beauty," has +agreed to introduce Sarah at Almack's. 1994. + +Sir Philip's Folly: The Poor Relation, Volume 4 BR 9567 +by Marion Chesney +1 volume +The Poor Relation is burdened with an undesirable guest +brought in by Sir Philip Sommerville. Mrs. Budge, a vulgar, +overweight woman, has stolen Sir Philip's heart away from +Miss Tonks. Other guests include Lady Carruthers, who +refuses to act her age, and her daughter Arabella, who is in +love with the Earl of Denby but stands little chance of +capturing him because of her mother. Sequel to Mrs. Budley +Falls from Grace (BR 9387). 1993. + +Slow Waltz in Cedar Bend BR 9824 +by Robert James Waller +2 volumes +Michael Tillman is a middle-aged college economics professor +in Cedar Bend. He first meets Jellie Braden, forty, during a +reception at the dean's home. They are immediately attracted +to each other, but she is married and Michael does have some +scruples. When Jellie unexpectedly returns to India, Michael +follows, and learns of a secret that haunts Jellie. Some +descriptions of sex. Bestseller 1993. + +Tarnished Hearts BR 9803 +by Raine Cantrell +1 volume +Trevor Shelby's youthful dream of being a doctor was +literally beaten out of him by his father. Then he was sent +to boarding school. But war is now imminent in the South, +and Trevor, twenty-six, has been called home to Georgia. He +is back only a few days when he meets Leah Reese, the +daughter of his friend's overseer. But their desire for each +other is forbidden by their class differences. Violence, +descriptions of sex, and some strong language. 1994. + +Temptation's Trail BR 9794 +by Dana Ransom +3 volumes +Seventeen-year-old Amanda Duncan has come to Texas to find +her brother, a courier who disappeared with some jewels. A +wealthy orphan, Amanda is able to hire the tracker she has +read about in dime westerns: Harmon Bass. But Bass is not +what she expected. He is small and wiry, one-quarter Apache, +and obsessed with a nightmare from his past. And Amanda +falls in love with him. Strong language, violence, and +explicit descriptions of sex. 1994. + +Thunder and Roses BR 9618 +by Mary Jo Putney +3 volumes +Nicholas Davies, raised by Gypsies until he was seven, is +known in the Welsh village of Penreith as the Demon Earl. +Clare Morgan, the schoolmistress and vicar's daughter, has +called on Nicholas for help in improving conditions at the +local mine. She is so desperate that she agrees to live with +Nicholas for three months. But she quickly finds herself in +unexplored territory. Some strong language and some +descriptions of sex. 1993. + +Thwonk BR 10227 +by Joan Bauer +2 volumes +High school senior A.J. McCreary has a lot of problems. +After four failed relationships, she now has a crush on +unattainable Peter Terris, her father forbids her to pursue +a career as a photographer, and she is running out of time +to take a perfect photo for the Valentine issue of the +school paper. Then A.J. receives a visit from a tiny, +irritating cupid complete with arrows that go "thwonk." For +junior and senior high and older readers. 1995. + +A Time for Love BR 9894 +by Constance O'Day-Flannery +3 volumes +In the dentist's chair with her mind clouded by laughing +gas, businesswoman Elle Mackenzie is suddenly transported +back to 1876. She is mistaken for Jordan McCabe's mail-order +bride and taken to his Texas ranch. Other twists of fate +find her actually married to Jordan, and mother of two +orphaned children. But fear of returning to the 1990s +threatens her happiness. Some violence, some strong +language, and some descriptions of sex. 1991. + +To Love and to Cherish BR 9493 +by Sarah G. Joseph +2 volumes +Texas secretary Candace scolds herself for daydreaming about +Nick, a New Yorker she met two months ago at a friend's +wedding. She is angry that she allowed herself to be seduced +by such a playboy. If only her steady beau, Don, would show +some signs of romance, Candace would be happy to marry him. +But it's Nick who surprises her with flowers on her birthday +and the news that he has moved to Texas. And he refuses to +believe that Candace couldn't care less! 1991. + +Uncertain Magic BR 9713 +by Laura Kinsale +3 volumes +In the eighteenth century, Roderica Delamore is cursed with +the family's psychic gift. Her fear that she will never +marry or lead a normal life is lifted when she meets the +infamous Faelan Iveragh and cannot penetrate his mysterious +mind. Faelan is puzzled by Roderica's offer of marriage but +accepts--much to the dismay of Roderica's family. Is Faelan +as wicked as his reputation? Strong language, explicit +descriptions of sex, and some violence. 1987. + +Uncommon Vows BR 9483 +by Mary Jo Putney +3 volumes +In twelfth-century England, there are two warring earls of +Shropshire--one appointed by the king and one by the ousted +Matilda. Because Meriel de Vere lives with her brother, a +knight loyal to the king, she lies when she encounters +Matilda's earl, Adrian. Taken by her, Adrian holds Meriel +prisoner, hoping she will grow to love him. Instead she +tries to kill herself, only to awaken without a memory. +Violence and explicit descriptions of sex. 1991. + +Wings BR 10092 +by Danielle Steel +3 volumes +As a child, Cassie O'Malley knows that she wants to be a +pilot like her father. He refuses to instruct her, so she +gets family friend and ace pilot Nick Galvin to give her +lessons. Cassie becomes an outstanding pilot who enjoys +participating in air shows. Desmond Williams sees her at one +and offers her a job. Cassie accepts and becomes involved in +an adventure bigger than she dreamed of. Some strong +language and some descriptions of sex. Bestseller 1994. + +You Belong to Me BR 10169 +by Johanna Lindsey +2 volumes +Sequel to Once a Princess (BR 8620). Count Vasili Petroff is +surprised to learn that he, like his cousin, Stefan Barony, +has been betrothed to someone. Supposedly Vasili's father, +dead for fourteen years, made a secret agreement with Baron +Constantin Rubliov for their children to marry. Both the +count and the blunt, unconventional Alexandra are appalled. +Strong language and explicit descriptions of sex. Bestseller +1994. + +Science Fiction + +The Aliens of Earth BR 10298 +by Nancy Kress +3 volumes +Eighteen science fiction and fantasy stories by the Nebula +and Hugo Award-winning author. The collection includes "The +Price of Oranges," a time travel story; "In a World like +This," a tale that presents a nightmarish erosion of +reality; and "The Battle of Long Island," about an alternate +universe. "People like Us" and "Cannibals" are about aliens. +Some strong language. 1993. + +Barrayar BR 9534 +by Lois McMaster Bujold +3 volumes +Cordelia Naismith, former commander with the Beta +Expeditionary Force, is now the wife of Lord Aral Vorkosigan +of the planet Barrayar. When her husband becomes regent, her +quiet life as a devoted wife and expectant mother is +threatened by a bloody civil war--a conflict that will have +far-reaching effects on her adopted world and on the life of +her unborn son. Winner of the 1992 Hugo award. 1991. + +Burning Bright BR 9744 +by Melissa Scott +3 volumes +Starpilot Quinn Lioe needs to have some work done on her +starship at the planet Burning Bright. She plans to take the +opportunity to play a game of virtual reality also. But +Quinn finds herself becoming a pawn in a power struggle +between two empires--the human and the hsai. Some strong +language and some explicit descriptions of sex. 1993. + +Champions of the Force: The Jedi Academy Trilogy, Volume 3 +BR 10104 +by Kevin J. Anderson +2 volumes +The heroes of the New Republic continue their struggle +against the evil Empire. Princess Leia strives to protect +her children from imperial agents, Han Solo undertakes a +mission to track down a rogue Jedi knight and persuade him +to return to the good side of the Force, and Luke Skywalker +lies comatose fighting for his survival on the spirit plane. +A Star Wars novel. Sequel to Dark Apprentice (BR 9872). +Bestseller 1994. + +Children of the Jedi BR 10185 +by Barbara Hambly +3 volumes +After an old friend tries to murder Han Solo on the jungle +world of Ithor, Luke Skywalker sets out for a distant star +system to learn the reason for the assassination attempt. +Meanwhile Han Solo and Princess Leia investigate the rumor +of a lost enclave of Jedi children on the isolated world of +Belsavis and come up against an old evil from the days of +the Empire. A Star Wars novel. Bestseller 1995. + +The City Who Fought BR 9865 +by Anne McCaffrey and S.M. Stirling +4 volumes +Shellperson Simeon controls the vast, city-sized space +station SSS-900. Bored with the daily mining and processing +operations, Simeon indulges his passion for war games. When +refugees arrive fleeing Kolnari space pirates, Simeon knows +that the station's only chance for survival is a real-life +application of his war game skills. Strong language, +violence, and some descriptions of sex. 1993. + +The Courtship of Princess Leia BR 9716 +by Dave Wolverton +3 volumes +Princess Leia of the New Republic considers marrying Prince +Isolder of the Hapes Consortium in order to form a military +alliance against the Empire. Han Solo, shocked to learn he +now has a rival for the hand of Princess Leia, takes a last, +desperate gamble to win her back. His ploy brings Leia, +followed by Luke Skywalker and Prince Isolder, to the +untamed planet Dathomir, where new dangers await. A Star +Wars novel. 1994. + +The Crystal Star BR 10187 +by Vonda N. McIntyre +3 volumes +While Princess Leia attempts to rescue her kidnapped +children from a power-mad Empire loyalist, Luke Skywalker +and Han Solo investigate a space-bending crystalline star +that causes a disruption in the Force and adversely affects +Luke's Jedi powers. And on a nearby planet, Luke and Han +meet a charismatic alien with miraculous healing powers, but +whose intentions are unclear. A Star Wars novel. 1994. + +Dark Apprentice: The Jedi Academy Trilogy, Volume 2 BR 9872 +by Kevin J. Anderson +3 volumes +Despite their past victories, Luke Skywalker, Han Solo, and +Princess Leia are faced with increasing losses in the +ongoing war with scattered remnants of the Empire. Luke +knows that lasting peace can be achieved only through the +creation of a new generation of Jedi knights, but when one +of his students delves into the dark side of the Force, the +greatest evil of all is unleashed. Bestseller 1994. + +Dark Mirror BR 9730 +by Diane Duane +3 volumes +When the Enterprise is drawn into a parallel universe, +Captain Picard and his colleagues come face to face with an +alternate Enterprise manned by persons identical to +themselves. This universe turns out to be a place where +humanity has gone awry, with rule by terror and brutality. +And the evil counterparts of Picard and his crew are bent on +capturing the Enterprise for sinister purposes. A Star Trek: +The Next Generation novel. Bestseller 1993. + +Debtors' Planet BR 9714 +by W.R. Thompson +2 volumes +When the unscrupulous Ferengi contract to bring advanced +technology to a primitive world, it can only mean trouble. +Captain Jean-Luc Picard and the crew of the starship +Enterprise are sent to investigate. Aboard the Enterprise is +a twentieth-century businessman, retrieved from cryonic +suspension, who may be able to apply his own ruthless +talents to thwart the plans of the Ferengi. A Star Trek, the +Next Generation novel. 1994. + +Firehand BR 9965 +by Andre Norton and P.M. Griffin +2 volumes +The Dominion of Virgin has been destroyed by the Baldies--a +band of time-traveling predators who wipe out any race they +encounter. Ross Murdock, Eveleen Riordan, and Gordon Ashe +are time agents for the Project, whose goal is to rescue +Dominion by going back to an earlier time and providing the +residents with the mental powers needed to avoid the +Baldies' attack. For high school and older readers. 1994. + +The Great Starship Race BR 9424 +by Diane Carey +2 volumes +A newly discovered alien people is eager to join the +Federation of planets, and they sponsor a starship race to +promote their membership. The U.S.S. Enterprise, under the +command of Captain Kirk, is sent to compete. But the +good-natured contest turns ominous when a Romulan warship +shows up and enters the race with an unknown motive. A Star +Trek novel. Bestseller 1993. + +Ice Trap BR 9519 +by L.A. Graf +2 volumes +While searching for a missing team of scientists, Captain +Kirk and the senior officers of the U.S.S. Enterprise become +trapped on the ice-covered world of Nordstral. Unable to +communicate with the Enterprise and at the mercy of +earthquakes and magnetic storms, Kirk and his companions +know they must unlock the secret of this mysterious world of +ice or face certain death. A Star Trek novel. 1992. + +Interface BR 10349 +by Stephen Bury +5 volumes +William Cozzano is the perfect presidential candidate. An +international network to whom the United States owes most of +the national debt has taken him over, literally, with a +microchip in his brain. The network can instantaneously feed +the latest public opinions, obtained from the populace by +wrist-worn polling units, directly into Cozzano. He's +unbeatable--if nothing goes wrong! Strong language and some +descriptions of sex. 1994. + +Jedi Search: The Jedi Academy Trilogy, Volume 1 BR 9768 +by Kevin J. Anderson +3 volumes +In the wake of the Republic's victory over the evil Empire, +Luke Skywalker wants to reinstate the order of Jedi knights. +He begins a precarious mission to find descendants of the +nearly exterminated Jedis. Meanwhile, Han Solo and Chewbacca +discover a remnant base of the Empire under the command of a +ruthless woman who has at her disposal a weapon more +destructive than the Empire's death stars. A Star Wars +novel. Bestseller 1994. + +Jumper BR 9548 +by Steven Gould +3 volumes +After twice ending up in his local library following +threatening situations, Davy Rice, seventeen, realizes he +has the ability to "jump," or teleport himself. He also +believes his mother had the same power and that she used it +to escape from Davy's abusive father. Soon Davy finds +himself on the streets of New York where he uses teleporting +for survival and to find his mom. Strong language and some +violence. For junior and senior high and older readers. +1992. + +Keeper of the Heart BR 9471 +by Johanna Lindsey +3 volumes +The future on planet Kystran. Shanelle Ly-San-Ter has +completed her education and must now select a lifemate. +Unlike many of her friends, she has not shared sex with +anyone--her father provides a companion to make sure she +waits for her lifemate. But when she meets Falon Van'yer, +she throws caution to the wind. Has she made a big mistake? +Some descriptions of sex. Bestseller 1993. + +The Man in the High Castle BR 9889 +by Philip K. Dick +2 volumes +This 1963 Hugo Award winner portrays an alternate history. +The Axis powers have won World War II and jointly occupy the +United States. A German faction attempts to warn the +Japanese about an impending nuclear attack. The I Ching is +used not only in the plotting of this story, but also within +the story as the basis of a "subversive" alternate history +written by a German author. Some strong language. 1962. + +Mysterium BR 10290 +by Robert Charles Wilson +2 volumes +Two Rivers, Michigan, is the site of a government facility +that is conducting tests on a strange artifact found in +Turkey in 1989. Then in the early dawn hours of a Saturday +in late May, the town vanishes. The residents awake to find +themselves in a town without modern technology and governed +by a powerful, repressive church. Some violence. 1994. + +Q-Squared BR 9867 +by Peter David +3 volumes +Trelane, the pesky, omnipotent being who first appeared as +the Squire of Gothos to Captain Kirk of the original +Enterprise, is back to plague Captain Picard and the +next-generation crew. This time Trelane threatens all of +creation by tampering with three different timelines, and +even the all-powerful Q is unable to stop him. A Star Trek: +The Next Generation novel. Some strong language. 1994. + +Redline the Stars BR 9795 +by Andre Norton and P.M. Griffin +2 volumes +Captain Jellico and the crew of the Solar Queen are +concerned about finding a buyer for part of their fleet--the +Space Wrack. They can't keep using it for mail runs. A new +temporary crew member trades passage to Canuche of Halio for +her brother's purchase of the Space Wrack. But what was to +be a simple trip soon turns dangerous. Some strong language. +1993. + +Sarek BR 9662 +by A.C. Crispin +4 volumes +Ambassador Sarek of Vulcan learns of a treacherous plot to +destroy the Federation of Planets, and he must bring all his +logic and diplomatic skill to bear to unmask and foil the +villains. But his efforts are complicated by the impending +death of his beloved wife, Amanda, and the arrival of his +estranged son, Spock, first officer of the starship +Enterprise. A Star Trek novel. 1994. + +Shadows on the Sun BR 9497 +by Michael Jan Friedman +3 volumes +The crew of the USS Enterprise is on the way back to +Earth--and retirement. Plans change when they are asked to +go on one last mission. Civil war brews on the planet Ssan, +where a group of assassins seeks power. McCoy has had some +experience in dealing with the cult, and it is hoped he can +help. But he doesn't count on his ex-wife, the only woman he +ever loved, being among the mediators. A Star Trek novel. +Strong language and some violence. 1993. + +Star Trek Generations BR 9953 +by J.M. Dillard +2 volumes +On the maiden voyage of the new Enterprise 1701-B, Captain +Kirk is trapped in a timeless nexus when an energy ribbon +hits the ship. Seventy-eight years later, Captain Picard of +the Enterprise 1701-D is also propelled into the nexus while +pursuing an evil scientist. Inside the nexus, Kirk and +Picard meet and team up to stop the scientist from killing +millions of people. A Star Trek novel based on the motion +picture. Bestseller 1994. + +The Starship Trap BR 9523 +by Mel Gilden +2 volumes +Spaceships from nearly every known race of the galaxy are +disappearing. Klingon warships, Romulan Birds of Prey, and +even Federation starships have vanished without a clue. All +the races are distrustful of each other and ready to blame +their traditional enemies for the disappearances. Captain +Kirk of the USS Enterprise must solve the mystery of the +missing ships or watch as the galaxy disintegrates in a +deadly war. A Star Trek novel. 1993. + +The War of the Worlds BR 9590 +by H.G. Wells +2 volumes +The Martians, a loathsome though highly organized race, +invade England and, with their superior weapons, subdue and +prey on the people. For high school and adult readers. 1898. + +Windows on a Lost World BR 9580 +by V.E. Mitchell +2 volumes +While on an archaeological survey of an uninhabited planet, +Captain Kirk and the crew of the starship Enterprise +discover an odd artifact that looks like a window into +another world. When Kirk steps through the window, he finds +himself trapped in the body of a strange, crab-like alien, +and even the astute Mr. Spock is at a loss to understand +what happened to his friend and how to rescue him. A Star +Trek novel. 1993. + + +Short Stories + +Across the Bridge: Stories BR 9512 +by Mavis Gallant +2 volumes +In this collection of eleven short stories, the first four +deal with the lives of the Carette family--Berthe, her +sister Marie, and their mother. Berthe, somewhat +unconventional for her time, is unmarried but sleeps with a +married man. Marie is a helpless but demanding wife. In the +title story, a mother throws her daughter's wedding +invitations into the water. And in "The Fenton Child," a +young girl learns how to handle her father. 1993. + +American Eyes: New Asian-American Short Stories for Young +Adults BR 10180 +edited by Lori M. Carlson +1 volume +Ten coming-of-age stories about the conflict many Asian +American youths experience when they examine their native +Korean, Japanese, Chinese, Vietnamese, and Filipino +heritages with American eyes. Sometimes it is a search for +identity, sometimes it is cultural embarrassment, and +sometimes it is a generation gap, but in each story +something ignites an Asian fire. For junior and senior high +readers. 1994. + +Barking Man and Other Stories BR 10123 +by Madison Smartt Bell +2 volumes +A collection of ten short stories showing the struggles of +people and other creatures on the fringes of society. A +Chinese laboratory mouse uses the I Ching for predicting the +future, and the hero of the title story not only barks, but +sheds, climbs on the furniture, and bites. 1990. + +A Brief History of Male Nudes in America BR 9781 +by Dianne Nelson +1 volume +In the title story, the seventeen-year-old protagonist +observes her mother's parade of lovers. As she explains, +"There is a way to stare politely. . . . I think it's fair +to say I'm an expert with my eyes." In "Ground Rules," a man +and his son swoop into the ex-wife's yard to kidnap the +younger son she took with her. Other entries in this +recipient of the Flannery O'Connor Award capture fleeting, +poignant moments. Some strong language. 1993. + +Carry On, Jeeves BR 9533 +by P.G. Wodehouse +1 volume +Ten stories about the adventures of the irresponsible Bertie +Wooster and his indispensable valet, Jeeves. Bertie recalls +the morning he hired Jeeves on the spot, thanks to Jeeves's +ability to produce a hangover cure. The incomparable valet +proves himself time and again as he copes with uninvited +houseguests, patches up broken romances, and listens +politely to Bertie's harebrained schemes. 1925. + +A Christmas Sampler: Classic Stories of the Season, from +Twain to Cheever BR 9430 +edited by E.A. Crawford and Teresa Kennedy +3 volumes +American authors reinforce the notion that Christmas brings +mixed emotions. "Christmas Thoughts" evokes the festivity of +the season and "Christmas Is a Sad Season for the Poor" puts +a new slant on the joy of giving gifts. "One Christmas Eve" +brings out mean-spiritedness toward a black child and "Oh, +Joseph, I'm So Tired" introduces anti-Semitism. 1992. + +Doctors and Other Casualties BR 9617 +by Stewart Massad +3 volumes +Like himself, most of Massad's protagonists are +obstetricians or gynecologists--some green in the art of +"catching babies," others aging and cynical. Many are +practicing in southern clinics, their patients poor and +often ignorant about their pregnancies. In "Dreams of a +Doctor's Wife," the wife of a busy young obstetrician +ironically feels abandoned during her own pregnancy. Strong +language and some explicit descriptions of sex. 1993. + +Fine Feathers and Other Stories BR 9866 +by E.F. Benson +3 volumes +Stories from a literary career that began in the late +nineteenth century. In the title story, a couple inherits a +small fortune and takes up residence in a fine house. But, +not being to the manor born, they miss the small-town gossip +and activity and in the end return to their humble home. The +author joins this tale with others dealing with social +comeuppance, comedy, sarcasm, crooks, cranks, and spooks. +1994. + +The Flight of Andy Burns: Stories BR 9670 +by Alice Mattison +2 volumes +In "The Library Card," a woman realizes it was a terrible +mistake to marry her husband, who isn't perfect. "She will +have to pound him with her words and tears so many more +times before she fixes him, so many hundreds of times." +Mattison's other protagonists also experience profound +realizations during the course of their ordinary days. Some +strong language. 1993. + +Good Bones and Simple Murders BR 10119 +by Margaret Atwood +1 volume +Three dozen sketches that grin and sneer at taking life too +seriously. "Good Bones" muses on the attention paid to the +skeletal frame when it is what makes bones "bad" that is of +interest. In "Gertrude Talks Back," Hamlet's mother delivers +a monologue to her priggish son. And "Let Us Now Praise +Stupid Women" is one of several pieces with a feminist view +on the role of women in literature. Some strong language. +1994. + +Happiness BR 9615 +by Ann Harleman +2 volumes +In the title story of this winner of the John Simmons Short +Fiction Award, the protagonist, a philosophy teacher by +night and a greeting card writer by day, is annoyed by his +students' clichs and his newly found half-brother's simple +dreams. In "Humdrum," as a woman toys with the idea of +leaving her boring husband, he tracks down his long-lost +mother who left his father because life was humdrum. Some +strong language and some explicit descriptions of sex. 1994. + +Heart Songs and Other Stories BR 10249 +by E. Annie Proulx +2 volumes +Eleven short stories featuring the rites of nature and the +rituals of small-town life in rural New England. Proulx's +focus includes the blue-collar worker who is affected by the +newly rural bourgeoisie; the natives who enjoy hunting and +fishing; and the malice, greed, and passion that affect the +residents. Strong language and some violence. 1995. + +In the Land of Men: Stories BR 9446 +by Antonya Nelson +2 volumes +In the collection's title story, the brothers of a recently +raped waitress bring her the perpetrator in the trunk of the +family car. In "Adobe," a divorce is intrigued with the +homeless Chicano who is building her house, while in "The +Facts of Air," a recently separated woman's days revolve +around a sick cat and the veterinarian. "Fort Despair" +describes a family trip in which the mother runs off with +her lover. Strong language and explicit descriptions of sex. +1992. + +In the Sparrow Hills: Stories BR 10252 +by Emile Capouya +2 volumes +Five autobiographical tales. Most draw on the author's +experiences, often having to do with life at sea and +occasionally with literary associations. In the title story, +the narrator searches in vain for a Chekhov tale he read in +college. 1993. + +A Literary Christmas: Great Contemporary Christmas Stories +BR 9703 +edited by Lilly Golden +3 volumes +In one story, a poor child's last thread of hope snaps. +Another tale reveals the tension that builds up when some +families gather. The ubiquitous Christmas play includes a +part for a small girl with a big voice, who happens to be +Jewish. In all, twenty-seven stories explore the spirit of +Christmas and what it means in cultural, psychological, +secular, religious, and emotional terms. Some strong +language. 1992. + +The Nature of Longing BR 10293 +by Alyce Miller +2 volumes +Collection of eight short stories, most dealing with the +complexity of race relations. In the title story about a +homosexual librarian, race is less an issue than sexuality. +In "Color Struck," a black mother has difficulty accepting +her albino daughter. In "What Jasmine Would Think," a white +teenage girl tries to hang out with a group of black teens, +and in "Off-Season Travel," two couples develop an +unsettling bond. Some strong language. 1994. + +Once upon a More Enlightened Time: More Politically Correct +Bedtime Stories BR 10132 +by James Finn Garner +1 volume +In the sequel to Politically Correct Bedtime Stories (BR +9870), Garner once more provides fairytales without biases. +Hansel and Gretal become ecoheroes who turn their tree- +butcher father into a beaver. In "The Little Mer-Persun," +the air breather sacrifices his peopleness and becomes half +prawn to be with his mer-person underwater. Bestseller 1995. + +The Palace Thief BR 9819 +by Ethan Canin +2 volumes +The title story tells of the conflict between a history +teacher in a private boys' school and one of his students. +The "dullard" son of a senator, Sedgewick Bell cheats at an +oral exam, only to be foiled by a trick question. Years +later, Bell demands another chance. In other selections, men +reflect on the past, one character wondering why, "of all +the lives that might have been mine, I have led the one I +have just described." Some strong language. 1994. + +The Piano Tuner: Stories BR 10202 +by Peter Meinke +2 volumes +The stories in this collection are a mixture of surprises in +both familiar surroundings and in foreign, but predictable, +circumstances. In the title story, an ignorant bully holds +an educated man hostage in his own home. And in "The Twisted +River," an American professor on leave attempts to sabotage +the careers of two Polish university faculty members. Some +strong language. Winner of the Flannery O'Connor Award for +Short Fiction. 1986. + +The Return of Mr. Campion BR 9852 +by Margery Allingham +2 volumes +A collection of mystery stories that feature sleuth Albert +Campion. The author admits that she knows little about her +protagonist other than that Campion is an assumed name for a +man whose business card proclaims, "Coups neatly executed; +nothing sordid, vulgar or plebeian; deserving cases +preferred; police no object." Born in 1900, Campion ages +from story to story until he is in his sixties. Includes a +tribute by Agatha Christie. 1989. + +The Return of Simple BR 10110 +by Langston Hughes +2 volumes +Stories featuring the fictional character Jesse B. Semple, +or Simple, drawn from Hughes's previous collections of +newspaper columns and from his weekly column in the Chicago +Defender. Perched on his Harlem barstool, Simple muses with +Boyd, his longtime companion, on topics including the women +in his life, wages and prices, racism, politics, birth +control, Africa, and black pride. 1994. + +A Stranger in This World BR 10078 +by Kevin Canty +2 volumes +Ten stories, set in the South or the West, each dealing with +an unfortunate situation or a destructive person. The first +story depicts the agony of a teenaged boy who attempts to +care for alcoholic parents but wonders about his own needs. +And in the title story, a young woman imagines that she sees +her dead husband when she meets the brother of her +boyfriend. Strong language and descriptions of sex. 1994. + +Stripping and Other Stories BR 9841 +by Pagan Kennedy +1 volume +In the title story, retired school teacher Nan decides to +discuss with her cousin Henry the day he watched his older +brother rape her. In "Shrinks," Sara's mother congratulates +her for having consulted thirty therapists in as many years. +"It shows how serious you are about solving your problems." +A shy girl in "Camp" meets an even shyer boy and lets him +believe she is popular. Strong language, some violence, and +some explicit descriptions of sex. 1994. + +Trouble in Triplicate: Nero Wolfe Mysteries BR 9648 +by Rex Stout +2 volumes +Three previously published short novels about detective Nero +Wolfe. In Before I Die, a gangster wants Wolfe to handle a +blackmailer. Help Wanted, Male involves a client who waits +too long to look for help. In Instead of Evidence, a man +predicts his own murder and tells Wolfe who the murderer +will be. 1949. + +The Wedding Dress: Stories from the Dakota Plains BR 9634 +by Carrie Young +1 volume +In the title story, Ildri, a seamstress of Norwegian +descent, is asked to model an intricately made wedding +dress. Upon leaving her position, Ildri buys the dress and +lends it to a succession of brides in her homesteading +community before finding her own bittersweet use for it. The +collection's other stories are also peopled with Norwegian +Americans on the Dakota Plains. Some strong language. 1992. + +Suspense + +Acceptable Risk BR 9881 +by Robin Cook +3 volumes +In 1692, Elizabeth Stewart is hung as a witch in Salem after +a young girl in her care experiences hallucinations. Now, +300 years later, Elizabeth's descendant Kim Stewart, who +inherited Elizabeth's house, is dating a scientist who +suspects a mold on Elizabeth's rye caused the problem. His +search leads to the discovery of a possible antidepressant, +but his odd behavior is scaring Kim. Violence and some +strong language. Bestseller 1994. + +Assumed Identity BR 9484 +by David Morrell +5 volumes +Experts in Mayan hieroglyphics start dying off. Brendan +Buchanan, deep-cover U.S. operative, changes chameleon-like +from one identity to another until his cover is blown in +Mexico. An acquaintance of a previous Buchanan alias is on +the run after an impersonation of her own and needs +Buchanan's help. With reporter Holly McCoy's assistance, +injured Buchanan traces all the leads to a newly discovered +ancient Mayan Mexican village. Strong language and violence. +1993. + +Casino Moon BR 9975 +by Peter Blauner +3 volumes +After college, Anthony Russo knows more than ever that he +doesn't want to follow his stepfather Vin's footsteps into +the mob. But Anthony's construction business is failing; +he's unhappily married to the niece of Vin's boss, Teddy; +and Teddy is calling his loans in. Vin tries to get Anthony +"made" by crediting him with a murder, while Anthony grasps +at a long-shot money venture and falls in love. Strong +language, violence, and some explicit descriptions of sex. +1994. + +Cauldron BR 9426 +by Larry Bond +6 volumes +By 1997 the New World Order has gone awry, and the entire +planet is in an economic mess. France and Germany have +joined together to form EurCon, with Russia planning to join +them. The United States and Britain have allied themselves +with new Eastern European countries against EurCon. Suddenly +France and Germany are locked in battle with Poland, and the +world is at war. Some violence and some strong language. +1993. + +The Chamber BR 9542 +by John Grisham +5 volumes +The chamber is of the gas variety and next in line for it is +Klan member Sam Cayhall. Sam is accused of the bombing +murder of the young twin sons of a Jewish attorney. After +two mistrials, Sam was free for over a decade before an +ambitious district attorney tried him again and won. Now a +new attorney steps forward to plead Sam's case. The lawyer +is Sam's grandson, who needs to discover more about his +family's past. Strong language and some violence. Bestseller +1994. + +The Cheshire Moon BR 9614 +by Robert Ferrigno +2 volumes +When Quinn's career as an investigative journalist came +screeching to a halt after he was blamed for setting a +killer free, it was Quinn's flaky friend Andy who came to +his rescue. Now it's payback time; Andy witnessed a murder +and the huge assassin with a crew-cut is after him. Quinn +frantically untangles the murderer's blackmail motives but +not in time to save Andy. And now the hulk is after Quinn. +Strong language, violence, and explicit descriptions of sex. +1993. + +The Client BR 9551 +by John Grisham +4 volumes +The client is eleven-year-old Mark Sway, who retained lawyer +Reggie Love with a one-dollar bill. The reason Mark needs a +lawyer is the same reason his eight-year-old brother is +comatose in the hospital from shock--they witnessed a +suicide. The victim was a lawyer and unfortunately he told +Mark something before he died--something the police, the +FBI, and the mafia are very interested in. Strong language +and some violence. Bestseller 1993. + +Commission BR 9984 +by Finn Carling +1 volume +A once-famous writer who has isolated himself with his dog +on the island of Corsica has become so detached that he +refers to himself in the third person. Then an eccentric and +wealthy family breaks his solitude with a commission, more +like a demand, for the writer to produce a book about their +son. The reclusive writer is drawn out of himself and his +surroundings to investigate the circumstances of the young +man's mysterious death. 1991. + +Criminal Conversation BR 9797 +by Evan Hunter +3 volumes +New York District Attorney Michael Welles learns that young +playboy Andrew Faviola is acting head of the Mafia operation +run by his imprisoned father, Anthony Faviola. Planning to +take him down, Welles orders heavy surveillance of the +younger Faviola. What Welles doesn't realize is that his +wife is having an affair with the mafioso, who has hidden +his true identity from her. Strong language, violence, and +explicit descriptions of sex. 1994. + +Criminal Damage BR 9685 +by Margaret Yorke +2 volumes +Mrs. Newton, an English widow, never stays long in one +house; she fixes it up and moves on. But her enjoyable, +tidy, solitary life begins to unravel when her daughter +Jennifer's live-in boyfriend leaves her for another woman. +Jennifer reacts badly, stalking the couple and vandalizing +their things. Mrs. Newton's secret past makes her qualified +to counsel Jennifer, but now she has some dreadful problems +of her own. 1992. + +Dangerous to Know BR 9677 +by Margaret Yorke +2 volumes +Housewife Hermione Brown's life has become intolerable since +her daughters have left home and her demanding husband +Walter keeps her a virtual prisoner. Timid Hermione begins +to save up for her escape by secretly cleaning houses. +Meanwhile, Walter is creating a secret life of his own by +stalking a woman he becomes obsessed with on the train. If +he can't act on this obsession, sadistic Walter may take it +out on Hermione and others. Violence. 1993. + +Deep Sleep BR 10215 +by Frances Fyfield +1 volume +Just when pharmacist Pip Carlton tires of his annoying wife, +she dies in her sleep. This leaves him free to pursue his +voluptuous assistant, Kim Perry. But Kim's ex-husband, +Duncan, a detective constable, is still furtively watching +Kim's movements. And, though recovering from surgery, +prosecuter Helen West, who previously appeared in Question +of Guilt (BR 9721), has questions about Mrs. Carlton's +death. Strong language and violence. 1991. + +Doll's Eyes BR 9624 +by Bari Wood +3 volumes +Like her mother and grandmother before her, wealthy Eve +Klein is clairvoyant. It's not a gift she relishes--her +estranged husband, Sam, can't handle it anymore. Attempting +a reconciliation with Sam, Eve drives to his small-town +rental house--only to have a horrifying vision in his +driveway. The murder is the latest of five serial killings, +and the killer isn't happy to learn about Eve. Strong +language, violence, and some explicit descriptions of sex. +1993. + +Eyes of a Child BR 9825 +by Richard North Patterson +5 volumes +Attorney Terri Peralta leaves her emotionally abusive +husband, Ricardo Arias, and begins a relationship with her +boss, Chris Paget. Unemployed Arias demands custody of +daughter Elena and accuses Paget's son Carlo of sexually +abusing Elena. When Arias is found dead, police suspect +Paget, whose campaign for the Senate would have been ruined +by Arias. Some violence and some explicit descriptions of +sex. 1994. + +The Firm BR 9707 +by John Grisham +4 volumes +Bendini, Lambert, and Locke is a Memphis law firm +specializing in taxes and making millionaires. The extensive +dossier it has on Mitchell Y. McDeere indicates he is just +the man for their firm. To Mitch, their job offer seems too +good to be true. He accepts, and it isn't long before he +begins to realize that the firm is not what it appears to +be. Suddenly Mitch finds himself between a rock and a hard +place. Some strong language. Bestseller 1991. + +Floating City: A Nicholas Linnear Novel BR 9818 +by Eric Lustbader +4 volumes +Floating City, in the Vietnam jungle, is controlled by Rock, +an American who has created a powerful nuclear weapon, the +Torch. It is up to Nicholas Linnear to locate Rock and +destroy the Torch. Linnear gets help from his friend Lew +Croaker but must face demons from his past before he can +complete his mission. Sequel to The Kaisho (BR 9447). +Violence, strong language, and explicit descriptions of sex. +1994. + +The Forty Fathom Bank: Novella BR 9832 +by Les Galloway +1 volume +The narrator recalls the year 1940 in San Francisco when, +worried about how he would support his family, he settled on +a get-rich-quick scheme involving shark fishing. He bought +an old boat and hired an experienced fisherman. But life at +sea proved difficult, especially when the narrator was +called upon to cope with rough waters, a silent partner, a +dead engine, and--most dangerous--an overactive imagination. +Some strong language. 1984. + +Inca Gold BR 9621 +by Clive Cussler +5 volumes +A group of archaeologists is exploring a Peruvian sinkhole +and gets in trouble. Dirk Pitt happens to be in the +neighborhood and comes to their aid. But the rescue simply +sets in motion a series of events that finds Pitt looking +for lost treasure, being captured by a band of art +smugglers, and swimming through an uncharted underground +river. Violence and strong language. Bestseller 1994. + +The Indictment BR 9955 +by MacKenzie Canter +3 volumes +Kendall Wilkinson grew up with Peyton, who is now married to +Kendall's cousin, Roger Dufault. Kendall and Peyton have an +affair, and six months later, Roger, who is facing fraud +charges, is found beaten to death in a motel room. Handling +Roger's estate, Kendall discovers a cryptic letter from his +own uncle. Before Kendall can find the link, his uncle dies, +revealing a sordid, dangerous hobby. Strong language and +violence. 1994. + +Just Killing Time BR 9459 +by Derek Van Arman +5 volumes +Home at night, a woman feels a chill pass through her and +attributes it to a virus. Within minutes she and her two +daughters are killed, soon to be added to Jack Scott's +caseload of serial killings. When young Elmer Janson +uncovers a clue to a long-ago death, he and his mother are +targeted to die next. With the help of a local policeman, +Scott races to save the Jansons. Strong language, violence, +and some explicit descriptions of sex. 1992. + +The Kaisho: A Nicholas Linnear Novel BR 9447 +by Eric Lustbader +5 volumes +In the sequel to The White Ninja (BR 8112), Nicholas Linnear +is asked to fulfil a long-ago promise to help a Japanese +underworld leader, the Kaisho. The gangster has been trying +to stymie an evil international conglomerate and is now +marked for death. Meanwhile, his would-be assassin's related +attack on an American mob boss has brought Linnear's friend +Lew Croaker out of retirement. Strong language, violence, +and explicit descriptions of sex. 1993. + +Kiss of the Wolf BR 9893 +by Jim Shepard +2 volumes +Recently separated, high school teacher Joanie Mucherino is +driving her son, Todd, home from his confirmation party when +she hits a man in the road. Realizing he's dead, Joanie +can't bring herself to notify the police, much to Todd's +dismay. The next day they learn the victim was a friend of +car salesman Bruno Minea, who has had a crush on Joanie +since childhood. And Bruno is determined to find the +hit-and-run driver. Strong language and some violence. 1994. + +The Lasko Tangent BR 10255 +by Richard North Patterson +2 volumes +U.S. Attorney Christopher Paget is a member of the Economic +Crimes Commission in Washington, D.C. He believes that +William Lasko, a Korean war hero and close friend of the +president, is involved in shady deals and money laundering. +Paget's one source of information, Alexander Lehman, has +promised to tell all but is killed in a hit-and-run accident +before he can. Prequel to Degree of Guilt (BR 9811). Strong +language and some violence. 1979. + +The Masters of the House: A Novel of Suspense BR 9899 +by Robert Barnard +2 volumes +When Ellen Heenan and her newborn baby die, her husband, +Dermot, breaks down. Panicked that their family will be +broken up if word gets out, young Matthew and his sister +Annie take over caring for the two younger children. But +Carmen O'Keefe, a woman rumored to have had an affair with +Dermot, demands to see him. When she is found dead in their +garden, the children must cover that up, too. Strong +language and some violence. 1994. + +The Mediterranean Caper BR 9620 +by Clive Cussler +2 volumes +It is a quiet Sunday afternoon at Brady Field on the island +of Thasos in the Aegean Sea. Then suddenly an old World War +I biplane appears out of nowhere and attacks the +installation. Off the coast, the First Attempt, part of the +National Underwater Marine Agency, is hit with a series of +"accidents." Major Dirk Pitt, sent to investigate, keeps +remembering a plane shot down sixty years earlier. Some +strong language and some descriptions of sex. 1973. + +Mind Prey BR 10052 +by John Sandford +3 volumes +When psychiatrist Andi Manette and her two daughters are +kidnapped, everyone thinks it's for her wealthy family's +money. Instead, their abductor is John Mail, a former +patient who is obsessed with Manette. When Mail learns +Deputy Chief Lucas Davenport, who also appeared in Night +Prey (BR 9692), is heading up the investigation, he is +thrilled. Mail is a gamer who has played Davenport's +computer games. Strong language and violence. Bestseller +1995. + +Night Prey BR 9692 +by John Sandford +3 volumes +Koop has two bad habits: he's a cat burglar and he stabs +women to death. When he becomes obsessed with Sara Jensen +after robbing her apartment, he increases his assaults. +Alarmed, his two pursuers search wildly for clues to +identify him. Feminist investigator Meagan Connell vows +that, with or without Lucas Davenport's help, she will +capture Koop before her cancer kills her. Strong language, +violence, and some descriptions of sex. 1994. + +The Pelican Brief BR 9731 +by John Grisham +3 volumes +Two Supreme Court Justices are murdered on the same night. +One is very old and extremely liberal; the other is young, +erratically conservative, and a closet homosexual. A top law +student, Darby Shaw, makes the mistake of investigating the +cases due to eventually come before the high court and +pinpoints the mastermind behind the murders. Now Darby's +running for her life. Violence, strong language, and +explicit descriptions of sex. Bestseller 1992. + +The Rainmaker BR 10091 +by John Grisham +4 volumes +Before Rudy Baylor graduates from law school and starts his +new job, he must provide free legal advice at a senior +center. His clients are a couple whose grown son is dying of +leukemia and whose insurance company has abandoned them. +Rudy's excitement over their promising case is dashed by the +news that his much-needed job offer has been withdrawn. And +that's only the beginning of his bad-luck streak. Some +strong language. Bestseller 1995. + +Riding the Rap BR 10359 +by Elmore Leonard +2 volumes +Retiring bookie Harry Arno sends bounty hunter Bobby Deo to +collect money owed him by Chip Ganz. Instead, Chip convinces +Bobby to help him and ex-convict Louis Lewis kidnap Harry. +Luckily for Harry, his former girlfriend Joyce is now dating +federal marshal Raylan Givens. Raylan is not too thrilled +with Harry, but he is a fair man and good at tracking people +and escorting them to prison to "ride the rap." Strong +language and some violence. 1995. + +The Simeon Chamber BR 9729 +by Steve Martini +3 volumes +Attorney Sam Bogardus's irritation over his mother's +"referring" another client to him turns to interest when he +hears Jennifer Davies's story. Her father had been one of a +two-man crew that disappeared from a naval blimp. Years +later, Jennifer has received pages from a pirate's journal +with a note implying that her father is still alive. Sam's +investigation quickly turns ugly: he is attacked and his +partner murdered. Strong language and violence. 1988. + +Spandau Phoenix BR 9658 +by Greg Iles +6 volumes +On May 10, 1941, Rudolf Hess flew to England for a meeting +with the duke of Hamilton. But was it Hess who met with the +duke, or was it his pilot? Now in 1987, Spandau Prison is +being demolished. The last prisoner--number seven--has +committed suicide. Or has he been murdered? And was he +really Hess? Hans Apfel finds some papers at Spandau that +may answer those questions, but now he and his wife are in +great danger. Violence and strong language. Bestseller 1993. + +Star Flight BR 9409 +by Phyllis A. Whitney +2 volumes +Lauren Castle never thought she would go to North +Carolina--her husband Jim had been killed there while +working on a documentary about the life of Roger Brandt and +Victoria Frazer. But a note signed simply "N" compels her. +Perhaps in venturing to the state she can find out why Jim +was killed, learn more about the ill-fated love affair +between her grandparents, Roger and Victoria, and discover +who is responsible for Victoria's death. 1993. + +Street BR 10158 +by Jack Cady +2 volumes +Homeless regulars at the Sanctuary, a boarded-up Seattle +church, include an actor, a vet called Symptomatic Nerve +Gas, a former nun called Silk, a black poet named Elgin, and +Hal, who acts like a medieval knight. A serial killer has +taken someone they know from the street, and now a +neighbor's daughter is missing. The unlikely group set out +to trap the person they come to think of as an inhuman +demon. Some strong language and some violence. 1994. + +Strike Zone BR 9789 +by Jim Bouton and Eliot Asinof +3 volumes +The last game of the season as seen from the perspectives of +two competing characters. Sam Ward, a thirty-two-year-old +rookie, gets a chance to pitch for the Chicago Cubs in a +crucial game against the Phillies, but he isn't getting the +signals he needs to prove himself. And sixty-year-old +veteran umpire Ernie Kolacka makes the calls under +considerable pressure to throw his last game. Strong +language. 1994. + +The Terminal Man BR 9630 +by Michael Crichton +2 volumes +After a car accident, thirty-four-year-old computer +scientist Harry Benson experiences blackouts during which he +engages in violent behavior. In addition, he has a growing +paranoia that machines are taking over the earth. In a test +case, doctors implant a computer in Harry to control the +blackouts. But before they can perfect the interface, Harry +escapes. Will the computer fuel his violent paranoia? +Violence and strong language. 1972. + +A Time to Kill BR 9876 +by John Grisham +4 volumes +In Clanton, Mississippi, black, ten-year-old Tonya Hailey is +raped, tortured, and left for dead by two white men. She +survives and identifies her abductors, who are quickly +arrested. Tonya's father, Carl Lee Hailey, takes matters +into his own hands, shooting and killing the two prisoners. +As his attorney prepares Carl Lee's case, the town is +overrun with reporters and avenging Klansmen. Violence, some +strong language, and some descriptions of sex. 1989. + +War of the Raven BR 9492 +by Andrew Kaplan +4 volumes +The scene is 1939 Argentina, and as the war in Europe +escalates, the number of spies grows. Charles Stewart, an +American agent, is sent to Buenos Aires to locate and +protect the Raven, one of the Allies' intelligence sources. +The only link to the mole, an Argentinian playboy, has been +brutally murdered, and Stewart must locate Raven before it's +too late. Violence, strong language, and explicit +descriptions of sex. 1989. + +War Stories + +Firefall BR 9806 +by Ed Ruggero +4 volumes +Operation Solid Steel is supposed to be a series of practice +maneuvers between U.S. Army Rangers led by Major Mark Isen +and the German army. The Rangers have parachuted into German +territory near the North Sea, where they are to engage the +so-called enemy. But instead of the friendly Germans they +expect, they are confronted by the ultra-rightist German +People's Union--and the Rangers have no live ammunition! +Violence and strong language. 1994. + +Nightfather BR 10204 +by Carl Friedman +1 volume +A young girl explains how her father always talks to his +children about the horrors of his Holocaust experience. She +says he "has camp" and his eyes look like the wolf's at the +zoo, who must "have camp," too. She wants to be invisible +when she grows up so the SS won't find her. Meanwhile, one +brother carries toothpaste like the prisoners did for +thirst, and another tries to freeze his feet in the +refrigerator. Strong language and violence. 1994. + +Schindler's List BR 9689 +by Thomas Keneally +4 volumes +In 1939, Oskar Schindler, a young, wealthy, enterprising +German interested in drinking and women, is a +less-than-exemplary Catholic. In this "nonfiction novel," +Keneally tells the story of Schindler's transformation into +a man who, at great personal risk, saves hundreds of Jews +from death during World War II. Violence and some strong +language. Bestseller 1982. + +Westerns + +Billy Bayes BR 10254 +by Tom Clarke +2 volumes +It was a lucky day for Billy Bayes when Josh Clemens offered +him a job on the Rocking J Ranch. Josh has been hard on +Billy, but Billy has become an excellent ranch hand. He is +even chosen to meet the boss's sister, daughter, and new +Arabian stallion at the train station and escort them to the +ranch. But Billy faces unforeseen trouble from the minute +the horse is led from the train. 1994. + +Bleeding Kansas BR 9669 +by Jon Sharpe +2 volumes +Some suspicious deaths have occurred in the battle over the +slavery issue in the small town of Buckeye Springs, Kansas. +Concerned, President Buchanan dispatches justice agent +Canyon O'Grady to sort it out. After seducing one woman on +the train to Kansas, O'Grady becomes involved with the +daughter of a murder victim, leaving him precious little +time to investigate. Strong language, some violence, and +explicit descriptions of sex. 1990. + +Brules BR 9399 +by Harry Combs +6 volumes +Brules relates that back in 1867, when he was eighteen, he +found himself an honest whore named Michelle. Only trouble +is, he has to kill his boss to claim her. From then on, they +are on the run--until a group of Comanches capture her and +burn her to death. Then Brules, with time out for +buffalo-hunting and mule-driving, sets out for revenge. +Violence, strong language, and some descriptions of sex. +1992. + +City of Widows BR 10212 +by Loren D. Estleman +2 volumes +Page Murdock is tired of being involved with the law in +Montana and is moving to New Mexico where he has bought part +interest in a saloon, the Apache Princess. Montana judge +Harlan Blackthorne suggests that Murdock get a letter of +reference from New Mexico's governor to pave the way with +Sheriff Baronet. But there is an ulterior motive behind +Blackthorne's suggestion to befriend Baronet. Strong +language. 1994. + +Coldiron BR 9970 +by F.M. Parker +2 volumes +Disguised as a boy and hired as a ranch hand by horse +breeder Luke Coldiron, Cristine plans her revenge on +Coldiron for her mother's death. Then she learns she owes +her life to the man. Violence and some strong language. +1984. + +Galloway BR 9514 +by Louis L'Amour +2 volumes +Flagan Sackett finds himself a fugitive in the mountains +with only his wits as defense against the Apache warriors +and the hungry wolves stalking him. 1970. + +God's Country BR 10206 +by Percival Everett +2 volumes +When Curt Marder sees a gang of men burning down his house +and barn, killing his dog, and kidnapping his wife, he has +half a mind to ride up to them and say something, but +doesn't. Later, he decides to hire black tracker Bubba to +help find his wife. The men are joined by young Jake, who +claims the same gang killed his parents. The three get in a +heap of trouble. Strong language and violence. 1994. + +It's Your Misfortune and None of My Own: Code of the West, +Book 1 BR 10126 +by Stephen Bly +2 volumes +Zach Hatcher and Suzanne Cedar have been corresponding for +two years and now plan to marry. But as they travel toward +one another, they are both mortally wounded. Prison escapee +Tap Andrews, who is with Zach when he dies, takes on his +identity. Dance hall girl Pepper Paige becomes Suzanne. +Neither is Christian as Zach and Suzanne had been, but +perhaps they can put aside the past and begin new lives +together. 1994. + +The Lonely Men BR 9572 +by Louis L'Amour +2 volumes +When Tell Sackett receives an urgent plea from the wife of +his brother, Orrin, to rescue Orrin's son from the Apaches, +Tell has no idea that the embittered woman is setting a trap +for him. But by the time he and his comrades have completed +their adventure in the mountainous Arizona Apache territory, +Tell has devised a way to pay her back. Some strong language +and some violence. 1969. + +Mustang Man BR 9556 +by Louis L'Amour +2 volumes +Nolan Sackett, also known as "Mustang Man," is one tough +cowboy. But he can be softhearted when it comes to women in +distress; so even though he is being chased across the +Southwest by a posse, he stops to rescue a woman. It takes +Sackett time to figure out that she is not what she seems, +and no sooner does he shoot his way out of her clutches than +he trusts another woman who spells trouble. 1966. + +Ride the Dark Trail BR 9568 +by Louis L'Amour +2 volumes +Widow Emily Talon is wearing down. Since the last worker on +her Colorado ranch was killed, she has kept a +twenty-four-hour vigil against Jake Flanner and his men, who +are conspiring to take over her ranch. Hearing of the +woman's plight, drifter Logan Sackett discovers that, like +him, Emily is a Tennessee Sackett. Vowing to help her until +her wandering sons return, Logan is determined to teach Jake +Flanner's men a lesson. Some strong language and violence. +1972. + +The Sackett Brand BR 9571 +by Louis L'Amour +1 volume +Forty gunslingers from the Lazy A Ranch plan to hang Tell +Sackett if they can catch him, but the rest of the +Sacketts--politicians, outlaws, cattlemen, bankers, and +tinkers--come to Tell's rescue. Some strong language and +some violence. 1965. + +Sackett's Land BR 9555 +by Louis L'Amour +2 volumes +The Sackett saga goes back to England and follows Barnabas +Sackett from his struggles in the English countryside and +intrigue in Elizabethan London to the New World, where he +establishes a western dynasty. Some strong language and some +violence. 1974. + +The Secret of Snake Canyon BR 9451 +by Terrell L. Bowers +1 volume +Reese Corbett, deputy marshal out of Sacramento, is put on +the case of missing Chinese immigrants--hundreds of them. +Not knowing the language, Corbett is told to enlist the help +of Alley Cat, the half-white, half-Chinese, orphaned +daughter of a "joy girl." But evil Chinese lord Hoy Quan has +other plans for the young woman. Dismayed to learn that Cat +has been kidnapped, Corbett sets out on the still-warm +trail. Violence. 1993. + +Single Tree BR 10181 +by Gary D. Svee +2 volumes +Newly arrived in Montana, Samuel Wilders leaves his wife and +children in the shade of a single cottonwood tree to search +for a horse to buy. Instead, he is confronted by rancher +Tolkien and lynched as a rustler. Horrified, Tolkien's young +Cree ranch hand, Runs Toward, quits his job. He finds the +starving Wilders family and repeats a kindness that he +received as a child. Strong language and violence. 1994. + +The Sky-liners BR 9576 +by Louis L'Amour +2 volumes +The two Sackett brothers, Flagan and Galloway, run into +Black Fetchen's gang in town, and a feud develops. The +Sacketts are good fighters, but they must contend with the +best gunslingers in the country. Some strong language and +some violence. 1967. + +Star of Empire: A Novel of Old San Antonio BR 9452 +by Leonard Sanders +4 volumes +Corrie McNair is expected to marry Ramsey Cothburn and reign +in 1830s Charleston society. But Tad Logan of Savannah +arrives in town and steals Corrie away. Along with her +sister Prue and his brother Whit, Corrie and Tad head to San +Antonio de Bxar. There Tad and Whit become involved in +efforts to create an independent country, Ramsey arrives to +reclaim Corrie, and Prue has her own romantic problems. Some +violence. 1992. + +Stark's Justice: A Judge Earl Stark Western BR 9708 +by James Reasoner +2 volumes +When stagecoach guard Earl Stark listens in on a murder +trial, he realizes a man is going to be hanged illegally. +Compelled to step in and straighten things out, Stark +displays a knowledge of the law that earns him a quick +entrance into the bar. But when Stark's lady friend is shot +down, he forgets his new profession. As far as he's +concerned, her killers are already tried and convicted. +Strong language and violence. 1994. + + diff --git a/office/regression/000_000227.txt b/office/regression/000_000227.txt new file mode 100644 index 0000000..58785db --- /dev/null +++ b/office/regression/000_000227.txt @@ -0,0 +1,16617 @@ +E0000046|A-1|A1| +E0000050|A.A.M.D.|AAMD| +E0000081|AIDS related complex|AIDS-related complex| +E0000098|ANLL|ANL| +E0000148|Aceclidin|Aceclidine| +E0000154|act|Act| +E0000155|active vertical corrector|Active Vertical Corrector| +E0000158|Adams Stokes disease|Adams-Stokes disease| +E0000163|adriamycin|Adriamycin| +E0000164|adriamycinol|Adriamycinol| +E0000181|Ancistrodon|Agkistrodon| +E0000202|alcian blue|Alcian blue| +E0000212|Alexander Trallianus|Alexander of Tralles| +E0000225|Alk. Phos.|Alk. phos.| +E0000225|alk. phos.|Alk. phos.| +E0000234|AluI|Alu I| +E0000239|alzheimer-type|Alzheimer-type| +E0000353|American-type culture collection|American type culture collection| +E0000360|Anabaena|Anabena| +E0000379|angora|Angora| +E0000381|antarctic|Antarctic| +E0000382|antarctic|Antarctic| +E0000389|apartheid|Apartheid| +E0000401|Apressoline|Apresoline| +E0000423|AraA|Ara A| +E0000423|ara A|Ara A| +E0000423|ara-A|Ara A| +E0000423|araA|Ara A| +E0000428|archbishop|Archbishop| +E0000432|arechine|Arechine| +E0000437|Argyll-Robertson pupil|Argyll Robertson pupil| +E0000538|Asulfidine|Azulfidine| +E0000538|Azulfadine|Azulfidine| +E0000546|AAA|A.A.A.| +E0000552|AADS|A.A.D.S.| +E0000578|ACOS|A.C.O.S.| +E0000588|AGS|A.G.S.| +E0000592|AI|A.I.| +E0000636|A. U.|A.U.| +E0000638|B-12|B12| +E0000638|b12|B12| +E0000640|b16 melanoma|B16 melanoma| +E0000642|b5|B5| +E0000648|B.B.B.|BBB| +E0000688|B.S.|BS| +E0000712|bacillus Calmette-Guerin|Bacillus Calmette-Guerin| +E0000754|banting|Banting| +E0000758|baoshen wan|Baoshen Wan| +E0000773|Barlows syndrome|Barlow's syndrome| +E0000782|Bartholin gland|Bartholin's gland| +E0000789|Bartter disease|Bartter's disease| +E0000790|Basedow disease|Basedow's disease| +E0000819|baygon|Baygon| +E0000845|Bechterew disease|Bechterew's disease| +E0000857|Beduin|Bedouin| +E0000857|bedouin|Bedouin| +E0000857|beduin|Bedouin| +E0000863|Behcet syndrome|Behcet's syndrome| +E0000863|Behcets syndrome|Behcet's syndrome| +E0000866|Bechterew's arthritis|Bekhterev's arthritis| +E0000866|Bekhterew's arthritis|Bekhterev's arthritis| +E0000868|Bechterew's nucleus|Bekhterev's nucleus| +E0000877|Bell palsy|Bells palsy| +E0000877|Bell's palsy|Bells palsy| +E0000885|Bence-Jones protein|Bence Jones protein| +E0000887|Bence Jones protein Den|Bence Jones protein den| +E0000920|Bernard Soulier syndrome|Bernard-Soulier syndrome| +E0000932|Berotek|Berotec| +E0001057|Bolivian haemorrhagic fever virus|Bolivian hemorrhagic fever virus| +E0001090|braille|Braille| +E0001096|Brasil|Brazil| +E0001109|Brill-Symmers' disease|Brill-Symmers disease| +E0001123|British pharmacopeia|British pharmacopoeia| +E0001130|Broca's aphasia|Broca aphasia| +E0001166|Buerger disease|Buerger's disease| +E0001182|Burns's amaurosis|Burns' amaurosis| +E0001185|Buschke's scleroedema|Buschke's scleredema| +E0001195|Belorussian S.S.R.|Byelorussian S.S.R.| +E0001204|B-cell|B cell| +E0001206|B fibre|B fiber| +E0001206|B-fiber|B fiber| +E0001206|B-fibre|B fiber| +E0001207|B-lymphocyte|B lymphocyte| +E0001211|b-chain|B-chain| +E0001223|B.Th.U|B.T.U.| +E0001223|BTU|B.T.U.| +E0001223|Btu|B.T.U.| +E0001248|cALLA|CALLA| +E0001248|cALLa|CALLA| +E0001313|cmc|CMC| +E0001315|CMRglc|CMRGL| +E0001315|CMRglu|CMRGL| +E0001315|cmrgl|CMRGL| +E0001316|CMRO2|CMRO| +E0001316|cmro|CMRO| +E0001317|cmv|CMV| +E0001318|cnbr|CNBR| +E0001319|cnc|CNC| +E0001373|Caesarian|Caesarean| +E0001373|Cesarean|Caesarean| +E0001373|Cesarian|Caesarean| +E0001398|Calmette Guerin bacillus|Calmette-Guerin bacillus| +E0001412|Camoquine|Camoquin| +E0001427|Kanesten|Canesten| +E0001489|Chagas disease|Chagas' disease| +E0001489|Chagas's disease|Chagas' disease| +E0001515|Chiari's syndrome|Chiari syndrome| +E0001519|chief|Chief| +E0001529|C. trachomatis|Chlamydia trachomatis| +E0001529|chlamydia trachomatis|Chlamydia trachomatis| +E0001569|Codman's tumour|Codman's tumor| +E0001577|Colles fracture|Colles' fracture| +E0001592|con|Con| +E0001599|congressional|Congressional| +E0001600|congressman|Congressman| +E0001601|congresswoman|Congresswoman| +E0001603|CT.|Conn.| +E0001608|ConA|Con-A| +E0001613|Co-operative|Cooperative| +E0001614|Co-operative|Cooperative| +E0001621|Cordis, Inc.|Cordis Corporation| +E0001621|Cordis|Cordis Corporation| +E0001635|Korvatone|Corvaton| +E0001643|Costen's Syndrome|Costen syndrome| +E0001643|Costens Syndrome|Costen syndrome| +E0001649|count|Count| +E0001650|county|County| +E0001653|Cowden Disease|Cowden's Disease| +E0001653|Cowdens Disease|Cowden's Disease| +E0001658|Coxsackievirus|Coxsackie virus| +E0001658|coxsackie virus|Coxsackie virus| +E0001658|coxsackievirus|Coxsackie virus| +E0001663|Cr P|CrP| +E0001677|Crimean haemorrhagic fever virus|Crimean hemorrhagic fever virus| +E0001710|cubism|Cubism| +E0001718|Curantil|Curantyl| +E0001718|Kurantil|Curantyl| +E0001719|Curling ulcer|Curling's ulcer| +E0001719|Curlings ulcer|Curling's ulcer| +E0001724|Cushing Syndrome|Cushing's Syndrome| +E0001724|Cushings Syndrome|Cushing's Syndrome| +E0001738|Cygnolin|Cygnoline| +E0001759|Czechoslovakian|Czechoslovak| +E0001760|Czechoslovakian|Czechoslovak| +E0001764|C1 esterase|C 1 esterase| +E0001764|C1-esterase|C 1 esterase| +E0001767|C-terminal|C terminal| +E0001771|CAP|C.A.P.| +E0001915|dahuang zhechong wan|Dahuang Zhechong Wan| +E0001923|dalmatian|Dalmatian| +E0001927|dalton|Dalton| +E0001940|Danlos disease|Danlos' disease| +E0001957|Daunoblastine|Daunoblastin| +E0001959|daunorubicin|Daunorubicin| +E0001968|Da Costa syndrome|Da Costa's syndrome| +E0001968|DaCosta syndrome|Da Costa's syndrome| +E0001968|DaCosta's syndrome|Da Costa's syndrome| +E0001975|Dec.|Dec| +E0001978|Dekaris|Decaris| +E0001988|Deg.|Deg| +E0001988|deg.|Deg| +E0001988|deg|Deg| +E0001990|Decranol|Degranol| +E0001992|deism|Deism| +E0002025|destiny|Destiny| +E0002030|Devic disease|Devic's disease| +E0002038|Diagnostic-Related Group|Diagnostic Related Group| +E0002043|Dibenylene|Dibenyline| +E0002044|Dibenzylin|Dibenzyline| +E0002104|Diiodoquin|Diodoquin| +E0002121|DiGuglielmo disease|Di Guglielmo disease| +E0002140|dominion|Dominion| +E0002148|Douglas's cul-de-sac|Douglas' cul-de-sac| +E0002150|Down syndrome|Down's syndrome| +E0002150|Down's Syndrome|Down's syndrome| +E0002164|Duchenne muscular dystrophy|Duchenne's muscular dystrophy| +E0002197|dyazide|Dyazide| +E0002199|dynorphin|Dynorphin| +E0002216|D.Hy.|D.Hg.| +E0002236|EBNA 1|EBNA1| +E0002238|E B virus|EB virus| +E0002238|E-B virus|EB virus| +E0002240|ecdovirus|ECDO virus| +E0002241|EKG|ECG| +E0002245|ecmovirus|ECMO virus| +E0002249|EC/IC|EC-IC| +E0002291|ets|ETS| +E0002295|Eales disease|Eales' disease| +E0002295|Eales's disease|Eales' disease| +E0002297|earl|Earl| +E0002305|Eating Disorders Inventory|Eating Disorder Inventory| +E0002316|Edelmann's anaemia|Edelmann's anemia| +E0002328|Ehlers Danlos disease|Ehlers-Danlos disease| +E0002335|Eisenmenger's syndrome|Eisenmenger syndrome| +E0002344|empire|Empire| +E0002358|Entero-bacteriaceae|Enterobacteriaceae| +E0002359|ENTEROtest|Enterotest| +E0002365|Episcopalian|Episcopal| +E0002365|episcopalian|Episcopal| +E0002365|episcopal|Episcopal| +E0002366|Episcopalian|Episcopal| +E0002366|episcopalian|Episcopal| +E0002366|episcopal|Episcopal| +E0002379|Erb Duchenne paralysis|Erb-Duchenne paralysis| +E0002394|Esmarch's bandage|Esmarch bandage| +E0002403|Euclidian|Euclidean| +E0002416|eustachian|Eustachian| +E0002417|evangelical|Evangelical| +E0002419|Evan's blue|Evans blue| +E0002419|evans blue|Evans blue| +E0002422|Ewing sarcoma|Ewing's sarcoma| +E0002424|expressionism|Expressionism| +E0002453|FEV 1.0|FEV1| +E0002453|FEV1.0|FEV1| +E0002478|FVIIIRAg|FVIIIRA| +E0002483|factor VIII|Factor VIII| +E0002487|fallopian|Fallopian| +E0002489|Fanconi's anaemia|Fanconi's anemia| +E0002493|fascism|Fascism| +E0002494|fascist|Fascist| +E0002500|Feb.|Feb| +E0002557|Fitzhugh Curtis syndrome|Fitz-Hugh-Curtis syndrome| +E0002557|Fitzhugh-Curtis syndrome|Fitz-Hugh-Curtis syndrome| +E0002578|Forbes disease|Forbes' disease| +E0002599|Francis disease|Francis' disease| +E0002603|Frederik|Frederick| +E0002650|F.R.C.P.(C.)|F.R.C.P.C.| +E0002680|gp110|GP110| +E0002681|gp30|GP30| +E0002682|gp32|GP32| +E0002683|gp41|GP41| +E0002684|gp64|GP64| +E0002708|galv|Galv.| +E0002745|gentile|Gentile| +E0002746|gentile|Gentile| +E0002780|Giemsa's stain|Giemsa stain| +E0002807|GoLYTELY|Golytely| +E0002817|Gpp(NH)p|GppNHp| +E0002822|Grave's disease|Graves' disease| +E0002822|Graves's disease|Graves' disease| +E0002831|Greenwich mean time|Greenwich Mean Time| +E0002842|Gross disease|Gross's disease| +E0002842|Gross' disease|Gross's disease| +E0002867|Marcus Gunn's pupillary sign|Gunn's pupillary sign| +E0002873|Gynaecologist|Gynecologist| +E0002874|gipsy|Gypsy| +E0002874|gypsy|Gypsy| +E0002910|HL60|HL-60| +E0002911|HLA|HL-A| +E0002952|HT-29|HT29| +E0002953|HT-29|HT29| +E0002956|HTLV-III-LAV antibody|HTLV III LAV antibody| +E0002957|HTLV-III-LAV antigen|HTLV III LAV antigen| +E0002960|HTLV-III serodiagnosis|HTLV III serodiagnosis| +E0002961|HTLV-III serology|HTLV III serology| +E0002969|HTLV-I|HTLV-1| +E0002969|HTLVI|HTLV-1| +E0002970|HTLVII|HTLV-II| +E0002971|HTLVIII|HTLV-III| +E0002972|HTLV IV|HTLV-IV| +E0002981|Hemosporidium|Haemosporidium| +E0002983|Hageman factor|Hagemann factor| +E0002987|Hailey Hailey disease|Hailey-Hailey disease| +E0002996|Hallervorden Spatz disease|Hallervorden-Spatz disease| +E0003007|Hand Schuller Christian disease|Hand-Schuller-Christian disease| +E0003064|Haemophilus|Hemophilus| +E0003067|Henderson-Hasselbalch|Henderson-Hasselbach| +E0003078|herculean|Herculean| +E0003081|Hers disease|Hers' disease| +E0003117|His bursa|His bursa| +E0003144|homo|Homo| +E0003163|Hovius's canal|Hovius' canal| +E0003164|Hovius's circle|Hovius' circle| +E0003165|Hovius's membrane|Hovius' membrane| +E0003166|Hovius's plexus|Hovius' plexus| +E0003169|HsaI Endonuclease|HsaI endonuclease| +E0003187|Hunter syndrome|Hunter's syndrome| +E0003195|Hurler Disease|Hurler's disease| +E0003196|Hurler syndrome|Hurler's syndrome| +E0003196|Hurlers syndrome|Hurler's syndrome| +E0003226|hyperstat|Hyperstat| +E0003255|ICAb|ICA| +E0003279|I.C.U.|ICU| +E0003292|IGF-I|IGF-1| +E0003293|IGF-II|IGF-2| +E0003302|IL-2|IL 2| +E0003302|IL2|IL 2| +E0003319|I.Q.|IQ| +E0003391|imperial|Imperial| +E0003392|impressionism|Impressionism| +E0003393|impressionist|Impressionist| +E0003485|IPAA|I.P.A.A.| +E0003514|Jakob Creutzfeldt disease|Jakob-Creutzfeldt disease| +E0003552|joule|Joule| +E0003576|Kaposi sarcoma|Kaposi's sarcoma| +E0003576|Kaposis sarcoma|Kaposi's sarcoma| +E0003614|Kinnier-Wilson disease|Kinnier Wilson disease| +E0003620|kleenex|Kleenex| +E0003626|Klumpke Dejerine paralysis|Klumpke-Dejerine paralysis| +E0003644|Korsakov's disease|Korsakoff's disease| +E0003661|Kuf's disease|Kufs' disease| +E0003661|Kufs disease|Kufs' disease| +E0003661|Kufs's disease|Kufs' disease| +E0003675|Kussmaul Landry paralysis|Kussmaul-Landry paralysis| +E0003704|LCMR-gl|LCMRglu| +E0003704|LCMRGl|LCMRglu| +E0003704|LCMRgl|LCMRglu| +E0003772|Langdon-Down's disease|Langdon Down's disease| +E0003812|Legg Calve Perthes disease|Legg-Calve-Perthes disease| +E0003817|Leishmania brasiliensis|Leishmania braziliensis| +E0003818|Leishmania brasiliensis brasiliensis|Leishmania braziliensis braziliensis| +E0003835|Lewandowsky Lutz disease|Lewandowsky-Lutz disease| +E0003844|Leydig's cell|Leydig cell| +E0003869|limbo|Limbo| +E0003901|lord|Lord| +E0003902|lord|Lord| +E0003943|LPN|L.P.N.| +E0003943|l.p.n.|L.P.N.| +E0003943|lpn|L.P.N.| +E0003998|Macaca fasicularis|Macaca fascicularis| +E0004006|Madam|Madame| +E0004022|Malayan|Malaysian| +E0004033|mammalia|Mammalia| +E0004036|Mann Bollman fistula|Mann-Bollman fistula| +E0004046|Marchiafava Micheli disease|Marchiafava-Micheli disease| +E0004048|Marcus-Gunn pupil|Marcus Gunn pupil| +E0004055|Marie Bamberger disease|Marie-Bamberger disease| +E0004057|Marie Strumpell spondylitis|Marie-Strumpell spondylitis| +E0004082|medicaid|Medicaid| +E0004090|medicare|Medicare| +E0004115|Memorial Sloan-Kettering Cancer Center|Memorial Sloan Kettering Cancer Center| +E0004121|mengovirus|Mengo virus| +E0004123|Menkes disease|Menkes' disease| +E0004139|Microtrak|MicroTrak| +E0004139|microtrak|MicroTrak| +E0004171|mocha|Mocha| +E0004172|mod|Mod| +E0004173|moderil|Moderil| +E0004213|morgagnian foramen|Morgagni's foramen| +E0004231|moselle|Moselle| +E0004233|Muslem|Moslem| +E0004233|Muslim|Moslem| +E0004234|Muslem|Moslem| +E0004234|Muslim|Moslem| +E0004237|moyamoya|Moya Moya| +E0004245|Mucha Habermann disease|Mucha-Habermann disease| +E0004262|Mycobacterium avium intracellulare|Mycobacterium avium-intracellulare| +E0004295|NAD(H)|NADH| +E0004424|negroid|Negroid| +E0004425|negroid|Negroid| +E0004427|Neisseria gonorrhea|Neisseria gonorrhoeae| +E0004456|New Zealand Black|New Zealand black| +E0004457|New Zealand White|New Zealand white| +E0004488|north|North| +E0004489|north|North| +E0004490|northeastern|Northeastern| +E0004491|northern|Northern| +E0004493|northwest|Northwest| +E0004494|northwest|Northwest| +E0004495|northwestern|Northwestern| +E0004504|Nov.|Nov| +E0004508|Nulytely|NuLYTELY| +E0004540|NY|N.Y.| +E0004580|OP|Op| +E0004588|oriental|Oriental| +E0004589|oriental|Oriental| +E0004598|Osgood Schlatter disease|Osgood-Schlatter disease| +E0004599|Osler-Rendu disease|Osler Rendu disease| +E0004615|oxyterracin|Oxyterracine| +E0004701|PGE-1|PGE1| +E0004712|P.I.D.|PID| +E0004728|Prl|PRL| +E0004744|puva therapy|PUVA therapy| +E0004797|Panthopaque|Pantopaque| +E0004807|paradise|Paradise| +E0004826|Parkinsons disease|Parkinson's disease| +E0004826|Parkinsons' disease|Parkinson's disease| +E0004826|Parkinsons's disease|Parkinson's disease| +E0004832|paschal|Paschal| +E0004849|Pelizaeus Merzbacher disease|Pelizaeus-Merzbacher disease| +E0004888|Ph 1 chromosome|Ph1 chromosome| +E0004904|photostat|Photostat| +E0004911|PhD|Ph.D.| +E0004922|Pierre-Robin syndrome|Pierre Robin syndrome| +E0004929|Pipolfen|Pipolphen| +E0004981|populist|Populist| +E0005028|PPD|P.P.D.| +E0005031|Q.R.|QR| +E0005034|queen|Queen| +E0005035|queen|Queen| +E0005040|Quincke's oedema|Quincke's edema| +E0005044|QT interval|Q-T interval| +E0005046|r|R| +E0005049|RAS|RA-s| +E0005060|RNAase|RNase| +E0005079|ras.|Ras.| +E0005085|realm|Realm| +E0005095|Reed Sternberg cell|Reed-Sternberg cell| +E0005097|regent|Regent| +E0005098|regent|Regent| +E0005099|reggae|Reggae| +E0005153|Rivinus foramen|Rivinus' foramen| +E0005153|Rivinus's foramen|Rivinus' foramen| +E0005167|Roumanian|Romanian| +E0005167|Rumanian|Romanian| +E0005168|Roumanian|Romanian| +E0005168|Rumanian|Romanian| +E0005175|rose bengal|Rose Bengal| +E0005193|Rous associated virus|Rous-associated virus| +E0005195|Roux en Y anastomosis|Roux-en-Y anastomosis| +E0005207|rugby|Rugby| +E0005243|RMP|R.M.P.| +E0005244|RN|R.N.| +E0005248|RSA|R.S.A.| +E0005272|sp.|SP| +E0005281|ST segment|ST-segment| +E0005287|SV 40|SV40| +E0005314|san zhuang wan|San Zhuang Wan| +E0005378|scrooge|Scrooge| +E0005389|senator|Senator| +E0005407|Shy-Drager syndrome|Shy Drager syndrome| +E0005419|Simmond's disease|Simmonds' disease| +E0005419|Simmonds disease|Simmonds' disease| +E0005427|Sjogren syndrome|Sjogren's syndrome| +E0005431|smilax|Smilax| +E0005466|Spielmeyer Vogt disease|Spielmeyer-Vogt disease| +E0005523|Westphal-Strumpell pseudosclerosis|Strumpell-Westphal pseudosclerosis| +E0005585|SYVA|Syva| +E0005728|Tigazon|Tigason| +E0005739|Thiopronine|Tiopronin| +E0005739|Tiopronine|Tiopronin| +E0005761|Tolosa Hunt syndrome|Tolosa-Hunt syndrome| +E0005825|T cell|T-cell| +E0005827|T lymphocyte|T-lymphocyte| +E0005828|TAT|T.A.T.| +E0005857|UDP-glucuronosyltransferase|UDP glucuronosyltransferase| +E0005878|U.S.|US| +E0005879|U.S.A.|USA| +E0005964|Unverricht Lundborg disease|Unverricht-Lundborg disease| +E0006031|Valsalva's manoeuvre|Valsalva's maneuver| +E0006073|vinca|Vinca| +E0006085|vit. A|Vit A| +E0006086|vit. C|Vit C| +E0006087|vit. E|Vit E| +E0006088|vit. G|Vit G| +E0006089|vit. K|Vit K| +E0006090|vit. L|Vit L| +E0006091|vit. M|Vit M| +E0006103|VA|V.A.| +E0006139|Waldenstrom's macroglobulinaemia|Waldenstrom's macroglobulinemia| +E0006175|Vvedenskii inhibition|Wedensky inhibition| +E0006208|Wernicke's aphasia|Wernicke aphasia| +E0006245|Wilm's tumor|Wilms' tumor| +E0006245|Wilm's tumour|Wilms' tumor| +E0006245|Wilms tumor|Wilms' tumor| +E0006245|Wilms tumour|Wilms' tumor| +E0006245|Wilms' tumour|Wilms' tumor| +E0006245|Wilms's tumor|Wilms' tumor| +E0006245|Wilms's tumour|Wilms' tumor| +E0006265|Wistar-Furth rat|Wistar Furth rat| +E0006278|Wolff-Parkinson-White syndrome|Wolff Parkinson White syndrome| +E0006320|xerox|Xerox| +E0006321|xerox|Xerox| +E0006331|X inactivation|X-inactivation| +E0006332|X linked|X-linked| +E0006333|X ray|X-ray| +E0006333|x ray|X-ray| +E0006333|x-ray|X-ray| +E0006333|xray|X-ray| +E0006334|X ray|X-ray| +E0006334|x ray|X-ray| +E0006334|x-ray|X-ray| +E0006334|xray|X-ray| +E0006401|zwittergent|Zwittergent| +E0006407|[18F]2-deoxyglucose|[18F]-2-deoxyglucose| +E0006446|abdominal aortic aneurism|abdominal aortic aneurysm| +E0006468|abdomino-vaginal|abdominovaginal| +E0006481|abetalipoproteinaemia|abetalipoproteinemia| +E0006492|abiologic|abiological| +E0006554|above mentioned|above-mentioned| +E0006555|above named|above-named| +E0006566|abridgable|abridgeable| +E0006567|abridgement|abridgment| +E0006592|absinth|absinthe| +E0006610|absorbable gelatine sponge|absorbable gelatin sponge| +E0006725|accident prone|accident-prone| +E0006732|acclimatise|acclimatize| +E0006756|acccouter|accoutre| +E0006757|accouterment|accoutrement| +E0006771|accurst|accursed| +E0006835|acetylisation|acetylization| +E0006849|acetylsulphanilamide|acetylsulfanilamide| +E0006877|achromatise|achromatize| +E0006891|acidaemia|acidemia| +E0006892|acidaemic|acidemic| +E0006925|acknowledgment|acknowledgement| +E0006933|acneform|acneiform| +E0006949|acoustical|acoustic| +E0006969|acquired haemolytic anaemia|acquired hemolytic anemia| +E0006969|acquired haemolytic anemia|acquired hemolytic anemia| +E0006969|acquired hemolytic anaemia|acquired hemolytic anemia| +E0006971|acquired immune-deficiency syndrome|acquired immune deficiency syndrome| +E0007021|acromio-clavicular|acromioclavicular| +E0007023|acromio-humeral|acromiohumeral| +E0007169|acute haemolytic anaemia|acute hemolytic anemia| +E0007169|acute haemolytic anemia|acute hemolytic anemia| +E0007169|acute hemolytic anaemia|acute hemolytic anemia| +E0007170|acute haemorrhagic conjunctivitis|acute hemorrhagic conjunctivitis| +E0007172|acute haemorrhagic pancreatitis|acute hemorrhagic pancreatitis| +E0007184|acute lymphoblastic leucaemia|acute lymphoblastic leukemia| +E0007184|acute lymphoblastic leucemia|acute lymphoblastic leukemia| +E0007184|acute lymphoblastic leukaemia|acute lymphoblastic leukemia| +E0007193|acute non-lymphocytic leucaemia|acute non-lymphocytic leukemia| +E0007193|acute non-lymphocytic leucemia|acute non-lymphocytic leukemia| +E0007193|acute non-lymphocytic leukaemia|acute non-lymphocytic leukemia| +E0007193|acute nonlymphocytic leucaemia|acute non-lymphocytic leukemia| +E0007193|acute nonlymphocytic leucemia|acute non-lymphocytic leukemia| +E0007193|acute nonlymphocytic leukaemia|acute non-lymphocytic leukemia| +E0007193|acute nonlymphocytic leukemia|acute non-lymphocytic leukemia| +E0007202|acute posthemorrhagic anaemia|acute posthemorrhagic anemia| +E0007219|aciclovir|acyclovir| +E0007276|adendric|adendritic| +E0007287|adeno-carcinoma|adenocarcinoma| +E0007295|adenohypophysial|adenohypophyseal| +E0007324|adenosinediphosphate|adenosine diphosphate| +E0007340|adenylylimidodiphosphate|adenylyl imidodiphosphate| +E0007341|adenylcyclase|adenyl cyclase| +E0007381|adipopexic|adipopectic| +E0007496|adreno-cortical|adrenocortical| +E0007501|adrenocorticotrophic|adrenocorticotropic| +E0007502|adrenocorticotrophic hormone|adrenocorticotropic hormone| +E0007503|adreno-corticotrophin|adrenocorticotropin| +E0007503|adreno-corticotropin|adrenocorticotropin| +E0007503|adrenocorticotrophin|adrenocorticotropin| +E0007516|adrenotropic|adrenotrophic| +E0007540|adult T cell leucaemia|adult T-cell leukemia| +E0007540|adult T cell leucemia|adult T-cell leukemia| +E0007540|adult T cell leukaemia|adult T-cell leukemia| +E0007540|adult T cell leukemia|adult T-cell leukemia| +E0007540|adult T-cell leucaemia|adult T-cell leukemia| +E0007540|adult T-cell leucemia|adult T-cell leukemia| +E0007540|adult T-cell leukaemia|adult T-cell leukemia| +E0007541|adult coeliac disease|adult celiac disease| +E0007546|adult t-cell lymphoma|adult T-cell lymphoma| +E0007592|ad-lib|ad lib| +E0007616|aero-digestive|aerodigestive| +E0007626|aeronautic|aeronautical| +E0007645|esthete|aesthete| +E0007646|aesthetic|aesthetical| +E0007646|esthetical|aesthetical| +E0007646|esthetic|aesthetical| +E0007647|esthetics|aesthetics| +E0007648|etiology|aetiology| +E0007696|aflatoxin b1|aflatoxin B1| +E0007700|afore-said|aforesaid| +E0007701|afore-said|aforesaid| +E0007702|aforementioned|afore-mentioned| +E0007703|aforementioned|afore-mentioned| +E0007711|after care|aftercare| +E0007711|after-care|aftercare| +E0007715|after image|afterimage| +E0007715|after-image|afterimage| +E0007720|after-potential|afterpotential| +E0007722|after treatment|aftertreatment| +E0007722|after-treatment|aftertreatment| +E0007724|after hyperpolarisation|after-hyperpolarization| +E0007724|after hyperpolarization|after-hyperpolarization| +E0007724|after-hyperpolarisation|after-hyperpolarization| +E0007724|afterhyperpolarisation|after-hyperpolarization| +E0007724|afterhyperpolarization|after-hyperpolarization| +E0007729|agammaglobulinaemia|agammaglobulinemia| +E0007743|aging|ageing| +E0007744|aging|ageing| +E0007778|agglutinogenic|agglutogenic| +E0007780|aggrandisement|aggrandizement| +E0007805|aglycon|aglycone| +E0007827|agonise|agonize| +E0007828|agonised|agonized| +E0007850|agrypnode|agrypnotic| +E0007879|aeroplane|airplane| +E0007890|air-conditioning|air conditioning| +E0007901|airsick|air-sick| +E0007902|airsickness|air-sickness| +E0007910|acinetic|akinetic| +E0007918|alanine amino transferase|alanine aminotransferase| +E0007926|alastrinic|alastrimic| +E0007940|albumen|albumin| +E0007967|alcoholisation|alcoholization| +E0007968|alcoholise|alcoholize| +E0007971|alcohol-withdrawal syndrome|alcohol withdrawal syndrome| +E0007989|aleucaemic|aleukemic| +E0007989|aleucemic|aleukemic| +E0007989|aleukaemic|aleukemic| +E0008010|algebraical|algebraic| +E0008037|aline|align| +E0008038|alinement|alignment| +E0008043|alimentary oedema|alimentary edema| +E0008060|ALK|alk| +E0008069|alkalinisation|alkalinization| +E0008070|alkalise|alkalize| +E0008079|alcaptonuria|alkaptonuria| +E0008080|alcaptonuric|alkaptonuric| +E0008081|alcaptonuric|alkaptonuric| +E0008107|allel|allele| +E0008162|allogeneic|allogenic| +E0008215|alright|all right| +E0008216|alright|all right| +E0008244|alphabetic|alphabetical| +E0008250|alpha-atrial naturiuretic peptide|alpha atrial natriuretic peptide| +E0008253|alpha-globulin|alpha globulin| +E0008260|alpha-act|alpha-1-act| +E0008263|alpha 1 anti-trypsin|alpha-1-anti-trypsin| +E0008263|alpha 1 antitrypsin|alpha-1-anti-trypsin| +E0008263|alpha 1-anti-trypsin|alpha-1-anti-trypsin| +E0008263|alpha 1-antitrypsin|alpha-1-anti-trypsin| +E0008263|alpha-1-antitrypsin|alpha-1-anti-trypsin| +E0008268|alphaadrenergic|alpha-adrenergic| +E0008284|alpha-glucosyl transferase|alpha-glucosyltransferase| +E0008301|alpha tocopherol|alpha-tocopherol| +E0008355|aluminium|aluminum| +E0008391|alveolo-capillary|alveolocapillary| +E0008393|alveolo-dental|alveolodental| +E0008395|alveolo-labial|alveololabial| +E0008396|alveolo-lingual|alveololingual| +E0008398|alveolo-palatal|alveolopalatal| +E0008399|alveoplasty|alveoloplasty| +E0008409|amakrine|amacrine| +E0008410|amakrine|amacrine| +E0008439|embassador|ambassador| +E0008446|ambiance|ambience| +E0008457|ambosexual|ambisexual| +E0008480|amoebiasis|amebiasis| +E0008481|amebacidal|amebicidal| +E0008481|amoebacidal|amebicidal| +E0008481|amoebidical|amebicidal| +E0008484|amoebic colitis|amebic colitis| +E0008485|amoebic dysentery|amebic dysentery| +E0008492|amoeboid|ameboid| +E0008510|amenorrheic|amenorrheal| +E0008510|amenorrhoeal|amenorrheal| +E0008510|amenorrhoeic|amenorrheal| +E0008516|american standard code for information interchange|American Standard Code for Information Interchange| +E0008540|amid|amidst| +E0008561|amidophenazon|aminophenazone| +E0008570|aminoacid|amino acid| +E0008579|ammoniac|ammoniacal| +E0008594|amnesiac|amnesic| +E0008595|amnesiac|amnesic| +E0008603|amniotic|amnionic| +E0008610|ameba|amoeba| +E0008611|amebic|amoebic| +E0008612|amebacide|amoebicide| +E0008612|amebicide|amoebicide| +E0008612|amoebacide|amoebicide| +E0008613|amebocyte|amoebocyte| +E0008614|amongst|among| +E0008622|amortisation|amortization| +E0008623|amortise|amortize| +E0008657|amphitheatre|amphitheater| +E0008664|amphotericin-B|amphotericin B| +E0008679|ampoule|ampule| +E0008690|ams.|ams| +E0008733|amyasthenic|amyosthenic| +E0008756|anemic|anaemic| +E0008771|anaesthetization|anaesthetisation| +E0008771|anesthetisation|anaesthetisation| +E0008771|anesthetization|anaesthetisation| +E0008772|anaesthetize|anaesthetise| +E0008772|anesthetise|anaesthetise| +E0008772|anesthetize|anaesthetise| +E0008781|analgetic|analgesic| +E0008782|analgetic|analgesic| +E0008791|analyzer|analyser| +E0008794|analytical|analytic| +E0008796|analysable|analyzable| +E0008797|analyse|analyze| +E0008810|anancastic personality|anankastic personality| +E0008811|anapaest|anapest| +E0008822|anaphylotoxin|anaphylatoxin| +E0008833|anarchical|anarchic| +E0008850|anatomic|anatomical| +E0008878|anconal|anconeal| +E0008879|anconal bursa|anconeal bursa| +E0008888|anckylostomiasis|ancylostomiasis| +E0008911|adrophile|androphilous| +E0008920|anaemia|anemia| +E0008935|anaesthesia|anesthesia| +E0008937|anaesthesiologist|anesthesiologist| +E0008938|anaesthesiology|anesthesiology| +E0008941|anaesthetic ether|anesthetic ether| +E0008943|anaesthetist|anesthetist| +E0008944|anoestrus|anestrus| +E0008949|aneurine|aneurin| +E0008951|aneurism|aneurysm| +E0008952|aneurismal|aneurysmal| +E0008959|angelical|angelic| +E0008965|angioectatic|angiectatic| +E0008966|angitis|angiitis| +E0008986|angio-follicular|angiofollicular| +E0008998|angio-immunoblastic lymphadenopathy|angioimmunoblastic lymphadenopathy| +E0008999|angio-invasive|angioinvasive| +E0009018|angio-neurotic|angioneurotic| +E0009020|angio-neurotic edema|angioneurotic edema| +E0009020|angio-neurotic oedema|angioneurotic edema| +E0009020|angioneurotic oedema|angioneurotic edema| +E0009021|angio-occlusive|angioocclusive| +E0009028|angio-sarcoma|angiosarcoma| +E0009042|angiotensinamide|angiotensin amide| +E0009043|angiotensin-converting enzyme|angiotensin converting enzyme| +E0009044|angiotensin-converting enzyme inhibitor|angiotensin converting enzyme inhibitor| +E0009047|angiotropic|angiotrophic| +E0009053|anglicisation|anglicization| +E0009054|anglicise|anglicize| +E0009078|anhydrosis|anhidrosis| +E0009078|anidrosis|anhidrosis| +E0009079|anidrotic|anhidrotic| +E0009079|antihidrotic|anhidrotic| +E0009140|anchylosing spondylitis|ankylosing spondylitis| +E0009141|anchylosis|ankylosis| +E0009149|annexe|annex| +E0009150|annexe|annex| +E0009210|ano-rectal|anorectal| +E0009225|aosmic|anosmic| +E0009253|antiacid|antacid| +E0009254|antiacid|antacid| +E0009258|antagonisation|antagonization| +E0009259|antagonise|antagonize| +E0009272|ante-bellum|antebellum| +E0009289|ante partum|antepartum| +E0009289|ante-partum|antepartum| +E0009299|anteriour|anterior| +E0009304|anterior choroid artery|anterior choroidal artery| +E0009339|antero-external|anteroexternal| +E0009342|antero-inferior|anteroinferior| +E0009344|antero-lateral|anterolateral| +E0009349|antero-posterior|anteroposterior| +E0009351|antero-septal|anteroseptal| +E0009362|anthelminthic|anthelmintic| +E0009362|antihelmintic|anthelmintic| +E0009375|anthrasilicosis|anthracosilicosis| +E0009389|anthropologic|anthropological| +E0009403|antiamoebic|antiamebic| +E0009404|antiamoebic|antiamebic| +E0009405|antianaemic|antianemic| +E0009406|antianaemic|antianemic| +E0009413|antarthritic|antiarthritic| +E0009449|anticholesterolemic|anticholesteremic| +E0009450|anticholesterolemic|anticholesteremic| +E0009475|anti-diarrheal|antidiarrheal| +E0009475|anti-diarrhoeal|antidiarrheal| +E0009475|antidiarrhoeal|antidiarrheal| +E0009476|anti-diarrheal|antidiarrheal| +E0009476|anti-diarrhoeal|antidiarrheal| +E0009476|antidiarrhoeal|antidiarrheal| +E0009496|antemetic|antiemetic| +E0009497|antemetic|antiemetic| +E0009502|antioestrogen|antiestrogen| +E0009503|antioestrogen|antiestrogen| +E0009517|anti-fungal|antifungal| +E0009518|anti-fungal|antifungal| +E0009523|antigenemic|antigenaemic| +E0009524|antigenaemia|antigenemia| +E0009531|antigen antibody complex|antigen-antibody complex| +E0009541|anti-helix|antihelix| +E0009543|antihaemophilic factor|antihemophilic factor| +E0009545|anthemorrhagic|antihemorrhagic| +E0009546|anthemorrhagic|antihemorrhagic| +E0009547|anti-histamine|antihistamine| +E0009565|anthysteric|antihysteric| +E0009566|anthysteric|antihysteric| +E0009567|anti-idiotype|antiidiotype| +E0009573|antiketogenic|antiketogenetic| +E0009582|antilipaemic|antilipemic| +E0009583|antilipaemic|antilipemic| +E0009638|antodontalgic|antiodontalgic| +E0009651|antiparkinson|antiparkinsonian| +E0009674|anti-platelet|antiplatelet| +E0009693|antipyrin|antipyrine| +E0009706|anti-rheumatic|antirheumatic| +E0009707|anti-rheumatic|antirheumatic| +E0009709|anti-scabietic|antiscabietic| +E0009710|anti-scabietic|antiscabietic| +E0009720|antisepticise|antisepticize| +E0009749|antithetic|antithetical| +E0009752|anti-thrombotic|antithrombotic| +E0009753|anti-thrombotic|antithrombotic| +E0009754|anti-thymocyte globulin|antithymocyte globulin| +E0009755|anti-thyroid|antithyroid| +E0009784|antivenin|antivenom| +E0009793|anti-d|anti-D| +E0009794|anti HBc|anti-HBc| +E0009794|anti-hbc|anti-HBc| +E0009795|anti-hbs|anti-HBs| +E0009798|anticomplement|anti-complement| +E0009804|anti infective|anti-infective| +E0009804|antiinfective|anti-infective| +E0009805|anti infective|anti-infective| +E0009805|antiinfective|anti-infective| +E0009808|antisense|anti-sense| +E0009810|anti-treponemal|anti-treponema| +E0009811|anti-treponemal|anti-treponema| +E0009812|anti-tumour|anti-tumor| +E0009812|antitumor|anti-tumor| +E0009812|antitumour|anti-tumor| +E0009828|annuloplasty|anuloplasty| +E0009877|aorto-caval|aortocaval| +E0009878|aorto-coronary|aortocoronary| +E0009881|aorto-pulmonary|aortopulmonary| +E0009910|aphacic|aphakic| +E0009911|aphacic|aphakic| +E0009925|aphaeresis|apheresis| +E0009938|aptha|aphtha| +E0009968|aplastic anaemia|aplastic anemia| +E0009971|apnoea|apnea| +E0009972|apnoeic|apneic| +E0009999|apolopoprotein A-1|apolipoprotein A-I| +E0009999|apolopoprotein AI|apolipoprotein A-I| +E0010000|apolipoprotein AII|apolipoprotein A-II| +E0010001|apolipoprotein AIII|apolipoprotein A-III| +E0010002|apolipoprotein AIV|apolipoprotein A-IV| +E0010004|apolipoprotein B 100|apolipoprotein B-100| +E0010014|apologise|apologize| +E0010026|apophysial|apophyseal| +E0010048|apostatise|apostatize| +E0010056|APOA1|apo-A-I| +E0010056|apoA-I|apo-A-I| +E0010056|apoAI|apo-A-I| +E0010057|APOA4|apo-A-IV| +E0010057|apoA-IV|apo-A-IV| +E0010057|apoAIV|apo-A-IV| +E0010058|APOC3|apo-C-III| +E0010058|apoC-III|apo-C-III| +E0010058|apoCIII|apo-C-III| +E0010059|appall|appal| +E0010062|apanange|appanage| +E0010082|appendicial|appendiceal| +E0010133|apprize|apprise| +E0010151|apraxic|apractic| +E0010156|a propos|apropos| +E0010157|a propos|apropos| +E0010194|aquaeduct|aqueduct| +E0010251|AraC|ara-C| +E0010251|ara C|ara-C| +E0010251|araC|ara-C| +E0010258|arbour|arbor| +E0010278|archeological|archaeological| +E0010279|archeology|archaeology| +E0010286|archeocinetic|archeokinetic| +E0010287|archaeologist|archeologist| +E0010309|arcate|arcuate| +E0010318|ardor|ardour| +E0010329|arecholin|arecholine| +E0010330|arecolin|arecoline| +E0010374|argiprestocine|argiprestocin| +E0010386|argyrophile|argyrophilic| +E0010386|argyrophilous|argyrophilic| +E0010386|argyrophil|argyrophilic| +E0010399|arithmetic|arithmetical| +E0010409|armine|armin| +E0010410|armour|armor| +E0010411|armored|armoured| +E0010412|arms race|arms-race| +E0010426|round|around| +E0010427|round|around| +E0010475|d'arsonvalization|arsonvalization| +E0010478|artifact|artefact| +E0010483|arterialisation|arterialization| +E0010484|arterialise|arterialize| +E0010502|arteriolonecrosis|arteriolar necrosis| +E0010523|arterio-venous|arteriovenous| +E0010526|arterio-venous fistula|arteriovenous fistula| +E0010568|arthus' phenomenon|arthus phenomenon| +E0010644|aryl sulphonate|aryl sulfonate| +E0010644|aryl-sulfonate|aryl sulfonate| +E0010644|aryl-sulphonate|aryl sulfonate| +E0010644|arylsulfonate|aryl sulfonate| +E0010644|arylsulphonate|aryl sulfonate| +E0010645|aryl sulphotransferase|aryl sulfotransferase| +E0010645|arylsulfotransferase|aryl sulfotransferase| +E0010645|arylsulphotransferase|aryl sulfotransferase| +E0010646|aryl sulphotransferase IV|aryl sulfotransferase IV| +E0010646|arylsulfotransferase IV|aryl sulfotransferase IV| +E0010646|arylsulphotransferase IV|aryl sulfotransferase IV| +E0010647|aryepiglottic|arytenoepiglottic| +E0010647|aryepiglottidean|arytenoepiglottic| +E0010654|asafoetida|asafetida| +E0010654|assafetida|asafetida| +E0010654|assafoetida|asafetida| +E0010659|ascariosis|ascariasis| +E0010666|ascendency|ascendancy| +E0010667|ascendent|ascendant| +E0010745|aspartate aminotransferase isozyme|aspartate aminotransferase isoenzyme| +E0010898|astigmic|astigmatic| +E0010922|astrocinetic|astrokinetic| +E0010936|asymmetrical|asymmetric| +E0010943|asynergia|asynergy| +E0010944|asystolia|asystole| +E0010952|ataxic|atactic| +E0010954|ataraxic|ataractic| +E0010955|ataraxic|ataractic| +E0010957|atavic|atavistic| +E0010962|ataxia-telangiectasia|ataxia telangiectasia| +E0010986|athero-sclerotic|atherosclerotic| +E0010987|athero-thrombotic|atherothrombotic| +E0010997|atreptic|athreptic| +E0011004|atlanto-occipital|atlantooccipital| +E0011020|atomisation|atomization| +E0011021|atomise|atomize| +E0011044|atresic|atretic| +E0011054|atrio-ventricular node|atrioventricular node| +E0011064|atropic|atrophic| +E0011086|atropism|atropinism| +E0011129|attitudinise|attitudinize| +E0011166|audiologic|audiological| +E0011169|audiometrical|audiometric| +E0011172|audio-visual|audiovisual| +E0011173|audio-visual|audiovisual| +E0011174|audio-frequency|audio frequency| +E0011174|audiofrequency|audio frequency| +E0011219|auriculo-cranial|auriculocranial| +E0011220|auriculo-parietal index|auriculoparietal index| +E0011221|auriculo-temporal|auriculotemporal| +E0011222|auriculo-temporal syndrome|auriculotemporal syndrome| +E0011223|auriculo-vertical index|auriculovertical index| +E0011227|aurin tricarboxylic acid|aurintricarboxylic acid| +E0011246|autoarchy|autarky| +E0011261|authorisation|authorization| +E0011262|authorise|authorize| +E0011277|autobiographical|autobiographic| +E0011308|autoimmune haemolytic anaemia|autoimmune hemolytic anemia| +E0011319|autocytolytic|autolytic| +E0011320|autolise|autolyze| +E0011367|autosterilisation|autosterilization| +E0011380|autoxidise|autoxidize| +E0011381|auto-oxidise|auto-oxidize| +E0011381|autooxidise|auto-oxidize| +E0011381|autooxidize|auto-oxidize| +E0011387|auxilliary|auxiliary| +E0011388|auxilliary|auxiliary| +E0011397|Av|av| +E0011419|avianisation|avianization| +E0011420|avianise|avianize| +E0011463|awe-struck|awe-stricken| +E0011471|ax|axe| +E0011472|ax|axe| +E0011477|axofugal|axifugal| +E0011518|axo-axonic|axoaxonic| +E0011519|axo-dendritic|axodendritic| +E0011522|axone|axon| +E0011527|axo-somatic|axosomatic| +E0011528|axotomisation|axotomization| +E0011529|axotomise|axotomize| +E0011534|azacitidine|azacytidine| +E0011538|azeserine|azaserine| +E0011566|azotaemia|azotemia| +E0011586|azygous|azygos| +E0011597|ba|baa| +E0011598|ba|baa| +E0011604|babesiasis|babesiosis| +E0011617|baby talk|baby-talk| +E0011618|baby tooth|baby-tooth| +E0011620|baccara|baccarat| +E0011633|bacillogenic|bacilligenic| +E0011665|backhand|backhanded| +E0011666|backhand|backhanded| +E0011684|back stroke|back-stroke| +E0011684|backstroke|back-stroke| +E0011685|baclophen|baclofen| +E0011687|bacteraemia|bacteremia| +E0011687|bacteriemia|bacteremia| +E0011692|bacterial aneurism|bacterial aneurysm| +E0011737|bacteriological|bacteriologic| +E0011746|bacterio-phage|bacteriophage| +E0011755|bacterio-rhodopsin|bacteriorhodopsin| +E0011813|balano-posthitis|balanoposthitis| +E0011814|balano-preputial|balanopreputial| +E0011816|balantidiosis|balantidiasis| +E0011825|bail|bale| +E0011826|bail|bale| +E0011829|baulk|balk| +E0011830|baulk|balk| +E0011857|boloney|baloney| +E0011861|bametan|bamethan| +E0011881|band III protein|band 3 protein| +E0011908|baptise|baptize| +E0011931|barefooted|barefoot| +E0011932|barefooted|barefoot| +E0011952|barium sulphate|barium sulfate| +E0011956|barleycorn|barley-corn| +E0011957|barley sugar|barley-sugar| +E0011963|baro-denervation|barodenervation| +E0011970|baro-receptor|baroreceptor| +E0011971|baro-reflex|baroreflex| +E0011974|baro-trauma|barotrauma| +E0012034|basepair|base pair| +E0012038|base line|base-line| +E0012038|baseline|base-line| +E0012051|basic aluminum sucrose sulphate|basic aluminum sucrose sulfate| +E0012088|baso-lateral|basolateral| +E0012092|basiphilic|basophilic| +E0012092|basophile|basophilic| +E0012092|basophilous|basophilic| +E0012150|bay k virus|bay K virus| +E0012151|BCR|bcr| +E0012179|beaten-up|beat-up| +E0012201|bed bug|bedbug| +E0012219|bedsore|bed sore| +E0012255|behaviour|behavior| +E0012256|behavioural|behavioral| +E0012263|behaviourism|behaviorism| +E0012274|behove|behoove| +E0012368|benorylate|benorilate| +E0012371|bensulphamide|bensulfamide| +E0012385|benzamsulphonamide|benzamsulfonamide| +E0012390|benzbromaron|benzbromarone| +E0012392|benzenemethanesulphonyl fluoride|benzenemethanesulfonyl fluoride| +E0012393|benzenesulphonate|benzenesulfonate| +E0012406|benzin|benzine| +E0012412|benzodiazepin|benzodiazepine| +E0012414|benzodiazepine tranquiliser|benzodiazepine tranquilizer| +E0012428|benzoapyrene|benzopyrene| +E0012454|benzidamine|benzydamine| +E0012459|benzyl penicillin|benzylpenicillin| +E0012480|beri-beri|beriberi| +E0012522|beta dexamethasone|betadexamethasone| +E0012522|beta-dexamethasone|betadexamethasone| +E0012525|betahistine methanesulfonate|betahistine methanesulphonate| +E0012539|beta-1 interferon|beta 1-interferon| +E0012543|beta 2 transferrin|beta 2-transferrin| +E0012548|beta-carotene|beta carotene| +E0012548|betacarotene|beta carotene| +E0012551|beta-globulin|beta globulin| +E0012552|beta-hexosaminidase|beta hexosaminidase| +E0012553|beta ketoacyl synthetase|beta keto acyl synthetase| +E0012553|beta-ketoacyl synthetase|beta keto acyl synthetase| +E0012554|beta-lactamase III|beta lactamase III| +E0012557|beta-lipoprotein cholesterol|beta lipoprotein cholesterol| +E0012564|beta-sialoglycoprotein|beta sialoglycoprotein| +E0012565|beta-trace protein|beta trace protein| +E0012566|beta-transducin|beta transducin| +E0012569|beta 1 globin|beta-1 globin| +E0012573|beta 2 thromboglobulin|beta-2 thromboglobulin| +E0012575|beta CGRP|beta-CGRP| +E0012579|beta acetyldigoxin|beta-acetyldigoxin| +E0012581|beta actinin|beta-actinin| +E0012584|beta alanine|beta-alanine| +E0012586|beta alanylhistidine|beta-alanylhistidine| +E0012588|beta aminopropionitrile|beta-aminopropionitrile| +E0012589|beta amylase|beta-amylase| +E0012593|beta bungarotoxin|beta-bungarotoxin| +E0012594|beta carboline|beta-carboline| +E0012596|beta casein|beta-casein| +E0012597|beta casomorphin|beta-casomorphin| +E0012598|beta cell adenoma|beta-cell adenoma| +E0012600|beta chloralose|beta-chloralose| +E0012601|beta cholestanol|beta-cholestanol| +E0012602|beta crystallin|beta-crystallin| +E0012605|beta cyclodextrin|beta-cyclodextrin| +E0012610|beta ecdysone|beta-ecdysone| +E0012611|beta endorphin|beta-endorphin| +E0012612|beta endorphin receptor|beta-endorphin receptor| +E0012613|beta endosulfan|beta-endosulfan| +E0012613|beta endosulphan|beta-endosulfan| +E0012613|beta-endosulphan|beta-endosulfan| +E0012614|beta enolase|beta-enolase| +E0012615|beta aescin|beta-escin| +E0012615|beta escin|beta-escin| +E0012615|beta-aescin|beta-escin| +E0012616|beta fibrinogenase|beta-fibrinogenase| +E0012617|beta fibrogenase|beta-fibrogenase| +E0012618|beta galactosidase|beta-galactosidase| +E0012622|beta galactoside|beta-galactoside| +E0012623|beta globin|beta-globin| +E0012624|beta glucocerebrosidase|beta-glucocerebrosidase| +E0012626|beta glucuronidase|beta-glucuronidase| +E0012627|beta-hemolytic|beta-haemolytic| +E0012628|beta heparin|beta-heparin| +E0012635|beta hydroxyphenethylamine|beta-hydroxyphenethylamine| +E0012637|beta hypophamine|beta-hypophamine| +E0012638|beta interferon|beta-interferon| +E0012639|beta isosparteine|beta-isosparteine| +E0012640|beta kallikrein|beta-kallikrein| +E0012642|beta keratin|beta-keratin| +E0012643|beta ketothiolase|beta-ketothiolase| +E0012646|beta lactamase|beta-lactamase| +E0012649|beta lactam antibiotic|beta-lactam antibiotic| +E0012650|beta lactoglobulin|beta-lactoglobulin| +E0012661|beta lumicolchicine|beta-lumicolchicine| +E0012662|beta melanotropin|beta-melanotropin| +E0012663|beta mercaptoethylamine|beta-mercaptoethylamine| +E0012664|beta mercaptopropionate|beta-mercaptopropionate| +E0012665|beta mercaptopropionic acid|beta-mercaptopropionic acid| +E0012666|beta methyldigoxin|beta-methyldigoxin| +E0012667|beta naphthylamine|beta-naphthylamine| +E0012674|beta phenylethanol|beta-phenylethanol| +E0012675|beta phenylethanolamine|beta-phenylethanolamine| +E0012676|beta phenylethylhydrazine|beta-phenylethylhydrazine| +E0012678|beta propiolactone|beta-propiolactone| +E0012679|beta pyridylcarbinol|beta-pyridylcarbinol| +E0012680|beta receptor|beta-receptor| +E0012684|beta spectrin|beta-spectrin| +E0012687|beta sulfoalanine|beta-sulfoalanine| +E0012687|beta sulphoalanine|beta-sulfoalanine| +E0012687|beta-sulphoalanine|beta-sulfoalanine| +E0012688|beta thalassaemia|beta-thalassemia| +E0012688|beta thalassemia|beta-thalassemia| +E0012688|beta-thalassaemia|beta-thalassemia| +E0012689|beta thionase|beta-thionase| +E0012690|beta thrombin|beta-thrombin| +E0012691|beta thromboglobulin|beta-thromboglobulin| +E0012692|beta tocopherol|beta-tocopherol| +E0012693|beta tropomyosin|beta-tropomyosin| +E0012694|beta trypsin|beta-trypsin| +E0012695|beta tubulin|beta-tubulin| +E0012697|beta tyrosinase|beta-tyrosinase| +E0012698|beta urogastrone|beta-urogastrone| +E0012699|beta-very-low-density lipoprotein|beta-very low density lipoprotein| +E0012713|better|bettor| +E0012774|bicipitoradialis bursa|bicipitoradial bursa| +E0012778|bicornate|bicornuate| +E0012812|bifurcate|bifurcated| +E0012824|big head|bighead| +E0012861|bilge water|bilge-water| +E0012899|bilirubinaemia|bilirubinemia| +E0012964|binucleated|binucleate| +E0012967|bio-active|bioactive| +E0012971|bio-assay|bioassay| +E0012972|bio-assay|bioassay| +E0012974|bio-availability|bioavailability| +E0012977|bio-chemical|biochemical| +E0012978|bio-chemical|biochemical| +E0013004|bio-equivalence|bioequivalence| +E0013005|bio-equivalent|bioequivalent| +E0013018|biographical|biographic| +E0013023|bio-impedance|bioimpedance| +E0013026|biologic|biological| +E0013081|bio-polymer|biopolymer| +E0013101|bio-synthetic|biosynthetic| +E0013110|biomedical|bio-medical| +E0013153|birdpox|bird pox| +E0013157|bi-refringence|birefringence| +E0013164|birth-control|birth control| +E0013177|birthweight|birth weight| +E0013211|bisulphite reductase|bisulfite reductase| +E0013266|black water fever|blackwater fever| +E0013315|blastocelic|blastocoelic| +E0013323|blastogenetic|blastogenic| +E0013388|blepharo conjunctivitis|blepharoconjunctivitis| +E0013388|blepharo-conjunctivitis|blepharoconjunctivitis| +E0013392|blepharo-spasm|blepharospasm| +E0013399|blather|blether| +E0013400|blather|blether| +E0013434|block|bloc| +E0013442|blonde|blond| +E0013443|blonde|blond| +E0013510|bloodstream|blood stream| +E0013527|blood aqueous barrier|blood-aqueous barrier| +E0013535|bloodletting|blood-letting| +E0013538|blood pressure|blood-pressure| +E0013540|blood testis barrier|blood-testis barrier| +E0013565|blue oedema|blue edema| +E0013607|bobwhite|bob white| +E0013628|body-rocking|body rocking| +E0013637|bodyweight|body weight| +E0013717|bone metabolism|bone-metabolism| +E0013793|borscht|borsch| +E0013793|borshcht|borsch| +E0013899|brachio-facial paralysis|brachiofacial paralysis| +E0013912|brachy-therapy|brachytherapy| +E0013920|brady cardia|bradycardia| +E0013920|brady-cardia|bradycardia| +E0013928|brady tachycardia|bradytachycardia| +E0013928|brady-tachycardia|bradytachycardia| +E0013941|brain oedema|brain edema| +E0013943|brainchild|brain-child| +E0013945|brainwash|brain-wash| +E0013946|brainwashing|brain-washing| +E0014009|breast-feed|breastfeed| +E0014013|breast-feeding|breast feeding| +E0014013|breastfeeding|breast feeding| +E0014032|bregmate|bregmatic| +E0014061|briar|brier| +E0014075|brimfull|brimful| +E0014080|brinksmanship|brinkmanship| +E0014090|breeches|britches| +E0014128|brominised|brominized| +E0014135|bromocriptine|bromocryptine| +E0014154|bronchostenosis|bronchiostenosis| +E0014160|broncho-alveolar|bronchoalveolar| +E0014163|broncho-constriction|bronchoconstriction| +E0014168|broncho-esophageal|bronchoesophageal| +E0014168|broncho-oesophageal|bronchoesophageal| +E0014168|bronchooesophageal|bronchoesophageal| +E0014169|bronchiogenic|bronchogenic| +E0014179|broncho-pleural|bronchopleural| +E0014181|broncho-pneumonia|bronchopneumonia| +E0014184|broncho-pulmonary|bronchopulmonary| +E0014185|broncho-pulmonary dysplasia|bronchopulmonary dysplasia| +E0014201|bronzed diabetes|bronze diabetes| +E0014223|brown oedema|brown edema| +E0014250|brutalise|brutalize| +E0014317|bufotenine|bufotenin| +E0014327|build up|buildup| +E0014338|bulbokapnin|bulbocapnine| +E0014350|bulimic|bulimiac| +E0014351|bulimic|bulimiac| +E0014376|bumethanide|bumetanide| +E0014430|burnoose|burnouse| +E0014430|burnous|burnouse| +E0014498|butylatedhydroxytoluene|butylated hydroxytoluene| +E0014515|butylmethyl ketone|butyl methyl ketone| +E0014544|by-pass|bypass| +E0014545|by-pass|bypass| +E0014546|by-product|byproduct| +E0014558|C 1 esterase inhibitor|c1 esterase inhibitor| +E0014558|C1 esterase inhibitor|c1 esterase inhibitor| +E0014558|C1-esterase inhibitor|c1 esterase inhibitor| +E0014562|C-DNA|cDNA| +E0014609|cerulein|caerulein| +E0014611|cesura|caesura| +E0014615|caffein|caffeine| +E0014671|calcipexic|calcipectic| +E0014689|calcium-channel blocker|calcium channel blocker| +E0014707|calcium iopodate|calcium ipodate| +E0014744|cauldron|caldron| +E0014753|calibre|caliber| +E0014756|calyceal|caliceal| +E0014757|calycine|calicine| +E0014761|calyculus|caliculus| +E0014763|calliper|caliper| +E0014764|calliper|caliper| +E0014787|callous|callus| +E0014788|calloused|callused| +E0014803|calory|calorie| +E0014806|calorigenic|calorigenetic| +E0014821|calvariae|calvaria| +E0014821|calvarium|calvaria| +E0014828|calix|calyx| +E0014845|cameraman|camera-man| +E0014847|chamomile|camomile| +E0014867|camptothecine|camptothecin| +E0014873|camp bed|camp-bed| +E0014884|canalisation|canalization| +E0014889|canceller|canceler| +E0014891|cancelation|cancellation| +E0014895|cancerocidal|cancericidal| +E0014896|cancerogenic|cancerigenic| +E0014917|candidial granuloma|candida granuloma| +E0014924|candlepower|candle-power| +E0014925|candour|candor| +E0014959|cannibalisation|cannibalization| +E0014960|cannibalise|cannibalize| +E0014974|cantaloup|cantaloupe| +E0014984|cantharidine|cantharidin| +E0014984|kantaridin|cantharidin| +E0014988|cannula|canula| +E0015027|capitalisation|capitalization| +E0015028|capitalise|capitalize| +E0015043|caponisation|caponization| +E0015044|caponise|caponize| +E0015062|capsaicine|capsaicin| +E0015109|carbamoylphosphate|carbamoyl phosphate| +E0015129|carbenoxalone|carbenoxolone| +E0015137|carbochromene|carbochromen| +E0015137|carbocromene|carbochromen| +E0015137|carbocromen|carbochromen| +E0015143|carbafos|carbofos| +E0015143|carbophos|carbofos| +E0015143|karbofos|carbofos| +E0015156|carbolise|carbolize| +E0015157|carbolised|carbolized| +E0015169|carbonisation|carbonization| +E0015170|carbonise|carbonize| +E0015187|carboxyhaemoglobin|carboxyhemoglobin| +E0015195|carboxy terminal|carboxyterminal| +E0015195|carboxy-terminal|carboxyterminal| +E0015201|carburetter|carburetor| +E0015201|carburrettor|carburetor| +E0015203|carcase|carcass| +E0015204|carcino-embryonic antigen|carcinoembryonic antigen| +E0015206|carcino-genesis|carcinogenesis| +E0015218|carcinoma in-situ|carcinoma in situ| +E0015222|carcinoembryonic|carcino-embryonic| +E0015239|cardiac oedema|cardiac edema| +E0015282|cardiocinetic|cardiokinetic| +E0015283|cardiocinetic|cardiokinetic| +E0015301|cardio pulmonary|cardiopulmonary| +E0015301|cardio-pulmonary|cardiopulmonary| +E0015303|cardio pulmonary resuscitation|cardiopulmonary resuscitation| +E0015303|cardio-pulmonary resuscitation|cardiopulmonary resuscitation| +E0015323|cardio-vascular|cardiovascular| +E0015324|cardio-vascular|cardiovascular| +E0015384|carotinoid|carotenoid| +E0015385|carotinoid|carotenoid| +E0015439|cartilagenous|cartilaginous| +E0015450|carving knife|carving-knife| +E0015454|car sick|car-sick| +E0015454|carsick|car-sick| +E0015504|casuistical|casuistic| +E0015512|katabolic|catabolic| +E0015515|catabolise|catabolize| +E0015527|catalog|catalogue| +E0015528|catalog|catalogue| +E0015529|catalyze|catalyse| +E0015569|catatonic|catatoniac| +E0015570|catatonic|catatoniac| +E0015581|catechol amine|catecholamine| +E0015585|categoric|categorical| +E0015586|categorisation|categorization| +E0015587|categorise|categorize| +E0015606|catheterisation|catheterization| +E0015607|catheterise|catheterize| +E0015608|catheterised|catheterized| +E0015626|cat scratch disease|cat-scratch disease| +E0015626|catscratch disease|cat-scratch disease| +E0015644|calk|caulk| +E0015659|cauterisation|cauterization| +E0015660|cauterise|cauterize| +E0015688|caviare|caviar| +E0015690|caviller|caviler| +E0015712|caecitis|cecitis| +E0015714|caeco-colic|cecocolic| +E0015714|caecocolic|cecocolic| +E0015714|ceco-colic|cecocolic| +E0015714|coeco-colic|cecocolic| +E0015714|coecocolic|cecocolic| +E0015716|caecum|cecum| +E0015720|cephadroxyl|cefadroxil| +E0015721|cephamandole|cefamandole| +E0015723|cephazolin|cefazolin| +E0015735|coeliac|celiac| +E0015736|coeliac|celiac| +E0015737|coeliac artery|celiac artery| +E0015738|coeliac disease|celiac disease| +E0015739|coeliac ganglion|celiac ganglion| +E0015772|cellulo-fibrous|cellulofibrous| +E0015799|cell mediated immunity|cell-mediated immunity| +E0015807|coelozoic|celozoic| +E0015819|caenogenesis|cenogenesis| +E0015819|ceonogenesis|cenogenesis| +E0015820|caenogenetic|cenogenetic| +E0015820|coenogenetic|cenogenetic| +E0015833|centre|center| +E0015834|centre|center| +E0015836|center haemodialysis|center hemodialysis| +E0015836|centre haemodialysis|center hemodialysis| +E0015842|centimetre|centimeter| +E0015849|centralisation|centralization| +E0015882|centrical|centric| +E0015887|centrifugalisation|centrifugalization| +E0015888|centrifugalise|centrifugalize| +E0015893|centri-lobular|centrilobular| +E0015897|centrocaecal|centrocecal| +E0015899|centrocinetic|centrokinetic| +E0015899|kentrocinetic|centrokinetic| +E0015899|kentrokinetic|centrokinetic| +E0015915|cefalexin|cephalexin| +E0015917|cephalhematoma|cephalhaematoma| +E0015921|cephalisation|cephalization| +E0015925|cephalo-caudal|cephalocaudal| +E0015930|cephalohaematoma|cephalohematoma| +E0015936|cephalo pelvic|cephalopelvic| +E0015936|cephalo-pelvic|cephalopelvic| +E0015947|cefapirin|cephapirin| +E0015948|cefradine|cephradine| +E0015973|cerebelloolivary|cerebello-olivary| +E0016038|cerebrospinal fluid otorrhoea|cerebrospinal fluid otorrhea| +E0016071|Certified Medical Assistant|certified medical assistant| +E0016076|caeruloplasmin|ceruloplasmin| +E0016084|cervical dystokia|cervical dystocia| +E0016088|cervical intra-epithelial neoplasia|cervical intraepithelial neoplasia| +E0016097|cervico-brachial|cervicobrachial| +E0016099|cervico-brachial neuralgia|cervicobrachial neuralgia| +E0016100|cervico-buccal|cervicobuccal| +E0016106|cervico-medullary|cervicomedullary| +E0016107|cervico-scapular|cervicoscapular| +E0016108|cervico-thoracic|cervicothoracic| +E0016115|caesarean|cesarean| +E0016115|caesarian|cesarean| +E0016115|cesarian|cesarean| +E0016116|caesarean|cesarean| +E0016116|caesarian|cesarean| +E0016116|cesarian|cesarean| +E0016117|caesarean section|cesarean section| +E0016117|caesarian section|cesarean section| +E0016117|cesarian section|cesarean section| +E0016118|caesium|cesium| +E0016149|chalkitis|chalcitis| +E0016150|chalkone|chalcone| +E0016160|chamecephalic|chamaecephalic| +E0016161|chameprosopic|chamaeprosopic| +E0016194|chantey|chanty| +E0016201|chaperone|chaperon| +E0016202|chaperone|chaperon| +E0016204|charr|char| +E0016207|characterize|characterise| +E0016212|characterisation|characterization| +E0016259|check book|checkbook| +E0016259|check-book|checkbook| +E0016259|cheque book|checkbook| +E0016259|cheque-book|checkbook| +E0016259|chequebook|checkbook| +E0016260|chequer|checker| +E0016261|chequer|checker| +E0016262|chequered|checkered| +E0016280|cheesecake|cheese-cake| +E0016281|cheesecloth|cheese-cloth| +E0016292|chirognostic|cheirognostic| +E0016301|chelater|chelator| +E0016342|chemo-prevention|chemoprevention| +E0016343|chemo-prophylaxis|chemoprophylaxis| +E0016349|chemiosmotic|chemosmotic| +E0016357|chemotheraputical|chemotheraputic| +E0016358|chemotheraputical|chemotheraputic| +E0016371|check|cheque| +E0016395|chiasmic|chiasmatic| +E0016406|chicken pox|chickenpox| +E0016430|childhood acute lymphoblastic leucaemia|childhood acute lymphoblastic leukemia| +E0016430|childhood acute lymphoblastic leucemia|childhood acute lymphoblastic leukemia| +E0016430|childhood acute lymphoblastic leukaemia|childhood acute lymphoblastic leukemia| +E0016440|childbearing|child-bearing| +E0016441|childbearing|child-bearing| +E0016445|chile|chilli| +E0016445|chili|chilli| +E0016449|chimaerical|chimaeric| +E0016449|chimerical|chimaeric| +E0016449|chimeric|chimaeric| +E0016451|chimaera|chimera| +E0016459|chincap|chincup| +E0016460|chinese restaurant syndrome|Chinese restaurant syndrome| +E0016477|chiropractics|chiropractic| +E0016480|chirrup|chirp| +E0016481|chirrup|chirp| +E0016485|chiselled|chiseled| +E0016486|chiseller|chiseler| +E0016510|Cloranfenicol|chloramphenicol| +E0016510|Kloramfenikol|chloramphenicol| +E0016540|chloroformisation|chloroformization| +E0016541|chloroformise|chloroformize| +E0016555|chlorthiazid|chlorothiazide| +E0016557|chlorotic anaemia|chlorotic anemia| +E0016562|chlorodinitrobenzene|chloro-dinitrobenzene| +E0016566|clorpropamid|chlorpropamide| +E0016568|chlorprotixen|chlorprothixene| +E0016569|chlorchinaldol|chlorquinaldol| +E0016571|chlortalidone|chlorthalidone| +E0016590|chokedamp|choke-damp| +E0016595|cholangio-carcinoma|cholangiocarcinoma| +E0016604|cholangeitis|cholangitis| +E0016610|cholecystoenteric|cholecystenteric| +E0016615|cholecysto-gastric|cholecystogastric| +E0016616|cholecystagogic|cholecystogogic| +E0016629|choledocho-duodenostomy|choledochoduodenostomy| +E0016630|choledocho-jejunostomy|choledochojejunostomy| +E0016639|chololithic|cholelithic| +E0016641|cholaemia|cholemia| +E0016668|cholesterol thorax|cholesterohydrothorax| +E0016678|cholinergic fibre|cholinergic fiber| +E0016705|chondro-ectodermal dysplasia|chondroectodermal dysplasia| +E0016742|chorio-carcinoma|chordocarcinoma| +E0016745|cordotomy|chordotomy| +E0016751|choreo-athetoid|choreoathetoid| +E0016772|chorionic gonadotrophin|chorionic gonadotropin| +E0016776|chorio-retinal|chorioretinal| +E0016777|choroidoretinitis|chorioretinitis| +E0016781|choroid artery|choroidal artery| +E0016809|chromatise|chromatize| +E0016820|chromopilic|chromatophilic| +E0016868|chronaxia|chronaxy| +E0016868|chronaxie|chronaxy| +E0016902|chronic granulocytic leucaemia|chronic granulocytic leukemia| +E0016902|chronic granulocytic leucemia|chronic granulocytic leukemia| +E0016902|chronic granulocytic leukaemia|chronic granulocytic leukemia| +E0016912|chronic lymphocytic leucaemia|chronic lymphocytic leukemia| +E0016912|chronic lymphocytic leucemia|chronic lymphocytic leukemia| +E0016912|chronic lymphocytic leukaemia|chronic lymphocytic leukemia| +E0016918|chronic myelogenous leucaemia|chronic myelogenous leukemia| +E0016918|chronic myelogenous leucemia|chronic myelogenous leukemia| +E0016918|chronic myelogenous leukaemia|chronic myelogenous leukemia| +E0016950|chronobiologic|chronobiological| +E0017006|cicatrise|cicatrize| +E0017007|cyder|cider| +E0017009|cigaret|cigarette| +E0017056|cypher|cipher| +E0017057|cypher|cipher| +E0017075|circularise|circularize| +E0017113|circum-oral|circumoral| +E0017170|citrous|citrus| +E0017171|citrous fruit|citrus fruit| +E0017181|civilisation|civilization| +E0017182|civilise|civilize| +E0017194|clamor|clamour| +E0017195|clamor|clamour| +E0017201|clangour|clangor| +E0017225|classical haemophilia|classical hemophilia| +E0017372|clinicopathological|clinicopathologic| +E0017405|clofazimine|clofazamine| +E0017429|clonorchiosis|clonorchiasis| +E0017450|closed angle glaucoma|closed-angle glaucoma| +E0017477|clotiapine|clothiapine| +E0017479|klotrimazole|clotrimazole| +E0017490|cloverleaf|clover-leaf| +E0017491|clove hitch|clove-hitch| +E0017499|club foot|clubfoot| +E0017499|club-foot|clubfoot| +E0017500|clubfooted|club-footed| +E0017503|clew|clue| +E0017504|clew|clue| +E0017562|coal-tar|coal tar| +E0017571|co-arctation|coarctation| +E0017585|cobalamin|cobalamine| +E0017596|cocainisation|cocainization| +E0017597|cocainise|cocainize| +E0017618|coccigenic|coccogenic| +E0017618|coccogenous|coccogenic| +E0017639|cochlear-implant|cochlear implant| +E0017646|cochleitis|cochlitis| +E0017647|co-chromatography|cochromatography| +E0017651|cockeyed|cock-eyed| +E0017678|cod liver oil|cod-liver oil| +E0017679|caecal|coecal| +E0017679|cecal|coecal| +E0017680|caecostomy|coecostomy| +E0017680|cecostomy|coecostomy| +E0017690|celomic|coelomic| +E0017702|co-exist|coexist| +E0017703|co-existence|coexistence| +E0017718|cognitive-behavior modification|cognitive-behaviour modification| +E0017720|cognisance|cognizance| +E0017721|cognisant|cognizant| +E0017729|coherence|coherency| +E0017778|cole-slaw|coleslaw| +E0017836|collectivisation|collectivization| +E0017837|collectivise|collectivize| +E0017862|colloid goitre|colloid goiter| +E0017889|colonisation|colonization| +E0017890|colonise|colonize| +E0017902|colour|color| +E0017903|colour|color| +E0017905|colo-rectal|colorectal| +E0017909|colourful|colorful| +E0017911|colourless|colorless| +E0017912|colourlessness|colorlessness| +E0017913|colorblindness|color blindness| +E0017913|colour blindness|color blindness| +E0017913|colourblindness|color blindness| +E0017915|colour index|color index| +E0017979|comedocarcinoma|comedo carcinoma| +E0017983|cometabolise|cometabolize| +E0018017|commercialisation|commercialization| +E0018018|commercialise|commercialize| +E0018103|compartmentalisation|compartmentalization| +E0018104|compartmentalise|compartmentalize| +E0018117|compensatory emphysema|compensating emphysema| +E0018135|complacence|complacency| +E0018244|computerisation|computerization| +E0018245|computerise|computerize| +E0018290|conceptualisation|conceptualization| +E0018291|conceptualise|conceptualize| +E0018299|concessioner|concessionaire| +E0018302|conchiolinosteomyelitis|conchiolin osteomyelitis| +E0018319|concommitant|concomitant| +E0018320|concommitant|concomitant| +E0018342|condensible|condensable| +E0018359|cundum|condom| +E0018392|connexus|conexus| +E0018408|confidante|confidant| +E0018449|cogener|congener| +E0018466|congenital chloride diarrhoea|congenital chloride diarrhea| +E0018471|congenital hemolytic anaemia|congenital hemolytic anemia| +E0018476|congenital hypoplastic anaemia|congenital hypoplastic anemia| +E0018482|congenital nonspherocytic haemolytic anaemia|congenital nonspherocytic hemolytic anemia| +E0018482|congenital nonspherocytic haemolytic anemia|congenital nonspherocytic hemolytic anemia| +E0018482|congenital nonspherocytic hemolytic anaemia|congenital nonspherocytic hemolytic anemia| +E0018552|connexion|connection| +E0018769|continuous veno-venous haemofiltration|continuous veno-venous hemofiltration| +E0018769|continuous venovenous haemofiltration|continuous veno-venous hemofiltration| +E0018769|continuous venovenous hemofiltration|continuous veno-venous hemofiltration| +E0018825|non contributory|noncontributory| +E0018825|non-contributory|noncontributory| +E0018873|convergance|convergence| +E0018929|cookey|cookie| +E0018929|cooky|cookie| +E0018935|combe|coomb| +E0018935|coombe|coomb| +E0018938|co-operation|cooperation| +E0018939|co-operative|cooperative| +E0018940|co-operative|cooperative| +E0018941|co-operativity|cooperativity| +E0018942|co-ordinate|coordinate| +E0018943|co-ordinate|coordinate| +E0018944|co-ordinate|coordinate| +E0018947|co-ordination|coordination| +E0019015|chorditis|corditis| +E0019043|corn flour|cornflour| +E0019049|corn starch|cornstarch| +E0019062|coronary aneurism|coronary aneurysm| +E0019114|corpuscule|corpuscle| +E0019133|correctable|correctible| +E0019144|corelation|correlation| +E0019185|corticoadrenal|cortiadrenal| +E0019198|corticofugal|corticifugal| +E0019199|corticopetal|corticipetal| +E0019203|cortico-bulbar|corticobulbar| +E0019216|cortico-spinal|corticospinal| +E0019218|cortico-spinal tract|corticospinal tract| +E0019219|cortico-steroid|corticosteroid| +E0019220|corticosteroid-binding globulin|corticosteroid binding globulin| +E0019224|corticotropic|corticotrophic| +E0019255|coryza virus|coryzavirus| +E0019260|cosensitise|cosensitize| +E0019263|coziness|cosiness| +E0019283|costalchondritis|costal chondritis| +E0019296|costo-chondral|costochondral| +E0019297|costo-chondritis|costochondritis| +E0019298|costo-clavicular|costoclavicular| +E0019304|costo-phrenic|costophrenic| +E0019308|costo-sternal|costosternal| +E0019310|costo-transverse|costotransverse| +E0019312|costo-vertebral|costovertebral| +E0019320|cost-benefit analysis|cost benefit analysis| +E0019323|cost-effectiveness|cost effectiveness| +E0019332|co-synthesis|cosynthesis| +E0019347|cotton wool|cotton-wool| +E0019357|couch grass|couch-grass| +E0019365|cumarin|coumarin| +E0019370|councillor|councilor| +E0019373|counselor|counsellor| +E0019392|counter-current immuno-electrophoresis|countercurrent immunoelectrophoresis| +E0019392|counter-current immunoelectrophoresis|countercurrent immunoelectrophoresis| +E0019392|countercurrent immuno-electrophoresis|countercurrent immunoelectrophoresis| +E0019412|counterespionage|counter-espionage| +E0019413|counterintelligence|counter-intelligence| +E0019414|counterirritation|counter-irritation| +E0019417|countryfied|countrified| +E0019482|cow pox|cowpox| +E0019501|Coxsackie A9 virus|coxsackie A9 virus| +E0019502|Coxsackie A virus|coxsackie A virus| +E0019503|Coxsackie B virus|coxsackie B virus| +E0019509|cosy|cozy| +E0019510|cosy|cozy| +E0019511|cochromatograph|co-chromatograph| +E0019512|cocultivate|co-cultivate| +E0019518|coexistent|co-existent| +E0019519|cooperate|co-operate| +E0019522|cotrimoxazole|co-trimoxazole| +E0019576|cranio-cerebral|craniocerebral| +E0019578|cranio-facial|craniofacial| +E0019604|crepe|crape| +E0019649|creatinkinase|creatine kinase| +E0019697|crenelated|crenellated| +E0019740|crico-arytenoid|cricoarytenoid| +E0019752|criminalisation|criminalization| +E0019753|criminalise|criminalize| +E0019776|criss-cross|crisscross| +E0019777|criss-cross heart|crisscross heart| +E0019780|crisscross|criss-cross| +E0019781|crisscross|criss-cross| +E0019799|criticise|criticize| +E0019822|crop dusting|crop-dusting| +E0019828|cross-bred|crossbred| +E0019836|cross-eyed|crosseyed| +E0019840|cross-link|crosslink| +E0019841|cross-link|crosslink| +E0019846|cross-over|crossover| +E0019847|cross-over|crossover| +E0019852|cross-reference|crossreference| +E0019853|cross-reference|crossreference| +E0019855|cross-fertile|cross fertile| +E0019856|cross-fertilization|cross fertilization| +E0019857|cross-fertilize|cross fertilize| +E0019858|cross-infection|cross infection| +E0019863|crosscultural|cross-cultural| +E0019877|cross talk|cross-talk| +E0019877|crosstalk|cross-talk| +E0019984|cryoglobulinaemia|cryoglobulinemia| +E0019985|cryoglobulinaemic|cryoglobulinemic| +E0019989|crymophylactic|cryophylactic| +E0019991|cryo preservation|cryopreservation| +E0019991|cryo-preservation|cryopreservation| +E0019992|cryo-preserve|cryopreserve| +E0019995|cryo protein|cryoprotein| +E0019995|cryo-protein|cryoprotein| +E0019998|cryo surgery|cryosurgery| +E0019998|cryo-surgery|cryosurgery| +E0020000|cryo therapy|cryotherapy| +E0020000|cryo-therapy|cryotherapy| +E0020011|cryptogenetic|cryptogenic| +E0020019|cryptorrheic|cryptorrhetic| +E0020031|cristallisation|crystallization| +E0020031|cristallization|crystallization| +E0020031|crystallisation|crystallization| +E0020032|cristallise|crystallize| +E0020032|cristallize|crystallize| +E0020032|crystallise|crystallize| +E0020048|cubic centimetre|cubic centimeter| +E0020104|cul de sac|cul-de-sac| +E0020144|curari|curare| +E0020161|curet|curette| +E0020162|curet|curette| +E0020193|curtsy|curtsey| +E0020194|curtsy|curtsey| +E0020244|cut off|cutoff| +E0020244|cut-off|cutoff| +E0020246|cyanamid|cyanamide| +E0020284|cyclical|cyclic| +E0020286|cyclical AMP|cyclic AMP| +E0020287|cyclic AMP-independent protein kinase|cyclic AMP independent protein kinase| +E0020300|cyclisation|cyclization| +E0020315|cyclophenil|cyclofenil| +E0020334|cyclo-oxygenase|cyclooxygenase| +E0020354|ciclosporin|cyclosporin| +E0020370|cylindric|cylindrical| +E0020384|cymarin|cymarine| +E0020384|tsimarin|cymarine| +E0020417|cystinamin|cystamine| +E0020418|cistafos|cystaphos| +E0020418|cistaphos|cystaphos| +E0020418|cystafos|cystaphos| +E0020421|cystathionine beta synthase|cystathionine beta-synthase| +E0020430|cystectasy|cystectasia| +E0020482|cystocoele|cystocele| +E0020517|cystyl-amino-peptidase|cystyl aminopeptidase| +E0020517|cystyl-aminopeptidase|cystyl aminopeptidase| +E0020517|cystylaminopeptidase|cystyl aminopeptidase| +E0020520|citicholine|cyticholine| +E0020520|citicoline|cyticholine| +E0020545|cyto-architectonic|cytoarchitectonic| +E0020546|cyto-architecture|cytoarchitecture| +E0020556|cytochrome c oxidase|cytochrome C oxidase| +E0020556|cytochrome-c oxidase|cytochrome C oxidase| +E0020584|cytogenetical|cytogenetic| +E0020590|cyto-histologic|cytohistologic| +E0020593|cytocerastic|cytokerastic| +E0020624|cytopathological|cytopathologic| +E0020648|cyto-protective|cytoprotective| +E0020663|cyto-skeleton|cytoskeleton| +E0020680|cytotoxic T-lymphocyte|cytotoxic T lymphocyte| +E0020699|db|dB| +E0020704|decarbazine|dacarbazine| +E0020707|dacryoadenitis|dacryadenitis| +E0020733|daddy longlegs|daddy-longlegs| +E0020742|dairy farm|dairy-farm| +E0020743|dairy farmer|dairy-farmer| +E0020820|data base|database| +E0020822|dateable|datable| +E0020865|day dream|day-dream| +E0020865|daydream|day-dream| +E0020866|day dream|day-dream| +E0020866|daydream|day-dream| +E0020893|deaf mutism|deaf-mutism| +E0020893|deafmutism|deaf-mutism| +E0020902|deallergisation|deallergization| +E0020903|deallergise|deallergize| +E0020904|desamidate|deamidate| +E0020905|desamidation|deamidation| +E0020906|desamidization|deamidization| +E0020907|desamidize|deamidize| +E0020908|desaminase|deaminase| +E0020951|debrisoquine|debrisoquin| +E0020975|deca-peptide|decapeptide| +E0021003|decentralise|decentralize| +E0021031|decigramme|decigram| +E0021032|decilitre|deciliter| +E0021045|decision making|decision-making| +E0021064|decolonisation|decolonization| +E0021065|decolonise|decolonize| +E0021066|decolorisation|decolorization| +E0021066|decolourisation|decolorization| +E0021066|decolourization|decolorization| +E0021067|decolorise|decolorize| +E0021067|decolourise|decolorize| +E0021067|decolourize|decolorize| +E0021166|defaecate|defecate| +E0021167|defaecation|defecation| +E0021178|defense|defence| +E0021179|defenseless|defenceless| +E0021239|deflexion|deflection| +E0021292|dehaematise|dehematize| +E0021297|dehumanisation|dehumanization| +E0021298|dehumanise|dehumanize| +E0021319|dehydrogenise|dehydrogenize| +E0021324|dehypnotise|dehypnotize| +E0021332|de-institutionalized|deinstitutionalized| +E0021335|deionisation|deionization| +E0021336|deionise|deionize| +E0021340|deja-vu|deja vu| +E0021344|decameter|dekameter| +E0021344|decametre|dekameter| +E0021355|delayed type hypersensitivity|delayed-type hypersensitivity| +E0021381|delimitate|delimit| +E0021401|delocalisation|delocalization| +E0021402|delocalise|delocalize| +E0021429|delta aminolevulinic acid|delta-aminolevulinic acid| +E0021446|demagnetise|demagnetize| +E0021449|demagoguery|demagogy| +E0021462|demeanour|demeanor| +E0021471|demetalisation|demetalization| +E0021472|demetalise|demetalize| +E0021484|demilitarisation|demilitarization| +E0021485|demilitarise|demilitarize| +E0021486|demineralisation|demineralization| +E0021487|demineralise|demineralize| +E0021492|demobilise|demobilize| +E0021495|democratisation|democratization| +E0021496|democratise|democratize| +E0021514|demonetise|demonetize| +E0021523|demoralisation|demoralization| +E0021524|demoralise|demoralize| +E0021544|denationalise|denationalize| +E0021551|dendric|dendritic| +E0021564|de-nicotinised|denicotinized| +E0021564|de-nicotinized|denicotinized| +E0021564|denicotinised|denicotinized| +E0021695|dentato-thalamic|dentatothalamic| +E0021724|dento-alveolar|dentoalveolar| +E0021727|dento-facial|dentofacial| +E0021728|dento-gingival|dentogingival| +E0021752|deodorise|deodorize| +E0021756|deoxidise|deoxidize| +E0021765|desoxycholate|deoxycholate| +E0021766|desoxycholic acid|deoxycholic acid| +E0021774|deoxy cytidine monophosphate|deoxycytidine monophosphate| +E0021790|deoxynucleotidyltransferase|deoxynucleotidyl transferase| +E0021792|desoxyribonucleic|deoxyribonucleic| +E0021793|desoxyribonucleic acid|deoxyribonucleic acid| +E0021807|dependent|dependant| +E0021813|depersonalisation|depersonalization| +E0021813|dispersonalization|depersonalization| +E0021814|depersonalisation neurosis|depersonalization neurosis| +E0021834|depolarise|depolarize| +E0021835|depolymerisation|depolymerization| +E0021836|depolymerise|depolymerize| +E0021884|deputise|deputize| +E0021891|derealisation|derealization| +E0021906|derivatise|derivatize| +E0021906|derivitise|derivatize| +E0021906|derivitize|derivatize| +E0021916|dermatan sulphate|dermatan sulfate| +E0021928|dermato fibroma|dermatofibroma| +E0021928|dermato-fibroma|dermatofibroma| +E0021934|dermatological|dermatologic| +E0021944|dermopathic|dermatopathic| +E0021953|dermotropic|dermatotropic| +E0021979|descendent|descendant| +E0021997|desensitisation|desensitization| +E0021998|desensitise|desensitize| +E0022003|desexualisation|desexualization| +E0022004|desexualise|desexualize| +E0022031|desk top|desk-top| +E0022031|desktop|desk-top| +E0022049|desorption|desorbtion| +E0022080|destabilisation|destabilization| +E0022081|destabilise|destabilize| +E0022176|deviltry|devilry| +E0022181|devitalisation|devitalization| +E0022182|devitalise|devitalize| +E0022211|dextro-amphetamine|dextroamphetamine| +E0022220|dextro-rotatory|dextrorotatory| +E0022224|dexterous|dextrous| +E0022233|delead|de-lead| +E0022262|diacetyl morphine|diacetylmorphine| +E0022263|diacetyldiaminodiphenylsulfone|diacetyl diaminodiphenylsulfone| +E0022268|diacritic|diacritical| +E0022272|diadochocinetic|diadochokinetic| +E0022273|dieresis|diaeresis| +E0022274|diagnoseable|diagnosable| +E0022277|diagnostical|diagnostic| +E0022292|dialectic|dialectical| +E0022294|dialog|dialogue| +E0022295|dialog|dialogue| +E0022298|dialysability|dialyzability| +E0022299|dialysable|dialyzable| +E0022301|dialyser|dialyzer| +E0022310|diamond skin disease|diamond-skin disease| +E0022336|diaphysial|diaphyseal| +E0022337|diaphysial aclasis|diaphyseal aclasis| +E0022346|diarrhoea|diarrhea| +E0022347|diarrhoeal|diarrheal| +E0022349|diarrheogenic tumour|diarrheogenic tumor| +E0022363|diastasic|diastatic| +E0022411|dibenzyran|dibenziran| +E0022465|dichlorophene|dichlorophen| +E0022471|diclofenamid|dichlorphenamide| +E0022489|diclophenac|diclofenac| +E0022547|dienoestrol|dienestrol| +E0022560|dioestrus|diestrus| +E0022568|dietary fibre|dietary fiber| +E0022591|diethylenetriaminepentaacetate|diethylenetriaminepenta-acetate| +E0022592|diethylenetriaminepentaacetic acid|diethylenetriamine pentaacetic acid| +E0022593|diethylhexylphthalate|diethylhexyl phthalate| +E0022599|diethylstilbestrol|diethylstilboestrol| +E0022601|diethylether|diethyl ether| +E0022605|diethylpyrocarbonate|diethyl pyrocarbonate| +E0022607|dietician|dietitian| +E0022651|diffuse oesopohageal spasm|diffuse esophageal spasm| +E0022693|digestor|digester| +E0022715|digitalise|digitalize| +E0022727|digitilisation|digitilization| +E0022728|digitise|digitize| +E0022751|dihydrallazine|dihydralazine| +E0022766|dihydroergokrystin|dihydroergocristine| +E0022767|dihydroergokriptin|dihydroergocryptine| +E0022771|dihydroergotoxin|dihydroergotoxine| +E0022823|dihydroorotase|dihydro-orotase| +E0022838|dyke|dike| +E0022839|dyke|dike| +E0022913|dimethylbenz[a]anthracene|dimethylbenzanthracene| +E0022940|dimethyladipimate|dimethyl adipimate| +E0022951|dimetikon|dimeticon| +E0023005|dioctanoyl glycerol|dioctanoylglycerol| +E0023010|dioctyl sulphosuccinate|dioctyl sulfosuccinate| +E0023010|dioctylsulfosuccinate|dioctyl sulfosuccinate| +E0023010|dioctylsulphosuccinate|dioctyl sulfosuccinate| +E0023018|dioleoyl phosphatidylethanolamine|dioleoylphosphatidylethanolamine| +E0023018|dioleoylphosphatidyl ethanolamine|dioleoylphosphatidylethanolamine| +E0023022|dioptre|diopter| +E0023034|dipalmitoyl phosphatidylcholine|dipalmitoylphosphatidylcholine| +E0023041|diphenylchloroarsine|diphenylchlorarsine| +E0023055|diphtheric|diphtheritic| +E0023173|disk|disc| +E0023177|discernability|discernibility| +E0023178|discernable|discernible| +E0023187|diskitis|discitis| +E0023192|discogenetic|discogenic| +E0023198|discolour|discolor| +E0023199|discolouration|discoloration| +E0023212|disconnexion|disconnection| +E0023285|disfavour|disfavor| +E0023286|disfavour|disfavor| +E0023308|dishevelled|disheveled| +E0023313|dishonour|dishonor| +E0023314|dishonour|dishonor| +E0023346|disciform|diskiform| +E0023353|dislodgment|dislodgement| +E0023381|disorganisation|disorganization| +E0023382|disorganise|disorganize| +E0023383|disorientate|disorient| +E0023393|despatch|dispatch| +E0023394|despatch|dispatch| +E0023396|dispensibility|dispensability| +E0023397|dispensible|dispensable| +E0023517|distention|distension| +E0023519|distil|distill| +E0023547|distoclusal|disto-occlusal| +E0023571|disulphide|disulfide| +E0023610|divers paralysis|divers' paralysis| +E0023646|disodium|di-sodium| +E0023712|dolour|dolor| +E0023738|domperidon|domperidone| +E0023779|dorsomesial|dorsimesal| +E0023781|dorso-anterior|dorsoanterior| +E0023791|dorso-radial|dorsoradial| +E0023800|dosemeter|dosimeter| +E0023801|dosemetric|dosimetric| +E0023817|double-blind method|double blind method| +E0023827|double blind|double-blind| +E0023827|doubleblind|double-blind| +E0023830|double talk|double-talk| +E0023836|donut|doughnut| +E0023841|dowse|douse| +E0023888|draughtiness|draftiness| +E0023889|draughtsman|draftsman| +E0023890|draughty|drafty| +E0023904|dramatise|dramatize| +E0023910|draft|draught| +E0023911|draft|draught| +E0023958|drinking water|drinking-water| +E0023990|drouth|drought| +E0024075|duffle|duffel| +E0024081|dulness|dullness| +E0024084|dumfound|dumbfound| +E0024106|duodeno-colic|duodenocolic| +E0024110|duodeno-jejunostomy|duodenojejunostomy| +E0024162|diad|dyad| +E0024168|dynamical|dynamic| +E0024174|dynamisation|dynamization| +E0024183|diphylline|dyphylline| +E0024188|dysboulic|dysbulic| +E0024192|dyscrasic|dyscratic| +E0024194|dysdiadochocinetic|dysdiadochokinetic| +E0024198|dysenteric diarrhoea|dysenteric diarrhea| +E0024202|dysaesthetic|dysesthetic| +E0024203|disfunction|dysfunction| +E0024204|disfunctional|dysfunctional| +E0024212|dyshaematopoietic|dyshematopoietic| +E0024212|dyshemopoietic|dyshematopoietic| +E0024213|dyshydrosis|dyshidrosis| +E0024213|dysidrosis|dyshidrosis| +E0024221|dyslipoidosis|dyslipidosis| +E0024223|dysmenorrhoea|dysmenorrhea| +E0024246|dyspnoea|dyspnea| +E0024247|dyspnoeic|dyspneic| +E0024258|dystheroidal|dysthyroid| +E0024259|dysthhyroid|dysthyroidal| +E0024303|ev|eV| +E0024336|ear wax|earwax| +E0024366|ECBO virus|ecbovirus| +E0024371|eccentroosteochondrodysplasia|eccentro-osteochondrodysplasia| +E0024397|echinate|echinulate| +E0024425|oecology|ecology| +E0024430|economise|economize| +E0024436|ecphorise|ecphorize| +E0024436|ekphorize|ecphorize| +E0024451|ecto-cervical|ectocervical| +E0024463|ecto-enzyme|ectoenzyme| +E0024482|ectopia|ectopy| +E0024490|ectropionise|ectropionize| +E0024504|oedema|edema| +E0024506|oedematous|edematous| +E0024522|educatable|educable| +E0024531|eelworm|eel worm| +E0024532|eery|eerie| +E0024595|eggshell|egg shell| +E0024597|aegilops|egilops| +E0024604|egoistical|egoistic| +E0024609|ego-defence|ego-defense| +E0024614|ehrlich ascites tumour|ehrlich ascites tumor| +E0024621|eightfold|eight-fold| +E0024622|eightfold|eight-fold| +E0024753|electronmicroscopy|electron microscopy| +E0024758|electronvolt|electron volt| +E0024850|eluant|eluent| +E0024898|embolization|embolisation| +E0024901|embolise|embolize| +E0024915|embryogenetic|embryogenic| +E0024917|embryologic|embryological| +E0024983|impanel|empanel| +E0024986|empathise|empathize| +E0024988|emperour|emperor| +E0024990|emphasise|emphasize| +E0024998|empiric|empirical| +E0025003|enplane|emplane| +E0025043|enamour|enamor| +E0025076|encephalocoele|encephalocele| +E0025091|encephalo-myopathy|encephalomyopathy| +E0025114|inclose|enclose| +E0025115|inclosure|enclosure| +E0025135|encyclopaedia|encyclopedia| +E0025144|endamoeba|endameba| +E0025149|endarterectomise|endarterectomize| +E0025152|endoarteritis|endarteritis| +E0025157|endeavour|endeavor| +E0025158|endeavour|endeavor| +E0025218|endocrinological|endocrinologic| +E0025297|endoplasmatic|endoplasmic| +E0025306|indorse|endorse| +E0025320|endostitis|endosteitis| +E0025326|endothelialisation|endothelialization| +E0025327|endothelialise|endothelialize| +E0025338|endothermic|endothermal| +E0025341|endotoxaemia|endotoxemia| +E0025347|endo-tracheal|endotracheal| +E0025361|end-stage|endstage| +E0025362|indue|endue| +E0025366|end-diastolic|end diastolic| +E0025367|endpoint|end point| +E0025369|end stage renal disease|end-stage renal disease| +E0025376|energisation|energization| +E0025377|energise|energize| +E0025447|enrol|enroll| +E0025449|enrolment|enrollment| +E0025470|entamoeba|entameba| +E0025487|enteronitis|enteritis| +E0025503|entero-cutaneous|enterocutaneous| +E0025513|entero-hepatic circulation|enterohepatic circulation| +E0025530|enterotoxaemia|enterotoxemia| +E0025532|entero-toxin|enterotoxin| +E0025537|entero-vesical|enterovesical| +E0025551|enthral|enthrall| +E0025565|entodermic|entodermal| +E0025576|endoplastic|entoplastic| +E0025591|intrench|entrench| +E0025596|intrust|entrust| +E0025636|enzym|enzyme| +E0025647|eosine|eosin| +E0025648|eosinophile|eosinophil| +E0025649|eosinophile|eosinophil| +E0025683|effedrin|ephedrine| +E0025737|epidemiological|epidemiologic| +E0025746|epidermitis|epidermatitis| +E0025766|epididymoorchitis|epididymo-orchitis| +E0025770|epidural anaesthesia|epidural anesthesia| +E0025771|epidural haematoma|epidural hematoma| +E0025787|epiglottiditis|epiglottitis| +E0025807|epimenorrhoea|epimenorrhea| +E0025810|epinephrin|epinephrine| +E0025824|epiphysial|epiphyseal| +E0025825|epiphysial cartilage|epiphyseal cartilage| +E0025828|epiphysial plate|epiphyseal plate| +E0025845|episclerotitis|episcleritis| +E0025866|epithelialisation|epithelialization| +E0025867|epithelialise|epithelialize| +E0025872|epithelial tumour|epithelial tumor| +E0025888|epitomise|epitomize| +E0025923|equalise|equalize| +E0025994|ergometrin|ergometrine| +E0026015|eroticisation|eroticization| +E0026016|eroticise|eroticize| +E0026018|erotisation|erotization| +E0026019|erotise|erotize| +E0026031|errour|error| +E0026061|erythroedema polyneuropathy|erythredema polyneuropathy| +E0026062|erythraemic myelosis|erythremic myelosis| +E0026086|erythroleucaemia|erythroleukemia| +E0026086|erythroleucemia|erythroleukemia| +E0026086|erythroleukaemia|erythroleukemia| +E0026116|aescin|escin| +E0026116|escina|escin| +E0026120|aesculin|esculin| +E0026126|oesophageal|esophageal| +E0026127|oesophageal atresia|esophageal atresia| +E0026134|oesophagectomy|esophagectomy| +E0026135|oesophagitis|esophagitis| +E0026136|esophago-bronchial|esophagobronchial| +E0026136|oesophago-bronchial|esophagobronchial| +E0026136|oesophagobronchial|esophagobronchial| +E0026137|esophago-gastrectomy|esophagogastrectomy| +E0026137|oesophago-gastrectomy|esophagogastrectomy| +E0026137|oesophagogastrectomy|esophagogastrectomy| +E0026138|esophago-gastric|esophagogastric| +E0026138|oesophago-gastric|esophagogastric| +E0026138|oesophagogastric|esophagogastric| +E0026139|oesophagogastric junction|esophagogastric junction| +E0026141|esophago-gastrostomy|esophagogastrostomy| +E0026141|oesophago-gastrostomy|esophagogastrostomy| +E0026141|oesophagogastrostomy|esophagogastrostomy| +E0026144|oesophagoplasty|esophagoplasty| +E0026146|esophago-respiratory|esophagorespiratory| +E0026146|oesophago-respiratory|esophagorespiratory| +E0026146|oesophagorespiratory|esophagorespiratory| +E0026147|oesophagoscopy|esophagoscopy| +E0026149|oesophagostomy|esophagostomy| +E0026150|esophago-tracheal|esophagotracheal| +E0026150|oesophago-tracheal|esophagotracheal| +E0026150|oesophagotracheal|esophagotracheal| +E0026151|oesophagus|esophagus| +E0026158|specially|especially| +E0026164|expresso|espresso| +E0026179|essential mixed cryoglobulinaemia|essential mixed cryoglobulinemia| +E0026196|aesthesia|esthesia| +E0026200|esthesiodic|esthesodic| +E0026211|oestradiol|estradiol| +E0026212|oestradiol benzoate|estradiol benzoate| +E0026216|oestriol|estriol| +E0026217|oestrogen|estrogen| +E0026218|estrogenous|estrogenic| +E0026218|oestrogenic|estrogenic| +E0026219|oestrogenicity|estrogenicity| +E0026220|estrogenisation|estrogenization| +E0026220|oestrogenisation|estrogenization| +E0026220|oestrogenization|estrogenization| +E0026221|estrogenise|estrogenize| +E0026221|oestrogenise|estrogenize| +E0026221|oestrogenize|estrogenize| +E0026222|oestrogen-like|estrogen-like| +E0026223|oestrogen-stimulated neurophysin|estrogen-stimulated neurophysin| +E0026224|oestrone|estrone| +E0026225|oestrus|estrous| +E0026227|oestrus|estrus| +E0026245|ethchlorovynol|ethchlorvynol| +E0026248|aether|ether| +E0026252|etherisation|etherization| +E0026253|etherise|etherize| +E0026289|ethnologic|ethnological| +E0026317|ethylalcohol|ethyl alcohol| +E0026323|ethylketocyclazocine|ethyl-ketocyclazocine| +E0026324|ethyndiol diacetate|ethynodiol diacetate| +E0026327|aetiological|etiologic| +E0026327|aetiologic|etiologic| +E0026327|etiological|etiologic| +E0026329|aetiopathogenic|etiopathogenic| +E0026344|eukaryote|eucaryote| +E0026345|eukaryotic|eucaryotic| +E0026354|euglycaemic|euglycemic| +E0026390|eurythmics|eurhythmics| +E0026531|exchangable|exchangeable| +E0026683|exomphalos macroglossia gigantism syndrome|exomphalos-macroglossia-gigantism syndrome| +E0026694|exophthalmometrical|exophthalmometric| +E0026695|exophthalmus|exophthalmos| +E0026701|exorcise|exorcize| +E0026730|expectance|expectancy| +E0026873|exteriorisation|exteriorization| +E0026874|exteriorise|exteriorize| +E0026878|externalisation|externalization| +E0026879|externalise|externalize| +E0026930|extra-cellular|extracellular| +E0026931|extra-cellularly|extracellularly| +E0026932|extra-cellular fluid|extracellular fluid| +E0026934|extracellular matrix material|extracellular matrix-material| +E0026938|extra-cochlear|extracochlear| +E0026949|extractible|extractable| +E0026955|extra-curricular|extracurricular| +E0026966|extra-hepatic|extrahepatic| +E0027001|extra-pleural|extrapleural| +E0027009|extra-pulmonary|extrapulmonary| +E0027012|extra-renal|extrarenal| +E0027038|extroversion|extraversion| +E0027042|extraintracranial arterial bypass|extra-intracranial arterial bypass| +E0027055|extravert|extrovert| +E0027056|extraverted|extroverted| +E0027056|extravert|extroverted| +E0027056|extrovert|extroverted| +E0027083|eye-ball|eyeball| +E0027090|eyedrop|eye drop| +E0027092|eye strain|eye-strain| +E0027092|eyestrain|eye-strain| +E0027093|eyetooth|eye-tooth| +E0027106|facetted|faceted| +E0027111|face powder|face-powder| +E0027152|factorise|factorize| +E0027156|factor VIII related antigen|factor VIII-related antigen| +E0027169|Factor XIII|factor XIII| +E0027178|feces|faeces| +E0027182|faggot|fagot| +E0027183|faggot|fagot| +E0027208|faith healing|faith-healing| +E0027237|fallout|fall-out| +E0027252|false negative|false-negative| +E0027253|false negative|false-negative| +E0027271|familial hypophosphataemia|familial hypophosphatemia| +E0027274|familial megaloblastic anaemia|familial megaloblastic anemia| +E0027281|familiarise|familiarize| +E0027287|family history|family-history| +E0027288|family life|family-life| +E0027299|fanatic|fanatical| +E0027309|phantasy|fantasy| +E0027317|faradisation|faradization| +E0027318|faradise|faradize| +E0027319|faradiser|faradizer| +E0027331|farmers' lung|farmer's lung| +E0027337|far-sightedness|farsightedness| +E0027352|fascitis|fasciitis| +E0027401|fatiguability|fatigability| +E0027401|fatigueability|fatigability| +E0027419|fatty tumour|fatty tumor| +E0027425|fat-free|fat free| +E0027429|fat cell|fat-cell| +E0027441|faultfinding|fault-finding| +E0027448|favour|favor| +E0027449|favour|favor| +E0027450|favourable|favorable| +E0027451|favourableness|favorableness| +E0027452|favourably|favorably| +E0027453|favorite|favourite| +E0027454|favorite|favourite| +E0027455|favoritism|favouritism| +E0027492|faecal|fecal| +E0027525|felspar|feldspar| +E0027566|feminisation|feminization| +E0027601|foenugreek|fenugreek| +E0027609|fermenter|fermentor| +E0027634|fertilisation|fertilization| +E0027636|fertilise|fertilize| +E0027637|fertiliser|fertilizer| +E0027644|fervour|fervor| +E0027657|foetal|fetal| +E0027659|foetal alcohol syndrome|fetal alcohol syndrome| +E0027661|fetal haemoglobin|fetal hemoglobin| +E0027661|foetal haemoglobin|fetal hemoglobin| +E0027664|foetal membrane|fetal membrane| +E0027670|foetid|fetid| +E0027675|foetoprotein|fetoprotein| +E0027676|foetoscopic|fetoscopic| +E0027677|foetoscopy|fetoscopy| +E0027680|foetus|fetus| +E0027699|fiber optic|fiberoptic| +E0027699|fibre optic|fiberoptic| +E0027699|fibreoptic|fiberoptic| +E0027700|fibre optics|fiber optics| +E0027701|fibre-endoscopic|fiber-endoscopic| +E0027704|fiber|fibre| +E0027705|fiberboard|fibreboard| +E0027706|fiberglass|fibreglass| +E0027747|fibroblast-like|fibroblastlike| +E0027772|hepatocellular fibrolamellar carcinoma|fibrolamellar hepatocellular carcinoma| +E0027807|fibrose|fibrous| +E0027839|field test|field-test| +E0027840|field test|field-test| +E0027901|filtrable|filterable| +E0027919|fimbriated|fimbriate| +E0027929|fimbrilin|fimbrillin| +E0027932|fineable|finable| +E0027936|finalise|finalize| +E0027969|fire-proof|fireproof| +E0027970|fire-proof|fireproof| +E0027974|fire control|fire-control| +E0027975|firedamp|fire-damp| +E0027976|firepower|fire-power| +E0027986|first-born|firstborn| +E0027987|first-born|firstborn| +E0027997|fishing tackle|fishing-tackle| +E0028013|fissure-in-ano|fissure in ano| +E0028017|fistulisation|fistulization| +E0028092|flat foot|flatfoot| +E0028105|flavin adenine dinucleotide|flavin-adenine dinucleotide| +E0028110|flavour|flavor| +E0028111|flavouring|flavoring| +E0028117|flax dressers' disease|flax-dresser's disease| +E0028127|fledgeling|fledgling| +E0028142|flection|flexion| +E0028183|flocculent|flocculant| +E0028188|flocculency|flocculence| +E0028194|floctafenin|floctafenine| +E0028215|floatation|flotation| +E0028232|flowcytometry|flow cytometry| +E0028256|fluidisation|fluidization| +E0028257|fluidise|fluidize| +E0028274|non-fluorescence|nonfluorescence| +E0028284|flouridisation|fluoridization| +E0028285|fluoridise|fluoridize| +E0028297|fluorimetry|fluorometry| +E0028305|fluoruracil|fluorouracil| +E0028308|fluoximesteron|fluoxymesterone| +E0028317|fluorothyl|flurothyl| +E0028422|followup|follow-up| +E0028423|followup|follow-up| +E0028433|fount|font| +E0028434|fontanel|fontanelle| +E0028452|foot drop|footdrop| +E0028463|foot-rot|foot rot| +E0028464|foot and mouth disease|foot-and-mouth disease| +E0028484|forced expiratory volume during 1 s|forced expiratory volume at one second| +E0028497|fore arm|forearm| +E0028501|forbear|forebear| +E0028502|forbode|forebode| +E0028507|fo'c's'le|forecastle| +E0028507|fo'c'sle|forecastle| +E0028516|forgo|forego| +E0028544|fore skin|foreskin| +E0028551|for ever|forever| +E0028577|formaldehyd|formaldehyde| +E0028581|formalin-fixed|formalinfixed| +E0028586|formalise|formalize| +E0028622|foreswear|forswear| +E0028648|forward|forwards| +E0028649|phosphomycin|fosfomycin| +E0028656|fossilisation|fossilization| +E0028657|fossilise|fossilize| +E0028685|fowl pest|fowlpest| +E0028715|fragillity|fragility| +E0028752|fraternisation|fraternization| +E0028753|fraternise|fraternize| +E0028781|freeze dry|freeze-dry| +E0028791|freestanding|free-standing| +E0028795|fraenal|frenal| +E0028799|fraenum|frenum| +E0028848|frigostabile|frigostable| +E0028857|frivoller|frivoler| +E0028887|fronto-cortical aphasia|frontocortical aphasia| +E0028902|frostbite|frost-bite| +E0028903|frostbitten|frost-bitten| +E0028927|furosemide|frusemide| +E0028949|fulfill|fulfil| +E0028950|fulfilment|fulfillment| +E0028961|fully-grown|full-grown| +E0029016|funduscopy|fundoscopy| +E0029020|fundoscopic|funduscopic| +E0029067|frucula|furculum| +E0029143|gaberdine|gabardine| +E0029157|gayly|gaily| +E0029183|galactorrhoea|galactorrhea| +E0029186|galactosaemia|galactosemia| +E0029194|Galenic|galenic| +E0029201|gall bladder|gallbladder| +E0029205|galavant|gallivant| +E0029205|galivant|gallivant| +E0029210|gall stone|gallstone| +E0029210|gall-stone|gallstone| +E0029215|galvanisation|galvanization| +E0029216|galvanise|galvanize| +E0029238|gametocinetic|gametokinetic| +E0029243|gamma-globulin|gamma globulin| +E0029243|gammaglobulin|gamma globulin| +E0029244|gamma-radiation|gamma radiation| +E0029247|gamma amino-butyric acid|gamma-aminobutyric acid| +E0029247|gamma aminobutyric acid|gamma-aminobutyric acid| +E0029247|gamma-amino butyric acid|gamma-aminobutyric acid| +E0029262|ganlioform|gangliform| +E0029271|ganglio-neuroma|ganglioneuroma| +E0029274|gangliitis|ganglionitis| +E0029275|ganglionoplegic|ganglioplegic| +E0029276|ganglionoplegic|ganglioplegic| +E0029300|garrapata disease|garapata disease| +E0029321|garote|garrotte| +E0029321|garotte|garrotte| +E0029321|garrote|garrotte| +E0029322|garote|garrotte| +E0029322|garotte|garrotte| +E0029322|garrote|garrotte| +E0029340|gasolene|gasoline| +E0029382|gastro-colic|gastrocolic| +E0029387|gastro-duodenal|gastroduodenal| +E0029388|gastro-duodenitis|gastroduodenitis| +E0029390|gastro-enteric|gastroenteric| +E0029391|gastro-enteritis|gastroenteritis| +E0029395|gastro-enterology|gastroenterology| +E0029397|gastro-enterostomy|gastroenterostomy| +E0029398|gastro-epiploic|gastroepiploic| +E0029400|gastro-esophageal|gastroesophageal| +E0029400|gastro-oesophageal|gastroesophageal| +E0029400|gastrooesophageal|gastroesophageal| +E0029402|gastro esophageal reflux|gastroesophageal reflux| +E0029402|gastro oesophageal reflux|gastroesophageal reflux| +E0029402|gastro-esophageal reflux|gastroesophageal reflux| +E0029402|gastro-oesophageal reflux|gastroesophageal reflux| +E0029402|gastrooesophageal reflux|gastroesophageal reflux| +E0029411|gastro-intestinal|gastrointestinal| +E0029412|gastro-intestinal bleeding|gastrointestinal bleeding| +E0029414|gastro-intestinal tract|gastrointestinal tract| +E0029429|gasteropod|gastropod| +E0029430|gasteropod|gastropod| +E0029447|gas chromatographic|gas-chromatographic| +E0029458|gage|gauge| +E0029459|gage|gauge| +E0029481|gell|gel| +E0029481|jell|gel| +E0029482|gell|gel| +E0029482|jell|gel| +E0029486|gelatine|gelatin| +E0029489|gelatinisation|gelatinization| +E0029490|gelatinise|gelatinize| +E0029500|gelelectrophoresis|gel electrophoresis| +E0029501|gel-filtration|gel filtration| +E0029501|gelfiltration|gel filtration| +E0029516|genealogic|genealogical| +E0029523|generalisability|generalizability| +E0029524|generalisable|generalizable| +E0029525|generalisation|generalization| +E0029526|generalise|generalize| +E0029534|general anaesthesia|general anesthesia| +E0029559|genetical|genetic| +E0029596|genito-urinary|genitourinary| +E0029610|genotypical|genotypic| +E0029611|gentamycin|gentamicin| +E0029631|genuflexion|genuflection| +E0029640|geographical|geographic| +E0029646|geometrical|geometric| +E0029647|geometric mean titre|geometric mean titer| +E0029666|germinal localisation|germinal localization| +E0029674|germ-plasm|germ plasm| +E0029674|germplasm|germ plasm| +E0029681|Gestalt|gestalt| +E0029682|Gestalt theory|gestalt theory| +E0029732|jibe|gibe| +E0029733|jibe|gibe| +E0029767|gingivo-labial|gingivolabial| +E0029770|gingivo-stomatitis|gingivostomatitis| +E0029803|glamorisation|glamorization| +E0029804|glamorise|glamorize| +E0029909|glomerulo nephritis|glomerulonephritis| +E0029909|glomerulo-nephritis|glomerulonephritis| +E0029911|glomerulo sclerosis|glomerulosclerosis| +E0029911|glomerulo-sclerosis|glomerulosclerosis| +E0029932|glottitis|glossitis| +E0029936|glossocinesthetic|glossokinesthetic| +E0029972|glucuronosyl transferase|glucuronosyltransferase| +E0030006|glycaemia|glycemia| +E0030007|glycaemic|glycemic| +E0030016|glyceryl-trinitrate|glyceryl trinitrate| +E0030016|glyceryltrinitrate|glyceryl trinitrate| +E0030019|glycocalix|glycocalyx| +E0030021|glycogenic|glycogenetic| +E0030021|glycogenous|glycogenetic| +E0030030|glucolytic|glycolytic| +E0030046|glycosamino-glycan|glycosaminoglycan| +E0030054|glycosylated haemoglobin|glycosylated hemoglobin| +E0030096|goitre|goiter| +E0030120|gonadotropic|gonadotrophic| +E0030121|gonadotrophin|gonadotropin| +E0030122|gonadotrophin releasing hormone|gonadotropin-releasing hormone| +E0030122|gonadotrophin-releasing hormone|gonadotropin-releasing hormone| +E0030122|gonadotropin releasing hormone|gonadotropin-releasing hormone| +E0030129|gonitis|goneitis| +E0030145|gonorrhoeal|gonorrheal| +E0030147|gonorrhoeal conjunctivitis|gonorrheal conjunctivitis| +E0030150|gonorrhea|gonorrhoea| +E0030157|good-by|good-bye| +E0030157|goodbye|good-bye| +E0030161|good-neighborliness|good-neighbourliness| +E0030173|gormandise|gormandize| +E0030224|graft versus host disease|graft-versus-host disease| +E0030225|graft versus host reaction|graft-versus-host reaction| +E0030228|gramme|gram| +E0030235|gram negative|gram-negative| +E0030235|gramnegative|gram-negative| +E0030237|gram positive|gram-positive| +E0030237|grampositive|gram-positive| +E0030238|gram positive|gram-positive| +E0030341|grave-wax|grave wax| +E0030394|gray|grey| +E0030395|gray|grey| +E0030396|gray|grey| +E0030398|grayness|greyness| +E0030422|grip|grippe| +E0030462|ground water|groundwater| +E0030464|ground itch anaemia|ground itch anemia| +E0030466|ground glass|ground-glass| +E0030467|ground glass|ground-glass| +E0030474|group transfer|group-transfer| +E0030479|groveller|groveler| +E0030490|growth hormone releasing factor|growth hormone-releasing factor| +E0030498|gruelling|grueling| +E0030505|grumous|grumose| +E0030522|guanosinetriphosphate|guanosine triphosphate| +E0030556|guinea-pig|guinea pig| +E0030556|guineapig|guinea pig| +E0030558|guinea fowl|guinea-fowl| +E0030585|gun cotton|gun-cotton| +E0030585|guncotton|gun-cotton| +E0030600|gutta percha|gutta-percha| +E0030600|guttapercha|gutta-percha| +E0030609|jibe|gybe| +E0030617|gynaecium|gynaeceum| +E0030617|gynecium|gynaeceum| +E0030617|gynoecium|gynaeceum| +E0030622|gynaecological|gynecological| +E0030623|gynaecologist|gynecologist| +E0030624|gynaecology|gynecology| +E0030625|gynaecomastia|gynecomastia| +E0030625|gynecomastism|gynecomastia| +E0030668|hemagglutinating|haemagglutinating| +E0030669|hemagglutination|haemagglutination| +E0030670|hemagglutinin|haemagglutinin| +E0030671|hemangioendothelioma|haemangioendothelioma| +E0030672|hematolysis|haematolysis| +E0030673|hematoxylin|haematoxylin| +E0030674|hemocirculatory|haemocirculatory| +E0030675|hemofiltrate|haemofiltrate| +E0030676|hemolymph|haemolymph| +E0030678|hemoperfusion|haemoperfusion| +E0030679|hemophilus meningitis|haemophilus meningitis| +E0030680|hemoptysis|haemoptysis| +E0030681|hemorrhage|haemorrhage| +E0030682|hemorrhage|haemorrhage| +E0030684|hemostasis|haemostasis| +E0030717|half life|half-life| +E0030717|halflife|half-life| +E0030728|hallux|hallex| +E0030794|hand foot and mouth disease|hand-foot-and-mouth disease| +E0030794|hand, foot, and mouth disease|hand-foot-and-mouth disease| +E0030795|handwritten|hand-written| +E0030803|haplo-identity|haploidentity| +E0030807|haploidentical|haplo-identical| +E0030813|haptene|hapten| +E0030815|haptophile|haptophil| +E0030821|hari-kiri|hara-kiri| +E0030822|harbour|harbor| +E0030823|harbour|harbor| +E0030851|harmonise|harmonize| +E0030870|hasheesh|hashish| +E0030897|haut mal|haut-mal| +E0030980|heart failure|heart-failure| +E0030987|heatshock protein|heat shock protein| +E0031007|hebephrenic|hebephreniac| +E0031008|hebephrenic|hebephreniac| +E0031014|hectogramme|hectogram| +E0031035|hight|height| +E0031037|heanous|heinous| +E0031045|helicoidal|helicoid| +E0031075|haemacytozoon|hemacytozoon| +E0031075|haemocytozoon|hemacytozoon| +E0031075|hemocytozoon|hemacytozoon| +E0031077|haemadsorbent|hemadsorbent| +E0031079|haemagglutinate|hemagglutinate| +E0031080|haemagglutination inhibition|hemagglutination inhibition| +E0031082|haemal|hemal| +E0031083|haemal canal|hemal canal| +E0031084|haemangioblastoma|hemangioblastoma| +E0031086|haemangiofibroma|hemangiofibroma| +E0031087|haemangioma|hemangioma| +E0031088|haemangiosarcoma|hemangiosarcoma| +E0031090|haemarthrosis|hemarthrosis| +E0031095|haemathorax|hemathorax| +E0031095|haemothorax|hemathorax| +E0031095|hematothorax|hemathorax| +E0031095|hemothorax|hemathorax| +E0031096|haematic|hematic| +E0031097|haematic|hematic| +E0031098|haematinic|hematinic| +E0031099|haematinic|hematinic| +E0031101|haematobium|hematobium| +E0031102|haematochezia|hematochezia| +E0031104|haematocrit|hematocrit| +E0031105|haematocryal|hematocryal| +E0031107|haemato encephalic barrier|hematoencephalic barrier| +E0031107|haemato-encephalic barrier|hematoencephalic barrier| +E0031107|haematoencephalic barrier|hematoencephalic barrier| +E0031107|hemato encephalic barrier|hematoencephalic barrier| +E0031107|hemato-encephalic barrier|hematoencephalic barrier| +E0031108|haematogenic|hematogenic| +E0031110|haematogenous|hematogenous| +E0031114|haematoid|hematoid| +E0031115|haematoid carcinoma|hematoid carcinoma| +E0031116|haematologic|hematologic| +E0031118|haematology|hematology| +E0031119|haematoma|hematoma| +E0031123|haematophorphyrin|hematophorphyrin| +E0031124|haematophytic|hematophytic| +E0031125|haematoplastic|hematoplastic| +E0031127|haematopoietic|hematopoietic| +E0031129|haematoporphyrin|hematoporphyrin| +E0031132|haematotoxic|hematotoxic| +E0031135|haematozoon|hematozoon| +E0031136|haematuria|hematuria| +E0031137|haem|heme| +E0031146|heamic|hemic| +E0031148|haemic calculus|hemic calculus| +E0031173|hemispherium|hemisphaerium| +E0031179|hemi-thorax|hemithorax| +E0031183|haemo|hemo| +E0031189|haemochromatosis|hemochromatosis| +E0031193|haemoclip|hemoclip| +E0031195|haemocytophagic|hemocytophagic| +E0031196|haemodiafiltration|hemodiafiltration| +E0031198|haemodialysis|hemodialysis| +E0031199|haemodilution|hemodilution| +E0031200|haemodynamic|hemodynamic| +E0031201|haemodynamics|hemodynamics| +E0031205|haemofiltration|hemofiltration| +E0031208|haemoglobin|hemoglobin| +E0031209|haemoglobinated|hemoglobinated| +E0031210|haemoglobinaemia|hemoglobinemia| +E0031210|haemoglobinemia|hemoglobinemia| +E0031210|hemoglobinaemia|hemoglobinemia| +E0031212|haemoglobinolysis|hemoglobinolysis| +E0031220|hemolisation|hemolization| +E0031221|haemolymphopoietic|hemolymphopoietic| +E0031222|haemolysis|hemolysis| +E0031224|haemolytic|hemolytic| +E0031224|hematolytic|hemolytic| +E0031225|haemolytic anaemia|hemolytic anemia| +E0031225|haemolytic anemia|hemolytic anemia| +E0031225|hemolytic anaemia|hemolytic anemia| +E0031227|haemolysable|hemolyzable| +E0031228|haemolysation|hemolyzation| +E0031228|haemolyzation|hemolyzation| +E0031228|hemolysation|hemolyzation| +E0031229|haemolyse|hemolyze| +E0031229|haemolyze|hemolyze| +E0031229|hemolyse|hemolyze| +E0031230|haemolysed|hemolyzed| +E0031230|haemolyzed|hemolyzed| +E0031230|hemolysed|hemolyzed| +E0031232|haemopathic|hemopathic| +E0031236|haemophilia|hemophilia| +E0031237|haemophiliac|hemophiliac| +E0031238|haemophilia A|hemophilia A| +E0031240|haemophilic|hemophilic| +E0031245|haemopneumothorax|hemopneumothorax| +E0031246|haemapoietic|hemopoietic| +E0031246|haemopoietic|hemopoietic| +E0031246|hemapoietic|hemopoietic| +E0031250|haemorenal salt index|hemorenal salt index| +E0031252|haemorrhagic|hemorrhagic| +E0031256|haemorrhagic disease|hemorrhagic disease| +E0031266|haemorrhagic nephroso nephritis|hemorrhagic nephrosonephritis| +E0031266|haemorrhagic nephrosonephritis|hemorrhagic nephrosonephritis| +E0031266|hemorrhagic nephroso nephritis|hemorrhagic nephrosonephritis| +E0031270|haemorrhagic pyelitis|hemorrhagic pyelitis| +E0031273|hemorrhagic thrombocythaemia|hemorrhagic thrombocythemia| +E0031276|haemorrhoidal|hemorrhoidal| +E0031279|haemosiderosis|hemosiderosis| +E0031280|haemostatic|hemostatic| +E0031281|haemostatic|hemostatic| +E0031282|haemostyptic|hemostyptic| +E0031292|heparinisation|heparinization| +E0031293|heparinise|heparinize| +E0031295|hepatectomisation|hepatectomization| +E0031296|hepatectomise|hepatectomize| +E0031322|hepato-biliary|hepatobiliary| +E0031326|hepato-cellular|hepatocellular| +E0031349|hepatomegalia|hepatomegaly| +E0031361|hepato-renal|hepatorenal| +E0031365|hepato-splenomegaly|hepatosplenomegaly| +E0031366|hepato-toxic|hepatotoxic| +E0031367|hepato-toxicity|hepatotoxicity| +E0031395|hereditary haemorrhagic telangiectasia|hereditary hemorrhagic telangiectasia| +E0031400|hereditary nonspherocytic hemolytic anaemia|hereditary nonspherocytic hemolytic anemia| +E0031422|hermaphrodism|hermaphroditism| +E0031442|herpesvirus hominis|herpesvirus hominous| +E0031443|herpesencephalitis|herpes encephalitis| +E0031451|herpesvirus|herpes virus| +E0031463|hesitance|hesitancy| +E0031555|heterozygozity|heterozygosity| +E0031580|hexuronyl hexosaminoglycan sulphate|hexuronyl hexosaminoglycan sulfate| +E0031590|hiccough|hiccup| +E0031591|hiccough|hiccup| +E0031601|hidroadenoma|hidradenoma| +E0031601|hydradenoma|hidradenoma| +E0031624|high-fat|high fat| +E0031627|high-performance liquid chromatography|high performance liquid chromatography| +E0031634|high altitude pulmonary edema|high-altitude pulmonary edema| +E0031636|high density lipo-protein|high-density lipoprotein| +E0031636|high density lipoprotein|high-density lipoprotein| +E0031636|high-density lipo-protein|high-density lipoprotein| +E0031651|highpitched|high-pitched| +E0031665|high-jack|hijack| +E0031665|highjack|hijack| +E0031861|homoeopath|homeopath| +E0031862|homoeopathic|homeopathic| +E0031863|homoeopathy|homeopathy| +E0031865|homoeostatic|homeostatic| +E0031908|homogeneisation|homogenization| +E0031908|homogeneization|homogenization| +E0031908|homogenisation|homogenization| +E0031909|homogenise|homogenize| +E0031967|honour|honor| +E0031968|honour|honor| +E0031969|honourable|honorable| +E0031979|hook worm|hookworm| +E0031979|hook-worm|hookworm| +E0032037|horse-shoe|horseshoe| +E0032041|horseplay|horse-play| +E0032042|horseracing|horse-racing| +E0032043|horseradish|horse-radish| +E0032054|hospitalisation|hospitalization| +E0032055|hospitalise|hospitalize| +E0032076|hot line|hotline| +E0032076|hot-line|hotline| +E0032077|hot spot|hotspot| +E0032089|house fly|housefly| +E0032139|humanise|humanize| +E0032145|human T-cell leukemia virus I antibody|human T cell leukemia virus I antibody| +E0032146|human T-cell leukemia virus I antigen|human T cell leukemia virus I antigen| +E0032147|human T-cell leukemia virus antibody|human T cell leukemia virus antibody| +E0032148|human T-cell leukemia virus antigen|human T cell leukemia virus antigen| +E0032149|human T-cell lymphotropic virus type III|human T cell lymphotropic virus type III| +E0032152|human T-lymphotropic virus associated leukemia lymphoma|human T lymphotropic virus associated leukemia lymphoma| +E0032153|human T-lymphotropic virus type IV|human T lymphotropic virus type IV| +E0032180|human leucocyte antigen|human leukocyte antigen| +E0032185|human papilloma virus|human papillomavirus| +E0032201|human T cell leucaemia virus III antibody|human T cell leukemia virus III antibody| +E0032201|human T cell leucemia virus III antibody|human T cell leukemia virus III antibody| +E0032201|human T cell leukaemia virus III antibody|human T cell leukemia virus III antibody| +E0032201|human t cell leukemia virus iii antibody|human T cell leukemia virus III antibody| +E0032202|human t cell leukemia virus iii antigen|human T cell leukemia virus III antigen| +E0032204|human t cell leukemia virus i myelopathy|human T cell leukemia virus I myelopathy| +E0032206|human t lymphotropic virus ii|human T lymphotropic virus II| +E0032207|human T-cell leucaemia|human T-cell leukemia| +E0032207|human T-cell leucemia|human T-cell leukemia| +E0032207|human T-cell leukaemia|human T-cell leukemia| +E0032207|human t-cell leukemia|human T-cell leukemia| +E0032209|human T-cell leukemia virus III infection|human t-cell leukemia virus iii infection| +E0032212|human T-cell leukemia virus III serology|human t-cell leukemia virus iii serology| +E0032216|human t-cell lymphotrophic virus|human T-cell lymphotrophic virus| +E0032217|human t-cell lymphotrophic virus 1|human T-cell lymphotrophic virus 1| +E0032240|humour|humor| +E0032241|humour|humor| +E0032242|humoural|humoral| +E0032246|humourous|humorous| +E0032255|hunger oedema|hunger edema| +E0032290|hyaline|hyalin| +E0032312|hybridization|hybridisation| +E0032315|hybridise|hybridize| +E0032334|hidradenitis|hydradenitis| +E0032337|hydrallazin|hydralazine| +E0032357|hydraemic oedema|hydremic edema| +E0032358|hydraemic nephritis|hydremic nephritis| +E0032367|hydrocoele|hydrocele| +E0032379|hydrocodon|hydrocodone| +E0032408|hydrogen sulphide|hydrogen sulfide| +E0032419|hydrolise|hydrolyze| +E0032419|hydrolize|hydrolyze| +E0032419|hydrolyse|hydrolyze| +E0032440|hydrophillic|hydrophilic| +E0032441|hydrophillic|hydrophilic| +E0032457|hydrops foetalis|hydrops fetalis| +E0032517|hydroxy-indoleacetic acid|hydroxyindoleacetic acid| +E0032517|hydroxyindole acetic acid|hydroxyindoleacetic acid| +E0032566|hydroxyacid|hydroxy acid| +E0032628|hyperamylasaemia|hyperamylasemia| +E0032635|hyperbilirubinaemia|hyperbilirubinemia| +E0032640|hypercalcaemia|hypercalcemia| +E0032641|hypercalcaemic|hypercalcemic| +E0032643|hypercapnaemia|hypercapnemia| +E0032653|hyperchloraemic|hyperchloremic| +E0032655|hypercholesterolaemia|hypercholesterolemia| +E0032656|hypercholesterolaemic|hypercholesterolemic| +E0032675|hyperaemic|hyperemic| +E0032678|hyperaesthesia|hyperesthesia| +E0032691|hyperglycaemic|hyperglycemic| +E0032694|hyperidrosis|hyperhidrosis| +E0032698|hyperimmunisation|hyperimmunization| +E0032699|hyperimmunise|hyperimmunize| +E0032703|hyperinsulaemia|hyperinsulinemia| +E0032703|hyperinsulemia|hyperinsulinemia| +E0032703|hyperinsulinaemia|hyperinsulinemia| +E0032706|hyperkalaemia|hyperkalemia| +E0032719|hyperlipaemia|hyperlipemia| +E0032720|hyperlipidaemia|hyperlipidemia| +E0032721|hyperlipidaemic|hyperlipidemic| +E0032722|hyperlipoproteinaemia|hyperlipoproteinemia| +E0032729|hyperluteinisation|hyperluteinization| +E0032730|hyperluteinise|hyperluteinize| +E0032732|hypermenorrhoea|hypermenorrhea| +E0032740|hypermyoglobinaemia|hypermyoglobinemia| +E0032782|hyperpolarisation|hyperpolarization| +E0032783|hyperpolarise|hyperpolarize| +E0032790|hyperprolactinaemic|hyperprolactinemic| +E0032798|hyperreninaemic|hyperreninemic| +E0032842|hypertriglyceridaemia|hypertriglyceridemia| +E0032862|hyperuricaemia|hyperuricemia| +E0032873|hypervolaemia|hypervolemia| +E0032875|hypaesthesia|hypesthesia| +E0032875|hypoaesthesia|hypesthesia| +E0032878|hyphaema|hyphema| +E0032900|hypnotise|hypnotize| +E0032908|hypoalbuminaemia|hypoalbuminemia| +E0032922|hypochloraemic|hypochloremic| +E0032926|hypocholesterolaemic|hypocholesterolemic| +E0032939|hypocomplementaemic|hypocomplementemic| +E0032967|hypogammaglobulinaemia|hypogammaglobulinemia| +E0032981|hypoglycaemia|hypoglycemia| +E0032982|hypoglycaemic|hypoglycemic| +E0032983|hypoglycaemic|hypoglycemic| +E0032991|hypoidrosis|hypohidrosis| +E0032995|hypokalemic|hypokalaemic| +E0033004|hypolipidaemic|hypolipidemic| +E0033014|hypomineralisation|hypomineralization| +E0033031|hypophosphataemia|hypophosphatemia| +E0033032|hypophosphataemic|hypophosphatemic| +E0033034|hypophysial|hypophyseal| +E0033036|hypophysectomise|hypophysectomize| +E0033039|hypophysioprivic|hypophyseoprivic| +E0033040|hypophysiotropic|hypophyseotropic| +E0033040|hypophysotropic|hypophyseotropic| +E0033056|hypoprolactinaemia|hypoprolactinemia| +E0033066|hyporeninaemic|hyporeninemic| +E0033104|hypothalamo-neurohypophysial|hypothalamo-neurohypophyseal| +E0033104|hypothalamoneurohypophyseal|hypothalamo-neurohypophyseal| +E0033104|hypothalamoneurohypophysial|hypothalamo-neurohypophyseal| +E0033113|hypothesise|hypothesize| +E0033114|hypothetic|hypothetical| +E0033130|hypovolaemia|hypovolemia| +E0033131|hypovelaemic|hypovolemic| +E0033131|hypovolaemic|hypovolemic| +E0033132|hypovolaemic shock|hypovolemic shock| +E0033142|hypoxaemia|hypoxemia| +E0033160|hysterectomised|hysterectomized| +E0033215|ice-cream|ice cream| +E0033261|idealisation|idealization| +E0033262|idealise|idealize| +E0033302|idiopathic hypochromic anaemia|idiopathic hypochromic anemia| +E0033306|idiopathetic multiple pigmented haemorrhagic sarcoma|idiopathic multiple pigmented hemorrhagic sarcoma| +E0033306|idiopathetic multiple pigmented hemorrhagic sarcoma|idiopathic multiple pigmented hemorrhagic sarcoma| +E0033306|idiopathic multiple pigmented haemorrhagic sarcoma|idiopathic multiple pigmented hemorrhagic sarcoma| +E0033323|idiot-savant|idiot savant| +E0033325|idio-ventricular|idioventricular| +E0033332|idolise|idolize| +E0033353|ileac|ileal| +E0033357|ileo caecal|ileocecal| +E0033357|ileo cecal|ileocecal| +E0033357|ileo coecal|ileocecal| +E0033357|ileo-caecal|ileocecal| +E0033357|ileo-cecal|ileocecal| +E0033357|ileo-coecal|ileocecal| +E0033357|ileocaecal|ileocecal| +E0033357|ileocoecal|ileocecal| +E0033360|ileo-colic|ileocolic| +E0033368|ileo-rectal anastomosis|ileorectal anastomosis| +E0033373|ilial|iliac| +E0033384|ilio-femoral|iliofemoral| +E0033387|ilio-inguinal|ilioinguinal| +E0033518|immobilisation|immobilization| +E0033519|immobilise|immobilize| +E0033531|immortalisation|immortalization| +E0033532|immortalise|immortalize| +E0033541|immune-complex disease|immune complex disease| +E0033553|immune complex|immune-complex| +E0033558|immunisation|immunization| +E0033560|immunise|immunize| +E0033566|immuno assay|immunoassay| +E0033566|immuno-assay|immunoassay| +E0033567|immuno assay|immunoassay| +E0033567|immuno-assay|immunoassay| +E0033593|immuno-deficiency|immunodeficiency| +E0033605|immuno-electrophoresis|immunoelectrophoresis| +E0033631|immuno-histochemically|immunohistochemically| +E0033635|immuno-incompetent|immunoincompetent| +E0033656|immuno-positive|immunopositive| +E0033712|impassibility|impassability| +E0033713|impassible|impassable| +E0033762|impetiginisation|impetiginization| +E0033910|in as much as|inasmuch as| +E0034002|inclusion blennorrhoea|inclusion blennorrhea| +E0034014|income tax|income-tax| +E0034188|indirect haemagglutination|indirect hemagglutination| +E0034212|individualisation|individualization| +E0034213|individualise|individualize| +E0034264|industrialisation|industrialization| +E0034265|industrialise|industrialize| +E0034363|infectable|infectible| +E0034446|infero-lateral|inferolateral| +E0034448|infero-posterior|inferoposterior| +E0034456|infiltrating tumour|infiltrating tumor| +E0034485|inflexion|inflection| +E0034502|influenzavirus|influenza virus| +E0034527|infra-diaphragmatic|infradiaphragmatic| +E0034535|infra-mammary|inframammary| +E0034540|infra-orbital|infraorbital| +E0034548|infra-red|infrared| +E0034550|infra-renal|infrarenal| +E0034555|infra-structure|infrastructure| +E0034557|infra-temporal fossa|infratemporal fossa| +E0034558|infra-tentorial|infratentorial| +E0034564|infra-umbilical|infraumbilical| +E0034594|engrained|ingrained| +E0034660|initiater|initiator| +E0034688|inner-city|innercity| +E0034715|innoculation|inoculation| +E0034746|enquire|inquire| +E0034747|enquiry|inquiry| +E0034770|ensemination|insemination| +E0034833|instalment|installment| +E0034846|instill|instil| +E0034847|instillation|instilation| +E0034855|institutionalisation|institutionalization| +E0034856|institutionalise|institutionalize| +E0034885|insulogenic|insulinogenic| +E0034888|insulinopaenia|insulinopenia| +E0034892|insulin-dependent diabetes mellitus|insulin dependent diabetes mellitus| +E0034898|insulinlike|insulin-like| +E0034899|insulin-like growth factor 1|insulin-like growth factor I| +E0034899|insulinlike growth factor 1|insulin-like growth factor I| +E0034899|insulinlike growth factor I|insulin-like growth factor I| +E0034900|insulin-like growth factor 2|insulin-like growth factor II| +E0034900|insulin-like growth factor ii|insulin-like growth factor II| +E0034900|insulinlike growth factor 2|insulin-like growth factor II| +E0034900|insulinlike growth factor II|insulin-like growth factor II| +E0034902|insulin secretion|insulin-secretion| +E0034936|intellectualisation|intellectualization| +E0034937|intellectualise|intellectualize| +E0034975|inter-arytenoid|interarytenoid| +E0035032|inter-dialysis|interdialysis| +E0035056|interferon alpha|interferon-alpha| +E0035057|interferon gamma|interferon-gamma| +E0035108|intermediate hemorrhage|intermediary hemorrhage| +E0035142|internalisation|internalization| +E0035143|internalise|internalize| +E0035154|internal fertilisation|internal fertilization| +E0035176|internationalisation|internationalization| +E0035177|internationalise|internationalize| +E0035180|intern|interne| +E0035186|interneship|internship| +E0035303|interstitial cell stimulating hormone|interstitial-cell stimulating hormone| +E0035303|interstitial cell-stimulating hormone|interstitial-cell stimulating hormone| +E0035312|inter-tropical anaemia|intertropical anemia| +E0035312|inter-tropical anemia|intertropical anemia| +E0035312|intertropical anaemia|intertropical anemia| +E0035385|intra-abdominal|intrabdominal| +E0035385|intraabdominal|intrabdominal| +E0035393|intra-carotid|intracarotid| +E0035398|intra-cellular|intracellular| +E0035399|intra-cellularly|intracellularly| +E0035404|intracerebral haemorrhage|intracerebral hemorrhage| +E0035419|intra-cranial|intracranial| +E0035421|intracranial haemorrhage|intracranial hemorrhage| +E0035437|intra dural|intradural| +E0035437|intra-dural|intradural| +E0035441|intra-epithelial|intraepithelial| +E0035495|intra-muscular|intramuscular| +E0035496|intra-muscularly|intramuscularly| +E0035502|intra-neural|intraneural| +E0035508|intra-nuclear|intranuclear| +E0035511|intra-ocular|intraocular| +E0035513|intra-ocular pressure|intraocular pressure| +E0035514|intra-operative|intraoperative| +E0035515|intra-operatively|intraoperatively| +E0035516|intra-oral|intraoral| +E0035517|intra-orbital|intraorbital| +E0035552|intra-species|intraspecies| +E0035561|intratendinous supraanconeal bursa|intratendinous supra-anconeal bursa| +E0035566|intra-thoracic|intrathoracic| +E0035571|intra-tracheal|intratracheal| +E0035574|intratumour|intratumor| +E0035575|intra-tumoral|intratumoral| +E0035575|intra-tumoural|intratumoral| +E0035575|intratumoural|intratumoral| +E0035579|intra-uterine|intrauterine| +E0035586|intra-vascular|intravascular| +E0035589|intra-venous|intravenous| +E0035590|intra-venously|intravenously| +E0035591|intravenous anaesthesia|intravenous anesthesia| +E0035607|intraaortic|intra-aortic| +E0035610|intraarterially|intra-arterially| +E0035611|intraarticular|intra-articular| +E0035613|intraatrial|intra-atrial| +E0035660|intususception|intussusception| +E0035774|in-vitro|in vitro| +E0035774|invitro|in vitro| +E0035775|invitro|in vitro| +E0035776|in-vivo|in vivo| +E0035776|invivo|in vivo| +E0035779|indwelling|in-dwelling| +E0035780|infighting|in-fighting| +E0035785|in vivo|in-vivo| +E0035785|invivo|in-vivo| +E0035791|iodin|iodine| +E0035796|iodise|iodize| +E0035813|ionisation|ionization| +E0035815|ionise|ionize| +E0035877|iron-binding protein|iron binding protein| +E0035878|iron deficiency anaemia|iron deficiency anemia| +E0035878|iron-deficiency anaemia|iron deficiency anemia| +E0035878|iron-deficiency anemia|iron deficiency anemia| +E0035932|ischaemia|ischemia| +E0035933|ischaemia-reperfusion|ischemia-reperfusion| +E0035934|ischaemic|ischemic| +E0035936|ischaemic heart disease|ischemic heart disease| +E0035938|ischaemic necrosis|ischemic necrosis| +E0035944|ischiadic|ischiatic| +E0035981|islet cell|islet-cell| +E0036003|isoelectric focussing|isoelectric focusing| +E0036006|isoenzymic|isoenzymatic| +E0036008|isoetarin|isoetharine| +E0036093|isoosmotic|iso-osmotic| +E0036093|isosmotic|iso-osmotic| +E0036103|italicise|italicize| +E0036112|itemise|itemize| +E0036135|jack knife|jack-knife| +E0036135|jackknife|jack-knife| +E0036136|jack knife|jack-knife| +E0036136|jackknife|jack-knife| +E0036142|gaol|jail| +E0036143|gaol|jail| +E0036182|jejuno-ileal|jejunoileal| +E0036183|jejuno ileal bypass|jejunoileal bypass| +E0036183|jejuno-ileal bypass|jejunoileal bypass| +E0036192|jeopardise|jeopardize| +E0036206|jewelled|jeweled| +E0036207|jeweller|jeweler| +E0036208|jewelery|jewellery| +E0036208|jewelry|jewellery| +E0036211|jig-saw|jigsaw| +E0036212|jig-saw puzzle|jigsaw puzzle| +E0036214|jimpsonweed|jimson weed| +E0036214|jimsonweed|jimson weed| +E0036245|josamycine|josamycin| +E0036270|judgment|judgement| +E0036342|juvenile pernicious anaemia|juvenile pernicious anemia| +E0036346|juxta-epiphyseal|juxtaepiphyseal| +E0036346|juxta-epiphysial|juxtaepiphyseal| +E0036346|juxtaepiphysial|juxtaepiphyseal| +E0036353|juxta-pyloric|juxtapyloric| +E0036357|jiujitsu|ju-jitsu| +E0036362|kail|kale| +E0036366|kaluresis|kaliuresis| +E0036367|kaluretic|kaliuretic| +E0036368|kaluretic|kaliuretic| +E0036372|kanamycin sulphate|kanamycin sulfate| +E0036377|carat|karat| +E0036380|karnofsky performance status|Karnofsky performance status| +E0036387|karyoclastic|karyoklastic| +E0036416|cheloid|keloid| +E0036427|keratan sulphate|keratan sulfate| +E0036428|ceratectomy|keratectomy| +E0036431|keratinisation|keratinization| +E0036432|keratinise|keratinize| +E0036436|kerato-acanthoma|keratoacanthoma| +E0036437|kerato-conjunctivitis|keratoconjunctivitis| +E0036438|kerato conjunctivitis sicca|keratoconjunctivitis sicca| +E0036438|kerato-conjunctivitis sicca|keratoconjunctivitis sicca| +E0036468|kerosine|kerosene| +E0036473|keto acidosis|ketoacidosis| +E0036495|kat|khat| +E0036495|qat|khat| +E0036503|kidnapper|kidnaper| +E0036516|kilogramme|kilogram| +E0036517|kilogram-calorie|kilogram calorie| +E0036520|kilometre|kilometer| +E0036543|kinaesthetic|kinesthetic| +E0036600|knock-knee|knock knee| +E0036608|knowledgable|knowledgeable| +E0036613|colypeptic|kolypeptic| +E0036618|kumis|koumiss| +E0036658|labio-cervical|labiocervical| +E0036661|labio-gingival|labiogingival| +E0036670|labio-nasal|labionasal| +E0036673|labour|labor| +E0036674|labour|labor| +E0036680|labour union|labor union| +E0036700|lacklustre|lackluster| +E0036705|lachrymal|lacrimal| +E0036706|lachrymal|lacrimal| +E0036714|lacrymate|lacrimate| +E0036715|lacrymation|lacrimation| +E0036771|laisser-faire|laissez-faire| +E0036776|lambast|lambaste| +E0036814|lamp black|lamp-black| +E0036857|lapinise|lapinize| +E0036870|largess|largesse| +E0036875|large cell carcinoma|large-cell carcinoma| +E0036905|laryngo-pharyngeal|laryngopharyngeal| +E0036915|laryngo-tracheal|laryngotracheal| +E0036917|laryngo-tracheo-bronchitis|laryngotracheobronchitis| +E0036972|lateral occipito-temporal gyrus|lateral occipitotemporal gyrus| +E0037011|laughing gas|laughing-gas| +E0037054|lb.|lb| +E0037075|leaf mold|leaf-mould| +E0037075|leaf mould|leaf-mould| +E0037090|leapfrog|leap-frog| +E0037091|leapfrog|leap-frog| +E0037144|left handed|left-handed| +E0037144|lefthanded|left-handed| +E0037145|left sided appendicitis|left-sided appendicitis| +E0037154|legalise|legalize| +E0037162|leghaemoglobin|leghemoglobin| +E0037178|legitimatise|legitimatize| +E0037241|lenti-virus|lentivirus| +E0037330|leukocyte|leucocyte| +E0037333|leukoplakia|leucoplakia| +E0037335|leukovorin|leucovorin| +E0037337|leucaemia|leukemia| +E0037337|leucemia|leukemia| +E0037337|leukaemia|leukemia| +E0037339|leucaemic|leukemic| +E0037339|leucemic|leukemic| +E0037339|leukaemic|leukemic| +E0037340|leucaemic|leukemic| +E0037340|leucemic|leukemic| +E0037340|leukaemic|leukemic| +E0037341|leukaemic reticuloendotheliosis|leukemic reticuloendotheliosis| +E0037343|leukaemogenesis|leukemogenesis| +E0037344|leukaemogenic|leukemogenic| +E0037346|leukaemoid|leukemoid| +E0037347|leucaemoid reaction|leukemoid reaction| +E0037347|leucemoid reaction|leukemoid reaction| +E0037347|leukaemoid reaction|leukemoid reaction| +E0037353|leucocytic|leukocytic| +E0037355|leucocytoclastic|leukocytoclastic| +E0037357|leukolytic|leukocytolytic| +E0037358|leucocytosis|leukocytosis| +E0037362|leucodystrophy|leukodystrophy| +E0037364|leucoencephalitis|leukoencephalitis| +E0037365|leucoencephalopathy|leukoencephalopathy| +E0037367|leucokeratosis|leukokeratosis| +E0037370|leucoma|leukoma| +E0037374|leuconecrosis|leukonecrosis| +E0037375|leucopenia|leukopenia| +E0037380|leucorrhea|leukorrhea| +E0037380|leucorrhoea|leukorrhea| +E0037380|leukorrhoea|leukorrhea| +E0037382|leucosarcoma|leukosarcoma| +E0037383|leucosequestration|leukosequestration| +E0037384|leucosis|leukosis| +E0037385|leucotactic|leukotactic| +E0037386|leucotaxis|leukotaxis| +E0037387|leucotomy|leukotomy| +E0037389|leucotriene|leukotriene| +E0037390|leucovirus|leukovirus| +E0037405|laevocardia|levocardia| +E0037407|laevomeprozine|levomepromazine| +E0037410|laevorotatory|levorotatory| +E0037414|laevulose|levulose| +E0037434|libellous|libelous| +E0037439|liberalisation|liberalization| +E0037440|liberalise|liberalize| +E0037454|licence|license| +E0037455|licence|license| +E0037456|licenced|licensed| +E0037476|liqourice|licorice| +E0037491|lieno-renal|lienorenal| +E0037503|lifestyle|life style| +E0037505|lifelong|life-long| +E0037506|life threatening|life-threatening| +E0037506|lifethreatening|life-threatening| +E0037527|light-weight|lightweight| +E0037528|light-weight|lightweight| +E0037531|light chain|light-chain| +E0037549|likeability|likability| +E0037550|likeable|likable| +E0037647|linguo-mesial|linguomesial| +E0037675|lipoedema|lipedema| +E0037676|lipide|lipid| +E0037708|lipoid dermato-arthritis|lipoid dermatoarthritis| +E0037712|lipoidproteinosis|lipoid proteinosis| +E0037733|lipophylic|lipophilic| +E0037736|lipo-protein|lipoprotein| +E0037753|lip reading|lip-reading| +E0037753|lipreading|lip-reading| +E0037758|liquify|liquefy| +E0037782|lissom|lissome| +E0037783|lissomeness|lissomness| +E0037794|litre|liter| +E0037824|lithotriptor|lithotripter| +E0037832|litmus paper|litmus-paper| +E0037875|lodestone|loadstone| +E0037892|lobated|lobate| +E0037918|localisation|localization| +E0037919|localise|localize| +E0037929|local anaesthetic|local anesthetic| +E0037945|lock jaw|lockjaw| +E0037971|lodgment|lodgement| +E0037997|loaiasis|loiasis| +E0037997|loasis|loiasis| +E0038029|long bone|long-bone| +E0038029|longbone|long-bone| +E0038031|long distance|long-distance| +E0038036|long term|long-term| +E0038036|longterm|long-term| +E0038038|longwinded|long-winded| +E0038039|longwindedness|long-windedness| +E0038052|loop diuretic|loop-diuretic| +E0038079|loath|loth| +E0038088|lower|lour| +E0038127|low density lipo-protein|low density lipoprotein| +E0038127|low-density lipo-protein|low density lipoprotein| +E0038127|low-density lipoprotein|low density lipoprotein| +E0038130|low-fat diet|low fat diet| +E0038133|low-pressure hydrocephalus|low pressure hydrocephalus| +E0038137|low-salt diet|low salt diet| +E0038139|low back|low-back| +E0038196|lumbo-abdominal|lumboabdominal| +E0038198|lumbo-costal|lumbocostal| +E0038199|lumbo-crural|lumbocrural| +E0038204|lumbo-sacral|lumbosacral| +E0038211|lumenal|luminal| +E0038274|luster|lustre| +E0038280|luteinisation|luteinization| +E0038281|luteinise|luteinize| +E0038281|lutenize|luteinize| +E0038282|luteinising hormone|luteinizing hormone| +E0038282|lutenizing hormone|luteinizing hormone| +E0038285|luteinizing hormone-releasing hormone|luteinizing hormone releasing hormone| +E0038288|luteotropic|luteotrophic| +E0038313|lymphangiitis|lymphangeitis| +E0038325|lymphopheresis|lymphapheresis| +E0038328|lymphatic oedema|lymphatic edema| +E0038331|lymphatic leucaemia|lymphatic leukemia| +E0038331|lymphatic leucemia|lymphatic leukemia| +E0038331|lymphatic leukaemia|lymphatic leukemia| +E0038338|lymphoedema|lymphedema| +E0038344|lymphoblastic leucaemia|lymphoblastic leukemia| +E0038344|lymphoblastic leucemia|lymphoblastic leukemia| +E0038344|lymphoblastic leukaemia|lymphoblastic leukemia| +E0038352|lymphocoele|lymphocele| +E0038370|lymphocytic leucaemia|lymphocytic leukemia| +E0038370|lymphocytic leucemia|lymphocytic leukemia| +E0038370|lymphocytic leukaemia|lymphocytic leukemia| +E0038395|lymphoid leucaemia|lymphoid leukemia| +E0038395|lymphoid leucemia|lymphoid leukemia| +E0038395|lymphoid leukaemia|lymphoid leukemia| +E0038418|lympho-proliferative|lymphoproliferative| +E0038419|lympho-reticular|lymphoreticular| +E0038425|lymphnode|lymph node| +E0038431|linestrenol|lynestrenol| +E0038431|lynoestrenol|lynestrenol| +E0038435|lyophilise|lyophilize| +E0038452|lysogenisation|lysogenization| +E0038453|lysogenise|lysogenize| +E0038469|LES|l.e.s.| +E0038475|macadamise|macadamize| +E0038503|macroglobulinaemia|macroglobulinemia| +E0038547|maedi visna|maedi-visna| +E0038571|magnesium sulphate|magnesium sulfate| +E0038579|magnetisation|magnetization| +E0038580|magnetise|magnetize| +E0038625|make-up|makeup| +E0038632|malacoplacia|malacoplakia| +E0038632|malakoplakia|malacoplakia| +E0038743|mammillated|mamillated| +E0038744|mammillitis|mamillitis| +E0038749|mammoplasty|mammaplasty| +E0038759|mamillary|mammillary| +E0038760|mamilliform|mammilliform| +E0038778|mandatory|mandatary| +E0038812|manic-depressive psychosis|manic depressive psychosis| +E0038816|manic depressive illness|manic-depressive illness| +E0038839|maneuverability|manoeuvrability| +E0038840|maneuverable|manoeuvrable| +E0038842|maneuver|manoeuvre| +E0038870|maple-bark disease|maple bark disease| +E0038871|maple-syrup-urine disease|maple syrup urine disease| +E0038872|maprotilin|maprotiline| +E0038901|marihuana|marijuana| +E0038911|Marital Satisfaction Scale|marital satisfaction scale| +E0038948|marsupialisation|marsupialization| +E0038958|marvellous|marvelous| +E0038965|masculinisation|masculinization| +E0038966|masculinise|masculinize| +E0039045|mastoccipital|masto-occipital| +E0039050|mast cell leucaemia|mast cell leukemia| +E0039050|mast cell leucemia|mast cell leukemia| +E0039050|mast cell leukaemia|mast cell leukemia| +E0039050|mast-cell leucaemia|mast cell leukemia| +E0039050|mast-cell leucemia|mast cell leukemia| +E0039050|mast-cell leukaemia|mast cell leukemia| +E0039050|mast-cell leukemia|mast cell leukemia| +E0039066|materialisation|materialization| +E0039067|materialise|materialize| +E0039092|matt|matte| +E0039092|mat|matte| +E0039137|maximisation|maximization| +E0039138|maximise|maximize| +E0039147|maitansine|maytansine| +E0039148|mayapple|may apple| +E0039150|mazindole|mazindol| +E0039155|meagre|meager| +E0039190|mebendazol|mebendazole| +E0039206|mechanise|mechanize| +E0039207|mecistocephalous|mecistocephalic| +E0039219|medieval|mediaeval| +E0039273|medicine man|medicine-man| +E0039290|medio-lateral|mediolateral| +E0039292|medio-tarsal|mediotarsal| +E0039326|mephloquine|mefloquine| +E0039332|megaoesophagus|megaesophagus| +E0039359|miosis|meiosis| +E0039359|myosis|meiosis| +E0039360|miotic|meiotic| +E0039360|myotic|meiotic| +E0039388|melanophore stimulating hormone|melanophore-stimulating hormone| +E0039408|mellitis|melitis| +E0039448|membraneous|membranous| +E0039466|memorisation|memorization| +E0039476|menarchial|menarcheal| +E0039487|meningocortical|meningeocortical| +E0039495|meningocoele|meningocele| +E0039499|meningococcaemia|meningococcemia| +E0039503|meningo-encephalitis|meningoencephalitis| +E0039573|mefenetoin|mephenytoin| +E0039586|mercerise|mercerize| +E0039645|merrymaking|merry-making| +E0039692|mesio-distal|mesiodistal| +E0039707|mesmerise|mesmerize| +E0039778|mesouranic|mesuranic| +E0039791|metabolisability|metabolizability| +E0039792|metabolisable|metabolizable| +E0039793|metabolisation|metabolization| +E0039794|metabolise|metabolize| +E0039804|metachromatism|metachromasia| +E0039806|metachromatic leucodystrophy|metachromatic leukodystrophy| +E0039848|metaphysial|metaphyseal| +E0039865|metastasization|metastasisation| +E0039866|metastasise|metastasize| +E0039906|metoestrus|metestrus| +E0039909|methadylacetate|methadyl acetate| +E0039910|metallibure|methallibure| +E0039910|metallibur|methallibure| +E0039911|metamfetamine|methamphetamine| +E0039915|methane sulfonate|methanesulfonate| +E0039915|methane sulphonate|methanesulfonate| +E0039915|methanesulphonate|methanesulfonate| +E0039925|methaemoglobin|methemoglobin| +E0039926|methaemoglobinaemia|methemoglobinemia| +E0039930|metenolon|methenolone| +E0039931|methymazol|methimazole| +E0039933|methionine-enkephalin|methionine enkephalin| +E0039934|metisazone|methisazone| +E0039956|methyl cellulose|methylcellulose| +E0039974|methyl malonic acid|methylmalonic acid| +E0039979|methyl salicylate|methylsalicylate| +E0040002|meter|metre| +E0040005|metricise|metricize| +E0040035|mezereon|mezerein| +E0040036|meslocillin|mezlocillin| +E0040053|microaneurism|microaneurysm| +E0040056|microangiopathic haemolytic anaemia|microangiopathic hemolytic anemia| +E0040118|microlitre|microliter| +E0040130|micronisation|micronization| +E0040131|micronise|micronize| +E0040167|micro-stimulation|microstimulation| +E0040173|microtitre|microtiter| +E0040187|microorganism|micro-organism| +E0040188|microphysiology|micro-physiology| +E0040195|mid-brain|midbrain| +E0040202|middle-age|middle age| +E0040203|middle-aged|middle aged| +E0040238|midforceps|mid-forceps| +E0040239|midpoint|mid-point| +E0040241|midriff|mid-riff| +E0040283|militarise|militarize| +E0040301|milk alkali syndrome|milk-alkali syndrome| +E0040303|milk tooth|milk-tooth| +E0040308|millenium|millennium| +E0040313|milliliter|millilitre| +E0040314|millimetre|millimeter| +E0040321|milliosmole|milliosmol| +E0040355|mineralisation|mineralization| +E0040356|mineralise|mineralize| +E0040363|miner's asthma|miners' asthma| +E0040368|miniaturisation|miniaturization| +E0040369|miniaturise|miniaturize| +E0040382|minimise|minimize| +E0040439|misbehavior|misbehaviour| +E0040492|misjudgment|misjudgement| +E0040524|mis-shapen|misshapen| +E0040575|mytotan|mitotane| +E0040582|mitral click-murmer syndrome|mitral click murmur syndrome| +E0040616|mmol|mmole| +E0040631|mobilisation|mobilization| +E0040632|mobilise|mobilize| +E0040655|modernisation|modernization| +E0040656|modernise|modernize| +E0040691|mould|mold| +E0040692|mould|mold| +E0040694|mouldy|moldy| +E0040695|mol|mole| +E0040714|mollusk|mollusc| +E0040723|moult|molt| +E0040724|moult|molt| +E0040864|mononuclear leucocyte|mononuclear leukocyte| +E0040881|monopolise|monopolize| +E0040903|monosyphilide|monosyphilid| +E0040918|mono-unsaturated|monounsaturated| +E0040970|moralise|moralize| +E0041000|morphoea|morphea| +E0041013|morpho-genesis|morphogenesis| +E0041038|mortise|mortice| +E0041039|mortise|mortice| +E0041072|mothproof|moth-proof| +E0041073|mothproof|moth-proof| +E0041091|motoneurone|motoneuron| +E0041098|motorise|motorize| +E0041116|molder|moulder| +E0041125|mountain anaemia|mountain anemia| +E0041134|mouse mammary tumour virus|mouse mammary tumor virus| +E0041141|mousey|mousy| +E0041145|moveable|movable| +E0041146|moveable|movable| +E0041156|Moya Moya disease|moyamoya disease| +E0041156|moya-moya disease|moyamoya disease| +E0041185|muckrake|muck-rake| +E0041187|mucocoele|mucocele| +E0041190|muco-cutaneous|mucocutaneous| +E0041196|muco-epidermoid|mucoepidermoid| +E0041197|muco-epidermoid carcinoma|mucoepidermoid carcinoma| +E0041210|muco-purulent|mucopurulent| +E0041274|multicentre|multicenter| +E0041304|multi-gene|multigene| +E0041329|multiplexor|multiplexer| +E0041365|multiinfarct|multi-infarct| +E0041366|multi infarct dementia|multi-infarct dementia| +E0041366|multiinfarct dementia|multi-infarct dementia| +E0041404|murine leucaemia virus|murine leukemia virus| +E0041404|murine leucemia virus|murine leukemia virus| +E0041404|murine leukaemia virus|murine leukemia virus| +E0041430|muscularise|muscularize| +E0041437|musculo-aponeurotic|musculoaponeurotic| +E0041438|musculo-cutaneous|musculocutaneous| +E0041444|musculo-skeletal|musculoskeletal| +E0041447|musculo-tendinous|musculotendinous| +E0041458|mushroom pickers' disease|mushroom picker's disease| +E0041458|mushroom-picker's disease|mushroom picker's disease| +E0041458|mushroom-pickers' disease|mushroom picker's disease| +E0041460|mushroom workers' disease|mushroom worker's disease| +E0041460|mushroom-worker's disease|mushroom worker's disease| +E0041460|mushroom-workers' disease|mushroom worker's disease| +E0041476|moustache|mustache| +E0041543|mycobacterium phlei|Mycobacterium phlei| +E0041556|mycoplasma pneumoniae|Mycoplasma pneumoniae| +E0041582|myelinization|myelinisation| +E0041590|myeloblastc leucaemia|myeloblastic leukemia| +E0041590|myeloblastc leukaemia|myeloblastic leukemia| +E0041590|myeloblastic leucemia|myeloblastic leukemia| +E0041595|myelocytic leucaemia|myelocytic leukemia| +E0041595|myelocytic leucemia|myelocytic leukemia| +E0041595|myelocytic leukaemia|myelocytic leukemia| +E0041598|myelo-dysplastic syndrome|myelodysplastic syndrome| +E0041603|myelogenous leucaemia|myelogenous leukemia| +E0041603|myelogenous leucemia|myelogenous leukemia| +E0041603|myelogenous leukaemia|myelogenous leukemia| +E0041610|myeloid leucaemia|myeloid leukemia| +E0041610|myeloid leucemia|myeloid leukemia| +E0041610|myeloid leukaemia|myeloid leukemia| +E0041619|myelomeningocoele|myelomeningocele| +E0041620|myelo-monocytic|myelomonocytic| +E0041621|myelomonocytic leucaemia|myelomonocytic leukemia| +E0041621|myelomonocytic leucemia|myelomonocytic leukemia| +E0041621|myelomonocytic leukaemia|myelomonocytic leukemia| +E0041632|myelo-proliferative|myeloproliferative| +E0041651|myo-cardial|myocardial| +E0041675|myo-electric|myoelectric| +E0041677|myo-epithelial|myoepithelial| +E0041706|myo-neural|myoneural| +E0041752|myo-tube|myotube| +E0041781|mythologic|mythological| +E0041787|myxoedema|myxedema| +E0041789|myxoedematous|myxedematous| +E0041824|nafronyl oxalate|nafronyloxalate| +E0041828|n'gana|nagana| +E0041832|nail patella syndrome|nail-patella syndrome| +E0041833|nail polish|nail-polish| +E0041834|nail varnish|nail-varnish| +E0041836|naivety|naivete| +E0041854|nanogramme|nanogram| +E0041856|nanometre|nanometer| +E0041864|naphtol|naphthol| +E0041865|naphtol acetate esterase|naphthol acetate esterase| +E0041901|narrow angle glaucoma|narrow-angle glaucoma| +E0041907|nasalisation|nasalization| +E0041908|nasalise|nasalize| +E0041930|naso-bronchial|nasobronchial| +E0041934|naso-gastric|nasogastric| +E0041935|naso-labial|nasolabial| +E0041937|naso-lachrymal|nasolacrimal| +E0041937|naso-lacrimal|nasolacrimal| +E0041937|nasolachrymal|nasolacrimal| +E0041939|naso-lachrymal duct|nasolacrimal duct| +E0041939|naso-lacrimal duct|nasolacrimal duct| +E0041939|nasolachrymal duct|nasolacrimal duct| +E0041971|nationalise|nationalize| +E0041980|natruretic|natriuretic| +E0041981|natruretic|natriuretic| +E0041990|naturalisation|naturalization| +E0041991|naturalise|naturalize| +E0042003|natureopathy|naturopathy| +E0042038|near-sighted|nearsighted| +E0042039|near-sightedness|nearsightedness| +E0042049|nebulisation|nebulization| +E0042050|nebulise|nebulize| +E0042087|necrotising|necrotizing| +E0042088|necrotising angiitis|necrotizing angiitis| +E0042090|necrotising fasciitis|necrotizing fasciitis| +E0042091|necrotising haemorrhagic encephalomyelitis|necrotizing hemorrhagic encephalomyelitis| +E0042093|necrotising papillitis|necrotizing papillitis| +E0042094|necrotising renal papillitis|necrotizing renal papillitis| +E0042096|necrotising ulcerative gingivitis|necrotizing ulcerative gingivitis| +E0042099|necrotising vasculitis|necrotizing vasculitis| +E0042147|neighbor|neighbour| +E0042148|neighbor|neighbour| +E0042149|neighborhood|neighbourhood| +E0042150|neighborliness|neighbourliness| +E0042151|neighborly|neighbourly| +E0042178|neocinetic|neokinetic| +E0042203|neovascularisation|neovascularization| +E0042206|neocolonialism|neo-colonialism| +E0042213|nephrectomise|nephrectomize| +E0042307|nesslerisation|nesslerization| +E0042308|nesslerise|nesslerize| +E0042316|net|nett| +E0042319|nettle rash|nettlerash| +E0042343|neuraxone|neuraxon| +E0042363|neurobehavioural|neurobehavioral| +E0042417|neurohumour|neurohumor| +E0042418|neurohumoural|neurohumoral| +E0042419|neurohypophysial|neurohypophyseal| +E0042456|neurone|neuron| +E0042461|neuronaevus|neuronevus| +E0042468|neuron specific enolase|neuron-specific enolase| +E0042489|neuropile|neuropil| +E0042552|neutralisation|neutralization| +E0042553|neutralise|neutralize| +E0042557|neutropaenia|neutropenia| +E0042558|neutropaenic|neutropenic| +E0042559|neutrophile|neutrophil| +E0042560|neutrophile|neutrophil| +E0042567|naevo-carcinoma|nevocarcinoma| +E0042567|naevocarcinoma|nevocarcinoma| +E0042567|nevo-carcinoma|nevocarcinoma| +E0042568|nevo-cellular|nevocellular| +E0042569|naevocytic|nevocytic| +E0042571|naevoid|nevoid| +E0042572|naevoid basal cell carcinoma syndrome|nevoid basal cell carcinoma syndrome| +E0042572|naevoid basal-cell carcinoma syndrome|nevoid basal cell carcinoma syndrome| +E0042572|nevoid basal-cell carcinoma syndrome|nevoid basal cell carcinoma syndrome| +E0042574|naevoxanthoendothelioma|nevoxanthoendothelioma| +E0042575|naevus|nevus| +E0042578|new born|newborn| +E0042578|new-born|newborn| +E0042579|new born|newborn| +E0042579|new-born|newborn| +E0042614|nicotinamide adenine dinucleotide|nicotinamide-adenine dinucleotide| +E0042615|nicotinamide adenine dinucleotide phosphate|nicotinamide-adenine dinucleotide phosphate| +E0042632|nifuroxim|nifuroxime| +E0042643|nightblindness|night blindness| +E0042647|night soil|night-soil| +E0042648|nighttime|night-time| +E0042653|nicethamide|nikethamide| +E0042705|nitroglycerin|nitroglycerine| +E0042765|nodular goitre|nodular goiter| +E0042813|non-bacterial thrombotic endocarditis|nonbacterial thrombotic endocarditis| +E0042815|non-barbiturate|nonbarbiturate| +E0042821|non-chromaffin paraganglioma|nonchromaffin paraganglioma| +E0042823|non clinical|nonclinical| +E0042823|non-clinical|nonclinical| +E0042825|non competitive|noncompetitive| +E0042825|non-competitive|noncompetitive| +E0042832|non-deciduate placenta|nondeciduate placenta| +E0042834|non diabetic|nondiabetic| +E0042834|non-diabetic|nondiabetic| +E0042836|nondialysed|nondialyzed| +E0042840|non-emergency|nonemergency| +E0042842|nonenzymic|nonenzymatic| +E0042844|non essential|nonessential| +E0042844|non-essential|nonessential| +E0042846|non-esterified fatty acid|nonesterified fatty acid| +E0042848|non experimental|nonexperimental| +E0042848|non-experimental|nonexperimental| +E0042849|non fatal|nonfatal| +E0042849|non-fatal|nonfatal| +E0042850|non-fluent aphasia|nonfluent aphasia| +E0042853|non-gonococcal urethritis|nongonococcal urethritis| +E0042856|non-haem|nonheme| +E0042856|non-heme|nonheme| +E0042856|nonhaem|nonheme| +E0042863|non infected|noninfected| +E0042863|non-infected|noninfected| +E0042867|non-invasive|noninvasive| +E0042868|non-invasively|noninvasively| +E0042869|non irradiated|nonirradiated| +E0042869|non-irradiated|nonirradiated| +E0042870|nonischaemic|nonischemic| +E0042873|non linear|nonlinear| +E0042873|non-linear|nonlinear| +E0042876|non myelinated|nonmyelinated| +E0042876|non-myelinated|nonmyelinated| +E0042877|non-neuronal|nonneuronal| +E0042883|non-opaque|nonopaque| +E0042886|non parallel|nonparallel| +E0042886|non-parallel|nonparallel| +E0042895|non pregnant|nonpregnant| +E0042895|non-pregnant|nonpregnant| +E0042896|non-professional|nonprofessional| +E0042911|non-seasonal allergic rhinitis|nonseasonal allergic rhinitis| +E0042921|non-specific|nonspecific| +E0042927|non-steroidal anti-inflammatory drug|nonsteroidal antiinflammatory drug| +E0042927|non-steroidal antiinflammatory drug|nonsteroidal antiinflammatory drug| +E0042927|nonsteroidal anti-inflammatory drug|nonsteroidal antiinflammatory drug| +E0042928|non structural|nonstructural| +E0042928|non-structural|nonstructural| +E0042929|non surgical|nonsurgical| +E0042929|non-surgical|nonsurgical| +E0042931|non-toxic|nontoxic| +E0042932|non-transcribed spacer|nontranscribed spacer| +E0042937|non viable|nonviable| +E0042937|non-viable|nonviable| +E0042941|nonvisualisation|nonvisualization| +E0042944|non small-cell lung cancer|non small cell lung cancer| +E0042944|non-small-cell lung cancer|non small cell lung cancer| +E0042945|non A, non B hepatitis|non-A, non-B hepatitis| +E0042945|non-A non-B hepatitis|non-A, non-B hepatitis| +E0042954|non absorbable|non-absorbable| +E0042954|nonabsorbable|non-absorbable| +E0042955|nonadherence|non-adherence| +E0042956|non adherent|nonadherent| +E0042956|non-adherent|nonadherent| +E0042957|nonadrenergic|non-adrenergic| +E0042958|nonaggression|non-aggression| +E0042959|nonaligned|non-aligned| +E0042960|nonalignment|non-alignment| +E0042961|noncellular|non-cellular| +E0042962|non compliance|noncompliance| +E0042962|non-compliance|noncompliance| +E0042963|noncompliant|non-compliant| +E0042964|nonfiction|non-fiction| +E0042965|nonglomerular|non-glomerular| +E0042966|noninterference|non-interference| +E0042967|nonintervention|non-intervention| +E0042968|nonlymphocytic|non-lymphocytic| +E0042969|nonmalignant|non-malignant| +E0042970|nonmotile|non-motile| +E0042971|nonneoplastic|non-neoplastic| +E0042973|nonobligatory|non-obligatory| +E0042974|nonobservance|non-observance| +E0042975|non obstructive|nonobstructive| +E0042975|non-obstructive|nonobstructive| +E0042976|nonoperatively|non-operatively| +E0042977|nonparametric|non-parametric| +E0042978|nonpayment|non-payment| +E0042979|nonpolar|non-polar| +E0042987|nonviolence|non-violence| +E0042988|nonviolent|non-violent| +E0042997|noradrenalin|noradrenaline| +E0043016|normalisation|normalization| +E0043017|normalise|normalize| +E0043031|normocalcaemic|normocalcemic| +E0043040|normoglycaemia|normoglycemia| +E0043041|normoglycaemic|normoglycemic| +E0043042|normokalaemic|normokalemic| +E0043057|normovolaemic|normovolemic| +E0043072|Nosema disease|nosema disease| +E0043085|nosey|nosy| +E0043251|nurse midwife|nurse-midwife| +E0043272|nutritional macrocytic anaemia|nutritional macrocytic anemia| +E0043314|oast-house urine disease|oasthouse urine disease| +E0043319|oat-cell carcinoma|oat cell carcinoma| +E0043319|oatcell carcinoma|oat cell carcinoma| +E0043320|oat cell|oat-cell| +E0043320|oatcell|oat-cell| +E0043401|obsessive compulsive personality|obsessive-compulsive personality| +E0043407|obstetrical|obstetric| +E0043410|obstetrician-gynaecologist|obstetrician-gynecologist| +E0043473|occipito-anterior|occipitoanterior| +E0043478|occipito-cervical|occipitocervical| +E0043480|occipito-frontal|occipitofrontal| +E0043483|occipito-parietal|occipitoparietal| +E0043484|occipito-posterior|occipitoposterior| +E0043485|occipito-temporal|occipitotemporal| +E0043487|occipito-temporal sulcus|occipitotemporal sulcus| +E0043521|ocher|ochre| +E0043522|ocher|ochre| +E0043526|ochrea|ocrea| +E0043542|octylglucopyranoside|octyl glucopyranoside| +E0043560|oculo-auriculo-vertebral dysplasia|oculoauriculovertebral dysplasia| +E0043560|oculo-auriculovertebral dysplasia|oculoauriculovertebral dysplasia| +E0043565|oculo-dento-digital dysplasia|oculodentodigital dysplasia| +E0043565|oculo-dentodigital dysplasia|oculodentodigital dysplasia| +E0043565|oculodento-digital dysplasia|oculodentodigital dysplasia| +E0043578|oculo-pupillary|oculopupillary| +E0043608|odour|odor| +E0043612|odorless|odourless| +E0043613|odorlessness|odourlessness| +E0043614|enocyte|oenocyte| +E0043615|enology|oenology| +E0043617|esophagostomiasis|oesophagostomiasis| +E0043620|estrual|oestrual| +E0043629|offence|offense| +E0043652|ofloxacin|ofloxacine| +E0043666|oil aspiration pneumonia|oil-aspiration pneumonia| +E0043668|oil painting|oil-painting| +E0043670|O.K.|okay| +E0043670|OK|okay| +E0043671|O.K.|okay| +E0043671|OK|okay| +E0043672|O.K.|okay| +E0043672|OK|okay| +E0043673|O.K.|okay| +E0043673|OK|okay| +E0043723|oligomenorrhoea|oligomenorrhea| +E0043748|olivo-ponto-cerebellar|olivopontocerebellar| +E0043748|olivo-pontocerebellar|olivopontocerebellar| +E0043748|olivoponto-cerebellar|olivopontocerebellar| +E0043749|olivo-ponto-cerebellar atrophy|olivopontocerebellar atrophy| +E0043749|olivo-pontocerebellar atrophy|olivopontocerebellar atrophy| +E0043749|olivoponto-cerebellar atrophy|olivopontocerebellar atrophy| +E0043781|omphalocoele|omphalocele| +E0043797|onco-fetal|oncofetal| +E0043797|onco-foetal|oncofetal| +E0043797|oncofoetal|oncofetal| +E0043816|oniric|oneiric| +E0043817|onirogenic|oneirogenic| +E0043860|onychoosteodysplasia|onycho-osteodysplasia| +E0043868|oophorectomise|oophorectomize| +E0043906|open angle glaucoma|open-angle glaucoma| +E0044016|opsonisation|opsonization| +E0044017|opsonise|opsonize| +E0044040|optic disc|optic disk| +E0044050|optimisation|optimization| +E0044051|optimise|optimize| +E0044056|opto-kinetic|optokinetic| +E0044090|orang-utan|orangutan| +E0044090|orangutang|orangutan| +E0044127|orchi-epididymitis|orchiepididymitis| +E0044162|organisation|organization| +E0044165|organise|organize| +E0044173|organo-mercurial|organomercurial| +E0044214|orrhodiagnosis|orodiagnosis| +E0044218|oro-nasal|oronasal| +E0044219|oro-pharyngeal|oropharyngeal| +E0044228|oromeningitis|orrhomeningitis| +E0044230|orris root|orrisroot| +E0044255|orthopaedic|orthopedic| +E0044256|orthopaedics|orthopedics| +E0044348|osteo-arthritis|osteoarthritis| +E0044353|osteo-articular|osteoarticular| +E0044360|osteo-chondral|osteochondral| +E0044395|osteone|osteon| +E0044398|osteopenia|osteopaenia| +E0044405|osteo-periosteal|osteoperiosteal| +E0044436|ostracise|ostracize| +E0044540|outmaneuver|outmanoeuvre| +E0044582|outwards|outward| +E0044591|outpatient|out-patient| +E0044610|ovariectomise|ovariectomize| +E0044637|over-capitalise|overcapitalize| +E0044637|over-capitalize|overcapitalize| +E0044637|overcapitalise|overcapitalize| +E0044640|over-charge|overcharge| +E0044641|over-charge|overcharge| +E0044645|over-crowd|overcrowd| +E0044655|over-estimate|overestimate| +E0044656|over-feed|overfeed| +E0044661|over-growth|overgrowth| +E0044663|over-hang|overhang| +E0044664|over-hang|overhang| +E0044687|over-pay|overpay| +E0044723|over weight|overweight| +E0044724|over weight|overweight| +E0044725|over weight|overweight| +E0044734|overburden|over-burden| +E0044735|overconfidence|over-confidence| +E0044736|overconfident|over-confident| +E0044737|overcook|over-cook| +E0044738|over denture|over-denture| +E0044738|overdenture|over-denture| +E0044739|overeat|over-eat| +E0044741|overemphasis|over-emphasis| +E0044742|over-emphasise|over-emphasize| +E0044742|overemphasise|over-emphasize| +E0044742|overemphasize|over-emphasize| +E0044745|overestimation|over-estimation| +E0044746|overexert|over-exert| +E0044747|overexertion|over-exertion| +E0044748|overexpose|over-expose| +E0044749|overexposure|over-exposure| +E0044750|overheat|over-heat| +E0044751|overindulge|over-indulge| +E0044752|overindulgence|over-indulgence| +E0044753|overindulgent|over-indulgent| +E0044754|overpayment|over-payment| +E0044757|overpraise|over-praise| +E0044761|oversimplify|over-simplify| +E0044762|overstrain|over-strain| +E0044763|overstrain|over-strain| +E0044764|overvalue|over-value| +E0044837|oxidation reduction|oxidation-reduction| +E0044843|oxidise|oxidize| +E0044845|oxidising|oxidizing| +E0044849|oxymetry|oximetry| +E0044866|oxytremorine|oxotremorine| +E0044876|oxycobalt hemoglobin|oxycobalthemoglobin| +E0044881|oxifedrine|oxyfedrine| +E0044881|oxiphedrin|oxyfedrine| +E0044881|oxyphedrin|oxyfedrine| +E0044888|oxygenise|oxygenize| +E0044903|oxyhaemoglobin|oxyhemoglobin| +E0044905|oxymethalone|oxymetholone| +E0044924|oxyquinoline sulphate|oxyquinoline sulfate| +E0044939|ozaena|ozena| +E0044943|ozonisation|ozonization| +E0044944|ozonise|ozonize| +E0045003|packed cell volume|packed-cell volume| +E0045003|packedcell volume|packed-cell volume| +E0045016|pederast|paederast| +E0045017|pederasty|paederasty| +E0045046|pairfed|pair-fed| +E0045048|pyjama|pajama| +E0045049|pyjamas|pajamas| +E0045077|palato-maxillary|palatomaxillary| +E0045081|palato-pharyngeal|palatopharyngeal| +E0045094|palaeocortex|paleocortex| +E0045099|palaeocinetic|paleokinetic| +E0045099|palaeokinetic|paleokinetic| +E0045099|paleocinetic|paleokinetic| +E0045101|palaeontologist|paleontologist| +E0045102|palaeontology|paleontology| +E0045103|palaeopathology|paleopathology| +E0045141|palmitoylcarnitine|palmitoyl carnitine| +E0045146|palmitoyl-immunoglobulin g|palmitoyl-immunoglobulin G| +E0045153|palm oil|palm-oil| +E0045176|pampas grass|pampas-grass| +E0045205|pancreatico-duodenal|pancreaticoduodenal| +E0045206|pancreatico-jejunostomy|pancreaticojejunostomy| +E0045260|panellist|panelist| +E0045314|pantie|panty| +E0045332|paperwork|paper-work| +E0045343|papilloedema|papilledema| +E0045352|papillomavirus|papilloma virus| +E0045360|papataci fever virus|pappataci fever virus| +E0045360|papatasi fever virus|pappataci fever virus| +E0045367|papulo-erythematous|papuloerythematous| +E0045369|papulo-pustular|papulopustular| +E0045431|paraoesophageal|paraesophageal| +E0045434|paraffine|paraffin| +E0045466|paralepsis|paraleipsis| +E0045466|paralipsis|paraleipsis| +E0045476|paralyze|paralyse| +E0045512|paramorphan|paramorfan| +E0045606|parasitaemia|parasitemia| +E0045618|parasitisation|parasitization| +E0045619|parasitise|parasitize| +E0045651|parathyrotropic|parathyrotrophic| +E0045670|para-vertebral|paravertebral| +E0045673|para aortic body|para-aortic body| +E0045673|paraaortic body|para-aortic body| +E0045717|paraesthesia|paresthesia| +E0045738|parieto-occipital sulcus|parietooccipital sulcus| +E0045742|parietooccipital|parieto-occipital| +E0045744|parietotemporal|parieto-temporal| +E0045821|partial hospitalisation|partial hospitalization| +E0045833|particularisation|particularization| +E0045834|particularise|particularize| +E0045862|parvo virus|parvovirus| +E0045887|passive aggressive personality|passive-aggressive personality| +E0045906|pasteurisation|pasteurization| +E0045907|pasteurise|pasteurize| +E0045960|pathogene|pathogen| +E0046012|patronise|patronize| +E0046044|payor|payer| +E0046054|peacock blue|peacock-blue| +E0046055|peacock blue|peacock-blue| +E0046070|pearl barley|pearl-barley| +E0046075|pea green|pea-green| +E0046076|pea green|pea-green| +E0046108|paedagogic|pedagogic| +E0046122|paediatric|pediatric| +E0046123|paediatrician|pediatrician| +E0046124|paediatrics|pediatrics| +E0046141|paedodontics|pedodontics| +E0046144|paedophilia|pedophilia| +E0046167|Pekinese|pekinese| +E0046167|Pekingese|pekinese| +E0046167|pekingese|pekinese| +E0046176|pellagra-preventive|pellagra preventive| +E0046189|pelvicalyceal|pelvicaliceal| +E0046220|penalisation|penalization| +E0046221|penalise|penalize| +E0046227|pendant|pendent| +E0046228|pendant|pendent| +E0046254|penicillin V potassium|penicillin v potassium| +E0046278|poenology|penology| +E0046301|pentamidin|pentamidine| +E0046338|peptic oesophagitis|peptic esophagitis| +E0046342|peptid|peptide| +E0046353|peptonise|peptonize| +E0046405|perfervour|perfervor| +E0046485|pericaecal|pericecal| +E0046539|perioesophageal|periesophageal| +E0046563|pericaryon|perikaryon| +E0046598|perimysitis|perimysiitis| +E0046620|perinaeum|perineum| +E0046634|periodic acid Schiff reaction|periodic acid-Schiff reaction| +E0046636|periodic oedema|periodic edema| +E0046689|periphakitis|periphacitis| +E0046698|peripheral blood lymphocyte T|peripheral blood lymphocyte t| +E0046777|peritonaeal|peritoneal| +E0046790|peritoneo-venous|peritoneovenous| +E0046792|peritoneo venous shunt|peritoneovenous shunt| +E0046792|peritoneo-venous shunt|peritoneovenous shunt| +E0046793|peritonaeum|peritoneum| +E0046834|periarticular|peri-articular| +E0046886|per oral|peroral| +E0046891|peroxidase-labelled|peroxidase-labeled| +E0046896|peroxidise|peroxidize| +E0046909|perfenazine|perphenazine| +E0046924|persistent foetal circulation|persistent fetal circulation| +E0046934|personalisation|personalization| +E0046935|personalise|personalize| +E0046984|percent|per cent| +E0046985|percent|per cent| +E0047031|petit-mal epilepsy|petit mal epilepsy| +E0047032|petit-mal status|petit mal status| +E0047051|petrousitis|petrositis| +E0047057|petroccipital|petro-occipital| +E0047089|phagocytise|phagocytize| +E0047094|phagocytosable|phagocytozable| +E0047098|phacitis|phakitis| +E0047101|phacomatosis|phakomatosis| +E0047114|phalloidin|phalloidine| +E0047140|pharmacopoeia|pharmacopeia| +E0047165|pharyngo-esophageal|pharyngoesophageal| +E0047165|pharyngo-oesophageal|pharyngoesophageal| +E0047165|pharyngooesophageal|pharyngoesophageal| +E0047168|pharyngo-laryngeal|pharyngolaryngeal| +E0047169|pharyngo-laryngitis|pharyngolaryngitis| +E0047170|pharyngo-maxillary|pharyngomaxillary| +E0047179|pharyngo-tonsillitis|pharyngotonsillitis| +E0047181|pharyngo-tympanic tube|pharyngotympanic tube| +E0047210|phenolsulfonephthalein|phenolsulfonphthalein| +E0047222|phenoxymethylpenicillin|phenoxymethyl penicillin| +E0047227|fentolamin|phentolamine| +E0047244|phenyl mercuric acetate|phenylmercuric acetate| +E0047256|phaeochromocytoma|pheochromocytoma| +E0047283|philosophise|philosophize| +E0047287|phi phenomenon|phi-phenomenon| +E0047303|phlebotomise|phlebotomize| +E0047328|phlorhizinise|phlorhizinize| +E0047403|phosphatidyl ethanolamine|phosphatidylethanolamine| +E0047407|phosphatidyl inositol|phosphatidylinositol| +E0047409|phosphatidyl serine|phosphatidylserine| +E0047411|phosphatidylcholine|phosphatidyl choline| +E0047412|phosphatidylglycerol|phosphatidyl glycerol| +E0047431|phospho-enolpyruvate|phosphoenolpyruvate| +E0047432|phospho enol pyruvate carboxykinase|phosphoenolpyruvate carboxykinase| +E0047440|phosphoethanolaminetransferase|phosphoethanolamine transferase| +E0047457|phospholipide|phospholipid| +E0047484|phosphoribosylpyrophosphate|phosphoribosyl pyrophosphate| +E0047598|photo-onycholysis|photoonycholysis| +E0047622|photosensitisation|photosensitization| +E0047623|photosensitise|photosensitize| +E0047643|photoradiation therapy|photo radiation therapy| +E0047679|phthalylsulfathiazole|phthalylsulphathiazole| +E0047682|phthiraptera|phthiroptera| +E0047683|tisic|phthisic| +E0047684|tisical|phthisical| +E0047793|phytohemagglutinin|phytohaemagglutinin| +E0047816|piarachnitis|pia-arachnitis| +E0047821|picibanyl|picibanil| +E0047862|piecework|piece-work| +E0047871|piecrust|pie-crust| +E0047893|pigmented naevus|pigmented nevus| +E0047900|pig-tail|pigtail| +E0047902|pigheaded|pig-headed| +E0047903|pigheadedness|pig-headedness| +E0047904|pig iron|pig-iron| +E0047909|pilaff|pilaf| +E0047909|pilau|pilaf| +E0047910|pilary|pilar| +E0047935|pilo-erection|piloerection| +E0047942|pilo-sebaceous|pilosebaceous| +E0047943|pilo-sebaceous apparatus|pilosebaceous apparatus| +E0047944|pilose naevus|pilose nevus| +E0047981|pinguicula|pinguecula| +E0047982|ping pong|ping-pong| +E0047982|pingpong|ping-pong| +E0048004|pin money|pin-money| +E0048005|pinpoint|pin-point| +E0048006|pinpoint|pin-point| +E0048014|pipe clay|pipeclay| +E0048026|piperoxane|piperoxan| +E0048029|pipestem cirrhosis|pipe stem cirrhosis| +E0048041|pirazetam|piracetam| +E0048041|pyracetam|piracetam| +E0048047|pirenzepin|pirenzepine| +E0048047|pyrenzepine|pirenzepine| +E0048048|piribendyl|piribedil| +E0048054|pyritinol|piritinol| +E0048076|pitchblende|pitch-blende| +E0048140|plagiarise|plagiarize| +E0048190|placque|plaque| +E0048197|plasmocytoma|plasmacytoma| +E0048212|plasma-cell myeloma|plasma cell myeloma| +E0048236|plasmolysability|plasmolyzability| +E0048237|plasmolysable|plasmolyzable| +E0048238|plasmolyse|plasmolyze| +E0048267|platelet-activating factor|platelet activating factor| +E0048285|plate glass|plate-glass| +E0048348|pleiomorphic|pleomorphic| +E0048376|pleuro-cutaneous|pleurocutaneous| +E0048384|pleuro-pericardial|pleuropericardial| +E0048386|pleuro-peritoneal|pleuroperitoneal| +E0048388|pleuro-peritoneal sinus|pleuroperitoneal sinus| +E0048390|pleuro-pulmonary|pleuropulmonary| +E0048420|plunk|plonk| +E0048421|plunk|plonk| +E0048422|plunk|plonk| +E0048429|plough|plow| +E0048430|plough|plow| +E0048478|pmole|pmol| +E0048505|pneumo-encephalography|pneumoencephalography| +E0048509|pneumo-haemothorax|pneumohemothorax| +E0048509|pneumo-hemothorax|pneumohemothorax| +E0048509|pneumohaemothorax|pneumohemothorax| +E0048527|pneumo-peritoneum|pneumoperitoneum| +E0048545|pocketknife|pocket-knife| +E0048546|pocket money|pocket-money| +E0048587|poison-ivy|poison ivy| +E0048590|poison sumach|poison sumac| +E0048592|poison gas|poison-gas| +E0048593|poision oak|poison-oak| +E0048604|polarisation|polarization| +E0048605|polarise|polarize| +E0048608|polar anaemia|polar anemia| +E0048614|pole-axe|pole-ax| +E0048614|poleaxe|pole-ax| +E0048614|poleax|pole-ax| +E0048615|pole-axe|pole-ax| +E0048615|poleaxe|pole-ax| +E0048615|poleax|pole-ax| +E0048636|polio vaccine|poliovaccine| +E0048647|politicisation|politicization| +E0048648|politicise|politicize| +E0048660|pollinosis|pollenosis| +E0048663|pollicisation|pollicization| +E0048697|poly-articular|polyarticular| +E0048725|polycythaemia|polycythemia| +E0048727|polycythaemia vera|polycythemia vera| +E0048737|polyethyleneglycol|polyethylene glycol| +E0048770|polymerisation|polymerization| +E0048771|polymerise|polymerize| +E0048779|polymorphonuclear leucocyte|polymorphonuclear leukocyte| +E0048805|polyomavirus|polyoma virus| +E0048813|polypeptid|polypeptide| +E0048853|polysulphone|polysulfone| +E0048858|politef|polytef| +E0048883|polyvinyl pyrrolidone|polyvinylpyrrolidone| +E0048953|popularise|popularize| +E0049015|portahepatis|porta hepatis| +E0049023|portasystemic|portosystemic| +E0049051|positron tomography|positron emission tomography| +E0049051|positron-emission tomography|positron emission tomography| +E0049066|post-acidotic|postacidotic| +E0049073|postanaesthetic|postanesthetic| +E0049082|post-canine|postcanine| +E0049113|post-date|postdate| +E0049175|postero-anterior|posteroanterior| +E0049178|postero-lateral|posterolateral| +E0049180|postero-medial|posteromedial| +E0049183|postero-superior|posterosuperior| +E0049188|post-exposure|postexposure| +E0049189|post-exposure|postexposure| +E0049196|post-ganglionic|postganglionic| +E0049206|posthaemorrhagic|posthemorrhagic| +E0049212|post herpetic neuralgia|postherpetic neuralgia| +E0049212|post-herpetic neuralgia|postherpetic neuralgia| +E0049218|post-hypoglycaemic|posthypoglycemic| +E0049218|post-hypoglycemic|posthypoglycemic| +E0049218|posthypoglycaemic|posthypoglycemic| +E0049226|post-infectious encephalomyelitis|postinfectious encephalomyelitis| +E0049246|post-meiotic|postmeiotic| +E0049246|post-miotic|postmeiotic| +E0049246|postmiotic|postmeiotic| +E0049247|post-menopausal|postmenopausal| +E0049252|post-mitotic|postmitotic| +E0049256|post-nasal drip|postnasal drip| +E0049260|post-necrotic cirrhosis|postnecrotic cirrhosis| +E0049265|post operative|postoperative| +E0049265|post-operative|postoperative| +E0049266|post operatively|postoperatively| +E0049266|post-operatively|postoperatively| +E0049279|post partum|postpartum| +E0049279|post-partum|postpartum| +E0049280|post partum|postpartum| +E0049280|post-partum|postpartum| +E0049288|post-phlebitic syndrome|postphlebitic syndrome| +E0049295|post-prandial|postprandial| +E0049298|post-pubertal|postpubertal| +E0049325|post-translationally|posttranslationally| +E0049337|post-uterine|postuterine| +E0049352|post-mortem|post mortem| +E0049352|postmortem|post mortem| +E0049353|post-mortem|post mortem| +E0049353|postmortem|post mortem| +E0049354|post-mortem|post mortem| +E0049354|postmortem|post mortem| +E0049359|post kala azar dermal leishmaniasis|post-kala-azar dermal leishmaniasis| +E0049359|post kala-azar dermal leishmaniasis|post-kala-azar dermal leishmaniasis| +E0049359|post-kala azar dermal leishmaniasis|post-kala-azar dermal leishmaniasis| +E0049367|post term infant|post-term infant| +E0049374|posttraumatic spondylitis|post-traumatic spondylitis| +E0049375|posttreatment|post-treatment| +E0049376|posttreatment|post-treatment| +E0049378|post vaccinal encephalitis|post-vaccinal encephalitis| +E0049378|postvaccinal encephalitis|post-vaccinal encephalitis| +E0049399|potheen|poteen| +E0049451|pox virus|poxvirus| +E0049459|non practice|nonpractice| +E0049459|non-practice|nonpractice| +E0049460|practise|practice| +E0049463|prenomen|praenomen| +E0049494|pre-adolescent|preadolescent| +E0049495|pre-adolescent|preadolescent| +E0049499|preanaesthetic|preanesthetic| +E0049500|preanaesthetic|preanesthetic| +E0049516|pre-capillary|precapillary| +E0049517|pre-capillary|precapillary| +E0049586|pre-delivery|predelivery| +E0049621|pre-eclamptic|preeclamptic| +E0049622|pre-eclamptic|preeclamptic| +E0049624|pre-emption|preemption| +E0049630|pre-existing|preexisting| +E0049631|pre-exposure|preexposure| +E0049655|pre-ganglionic|preganglionic| +E0049696|preleukaemic|preleukemic| +E0049701|pre-lingual|prelingual| +E0049729|pre-menopausal|premenopausal| +E0049735|premiere|premier| +E0049736|premiere|premier| +E0049737|premise|premiss| +E0049738|premise|premiss| +E0049742|pre-morbid|premorbid| +E0049753|pre-operative|preoperative| +E0049754|pre-operatively|preoperatively| +E0049834|pre-senile dementia|presenile dementia| +E0049853|pre-set|preset| +E0049877|pressurised|pressurized| +E0049898|pretense|pretence| +E0049935|preventible|preventable| +E0049957|predigest|pre-digest| +E0049958|preeclampsia|pre-eclampsia| +E0049959|preeminence|pre-eminence| +E0049960|preeminent|pre-eminent| +E0049961|preempt|pre-empt| +E0049962|preexist|pre-exist| +E0049996|primary anaemia|primary anemia| +E0049999|primary-care|primary care| +E0050023|primaeval|primeval| +E0050055|prioritise|prioritize| +E0050058|prize|prise| +E0050105|prokaryotic|procaryotic| +E0050215|proflavin|proflavine| +E0050223|profundaplasty|profundoplasty| +E0050249|programme|program| +E0050250|programme|program| +E0050349|promyelocytic leukaemia|promyelocytic leukemia| +E0050356|pronetalol|pronethalol| +E0050372|proof read|proof-read| +E0050372|proofread|proof-read| +E0050373|pro opio melanocortin|proopiomelanocortin| +E0050373|pro opiomelanocortin|proopiomelanocortin| +E0050373|pro-opio-melanocortin|proopiomelanocortin| +E0050373|pro-opiomelanocortin|proopiomelanocortin| +E0050378|propagandise|propagandize| +E0050390|propellent|propellant| +E0050391|propellent|propellant| +E0050452|propylhexadrine|propylhexedrine| +E0050453|propiliodon|propyliodone| +E0050462|proscillaridine|proscillaridin| +E0050469|proselytisation|proselytization| +E0050470|proselytise|proselytize| +E0050561|protein kinase c|protein kinase C| +E0050586|proteus vulgaris|Proteus vulgaris| +E0050623|protozoon|protozoan| +E0050624|protozoon|protozoan| +E0050759|pseudo-gout|pseudogout| +E0050788|pseudomeningocoele|pseudomeningocele| +E0050802|pseudonormalisation|pseudonormalization| +E0050803|pseudonormalise|pseudonormalize| +E0050804|pseudo-obstructive|pseudoobstructive| +E0050807|pseudopapilloedema|pseudopapilledema| +E0050829|pseudotumour|pseudotumor| +E0050830|pseudotumour cerebri|pseudotumor cerebri| +E0050833|Pseudoxanthoma elasticum|pseudoxanthoma elasticum| +E0050834|pseudo obstruction|pseudo-obstruction| +E0050834|pseudoobstruction|pseudo-obstruction| +E0050835|pseudoproteinuria|pseudo-proteinuria| +E0050862|psychodelic|psychedelic| +E0050929|psycho-sensory aphasia|psychosensory aphasia| +E0050954|psycho-analyze|psycho-analyse| +E0050954|psychoanalyse|psycho-analyse| +E0050954|psychoanalyze|psycho-analyse| +E0050955|psychoanalysis|psycho-analysis| +E0050957|psychosocial|psycho-social| +E0051002|publicise|publicize| +E0051007|public speaking|public-speaking| +E0051030|podgy|pudgy| +E0051089|pulmonary oedema|pulmonary edema| +E0051159|pulverisation|pulverization| +E0051160|pulverise|pulverize| +E0051175|punch-drunk|punch drunk| +E0051175|punchdrunk|punch drunk| +E0051209|pupilary|pupillary| +E0051223|pure red cell anaemia|pure red cell anemia| +E0051223|pure red-cell anaemia|pure red cell anemia| +E0051223|pure red-cell anemia|pure red cell anemia| +E0051224|pure-tone|pure tone| +E0051224|puretone|pure tone| +E0051350|pyaemia|pyemia| +E0051351|pyaemic|pyemic| +E0051391|pyohaemothorax|pyohemothorax| +E0051392|pyo-hydronephrosis|pyohydronephrosis| +E0051412|pyorrhoea|pyorrhea| +E0051455|piriformis|pyriformis| +E0051471|pyrolyzate|pyrolysate| +E0051658|quinidine sulphate|quinidine sulfate| +E0051661|quinine bisulphate|quinine bisulfate| +E0051713|racoon|raccoon| +E0051720|racemisation|racemization| +E0051721|recemise|racemize| +E0051747|racket|racquet| +E0051805|radio-allergosorbent|radioallergosorbent| +E0051806|radio-allergosorbent test|radioallergosorbent test| +E0051809|radiobiologic|radiobiological| +E0051837|radio-iodinated|radioiodinated| +E0051838|radio-iodination|radioiodination| +E0051871|radiotherapist|radio-therapist| +E0051872|radiotherapy|radio-therapy| +E0051883|rafoxanid|rafoxanide| +E0051952|rancor|rancour| +E0051953|rancorous|rancourous| +E0051956|randomisation|randomization| +E0052033|rationalisation|rationalization| +E0052034|rationalise|rationalize| +E0052037|ratan|rattan| +E0052048|rat bite fever|rat-bite fever| +E0052048|ratbite fever|rat-bite fever| +E0052082|reactivness|reactiveness| +E0052098|read-through|readthrough| +E0052110|realisation|realization| +E0052111|realise|realize| +E0052114|real-time|real time| +E0052115|re-animate|reanimate| +E0052216|recognisable|recognizable| +E0052217|recognise|recognize| +E0052240|reconnoiter|reconnoitre| +E0052303|recto-vaginal|rectovaginal| +E0052304|recto-vaginal fistula|rectovaginal fistula| +E0052306|recto-vesical|rectovesical| +E0052324|recurrent aphthous stomatitis|recurrent apthous stomatitis| +E0052381|red water disease|redwater disease| +E0052381|red-water disease|redwater disease| +E0052400|re-evaluate|reevaluate| +E0052401|re-evaluation|reevaluation| +E0052409|referrible|referable| +E0052425|reflexion|reflection| +E0052464|refractory anaemia|refractory anemia| +E0052542|regularise|regularize| +E0052676|remilitarise|remilitarize| +E0052721|renal oedema|renal edema| +E0052744|renegue|renege| +E0052751|rennin|renin| +E0052766|reno-vascular|renovascular| +E0052767|reno-vascular hypertension|renovascular hypertension| +E0052779|reorganisation|reorganization| +E0052780|reorganise|reorganize| +E0052988|resolubilisation|resolubilization| +E0052992|resolvible|resolvable| +E0053001|resorption|resorbtion| +E0053110|resynthesise|resynthesize| +E0053150|reticulo-endothelial|reticuloendothelial| +E0053151|reticulo-endothelial system|reticuloendothelial system| +E0053156|reticulo-histiocytosis|reticulohistiocytosis| +E0053203|retractible|retractable| +E0053213|retreat|re-treat| +E0053229|retro-cardiac|retrocardiac| +E0053230|retrocaecal|retrocecal| +E0053231|retro-caecal fossa|retrocecal fossa| +E0053231|retro-cecal fossa|retrocecal fossa| +E0053231|retrocaecal fossa|retrocecal fossa| +E0053232|retro-caecal hernia|retrocecal hernia| +E0053232|retro-cecal hernia|retrocecal hernia| +E0053232|retrocaecal hernia|retrocecal hernia| +E0053242|retro-esophageal|retroesophageal| +E0053242|retro-oesophageal|retroesophageal| +E0053242|retrooesophageal|retroesophageal| +E0053247|retro-grade|retrograde| +E0053313|revascularisation|revascularization| +E0053356|revitalisation|revitalization| +E0053357|revitalise|revitalize| +E0053370|revolutionise|revolutionize| +E0053385|readdress|re-address| +E0053386|reafforest|re-afforest| +E0053387|reafforestation|re-afforestation| +E0053388|recount|re-count| +E0053389|recount|re-count| +E0053391|reecho|re-echo| +E0053394|reexamination|re-examination| +E0053395|reexamine|re-examine| +E0053407|rhabdo-myosarcoma|rhabdomyosarcoma| +E0053409|rhabdo virus|rhabdovirus| +E0053410|rachis|rhachis| +E0053415|rhapsodise|rhapsodize| +E0053522|rime|rhyme| +E0053523|rime|rhyme| +E0053566|rickettsial pox|rickettsialpox| +E0053623|right angle|right-angle| +E0053625|right handed|right-handed| +E0053625|righthanded|right-handed| +E0053626|right handedness|right-handedness| +E0053626|righthandedness|right-handedness| +E0053630|rigour|rigor| +E0053698|road sense|road-sense| +E0053728|rock 'n' roll|rock-'n-roll| +E0053728|rock and roll|rock-'n-roll| +E0053728|rock'n roll|rock-'n-roll| +E0053728|rock-'n'-roll|rock-'n-roll| +E0053728|rock-and-roll|rock-'n-roll| +E0053729|rock climbing|rock-climbing| +E0053731|rock salt|rock-salt| +E0053739|rontgen|roentgen| +E0053768|romanticise|romanticize| +E0053809|rose water|rose-water| +E0053809|rosewater|rose-water| +E0053852|roughcast|rough-cast| +E0053853|roughcast|rough-cast| +E0053855|roughhouse|rough-house| +E0053856|roughhouse|rough-house| +E0053869|round-worm|roundworm| +E0053872|round cell|round-cell| +E0053900|rubberise|rubberize| +E0053902|rubberneck|rubber-neck| +E0053903|rubberneck|rubber-neck| +E0053973|rumor|rumour| +E0053985|runoff|run-off| +E0054018|rye bread|rye-bread| +E0054032|saber|sabre| +E0054033|saber|sabre| +E0054068|sacralisation|sacralization| +E0054086|sacro-coccygeal|sacrococcygeal| +E0054091|sacro-iliac|sacroiliac| +E0054094|sacroileitis|sacroiliitis| +E0054095|sacro-lumbar|sacrolumbar| +E0054125|safekeeping|safe-keeping| +E0054157|salad dressing|salad-dressing| +E0054158|salad oil|salad-oil| +E0054226|salpingooophorectomy|salpingo-oophorectomy| +E0054227|salpingo oophoritis|salpingo-oophoritis| +E0054227|salpingooophoritis|salpingo-oophoritis| +E0054241|saltpetre|saltpeter| +E0054246|salt losing nephritis|salt-losing nephritis| +E0054247|salt water|salt-water| +E0054247|saltwater|salt-water| +E0054303|sanguinous|sanguineous| +E0054311|sangfroid|sang froid| +E0054319|sanitisation|sanitization| +E0054320|sanitise|sanitize| +E0054429|savannah|savanna| +E0054434|savoury|savory| +E0054435|savor|savour| +E0054436|savor|savour| +E0054437|savory|savoury| +E0054473|scollop|scallop| +E0054474|scollop|scallop| +E0054535|scar cicatrise|scar cicatrize| +E0054537|skatologic|scatologic| +E0054565|Schistosoma mansonii|Schistosoma mansoni| +E0054574|schizo affective|schizoaffective| +E0054574|schizo-affective|schizoaffective| +E0054575|schizo-affective psychosis|schizoaffective psychosis| +E0054642|scleroedema|scleredema| +E0054643|scleroedema adultorum|scleredema adultorum| +E0054644|scleroedema adiposum|sclerema adiposum| +E0054651|sclero-conjunctival|scleroconjunctival| +E0054653|sclero-corneal|sclerocorneal| +E0054654|sclerodermia|scleroderma| +E0054665|scleromyxoedema|scleromyxedema| +E0054688|scleratitis|sclerotitis| +E0054711|scopolaminebutylbromide|scopolamine hydrobromide| +E0054809|scrutinise|scrutinize| +E0054851|sea food|seafood| +E0054851|sea-food|seafood| +E0054876|seafish|sea-fish| +E0054877|sea level|sea-level| +E0054878|sea power|sea-power| +E0054879|sea sick|sea-sick| +E0054879|seasick|sea-sick| +E0054880|sea sickness|sea-sickness| +E0054880|seasickness|sea-sickness| +E0054881|sea water|sea-water| +E0054881|seawater|sea-water| +E0054889|seborrhoea|seborrhea| +E0054891|seborrhoeic|seborrheic| +E0054927|secondary immunisation|secondary immunization| +E0054941|secretagog|secretagogue| +E0054976|secularise|secularize| +E0055086|self fertilisation|self-fertilization| +E0055086|self fertilization|self-fertilization| +E0055086|self-fertilisation|self-fertilization| +E0055142|semi-erect|semierect| +E0055161|semeiotic|semiotic| +E0055167|semi-quantitative|semiquantitative| +E0055228|sensitisation|sensitization| +E0055229|sensitise|sensitize| +E0055231|sensitiser|sensitizer| +E0055263|sentimentalise|sentimentalize| +E0055286|septicaemia|septicemia| +E0055287|septicaemic|septicemic| +E0055327|sear|sere| +E0055340|serialisation|serialization| +E0055341|serialise|serialize| +E0055380|seroneutralisation|seroneutralization| +E0055434|serum glutamic oxaloacetic transaminase|serum glutamic-oxaloacetic transaminase| +E0055485|sewer gas|sewer-gas| +E0055513|sex linked|sex-linked| +E0055564|sham-feeding|sham feeding| +E0055606|sheet lightning|sheet-lightning| +E0055615|shell shock|shell-shock| +E0055615|shellshock|shell-shock| +E0055672|shock-lung|shock lung| +E0055688|shoplift|shop-lift| +E0055713|short term|short-term| +E0055714|short term memory|short-term memory| +E0055720|shot put|shot-put| +E0055741|show business|show-business| +E0055787|siagantritis|siagonantritis| +E0055789|sialogogic|sialagogic| +E0055802|sialorrhoea|sialorrhea| +E0055825|sickle cell anaemia|sickle cell anemia| +E0055825|sickle-cell anaemia|sickle cell anemia| +E0055825|sickle-cell anemia|sickle cell anemia| +E0055826|sickle-cell trait|sickle cell trait| +E0055827|sickle cell haemoglobin C disease|sickle cell-hemoglobin C disease| +E0055827|sickle cell hemoglobin C disease|sickle cell-hemoglobin C disease| +E0055827|sickle cell-haemoglobin C disease|sickle cell-hemoglobin C disease| +E0055827|sickle-cell haemoglobin C disease|sickle cell-hemoglobin C disease| +E0055827|sickle-cell hemoglobin C disease|sickle cell-hemoglobin C disease| +E0055829|sickle cell thalassaemia disease|sickle cell-thalassemia disease| +E0055829|sickle cell thalassemia disease|sickle cell-thalassemia disease| +E0055829|sickle cell-thalassaemia disease|sickle cell-thalassemia disease| +E0055830|sickle cell disease|sickle-cell disease| +E0055835|sick leave|sick-leave| +E0055836|sick pay|sick-pay| +E0055841|sideroblastic anaemia|sideroblastic anemia| +E0055858|side effect|side-effect| +E0055860|side stroke|side-stroke| +E0055861|sidetrack|side-track| +E0055862|sidetrack|side-track| +E0055876|sightsee|sight-see| +E0055890|signalise|signalize| +E0055894|signet-ring|signet ring| +E0055896|signet ring cell carcinoma|signet-ring cell carcinoma| +E0055917|silicious|siliceous| +E0055934|silo filler's disease|silo-filler's disease| +E0055934|silo fillers disease|silo-filler's disease| +E0055934|silo fillers' disease|silo-filler's disease| +E0055934|silo-fillers disease|silo-filler's disease| +E0055934|silo-fillers' disease|silo-filler's disease| +E0055971|simple goitre|simple goiter| +E0055999|syncalide|sincalide| +E0056007|synciput|sinciput| +E0056010|sinewave|sine wave| +E0056018|singers node|singer's node| +E0056018|singers' node|singer's node| +E0056025|single-photon absorbiometry|single photon absorptiometry| +E0056037|singularise|singularize| +E0056057|sino-atrial node|sinoatrial node| +E0056084|syphon|siphon| +E0056085|syphon|siphon| +E0056093|sisomycin|sisomicin| +E0056093|sissomicin|sisomicin| +E0056120|sizeable|sizable| +E0056159|skilful|skillful| +E0056160|skilfully|skillfully| +E0056163|skimmed milk|skimmed-milk| +E0056203|skyrocket|sky-rocket| +E0056239|slave trade|slave-trade| +E0056249|sleeping sickness|sleeping-sickness| +E0056254|sleep apnoea|sleep apnea| +E0056255|sleep-walking|sleep walking| +E0056255|sleepwalking|sleep walking| +E0056263|slenderise|slenderize| +E0056359|small pox|smallpox| +E0056362|small-cell carcinoma|small cell carcinoma| +E0056367|small bowel|small-bowel| +E0056474|snow blind|snowblind| +E0056475|snow blindness|snowblindness| +E0056479|snowflake|snow-flake| +E0056498|soap opera|soap-opera| +E0056512|socialisation|socialization| +E0056513|socialise|socialize| +E0056528|social work|social-work| +E0056531|socio-biological|sociobiological| +E0056532|socio-cultural|sociocultural| +E0056537|sociologic|sociological| +E0056544|sociodemographic|socio-demographic| +E0056545|socioeconomic|socio-economic| +E0056546|sociopolitical|socio-political| +E0056552|soda water|soda-water| +E0056562|sodium dodecyl sulphate|sodium dodecyl sulfate| +E0056562|sodium dodecylsulfate|sodium dodecyl sulfate| +E0056562|sodium dodecylsulphate|sodium dodecyl sulfate| +E0056636|solemnise|solemnize| +E0056660|soliloquise|soliloquize| +E0056675|solubilisation|solubilization| +E0056676|solubilise|solubilize| +E0056678|soluble gun cotton|soluble gun-cotton| +E0056678|soluble guncotton|soluble gun-cotton| +E0056692|somataesthetic|somatesthetic| +E0056696|somatisation|somatization| +E0056697|somatise|somatize| +E0056720|sompatotrope|somatotroph| +E0056723|somatotrophin|somatotropin| +E0056726|somber|sombre| +E0056727|somberness|sombreness| +E0056731|some day|someday| +E0056743|somnanbulism|somnambulism| +E0056793|sorethroat|sore throat| +E0056835|south-western|southwestern| +E0056837|southeast|south-east| +E0056838|southeast|south-east| +E0056848|soya bean|soya-bean| +E0056863|spadework|spade-work| +E0056934|specialization|specialisation| +E0056935|specialize|specialise| +E0056998|speleologist|spelaeologist| +E0056999|speleology|spelaeology| +E0057016|spermatocoele|spermatocele| +E0057091|sphenooccipital|spheno-occipital| +E0057092|sphenooccipital synchondrosis|spheno-occipital synchondrosis| +E0057094|spheric|spherical| +E0057162|spinal fluid|spinal-fluid| +E0057173|spindle-cell carcinoma|spindle cell carcinoma| +E0057225|spiritualise|spiritualize| +E0057231|spirochetal|spirochaetal| +E0057233|spirochete|spirochaete| +E0057239|spirochaetosis|spirochetosis| +E0057252|spurt|spirt| +E0057253|spurt|spirt| +E0057275|splay-footed|splayfooted| +E0057276|splayfoot|splay-foot| +E0057282|splendor|splendour| +E0057283|splenectomise|splenectomize| +E0057312|spleno-pancreatic|splenopancreatic| +E0057317|spleno-renal|splenorenal| +E0057351|spondylo-epiphyseal dysplasia|spondyloepiphyseal dysplasia| +E0057362|spongiitis|spongeitis| +E0057364|sponge cake|sponge-cake| +E0057385|spontaneous labour|spontaneous labor| +E0057478|spurry|spurrey| +E0057574|staff-member|staffmember| +E0057621|standardisation|standardization| +E0057622|standardise|standardize| +E0057643|staphyloedema|staphyledema| +E0057736|stanch|staunch| +E0057737|stanch|staunch| +E0057764|steamroller|steam-roller| +E0057765|steamroller|steam-roller| +E0057777|steatorrhoea|steatorrhea| +E0057863|sterilization|sterilisation| +E0057864|sterilize|sterilise| +E0057882|sterno-cleido-mastoid|sternocleidomastoid| +E0057884|sterno-costo-clavicular hyperostosis|sternocostoclavicular hyperostosis| +E0057922|sticking plaster|sticking-plaster| +E0057936|stigmatise|stigmatize| +E0057937|stilboestrol|stilbestrol| +E0057941|still birth|stillbirth| +E0057945|still life|still-life| +E0057986|stock in trade|stock-in-trade| +E0057987|stockpile|stock-pile| +E0057988|stockpile|stock-pile| +E0057989|stocktaking|stock-taking| +E0057990|stogy|stogie| +E0058003|stomach ache|stomachache| +E0058003|stomach-ache|stomachache| +E0058030|stomodaeum|stomodeum| +E0058040|stone fruit|stone-fruit| +E0058082|strain gauge|strain-gauge| +E0058137|streptococcaemia|streptococcemia| +E0058197|strip tease|strip-tease| +E0058214|stronger rose water|stronger rose-water| +E0058214|stronger rosewater|stronger rose-water| +E0058312|stylise|stylize| +E0058357|subarachnoid haemorrhage|subarachnoid hemorrhage| +E0058372|sub-capital|subcapital| +E0058453|subdural haematoma|subdural hematoma| +E0058528|subleucaemic leucaemia|subleukemic leukemia| +E0058528|subleucemic leucemia|subleukemic leukemia| +E0058528|subleukaemic leukaemia|subleukemic leukemia| +E0058673|subsidise|subsidize| +E0058761|subclass|sub-class| +E0058762|subclassification|sub-classification| +E0058763|subclassify|sub-classify| +E0058855|sugar-beet|sugar beet| +E0058857|sugar cane|sugar-cane| +E0058857|sugarcane|sugar-cane| +E0058880|sulphadiazine|sulfadiazine| +E0058886|Sulphalene|sulfalene| +E0058891|sulphamethoxazole|sulfamethoxazole| +E0058898|sulphasalazine|sulfasalazine| +E0058899|sulphatase|sulfatase| +E0058903|sulfhaemoglobin|sulfhemoglobin| +E0058903|sulphaemoglobin|sulfhemoglobin| +E0058903|sulphemoglobin|sulfhemoglobin| +E0058905|sulphydryl|sulfhydryl| +E0058906|sulphydryl-specific|sulfhydryl-specific| +E0058907|Sulphinpyrazone|sulfinpyrazone| +E0058911|sulphobromophthalein|sulfobromophthalein| +E0058913|sulphonate|sulfonate| +E0058914|sulphonate|sulfonate| +E0058916|sulphonic|sulfonic| +E0058918|sulphur|sulfur| +E0058919|sulphur|sulfur| +E0058920|sulphurate|sulfurate| +E0058921|sulphuret|sulfuret| +E0058925|sulphurise|sulfurize| +E0058925|sulphurize|sulfurize| +E0058929|sulphur mustard|sulfur mustard| +E0058943|sulfa|sulpha| +E0058944|sulfate|sulphate| +E0058945|sulfate|sulphate| +E0058946|sulfate-polyacrylamide|sulphate-polyacrylamide| +E0058947|sulfide|sulphide| +E0058957|sumac|sumach| +E0058959|summarise|summarize| +E0058988|sun stroke|sunstroke| +E0058991|sun worship|sun-worship| +E0059103|super oxide dismutase|superoxide dismutase| +E0059247|supra-scapular|suprascapular| +E0059312|surgeon's knot|surgeons' knot| +E0059380|swob|swab| +E0059381|swob|swab| +E0059399|swop|swap| +E0059400|swop|swap| +E0059405|swathe|swath| +E0059496|symbolise|symbolize| +E0059500|sympathectomise|sympathectomize| +E0059520|sympathise|sympathize| +E0059521|sympathising eye|sympathizing eye| +E0059533|symphysial|symphyseal| +E0059568|synchronisation|synchronization| +E0059569|synchronise|synchronize| +E0059602|synaechia|synechia| +E0059608|synergise|synergize| +E0059612|syngenic|syngeneic| +E0059616|synezesis|synizesis| +E0059617|syncaryon|synkaryon| +E0059657|synthesise|synthesize| +E0059700|syringocoele|syringocele| +E0059707|sirup|syrup| +E0059716|systematisation|systematization| +E0059717|systematise|systematize| +E0059732|systolic click-murmur syndrome|systolic click murmur syndrome| +E0059755|tableware|table-ware| +E0059756|tabu|taboo| +E0059757|tabu|taboo| +E0059765|tachy-arrhythmia|tachyarrhythmia| +E0059770|tachypnoea|tachypnea| +E0059771|tacypnoeic|tachypneic| +E0059795|teniacide|taeniacide| +E0059795|tenicide|taeniacide| +E0059796|teniafugal|taeniafugal| +E0059796|tenifugal|taeniafugal| +E0059797|teniafuge|taeniafuge| +E0059798|tenial|taenial| +E0059799|tenial|taenial| +E0059801|teniasis|taeniasis| +E0059802|tenia coli|taenia coli| +E0059894|tapinocephalic|tapeinocephalic| +E0059908|tap dance|tap-dance| +E0059923|target cell|target-cell| +E0059946|tarso-metatarsal|tarsometatarsal| +E0060020|teamwork|team-work| +E0060028|tear gas|tear-gas| +E0060028|teargas|tear-gas| +E0060062|teenage|teen-age| +E0060139|templet|template| +E0060164|temporise|temporize| +E0060181|temporooccipital|temporo-occipital| +E0060187|tenible|tenable| +E0060295|terminal oedema|terminal edema| +E0060321|terra cotta|terra-cotta| +E0060321|terracotta|terra-cotta| +E0060322|terra cotta|terra-cotta| +E0060322|terracotta|terra-cotta| +E0060334|terrorise|terrorize| +E0060342|tertiary butylacetate|tertiary butyl acetate| +E0060375|tetanise|tetanize| +E0060396|tetracyclin|tetracycline| +E0060428|tetraacetate|tetra-acetate| +E0060428|tetracetate|tetra-acetate| +E0060451|thalassanaemia|thalassanemia| +E0060452|thalassaemia|thalassemia| +E0060453|thalassaemia major|thalassemia major| +E0060455|thalassaemic|thalassemic| +E0060456|thalassaemic|thalassemic| +E0060478|thanksgiving|thanks-giving| +E0060489|theatre|theater| +E0060592|thermophilic|thermophilus| +E0060592|thermophilous|thermophilus| +E0060609|thermodynamics|thermo-dynamics| +E0060623|thimazol|thiamazole| +E0060623|tiamazol|thiamazole| +E0060624|thiamin|thiamine| +E0060657|thin-layer chromatography|thin layer chromatography| +E0060666|thioflavine|thioflavin| +E0060687|third-party|third party| +E0060694|thistledown|thistle-down| +E0060715|thoraco-lumbar|thoracolumbar| +E0060749|three day sickness|three-day sickness| +E0060781|thrombo angitiis obliterans|thromboangiitis obliterans| +E0060784|thrombocytopheresis|thrombocytapheresis| +E0060788|thrombocytopenia|thrombocytopaenia| +E0060794|thrombo-embolic|thromboembolic| +E0060795|thrombo-embolism|thromboembolism| +E0060853|thumb-sucking|thumb sucking| +E0060853|thumbsucking|thumb sucking| +E0060867|thymectomise|thymectomize| +E0060918|thymuline|thymulin| +E0060920|thymus-dependent lymphocyte|thymus dependent lymphocyte| +E0060951|thyroidectomise|thyroidectomize| +E0060972|thyroid stimulating hormone|thyroid-stimulating hormone| +E0060989|thyrotropic|thyrotrophic| +E0060990|thyrotropin|thyrotrophin| +E0060995|thyroxin|thyroxine| +E0061010|thiapride|tiapride| +E0061036|tick-borne typhus|tickborne typhus| +E0061037|tickertape|ticker-tape| +E0061050|tieclopidine|ticlopidine| +E0061133|tin foil|tinfoil| +E0061204|titre|titer| +E0061207|tittivate|titivate| +E0061239|tobramycin sulphate|tobramycin sulfate| +E0061258|toffy|toffee| +E0061294|toluenediisocyanate|toluene diisocyanate| +E0061349|tonsilectomy|tonsillectomy| +E0061366|tooth powder|toothpowder| +E0061408|topical anaesthetic|topical anesthetic| +E0061420|topologic|topological| +E0061432|torous|torose| +E0061456|tortoiseshell|tortoise-shell| +E0061528|toxaemia|toxemia| +E0061546|toxic oedema|toxic edema| +E0061549|toxic haemolytic anaemia|toxic hemolytic anemia| +E0061558|toxic-shock syndrome|toxic shock syndrome| +E0061589|tracable|traceable| +E0061603|tracheo-bronchial|tracheobronchial| +E0061616|tracheostomise|tracheostomize| +E0061618|tracheotomise|tracheotomize| +E0061628|tracing paper|tracing-paper| +E0061649|trade unionism|trade-unionism| +E0061672|trapse|traipse| +E0061683|tranquillity|tranquility| +E0061684|tranquillisation|tranquilization| +E0061684|tranquillization|tranquilization| +E0061685|tranquillise|tranquilize| +E0061685|tranquillize|tranquilize| +E0061686|tranquiliser|tranquilizer| +E0061686|tranquilliser|tranquilizer| +E0061686|tranquillizer|tranquilizer| +E0061735|transsect|transect| +E0061749|transfer-RNA|transfer RNA| +E0061804|translumenal|transluminal| +E0061861|transection|transsection| +E0061864|trans-sexual|transsexual| +E0061865|trans-sexual|transsexual| +E0061866|trans-sexualism|transsexualism| +E0061867|trans-sexuality|transsexuality| +E0061868|tranship|transship| +E0061909|trapshooting|trap-shooting| +E0061942|traveller|traveler| +E0061943|travelers' diarrhea|traveler's diarrhea| +E0061963|treasure trove|treasure-trove| +E0061981|tree-top|treetop| +E0062009|trendsetter|trend-setter| +E0062010|trendsetting|trend-setting| +E0062073|trichlorphon|trichlorfon| +E0062075|trichloracetic|trichloroacetic| +E0062134|tricyclic anti-depressant|tricyclic antidepressant| +E0062210|triose phosphate isomerase|triosephosphate isomerase| +E0062210|triose-phosphate isomerase|triosephosphate isomerase| +E0062275|trivialise|trivialize| +E0062296|trolly|trolley| +E0062304|trophoedema|trophedema| +E0062426|tripsinisation|trypsinization| +E0062427|trypsinise|trypsinize| +E0062434|tsetse fly disease|tsetse-fly disease| +E0062460|tuberculisation|tuberculization| +E0062510|tube caecostomy|tube cecostomy| +E0062522|tuboovarian|tubo-ovarian| +E0062523|tuboovarian abscess|tubo-ovarian abscess| +E0062532|tubulo-interstitial|tubulointerstitial| +E0062533|tubulo-reticular|tubuloreticular| +E0062540|taftsin|tuftsin| +E0062558|tumourigenesis|tumorigenesis| +E0062559|tumourigenic|tumorigenic| +E0062560|tumourigenicity|tumorigenicity| +E0062561|tumor-like|tumorlike| +E0062561|tumour-like|tumorlike| +E0062561|tumourlike|tumorlike| +E0062565|tumour virus|tumor virus| +E0062566|tumour-associated|tumor-associated| +E0062568|tumour-bearing|tumor-bearing| +E0062569|tumor-localising|tumor-localizing| +E0062569|tumour-localising|tumor-localizing| +E0062569|tumour-localizing|tumor-localizing| +E0062570|tumour-promoting|tumor-promoting| +E0062571|tumour-specific|tumor-specific| +E0062587|tung oil|tung-oil| +E0062743|typhloenteritis|typhlenteritis| +E0062774|tyrannise|tyrannize| +E0062777|tire|tyre| +E0062782|tyrosinaemia|tyrosinemia| +E0062789|T cell chronic lymphocytic leucaemia|T cell chronic lymphocytic leukemia| +E0062789|T cell chronic lymphocytic leucemia|T cell chronic lymphocytic leukemia| +E0062789|T cell chronic lymphocytic leukaemia|T cell chronic lymphocytic leukemia| +E0062789|T-cell chronic lymphocytic leucaemia|T cell chronic lymphocytic leukemia| +E0062789|T-cell chronic lymphocytic leucemia|T cell chronic lymphocytic leukemia| +E0062789|T-cell chronic lymphocytic leukaemia|T cell chronic lymphocytic leukemia| +E0062789|T-cell chronic lymphocytic leukemia|T cell chronic lymphocytic leukemia| +E0062789|t-cell chronic lymphocytic leukemia|T cell chronic lymphocytic leukemia| +E0062828|oulitis|ulitis| +E0062872|ultraviolet a|ultraviolet A| +E0062873|ultraviolet b|ultraviolet B| +E0062949|uncharacterised|uncharacterized| +E0063019|under-feed|underfeed| +E0063051|under-staffed|understaffed| +E0063070|underway|under way| +E0063078|undetectible|undetectable| +E0063082|undialysed|undialyzed| +E0063125|unfavourable|unfavorable| +E0063126|unfavourably|unfavorably| +E0063128|unfertilised|unfertilized| +E0063165|uni-axial|uniaxial| +E0063177|uni-directional|unidirectional| +E0063178|uni-directionality|unidirectionality| +E0063201|unimmunised|unimmunized| +E0063243|united states pharmacopeia|United States Pharmacopeia| +E0063318|unpolymerised|unpolymerized| +E0063337|unrecognised|unrecognized| +E0063457|upside down|upside-down| +E0063458|upside down|upside-down| +E0063473|up to date|up-to-date| +E0063508|urbanisation|urbanization| +E0063509|urbanise|urbanize| +E0063532|uraemia|uremia| +E0063533|uraemic|uremic| +E0063559|ureterocoele|ureterocele| +E0063562|uretero-duodenal|ureteroduodenal| +E0063566|uretero-intestinal|ureterointestinal| +E0063570|uretero-pelvic|ureteropelvic| +E0063578|uretero-ureteral|ureteroureteral| +E0063580|uretero-uterine|ureterouterine| +E0063583|urethan|urethane| +E0063601|urethro-perineal|urethroperineal| +E0063603|urethro-prostatic|urethroprostatic| +E0063604|urethro-rectal|urethrorectal| +E0063607|urethro-scrotal|urethroscrotal| +E0063611|urethro-vaginal|urethrovaginal| +E0063702|urocinetic|urokinetic| +E0063722|ursodesoxycholic acid|ursodeoxycholic acid| +E0063772|utero-cervical|uterocervical| +E0063776|utero-placental|uteroplacental| +E0063784|utero-vaginal|uterovaginal| +E0063788|uteroovarian|utero-ovarian| +E0063793|utilisation|utilization| +E0063794|utilise|utilize| +E0063855|vaccinisation|vaccinization| +E0063868|vacuolisation|vacuolization| +E0063877|vagabond's disease|vagabonds' disease| +E0063900|vagino-perineal|vaginoperineal| +E0063980|vandalise|vandalize| +E0063997|Van't Hoff|van't Hoff| +E0064001|vaporisation|vaporization| +E0064001|vapourisation|vaporization| +E0064001|vapourization|vaporization| +E0064002|vaporise|vaporize| +E0064002|vapourise|vaporize| +E0064002|vapourize|vaporize| +E0064003|vapor|vapour| +E0064004|vapors|vapours| +E0064024|varicellisation|varicellization| +E0064028|varicocoele|varicocele| +E0064066|vascularisation|vascularization| +E0064067|vascularise|vascularize| +E0064082|vascular tumour|vascular tumor| +E0064097|vaso-active|vasoactive| +E0064098|vasoactive intestinal peptid|vasoactive intestinal peptide| +E0064099|vaso-activity|vasoactivity| +E0064100|vaso-constriction|vasoconstriction| +E0064101|vaso-constrictive|vasoconstrictive| +E0064144|vaso-vagal|vasovagal| +E0064145|vaso vagal syncope|vasovagal syncope| +E0064145|vaso-vagal syncope|vasovagal syncope| +E0064198|veld|veldt| +E0064224|venipuncture|venepuncture| +E0064236|venezuelan equine encephalitis|Venezuelan equine encephalitis| +E0064272|venovenous|veno-venous| +E0064316|ventro-lateral|ventrolateral| +E0064333|verbalise|verbalize| +E0064377|verruga|verruca| +E0064417|vertebro basilar insufficiency|vertebrobasilar insufficiency| +E0064417|vertebro-basilar insufficiency|vertebrobasilar insufficiency| +E0064444|very low density lipoprotein|very low-density lipoprotein| +E0064445|very low-density|very-low-density| +E0064460|vesico-cervical|vesicocervical| +E0064462|vesico-intestinal|vesicointestinal| +E0064463|vesico-perineal|vesicoperineal| +E0064464|vesico-prostatic|vesicoprostatic| +E0064468|vesico-rectal|vesicorectal| +E0064475|vesico-ureteral|vesicoureteral| +E0064476|vesico-urethral|vesicourethral| +E0064479|vesico-vaginal|vesicovaginal| +E0064480|vesico-vaginal fistula|vesicovaginal fistula| +E0064516|vestibuloocular|vestibulo-ocular| +E0064517|vestibulo ocular reflex|vestibulo-ocular reflex| +E0064517|vestibuloocular reflex|vestibulo-ocular reflex| +E0064528|veterans of foreign wars|Veterans of Foreign Wars| +E0064543|phial|vial| +E0064573|victimisation|victimization| +E0064574|victimise|victimize| +E0064579|video cassette|videocassette| +E0064579|video-cassette|videocassette| +E0064595|vigour|vigor| +E0064641|vinylchloride|vinyl chloride| +E0064653|viremia|viraemia| +E0064654|viremic|viraemic| +E0064681|virilisation|virilization| +E0064682|virilise|virilize| +E0064736|visceroperitoneal|viscero-peritoneal| +E0064751|visualisation|visualization| +E0064752|visualise|visualize| +E0064768|vitalise|vitalize| +E0064777|vitamin-A|vitamin A| +E0064779|vitamin-C|vitamin C| +E0064780|vitamin-D|vitamin D| +E0064781|vitamin-E|vitamin E| +E0064798|vitrectomize|vitrectomise| +E0064828|viz.|viz| +E0064832|vocalisation|vocalization| +E0064833|vocalise|vocalize| +E0064856|volatilisation|volatilization| +E0064857|volitilise|volatilize| +E0064869|voltage clamp|voltage-clamp| +E0064908|von Hippel Lindau disease|von Hippel-Lindau disease| +E0064914|von Willebrands disease|von Willebrand's disease| +E0064914|von Willebrands' disease|von Willebrand's disease| +E0064936|vulcanisation|vulcanization| +E0064937|vulcanise|vulcanize| +E0064942|vulgarisation|vulgarization| +E0064943|vulgarise|vulgarize| +E0064962|vulvo-vaginal|vulvovaginal| +E0064984|waggon|wagon| +E0065084|wash-out|washout| +E0065135|water color|water-colour| +E0065135|watercolor|water-colour| +E0065135|watercolour|water-colour| +E0065138|water glass|water-glass| +E0065139|water polo|water-polo| +E0065140|waterpower|water-power| +E0065148|wave front|wavefront| +E0065187|wedding-ring|wedding ring| +E0065197|weed killer|weed-killer| +E0065218|weight lifter|weight-lifter| +E0065219|weight lifting|weight-lifting| +E0065219|weightlifting|weight-lifting| +E0065238|wellbeing|well-being| +E0065240|well known|well-known| +E0065240|wellknown|well-known| +E0065241|well water|well-water| +E0065242|welch|welsh| +E0065252|Western|western| +E0065253|Western|western| +E0065254|westernisation|westernization| +E0065255|westernise|westernize| +E0065260|West Nile|west nile| +E0065287|wheat germ|wheat-germ| +E0065287|wheatgerm|wheat-germ| +E0065328|whimsy|whimsey| +E0065339|whip worm|whipworm| +E0065341|whirr|whir| +E0065342|whirr|whir| +E0065378|white spot disease|white-spot disease| +E0065382|whizz|whiz| +E0065395|whole-body irradiation|whole body irradiation| +E0065400|wholehearted|whole-hearted| +E0065401|whole wheat|whole-wheat| +E0065407|whooping-cough|whooping cough| +E0065446|willful|wilful| +E0065455|willpower|will-power| +E0065471|window dressing|window-dressing| +E0065472|wind-sucking|windsucking| +E0065500|wisdom tooth|wisdom-tooth| +E0065515|wych-hazel|witch-hazel| +E0065547|wolf's bane|wolf's-bane| +E0065547|wolfsbane|wolf's-bane| +E0065548|wolverene|wolverine| +E0065551|womanise|womanize| +E0065585|wood pulp|wood-pulp| +E0065590|wool-sorters' disease|woolsorters' disease| +E0065608|work force|workforce| +E0065621|workload|work-load| +E0065622|work up|work-up| +E0065622|workup|work-up| +E0065626|world-wide|worldwide| +E0065627|world-wide|worldwide| +E0065655|rack|wrack| +E0065773|xipamid|xipamide| +E0065788|xilamide|xylamide| +E0065792|xylazin|xylazine| +E0065805|X-ray computed tomogram|x-ray computed tomogram| +E0065808|X ray crystallography|x-ray crystallography| +E0065808|X-ray crystallography|x-ray crystallography| +E0065808|Xray crystallography|x-ray crystallography| +E0065808|x-ray crystallography|x-ray crystallography| +E0065808|xray crystallography|x-ray crystallography| +E0065812|X ray diffraction|x-ray diffraction| +E0065812|X-ray diffraction|x-ray diffraction| +E0065812|Xray diffraction|x-ray diffraction| +E0065812|x ray diffraction|x-ray diffraction| +E0065812|xray diffraction|x-ray diffraction| +E0065814|x-ray fluourescence|x-ray fluorescence| +E0065817|X-ray therapy|x-ray therapy| +E0065877|yoghourt|yogurt| +E0065877|yoghurt|yogurt| +E0065907|yr.|yr| +E0065912|yuletide|yule-tide| +E0065939|zig-zag|zigzag| +E0065940|zig-zag|zigzag| +E0065941|zig-zag|zigzag| +E0065942|zimelidine|zimeldine| +E0065942|zimelidin|zimeldine| +E0065958|zinc oxide eugenol cement|zinc oxide-eugenol cement| +E0065967|zinc sulphadiazine|zinc sulfadiazine| +E0065968|zinc compound|zinc-compound| +E0065976|zombie|zombi| +E0065997|zoogloeic|zoogleic| +E0066024|zygomatico-auricular index|zygomaticoauricular index| +E0066025|zygomatico-facial|zygomaticofacial| +E0066028|zygomatico-frontal|zygomaticofrontal| +E0066029|zygomatico-maxillary|zygomaticomaxillary| +E0066032|zygomatico-temporal|zygomaticotemporal| +E0066080|African horsesickness|African horse sickness| +E0066121|DecaDurabolin|Deca-Durabolin| +E0066149|Hurthle cell tumour|Hurthle cell tumor| +E0066185|Morquio syndrome|Morquio's syndrome| +E0066210|politzer bag|Politzer bag| +E0066213|probanthine|Pro-Banthine| +E0066238|Taka diastase|Taka-diastase| +E0066238|Takadiastase|Taka-diastase| +E0066272|acetylmethylcarbinol|acetylmethyl carbinol| +E0066275|acetylsulphadiazine|acetylsulfadiazine| +E0066292|acyl transferase|acyltransferase| +E0066297|adenosine triphosphatase|adenosinetriphosphatase| +E0066314|acathesia|akathisia| +E0066326|allylthiourea|allyl thiourea| +E0066333|ambrein|ambrin| +E0066367|angio-myoma|angiomyoma| +E0066383|antihaemophilic|antihemophilic| +E0066391|anti-streptokinase|antistreptokinase| +E0066399|apex cardiography|apexcardiography| +E0066405|appendico-caecostomy|appendicocecostomy| +E0066405|appendico-cecostomy|appendicocecostomy| +E0066405|appendico-coecostomy|appendicocecostomy| +E0066405|appendicocaecostomy|appendicocecostomy| +E0066405|appendicocoecostomy|appendicocecostomy| +E0066413|argininosuccinic aciduria|argininosuccinicaciduria| +E0066417|arterectomy|arteriectomy| +E0066472|beta-glucosidase|beta glucosidase| +E0066477|bisulphide|bisulfide| +E0066493|brady arrhythmia|bradyarrhythmia| +E0066493|brady-arrhythmia|bradyarrhythmia| +E0066496|bromelin|bromelain| +E0066526|caliectomy|calicectomy| +E0066526|calycectomy|calicectomy| +E0066545|carbol fuchsin|carbolfuchsin| +E0066545|carbol-fuchsin|carbolfuchsin| +E0066565|carotenaemia|carotenemia| +E0066574|caecectomy|cecectomy| +E0066576|caecopexy|cecopexy| +E0066579|caecotomy|cecotomy| +E0066593|cerberine|cerberin| +E0066594|cerebello-pontine|cerebellopontine| +E0066628|choledocho-enterostomy|choledochoenterostomy| +E0066629|choledocho-lithotomy|choledocholithotomy| +E0066635|cholesterosis|cholesterolosis| +E0066636|cholinetheophyllinate|choline theophyllinate| +E0066647|choreo-athetosis|choreoathetosis| +E0066655|ciclopiroxolamine|ciclopirox olamine| +E0066686|coccyodynia|coccydynia| +E0066721|conisation|conization| +E0066726|copro-porphyrin|coproporphyrin| +E0066737|corticotropin|corticotrophin| +E0066764|cryptophthalmus|cryptophthalmos| +E0066805|danthrone|danthron| +E0066826|deoxyhaemoglobin|deoxyhemoglobin| +E0066827|desoxyribonuclease|deoxyribonuclease| +E0066832|dermographism|dermatographism| +E0066845|devascularisation|devascularization| +E0066856|dextro-amphetamine sulfate|dextroamphetamine sulphate| +E0066856|dextro-amphetamine sulphate|dextroamphetamine sulphate| +E0066856|dextroamphetamine sulfate|dextroamphetamine sulphate| +E0066889|difenidol|diphenidol| +E0066897|diskography|discography| +E0066916|duodeno-duodenostomy|duodenoduodenostomy| +E0066918|duodeno-pancreatectomy|duodenopancreatectomy| +E0066933|electro oculography|electro-oculography| +E0066933|electrooculography|electro-oculography| +E0066968|epiglottectomy|epiglottidectomy| +E0066982|ergokryptin|ergocryptine| +E0066987|erythrocin|erythrosin| +E0066993|oesophagogastromyotomy|esophagogastromyotomy| +E0066994|esophago-jejunostomy|esophagojejunostomy| +E0066994|oesophago-jejunostomy|esophagojejunostomy| +E0066994|oesophagojejunostomy|esophagojejunostomy| +E0066995|oesophagomyotomy|esophagomyotomy| +E0067001|ethinyl estradiol|ethinylestradiol| +E0067001|ethinyl oestradiol|ethinylestradiol| +E0067001|ethinyloestradiol|ethinylestradiol| +E0067008|ethylphenylephrine|ethyl phenylephrine| +E0067014|euflavin|euflavine| +E0067052|fraenectomy|frenectomy| +E0067065|fungaemia|fungemia| +E0067136|glycerine|glycerin| +E0067139|glycinaemia|glycinemia| +E0067150|glycyl glycine|glycylglycine| +E0067150|glycyl-glycine|glycylglycine| +E0067166|guaiphenesin|guaifenesin| +E0067190|helianthine|helianthin| +E0067192|haemadsorption|hemadsorption| +E0067194|haemangiectasis|hemangiectasis| +E0067195|haemangiomatosis|hemangiomatosis| +E0067196|haemangiopericytoma|hemangiopericytoma| +E0067199|haematemesis|hematemesis| +E0067200|haematin|hematin| +E0067202|haematomyelia|hematomyelia| +E0067203|haematopoiesis|hematopoiesis| +E0067204|haematopoietin|hematopoietin| +E0067206|haematospermia|hematospermia| +E0067208|haemerythrin|hemerythrin| +E0067219|haemin|hemin| +E0067224|hemi-thyroidectomy|hemithyroidectomy| +E0067226|haemoconcentration|hemoconcentration| +E0067228|haemocyanin|hemocyanin| +E0067230|haemoglobinuria|hemoglobinuria| +E0067231|haemopexin|hemopexin| +E0067232|haemophthalmos|hemophthalmos| +E0067234|haemorrhagin|hemorrhagin| +E0067235|haemorrhoidectomy|hemorrhoidectomy| +E0067236|haemosiderin|hemosiderin| +E0067237|haemospermia|hemospermia| +E0067242|hepatico-duodenostomy|hepaticoduodenostomy| +E0067244|hepatico-gastrostomy|hepaticogastrostomy| +E0067262|heterophyosis|heterophyiasis| +E0067276|hind brain|hindbrain| +E0067276|hind-brain|hindbrain| +E0067293|homoeostasis|homeostasis| +E0067296|homocysteine|homocystine| +E0067299|horsesickness|horse-sickness| +E0067315|hydroxymethyl transferase|hydroxymethyltransferase| +E0067327|hyperammonaemia|hyperammonemia| +E0067330|hypercarotenaemia|hypercarotinemia| +E0067330|hypercarotenemia|hypercarotinemia| +E0067330|hypercarotinaemia|hypercarotinemia| +E0067331|hyperchloraemia|hyperchloremia| +E0067333|hyperchylomicronaemia|hyperchylomicronemia| +E0067338|hyperoestrogenism|hyperestrogenism| +E0067339|hyperglobulinaemia|hyperglobulinemia| +E0067340|hyperglyceridaemia|hyperglyceridemia| +E0067341|hyperglycinaemia|hyperglycinemia| +E0067342|hypermagnesaemia|hypermagnesemia| +E0067344|hyperphenylalaninaemia|hyperphenylalaninemia| +E0067346|hyperphosphataemia|hyperphosphatemia| +E0067355|hypochloraemia|hypochloremia| +E0067357|hypocholesterolaemia|hypocholesterolemia| +E0067359|hypoinsulinaemia|hypoinsulinemia| +E0067361|hypomagnesaemia|hypomagnesemia| +E0067365|hyposensitisation|hyposensitization| +E0067385|ileo-ileostomy|ileoileostomy| +E0067386|ileo rectostomy|ileorectostomy| +E0067386|ileo-rectostomy|ileorectostomy| +E0067443|isoimmunisation|isoimmunization| +E0067447|isovalericacidemia|isovaleric acidemia| +E0067485|lactotrophin|lactotropin| +E0067486|lagophthalmus|lagophthalmos| +E0067503|leucoagglutinin|leukoagglutinin| +E0067504|leucocytic alexin|leukocytic alexin| +E0067505|leucocytic endolysin|leukocytic endolysin| +E0067519|lipaemia|lipemia| +E0067614|methaemalbumin|methemalbumin| +E0067621|methyleugenol|methyl eugenol| +E0067638|methyl xanthine|methylxanthine| +E0067727|neurilemmoma|neurolemmoma| +E0067749|nonoxinol|nonoxynol| +E0067785|oophoro-hysterectomy|oophorohysterectomy| +E0067853|papulo-squamous|papulosquamous| +E0067855|para-phenylenediamine|paraphenylenediamine| +E0067857|paraproteinaemia|paraproteinemia| +E0067862|paraosmia|parosmia| +E0067900|phaco-emulsification|phacoemulsification| +E0067900|phako-emulsification|phacoemulsification| +E0067900|phakoemulsification|phacoemulsification| +E0067917|phenylbutazon|phenylbutazone| +E0067990|polyphenol oxidase|polyphenoloxidase| +E0068012|pre-excitation|preexcitation| +E0068072|purpurin|purpurine| +E0068119|re-education|reeducation| +E0068159|sand fly|sandfly| +E0068166|saucerisation|saucerization| +E0068204|sialadenectomy|sialoadenectomy| +E0068283|sulphomucin|sulfomucin| +E0068339|thiadiazide|thiadiazine| +E0068388|transuretero-ureterostomy|transureteroureterostomy| +E0068419|trimethylxanthine|trimethyl xanthine| +E0068455|uretero-ileostomy|ureteroileostomy| +E0068465|uretero-ureterostomy|ureteroureterostomy| +E0068508|vesico-enteric|vesicoenteric| +E0068517|villous|villose| +E0069117|fraenoplasty|frenoplasty| +E0069162|acanthrocyte|acanthocyte| +E0069188|aminolaevulinate|aminolevulinate| +E0069221|apex cardiogram|apexcardiogram| +E0069237|atomiser|atomizer| +E0069262|bisulphite|bisulfite| +E0069266|blue tongue|bluetongue| +E0069272|bow leg|bowleg| +E0069285|butylacetate|butyl acetate| +E0069296|chorio-retinopathy|chorioretinopathy| +E0069298|kineplasty|cineplasty| +E0069306|esophago-gastroscopy|esophagogastroscopy| +E0069306|oesophago-gastroscopy|esophagogastroscopy| +E0069306|oesophagogastroscopy|esophagogastroscopy| +E0069311|glomerulo-nephropathy|glomerulonephropathy| +E0069315|haemoglobinometry|hemoglobinometry| +E0069316|haemoglobinopathy|hemoglobinopathy| +E0069342|radio telemetry|radiotelemetry| +E0069342|radio-telemetry|radiotelemetry| +E0069343|re-entry|reentry| +E0069387|fibrinmonomer|fibrin monomer| +E0069391|hayfever|hay fever| +E0069410|magnocellular|magnicellular| +E0069416|nebuliser|nebulizer| +E0069421|organiser|organizer| +E0069451|steriliser|sterilizer| +E0069458|thio ether|thioether| +E0069467|vaporiser|vaporizer| +E0069467|vapouriser|vaporizer| +E0069467|vapourizer|vaporizer| +E0069474|goat pox|goatpox| +E0069475|sheep pox|sheep-pox| +E0069475|sheeppox|sheep-pox| +E0069477|mouse pox|mousepox| +E0069481|haematosalpinx|hematosalpinx| +E0069534|pro-erythroblast|proerythroblast| +E0069560|pipette|pipet| +E0069565|stylette|stylet| +E0069581|haematocolpos|hematocolpos| +E0069623|cysto-urethrogram|cystourethrogram| +E0069634|haemogram|hemogram| +E0069635|electro oculogram|electro-oculogram| +E0069635|electrooculogram|electro-oculogram| +E0069645|vector cardiogram|vectorcardiogram| +E0069659|fluocortinbutyl|fluocortin butyl| +E0069682|sulphonyl|sulfonyl| +E0069711|hair ball|hairball| +E0069755|eyeworm|eye worm| +E0069756|flat worm|flatworm| +E0069757|heart worm|heartworm| +E0069770|haematomediastinum|hematomediastinum| +E0069771|haemotympanum|hemotympanum| +E0069799|haematopericardium|hematopericardium| +E0069810|haemoperitoneum|hemoperitoneum| +E0069817|mealworm|meal worm| +E0069840|rubberdam|rubber dam| +E0069853|sandbath|sand bath| +E0069855|mouthwash|mouth wash| +E0069866|short-wave|short wave| +E0069866|shortwave|short wave| +E0069883|haemocyte|hemocyte| +E0069891|procaryote|prokaryote| +E0069908|sulphite|sulfite| +E0069914|isopropylmyristate|isopropyl myristate| +E0069920|polyvinyl acetate|polyvinylacetate| +E0069923|hydrolisate|hydrolysate| +E0069923|hydrolizate|hydrolysate| +E0069923|hydrolyzate|hydrolysate| +E0069955|methylsulfonate|methyl sulfonate| +E0069969|inositolniacinate|inositol niacinate| +E0069973|sulphocyanate|sulfocyanate| +E0069984|isopropylmeprobamate|isopropyl meprobamate| +E0069986|methylmethacrylate|methyl methacrylate| +E0069988|endplate|end plate| +E0070000|dimethylphthalate|dimethyl phthalate| +E0070004|guanosinemonophosphate|guanosine monophosphate| +E0070005|glycerolphosphate|glycerol phosphate| +E0070007|triosephosphate|triose phosphate| +E0070008|pyridoxinephosphate|pyridoxine phosphate| +E0070009|glyceraldehydephosphate|glyceraldehyde phosphate| +E0070010|heparitinsulfate|heparitin sulfate| +E0070011|chondroitinsulfate|chondroitin sulfate| +E0070012|dimethylsulfate|dimethyl sulfate| +E0070051|hydroxypropylmethylcellulose|hydroxypropyl methylcellulose| +E0070052|ethyl cellulose|ethylcellulose| +E0070143|Depo-testosterone|Depo-Testosterone| +E0070143|depo-testosterone|Depo-Testosterone| +E0070143|depotestosterone|Depo-Testosterone| +E0070174|actidione|Acti-Dione| +E0070183|trigon|trigone| +E0070185|sulphone|sulfone| +E0070187|laevo thyroxine|levo thyroxine| +E0070187|laevothyroxine|levo thyroxine| +E0070187|levothyroxine|levo thyroxine| +E0070188|neosynephrine|Neo-Synephrine| +E0070192|dimethyl benzene|dimethylbenzene| +E0070193|methylbenzene|methyl benzene| +E0070229|hexachlorophane|hexachlorophene| +E0070291|haemochrome|hemochrome| +E0070298|thornapple|thorn apple| +E0070300|acetyl sulphisoxazole|acetyl sulfisoxazole| +E0070300|acetylsulfisoxazole|acetyl sulfisoxazole| +E0070300|acetylsulphisoxazole|acetyl sulfisoxazole| +E0070332|rectocoele|rectocele| +E0070334|haematocele|hematocele| +E0070334|haematocoele|hematocele| +E0070335|urethrocoele|urethrocele| +E0070336|chylocoele|chylocele| +E0070338|laryngocoele|laryngocele| +E0070364|keto aldehyde|keto-aldehyde| +E0070364|ketoaldehyde|keto-aldehyde| +E0070408|Cardiogreen|Cardio-Green| +E0070415|chlorophyll|chlorophyl| +E0070430|cristagalli|crista galli| +E0070436|cut-down|cutdown| +E0070443|dentin|dentine| +E0070459|dysgerminoma|disgerminoma| +E0070532|head cap|headcap| +E0070534|haematometra|hematometra| +E0070538|haemochromogen|hemochromogen| +E0070549|hunch back|hunchback| +E0070554|hyperpnoea|hyperpnea| +E0070652|Quillaia|Quillaja| +E0070660|laevodopa|levodopa| +E0070669|thio-TEPA|thiotepa| +E0070669|thio-tepa|thiotepa| +E0070675|leucoderma|leukoderma| +E0070683|mandril|mandrel| +E0070690|melaena|melena| +E0070695|methyl mercaptan|methylmercaptan| +E0070700|mustardgas|mustard gas| +E0070703|myoinositol|myo-inositol| +E0070704|nailbed|nail bed| +E0070705|nailfold|nail fold| +E0070708|neurilema|neurolemma| +E0070708|neurilemma|neurolemma| +E0070713|orthopnoea|orthopnea| +E0070715|otorrhoea|otorrhea| +E0070719|pawpaw|papaw| +E0070731|prodrug|pro-drug| +E0070732|progestogen|progestagen| +E0070742|rhinorrhoea|rhinorrhea| +E0070755|culicicide|culicide| +E0070762|gonococcocide|gonococcide| +E0070766|larvacide|larvicide| +E0070771|molluscicide|molluscacide| +E0070774|muscicide|muscacide| +E0070775|muscicide|muscacide| +E0070776|nematicide|nematocide| +E0070777|nematicide|nematocide| +E0070791|schistosomacide|schistosomicide| +E0070802|viricide|virucide| +E0070839|tetraethyl lead|tetra-ethyl lead| +E0070839|tetraethyllead|tetra-ethyl lead| +E0070879|Depo Provera|Depo-Provera| +E0070879|DepoProvera|Depo-Provera| +E0070891|HCG|hCG| +E0070892|HPL|hPL| +E0070919|Retin A|Retin-A| +E0070931|Zoomastigophora|Zoomastigophorea| +E0070934|chloramine T|chloramine-T| +E0070936|self hypnosis|self-hypnosis| +E0071007|Cronkhite-Canada syndrome|Canada-Cronkhite syndrome| +E0071012|de Lange's syndrome|Cornelia de Lange's syndrome| +E0071013|Di George syndrome|DiGeorge's syndrome| +E0071013|Di George's syndrome|DiGeorge's syndrome| +E0071013|DiGeorge syndrome|DiGeorge's syndrome| +E0071015|Edwards syndrome|Edwards' syndrome| +E0071017|Chiari-Frommel syndrome|Frommel-Chiari syndrome| +E0071022|Gorlin syndrome|Gorlin's syndrome| +E0071031|Roussy-Levy syndrome|Levy-Roussy syndrome| +E0071034|Menkes syndrome|Menkes' syndrome| +E0071044|Reiter syndrome|Reiter's syndrome| +E0071046|Roberts syndrome|Robert's syndrome| +E0071048|Saethre Chotzen syndrome|Saethre-Chotzen syndrome| +E0071050|Smith Lemli Opitz syndrome|Smith-Lemli-Opitz syndrome| +E0071051|Sotos syndrome|Sotos' syndrome| +E0071100|glycollic acid|glycolic acid| +E0071149|sulphosalicylic acid|sulfosalicylic acid| +E0071157|coloured|colored| +E0071163|bio-electric|bioelectric| +E0071175|re-adapt|readapt| +E0071176|re-convert|reconvert| +E0071178|re-intervene|reintervene| +E0071203|wooliness|woolliness| +E0071208|ileocaecum|ileocecum| +E0071211|lateralisation|lateralization| +E0071212|terminalisation|terminalization| +E0071213|energiser|energizer| +E0071214|stabiliser|stabilizer| +E0071215|unsynchronised|unsynchronized| +E0071216|cystinaemia|cystinemia| +E0071217|gynaecoid|gynecoid| +E0071218|gynaecomazia|gynecomazia| +E0071219|haematohidrosis|hematohidrosis| +E0071220|haematologist|hematologist| +E0071221|hyperalphalipoproteinaemia|hyperalphalipoproteinemia| +E0071222|hypercupraemia|hypercupremia| +E0071223|hyperglucagonaemia|hyperglucagonemia| +E0071224|hyperimmunoglobulinaemia|hyperimmunoglobulinemia| +E0071225|hyperphosphatasaemia|hyperphosphatasemia| +E0071226|hypofibrinogenaemia|hypofibrinogenemia| +E0071227|hypoglucagonaemia|hypoglucagonemia| +E0071228|alaninaemia|alaninemia| +E0071229|alphalipoproteinaemia|alphalipoproteinemia| +E0071230|analphaliproteinaemia|analphaliproteinemia| +E0071231|antithrombinaemia|antithrombinemia| +E0071232|cystathioninaemia|cystathioninemia| +E0071233|dysfibrinogenaemia|dysfibrinogenemia| +E0071234|dysimmunoglobulinaemia|dysimmunoglobulinemia| +E0071235|galactassaemia|galactassemia| +E0071236|hyperapobetalipoproteinaemia|hyperapobetalipoproteinemia| +E0071237|hypermethioninaemia|hypermethioninemia| +E0071238|hyperornithinaemia|hyperornithinemia| +E0071239|hyperphenylalanineaemia|hyperphenylalanineemia| +E0071241|hypersomatostatinaemia|hypersomatostatinemia| +E0071242|hypertyrosinaemia|hypertyrosinemia| +E0071243|hypoalphalipoproteinaemia|hypoalphalipoproteinemia| +E0071244|hypodysfibrinogenaemia|hypodysfibrinogenemia| +E0071245|hypogastrinaemia|hypogastrinemia| +E0071246|hypolipidaemia|hypolipidemia| +E0071247|hypothyrotropinaemia|hypothyrotropinemia| +E0071248|hypothyroxinaemia|hypothyroxinemia| +E0071249|isoleucinaemia|isoleucinemia| +E0071250|ketoacidaemia|ketoacidemia| +E0071251|lipidaemia|lipidemia| +E0071252|lipoproteinaemia|lipoproteinemia| +E0071253|lipoprotinaemia|lipoprotinemia| +E0071254|methioninaemia|methioninemia| +E0071255|ornithinaemia|ornithinemia| +E0071256|pneumathaemia|pneumathemia| +E0071257|pseudohyponatraemia|pseudohyponatremia| +E0071258|pseudoleucaemia|pseudoleukemia| +E0071258|pseudoleucemia|pseudoleukemia| +E0071258|pseudoleukaemia|pseudoleukemia| +E0071259|sarcosinaemia|sarcosinemia| +E0071260|sitosterolaemia|sitosterolemia| +E0071261|sulfhaemoglobinaemia|sulphaemoglobinemia| +E0071261|sulfhaemoglobinemia|sulphaemoglobinemia| +E0071261|sulfhemoglobinemia|sulphaemoglobinemia| +E0071261|sulphaemoglobinaemia|sulphaemoglobinemia| +E0071262|tryptophanaemia|tryptophanemia| +E0071263|isohaemagglutinin|isohemagglutinin| +E0071264|laevorotation|levorotation| +E0071265|laevoversion|levoversion| +E0071266|mesocaecum|mesocecum| +E0071267|contracaecum|contracecum| +E0071268|taeniamyotomy|teniamyotomy| +E0071269|centilitre|centiliter| +E0071270|femtolitre|femtoliter| +E0071271|decimetre|decimeter| +E0071272|louvre|louver| +E0071273|louvred|louvered| +E0071274|mitre|miter| +E0071275|collumellar|columellar| +E0071276|labeller|labeler| +E0071277|pastile|pastille| +E0071277|pastil|pastille| +E0071282|stiletto|stilletto| +E0071283|teetotaller|teetotaler| +E0071284|acanthamoebiasis|acanthamebiasis| +E0071285|chloridorrhoea|chloridorrhea| +E0071286|blenorrhoea|blenorrhea| +E0071287|phagedaena|phagedena| +E0071288|dacryocoele|dacryocele| +E0071289|hypopnoea|hypopnea| +E0071291|oesophagoscope|esophagoscope| +E0071292|esophagogram|esophagram| +E0071292|oesophagram|esophagram| +E0071293|presbyoesophagus|presbyesophagus| +E0071294|esophagocele|esophagocoele| +E0071294|oesophagocoele|esophagocoele| +E0071295|oesophagoduodenal|esophagoduodenal| +E0071296|oesophagojejunal|esophagojejunal| +E0071297|oesophagoscopic|esophagoscopic| +E0071298|oesophaogastrostomy|esophaogastrostomy| +E0071299|oesophgastrectomy|esophgastrectomy| +E0071300|pharyngo-laryngo-esophagectomy|pharyngolaryngoesophagectomy| +E0071300|pharyngo-laryngo-oesophagectomy|pharyngolaryngoesophagectomy| +E0071300|pharyngolaryngooesophagectomy|pharyngolaryngoesophagectomy| +E0071301|transoesophageal|transesophageal| +E0071313|picosulfate|picosulphate| +E0071314|polysulfide|polysulphide| +E0071316|sulfacetamide|sulphacetamide| +E0071323|sulfamezathine|sulphamezathine| +E0071339|arylsulphatase|arylsulfatase| +E0071340|bisulphate|bisulfate| +E0071341|bromsulphthalein|bromsulfthalein| +E0071342|busulphan|busulfan| +E0071343|dimethyl sulfoxide|dimethylsulfoxide| +E0071343|dimethylsulphoxide|dimethylsulfoxide| +E0071344|gold sodium thiosulfate|goldsodiumthiosulfate| +E0071344|gold sodium thiosulphate|goldsodiumthiosulfate| +E0071344|goldsodiumthiosulphate|goldsodiumthiosulfate| +E0071345|methylsulphate|methylsulfate| +E0071346|monosulphate|monosulfate| +E0071347|monosulphide|monosulfide| +E0071348|persulphate|persulfate| +E0071349|phenylsulphthion|phenylsulfthion| +E0071352|sesquisulphide|sesquisulfide| +E0071354|sulphadimethoxine|sulfadimethoxine| +E0071356|sulphaemoglobin|sulfaemoglobin| +E0071357|sulphafurazole|sulfafurazole| +E0071358|sulphaguanidine|sulfaguanidine| +E0071359|sulphaloxate|sulfaloxate| +E0071362|sulphathiazole|sulfathiazole| +E0071363|sulphatide|sulfatide| +E0071364|sulphatriad|sulfatriad| +E0071365|sulphaurea|sulfaurea| +E0071366|sulphenamide|sulfenamide| +E0071367|sulphocysteine|sulfocysteine| +E0071369|sulphomethate|sulfomethate| +E0071370|sulphonylurea|sulfonylurea| +E0071371|sulphosuccinate|sulfosuccinate| +E0071372|sulphoxide|sulfoxide| +E0071373|tetrabromosulphophthal|tetrabromosulfophthal| +E0071374|thiosulphatoaurate|thiosulfatoaurate| +E0071375|toluenesulphonamide|toluenesulfonamide| +E0071376|dishonourable|dishonorable| +E0071377|misdemeanour|misdemeanor| +E0071378|odourproof|odorproof| +E0071379|unflavoured|unflavored| +E0071380|flavoured|flavored| +E0071381|sulfonamide|sulphonamide| +E0071382|tunneller|tunneler| +E0071383|prelabour|prelabor| +E0071390|dermato-polymyositis|dermatopolymyositis| +E0071409|rhino-sinusitis|rhinosinusitis| +E0071421|greyish|grayish| +E0071422|greyishness|grayishness| +E0071423|hosteller|hosteler| +E0071424|killogramme|killogram| +E0071425|pickax|pickaxe| +E0071426|snowplough|snowplow| +E0071427|panelling|paneling| +E0071428|vice|vise| +E0071493|thrombo-embolectomy|thromboembolectomy| +E0071572|behaviourist|behaviorist| +E0071580|eugenist|eugenicist| +E0071651|bogyman|bogeyman| +E0071651|boogeyman|bogeyman| +E0071651|boogyman|bogeyman| +E0071777|customise|customize| +E0071778|hysterectomise|hysterectomize| +E0071779|laryngectomise|laryngectomize| +E0071781|lobotomise|lobotomize| +E0071802|chordectomy|cordectomy| +E0071872|geriodontist|gerodontist| +E0071890|semenologist|seminologist| +E0071904|allo-eroticism|alloeroticism| +E0071927|autoerotism|autoeroticism| +E0071928|ballism|ballismus| +E0071988|heteroerotism|heteroeroticism| +E0071996|humouralism|humoralism| +E0072029|megalodactylism|megalodactyly| +E0072172|antibrachium|antebrachium| +E0072224|sanitorium|sanatorium| +E0072267|aelurophobia|ailurophobia| +E0072276|arachnephobia|arachnophobia| +E0072277|astrapophobia|astraphobia| +E0072278|ataxiophobia|ataxophobia| +E0072296|gynophobia|gynephobia| +E0072297|haptephobia|haphephobia| +E0072298|haematophobia|hematophobia| +E0072299|haemophobia|hemophobia| +E0072327|scoptophobia|scopophobia| +E0072360|albuminaemia|albuminemia| +E0072362|aleucaemia|aleukemia| +E0072362|aleucemia|aleukemia| +E0072362|aleukaemia|aleukemia| +E0072364|aminoacidaemia|aminoacidemia| +E0072371|anydremia|anhydremia| +E0072377|ataxiophemia|ataxophemia| +E0072385|bicarbonataemia|bicarbonatemia| +E0072387|canceraemia|canceremia| +E0072394|chloroleucaemia|chloroleukemia| +E0072394|chloroleucemia|chloroleukemia| +E0072394|chloroleukaemia|chloroleukemia| +E0072395|cholesteraemia|cholesteremia| +E0072396|cholesterinaemia|cholesterinemia| +E0072397|cholesterolaemia|cholesterolemia| +E0072401|creatinaemia|creatinemia| +E0072403|deshydraemia|deshydremia| +E0072415|euglycaemia|euglycemia| +E0072434|hyperamino acidaemia|hyperaminoacidemia| +E0072434|hyperamino acidemia|hyperaminoacidemia| +E0072434|hyperamino-acidaemia|hyperaminoacidemia| +E0072434|hyperamino-acidemia|hyperaminoacidemia| +E0072434|hyperaminoacidaemia|hyperaminoacidemia| +E0072444|hyperestrogenaemia|hyperestrogenemia| +E0072445|hyperferraemia|hyperferremia| +E0072449|hyperhaemoglobinaemia|hyperhemoglobinemia| +E0072449|hyperhaemoglobinemia|hyperhemoglobinemia| +E0072465|hypoalonaemia|hypoalonemia| +E0072477|hypoferraemia|hypoferremia| +E0072484|hypouraemia|hypouremia| +E0072489|insulinaemia|insulinemia| +E0072520|nephrohaemia|nephrohemia| +E0072522|normocalcaemia|normocalcemia| +E0072525|oligaemia|oligemia| +E0072558|pseudo-polycythemia|pseudopolycythemia| +E0072567|radiotoxaemia|radiotoxemia| +E0200009|acetyl-CoA|acetyl CoA| +E0200013|acid-fast|acid fast| +E0200014|acyl-CoA|acyl CoA| +E0200015|after-cataract|after cataract| +E0200015|aftercataract|after cataract| +E0200028|post-traumatic|post traumatic| +E0200054|pain disfunction syndrome|pain dysfunction syndrome| +E0200054|pain-disfunction syndrome|pain dysfunction syndrome| +E0200054|pain-dysfunction syndrome|pain dysfunction syndrome| +E0200060|appendicial abscess|appendiceal abscess| +E0200082|papyraceous foetus|papyraceous fetus| +E0200087|acid-fast stain|acid fast stain| +E0200096|Adams's operation|Adams' operation| +E0200098|pelvic haematoma|pelvic hematoma| +E0200110|Phalen's manoeuvre|Phalen's maneuver| +E0200117|Alexander-Adams operation|Alexander Adams operation| +E0200126|placenta praevia|placenta previa| +E0200146|post-central fissure|postcentral fissure| +E0200162|pre-central fissure|precentral fissure| +E0200164|anti-inflammatory|anti inflammatory| +E0200164|antiinflammatory|anti inflammatory| +E0200165|anti-inflammatory|anti inflammatory| +E0200165|antiinflammatory|anti inflammatory| +E0200166|precipitate labour|precipitate labor| +E0200177|prolonged labour|prolonged labor| +E0200183|propyleneglycol|propylene glycol| +E0200194|pulmonary haemorrhage|pulmonary hemorrhage| +E0200199|pupilary membrane|pupillary membrane| +E0200200|pure-tone audiometry|pure tone audiometry| +E0200207|R.Ph|R. Ph.| +E0200207|RPh|R. Ph.| +E0200208|R-protein|R protein| +E0200245|attention deficit-hyperactivity disorder|attention deficit hyperactivity disorder| +E0200245|attention-deficit hyperactivity disorder|attention deficit hyperactivity disorder| +E0200267|retro-grade urography|retrograde urography| +E0200270|Rh isoimmunisation|Rh isoimmunization| +E0200277|Ringer solution|Ringer's solution| +E0200277|Ringers solution|Ringer's solution| +E0200279|Ritgen manoeuvre|Ritgen maneuver| +E0200288|B-scan|B scan| +E0200292|S-sleep|S sleep| +E0200313|split-thickness graft|split thickness graft| +E0200325|benign tumour|benign tumor| +E0200327|Sachs' disease|Sachs disease| +E0200340|Scanzoni manoeuvre|Scanzoni maneuver| +E0200378|slit-lamp|slit lamp| +E0200379|Baldy-Webster operation|Baldy Webster operation| +E0200384|space-maintainer|space maintainer| +E0200397|basic red nine|basic red 9| +E0200436|Blalock-Taussig operation|Blalock Taussig operation| +E0200440|T-tube|T tube| +E0200446|thalassaemia minor|thalassemia minor| +E0200457|bovine leucaemia|bovine leukemia| +E0200457|bovine leucemia|bovine leukemia| +E0200457|bovine leukaemia|bovine leukemia| +E0200459|bovine virus diarrhoea|bovine virus diarrhea| +E0200463|tricho-rhino-phalangeal syndrome|trichorhinophalangeal syndrome| +E0200479|Burkitt's tumour|Burkitt's tumor| +E0200481|C-MOPP|C MOPP| +E0200481|C-Mopp|C MOPP| +E0200481|C-mopp|C MOPP| +E0200482|C-reactive protein|C reactive protein| +E0200484|C-banding|C banding| +E0200485|thalamocortical fibre|thalamocortical fiber| +E0200487|thiosulphuric acid|thiosulfuric acid| +E0200492|thoracic aneurism|thoracic aneurysm| +E0200494|thromboplastin-generation test|thromboplastin generation test| +E0200508|C-band|C band| +E0200516|toxic multinodular goitre|toxic multinodular goiter| +E0200531|carbamoyl-phosphate-synthase|carbamoyl phosphate synthase| +E0200536|carboxy-lyase|carboxy lyase| +E0200536|carboxylyase|carboxy lyase| +E0200566|uretero-pelvic junction|ureteropelvic junction| +E0200583|Coombs test|Coombs' test| +E0200583|Coombs's test|Coombs' test| +E0200590|vitamin B 12|vitamin B12| +E0200590|vitamin B-12|vitamin B12| +E0200609|ventriculo-atrial shunt|ventriculoatrial shunt| +E0200620|vitreous humour|vitreous humor| +E0200625|Caldwell-Luc operation|Caldwell Luc operation| +E0200663|acetylcoenzyme A|acetyl coenzyme A| +E0200668|acid sulphate|acid sulfate| +E0200671|central grey|central gray| +E0200687|alpha haemolysin|alpha hemolysin| +E0200714|circular fibre|circular fiber| +E0200730|anti DNA antibody|anti-DNA antibody| +E0200738|arcuate fibre|arcuate fiber| +E0200744|CoA-transferase|CoA transferase| +E0200764|collagen fibre|collagen fiber| +E0200769|colony-stimulating factor|colony stimulating factor| +E0200771|colony-forming unit|colony forming unit| +E0200775|complement-fixation test|complement fixation test| +E0200776|basophilic leucaemia|basophilic leukemia| +E0200776|basophilic leucemia|basophilic leukemia| +E0200776|basophilic leukaemia|basophilic leukemia| +E0200784|beta-sheet|beta sheet| +E0200787|beta haemolysin|beta hemolysin| +E0200787|beta-haemolysin|beta hemolysin| +E0200787|beta-hemolysin|beta hemolysin| +E0200810|bulbo-urethral gland|bulbourethral gland| +E0200813|coraco-acromial ligament|coracoacromial ligament| +E0200815|calyceal diverticulum|caliceal diverticulum| +E0200824|corticobulbar fibre|corticobulbar fiber| +E0200826|corticopontine fibre|corticopontine fiber| +E0200827|cortico-pontine tract|corticopontine tract| +E0200828|cortico-rubral tract|corticorubral tract| +E0200830|corticospinal fibre|corticospinal fiber| +E0200831|corticothalamic fibre|corticothalamic fiber| +E0200834|carbamoylphosphate synthetase|carbamoyl phosphate synthetase| +E0200837|coverglass|cover glass| +E0200850|cathepsin-D|cathepsin D| +E0200857|coeliac axis|celiac axis| +E0200859|coeliac syndrome|celiac syndrome| +E0200872|cytochrome P-450|cytochrome P450| +E0200879|caesarean hysterectomy|cesarean hysterectomy| +E0200879|caesarian hysterectomy|cesarean hysterectomy| +E0200879|cesarian hysterectomy|cesarean hysterectomy| +E0200882|Danlos syndrome|Danlos' syndrome| +E0200882|Danlos's syndrome|Danlos' syndrome| +E0200926|depersonalisation disorder|depersonalization disorder| +E0200928|Descemets membrane|Descemet's membrane| +E0200934|dihydroxy vitamin D 3|dihydroxyvitamin D3| +E0200934|dihydroxy vitamin D-3|dihydroxyvitamin D3| +E0200934|dihydroxy vitamin D3|dihydroxyvitamin D3| +E0200934|dihydroxy-vitamin D 3|dihydroxyvitamin D3| +E0200934|dihydroxy-vitamin D-3|dihydroxyvitamin D3| +E0200934|dihydroxy-vitamin D3|dihydroxyvitamin D3| +E0200934|dihydroxyvitamin D 3|dihydroxyvitamin D3| +E0200934|dihydroxyvitamin D-3|dihydroxyvitamin D3| +E0200939|Doleris operation|Doleris' operation| +E0200939|Doleris's operation|Doleris' operation| +E0200950|Douglas method|Douglas' method| +E0200950|Douglas's method|Douglas' method| +E0200961|drug-resistant|drug resistant| +E0200967|corticotrophin releasing factor|corticotropin releasing factor| +E0200967|corticotrophin-releasing factor|corticotropin releasing factor| +E0200967|corticotropin-releasing factor|corticotropin releasing factor| +E0200968|corticotropin-releasing hormone|corticotropin releasing hormone| +E0200977|cu. mm.|cu mm| +E0200977|cu.mm.|cu mm| +E0200993|Ehlers-Danlos syndrome|Ehlers Danlos syndrome| +E0201010|desmoid tumour|desmoid tumor| +E0201015|Eppstein-Barr virus|Eppstein Barr virus| +E0201027|ego-alien|ego alien| +E0201028|ego-dystonic|ego dystonic| +E0201028|egodystonic|ego dystonic| +E0201029|ego-syntonic|ego syntonic| +E0201030|diffuse goitre|diffuse goiter| +E0201033|elastic fibre|elastic fiber| +E0201038|disulphide bond|disulfide bond| +E0201039|electron-microscopic|electron microscopic| +E0201047|drumhead|drum head| +E0201055|end-bulb|end bulb| +E0201057|end-tidal|end tidal| +E0201062|end-product|end product| +E0201062|endproduct|end product| +E0201063|endoscopic retrograde cholangio-pancreatography|endoscopic retrograde cholangiopancreatography| +E0201066|endothelial leucocyte|endothelial leukocyte| +E0201072|erythroblastosis foetalis|erythroblastosis fetalis| +E0201076|oestrogen receptor|estrogen receptor| +E0201077|ethiodised oil|ethiodized oil| +E0201086|Estes operation|Estes' operation| +E0201086|Estes's operation|Estes' operation| +E0201096|extradural haemorrhage|extradural hemorrhage| +E0201097|extra-articular|extra articular| +E0201103|factor-A|factor A| +E0201106|eyewash|eye wash| +E0201109|F-actin|F actin| +E0201110|familial hyperlipoproteinaemia|familial hyperlipoproteinemia| +E0201111|false-positive|false positive| +E0201112|false-positive|false positive| +E0201114|fatty-acid synthase|fatty acid synthase| +E0201116|Fanconi's syndrome|Fanconi syndrome| +E0201124|follicle-stimulating hormone|follicle stimulating hormone| +E0201125|protooncogene|proto-oncogene| +E0201130|full-thickness graft|full thickness graft| +E0201141|fiber-optic bronchoscopy|fiberoptic bronchoscopy| +E0201141|fibre-optic bronchoscopy|fiberoptic bronchoscopy| +E0201141|fibreoptic bronchoscopy|fiberoptic bronchoscopy| +E0201156|follicular centre cell lymphoma|follicular center cell lymphoma| +E0201160|beta estradiol|beta-estradiol| +E0201160|beta oestradiol|beta-estradiol| +E0201160|beta-oestradiol|beta-estradiol| +E0201162|foreign-body granuloma|foreign body granuloma| +E0201164|beta naphthol|betanaphthol| +E0201164|beta-naphthol|betanaphthol| +E0201166|cyclo ligase|cyclo-ligase| +E0201166|cycloligase|cyclo-ligase| +E0201170|carbomoyl phosphate synthase|carbomoyl-phosphate synthase| +E0201172|above knee amputation|above-knee amputation| +E0201178|Fredet-Ramstedt operation|Fredet Ramstedt operation| +E0201190|G-actin|G actin| +E0201191|G-protein|G protein| +E0201195|GH-RF|GH RF| +E0201196|GH-RH|GH RH| +E0201196|GHRH|GH RH| +E0201200|glutamic-oxaloacetic transaminase|glutamic oxaloacetic transaminase| +E0201201|glutamic-pyruvic transaminase|glutamic pyruvic transaminase| +E0201202|glutamyltranspeptidase|glutamyl transpeptidase| +E0201216|gas-liquid chromatography|gas liquid chromatography| +E0201224|germline|germ line| +E0201226|Gila monster|gila monster| +E0201241|ferrous sulphate|ferrous sulfate| +E0201243|granulocytic leucaemia|granulocytic leukemia| +E0201243|granulocytic leucemia|granulocytic leukemia| +E0201243|granulocytic leukaemia|granulocytic leukemia| +E0201259|H-Y antigen|H Y antigen| +E0201261|H-reflex|H reflex| +E0201267|hammertoe|hammer toe| +E0201268|fracture-dislocation|fracture dislocation| +E0201275|haematopoietic system|hematopoietic system| +E0201278|haemolytic streptococcus|hemolytic streptococcus| +E0201281|haemorrhagic diathesis|hemorrhagic diathesis| +E0201283|haemorrhagic shock|hemorrhagic shock| +E0201304|Hippel-Lindau disease|Hippel Lindau disease| +E0201308|human chorionic gonadotrophin|human chorionic gonadotropin| +E0201309|hydro-lyase|hydro lyase| +E0201309|hydrolyase|hydro lyase| +E0201312|hypokalaemic alkalosis|hypokalemic alkalosis| +E0201317|hairy cell leucaemia|hairy cell leukemia| +E0201317|hairy cell leucemia|hairy cell leukemia| +E0201317|hairy cell leukaemia|hairy cell leukemia| +E0201317|hairy-cell leucaemia|hairy cell leukemia| +E0201317|hairy-cell leucemia|hairy cell leukemia| +E0201317|hairy-cell leukaemia|hairy cell leukemia| +E0201317|hairy-cell leukemia|hairy cell leukemia| +E0201325|heat-stroke|heat stroke| +E0201325|heatstroke|heat stroke| +E0201329|glomus tumour|glomus tumor| +E0201334|gold-foil|gold foil| +E0201341|grey commissure|gray commissure| +E0201342|grey substance|gray substance| +E0201357|high-frequency|high frequency| +E0201358|high-frequency|high frequency| +E0201377|haematopoietic tissue|hematopoietic tissue| +E0201379|haematoporphyrin derivative|hematoporphyrin derivative| +E0201381|hypoxanthine-guanine phosphoribosyl-transferase|hypoxanthine guanine phosphoribosyltransferase| +E0201381|hypoxanthine-guanine phosphoribosyltransferase|hypoxanthine guanine phosphoribosyltransferase| +E0201381|hypoxanthineguanine phosphoribosyltransferase|hypoxanthine guanine phosphoribosyltransferase| +E0201382|haemoglobin A|hemoglobin A| +E0201385|haemoglobin lepore|hemoglobin lepore| +E0201386|IL-3|IL 3| +E0201386|IL3|IL 3| +E0201387|haemolytic jaundice|hemolytic jaundice| +E0201390|haemorrhagic septicaemia|hemorrhagic septicemia| +E0201394|heparan sulphate|heparan sulfate| +E0201408|intra-abdonimal|intra abdominal| +E0201415|histamine-releasing factor|histamine releasing factor| +E0201441|ileo-psoas muscle|iliopsoas muscle| +E0201442|inhalation anaesthesia|inhalation anesthesia| +E0201453|insulin-dependent diabetes|insulin dependent diabetes| +E0201458|intercrural fibre|intercrural fiber| +E0201463|in dwelling catheter|indwelling catheter| +E0201463|in-dwelling catheter|indwelling catheter| +E0201471|intermittent positive-pressure breathing|intermittent positive pressure breathing| +E0201487|intestino-intestinal|intestino intestinal| +E0201488|intra-aortic balloon counterpulsation|intra aortic balloon counterpulsation| +E0201489|intra-arterial|intra arterial| +E0201489|intraarterial|intra arterial| +E0201492|intra-uterine device|intrauterine device| +E0201496|ionisation chamber|ionization chamber| +E0201499|juxta-articular|juxta articular| +E0201499|juxtaarticular|juxta articular| +E0201501|ketol-isomerase|ketol isomerase| +E0201506|Kaschin-Beck disease|Kaschin Beck disease| +E0201506|Kashin Bek disease|Kaschin Beck disease| +E0201506|Kashin-Bek disease|Kaschin Beck disease| +E0201512|L-dopa|L dopa| +E0201513|growth hormone-releasing hormone|growth hormone releasing hormone| +E0201513|growth-hormone releasing hormone|growth hormone releasing hormone| +E0201513|growth-hormone-releasing hormone|growth hormone releasing hormone| +E0201514|L-S ratio|L S ratio| +E0201514|L/S ratio|L S ratio| +E0201516|Laki-Lorand factor|Laki Lorand factor| +E0201519|guanidine-acetic acid|guanidine acetic acid| +E0201522|H 1|H1| +E0201522|h 1|H1| +E0201522|h1|H1| +E0201523|H 2|H2| +E0201523|h 2|H2| +E0201523|h2|H2| +E0201524|LH-RH|LH RH| +E0201524|LHRH|LH RH| +E0201547|Letterer-Siwe disease|Letterer Siwe disease| +E0201548|leu-enkephalin|leu enkephalin| +E0201554|Sture A. Siwe|Sture August Siwe| +E0201554|Sture Siwe|Sture August Siwe| +E0201556|Libman-Sacks disease|Libman Sacks disease| +E0201573|insulin-like growth factor|insulin like growth factor| +E0201586|internal arcuate fibre|internal arcuate fiber| +E0201598|M phase|m phase| +E0201599|intestinal amoebiasis|intestinal amebiasis| +E0201604|M-protein|M protein| +E0201607|manic-depressive|manic depressive| +E0201608|manic-depressive|manic depressive| +E0201613|mid-forceps delivery|mid forceps delivery| +E0201613|midforceps delivery|mid forceps delivery| +E0201623|Muenchausen syndrome|Munchausen syndrome| +E0201623|Muenchausen's syndrome|Munchausen syndrome| +E0201623|Munchausen's syndrome|Munchausen syndrome| +E0201636|iron sulphur protein|iron sulfur protein| +E0201636|iron-sulfur protein|iron sulfur protein| +E0201636|iron-sulphur protein|iron sulfur protein| +E0201644|Matas' operation|Matas operation| +E0201644|Matas's operation|Matas operation| +E0201648|mean corpuscular haemoglobin|mean corpuscular hemoglobin| +E0201651|jawbone|jaw bone| +E0201662|melanocyte-stimulating hormone|melanocyte stimulating hormone| +E0201664|met-enkephalin|met enkephalin| +E0201669|Miles operation|Miles' operation| +E0201669|Miles's operation|Miles' operation| +E0201672|ketoacid decarboxylase|keto acid decarboxylase| +E0201673|keyhole limpet haemocyanin|keyhole limpet hemocyanin| +E0201673|keyhole-limpet haemocyanin|keyhole limpet hemocyanin| +E0201673|keyhole-limpet hemocyanin|keyhole limpet hemocyanin| +E0201689|Miller-Abbott tube|Miller Abbott tube| +E0201691|lecithin-sphingomyelin ratio|lecithin sphingomyelin ratio| +E0201693|Millin-Read operation|Millin Read operation| +E0201699|Mohs chemosurgery|Mohs' chemosurgery| +E0201699|Mohs's chemosurgery|Mohs' chemosurgery| +E0201700|Mohs technique|Mohs' technique| +E0201700|Mohs's technique|Mohs' technique| +E0201712|muscle fibre|muscle fiber| +E0201714|fast twitch muscle fibre|fast twitch muscle fiber| +E0201714|fast-twitch muscle fiber|fast twitch muscle fiber| +E0201714|fast-twitch muscle fibre|fast twitch muscle fiber| +E0201724|Eaton Lambert syndrome|Eaton-Lambert syndrome| +E0201749|myofascial pain disfunction|myofascial pain dysfunction| +E0201788|monocytic leucaemia|monocytic leukemia| +E0201788|monocytic leucemia|monocytic leukemia| +E0201788|monocytic leukaemia|monocytic leukemia| +E0201791|motor-unit|motor unit| +E0201796|multinodular goitre|multinodular goiter| +E0201809|nasal haemorrhage|nasal hemorrhage| +E0201812|naso-gastric tube|nasogastric tube| +E0201813|naso-labial cyst|nasolabial cyst| +E0201818|naevus sebaceus|nevus sebaceus| +E0201820|necrotising factor|necrotizing factor| +E0201823|N-terminal|N terminal| +E0201825|Niemann-Pick disease|Niemann Pick disease| +E0201826|neutralisation test|neutralization test| +E0201829|non-protein nitrogen|nonprotein nitrogen| +E0201831|neutrophile chemotactic factor|neutrophil chemotactic factor| +E0201837|naso-maxillary suture|nasomaxillary suture| +E0201838|nerve fibre layer|nerve fiber layer| +E0201848|non-A hepatitis|non A hepatitis| +E0201852|nucleolus organiser|nucleolus organizer| +E0201853|non-tropical sprue|non tropical sprue| +E0201853|nontropical sprue|non tropical sprue| +E0201860|obsessive-compulsive|obsessive compulsive| +E0201861|obsessive-compulsive|obsessive compulsive| +E0201863|obstructed labour|obstructed labor| +E0201866|oral facial digital syndrome|oral-facial-digital syndrome| +E0201873|oblique fibre|oblique fiber| +E0201876|obsessive-compulsive neurosis|obsessive compulsive neurosis| +E0201882|occipito-frontal diameter|occipitofrontal diameter| +E0201895|Omsk haemorrhagic fever|Omsk hemorrhagic fever| +E0201926|PAF-acether|PAF acether| +E0201938|cross-matching|cross matching| +E0201938|crossmatching|cross matching| +E0201939|cross-match|cross match| +E0201939|crossmatch|cross match| +E0201943|Cys-Cys|Cys Cys| +E0201943|Cys-cys|Cys Cys| +E0201950|E-rosette|E rosette| +E0201955|parietal peritonaeum|parietal peritoneum| +E0201959|passive haemagglutination|passive hemagglutination| +E0201986|platelet-derived growth factor|platelet derived growth factor| +E0201990|polyA|poly A| +E0201993|A.C.C.|ACC| +E0201995|acc|Acc| +E0201997|A.C.H.A.|ACHA| +E0201999|A.G.A.|AGA| +E0202003|aFP|AFP| +E0202004|Af Ph|AfP| +E0202005|ag|AG| +E0202008|A.H.A.|AHA| +E0202011|A.I.C.|AIC| +E0202020|A.M.S.A.|AMSA| +E0202023|aorto-iliac|aortoiliac| +E0202025|A.P.A.|APA| +E0202027|A.P.T.A.|APTA| +E0202031|aPTT|APTT| +E0202034|A.Q.|AQ| +E0202035|AQ|Aq.| +E0202035|aq.|Aq.| +E0202041|arg.|Arg| +E0202052|A.S.M.|ASM| +E0202053|AS M|AsM| +E0202053|ASM|AsM| +E0202053|As.M.|AsM| +E0202054|muco-gingival|mucogingival| +E0202057|asn.|Asn| +E0202073|A.A.D.|AAD| +E0202074|a.a-d|aad| +E0202074|aa-d|aad| +E0202078|A.A.D.R.|AADR| +E0202088|Karl A. Neelsen|Karl Adolf Neelsen| +E0202088|Karl Neelsen|Karl Adolf Neelsen| +E0202089|aorto-femoral|aortofemoral| +E0202093|non-electrolyte|nonelectrolyte| +E0202110|B.D.A.|BDA| +E0202112|B.D.S.|BDS| +E0202116|Bechterew|Bekhterev| +E0202130|panhaematopenia|panhematopenia| +E0202132|Boettcher|Bottcher| +E0202135|burr|bur| +E0202136|paracousis|paracusis| +E0202143|carotenoderma|carotenodermia| +E0202149|C.B.|CB| +E0202151|CB|C/B| +E0202153|CBC|c.b.c.| +E0202161|pillule|pilule| +E0202175|C-H|CH| +E0202177|CH|Ch| +E0202177|Ch.|Ch| +E0202177|ch|Ch| +E0202193|George E. Palade|George Emil Palade| +E0202193|George Palade|George Emil Palade| +E0202195|cholangio-pancreatography|cholangiopancreatography| +E0202196|chylomicronaemia|chylomicronemia| +E0202203|pauci-articular|pauciarticular| +E0202209|COCL|COCl| +E0202221|Porter-Silber chromogen|Porter Silber chromogen| +E0202223|Porter-Silber reaction|Porter Silber reaction| +E0202224|CX|Cx| +E0202224|Cx.|Cx| +E0202224|cx.|Cx| +E0202234|prokalli-krein|prokallikrein| +E0202243|D.C.F.|DCF| +E0202247|D.C.H.|DCH| +E0202250|pseudo lymphoma|pseudolymphoma| +E0202250|pseudo-lymphoma|pseudolymphoma| +E0202253|det.|Det.| +E0202265|D.M.D.|DMD| +E0202278|D.P.|DP| +E0202279|D.P.H.|DPH| +E0202280|D.P.M.|DPM| +E0202281|d.p.m.|dpm| +E0202285|D.R.|DR| +E0202289|DU|dU| +E0202290|DV|dv| +E0202290|d.v.|dv| +E0202292|dysproteinaemia|dysproteinemia| +E0202298|diskectomy|discectomy| +E0202316|H.O. Smith|Hamilton Othanel Smith| +E0202316|Hamilton O. Smith|Hamilton Othanel Smith| +E0202317|Sporozoa|Sporozoea| +E0202325|EM|Em| +E0202325|em.|Em| +E0202330|self-limited|self limited| +E0202333|erythroblastopaenia|erythroblastopenia| +E0202339|E.R.|ER| +E0202341|esophago-gastro-duodenoscopy|esophagogastroduodenoscopy| +E0202341|esophago-gastroduodenoscopy|esophagogastroduodenoscopy| +E0202341|oesophago-gastro-duodenoscopy|esophagogastroduodenoscopy| +E0202341|oesophago-gastroduodenoscopy|esophagogastroduodenoscopy| +E0202341|oesophagogastroduodenoscopy|esophagogastroduodenoscopy| +E0202351|Ssabanejew-Frank operation|Ssabanejew Frank operation| +E0202354|succinal-CoA|succinal CoA| +E0202366|oesophageal hiatus|esophageal hiatus| +E0202368|Swan-Ganz catheter|Swan Ganz catheter| +E0202377|F.L.P.|FLP| +E0202384|f.p.|fp| +E0202387|FUDR|FUdR| +E0202408|Tourette disorder|Tourette's disorder| +E0202427|GLU|Glu| +E0202427|glu.|Glu| +E0202429|gly.|Gly| +E0202441|G-U|GU| +E0202445|x-ray film|x ray film| +E0202447|x-ray tube|x ray tube| +E0202451|Z-plasty|Z plasty| +E0202451|z plasty|Z plasty| +E0202451|z-plasty|Z plasty| +E0202453|Ziehl-Neelsen method|Ziehl Neelsen method| +E0202458|acetoacetyl-CoA|acetoacetyl CoA| +E0202462|acetyl-CoA acetyltransferase|acetyl CoA acetyltransferase| +E0202465|acetyl-CoA carboxylase|acetyl CoA carboxylase| +E0202470|acid-base balance|acid base balance| +E0202471|HM|Hm| +E0202476|acro-osteolysis|acro osteolysis| +E0202476|acroosteolysis|acro osteolysis| +E0202484|adeno-associated virus|adeno associated virus| +E0202486|hyper reflexia|hyperreflexia| +E0202486|hyper-reflexia|hyperreflexia| +E0202490|Hct|HCT| +E0202490|hct.|HCT| +E0202492|alpha-lipoprotein|alpha lipoprotein| +E0202492|alphalipoprotein|alpha lipoprotein| +E0202493|alpha oestradiol|alpha estradiol| +E0202493|alpha-estradiol|alpha estradiol| +E0202493|alpha-oestradiol|alpha estradiol| +E0202506|I.H.|IH| +E0202507|IL 1|IL-1| +E0202507|IL1|IL-1| +E0202509|ILE|Ile| +E0202509|ile|Ile| +E0202511|I.M.V.|IMV| +E0202512|alpha2-macroglobulin|alpha2 macroglobulin| +E0202515|amido-ligase|amido ligase| +E0202515|amidolygase|amido ligase| +E0202520|aminoacyl-tRNA|aminoacyl tRNA| +E0202521|I.S.O.|ISO| +E0202526|immuno-adsorption|immunoadsorption| +E0202531|angle-closure glaucoma|angle closure glaucoma| +E0202535|kc.|kc| +E0202542|K.U.B.|KUB| +E0202543|KVP|kVp| +E0202543|kVP|kVp| +E0202543|kvp|kVp| +E0202554|aorto-duodenal|aortoduodenal| +E0202556|L.M.P.|LMP| +E0202560|arthro-ophthalmopathy|arthro ophthalmopathy| +E0202560|arthroophthalmopathy|arthro ophthalmopathy| +E0202563|L.S.A.|LSA| +E0202570|L.V.H.|LVH| +E0202575|LYS|Lys| +E0202575|lys.|Lys| +E0202580|beta-hydroxybutyric acid|beta hydroxybutyric acid| +E0202581|M.A.|MA| +E0202587|bundle-branch block|bundle branch block| +E0202588|M.B.|MB| +E0202592|M.C.|MC| +E0202600|M.D.A.|MDA| +E0202603|M.E.D.|MED| +E0202605|MEq|meq| +E0202605|mEq.|meq| +E0202605|meq.|meq| +E0202608|Mev|MeV| +E0202608|mev|MeV| +E0202616|cis-platinum|cis platinum| +E0202616|cisplatin|cis platinum| +E0202622|cross-reacting antigen|cross reacting antigen| +E0202626|darkfield microscope|dark-field microscope| +E0202633|polymethylmethacrylate|polymethyl methacrylate| +E0202655|potassium sulphate|potassium sulfate| +E0202660|pregnant mare serum gonadotrophin|pregnant mare serum gonadotropin| +E0202664|L A|L & A| +E0202664|L and A|L & A| +E0202664|L&A|L & A| +E0202681|rapid-eye-movement|rapid eye movement| +E0202691|retinol-binding protein|retinol binding protein| +E0202717|MEG|meg| +E0202732|somatotropin-releasing factor|somatotropin releasing factor| +E0202732|somatrophin releasing factor|somatotropin releasing factor| +E0202732|somatrophin-releasing factor|somatotropin releasing factor| +E0202733|mev.|Mev| +E0202739|spleno-renal shunt|splenorenal shunt| +E0202754|subungual haematoma|subungual hematoma| +E0202758|sulphinic acid|sulfinic acid| +E0202759|sulphonic acid|sulfonic acid| +E0202774|swan-neck deformity|swan neck deformity| +E0202777|TPA|t-PA| +E0202786|terminal deoxynucleotidyltransferase|terminal deoxynucleotidyl transferase| +E0202794|thrombosed haemorrhoid|thrombosed hemorrhoid| +E0202806|topical anaesthesia|topical anesthesia| +E0202807|tracheo-bronchial tree|tracheobronchial tree| +E0202813|transperitoneal caesarean section|transperitoneal cesarean section| +E0202813|transperitoneal caesarian section|transperitoneal cesarean section| +E0202813|transperitoneal cesarian section|transperitoneal cesarean section| +E0202823|tumour angiogenesis|tumor angiogenesis| +E0202824|tumour associated antigen|tumor-associated antigen| +E0202824|tumour-associated antigen|tumor-associated antigen| +E0202825|N.D.A.|NDA| +E0202829|N.H.S.|NHS| +E0202834|N.P.A.|NPA| +E0202841|N.R.C.|NRC| +E0202852|N.T.P.|NTP| +E0202854|NT&P|NT & P| +E0202855|vesico ureteral reflux|vesicoureteral reflux| +E0202855|vesico-ureteral reflux|vesicoureteral reflux| +E0202860|visceral peritonaeum|visceral peritoneum| +E0202864|vitamin B 6|vitamin B6| +E0202864|vitamin B-6|vitamin B6| +E0202865|neu.|neu| +E0202866|vitamin D 2|vitamin D2| +E0202866|vitamin D-2|vitamin D2| +E0202887|O&A|O & A| +E0202888|OB.|OB| +E0202888|Ob|OB| +E0202889|OB.|OB| +E0202889|Ob|OB| +E0202904|O.D.|OD| +E0202904|O/D|OD| +E0202904|o.d.|OD| +E0202904|od|OD| +E0202905|O.D.|OD| +E0202905|O/D|OD| +E0202905|o.d.|OD| +E0202905|od|OD| +E0202908|ofd|OFD| +E0202909|ofd|OFD| +E0202913|oz.|oz| +E0202915|sub-acute combined degeneration|subacute combined degeneration| +E0202916|P-one|P1| +E0202918|pa|p.a.| +E0202937|Phb|PhB| +E0202941|PK|P-K| +E0202949|PMB|P.M.B.| +E0202951|P.O.|po| +E0202951|PO|po| +E0202951|p.o.|po| +E0202955|Ppt|ppt| +E0202955|ppt.|ppt| +E0202956|Ppt|ppt| +E0202956|ppt.|ppt| +E0202960|PSP|p.s.p.| +E0202960|ps.p.|p.s.p.| +E0202967|Q|q| +E0202967|q.|q| +E0202968|Q|q| +E0202968|q.|q| +E0202971|Q-10|Q10| +E0202972|RBC|rbc| +E0202972|r.b.c.|rbc| +E0202973|R.B.C.|RBC| +E0202976|Rd|rd| +E0202976|rd.|rd| +E0202980|RD|R.D.| +E0202981|REP|rep| +E0202982|REP|ReP| +E0202988|RSA|R.S.A.| +E0202990|RVH|R.V.H.| +E0202992|RX|Rx| +E0202993|Ra|ra.| +E0203006|SCM|S.C.M.| +E0203007|SCM|SC&M| +E0203008|SD|S.D.| +E0203009|SD|Sd| +E0203012|Sed|sed| +E0203012|sed.|sed| +E0203013|SED|S.E.D.| +E0203016|SF|Sf| +E0203020|SL|s.l.| +E0203020|sl|s.l.| +E0203028|SLT|S.L.T.| +E0203031|SMC|SM-C| +E0203031|Sm-C|SM-C| +E0203032|sph|sph.| +E0203033|sph|sph.| +E0203034|SPH|Sph| +E0203037|sq|sq.| +E0203043|SSD|S.S.D.| +E0203057|TED|T.E.D.| +E0203063|T & T|T&T| +E0203067|V/A|va| +E0203067|VA|va| +E0203068|VA|Va| +E0203071|vac.|vac| +E0203077|VR|v.r.| +E0203078|VR|V.R.| +E0203082|Y|y| +E0203085|yd.|yd| +E0203092|BI|B-I| +E0203093|BI|B-I| +E0203097|CPD|cpd.| +E0203097|cpd|cpd.| +E0203101|C.S.A.A.|CSAA| +E0203102|CYC|cyc| +E0203102|cyc.|cyc| +E0203104|cyl.|cyl| +E0203106|D.C.|d.c.| +E0203106|DC|d.c.| +E0203106|dc|d.c.| +E0203107|DC|D.C.| +E0203110|D and C|D & C| +E0203110|D&C|D & C| +E0203111|DCTP|dCTP| +E0203112|L A|L & A| +E0203112|L and A|L & A| +E0203112|L&A|L & A| +E0203118|DTMP|dTMP| +E0203128|O.U.|ou| +E0203128|OU|ou| +E0203128|o.u.|ou| +E0203129|O.U.|ou| +E0203129|OU|ou| +E0203129|o.u.|ou| +E0203134|PGE-2|PGE2| +E0203138|PPD|p.p.d.| +E0203138|Ppd|p.p.d.| +E0203139|PPD|P&PD| +E0203141|ppg.|ppg| +E0203148|ROP|R.O.P.| +E0203150|SCR|scr.| +E0203150|scr|scr.| +E0203153|Stokes's syndrome|Stokes' syndrome| +E0203158|VD|V.D.| +E0203163|VD|Vd| +E0203164|Vd|vd.| +E0203168|W|w.| +E0203168|w|w.| +E0203169|W|w| +E0203170|W|w| +E0203171|W|w| +E0203172|W|w| +E0203173|W|W.| +E0203177|aloe-emodin|aloe emodin| +E0203178|CEL|Cel.| +E0203178|Cels|Cel.| +E0203178|Cel|Cel.| +E0203179|CEL|Cel.| +E0203179|Cels|Cel.| +E0203179|Cel|Cel.| +E0203201|drug fast|drug-fast| +E0203217|Turner syndrome|Turner's syndrome| +E0203221|haematoxylin and eosin stain|hematoxylin and eosin stain| +E0203222|H & E|H&E| +E0203222|H + E|H&E| +E0203222|H and E|H&E| +E0203227|tricholeucocyte|tricholeukocyte| +E0203254|acute leucosis|acute leukosis| +E0203258|skin leucosis|skin leukosis| +E0203259|intermediate muscle fibre|intermediate muscle fiber| +E0203260|red muscle fibre|red muscle fiber| +E0203261|slow twitch muscle fibre|slow twitch muscle fiber| +E0203261|slow-twitch muscle fiber|slow twitch muscle fiber| +E0203261|slow-twitch muscle fibre|slow twitch muscle fiber| +E0203262|type I muscle fibre|type I muscle fiber| +E0203263|type II muscle fibre|type II muscle fiber| +E0203264|white muscle fibre|white muscle fiber| +E0203281|doc|doc.| +E0203283|DP|dp| +E0203287|D.P.|d.p.| +E0203287|DP|d.p.| +E0203296|EM|E/M| +E0203305|ER|er| +E0203306|Er|er.| +E0203317|F.L.T.|FLT| +E0203325|COR|cor| +E0203325|Cor|cor| +E0203325|cor.|cor| +E0203326|COR|cor| +E0203326|Cor|cor| +E0203326|cor.|cor| +E0203328|Co R|CoR| +E0203333|DTP|D.T.P.| +E0203338|extern|externe| +E0203341|Fe|fe| +E0203341|fe.|fe| +E0203342|Fe|fe| +E0203342|fe.|fe| +E0203348|Inv|inv| +E0203348|inv.|inv| +E0203351|Inv|inv| +E0203351|inv.|inv| +E0203353|MUC|muc| +E0203353|muc.|muc| +E0203354|MUC|muc| +E0203354|muc.|muc| +E0203371|HPF|h.p.f.| +E0203371|hpf|h.p.f.| +E0203375|hypocalcaemic|hypocalcemic| +E0203380|kala azar|kala-azar| +E0203388|Lic.|Lic| +E0203406|nU.|nU| +E0203410|oxyphile|oxyphil| +E0203411|oxyphile|oxyphil| +E0203426|PME|P.M.E.| +E0203436|propionyl CoA carboxylase|propionyl-CoA carboxylase| +E0203439|receptor-destroying enzyme|receptor destroying enzyme| +E0203440|reg.|reg| +E0203444|R.E.G.|REG| +E0203446|RFA|R.F.A.| +E0203448|RFP|R.F.P.| +E0203452|RSP|R.S.P.| +E0203454|RST|R.S.T.| +E0203459|SLP|Slp| +E0203460|SLP|S.L.P.| +E0203474|tetramethyl benzidine|tetramethylbenzidine| +E0203476|thoraco-abdominal|thoracoabdominal| +E0203490|water clear cell|water-clear cell| +E0203498|Aborigine|aborigine| +E0203502|acetanilid|acetanilide| +E0203503|acetonaemia|acetonemia| +E0203507|acridonium|acridinium| +E0203509|acroparaesthesia|acroparesthesia| +E0203516|Vd|vd.| +E0203518|after-effect|aftereffect| +E0203523|Agrotis|agrotis| +E0203530|aleutian|Aleutian| +E0203536|alkalaemia|alkalemia| +E0203559|Animalia|animalia| +E0203562|anonyme|anonym| +E0203566|anticardium|antecardium| +E0203582|aquiculture|aquaculture| +E0203589|Argyle|argyll| +E0203589|Argyll|argyll| +E0203589|argyle|argyll| +E0203590|Argyle|argyll| +E0203590|Argyll|argyll| +E0203590|argyle|argyll| +E0203604|Asterioidea|Asteroidea| +E0203613|auramin|auramine| +E0203624|begasse|bagasse| +E0203624|begass|bagasse| +E0203625|bagasse disease|begasse disease| +E0203625|begass disease|begasse disease| +E0203643|benzedrine|Benzedrine| +E0203645|benzo dye|Benzo dye| +E0203648|benzoic sulphamide|benzoic sulfamide| +E0203650|cyano-benzene|cyanobenzene| +E0203657|Bergamo|Bergama| +E0203692|Sir Russell C. Brock|Russell C. Brock| +E0203695|Brock syndrome|Brock's syndrome| +E0203697|bromidrosis|bromhidrosis| +E0203701|bronchorrhoea|bronchorrhea| +E0203724|Caiman|caiman| +E0203724|Cayman|caiman| +E0203724|cayman|caiman| +E0203726|caulken|calkin| +E0203739|cardiazole|cardiazol| +E0203742|care-taking|caretaking| +E0203745|carragheenin|carrageenin| +E0203761|Celite|celite| +E0203766|Cerastes|cerastes| +E0203784|cheek bone|cheekbone| +E0203796|chloracetone|chloroacetone| +E0203797|chloracetophenone|chloroacetophenone| +E0203798|chlorbenzene|chlorobenzene| +E0203799|chlorphenol|chlorophenol| +E0203801|chlorpicrin|chloropicrin| +E0203808|christ|Christ| +E0203821|Clerodendrum|Clerodendron| +E0203828|Ernest A. Codman|Ernest Amory Codman| +E0203828|Ernest Codman|Ernest Amory Codman| +E0203839|James Collier|James S. Collier| +E0203843|colourimetry|colorimetry| +E0203857|Astley Cooper|Sir Astley P. Cooper| +E0203857|Astley P. Cooper|Sir Astley P. Cooper| +E0203857|Sir Astley Cooper|Sir Astley P. Cooper| +E0203862|coprodeum|coprodaeum| +E0203869|Cornish|cornish| +E0203870|Cornish|cornish| +E0203876|counter-clockwise|counterclockwise| +E0203877|counter-clockwise|counterclockwise| +E0203878|counter-pressure|counterpressure| +E0203893|William Holmes Crosby, Jr|William Holmes Crosby, Jr.| +E0203900|cunnilingtus|cunnilingus| +E0203903|cuticularisation|cuticularization| +E0203911|cyrillic|Cyrillic| +E0203927|de-ligation|deligation| +E0203928|Delphic|Delphian| +E0203928|delphian|Delphian| +E0203928|delphic|Delphian| +E0203934|dermography|dermographia| +E0203935|dermatography|dermatographia| +E0203959|disulphonic|disulfonic| +E0203966|dodecyl sulphate|dodecyl sulfate| +E0203966|dodecylsulfate|dodecyl sulfate| +E0203966|dodecylsulphate|dodecyl sulfate| +E0203970|dravidian|Dravidian| +E0203975|dysaesthesia|dysesthesia| +E0203994|aegophony|egophony| +E0204005|electro-acoustical|electroacoustic| +E0204005|electro-acoustic|electroacoustic| +E0204005|electroacoustical|electroacoustic| +E0204006|electro-cauterisation|electrocauterization| +E0204006|electro-cauterization|electrocauterization| +E0204006|electrocauterisation|electrocauterization| +E0204007|electro-cauterise|electrocauterize| +E0204007|electro-cauterize|electrocauterize| +E0204007|electrocauterise|electrocauterize| +E0204015|electro-acoustically|electroacoustically| +E0204027|Thomas Emmet|Thomas A. Emmet| +E0204035|endamebiasis|entamebiasis| +E0204035|endamoebiasis|entamebiasis| +E0204035|entamoebiasis|entamebiasis| +E0204040|epigastrocoele|epigastrocele| +E0204040|epigastrocoel|epigastrocele| +E0204052|epinychium|eponychium| +E0204052|epionychium|eponychium| +E0204056|eroticomania|erotomania| +E0204061|oesophagospasm|esophagospasm| +E0204096|Augustus Felty|Augustus Roi Felty| +E0204096|Augustus R. Felty|Augustus Roi Felty| +E0204100|William Fergusson|Sir William Fergusson| +E0204134|forrel|forel| +E0204159|furazane|furazan| +E0204172|gantree|gantry| +E0204173|Ganymede|ganymede| +E0204177|Johann L. Gasser|Johann Laurentius Gasser| +E0204180|gastro-jejunal|gastrojejunal| +E0204186|geophagy|geophagia| +E0204200|gingko|ginkgo| +E0204200|ginko|ginkgo| +E0204207|glycollic aciduria|glycolic aciduria| +E0204215|Robert Gorlin|Robert J. Gorlin| +E0204224|griffin|griffon| +E0204224|gryphon|griffon| +E0204232|huanaco|guanaco| +E0204235|Guinea Green B|guinea green B| +E0204235|Guinea green B|guinea green B| +E0204240|Hans Guenther|Hans Gunther| +E0204257|A.G.A.|AGA| +E0204275|haematite|hematite| +E0204278|hemianaesthesia|hemianesthesia| +E0204280|AQ|Aq.| +E0204280|aq.|Aq.| +E0204317|Johann Horner|Johann F. Horner| +E0204318|CX|Cx| +E0204318|Cx.|Cx| +E0204318|cx.|Cx| +E0204319|William Horner|William E. Horner| +E0204331|hyrst|hurst| +E0204335|D.O.A.|DOA| +E0204336|hydrastin|hydrastine| +E0204360|G-U|GU| +E0204366|Impatiens|impatiens| +E0204368|indane|indan| +E0204378|infra-spinatus|infraspinatus| +E0204380|engrain|ingrain| +E0204388|L.M.P.|LMP| +E0204390|interruptor|interrupter| +E0204391|L.S.A.|LSA| +E0204394|M.D.A.|MDA| +E0204400|muskat|muscat| +E0204416|naphthaquinone|naphthoquinone| +E0204420|naso-maxillary|nasomaxillary| +E0204434|jelly-fish|jellyfish| +E0204444|karyoplasma|karyoplasm| +E0204455|Kmer|Khmer| +E0204456|Kmer|Khmer| +E0204457|kick-back|kickback| +E0204458|kieselgur|kieselguhr| +E0204461|Khirghiz|Kirghiz| +E0204461|Kirghese|Kirghiz| +E0204461|Kirghis|Kirghiz| +E0204461|Kirgiz|Kirghiz| +E0204462|kossotoxin|kosotoxin| +E0204462|koussotoxin|kosotoxin| +E0204474|lungoor|langur| +E0204485|lassoo|lasso| +E0204488|non inflammatory|noninflammatory| +E0204488|non-inflammatory|noninflammatory| +E0204490|ionise|nonionizing| +E0204490|non ionizing|nonionizing| +E0204490|non-ionizing|nonionizing| +E0204497|non operative|nonoperative| +E0204497|non-operative|nonoperative| +E0204504|non suppurative|nonsuppurative| +E0204504|non-suppurative|nonsuppurative| +E0204513|Legionnaire's disease|Legionnaires' disease| +E0204513|legionnaire's disease|Legionnaires' disease| +E0204513|legionnaires' disease|Legionnaires' disease| +E0204515|Legionnaire's bacillus|Legionnaires' bacillus| +E0204515|legionnaire's bacillus|Legionnaires' bacillus| +E0204515|legionnaires' bacillus|Legionnaires' bacillus| +E0204533|Leninism|leninism| +E0204543|opisthotonos|opisthotonus| +E0204552|over-population|overpopulation| +E0204559|pallanaesthesia|pallanesthesia| +E0204560|pallaesthesia|pallesthesia| +E0204563|leukocidin|leucocidin| +E0204566|Abraham Levin|Abraham L. Levin| +E0204576|Kleine Levin syndrome|Kleine-Levin syndrome| +E0204580|light headed|lightheaded| +E0204580|light-headed|lightheaded| +E0204583|light headedness|lightheadedness| +E0204583|light-headedness|lightheadedness| +E0204588|Baron Joseph Lister|Joseph Lister| +E0204588|Lord Joseph Lister|Joseph Lister| +E0204598|live-born|liveborn| +E0204605|logorrhoea|logorrhea| +E0204606|logorrhoeic|logorrheic| +E0204610|Lombard voice reflex test|Lombard voice-reflex test| +E0204613|lotos|lotus| +E0204617|Lucite|lucite| +E0204619|loofah|luffa| +E0204632|machette|machete| +E0204632|matchet|machete| +E0204633|machiavellianism|Machiavellianism| +E0204634|machiavellian|Machiavellian| +E0204655|malthusianism|Malthusianism| +E0204656|orthopaedia|orthopedia| +E0204661|ozokerite|ozocerite| +E0204664|Pelew|Palau| +E0204665|papillon|Papillon| +E0204682|Marathon|marathon| +E0204683|Marathon|marathon| +E0204684|Marathon|marathon| +E0204689|patee|pattee| +E0204689|pate|pattee| +E0204712|Eli Marshall|Eli K. Marshall| +E0204717|Victor Marshall|Victor F. Marshall| +E0204721|August Martin|August E. Martin| +E0204724|Henry Martin|Henry A. Martin| +E0204728|Thomas Martin|Thomas C. Martin| +E0204730|marxism|Marxism| +E0204736|Edward Mason|Edward E. Mason| +E0204767|phthallic|phthalic| +E0204775|plaise|plaice| +E0204803|punto|ponto| +E0204805|porgee|porgy| +E0204806|porphin|porphine| +E0204832|menorrhoea|menorrhea| +E0204846|meso-appendix|mesoappendix| +E0204888|methadon|methadone| +E0204914|pyronin|pyronine| +E0204917|Mirza|mirza| +E0204922|Muhammedanism|Mohammedanism| +E0204929|quinoxalin|quinoxaline| +E0204930|molasse|Molasse| +E0204965|morelle|morel| +E0204981|mollie|molly| +E0204987|remobilisation|remobilization| +E0204992|remobilise|remobilize| +E0204998|munjak|muntjac| +E0204998|muntjak|muntjac| +E0205007|retro-pubic|retropubic| +E0205021|rily|riley| +E0205022|rinkals|ringhals| +E0205029|Romanche|Romansh| +E0205029|Romansch|Romansh| +E0205029|Rumansch|Romansh| +E0205040|safrol|safrole| +E0205041|Saharian|Saharan| +E0205056|sweeney|swinney| +E0205056|sweeny|swinney| +E0205058|synaesthesia|synesthesia| +E0205060|synaesthetic|synesthetic| +E0205064|synthesiser|synthesizer| +E0205088|semi-coma|semicoma| +E0205095|septate|septated| +E0205104|Tadjik|Tajik| +E0205104|Tadzhik|Tajik| +E0205110|Tangiers|Tangier| +E0205111|Tangiers|Tangier| +E0205118|Charles Taylor|Charles F. Taylor| +E0205121|Robert Taylor|Robert W. Taylor| +E0205153|cheng|sheng| +E0205153|shing|sheng| +E0205161|Telegu|Telugu| +E0205161|Teloogoo|Telugu| +E0205166|skeen|skean| +E0205166|skene|skean| +E0205166|skhian|skean| +E0205170|skein|skain| +E0205200|sylvan|silvan| +E0205212|Cingalese|Singhalese| +E0205212|Cinghalese|Singhalese| +E0205212|Singalese|Singhalese| +E0205212|Sinhalese|Singhalese| +E0205213|Cingalese|Singhalese| +E0205213|Cinghalese|Singhalese| +E0205213|Singalese|Singhalese| +E0205213|Sinhalese|Singhalese| +E0205220|thiophen|thiophene| +E0205242|somaesthesia|somesthesia| +E0205242|somaethesis|somesthesia| +E0205242|somesthesis|somesthesia| +E0205254|titan|Titan| +E0205270|Treacher Collins' syndrome|Treacher Collins syndrome| +E0205270|Treacher-Collins syndrome|Treacher Collins syndrome| +E0205270|Treacher-Collins' syndrome|Treacher Collins syndrome| +E0205278|spermatorrhoea|spermatorrhea| +E0205280|triazin|triazine| +E0205302|tropeolin|tropaeolin| +E0205306|Tudor|tudor| +E0205312|turkmen|Turkmen| +E0205318|Henry Turner|Henry H. Turner| +E0205341|timpani|tympani| +E0205359|under-employment|underemployment| +E0205363|strongyl|strongyle| +E0205370|suburbanisation|suburbanization| +E0205371|sulphamic|sulfamic| +E0205372|sulphamic acid|sulfamic acid| +E0205373|sulphamide|sulfamide| +E0205374|sulphonium|sulfonium| +E0205375|sulphuric|sulfuric| +E0205376|sulphurous|sulfurous| +E0205387|souslik|suslik| +E0205404|unsocialised|unsocialized| +E0205411|urethrorrhoea|urethrorrhea| +E0205417|Utopia|utopia| +E0205418|Usbeg|Uzbek| +E0205418|Usbek|Uzbek| +E0205418|Uzbak|Uzbek| +E0205418|Uzbeg|Uzbek| +E0205422|Valentine|valentine| +E0205436|coniine|conine| +E0205461|wetability|wettability| +E0205462|wetable|wettable| +E0205467|John Wheeler|John M. Wheeler| +E0205475|wooly|woolly| +E0205476|wooly|woolly| +E0205479|Basil M. Wright|Basil Martin Wright| +E0205479|Basil Wright|Basil Martin Wright| +E0205483|Marmaduke B. Wright|Marmaduke Burr Wright| +E0205483|Marmaduke Wright|Marmaduke Burr Wright| +E0205518|cyanmethemoglobin|cyanomethemoglobin| +E0205528|Jugoslavian|Yugoslav| +E0205528|Jugoslav|Yugoslav| +E0205528|Yugoslavian|Yugoslav| +E0205529|Jugoslavian|Yugoslav| +E0205529|Jugoslav|Yugoslav| +E0205529|Yugoslavian|Yugoslav| +E0205534|zygomatico-orbital|zygomaticoorbital| +E0205576|ethyleneimine|ethylenimine| +E0205591|acridane|acridan| +E0205592|dichlorhydrin|dichlorohydrin| +E0205596|acryloyl|acrylyl| +E0205604|aerogene|aerogen| +E0205612|dimerisation|dimerization| +E0205613|dimerise|dimerize| +E0205628|americana|Americana| +E0205656|anato|annatto| +E0205656|anatta|annatto| +E0205656|anatto|annatto| +E0205656|arnatta|annatto| +E0205656|arnatto|annatto| +E0205656|arnotta|annatto| +E0205656|arnotto|annatto| +E0205657|anato|annatto| +E0205657|anatta|annatto| +E0205657|anatto|annatto| +E0205657|arnatta|annatto| +E0205657|arnatto|annatto| +E0205657|arnotta|annatto| +E0205657|arnotto|annatto| +E0205678|antimoniate|antimonate| +E0205689|aesculetin|esculetin| +E0205690|esdragol|estragole| +E0205704|asaron|asarone| +E0205705|ascaridol|ascaridole| +E0205708|ferrochrome|ferrochromium| +E0205715|augmentor|augmenter| +E0205741|basto|basta| +E0205748|benzohydrol|benzhydrol| +E0205758|gallocyanine|gallocyanin| +E0205777|glycollic|glycolic| +E0205800|bicolored|bicolor| +E0205806|blow-out|blowout| +E0205808|haematogen|hematogen| +E0205825|Brahma|Brahman| +E0205825|Brahmin|Brahman| +E0205825|brahman|Brahman| +E0205825|brahma|Brahman| +E0205825|brahmin|Brahman| +E0205826|Bramah|Brahma| +E0205826|brahma|Brahma| +E0205826|bramah|Brahma| +E0205827|heptyne|heptine| +E0205866|ichthyocoll|ichthyocol| +E0205891|Ernst Abbe|Ernst K. Abbe| +E0205924|Capri|capri| +E0205925|Capri|capri| +E0205967|Castor|castor| +E0205976|celestine|coelestine| +E0205991|jaggary|jaggery| +E0205991|jagghery|jaggery| +E0205994|jajoba|jojoba| +E0205997|kampferol|kaempferol| +E0206027|chlorhydrin|chlorohydrin| +E0206043|cuticularised|cuticularized| +E0206059|linalol|linalool| +E0206063|loadstar|lodestar| +E0206078|citroptene|citropten| +E0206098|marmit|marmite| +E0206099|master-mind|mastermind| +E0206114|metabisulfite|metabisulphite| +E0206155|molluskan|molluscan| +E0206159|monacetin|monoacetin| +E0206176|Irving Stein|Irving F. Stein| +E0206179|Stein Leventhal syndrome|Stein-Leventhal syndrome| +E0206180|Stanislav Stein|Stanislav A.F. von Stein| +E0206180|Stanislav von Stein|Stanislav A.F. von Stein| +E0206197|muskone|muscone| +E0206214|Nimrod|nimrod| +E0206215|Nimrodian|nimrodian| +E0206225|sulphamate|sulfamate| +E0206229|sulphanilic|sulfanilic| +E0206249|sulphinate|sulfinate| +E0206251|sulphinic|sulfinic| +E0206277|Tartaric|tartaric| +E0206305|oxyhaemocyanin|oxyhemocyanin| +E0206329|pentaquin|pentaquine| +E0206385|Sir William Adams|William Adams| +E0206387|James A. Adams|James Alexander Adams| +E0206387|James Adams|James Alexander Adams| +E0206388|John Barlow|John B. Barlow| +E0206389|John Baldy|John Montgomery Baldy| +E0206389|John M. Baldy|John Montgomery Baldy| +E0206390|John C. Webster|John Clarence Webster| +E0206390|John Webster|John Clarence Webster| +E0206404|thianaphthene|thionaphthene| +E0206422|co-operative learning|cooperative learning| +E0206465|Primus|primus| +E0206472|propyne|propine| +E0206555|rhapontin|rhaponticin| +E0206561|rubin|rubine| +E0206564|saffranine|safranin| +E0206564|safranine|safranin| +E0206601|eruginous|aeruginous| +E0206606|anti-pain|antipain| +E0206655|deoxyribonuclease Eco RI|deoxyribonuclease EcoRI| +E0206655|deoxyribonuclease Eco-RI|deoxyribonuclease EcoRI| +E0206657|icosanoid|eicosanoid| +E0206673|flunarizin|flunarizine| +E0206679|glucuronyl transferase|glucuronyltransferase| +E0206685|hexamethyl melamine|hexamethylmelamine| +E0206687|hoechst|HOECHST| +E0206727|metergoline|methergoline| +E0206733|metaclopramide|metoclopramide| +E0206743|non endemic|nonendemic| +E0206743|non-endemic|nonendemic| +E0206744|nonrandomised|nonrandomized| +E0206799|recanalisation|recanalization| +E0206825|space flight|spaceflight| +E0206829|streptozotocine|streptozotocin| +E0206847|uteroglobine|uteroglobin| +E0206920|iodo-insulin|iodoinsulin| +E0206930|methyl carbamate|methylcarbamate| +E0206934|methyl phenylalanine|methylphenylalanine| +E0206972|pre-surface|presurface| +E0206973|pre-surface|presurface| +E0206975|propyl-norapomorphine|propylnorapomorphine| +E0206977|radiosensitiser|radiosensitizer| +E0206995|tetrasulphophthalocyanine|tetrasulfophthalocyanine| +E0207006|velours|velour| +E0207011|abscisic acid|abscissic acid| +E0207037|tricolour|tricolor| +E0207038|tricoloured|tricolored| +E0207074|glycerol tri-myristate|glycerol trimyristate| +E0207112|albe|alb| +E0207149|batteau|bateau| +E0207168|B.O.A.|BOA| +E0207174|Bora|Boro| +E0207179|bradypnea|bradypnoea| +E0207200|buchu|bucco| +E0207200|bucku|bucco| +E0207205|Ber|ber| +E0207215|beta resorcylic acid|beta-resorcylic acid| +E0207233|kanari|canari| +E0207241|Caroline|Carolean| +E0207245|cep|cepe| +E0207277|chipre|chypre| +E0207280|cirrhose|cirrose| +E0207283|coco|cocoa| +E0207284|coco|cocoa| +E0207286|colourant|colorant| +E0207290|cund|cond| +E0207297|Helen B. Taussig|Helen Brooke Taussig| +E0207297|Helen Taussig|Helen Brooke Taussig| +E0207306|William Bowman|Sir William Bowman| +E0207307|co-star|costar| +E0207308|co-star|costar| +E0207315|courante|courant| +E0207321|cuish|cuisse| +E0207340|Dacotah|Dakota| +E0207340|Dacota|Dakota| +E0207368|haemostasia|hemostasia| +E0207379|directrice|directress| +E0207395|Emden|Embden| +E0207435|fantasie|fantasia| +E0207435|phantasia|fantasia| +E0207446|flak|flack| +E0207453|FRA|fra| +E0207454|fuchsin|fuchsine| +E0207455|furore|furor| +E0207476|hun|Hun| +E0207488|Graafian|graafian| +E0207489|Graafian follicle|graafian follicle| +E0207493|grice|grece| +E0207494|griff|griffe| +E0207495|grise|gris| +E0207503|Gila|gila| +E0207513|islot|ilot| +E0207518|indegen|indigene| +E0207532|remead|remede| +E0207546|revetment|revetement| +E0207563|eikon|icon| +E0207563|ikon|icon| +E0207567|JATO|jato| +E0207570|Java|java| +E0207588|rajah|raja| +E0207604|Qatar|Katar| +E0207606|cheloidal|keloidal| +E0207609|knob-like|knoblike| +E0207614|Albert Kent|Albert F. S. Kent| +E0207620|saree|sari| +E0207628|Norman T. Kirk|Norman Thomas Kirk| +E0207631|kurk|kirk| +E0207637|labourer|laborer| +E0207640|Zia|Sia| +E0207662|soia|soja| +E0207662|soya|soja| +E0207689|Laze|Laz| +E0207689|Lazi|Laz| +E0207717|tabu|taboo| +E0207721|tappa|tapa| +E0207724|tatu|tatou| +E0207727|tanned cell haemagglutination|tanned cell hemagglutination| +E0207731|trembler|temblor| +E0207731|tremblor|temblor| +E0207764|laevo|levo| +E0207770|tromp|trompe| +E0207774|timpan|tympan| +E0207784|tumour skin test|tumor skin test| +E0207785|tiro|tyro| +E0207796|ley|lea| +E0207798|ley|leu| +E0207800|Madiera|madeira| +E0207824|mask|masque| +E0207832|meningo-encephalocele|meningoencephalocele| +E0207832|meningo-encephalocoele|meningoencephalocele| +E0207832|meningoencephalocoele|meningoencephalocele| +E0207838|valour|valor| +E0207843|venene|venin| +E0207864|Wiskott Aldrich syndrome|Wiskcott-Aldrich syndrome| +E0207884|myrbane oil|mirbane oil| +E0207886|moffette|mofette| +E0207917|multi-lobed|multilobed| +E0207957|Myxobacterales|Myxobacteriales| +E0207963|Martius Yellow|Martius yellow| +E0207976|mhorr|mohr| +E0207977|disulfonate|disulphonate| +E0207993|muron|myron| +E0207999|Napa|napa| +E0208019|navette|navet| +E0208028|Nitrobacteraceae|Nitrobacteriaceae| +E0208038|non-tropical|nontropical| +E0208058|niuean|Niuean| +E0208059|enanthylate|oenanthylate| +E0208063|oligidria|olighidria| +E0208064|oligochete|oligochaete| +E0208065|oligochete|oligochaete| +E0208091|passee|passe| +E0208093|Pax|pax| +E0208101|HEXA|Hex A| +E0208106|cava|kava| +E0208106|kavakava|kava| +E0208117|lim.|lim| +E0208127|phosphor|phosphore| +E0208131|pic|pik| +E0208131|pike|pik| +E0208146|platine|Platine| +E0208154|poesy|poesie| +E0208156|politique|Politique| +E0208163|pomeis|pomme| +E0208164|poulp|poulpe| +E0208165|MIN|min| +E0208165|min.|min| +E0208172|premiere|premier| +E0208195|migg|mig| +E0208226|Rect.|rect.| +E0208241|Tal.|tal| +E0208241|tal.|tal| +E0208277|wy|wye| +E0208293|re-adaptation|readaptation| +E0208294|re-animation|reanimation| +E0208297|re-conversion|reconversion| +E0208303|HYP|Hyp| +E0208303|hyp.|Hyp| +E0208304|hyp|HYP| +E0208309|insulin degrading activity|insulin-degrading activity| +E0208312|IE|I.E.| +E0208315|I and E|I & E| +E0208315|I&E|I & E| +E0208323|IMI|Imi| +E0208325|INO|Ino| +E0208325|ino.|Ino| +E0208335|KO|K/O| +E0208336|KO|K/O| +E0208341|lim.|lim| +E0208342|LIV|liv| +E0208344|LO|lo| +E0208344|lo.|lo| +E0208345|LO|lo| +E0208345|lo.|lo| +E0208346|LO|lo| +E0208346|lo.|lo| +E0208353|lin|lin.| +E0208354|lin|lin.| +E0208357|mi|mi.| +E0208358|mi|mi.| +E0208359|MI|M.I.| +E0208362|mesio-incisal|mesioincisal| +E0208371|mot|Mot| +E0208387|nat.|Nat| +E0208388|nat.|Nat| +E0208397|neo|neo.| +E0208399|N.O.A.|NOA| +E0208405|OH|o.h.| +E0208405|oh|o.h.| +E0208406|om|o.m.| +E0208409|OTO|oto.| +E0208409|Oto|oto.| +E0208433|acute oedematous pancreatitis|acute edematous pancreatitis| +E0208435|pean|peen| +E0208436|pean|peen| +E0208437|pean|paean| +E0208438|alpha-1 foetoprotein|alpha-1 fetoprotein| +E0208438|alpha1 fetoprotein|alpha-1 fetoprotein| +E0208438|alpha1 foetoprotein|alpha-1 fetoprotein| +E0208452|acute generalised tuberculosis|acute generalized tuberculosis| +E0208453|pur.|pur| +E0208457|polyurethan|polyurethane| +E0208460|aspartylhydroxaminic acid|aspartyl-hydroxaminic acid| +E0208461|rayah|raya| +E0208467|antihaemophilic globulin A|antihemophilic globulin A| +E0208472|anti-Muellerian hormone|anti-mullerian hormone| +E0208472|anti-Mullerian hormone|anti-mullerian hormone| +E0208472|anti-muellerian hormone|anti-mullerian hormone| +E0208474|acridinylamine methanesulfon-m-anisidide|acridinylamine methanesulphon-m-anisidide| +E0208481|antipernicious anaemia|antipernicious anemia| +E0208498|jour.|jour| +E0208501|hun.|hun| +E0208518|cephalo pelvic disproportion|cephalopelvic disproportion| +E0208518|cephalo-pelvic disproportion|cephalopelvic disproportion| +E0208529|desoxycorticosterone acetate|deoxycorticosterone acetate| +E0208530|deoxycholate citrate agar|deoxycholate-citrate agar| +E0208531|LAR|l.a.r.| +E0208531|lar|l.a.r.| +E0208534|LAR|lar.| +E0208535|lar.|lar| +E0208550|desoxycholic|deoxycholic| +E0208572|ethyl methanesulphonate|ethyl methanesulfonate| +E0208576|LAM|lam.| +E0208576|Lam|lam.| +E0208576|lam|lam.| +E0208588|rontgen|roentgen| +E0208589|equivalent rontgen|equivalent roentgen| +E0208591|oesophageal rupture|esophageal rupture| +E0208592|oestradiol receptor|estradiol receptor| +E0208602|fructosediphosphate|fructose diphosphate| +E0208617|gut associated lymphoid tissue|gut-associated lymphoid tissue| +E0208644|glomerular-stimulating hormone|glomerular stimulating hormone| +E0208647|Addison's cheloid|Addison's keloid| +E0208662|Charles Bouchard|Charles Jacques Bouchard| +E0208662|Charles J. Bouchard|Charles Jacques Bouchard| +E0208663|halothane anaesthesia|halothane anesthesia| +E0208664|haemagglutinating antibody|hemagglutinating antibody| +E0208666|Carl Bruch|Carl W. L. Bruch| +E0208680|haemolytic anaemia antigen|hemolytic anemia antigen| +E0208680|haemolytic anemia antigen|hemolytic anemia antigen| +E0208680|hemolytic anaemia antigen|hemolytic anemia antigen| +E0208682|haemagglutinin inhibition|hemagglutinin inhibition| +E0208697|R.R.A. Coombs|R. R. A. Coombs| +E0208700|Burrill Crohn|Burrill B. Crohn| +E0208714|Jules Cloquet|Jules G. Cloquet| +E0208744|Angelo DiGeorge|Angelo M. DiGeorge| +E0208746|John Down|John L. H. Down| +E0208754|lymphadenopathy associated virus|lymphadenopathy-associated virus| +E0208758|leucotactic factor activity|leukotactic factor activity| +E0208768|lipid-mobilizing|lipid mobilizing| +E0208775|leucocyte specific activity|leukocyte specific activity| +E0208775|leucocyte-specific activity|leukocyte specific activity| +E0208775|leukocyte-specific activity|leukocyte specific activity| +E0208782|Alfred Duehrssen|Alfred Duhrssen| +E0208788|large vessel haematocrit|large vessel hematocrit| +E0208832|Wilhelm Erb|Wilhelm H. Erb| +E0208834|Yvonne Barr|Yvonne M. Barr| +E0208845|Karl Westphal|Karl F. O. Westphal| +E0208851|Perthes' disease|Perthes disease| +E0208851|Perthes's disease|Perthes disease| +E0208852|radiation leucaemia virus|radiation leukemia virus| +E0208852|radiation leucemia virus|radiation leukemia virus| +E0208852|radiation leukaemia virus|radiation leukemia virus| +E0208862|Simian Acquired Immunodeficiency Syndrome|Simian Acquired Immune Deficiency Syndrome| +E0208872|wide-awake|wide awake| +E0208889|Robert Graves|Robert J. Graves| +E0208890|Moritz Kaposi|Moritz K. Kaposi| +E0208901|Meckel's syndrome|Meckel syndrome| +E0208906|Pyotr Nikolsky|Pyotr V. Nikolsky| +E0208908|James Paget|Sir James Paget| +E0208910|drachm|dram| +E0208919|Georg Perthes|Georg C. Perthes| +E0208920|Perthes test|Perthes' test| +E0208920|Perthes's test|Perthes' test| +E0208927|broncho-alveolar lavage|bronchoalveolar lavage| +E0208930|de Quervain|Quervain| +E0208937|augmentation mammaplasty|augmentation mammoplasty| +E0208948|beta-sitosterol|beta sitosterol| +E0208964|bovine papillomavirus|bovine papilloma virus| +E0208991|cerebello-pontine angle|cerebellopontine angle| +E0208999|cervical oesophagus|cervical esophagus| +E0209009|chorioidal|choroidal| +E0209009|chorioid|choroidal| +E0209009|choroid|choroidal| +E0209011|chronic leucaemia|chronic leukemia| +E0209011|chronic leucemia|chronic leukemia| +E0209011|chronic leukaemia|chronic leukemia| +E0209012|chronic lymphatic leucaemia|chronic lymphatic leukemia| +E0209012|chronic lymphatic leucemia|chronic lymphatic leukemia| +E0209012|chronic lymphatic leukaemia|chronic lymphatic leukemia| +E0209025|congenital pseudarthrosis|congenital pseudoarthrosis| +E0209043|dermatological procedure|dermatologic procedure| +E0209049|Schroeder oral nasal directional stylette|Schroeder oral/nasal directional stylette| +E0209049|Schroeder oral nasal directional stylet|Schroeder oral/nasal directional stylette| +E0209049|Schroeder oral-nasal directional stylette|Schroeder oral/nasal directional stylette| +E0209049|Schroeder oral-nasal directional stylet|Schroeder oral/nasal directional stylette| +E0209049|Schroeder oral/nasal directional stylet|Schroeder oral/nasal directional stylette| +E0209050|Schroeder stylet|Schroeder stylette| +E0209069|distal phalange|distal phalanx| +E0209082|Recklinghausen's tumour|Recklinghausen's tumor| +E0209089|earlobe|ear lobe| +E0209095|ectopic foetus|ectopic fetus| +E0209102|Otto Schirmer|Otto W. A. Schirmer| +E0209102|Otto W.A. Schirmer|Otto W. A. Schirmer| +E0209105|Alexander J.C. Skene|Alexander J. C. Skene| +E0209105|Alexander Skene|Alexander J. C. Skene| +E0209110|endoscopic catheterisation|endoscopic catheterization| +E0209111|oesophageal diverticulum|esophageal diverticulum| +E0209113|oesophageal mucous membrane|esophageal mucous membrane| +E0209114|oestrogen binding protein|estrogen binding protein| +E0209115|George F. Still|Sir George F. Still| +E0209115|George Still|Sir George F. Still| +E0209115|Sir George Still|Sir George F. Still| +E0209118|ethmoidal sinus|ethmoid sinus| +E0209132|R.D. Sweet|R. D. Sweet| +E0209140|foetal head|fetal head| +E0209141|foetal malnutrition|fetal malnutrition| +E0209142|Jacques Tenon|Jacques R. Tenon| +E0209143|foetal position|fetal position| +E0209144|foetal presentation|fetal presentation| +E0209152|Volkmann's chilitis|Volkmann's cheilitis| +E0209157|Robert Wood|Robert W. Wood| +E0209170|foster-child|foster child| +E0209176|Douglas pouch|Douglas' pouch| +E0209176|Douglas's pouch|Douglas' pouch| +E0209179|Douglas's abscess|Douglas' abscess| +E0209198|grey matter|gray matter| +E0209204|heavy-chain disease|heavy chain disease| +E0209207|haemagglutination assay|hemagglutination assay| +E0209214|left-to-right shunt|left to right shunt| +E0209218|haemoglobin C disease|hemoglobin C disease| +E0209219|haemoglobin H disease|hemoglobin H disease| +E0209236|history-taking|history taking| +E0209264|hypoplastic left-heart syndrome|hypoplastic left heart syndrome| +E0209283|infra-spinatus muscle|infraspinatus muscle| +E0209297|mast cell tumour|mast cell tumor| +E0209312|intervertebral disk|intervertebral disc| +E0209315|intracerebral haematoma|intracerebral hematoma| +E0209343|meticillin|methicillin| +E0209348|methylbromide|methyl bromide| +E0209417|traumatic haemorrhage|traumatic hemorrhage| +E0209436|typhoid-paratyphoid vaccine|typhoid paratyphoid vaccine| +E0209465|non myelinated nerve fibre|non myelinated nerve fiber| +E0209465|non-myelinated nerve fiber|non myelinated nerve fiber| +E0209465|non-myelinated nerve fibre|non myelinated nerve fiber| +E0209465|nonmyelinated nerve fiber|non myelinated nerve fiber| +E0209465|nonmyelinated nerve fibre|non myelinated nerve fiber| +E0209506|white-matter|white matter| +E0209573|lor|LOR| +E0209580|vif|VIF| +E0209585|sor|SOR| +E0209588|vpu|VPU| +E0209619|FTA-Abs|FTA-ABS| +E0209620|FTA ABS test|FTA-ABS test| +E0209620|FTA-Abs test|FTA-ABS test| +E0209620|FTA-abs test|FTA-ABS test| +E0209625|anterior grey column|anterior gray column| +E0209626|lateral grey column|lateral gray column| +E0209636|post-operative haemorrhage|postoperative hemorrhage| +E0209636|post-operative hemorrhage|postoperative hemorrhage| +E0209636|postoperative haemorrhage|postoperative hemorrhage| +E0209671|pseudo-rabies virus|pseudorabies virus| +E0209691|recto-sigmoid junction|rectosigmoid junction| +E0209721|ribcage|rib cage| +E0209733|sacro-iliac joint|sacroiliac joint| +E0209785|confluent, reticulate papillomatosis|confluent reticulate papillomatosis| +E0209797|sodium sulphate|sodium sulfate| +E0209806|soft-tissue|soft tissue| +E0209830|oesophageal manometry|esophageal manometry| +E0209831|oesophageal motility|esophageal motility| +E0209837|oestrogen receptor protein|estrogen receptor protein| +E0209843|electronmicroscope|electron microscope| +E0209848|foetal erythroblastosis|fetal erythroblastosis| +E0209849|foetal erythrocyte|fetal erythrocyte| +E0209861|haemagglutinating encephalomyelitis|hemagglutinating encephalomyelitis| +E0209869|haemagglutination inhibition antibody|hemagglutination inhibition antibody| +E0209870|haemagglutination inhibition assay|hemagglutination inhibition assay| +E0209871|haemagglutination inhibitory antibody|hemagglutination inhibitory antibody| +E0209880|individualised education programme|individualized education program| +E0209880|individualised education program|individualized education program| +E0209880|individualized education programme|individualized education program| +E0209895|streptococcus group A|streptococcus Group A| +E0209914|macrophage activating factor|macrophage-activating factor| +E0209962|suface active agent|surface-active agent| +E0209964|mouse ovarian tumour|mouse ovarian tumor| +E0209968|myelo-proliferative disease|myeloproliferative disease| +E0209992|non stress test|nonstress test| +E0209992|non-stress test|nonstress test| +E0210021|thoracic oesophagus|thoracic esophagus| +E0210029|ornithine carbamoyl transferase|ornithine carbamoyltransferase| +E0210076|plasmogen-activator inhibitor|plasmogen activator inhibitor| +E0210090|para-hydroxymercuribenzoate|parahydroxymercuribenzoate| +E0210094|paroxysmal nocturnal haemoglobinuria|paroxysmal nocturnal hemoglobinuria| +E0210099|perceptual organisation|perceptual organization| +E0210100|pancreatic oncofoetal antigen|pancreatic oncofetal antigen| +E0210117|prolactin releasing factor|prolactin-releasing factor| +E0210118|pyrogen releasing factor|pyrogen-releasing factor| +E0210136|reninangiotensin|renin angiotensin| +E0210155|ruptured disk|ruptured disc| +E0210220|somatisation disorder|somatization disorder| +E0210241|ASO titre|ASO titer| +E0210248|salt free|salt-free| +E0210249|sugar free|sugar-free| +E0210250|sclerosing leucoencephalopathy|sclerosing leukoencephalopathy| +E0210251|secondary leucaemia|secondary leukemia| +E0210251|secondary leucemia|secondary leukemia| +E0210251|secondary leukaemia|secondary leukemia| +E0210260|secondary pulmonary haemosiderosis|secondary pulmonary hemosiderosis| +E0210266|somatotropin releasing hormone|somatotropin-releasing hormone| +E0210267|speech sound discrimination|speech-sound discrimination| +E0210269|single radial haemolysdis|single radial hemolysis| +E0210285|thyroxine-binding globulin|thyroxin-binding globulin| +E0210298|tumour growth factor|tumor growth factor| +E0210300|T cell growth factor|T-cell growth factor| +E0210317|ventriculo-atrial|ventriculoatrial| +E0210324|video disc|video disk| +E0210324|video-disc|video disk| +E0210324|video-disk|video disk| +E0210372|alouatta|alouatte| +E0210380|lateral crico-arytenoid muscle|lateral cricoarytenoid muscle| +E0210390|cell mediated lympholysis|cell-mediated lympholysis| +E0210392|amuck|amok| +E0210401|acral-lentiginous melanoma|acral lentiginous melanoma| +E0210416|mobile caecum|mobile cecum| +E0210454|posterior crico-arytenoid muscle|posterior cricoarytenoid muscle| +E0210455|acoenaesthesia|acenesthesia| +E0210480|coeliac lymph node|celiac lymph node| +E0210549|acromio-clavicular ligament|acromioclavicular ligament| +E0210576|acute splenic tumour|acute splenic tumor| +E0210579|adenomatoid tumour|adenomatoid tumor| +E0210581|AMP|amp.| +E0210584|adiadochokinesis|adiadochokinesia| +E0210584|adiadokokinesia|adiadochokinesia| +E0210584|adiadokokinesis|adiadochokinesia| +E0210593|aerocoele|aerocele| +E0210629|Aicardi syndrome|Aicardi's syndrome| +E0210650|aliquorrhoea|aliquorrhea| +E0210673|allergic contact dermitis|allergic contact dermatitis| +E0210698|Alpers disease|Alpers' disease| +E0210698|Alpers's disease|Alpers' disease| +E0210706|Bernard Alpers|Bernard Jacob Alpers| +E0210706|Bernard J. Alpers|Bernard Jacob Alpers| +E0210720|Alstrom syndrome|Alstrom's syndrome| +E0210723|Carl Alstrom|Carl Henry Alstrom| +E0210723|Carl H. Alstrom|Carl Henry Alstrom| +E0210735|del Castillo|Del Castillo| +E0210738|E. B. Del Castillo|E. B. del Castillo| +E0210745|aluminium sulphate|aluminum sulfate| +E0210771|intra-articular ligament|intraarticular ligament| +E0210815|ilio-femoral ligament|iliofemoral ligament| +E0210818|below knee amputation|below-knee amputation| +E0210840|alpha-amylase|alpha amylase| +E0210864|atherosclerotic aneurism|atherosclerotic aneurysm| +E0210868|cylindroid aneurism|cylindroid aneurysm| +E0210872|aneurismal bone cyst|aneurysmal bone cyst| +E0210874|aneurismal haematoma|aneurysmal hematoma| +E0210874|aneurismal hematoma|aneurysmal hematoma| +E0210874|aneurysmal haematoma|aneurysmal hematoma| +E0210919|epiphysial line|epiphyseal line| +E0210989|cell-bound antibody|cell bound antibody| +E0210992|cross reacting antibody|cross-reacting antibody| +E0210996|antigen-combining site|antigen combining site| +E0211010|antihaemophilic factor A|antihemophilic factor A| +E0211012|antihaemophilic factor C|antihemophilic factor C| +E0211025|Purkinje fibre|Purkinje fiber| +E0211084|oesopohageal artery|esophageal artery| +E0211093|right gastro-epiploic artery|right gastroepiploic artery| +E0211094|left gastro-epiploic artery|left gastroepiploic artery| +E0211129|Argentinian haemorrhagic fever|Argentinian hemorrhagic fever| +E0211225|autoeczematisation|autoeczematization| +E0211226|autoerythrocyte sensitisation syndrome|autoerythrocyte sensitization syndrome| +E0211270|baraesthesia|baresthesia| +E0211344|oesophageal vein|esophageal vein| +E0211351|barium sulphide|barium sulfide| +E0211403|John B. Beckwith|John Bruce Beckwith| +E0211403|John Beckwith|John Bruce Beckwith| +E0211407|Hans R. Wiedemann|Hans Rudolf Wiedemann| +E0211407|Hans Wiedemann|Hans Rudolf Wiedemann| +E0211412|inferior haemorrhoidal vein|inferior hemorrhoidal vein| +E0211413|middle haemorrhoidal vein|middle hemorrhoidal vein| +E0211414|superior haemorrhoidal vein|superior hemorrhoidal vein| +E0211418|circolectric bed|CircOlectric bed| +E0211436|Edward Bennett|Edward Hallaran Bennett| +E0211436|Edward H. Bennett|Edward Hallaran Bennett| +E0211478|bird headed dwarf|bird-headed dwarf| +E0211486|blackfly|black fly| +E0211499|blood group antigen|blood-group antigen| +E0211510|Bolivian haemorrhagic fever|Bolivian hemorrhagic fever| +E0211517|bony callous|bony callus| +E0211525|oesophageal impression|esophageal impression| +E0211538|bot-fly|bot fly| +E0211538|botfly|bot fly| +E0211548|brewers yeast|brewer's yeast| +E0211548|brewers' yeast|brewer's yeast| +E0211563|oesophageal gland|esophageal gland| +E0211564|broncho-esophageal muscle|bronchoesophageal muscle| +E0211564|broncho-oesophageal muscle|bronchoesophageal muscle| +E0211564|bronchooesophageal muscle|bronchoesophageal muscle| +E0211565|pleuro-esophageal muscle|pleuroesophageal muscle| +E0211565|pleuro-oesophageal muscle|pleuroesophageal muscle| +E0211565|pleurooesophageal muscle|pleuroesophageal muscle| +E0211580|Brown Sequard syndrome|Brown-Sequard syndrome| +E0211580|Brown Sequard's syndrome|Brown-Sequard syndrome| +E0211586|Bruns's syndrome|Bruns' syndrome| +E0211599|haemorrhoidal zone|hemorrhoidal zone| +E0211605|Bull.|bull.| +E0211605|bull|bull.| +E0211606|Bull.|bull.| +E0211606|bull|bull.| +E0211633|cafe-au-lait spot|cafe au lait spot| +E0211641|calcosphaerite|calcospherite| +E0211670|capillary haemangioma|capillary hemangioma| +E0211697|car-sickness|car sickness| +E0211697|carsickness|car sickness| +E0211700|carboxymethyl cellulose sodium|carboxymethylcellulose sodium| +E0211726|motor end-plate|motor end plate| +E0211726|motor endplate|motor end plate| +E0211729|carnosinaemia|carnosinemia| +E0211730|Carolis disease|Caroli's disease| +E0211735|carotodynia|carotidynia| +E0211738|carphology|carphologia| +E0211739|Golgi Mazzoni corpuscle|Golgi-Mazzoni corpuscle| +E0211762|cat-eye syndrome|cat eye syndrome| +E0211764|cat-scratch fever|cat scratch fever| +E0211773|parieto-occipital fissure|parietooccipital fissure| +E0211798|mamillary body|mammillary body| +E0211804|palaeocerebellum|paleocerebellum| +E0211810|olivo-cerebellar fiber|olivocerebellar fiber| +E0211810|olivo-cerebellar fibre|olivocerebellar fiber| +E0211810|olivocerebellar fibre|olivocerebellar fiber| +E0211835|auriculo-temporal nerve|auriculotemporal nerve| +E0211852|intercosto-brachial nerve|intercostobrachial nerve| +E0211855|ilio-inguinal nerve|ilioinguinal nerve| +E0211859|kelosomus|celosomus| +E0211866|haemorrhoidal nerve|hemorrhoidal nerve| +E0211924|zonular fibre|zonular fiber| +E0211948|cerebro-hepato-renal syndrome|cerebrohepatorenal syndrome| +E0211948|cerebro-hepatorenal syndrome|cerebrohepatorenal syndrome| +E0211949|extraperitoneal caesarean section|extraperitoneal cesarean section| +E0211949|extraperitoneal caesarian section|extraperitoneal cesarean section| +E0211949|extraperitoneal cesarian section|extraperitoneal cesarean section| +E0211956|Charcot's arthropathia|Charcot's arthropathy| +E0211960|chilitis glandularis|cheilitis glandularis| +E0211961|cheilo-gnatho-palato-schisis|cheilognathopalatoschisis| +E0211961|cheilo-gnatho-palatoschisis|cheilognathopalatoschisis| +E0211964|cheilo-gnatho-uranoschisis|cheilognathouranoschisis| +E0211964|cheilo-gnathouranoschisis|cheilognathouranoschisis| +E0211966|chilosis|cheilosis| +E0211996|chief-cell adenoma|chief cell adenoma| +E0212008|gynaecoid pelvis|gynecoid pelvis| +E0212017|chloriodised oil|chloriodized oil| +E0212065|selenium sulphide|selenium sulfide| +E0212083|hypouricaemia|hypouricemia| +E0212086|hyperproteinaemia|hyperproteinemia| +E0212087|urobilinogenaemia|urobilinogenemia| +E0212091|wristdrop|wrist drop| +E0212099|Christ-Siemens Touraine syndrome|Christ-Siemens-Touraine syndrome| +E0212101|anal eroticism|anal erotism| +E0212103|Hermann Siemens|Hermann Werner Siemens| +E0212103|Hermann W. Siemens|Hermann Werner Siemens| +E0212112|chromidrosis|chromhidrosis| +E0212144|Cyclops|cyclops| +E0212156|irideraemia|irideremia| +E0212163|Frederic Collet|Frederic Justin Collet| +E0212163|Frederic J. Collet|Frederic Justin Collet| +E0212166|Jean A. Sicard|Jean Athanase Sicard| +E0212166|Jean Sicard|Jean Athanase Sicard| +E0212179|Congo-Crimean haemorrhagic fever|Congo-Crimean hemorrhagic fever| +E0212214|Louis F. Terrier|Louis Felix Terrier| +E0212214|Louis Terrier|Louis Felix Terrier| +E0212228|double outlet right ventricle|double-outlet right ventricle| +E0212230|John Crigler, Jr.|John F. Crigler, Jr.| +E0212230|John Crigler, Junior|John F. Crigler, Jr.| +E0212230|John Crigler|John F. Crigler, Jr.| +E0212230|John F. Crigler, Junior|John F. Crigler, Jr.| +E0212230|John F. Crigler|John F. Crigler, Jr.| +E0212234|Victor A. Najjar|Victor Assad Najjar| +E0212234|Victor Najjar|Victor Assad Najjar| +E0212236|Crimean-Congo haemorrhagic fever|Crimean-Congo hemorrhagic fever| +E0212243|Paul C. von Baumgarten|Paul Clemens von Baumgarten| +E0212243|Paul von Baumgarten|Paul Clemens von Baumgarten| +E0212249|Curtius syndrome|Curtius' syndrome| +E0212249|Curtius's syndrome|Curtius' syndrome| +E0212253|claw hand|clawhand| +E0212257|claw foot|clawfoot| +E0212270|normal pressure hydrocephalus|normal-pressure hydrocephalus| +E0212284|Dejerine Roussy syndrome|Dejerine-Roussy syndrome| +E0212287|haemorrhagic ascites|hemorrhagic ascites| +E0212295|superficial punctate ceratitis|superficial punctate keratitis| +E0212330|adenomatous goitre|adenomatous goiter| +E0212340|benign haemangioendothelioma|benign hemangioendothelioma| +E0212344|binasal hemianopsia|binasal hemianopia| +E0212346|bitemporal hemianopsia|bitemporal hemianopia| +E0212353|active hyperaemia|active hyperemia| +E0212362|anaemic infarct|anemic infarct| +E0212390|tropical phagedaenic ulcer|tropical phagedenic ulcer| +E0212397|phagedaenic|phagedenic| +E0212398|Swiss cheese hyperplasia|Swiss-cheese hyperplasia| +E0212407|Q-fever|Q fever| +E0212411|dengue haemorrhagic fever|dengue hemorrhagic fever| +E0212414|jaagsiekte|jaagziekte| +E0212414|jagziekte|jaagziekte| +E0212423|pharyngo conjunctival fever|pharyngoconjunctival fever| +E0212423|pharyngo-conjunctival fever|pharyngoconjunctival fever| +E0212429|multifocal progressive leucoencephalopathy|multifocal progressive leukoencephalopathy| +E0212431|oesophagojejunoplasty|esophagojejunoplasty| +E0212434|haemorrhagic smallpox|hemorrhagic smallpox| +E0212441|ventriculo-peritoneal shunt|ventriculoperitoneal shunt| +E0212452|cheloidal blastomycosis|keloidal blastomycosis| +E0212474|milkers' node|milker's node| +E0212480|visceral leishmaniosis|visceral leishmaniasis| +E0212491|globoid leucodystrophy|globoid leukodystrophy| +E0212502|hypercalcaemia syndrome|hypercalcemia syndrome| +E0212504|histidinaemia|histidinemia| +E0212504|histinaemia|histidinemia| +E0212505|methylmalonicaciduria|methylmalonic aciduria| +E0212506|Lesch Nyhan syndrome|Lesch-Nyhan syndrome| +E0212512|Launois syndrome|Launois' syndrome| +E0212512|Launois's syndrome|Launois' syndrome| +E0212518|William L. Nyhan|William L. Nyhan, Jr.| +E0212518|William Nyhan, Jr.|William L. Nyhan, Jr.| +E0212518|William Nyhan, Junior|William L. Nyhan, Jr.| +E0212522|Dubin Johnson syndrome|Dubin-Johnson syndrome| +E0212523|ovarian remnant syndrome|ovarian-remnant syndrome| +E0212527|Gianotti Crosti syndrome|Gianotti-Crosti syndrome| +E0212530|tropical anhidrotic aesthenia|tropical anhidrotic asthenia| +E0212544|San Filippo syndrome|Sanfilippo's syndrome| +E0212544|San Filippo's syndrome|Sanfilippo's syndrome| +E0212544|Sanfilippo syndrome|Sanfilippo's syndrome| +E0212546|generalised morphea|generalized morphea| +E0212552|Job syndrome|Job's syndrome| +E0212554|periodic neutropaenia|periodic neutropenia| +E0212556|parahaemophilia|parahemophilia| +E0212557|haemophilia B|hemophilia B| +E0212558|Kasabach Merritt syndrome|Kasabach-Merritt syndrome| +E0212565|foetal face syndrome|fetal face syndrome| +E0212584|neonatal tyrosinaemia|neonatal tyrosinemia| +E0212588|cri-du-chat syndrome|cri du chat syndrome| +E0212595|hyperprolinaemia|hyperprolinemia| +E0212598|hydroxyprolinaemia|hydroxyprolinemia| +E0212599|short bowel syndrome|short-bowel syndrome| +E0212600|hyperlysinaemia|hyperlysinemia| +E0212605|stiff heart syndrome|"stiff heart" syndrome| +E0212607|citrullinaemia|citrullinemia| +E0212608|glutathionaemia|glutathionemia| +E0212624|hyper-beta-alaninaemia|hyper-beta-alaninemia| +E0212627|hypervalinaemia|hypervalinemia| +E0212629|subacute myelo-optico-neuropathy|subacute myelo-opticoneuropathy| +E0212629|subacute myeloopticoneuropathy|subacute myelo-opticoneuropathy| +E0212634|methylmalic acidaemia|methylmalonic acidemia| +E0212655|locked-in syndrome|"locked-in" syndrome| +E0212657|galactorrhoea-amenorrhoea syndrome|galactorrhea-amenorrhea syndrome| +E0212662|Kluver Bucy syndrome|Kluver-Bucy syndrome| +E0212666|diffuse toxic goitre|diffuse toxic goiter| +E0212677|pia arachnoid|pia-arachnoid| +E0212695|Meigs syndrome|Meigs' syndrome| +E0212695|Meigs's syndrome|Meigs' syndrome| +E0212696|testicular feminisation syndrome|testicular feminization syndrome| +E0212698|Joe Meigs|Joe Vincent Meigs| +E0212698|Joe V. Meigs|Joe Vincent Meigs| +E0212731|Robert M. Zollinger|Robert Milton Zollinger| +E0212731|Robert Zollinger|Robert Milton Zollinger| +E0212734|Edwin Ellison|Edwin H. Ellison| +E0212740|Morgagni Stewart Morel syndrome|Morgagni-Stewart-Morel syndrome| +E0212761|posttraumatic osteoporosis|post-traumatic osteoporosis| +E0212815|alpha thalassaemia|alpha-thalassemia| +E0212815|alpha thalassemia|alpha-thalassemia| +E0212815|alpha-thalassaemia|alpha-thalassemia| +E0212832|delta thalassaemia|delta-thalassemia| +E0212832|delta thalassemia|delta-thalassemia| +E0212832|delta-thalassaemia|delta-thalassemia| +E0212833|thalassanaemia major|thalassanemia major| +E0212834|thalassanaemia minor|thalassanemia minor| +E0212837|alpha thalassanaemia|alpha-thalassanemia| +E0212837|alpha thalassanemia|alpha-thalassanemia| +E0212837|alpha-thalassanaemia|alpha-thalassanemia| +E0212838|beta thalassanaemia|beta-thalassanemia| +E0212838|beta thalassanemia|beta-thalassanemia| +E0212838|beta-thalassanaemia|beta-thalassanemia| +E0212840|delta thalassanaemia|delta-thalassanemia| +E0212840|delta thalassanemia|delta-thalassanemia| +E0212840|delta-thalassanaemia|delta-thalassanemia| +E0212843|delta beta thalassaemia|delta beta-thalassemia| +E0212843|delta beta thalassemia|delta beta-thalassemia| +E0212843|delta beta-thalassaemia|delta beta-thalassemia| +E0212843|delta-beta thalassaemia|delta beta-thalassemia| +E0212843|delta-beta thalassemia|delta beta-thalassemia| +E0212845|delta beta thalassanaemia|delta beta-thalassanemia| +E0212845|delta beta thalassanemia|delta beta-thalassanemia| +E0212845|delta beta-thalassanaemia|delta beta-thalassanemia| +E0212854|sclero-corneal junction|sclerocorneal junction| +E0212859|meridional fibre|meridional fiber| +E0212864|paroxysmal cold haemoglobinuria|paroxysmal cold hemoglobinuria| +E0212866|march haemoglobinuria|march hemoglobinuria| +E0212868|haemolytic uraemic syndrome|hemolytic-uremic syndrome| +E0212868|haemolytic-uraemic syndrome|hemolytic-uremic syndrome| +E0212868|hemolytic uremic syndrome|hemolytic-uremic syndrome| +E0212874|lazy leucocyte syndrome|lazy leukocyte syndrome| +E0212879|cyclic neutropaenia|cyclic neutropenia| +E0212881|familial benign chronic neutropaenia|familial benign chronic neutropenia| +E0212884|chronic hypoplastic neutropaenia|chronic hypoplastic neutropenia| +E0212888|hyperheparinaemia|hyperheparinemia| +E0212890|hyperheparinaemic|hyperheparinemic| +E0212900|haemangioma-thrombocytopenia syndrome|hemangioma-thrombocytopenia syndrome| +E0212901|X-linked infantile agammaglobulinaemia|X-linked infantile agammaglobulinemia| +E0212902|transient hypogammaglobulinaemia|transient hypogammaglobulinemia| +E0212908|hereditary angio-neurotic edema|hereditary angioneurotic edema| +E0212908|hereditary angio-neurotic oedema|hereditary angioneurotic edema| +E0212908|hereditary angioneurotic oedema|hereditary angioneurotic edema| +E0212909|haemolytic disease|hemolytic disease| +E0212912|neonatal neutropaenia|neonatal neutropenia| +E0212916|cryofibrinogenaemia|cryofibrinogenemia| +E0212918|generalised anaphylaxis|generalized anaphylaxis| +E0212932|Seckel syndrome|Seckel's syndrome| +E0212951|Sjogren Larsson syndrome|Sjogren-Larsson syndrome| +E0212960|prune belly syndrome|prune-belly syndrome| +E0212963|heterophilic leucocyte|heterophilic leukocyte| +E0212965|megacaryoblast|megakaryoblast| +E0212971|John M. Opitz|John Marius Opitz| +E0212971|John Opitz|John Marius Opitz| +E0212972|ectrodactyly ectodermal dysplasia clefting syndrome|ectrodactyly-ectodermal dysplasia-clefting syndrome| +E0212973|hypoglossia hypodactyly syndrome|hypoglossia-hypodactyly syndrome| +E0212974|haemolymph node|hemolymph node| +E0212997|Ellis Van Creveld syndrome|Ellis-van Creveld syndrome| +E0212997|Ellis van Creveld syndrome|Ellis-van Creveld syndrome| +E0212997|Ellis-Van Creveld syndrome|Ellis-van Creveld syndrome| +E0212999|Richard Ellis|Richard White Bernhard Ellis| +E0212999|Richard W. B. Ellis|Richard White Bernhard Ellis| +E0213000|Simon Van Creveld|Simon van Creveld| +E0213001|Van Creveld|van Creveld| +E0213010|foetal hydantoin syndrome|fetal hydantoin syndrome| +E0213013|Klippel Feil syndrome|Klippel-Feil syndrome| +E0213015|Laurence Moon Biedl syndrome|Laurence-Moon-Biedl syndrome| +E0213017|Robert Moon|Robert C. Moon| +E0213021|Williams' syndrome|Williams syndrome| +E0213025|retro-caecal lymph node|retrocecal lymph node| +E0213025|retro-cecal lymph node|retrocecal lymph node| +E0213025|retrocaecal lymph node|retrocecal lymph node| +E0213033|McCune Albright syndrome|McCune-Albright syndrome| +E0213049|Harry F. Klinefelter, Jr.|Harry Fitch Klinefelter, Jr.| +E0213049|Harry F. Klinefelter, Junior|Harry Fitch Klinefelter, Jr.| +E0213049|Harry Klinefelter, Jr.|Harry Fitch Klinefelter, Jr.| +E0213060|costo-phrenic angle|costophrenic angle| +E0213066|duodeno-jejunal fold|duodenojejunal fold| +E0213075|lieno-renal ligament|lienorenal ligament| +E0213083|Christian F. Heerfordt|Christian Frederik Heerfordt| +E0213083|Christian Heerfordt|Christian Frederik Heerfordt| +E0213089|G. K. Mallory|G. Kenneth Mallory| +E0213106|post-cholecystectomy syndrome|postcholecystectomy syndrome| +E0213125|Langerhans's granule|Langerhans' granule| +E0213149|proctodaeum|proctodeum| +E0213160|Louis Diamond|Louis Klein Diamond| +E0213160|Louis K. Diamond|Louis Klein Diamond| +E0213173|Goodpasture syndrome|Goodpasture's syndrome| +E0213173|Goodpastures syndrome|Goodpasture's syndrome| +E0213177|right sided heart failure|right-sided heart failure| +E0213177|right-sided heart-failure|right-sided heart failure| +E0213179|left sided heart failure|left-sided heart failure| +E0213179|left-sided heart-failure|left-sided heart failure| +E0213181|Pel Ebstein fever|Pel-Ebstein fever| +E0213185|high output heart-failure|high output heart failure| +E0213185|high-output heart failure|high output heart failure| +E0213185|high-output heart-failure|high output heart failure| +E0213203|hand shoulder syndrome|hand-shoulder syndrome| +E0213210|post-myocardial infarction syndrome|postmyocardial infarction syndrome| +E0213214|Adson's manoeuvre|Adson's maneuver| +E0213227|Hamman Rich syndrome|Hamman-Rich syndrome| +E0213231|William M. Macleod|William Mathieson Macleod| +E0213231|William Macleod|William Mathieson Macleod| +E0213238|Arnold R. Rich|Arnold Rice Rich| +E0213238|Arnold Rich|Arnold Rice Rich| +E0213259|immotile cilia syndrome|immotile-cilia syndrome| +E0213261|Swyer James syndrome|Swyer-James syndrome| +E0213263|Paul Swyer|Paul R. Swyer| +E0213285|Allis's sign|Allis' sign| +E0213298|Thomas's sign|Thomas' sign| +E0213312|Homans's sign|Homans' sign| +E0213314|Nothnagel syndrome|Nothnagel's syndrome| +E0213317|Parinaud syndrome|Parinaud's syndrome| +E0213330|Martin B. Schmidt|Martin Benno Schmidt| +E0213330|Martin Schmidt|Martin Benno Schmidt| +E0213333|Holmes Adie syndrome|Holmes-Adie syndrome| +E0213339|Gordon Holmes|Sir Gordon Morgan Holmes| +E0213339|Gordon M. Holmes|Sir Gordon Morgan Holmes| +E0213339|Gordon Morgan Holmes|Sir Gordon Morgan Holmes| +E0213339|Sir Gordon Holmes|Sir Gordon Morgan Holmes| +E0213339|Sir Gordon M. Holmes|Sir Gordon Morgan Holmes| +E0213341|William Adie|William John Adie| +E0213341|William J. Adie|William John Adie| +E0213342|rubrospinal-cerebellar peduncle syndrome|rubrospinal cerebellar peduncle syndrome| +E0213364|initial apnoea|initial apnea| +E0213365|sleep apnoea syndrome|sleep apnea syndrome| +E0213366|late apnoea|late apnea| +E0213369|deglutition apnoea|deglutition apnea| +E0213370|Kearns-Sayer syndrome|Kearns-Sayre syndrome| +E0213371|traumatic apnoea|traumatic apnea| +E0213373|Thomas Kearns|Thomas P. Kearns| +E0213375|normovolaemia|normovolemia| +E0213378|George Sayre|George P. Sayre| +E0213389|battered child syndrome|battered-child syndrome| +E0213399|low tension glaucoma|low-tension glaucoma| +E0213404|Van Der Hoeve's syndrome|van der Hoeve's syndrome| +E0213406|gram negative bacterium|gram-negative bacterium| +E0213409|water hammer pulse|water-hammer pulse| +E0213418|right to left shunt|right-to-left shunt| +E0213443|dyssebacia|dyssebacea| +E0213463|distoclusion|disto-occlusion| +E0213466|mesioclusion|mesio-occlusion| +E0213473|hypergastrinaemia|hypergastrinemia| +E0213485|over-hydration|overhydration| +E0213495|hydraemia|hydremia| +E0213510|beta 2 microglobulin|beta2-microglobulin| +E0213510|beta-2 microglobulin|beta2-microglobulin| +E0213510|beta-2-microglobulin|beta2-microglobulin| +E0213515|beta lipoprotein|beta-lipoprotein| +E0213515|betalipoprotein|beta-lipoprotein| +E0213538|beta keto reductase|beta-keto-reductase| +E0213568|Nocardia otitidis caviarum|Nocardia otitidis-caviarum| +E0213568|Nocardia otitidiscaviarum|Nocardia otitidis-caviarum| +E0213578|isovaleryl CoA dehydrogenase|isovaleryl-CoA dehydrogenase| +E0213604|sulphite oxidase|sulfite oxidase| +E0213632|dopamine beta mono-oxygenase|dopamine beta-monooxygenase| +E0213632|dopamine beta monooxygenase|dopamine beta-monooxygenase| +E0213632|dopamine beta-mono-oxygenase|dopamine beta-monooxygenase| +E0213632|dopamine-beta-mono-oxygenase|dopamine beta-monooxygenase| +E0213632|dopamine-beta-monooxygenase|dopamine beta-monooxygenase| +E0213633|dopamine beta hydroxylase|dopamine beta-hydroxylase| +E0213646|lecithin cholesterol acyltransferase|lecithin-cholesterol acyltransferase| +E0213649|gamma glutamyl transferase|gamma-glutamyltransferase| +E0213649|gamma glutamyltransferase|gamma-glutamyltransferase| +E0213649|gamma-glutamyl transferase|gamma-glutamyltransferase| +E0213649|gammaglutamyl transferase|gamma-glutamyltransferase| +E0213651|purine-nucleoside phosphorylase|purine nucleoside phosphorylase| +E0213667|RNA directed DNA polymerase|RNA-directed DNA polymerase| +E0213676|DNA directed DNA polymerase|DNA-directed DNA polymerase| +E0213687|UDP glucose pyrophosphorylase|UDPglucose pyrophosphorylase| +E0213701|monkeypoxvirus|monkeypox virus| +E0213704|non A, non B hepatitis virus|non-A, non-B hepatitis virus| +E0213704|non-A non-B hepatitis virus|non-A, non-B hepatitis virus| +E0213711|RNA directed RNA polymerase|RNA-directed RNA polymerase| +E0213728|aliesterase|ali-esterase| +E0213741|steryl sulphatase|steryl sulfatase| +E0213741|sterylsulfatase|steryl sulfatase| +E0213742|chondroitinsulphatase|chondroitinsulfatase| +E0213743|cerebroside sulphatase|cerebroside sulfatase| +E0213754|alpha glucosidase|alpha-glucosidase| +E0213758|glucosyl ceramidase|glucosylceramidase| +E0213779|glycine rich beta glycoprotein|glycine-rich beta glycoprotein| +E0213779|glycine rich beta-glycoprotein|glycine-rich beta glycoprotein| +E0213779|glycine-rich beta-glycoprotein|glycine-rich beta glycoprotein| +E0213822|methylmalonyl CoA racemase|methylmalonyl-CoA racemase| +E0213835|methylmalonyl CoA mutase|methylmalonyl-CoA mutase| +E0213855|physiologic amenorrhoea|physiologic amenorrhea| +E0213856|cryptomenorrhoea|cryptomenorrhea| +E0213858|primary dysmenorrhoea|primary dysmenorrhea| +E0213859|secondary dysmenorrhoea|secondary dysmenorrhea| +E0213860|mechanical dysmenorrhoea|mechanical dysmenorrhea| +E0213861|obstructive dysmenorrhoea|obstructive dysmenorrhea| +E0213864|xenomaenia|xenomenia| +E0213873|induced labour|induced labor| +E0213874|missed labour|missed labor| +E0213878|Braxton Hicks's sign|Braxton Hicks' sign| +E0213879|Braxton Hicks' contraction|Braxton Hicks contraction| +E0213879|Braxton-Hicks contraction|Braxton Hicks contraction| +E0213879|Braxton-Hicks' contraction|Braxton Hicks contraction| +E0213885|foetal souffle|fetal souffle| +E0213887|hydrorrhoea gravidarum|hydrorrhea gravidarum| +E0213910|palikinesia|palicinesia| +E0213927|systematised delusion|systematized delusion| +E0213939|hysterical anaesthesia|hysterical anesthesia| +E0213952|synaesthesia algica|synesthesia algica| +E0213978|knee-jerk reflex|knee jerk reflex| +E0213980|jaw-jerk reflex|jaw jerk reflex| +E0213991|dyserethesia|dyserethism| +E0213992|tactile anaesthesia|tactile anesthesia| +E0213993|doll's-eye reflex|doll's eye reflex| +E0213994|thermal anaesthesia|thermal anesthesia| +E0213995|akinaesthesia|akinesthesia| +E0213996|gargalaesthesia|gargalesthesia| +E0213997|gargalanaesthesia|gargalanesthesia| +E0214020|stimulus generalisation|stimulus generalization| +E0214022|left-handedness|left handedness| +E0214022|lefthandedness|left handedness| +E0214033|doll's-eye sign|doll's eye sign| +E0214034|non-rapid-eye-momement sleep|non-rapid eye movement sleep| +E0214034|nonrapid eye movement sleep|non-rapid eye movement sleep| +E0214037|slow-wave sleep|slow wave sleep| +E0214038|synchronised sleep|synchronized sleep| +E0214041|rapid-eye-movement sleep|rapid eye movement sleep| +E0214044|desynchronised sleep|desynchronized sleep| +E0214046|fast-wave sleep|fast wave sleep| +E0214049|sleep talking|sleeptalking| +E0214049|sleep-talking|sleeptalking| +E0214054|aphemaesthesia|aphemesthesia| +E0214066|fingeragnosia|finger agnosia| +E0214068|body image agnosia|body-image agnosia| +E0214078|limb kinetic apraxia|limb-kinetic apraxia| +E0214087|Bruns's apraxia of gait|Bruns' apraxia of gait| +E0214097|uraemic convulsion|uremic convulsion| +E0214100|hypoliquorrhoea|hypoliquorrhea| +E0214102|follicle-stimulating hormone releasing factor|follicle stimulating hormone releasing factor| +E0214102|follicle-stimulating hormone-releasing factor|follicle stimulating hormone releasing factor| +E0214105|thyrotrophin releasing factor|thyrotropin releasing factor| +E0214105|thyrotrophin-releasing factor|thyrotropin releasing factor| +E0214105|thyrotropin-releasing factor|thyrotropin releasing factor| +E0214106|gonadotropin-releasing factor|gonadotropin releasing factor| +E0214107|prolactin-inhibiting factor|prolactin inhibiting factor| +E0214112|human menopausal gonadotrophin|human menopausal gonadotropin| +E0214120|vitamin B 1|vitamin B1| +E0214120|vitamin B-1|vitamin B1| +E0214132|localised Shwartzman reaction|localized Shwartzman reaction| +E0214133|generalised Shwartzman reaction|generalized Shwartzman reaction| +E0214143|antigen binding site|antigen-binding site| +E0214149|T-antigen|T antigen| +E0214170|copro-antibody|coproantibody| +E0214197|beta-lysin|beta lysin| +E0214198|skin-reactive factor|skin reactive factor| +E0214200|osteoclast-activating factor|osteoclast activating factor| +E0214208|migration-inhibiting factor|migration inhibiting factor| +E0214210|interferon beta|interferon-beta| +E0214213|lymphocyte-activating factor|lymphocyte activating factor| +E0214228|hydrazine sensitive factor|hydrazine-sensitive factor| +E0214230|tumor angiogenesis factor|tumor-angiogenesis factor| +E0214230|tumour angiogenesis factor|tumor-angiogenesis factor| +E0214230|tumour-angiogenesis factor|tumor-angiogenesis factor| +E0214251|reduced haemoglobin|reduced hemoglobin| +E0214255|verdohaemoglobin|verdohemoglobin| +E0214256|haemoglobin Chesapeake|hemoglobin Chesapeake| +E0214258|haemoglobin Seattle|hemoglobin Seattle| +E0214259|haemoglobin Yakima|hemoglobin Yakima| +E0214260|haemoglobin Rainier|hemoglobin Rainier| +E0214277|haemoglobin Gun Hill|hemoglobin Gun Hill| +E0214311|sulphurated lime solution|sulfurated lime solution| +E0214334|R-factor|R factor| +E0214350|petroleum aether|petroleum ether| +E0214393|exudative neurodermitis|exudative neurodermatitis| +E0214396|disseminated neurodermitis|disseminated neurodermatitis| +E0214402|seborrhoeic eczema|seborrheic eczema| +E0214403|sulphoethylmethane|sulfonethylmethane| +E0214404|seborrhoea sicca|seborrhea sicca| +E0214406|seborrhoea adiposa|seborrhea adiposa| +E0214407|seborrhoea oleosa|seborrhea oleosa| +E0214460|localised pustular psoriasis|localized pustular psoriasis| +E0214463|seborrhoeic psoriasis|seborrheic psoriasis| +E0214465|sulphadiazine silver|sulfadiazine silver| +E0214485|lichen plano-pilaris|lichen planopilaris| +E0214498|povidone-iodine|povidone iodine| +E0214506|para-nitrosulphathiazole|para-nitrosulfathiazole| +E0214506|paranitrosulfathiazole|para-nitrosulfathiazole| +E0214506|paranitrosulphathiazole|para-nitrosulfathiazole| +E0214512|phthalylsulphacetamide|phthalylsulfacetamide| +E0214515|phthalylsulphonazole|phthalylsulfonazole| +E0214525|localised scleroderma|localized scleroderma| +E0214527|glucosulphone sodium|glucosulfone sodium| +E0214559|levamfetamine|levamphetamine| +E0214574|uridrosis|urhidrosis| +E0214585|potassium sulphocyanate|potassium sulfocyanate| +E0214606|hang nail|hangnail| +E0214623|leuconychia|leukonychia| +E0214626|onychogryphosis|onychogryposis| +E0214633|indigocarmine|indigo carmine| +E0214635|indigotin disulfonate sodium|indigotindisulfonate sodium| +E0214635|indigotin disulphonate sodium|indigotindisulfonate sodium| +E0214635|indigotindisulphonate sodium|indigotindisulfonate sodium| +E0214657|polyamine methylene resin|polyamine-methylene resin| +E0214660|tumoural calcinosis|tumoral calcinosis| +E0214673|doctyl sodium sulphosuccinate|dioctyl sodium sulfosuccinate| +E0214674|CR(E)ST syndrome|CREST syndrome| +E0214677|ipomoea|ipomea| +E0214692|atlanto-axial subluxation|atlantoaxial subluxation| +E0214695|scapulo-costal syndrome|scapulocostal syndrome| +E0214702|copper sulphate|copper sulfate| +E0214703|cupric sulphate|cupric sulfate| +E0214709|antihaemophilic human plasma|antihemophilic human plasma| +E0214710|antihaemophilic|antihemophilic| +E0214729|malarial haemoglobinuria|malarial hemoglobinuria| +E0214730|haemoglobinuric fever|hemoglobinuric fever| +E0214736|bovine babesiasis|bovine babesiosis| +E0214737|red water fever|red-water fever| +E0214737|redwater fever|red-water fever| +E0214741|equine babesiasis|equine babesiosis| +E0214742|canine babesiasis|canine babesiosis| +E0214751|dilute phosphoric acid|diluted phosphoric acid| +E0214764|diffuse cutaneous leishmaniosis|diffuse cutaneous leishmaniasis| +E0214766|leukovorin calcium|leucovorin calcium| +E0214782|potassium guaiacolsulphonate|potassium guaiacolsulfonate| +E0214790|heart lung machine|heart-lung machine| +E0214799|gluten free diet|gluten-free diet| +E0214804|heat-cramp|heat cramp| +E0214807|protein bound iodine|protein-bound iodine| +E0214808|verminous aneurism|verminous aneurysm| +E0214833|apyrexy|apyrexia| +E0214837|semi-prone position|semiprone position| +E0214838|Sims's position|Sims' position| +E0214843|dorso-sacral position|dorsosacral position| +E0214849|writer's cramp|writers' cramp| +E0214849|writers cramp|writers' cramp| +E0214863|glove anaesthesia|glove anesthesia| +E0214884|fat soluble vitamin|fat-soluble vitamin| +E0214885|water soluble vitamin|water-soluble vitamin| +E0214886|AV|A-V| +E0214904|alpha ketoglutarate glyoxylate carboligase|alpha-ketoglutarate glyoxylate carboligase| +E0214985|primary amenorrhoea|primary amenorrhea| +E0214986|secondary amenorrhoea|secondary amenorrhea| +E0214990|phytanic acid alpha hydroxylase|phytanic acid alpha-hydroxylase| +E0214994|coenaesthesia|cenesthesia| +E0214995|sulfo-iduronidate sulfatase|sulfoiduronate sulfatase| +E0214995|sulpho-iduronidate sulphatase|sulfoiduronate sulfatase| +E0214995|sulphoiduronate sulphatase|sulfoiduronate sulfatase| +E0215008|false labour|false labor| +E0215011|foetal asphyxia|fetal asphyxia| +E0215026|posterior cross bite|posterior crossbite| +E0215036|flutter fibrilation|flutter-fibrillation| +E0215036|flutter fibrillation|flutter-fibrillation| +E0215036|flutter-fibrilation|flutter-fibrillation| +E0215043|phantom-limb pain|phantom limb pain| +E0215066|kinaesthetic hallucination|kinesthetic hallucination| +E0215068|Gowers's sign|Gowers' sign| +E0215071|Gowers's phenomenon|Gowers' phenomenon| +E0215075|dissociated anaesthesia|dissociated anesthesia| +E0215076|topaesthesia|topesthesia| +E0215078|graphaesthesia|graphesthesia| +E0215090|pseudogeusaesthesia|pseudogeusesthesia| +E0215092|colour taste|color taste| +E0215096|taste-blindness|taste blindness| +E0215100|akynesis|akinesis| +E0215103|erythropia|erythropsia| +E0215104|dysdiadochokinesis|dysdiadochokinesia| +E0215104|dysdiadokokinesia|dysdiadochokinesia| +E0215104|dysdiadokokinesis|dysdiadochokinesia| +E0215118|end position nystagmus|end-position nystagmus| +E0215120|diadochokinesis|diadochokinesia| +E0215120|diadokokinesia|diadochokinesia| +E0215120|diadokokinesis|diadochokinesia| +E0215132|tone-deafness|tone deafness| +E0215133|tone-deaf|tone deaf| +E0215173|intra articular fracrure|intra-articular fracture| +E0215194|cochleoorbicular reflex|cochleo-orbicular reflex| +E0215202|setting sun sign|setting-sun sign| +E0215204|direct-light reflex|direct light reflex| +E0215209|cherry red spot|cherry-red spot| +E0215217|flame shaped haemorrhage|flame-shaped hemorrhage| +E0215217|flame shaped hemorrhage|flame-shaped hemorrhage| +E0215217|flame-shaped haemorrhage|flame-shaped hemorrhage| +E0215221|Francis J. Shepherd|Francis John Shepherd| +E0215221|Francis Shepherd|Francis John Shepherd| +E0215223|Penn G. Skillern|Penn Gaskell Skillern| +E0215223|Penn Skillern|Penn Gaskell Skillern| +E0215227|William W. Wagstaffe|William Warwick Wagstaffe| +E0215235|Robert W. Smith|Robert William Smith| +E0215236|factitial dermitis|factitial dermatitis| +E0215258|hydromeningocoele|hydromeningocele| +E0215260|encephalomeningocoele|encephalomeningocele| +E0215261|Hibbs operation|Hibbs' operation| +E0215261|Hibbs's operation|Hibbs' operation| +E0215262|hydrencephalocoele|hydrencephalocele| +E0215264|hydrencephalomeningocoele|hydrencephalomeningocele| +E0215298|club hand|clubhand| +E0215298|club-hand|clubhand| +E0215313|reduction mammoplasty|reduction mammaplasty| +E0215316|isolated laevocardia|isolated levocardia| +E0215329|corporeal caesarean section|corporeal cesarean section| +E0215329|corporeal caesarian section|corporeal cesarean section| +E0215329|corporeal cesarian section|corporeal cesarean section| +E0215331|Prague manoeuvre|Prague maneuver| +E0215334|transorbital leucotomy|transorbital leukotomy| +E0215352|crossed renal ectopy|crossed renal ectopia| +E0215353|nerve blocking anaesthesia|nerve blocking anesthesia| +E0215353|nerve-blocking anaesthesia|nerve blocking anesthesia| +E0215353|nerve-blocking anesthesia|nerve blocking anesthesia| +E0215355|paravertebral anaesthesia|paravertebral anesthesia| +E0215365|synchronised intermittent mandatory ventilation|synchronized intermittent mandatory ventilation| +E0215366|Heimlich manoeuvre|Heimlich maneuver| +E0215367|high assimilation pelvis|high-assimilation pelvis| +E0215370|low assimilation pelvis|low-assimilation pelvis| +E0215378|Donath Landsteiner test|Donath-Landsteiner test| +E0215390|alpha haemolysis|alpha hemolysis| +E0215391|beta haemolysis|beta hemolysis| +E0215391|beta-haemolysis|beta hemolysis| +E0215391|beta-hemolysis|beta hemolysis| +E0215392|gamma haemolysis|gamma hemolysis| +E0215392|gamma-haemolysis|gamma hemolysis| +E0215392|gamma-hemolysis|gamma hemolysis| +E0215397|arylsulphatase test|arylsulfatase test| +E0215406|foetal uterus|fetal uterus| +E0215413|serum neutralisation test|serum neutralization test| +E0215414|foetus papyraceus|fetus papyraceus| +E0215416|fluorescent treponemal antibody-absorption test|fluorescent treponemal antibody absorption test| +E0215418|foetus compressus|fetus compressus| +E0215430|cell mediated lympholysis assay|cell-mediated lympholysis assay| +E0215433|Enzyme Multiplied Immunoassay Technique|Enzyme-Multiplied Immunoassay Technique| +E0215444|urine-concentration test|urine concentration test| +E0215453|faecalith|fecalith| +E0215469|Heinrich L. F. Robert|Heinrich Ludwig Ferdinand Robert| +E0215469|Heinrich Robert|Heinrich Ludwig Ferdinand Robert| +E0215473|short-wave diathermy|short wave diathermy| +E0215473|shortwave diathermy|short wave diathermy| +E0215475|ultra-short-wave diathermy|ultrashort wave diathermy| +E0215475|ultrashort-wave diathermy|ultrashort wave diathermy| +E0215479|stress breaker|stress-breaker| +E0215483|Rasmussen's aneurism|Rasmussen's aneurysm| +E0215487|Fritz Rasmussen|Fritz Waldemar Rasmussen| +E0215487|Fritz W. Rasmussen|Fritz Waldemar Rasmussen| +E0215489|Denver Developmental Screening Test|Denver Developmental Screening test| +E0215491|serpentine aneurism|serpentine aneurysm| +E0215494|miliary aneurism|miliary aneurysm| +E0215496|saccular aneurism|saccular aneurysm| +E0215497|fusiform aneurism|fusiform aneurysm| +E0215500|false aneurism|false aneurysm| +E0215504|Langerhans's cell|Langerhans' cell| +E0215505|internal haemorrhoid|internal hemorrhoid| +E0215506|external haemorrhoid|external hemorrhoid| +E0215508|dermo-epidermal junction|dermoepidermal junction| +E0215520|haemoglobin cast|hemoglobin cast| +E0215530|hydrocephalus ex-vacuo|hydrocephalus ex vacuo| +E0215533|haemorrhagic cyst|hemorrhagic cyst| +E0215537|pneumatocoele|pneumatocele| +E0215538|pseudo-coarctation|pseudocoarctation| +E0215552|lymphorrhoea|lymphorrhea| +E0215554|oedema bullosum vesicae|edema bullosum vesicae| +E0215557|splinter haemorrhage|splinter hemorrhage| +E0215564|phagedaenic ulcer|phagedenic ulcer| +E0215570|dendric ulcer|dendritic ulcer| +E0215585|micro-abscess|microabscess| +E0215595|foreign-body reaction|foreign body reaction| +E0215597|anconal process|anconeal process| +E0215634|localised neurodermatitis|localized neurodermatitis| +E0215639|naevus anemicus|nevus anemicus| +E0215642|fibrous placque|fibrous plaque| +E0215643|anterior synaechia|anterior synechia| +E0215644|posterior synaechia|posterior synechia| +E0215652|senile placque|senile plaque| +E0215685|haemorrhagic infarct|hemorrhagic infarct| +E0215689|hyalin membrane|hyaline membrane| +E0215747|coeliac trunk|celiac trunk| +E0215752|superior haemorrhoidal artery|superior hemorrhoidal artery| +E0215753|middle haemorrhoidal artery|middle hemorrhoidal artery| +E0215754|inferior haemorrhoidal artery|inferior hemorrhoidal artery| +E0215768|hemiazygous vein|hemiazygos vein| +E0215769|accessory hemiazygous vein|accessory hemiazygos vein| +E0215770|hemiazygous|hemiazygos| +E0215791|wire loop lesion|wire-loop lesion| +E0215798|cemento-enamel junction|cementoenamel junction| +E0215806|mongolian spot|Mongolian spot| +E0215807|gastro-esophageal sphincter|gastroesophageal sphincter| +E0215807|gastro-oesophageal sphincter|gastroesophageal sphincter| +E0215807|gastrooesophageal sphincter|gastroesophageal sphincter| +E0215808|cardio-esophageal junction|cardioesophageal junction| +E0215808|cardio-oesophageal junction|cardioesophageal junction| +E0215808|cardiooesophageal junction|cardioesophageal junction| +E0215810|Kerkring's valve|Kerckring's valve| +E0215811|Kerkring|Kerckring| +E0215839|frame shift mutation|frameshift mutation| +E0215839|frame-shift mutation|frameshift mutation| +E0215840|temperature sensitive mutation|temperature-sensitive mutation| +E0215848|fibrose long spacing collagen|fibrous long-spacing collagen| +E0215848|fibrose long-spacing collagen|fibrous long-spacing collagen| +E0215848|fibrous long spacing collagen|fibrous long-spacing collagen| +E0215855|signet ring cell|signet-ring cell| +E0215883|dermopathic lymphadenopathy|dermatopathic lymphadenopathy| +E0215899|hereditary benign intra-epithelial dyskeratosis|hereditary benign intraepithelial dyskeratosis| +E0215902|epidermal naevus|epidermal nevus| +E0215903|naevus comedonicus|nevus comedonicus| +E0215906|congenital generalised fibromatosis|congenital generalized fibromatosis| +E0215910|cirsoid aneurism|cirsoid aneurysm| +E0215913|verruga plana|verruca plana| +E0215918|leucoerythroblastosis|leukoerythroblastosis| +E0215919|secondary polycythaemia|secondary polycythemia| +E0215920|relative polycythaemia|relative polycythemia| +E0215921|stress polycythaemia|stress polycythemia| +E0215927|Howell Jolly body|Howell-Jolly body| +E0215930|J. M. J. Jolly|Justin Marie Jules Jolly| +E0215930|Justin Jolly|Justin Marie Jules Jolly| +E0215930|Justin M. J. Jolly|Justin Marie Jules Jolly| +E0215941|corpus haemorrhagicum|corpus hemorrhagicum| +E0215946|tricho-epithelioma|trichoepithelioma| +E0215949|granulosa cell tumour|granulosa cell tumor| +E0215950|Sertoli Leydig cell tumor|Sertoli-Leydig cell tumor| +E0215950|Sertoli Leydig cell tumour|Sertoli-Leydig cell tumor| +E0215950|Sertoli-Leydig cell tumour|Sertoli-Leydig cell tumor| +E0215951|hilar cell tumour|hilar cell tumor| +E0215953|Leydig cell tumour|Leydig cell tumor| +E0215957|fibrose histiocytoma|fibrous histiocytoma| +E0215964|venous haemangioma|venous hemangioma| +E0215965|malignant haemangioendothelioma|malignant hemangioendothelioma| +E0215967|haemolymphangioma|hemolymphangioma| +E0215968|giant cell tumour|giant cell tumor| +E0215973|melanotic neuroectodermal tumour|melanotic neuroectodermal tumor| +E0215977|granular cell tumour|granular cell tumor| +E0215979|lymphosarcoma cell leucaemia|lymphosarcoma cell leukemia| +E0215979|lymphosarcoma cell leucemia|lymphosarcoma cell leukemia| +E0215979|lymphosarcoma cell leukaemia|lymphosarcoma cell leukemia| +E0215980|eosinophilic leucaemia|eosinophilic leukemia| +E0215980|eosinophilic leucemia|eosinophilic leukemia| +E0215980|eosinophilic leukaemia|eosinophilic leukemia| +E0215982|counter-immunoelectrophoresis|counter immunoelectrophoresis| +E0215982|counterimmunoelectrophoresis|counter immunoelectrophoresis| +E0215983|STS|S.T.S.| +E0216001|stiff man syndrome|stiff-man syndrome| +E0216001|stiffman syndrome|stiff-man syndrome| +E0216002|sudanophilic leucodystrophy|sudanophilic leukodystrophy| +E0216008|Conrad M. Riley|Conrad Milton Riley| +E0216008|Conrad Riley|Conrad Milton Riley| +E0216010|Richard Day|Richard Lawrence Day| +E0216010|Richard L. Day|Richard Lawrence Day| +E0216044|T strain mycoplasma|T-strain mycoplasma| +E0216067|tongueworm|tongue worm| +E0216079|thymus leucaemia antigen|thymus leukemia antigen| +E0216079|thymus leucemia antigen|thymus leukemia antigen| +E0216079|thymus leukaemia antigen|thymus leukemia antigen| +E0216080|Toluidine Blue O|toluidine blue O| +E0216080|Toluidine Blue, O|toluidine blue O| +E0216080|toluidine blue, O|toluidine blue O| +E0216081|Toluidine Blue|toluidine blue| +E0216083|antihaemophilic globulin F|antihemophilic globulin F| +E0216084|high fibre diet|high fiber diet| +E0216084|high-fiber diet|high fiber diet| +E0216084|high-fibre diet|high fiber diet| +E0216087|antihaemolytic factor|antihemolytic factor| +E0216088|heparan sulphate sulphatase|heparan sulfate sulfatase| +E0216089|lactosylceramidase|lactosyl ceramidase| +E0216091|GOT|Got| +E0216093|low birth-weight infant|low birth weight infant| +E0216093|low-birth-weight infant|low birth weight infant| +E0216094|antihaemophilic globulin|antihemophilic globulin| +E0216096|total circulating haemoglobin|total circulating hemoglobin| +E0216101|catheterised bladder|catheterized bladder| +E0216108|rhesus factor isoimmunisation|rhesus factor isoimmunization| +E0216109|intermittent catheterisation protocol|intermittent catheterization protocol| +E0216110|leucotactic factor|leukotactic factor| +E0216132|hydromyelomeningocoele|hydromyelomeningocele| +E0216133|hydrocephalocoele|hydrocephalocele| +E0216136|lobster claw deformity|lobster-claw deformity| +E0216166|retroflection|retroflexion| +E0216167|lateroflection|lateroflexion| +E0216168|compound aneurism|compound aneurysm| +E0216169|tubular aneurism|tubular aneurysm| +E0216174|theca lutein cyst|theca-lutein cyst| +E0216178|passive hyperaemia|passive hyperemia| +E0216182|purpura haemorrhagica|purpura hemorrhagica| +E0216194|melon seed body|melon-seed body| +E0216213|Gaston A. Milian|Gaston Auguste Milian| +E0216213|Gaston Milian|Gaston Auguste Milian| +E0216224|hyalinisation|hyalinization| +E0216226|hyalinise|hyalinize| +E0216254|heart failure cell|heart-failure cell| +E0216270|cap|cap.| +E0216290|Papillon Lefevre syndrome|Papillon-Lefevre syndrome| +E0216303|James C. White|James Clarke White| +E0216303|James White|James Clarke White| +E0216307|naevus elasticus|nevus elasticus| +E0216308|naevus flammeus|nevus flammeus| +E0216311|epithelial naevus|epithelial nevus| +E0216313|naevus unius lateris|nevus unius lateris| +E0216315|naevus araneus|nevus araneus| +E0216318|Buschke-Lowenstein tumour|Buschke-Lowenstein tumor| +E0216339|Brooke's tumour|Brooke's tumor| +E0216342|turban tumour|turban tumor| +E0216347|Warthin's tumour|Warthin's tumor| +E0216349|Sertoli cell tumour|Sertoli cell tumor| +E0216351|lipoid cell tumour|lipoid cell tumor| +E0216352|phaeochromoblastoma|pheochromoblastoma| +E0216353|achromic naevus|achromic nevus| +E0216355|dermal naevus|dermal nevus| +E0216359|foetal fat cell lipoma|fetal fat cell lipoma| +E0216365|haemangioma simplex|hemangioma simplex| +E0216366|haemagglutinating activity|hemagglutinating activity| +E0216368|Ewing's tumour|Ewing's tumor| +E0216371|Rathke's pouch tumour|Rathke's pouch tumor| +E0216372|retinal anlage tumour|retinal anlage tumor| +E0216378|T cell lymphoma|T-cell lymphoma| +E0216382|stem cell leucaemia|stem cell leukemia| +E0216382|stem cell leucemia|stem cell leukemia| +E0216382|stem cell leukaemia|stem cell leukemia| +E0216383|aleucaemic myelosis|aleukemic myelosis| +E0216383|aleucemic myelosis|aleukemic myelosis| +E0216383|aleukaemic myelosis|aleukemic myelosis| +E0216384|histiocytic leucaemia|histiocytic leukemia| +E0216384|histiocytic leucemia|histiocytic leukemia| +E0216384|histiocytic leukaemia|histiocytic leukemia| +E0216386|Thomas H. Ham|Thomas Hale Ham| +E0216386|Thomas Ham|Thomas Hale Ham| +E0216402|Johann Brunner|Johann Conrad Brunner| +E0216402|Johann C. Brunner|Johann Conrad Brunner| +E0216497|gastro-esophageal junction|gastroesophageal junction| +E0216497|gastro-oesophageal junction|gastroesophageal junction| +E0216497|gastrooesophageal junction|gastroesophageal junction| +E0216538|post-menopausal osteoporosis|postmenopausal osteoporosis| +E0216544|silver-fork deformity|silver fork deformity| +E0216585|zinc-fume fever|zinc fume fever| +E0216587|teflon shakes|Teflon shakes| +E0216615|acute congestive heart-failure|acute congestive heart failure| +E0216623|Lown Ganong Levine syndrome|Lown-Ganong-Levine syndrome| +E0216626|William Ganong|William F. Ganong| +E0216628|Samuel Levine|Samuel A. Levine| +E0216634|leucocytoclastic vasculitis|leukocytoclastic vasculitis| +E0216639|capillary haemorrhage|capillary hemorrhage| +E0216642|prolapsed haemorrhoid|prolapsed hemorrhoid| +E0216643|strangulated haemorrhoid|strangulated hemorrhoid| +E0216644|phlegmasia caerulea dolens|phlegmasia cerulea dolens| +E0216653|lymphoedema praecox|lymphedema praecox| +E0216656|De Lange|de Lange| +E0216661|facio-digito-genital syndrome|faciodigitogenital syndrome| +E0216664|fragile-X syndrome|fragile X syndrome| +E0216672|pancytopenia dysmelia syndrome|pancytopenia-dysmelia syndrome| +E0216722|thymic parathyroid aplasia|thymic-parathyroid aplasia| +E0216730|brachyphalangy|brachyphalangia| +E0216734|Otto G. K. Sprengel|Otto Gerhard Karl Sprengel| +E0216734|Otto Sprengel|Otto Gerhard Karl Sprengel| +E0216738|radial club hand|radial clubhand| +E0216738|radial club-hand|radial clubhand| +E0216740|ulnar club hand|ulnar clubhand| +E0216740|ulnar club-hand|ulnar clubhand| +E0216745|lobster claw hand|lobster-claw hand| +E0216750|congenital spondylisthesis|congenital spondylolisthesis| +E0216759|pelvis justominor|pelvis justo minor| +E0216761|funnel shaped pelvis|funnel-shaped pelvis| +E0216767|Richard Bing|Richard J. Bing| +E0216781|Paul G. Unna|Paul Gerson Unna| +E0216781|Paul Unna|Paul Gerson Unna| +E0216789|Harold Cole|Harold Newton Cole| +E0216789|Harold N. Cole|Harold Newton Cole| +E0216790|Martin Engman|Martin Feeney Engman| +E0216790|Martin F. Engman|Martin Feeney Engman| +E0216796|Mongolian macula|mongolian macula| +E0216814|peg shaped tooth|peg-shaped tooth| +E0216821|anterior cross bite|anterior crossbite| +E0216822|cross bite|crossbite| +E0216841|Jabez Jackson|Jabez North Jackson| +E0216841|Jabez N. Jackson|Jabez North Jackson| +E0216849|epiphysial syndrome|epiphyseal syndrome| +E0216859|synaechia vulvae|synechia vulvae| +E0216873|encephalocoel|encephalocoele| +E0216879|hydromyelocoele|hydromyelocele| +E0216882|jaw winking syndrome|jaw-winking syndrome| +E0216894|calcified foetus|calcified fetus| +E0216895|mummified foetus|mummified fetus| +E0216896|harlequin foetus|harlequin fetus| +E0216954|heterologous chimaera|heterologous chimera| +E0216955|homologous chimaera|homologous chimera| +E0216956|isologous chimaera|isologous chimera| +E0216976|irregular dentine|irregular dentin| +E0216988|drop-jaw|drop jaw| +E0216988|dropjaw|drop jaw| +E0216997|ptyalorrhoea|ptyalorrhea| +E0217007|glottitis areata exfoliativa|glossitis areata exfoliativa| +E0217009|blacktongue|black tongue| +E0217014|gastro-esophageal reflux disease|gastroesophageal reflux disease| +E0217014|gastro-oesophageal reflux disease|gastroesophageal reflux disease| +E0217015|cardio-chalasia|cardiochalasia| +E0217022|oesophagism|esophagism| +E0217024|Barrett's oesophagus|Barrett's esophagus| +E0217030|LDA|L.D.A.| +E0217045|secretory diarrhoea|secretory diarrhea| +E0217047|coeliac crisis|celiac crisis| +E0217050|idiopathic steatorrhoea|idiopathic steatorrhea| +E0217051|coeliac sprue|celiac sprue| +E0217052|coeliac infantilism|celiac infantilism| +E0217053|protein losing enteropathy|protein-losing enteropathy| +E0217067|chronic non-suppurative destructive cholangeitis|chronic nonsuppurative destructive cholangitis| +E0217067|chronic non-suppurative destructive cholangitis|chronic nonsuppurative destructive cholangitis| +E0217067|chronic nonsuppurative destructive cholangeitis|chronic nonsuppurative destructive cholangitis| +E0217068|portal pyaemia|portal pyemia| +E0217069|portal systemic encephalopathy|portal-systemic encephalopathy| +E0217069|portosystemic encephalopathy|portal-systemic encephalopathy| +E0217073|strawberry gall bladder|strawberry gallbladder| +E0217075|primary sclerosing cholangeitis|primary sclerosing cholangitis| +E0217078|leishmaniasis|leishmaniosis| +E0217079|Clarke-Hadefield syndrome|Hadefield-Clarke syndrome| +E0217085|pheohyphomycosis|phaeohyphomycosis| +E0217087|life long obesity|lifelong obesity| +E0217087|life-long obesity|lifelong obesity| +E0217090|hyperplastic hypertrophic obesity|hyperplastic-hypertrophic obesity| +E0217092|adult onset obesity|adult-onset obesity| +E0217094|Korean haemorrhagic fever|Korean hemorrhagic fever| +E0217097|hepatic haemosiderosis|hepatic hemosiderosis| +E0217098|steely hair syndrome|steely-hair syndrome| +E0217101|lymphoid leucosis|lymphoid leukosis| +E0217119|onyong-nyong fever|O'nyong-nyong fever| +E0217132|myo-adenylate deaminase deficiency|myoadenylate deaminase deficiency| +E0217142|gall sickness|gallsickness| +E0217147|tropical canine pancytopaenia|tropical canine pancytopenia| +E0217148|acid maltase deficiency|acid-maltase deficiency| +E0217156|fructosaemia|fructosemia| +E0217169|sucrase isomaltase deficiency|sucrase-isomaltase deficiency| +E0217173|framboesia|frambesioma| +E0217173|framboesioma|frambesioma| +E0217176|acute necrotising ulcerative gingivitis|acute necrotizing ulcerative gingivitis| +E0217185|pulmonary tularaemia|pulmonary tularemia| +E0217187|oropharyngeal tularaemia|oropharyngeal tularemia| +E0217188|typhoidal tularaemia|typhoidal tularemia| +E0217189|oculaglandular tularaemia|oculoglandular tularemia| +E0217190|familial hypobetalipoproteinaemia|familial hypobetalipoproteinemia| +E0217191|glandular tularaemia|glandular tularemia| +E0217192|ulceroglandular tularaemia|ulceroglandular tularemia| +E0217196|familial high density lipoprotein deficiency|familial high-density lipoprotein deficiency| +E0217197|deerfly fever|deer fly fever| +E0217203|papulo-necrotic tuberculide|papulonecrotic tuberculid| +E0217203|papulo-necrotic tuberculid|papulonecrotic tuberculid| +E0217203|papulonecrotic tuberculide|papulonecrotic tuberculid| +E0217204|familial hyperbetalipoproteinaemia|familial hyperbetalipoproteinemia| +E0217205|LDL receptor disorder|LDL-receptor disorder| +E0217207|familial combined hyperlipidaemia|familial combined hyperlipidemia| +E0217208|familial dysbetalipoproteinaemia|familial dysbetalipoproteinemia| +E0217209|floating beta disease|floating-beta disease| +E0217212|beta sitosterolaemia|beta-sitosterolemia| +E0217212|beta sitosterolemia|beta-sitosterolemia| +E0217212|beta-sitosterolaemia|beta-sitosterolemia| +E0217215|chronic idiopathetic xanthomatosis|chronic idiopathic xanthomatosis| +E0217216|Hurler Scheie syndrome|Hurler-Scheie syndrome| +E0217222|N-acetylgalactosamine-4-sulphatase deficiency|N-acetylgalactosamine-4-sulfatase deficiency| +E0217225|arylsulphatase B deficiency|arylsulfatase B deficiency| +E0217226|viscerotropic leishmaniosis|viscerotropic leishmaniasis| +E0217230|beta glucaronidase deficiency|beta-glucuronidase deficiency| +E0217236|galactosyl ceramide lipidosis|galactosylceramide lipidosis| +E0217237|Krabbe's leucodystrophy|Krabbe's leukodystrophy| +E0217243|metachromatic leucoencephaly|metachromatic leukoencephaly| +E0217244|leucoencephaly|leukoencephaly| +E0217245|mucosulphatidosis|mucosulfatidosis| +E0217256|X linked ichthyosis|X-linked ichthyosis| +E0217258|familial nonhaemolytic jaundice|familial nonhemolytic jaundice| +E0217259|nonhaemolytic jaundice|nonhemolytic jaundice| +E0217270|haematoporphyrinuria|hematoporphyrinuria| +E0217274|brittle-bone syndrome|brittle bone syndrome| +E0217275|Eddowes syndrome|Eddowes' syndrome| +E0217275|Eddowes's syndrome|Eddowes' syndrome| +E0217283|generalised epidermolysis bullosa simplex|generalized epidermolysis bullosa simplex| +E0217284|localised epidermolysis bullosa simplex|localized epidermolysis bullosa simplex| +E0217295|Thomas J. Muckle|Thomas James Muckle| +E0217295|Thomas Muckle|Thomas James Muckle| +E0217297|Michael V. Wells|Michael Vernon Wells| +E0217297|Michael Wells|Michael Vernon Wells| +E0217299|congenital idiopathic hyperphosphatasaemia|chronic congenital idiopathic hyperphosphatasemia| +E0217304|hyperphosphatasaemia tarda|hyperphosphatasemia tarda| +E0217306|Van Buchem|van Buchem| +E0217307|acatalasaemia|acatalasemia| +E0217317|tyrosinase positive oculocutaneous albinism|tyrosinase-positive oculocutaneous albinism| +E0217329|oculocerebral hypopigmentation syndrome|oculocerebral-hypopigmentation syndrome| +E0217346|leucoderma colli|leukoderma colli| +E0217349|staphylococcal scalded-skin syndrome|staphylococcal scalded skin syndrome| +E0217355|septicaemic plague|septicemic plague| +E0217375|gamma glutamyl transpeptidase deficiency|gamma-glutamyl transpeptidase deficiency| +E0217375|gamma-glutamyl-transpeptidase deficiency|gamma-glutamyl transpeptidase deficiency| +E0217375|gamma-glutamyltranspeptidase deficiency|gamma-glutamyl transpeptidase deficiency| +E0217375|gammaglutamyl transpeptidase deficiency|gamma-glutamyl transpeptidase deficiency| +E0217377|sheath-rot|sheath rot| +E0217378|hyperhydroxyprolinaemia|hyperhydroxyprolinemia| +E0217383|type I congenital hyperammonaemia|type I congenital hyperammonemia| +E0217395|gonococcaemia|gonococcemia| +E0217401|argininaemia|argininemia| +E0217402|hyperargininaemia|hyperargininemia| +E0217406|hypersarcosinaemia|hypersarcosinemia| +E0217412|valinaemia|valinemia| +E0217426|essential haematuria|essential hematuria| +E0217427|prerenal azotaemia|prerenal azotemia| +E0217444|salpingocoele|salpingocele| +E0217446|haemometra|hemometra| +E0217448|oedema neonatorum|edema neonatorum| +E0217452|leucokraurosis|leukokraurosis| +E0217455|clitorimegaly|clitoromegaly| +E0217476|eclamptic toxaemia|eclamptic toxemia| +E0217480|puerperal septicaemia|puerperal septicemia| +E0217495|obsessive compulsive personality disorder|obsessive-compulsive personality disorder| +E0217500|passive-aggressive personality disorder|passive aggressive personality disorder| +E0217509|Lambert Eaton syndrome|Lambert-Eaton syndrome| +E0217510|limb girdle muscular dystrophy|limb-girdle muscular dystrophy| +E0217514|phaco-anaphylactic endophthalmitis|phacoanaphylactic endophthalmitis| +E0217514|phako-anaphylactic endophthalmitis|phacoanaphylactic endophthalmitis| +E0217514|phakoanaphylactic endophthalmitis|phacoanaphylactic endophthalmitis| +E0217518|leucocoria|leukocoria| +E0217518|leucokoria|leukocoria| +E0217518|leukokoria|leukocoria| +E0217520|sleep-terror disorder|sleep terror disorder| +E0217526|Gelineau syndrome|Gelineau's syndrome| +E0217528|Jean B. E. Gelineau|Jean Baptiste Edouard Gelineau| +E0217528|Jean Gelineau|Jean Baptiste Edouard Gelineau| +E0217530|Ivanoff's cyst|Iwanoff's cyst| +E0217530|Ivanov's cyst|Iwanoff's cyst| +E0217530|Iwanow's cyst|Iwanoff's cyst| +E0217532|generalised anxiety disorder|generalized anxiety disorder| +E0217544|abasia-astasia|abasia astasia| +E0217550|intermittent angle closure glaucoma|intermittent angle-closure glaucoma| +E0217551|acute angle closure glaucoma|acute angle-closure glaucoma| +E0217553|chronic angle closure glaucoma|chronic angle-closure glaucoma| +E0217563|Vessius's ring|Vossius' ring| +E0217567|wendigo|windigo| +E0217572|crossed hemianopsia|crossed hemianopia| +E0217585|Nm|Nm.| +E0217585|n.m.|Nm.| +E0217585|nm.|Nm.| +E0217586|nm|nm.| +E0217587|hypoglycaemic encephalopathy|hypoglycemic encephalopathy| +E0217591|Reye syndrome|Reye's syndrome| +E0217591|Reyes syndrome|Reye's syndrome| +E0217591|Reyes' syndrome|Reye's syndrome| +E0217592|cerebral ataxy|cerebral ataxia| +E0217594|subacute nectrotising encephalomyelopathy|subacute necrotizing encephalomyelopathy| +E0217598|adherent leucoma|adherent leukoma| +E0217608|olivo ponto cerebellar degeneration|olivopontocerebellar degeneration| +E0217608|olivo-ponto-cerebellar degeneration|olivopontocerebellar degeneration| +E0217619|chromodacryorrhoea|chromodacryorrhea| +E0217650|Etienne Bergeron|Etienne Jules Bergeron| +E0217650|Etienne J. Bergeron|Etienne Jules Bergeron| +E0217658|paralysing vertigo|paralyzing vertigo| +E0217659|Edouard H. Henoch|Edouard Heinrich Henoch| +E0217659|Edouard Henoch|Edouard Heinrich Henoch| +E0217668|dysacousia|dysacusis| +E0217668|dysacousis|dysacusis| +E0217669|auditory dysaesthesia|auditory dysesthesia| +E0217674|cortico-striatal spinal degeneration|corticostriatal-spinal degeneration| +E0217674|cortico-striatal-spinal degeneration|corticostriatal-spinal degeneration| +E0217704|Barraquer-Simons's syndrome|Barraquer-Simons' syndrome| +E0217713|factitious hypoglycaemia|factitious hypoglycemia| +E0217716|fasting hypoglycaemia|fasting hypoglycemia| +E0217717|reactive hypoglycaemia|reactive hypoglycemia| +E0217719|ketotic hypoglycaemia|ketotic hypoglycemia| +E0217722|leucine induced hypoglycaemia|leucine-induced hypoglycemia| +E0217722|leucine induced hypoglycemia|leucine-induced hypoglycemia| +E0217722|leucine-induced hypoglycaemia|leucine-induced hypoglycemia| +E0217724|mixed hypoglycaemia|mixed hypoglycemia| +E0217731|Bayard Horton|Bayard Taylor Horton| +E0217731|Bayard T. Horton|Bayard Taylor Horton| +E0217732|lingual goitre|lingual goiter| +E0217736|familial hypocalciuric hypercalcaemia|familial hypocalciuric hypercalcemia| +E0217739|Blackfan-Diamond anaemia|Blackfan-Diamond anemia| +E0217746|polycythaemia hypertonica|polycythemia hypertonica| +E0217747|benign polycythaemia|benign polycythemia| +E0217748|spurious polycythaemia|spurious polycythemia| +E0217759|X linked agammaglobulinaemia|X-linked agammaglobulinemia| +E0217759|X linked agammaglobulinemia|X-linked agammaglobulinemia| +E0217759|X-linked agammaglobulinaemia|X-linked agammaglobulinemia| +E0217761|common variable agammaglobulinaemia|common variable agammaglobulinemia| +E0217762|hereditary angio-edema|hereditary angioedema| +E0217762|hereditary angio-oedema|hereditary angioedema| +E0217762|hereditary angiooedema|hereditary angioedema| +E0217767|congenital afibrinogenaemia|congenital afibrinogenemia| +E0217782|carbon disulphide poisoning|carbon disulfide poisoning| +E0217788|ackee poisoning|akee poisoning| +E0217789|ackee|akee| +E0217820|haemorrhagic fever|hemorrhagic fever| +E0217825|ursacholic acid|ursocholic acid| +E0217831|blast leucaemia|blastic leukemia| +E0217831|blast leucemia|blastic leukemia| +E0217831|blast leukaemia|blastic leukemia| +E0217831|blast leukemia|blastic leukemia| +E0217831|blastic leucaemia|blastic leukemia| +E0217831|blastic leucemia|blastic leukemia| +E0217831|blastic leukaemia|blastic leukemia| +E0217861|trinitrobenzenesulphonic acid|trinitrobenzenesulfonic acid| +E0217899|sulphoglycolithocholic acid|sulfoglycolithocholic acid| +E0217900|sulpholithocholic acid|sulfolithocholic acid| +E0217952|glycyrrhetic acid|glycyrrhetinic acid| +E0217957|iothalamic acid|iotalamic acid| +E0217959|ioxithalamic acid|ioxitalamic acid| +E0217961|haemoblastic leucaemia|hemoblastic leukemia| +E0217961|haemoblastic leukaemia|hemoblastic leukemia| +E0217961|hemoblastic leucemia|hemoblastic leukemia| +E0217964|haemocytoblastic leucaemia|hemocytoblastic leukemia| +E0217964|haemocytoblastic leukaemia|hemocytoblastic leukemia| +E0217964|hemocytoblastic leucemia|hemocytoblastic leukemia| +E0217972|isohaematinic acid|isohematinic acid| +E0218006|lignosulphuric acid|lignosulfuric acid| +E0218046|pseudocele|pseudocoele| +E0218051|mono-oleylphosphatidic acid|monooleylphosphtidic acid| +E0218093|perfluoro-octanoic acid|perfluorooctanoic acid| +E0218096|perfluorosulphonic acid|perfluorosulfonic acid| +E0218106|petroselenic acid|petroselinic acid| +E0218273|lateralise|lateralize| +E0218274|Hongkong|Hong Kong| +E0218280|foetoscope|fetoscope| +E0218281|freeze-fracturing|freeze fracturing| +E0218282|free-graft|free graft| +E0218283|free-graft|free graft| +E0218286|haemorrhoid|hemorrhoid| +E0218287|haemorrhoids|hemorrhoids| +E0218288|iminoacid|imino acid| +E0218294|acetylise|acetylize| +E0218297|brain stem|brain-stem| +E0218297|brainstem|brain-stem| +E0218309|photolyse|photolyze| +E0218311|privatise|privatize| +E0218312|reanalyse|reanalyze| +E0218314|recatheterise|recatheterize| +E0218323|temephos|temefos| +E0218329|permeablise|permeabilize| +E0218330|permeablisation|permeabilization| +E0218336|sintrom|synthrom| +E0218340|postischaemic|postischemic| +E0218378|akrosin|acrosin| +E0218392|platelet-derived growth factor b|platelet-derived growth factor B| +E0218393|alloimmunisation|alloimmunization| +E0218396|depolarisation|depolarization| +E0218397|synchronisation|desynchronization| +E0218400|epmerisation|epimerization| +E0218407|melanisation|melanization| +E0218408|minimisation|minimization| +E0218409|oligomerisation|oligomerization| +E0218411|pressurisation|pressurization| +E0218426|radiosensitise|radiosensitize| +E0218427|randomise|randomize| +E0218429|reoxidise|reoxidize| +E0218438|afterward|afterwards| +E0218448|artefactually|artifactually| +E0218472|aetiologically|etiologically| +E0218512|sulphanilic acid|sulfanilic acid| +E0218591|digitisation|digitization| +E0219227|burr hole|burr-hole| +E0219230|coloured|colored| +E0219248|eastwards|eastward| +E0219249|southwards|southward| +E0219250|westwards|westward| +E0219293|manoeuvring|maneuvering| +E0219300|moulding|molding| +E0219315|partizan|partisan| +E0219328|pre-set|preset| +E0219330|psyche|psych| +E0219339|repellant|repellent| +E0219373|poverty-stricken|poverty stricken| +E0219374|grief stricken|grief-stricken| +E0219375|panic stricken|panic-stricken| +E0219379|sunburned|sunburnt| +E0219405|C-band|C band| +E0219421|Malayan|Malaysian| +E0219430|psychodelic|psychedelic| +E0219451|over-learning|overlearning| +E0219478|galenic|galenical| +E0219487|logopaedics|logopedics| +E0219503|semeiotic|semiotic| +E0219510|anidrotic|anhidrotic| +E0219638|colocalise|colocalize| +E0219639|tenibleness|tenableness| +E0219657|s-shaped|S-shaped| +E0219658|build up|build-up| +E0219665|spleep inducing|sleep-inducing| +E0219671|enteric coated|enteric-coated| +E0219700|anaesthetized|anaesthetised| +E0219700|anesthetised|anaesthetised| +E0219700|anesthetized|anaesthetised| +E0219701|un-anaesthetised|unanaesthetised| +E0219701|un-anaesthetized|unanaesthetised| +E0219701|un-anesthetised|unanaesthetised| +E0219701|un-anesthetized|unanaesthetised| +E0219701|unanaesthetized|unanaesthetised| +E0219701|unanesthetised|unanaesthetised| +E0219701|unanesthetized|unanaesthetised| +E0219732|Epicurean|epicurean| +E0219793|Philistine|philistine| +E0219794|Philistine|philistine| +E0219797|tory|Tory| +E0219803|borstal|Borstal| +E0219806|Exchequer|exchequer| +E0219815|Armistice|armistice| +E0219879|caddice fly|caddis fly| +E0219879|caddis-fly|caddis fly| +E0219879|caddisfly|caddis fly| +E0219890|case-book|casebook| +E0219900|cob-web|cobweb| +E0219924|demi-lune|demilune| +E0220055|insusceptible|insusceptable| +E0220065|cymograph|kymograph| +E0220075|let down|let-down| +E0220075|letdown|let-down| +E0220079|linnaean|Linnaean| +E0220088|Manchineel|manchineel| +E0220092|mellituria|melituria| +E0220112|myriopod|myriapod| +E0220125|oestrum|estrum| +E0220178|pock-mark|pockmark| +E0220179|pock-marked|pockmarked| +E0220181|polariser|polarizer| +E0220213|ring-bone|ringbone| +E0220216|saccharimeter|saccharometer| +E0220231|semeiology|semiology| +E0220236|sialogogue|sialagogue| +E0220278|super-structure|superstructure| +E0220279|tocology|tokology| +E0220280|addible|addable| +E0220281|chivvy|chivy| +E0220292|clarinettist|clarinetist| +E0220300|intraarticularly|intra-articularly| +E0220301|extraarticularly|extra-articularly| +E0220303|cliquy|cliquey| +E0220309|break-up|breakup| +E0220311|oxidisability|oxidizability| +E0220311|oxidizibility|oxidizability| +E0220312|oxidisable|oxidizable| +E0220312|oxidizible|oxidizable| +E0220324|recognisability|recognizability| +E0220325|confinable|confineable| +E0220329|small-holder|smallholder| +E0220336|corruptor|corrupter| +E0220347|curst|cursed| +E0220350|chick pea|chickpea| +E0220350|chick-pea|chickpea| +E0220352|staticly|statically| +E0220353|non-porous|nonporous| +E0220358|desecrator|desecrater| +E0220364|pre-donation|predonation| +E0220365|predonation|pre-donation| +E0220366|pre-donate|predonate| +E0220369|desolator|desolater| +E0220370|pre-stress|prestress| +E0220371|post-stress|poststress| +E0220374|non occupational|nonoccupational| +E0220374|non-occupational|nonoccupational| +E0220375|post-code|postcode| +E0220391|adjuror|adjurer| +E0220397|phycho-physically|psychophysically| +E0220399|photo-current|photocurrent| +E0220400|oil-seed|oilseed| +E0220404|intra-group|intragroup| +E0220405|extra-pituitary|extrapituitary| +E0220406|uni-molecular|unimolecular| +E0220425|dislikeable|dislikable| +E0220440|grand-maternal|grandmaternal| +E0220441|grand-paternal|grandpaternal| +E0220443|non-aromatic|nonaromatic| +E0220444|non-aromatic|nonaromatic| +E0220448|pre-conceptional|preconceptional| +E0220451|hireable|hirable| +E0220452|includeable|includable| +E0220453|indictor|indicter| +E0220454|inflator|inflater| +E0220456|inflictor|inflicter| +E0220457|lapsable|lapsible| +E0220458|lassoo|lasso| +E0220460|minable|mineable| +E0220464|petalled|petaled| +E0220465|polyglotism|polyglottism| +E0220466|ascendible|ascendable| +E0220468|prohibiter|prohibitor| +E0220471|reviser|revisor| +E0220472|rinsible|rinsable| +E0220474|savable|saveable| +E0220475|unsavable|unsaveable| +E0220477|avertible|avertable| +E0220478|shakeable|shakable| +E0220479|unshakeable|unshakable| +E0220480|shapeable|shapable| +E0220481|skilless|skill-less| +E0220482|skillessness|skill-lessness| +E0220483|smokeable|smokable| +E0220485|supply|suppley| +E0220488|assertor|asserter| +E0220489|hulless|hull-less| +E0220492|tradeable|tradable| +E0220493|untradeable|untradable| +E0220501|chock-ful|chock-full| +E0220510|briquette|briquet| +E0220517|ionisable|ionizable| +E0220523|non native|nonnative| +E0220523|non-native|nonnative| +E0220532|non sensitive|nonsensitive| +E0220532|non-sensitive|nonsensitive| +E0220533|non uniformly|nonuniformly| +E0220533|non-uniformly|nonuniformly| +E0220534|non routine|nonroutine| +E0220534|non-routine|nonroutine| +E0220535|non woody|nonwoody| +E0220536|non professional|nonprofessional| +E0220536|non-professional|nonprofessional| +E0220537|non mobile|nonmobile| +E0220537|non-mobile|nonmobile| +E0220538|non-exchangable|nonexchangeable| +E0220538|non-exchangeable|nonexchangeable| +E0220538|nonexchangable|nonexchangeable| +E0220540|non-academic|nonacademic| +E0220542|non fluorescent|nonfluorescent| +E0220542|non-fluorescent|nonfluorescent| +E0220543|non necessary|nonnecessary| +E0220544|non-adhesive|nonadhesive| +E0220545|non-adhesiveness|nonadhesiveness| +E0220546|non-pulmonary|nonpulmonary| +E0220547|non-acid|nonacid| +E0220548|nonaction|non-action| +E0220549|non acute|nonacute| +E0220549|non-acute|nonacute| +E0220550|non aggressive|nonaggressive| +E0220550|non-aggressive|nonaggressive| +E0220551|non alcoholic|nonalcoholic| +E0220551|non-alcoholic|nonalcoholic| +E0220552|non alcoholic|nonalcoholic| +E0220552|non-alcoholic|nonalcoholic| +E0220553|non asthmatic|nonasthmatic| +E0220553|non-asthmatic|nonasthmatic| +E0220554|non serious|nonserious| +E0220554|non-serious|nonserious| +E0220555|non asthmatic|nonasthmatic| +E0220555|non-asthmatic|nonasthmatic| +E0220556|non characteristic|noncharacteristic| +E0220556|non-characteristic|noncharacteristic| +E0220557|non circulation|noncirculation| +E0220558|non-close|nonclose| +E0220559|non closed|nonclosed| +E0220560|non communicable|noncommunicable| +E0220560|non-communicable|noncommunicable| +E0220562|non communicable disease|noncommunicable disease| +E0220562|non-communicable disease|noncommunicable disease| +E0220563|non concordant|nonconcordant| +E0220563|non-concordant|nonconcordant| +E0220564|non-concordance|nonconcordance| +E0220565|non dominant|nondominant| +E0220565|non-dominant|nondominant| +E0220566|non-consecutive|nonconsecutive| +E0220567|non contact|noncontact| +E0220567|non-contact|noncontact| +E0220568|non life-threatening|nonlife-threatening| +E0220568|non-life threatening|nonlife-threatening| +E0220568|non-life-threatening|nonlife-threatening| +E0220569|non recurrent|nonrecurrent| +E0220569|non-recurrent|nonrecurrent| +E0220570|non manual|nonmanual| +E0220570|non-manual|nonmanual| +E0220571|non-insertion|noninsertion| +E0220572|non representative|nonrepresentative| +E0220572|non-representative|nonrepresentative| +E0220573|non smoking|nonsmoking| +E0220573|non-smoking|nonsmoking| +E0220574|non vegetative|nonvegetative| +E0220574|non-vegetative|nonvegetative| +E0220575|non rejection|nonrejection| +E0220575|non-rejection|nonrejection| +E0220576|non fulfillment|nonfulfillment| +E0220579|non febrile|nonfebrile| +E0220579|non-febrile|nonfebrile| +E0220580|non evident|nonevident| +E0220580|non-evident|nonevident| +E0220582|non relative|nonrelative| +E0220582|non-relative|nonrelative| +E0220583|non controlled|noncontrolled| +E0220583|non-controlled|noncontrolled| +E0220584|non existence|nonexistence| +E0220584|non-existence|nonexistence| +E0220585|non homogeneous|nonhomogeneous| +E0220585|non-homogeneous|nonhomogeneous| +E0220586|non homogeneity|nonhomogeneity| +E0220586|non-homogeneity|nonhomogeneity| +E0220587|non desire|nondesire| +E0220587|non-desire|nondesire| +E0220588|non-using|nonusing| +E0220589|non-exposure|nonexposure| +E0220590|non recipient|nonrecipient| +E0220590|non-recipient|nonrecipient| +E0220604|k|K| +E0220613|R-S|RS| +E0220633|e-mail|E-mail| +E0220633|email|E-mail| +E0220634|E-mail|e-mail| +E0220634|email|e-mail| +E0220639|Scotch-douche|Scotch douche| +E0220650|laminogram|laminagram| +E0220658|Periodic Acid Schiff|periodic acid-Schiff| +E0220658|periodic acid Schiff|periodic acid-Schiff| +E0220659|Periodic Acid Schiff|periodic acid-Schiff| +E0220659|periodic acid Schiff|periodic acid-Schiff| +E0220662|out of date|out-of-date| +E0220663|on duty|on-duty| +E0220664|off duty|off-duty| +E0220666|electro-physical|electrophysical| +E0220673|pre-study|prestudy| +E0220674|pre-study|prestudy| +E0220675|ear muff|earmuff| +E0220675|ear-muff|earmuff| +E0220676|roll over|rollover| +E0220676|roll-over|rollover| +E0220677|anti-retroviral|antiretroviral| +E0220678|pre-therapy|pretherapy| +E0220679|post-therapy|posttherapy| +E0220680|pre-therapy|pretherapy| +E0220681|post-therapy|posttherapy| +E0220682|micro-array|microarray| +E0220684|intra-tumorally|intratumorally| +E0220684|intra-tumourally|intratumorally| +E0220684|intratumourally|intratumorally| +E0220688|non-myeloblated|nonmyeloablated| +E0220690|non-myelo-ablative|nonmyeloablative| +E0220690|non-myeloablative|nonmyeloablative| +E0220692|anti-angiogenic|antiangiogenic| +E0220693|polyethylene-glycolated|polyethylene glycolated| +E0220695|neuro-development|neurodevelopment| +E0220696|anti-leukaemia|antileukemia| +E0220696|anti-leukemia|antileukemia| +E0220696|antileukaemia|antileukemia| +E0220711|micro-particulate|microparticulate| +E0220712|non-relapse|nonrelapse| +E0220713|non-visceral|nonviseral| +E0220714|PEGylated|pegylated| +E0220715|PEGylation|pegylation| +E0220719|deescalation|de-escalation| +E0220720|deescalate|de-escalate| +E0220724|anti-pain|antipain| +E0220737|defacto|de facto| +E0220740|zipcode|zip code| +E0220767|ante-mortem|ante mortem| +E0220767|antemortem|ante mortem| +E0220768|antemortem|ante mortem| +E0220877|end-organ|end organ| +E0220877|endorgan|end organ| +E0220878|end-artery|end artery| +E0220878|endartery|end artery| +E0220887|diazo-reaction|diazo reaction| +E0220887|diazoreaction|diazo reaction| +E0220899|cell-organ|cell organ| +E0220914|ex-officio|ex officio| +E0220920|break even|breakeven| +E0220920|break-even|breakeven| +E0220927|co-generation|cogeneration| +E0220928|co-generate|cogenerate| +E0220938|Euro|euro| +E0220939|Dinar|dinar| +E0220940|geo-thermal|geothermal| +E0220943|law maker|lawmaker| +E0220943|law-maker|lawmaker| +E0220944|lay off|layoff| +E0220944|lay-off|layoff| +E0220947|macro economic|macroeconomic| +E0220947|macro-economic|macroeconomic| +E0220949|micro-chip|microchip| +E0220950|mid morning|midmorning| +E0220950|mid-morning|midmorning| +E0220952|non recurring|nonrecurring| +E0220952|non-recurring|nonrecurring| +E0220953|non-stop|nonstop| +E0220954|off-take|offtake| +E0220955|over capacity|overcapacity| +E0220955|over-capacity|overcapacity| +E0220964|Ringgit|ringgit| +E0220965|Rupee|rupee| +E0220966|Rupiah|rupiah| +E0220973|super computer|supercomputer| +E0220973|super-computer|supercomputer| +E0220981|Yuan|yuan| +E0220987|color blind|color-blind| +E0220987|colorblind|color-blind| +E0220987|colour blind|color-blind| +E0220987|colour-blind|color-blind| +E0220987|colourblind|color-blind| +E0300022|mexamine|meksamine| +E0300025|dependantly|dependently| +E0300053|syncoumar|sinkumar| +E0300053|syncumar|sinkumar| +E0300134|adreno-leucodystrophy|adrenoleukodystrophy| +E0300134|adreno-leukodystrophy|adrenoleukodystrophy| +E0300134|adrenoleucodystrophy|adrenoleukodystrophy| +E0300137|aequorine|aequorin| +E0300143|afibrinogenaemia|afibrinogenemia| +E0300144|Maghrib|Maghreb| +E0300174|alfentanyl|alfentanil| +E0300175|alpheprol|alfeprol| +E0300181|alkyl sulfonate|alkylsulfonate| +E0300185|allo-uridine|allouridine| +E0300192|milurit|milurite| +E0300193|allyoestrenol|allylestrenol| +E0300217|alfathesin|alfatesine| +E0300232|amoeboma|ameboma| +E0300234|amenorrhoea|amenorrhea| +E0300265|aminoxaphen|aminoxafen| +E0300280|amodiaquine|amodiachin| +E0300284|phenamine|fenamine| +E0300287|amphetamine|amfetamine| +E0300309|anaplastia|anaplasia| +E0300313|obsidan|obzidan| +E0300344|lymphocin|lymphochin| +E0300344|lymphoquin|lymphochin| +E0300363|cygnoline|cignolin| +E0300364|anthramycin|antramycin| +E0300400|Apo A|ApoA| +E0300400|Apo-A|ApoA| +E0300401|Apo B|ApoB| +E0300401|Apo-B|ApoB| +E0300402|Apo C|ApoC| +E0300402|Apo-C|ApoC| +E0300403|Apo E|ApoE| +E0300403|Apo-E|ApoE| +E0300416|archebacterium|archaeobacterium| +E0300489|back pain|backpain| +E0300500|bed rest|bedrest| +E0300502|Belorussian|Byelorussian| +E0300503|Belorussian|Byelorussian| +E0300582|biperiden|biperidene| +E0300586|Afro American|Afroamerican| +E0300586|Afro-American|Afroamerican| +E0300587|Afro American|Afroamerican| +E0300587|Afro-American|Afroamerican| +E0300594|bloodstain|blood stain| +E0300601|bottle feeding|bottlefeeding| +E0300601|bottle-feeding|bottlefeeding| +E0300624|bromocryptin|bromocriptin| +E0300633|bromuracil|bromouracil| +E0300636|brucine|bruzin| +E0300648|mappin|mappine| +E0300650|bunaphtine|bunaftine| +E0300651|bunaphtide|bunaftide| +E0300664|Birma|Burma| +E0300694|Belarus|Byelarus| +E0300694|Belorussia|Byelarus| +E0300696|pentacin|pentacine| +E0300782|carminomycin|carminomicin| +E0300782|karminomicin|carminomicin| +E0300782|karminomycin|carminomicin| +E0300808|cephotaxim|cefotaxim| +E0300817|ceftriaxone|ceftriaxon| +E0300819|cephuroxime|cefuroxime| +E0300835|cefacetrile|cephacetrile| +E0300837|cephaloglycine|cefaloglycin| +E0300837|cephaloglycin|cefaloglycin| +E0300841|cephaloridine|cefaloridine| +E0300841|cephaloridin|cefaloridine| +E0300866|cheilitis|chelitis| +E0300866|chilitis|chelitis| +E0300895|chlorphenvinphos|chlorfenvinphos| +E0300916|chloromercuribenzenesulphonate|chloromercuribenzenesulfonate| +E0300917|chloromercuriphenylsulphonate|chloromercuriphenylsulfonate| +E0300918|chingamin|khingamin| +E0300956|colestyramine|colestyramin| +E0301000|hare lip|harelip| +E0301017|clomifene|clomiphene| +E0301017|clomifen|clomiphene| +E0301020|chlomipramine|clomipramine| +E0301023|klofenil|clofenil| +E0301031|chlorgyline|clorgyline| +E0301031|clorgiline|clorgyline| +E0301031|clorgilin|clorgyline| +E0301055|cocoanut|coconut| +E0301066|colecin|colicine| +E0301109|cryo fixation|cryofixation| +E0301109|cryo-fixation|cryofixation| +E0301115|dermatochalazia|dermatochalasia| +E0301166|deoxy sugar|deoxysugar| +E0301195|desulphoviridin|desulfoviridin| +E0301215|dexamphetamine|dexamfetamine| +E0301220|dextro-thyroxine|dextrothyroxine| +E0301235|amidotrizoate|amidotrezoate| +E0301264|dicroceliasis|dicrocoeliasis| +E0301265|dicroceliosis|dicrocoeliosis| +E0301276|dithiocarb|ditiocarb| +E0301281|amfepramone|amfepramon| +E0301292|dimethyl suberimidate|dimethylsuberimidate| +E0301351|spondylodiskitis|spondylodiscitis| +E0301374|dithioerythreitol|dithioerythritol| +E0301433|dysgammaglobulinaemia|dysgammaglobulinemia| +E0301448|ekonazole|econazole| +E0301455|edrophonium|edroponium| +E0301481|enbucrylate|enbucrilate| +E0301504|endo-polygalacturonase|endopolygalacturonase| +E0301515|enterodes|Enterodes| +E0301522|epichlorhydrin|epichlorohydrin| +E0301598|ethoglucid|etoglucid| +E0301615|ethylestrenol|ethyloestrenol| +E0301621|etilefrin|etilefrine| +E0301626|aethimizole|etimizol| +E0301626|ethimizole|etimizol| +E0301626|ethimizol|etimizol| +E0301626|ethymisole|etimizol| +E0301626|ethymizol|etimizol| +E0301662|phelypressin|felypressin| +E0301663|octopressin|octapressin| +E0301669|fenchlorfos|fenchlorphos| +E0301671|fendilin|fendiline| +E0301687|ferri-haem|ferrihaem| +E0301687|ferri-heme|ferrihaem| +E0301687|ferriheme|ferrihaem| +E0301688|ferri-protoporphyrin|ferriprotoporphyrin| +E0301710|finger sucking|fingersucking| +E0301716|perilene|perylene| +E0301731|fenelzin|phenelzine| +E0301739|fenformin|phenformin| +E0301748|fenmetrazin|phenmetrazine| +E0301774|butadion|butadione| +E0301819|diplidor|dipydolor| +E0301824|choriomammotropin|choriomammotrophin| +E0301835|plateletapheresis|plateletpheresis| +E0301838|pleuro-pneumonia|pleuropneumonia| +E0301859|erythraemia|erythremia| +E0301864|polyethylenimine|polyethyleneimine| +E0301873|polymenorrhoea|polymenorrhea| +E0301893|dysidria|dyshidria| +E0301921|Prepar|Pre-par| +E0301934|mid-trimester|midtrimester| +E0301935|mid-trimester|midtrimester| +E0301936|mid-trimester|midtrimester| +E0301945|preleucaemia|preleukemia| +E0301945|preleucemia|preleukemia| +E0301945|preleukaemia|preleukemia| +E0301948|fenilprenazone|phenylprenazone| +E0301960|privatisation|privatization| +E0301962|pro opiocortin|proopiocortin| +E0301962|pro-opiocortin|proopiocortin| +E0301962|propiomelanocortin|proopiocortin| +E0301975|prodigiosan|prodigiozan| +E0301988|prometazin|promethazine| +E0302010|bee bread|beebread| +E0302025|prospidine|prospidin| +E0302026|epoprostanol|epoprostenol| +E0302032|protionamide|prothionamide| +E0302050|pseudo-hypoparathyroidism|pseudohypoparathyroidism| +E0302054|pseudo-pseudo-hypoparathyroidism|pseudopseudohypoparathyroidism| +E0302054|pseudo-pseudohypoparathyroidism|pseudopseudohypoparathyroidism| +E0302054|pseudopseudo-hypoparathyroidism|pseudopseudohypoparathyroidism| +E0302056|psilocybin|psilocybine| +E0302130|racketball|racquetball| +E0302200|rifamycin|rifomycin| +E0302201|remantadine|rimantadine| +E0302201|riamantadine|rimantadine| +E0302208|robenzidine|robenzidene| +E0302215|Roumania|Romania| +E0302215|Rumania|Romania| +E0302266|Schizo-saccharomyces|Schizosaccharomyces| +E0302275|sea lion|sealion| +E0302284|selegyline|selegiline| +E0302325|skate board|skateboard| +E0302326|skate board|skateboard| +E0302327|skate boarding|skateboarding| +E0302374|spiramycin|spiramycine| +E0302377|veroshpiron|verospirone| +E0302380|spleno-megaly|splenomegaly| +E0302447|sulphachlorpyridazine|sulfachloropyridazine| +E0302453|sulformetoxin|sulformetoxine| +E0302457|sulphametopyrazine|sulfametopyrazine| +E0302464|sulphametoxidine|sulfametoxidine| +E0302465|sulphamethoxydiazine|sulfametoxydiazine| +E0302471|sulfamethoxypyridazine|sulphamethoxypyridazine| +E0302476|sulfapyridine|sulphapyridin| +E0302476|sulfapyridin|sulphapyridin| +E0302476|sulphapyridine|sulphapyridin| +E0302485|sulphasomidine|sulfaisodimidine| +E0302489|bromosulphophthalein|bromosulfophthalein| +E0302522|fusariotoxin|fusaritoxin| +E0302526|Tadjikistan|Tajikistan| +E0302526|Tadzhikistan|Tajikistan| +E0302532|ankle bone|anklebone| +E0302538|taufon|tauphon| +E0302642|thioacetamide|thiacetamid| +E0302642|thioacetamid|thiacetamid| +E0302668|tiorphan|thiorphan| +E0302675|thiosulphate|thiosulfate| +E0302684|thrombocythaemia|thrombocythemia| +E0302702|wryneck|wry neck| +E0302710|toyokamycin|toyocamycin| +E0302719|trans-activator|transactivator| +E0302737|trimetoquinol|trimethoquinol| +E0302752|chlorofos|chlorophos| +E0302811|trimethaphan|trimetaphan| +E0302815|centrin|centran| +E0302860|tularaemia|tularemia| +E0302865|tree shrew|treeshrew| +E0302883|up-regulation|upregulation| +E0302947|weight loss|weightloss| +E0302958|bouba|buba| +E0302970|zolasepam|zolazepam| +E0303353|amylin-amide|amylinamide| +E0303377|anhydro-tetrodotoxin|anhydrotetrodotoxin| +E0303455|aquomethaemoglobin|aquomethemoglobin| +E0303512|asialo-oligosaccharide|asialooligosaccharide| +E0303513|asialo-orosomucoid|asialoorosomucoid| +E0303514|asialo-ovomucoid|asialoovomucoid| +E0303639|bacterio-opsin|bacterioopsin| +E0303646|bactokulicide|bactoculicide| +E0303725|benzenesulphohydrazide|benzenesulfohydrazide| +E0303726|benzenesulphonamide|benzenesulfonamide| +E0303844|bis-tris|bistris| +E0303850|bitoksybacillin|bitoxibacillin| +E0304888|mono-octanoin|monooctanoin| +E0304889|mono-olein|monoolein| +E0304911|motropine|motropin| +E0304914|moxesterol|moxestrol| +E0304914|moxestrel|moxestrol| +E0305255|octoxinol|octoxynol| +E0305531|penta-acetyldigitoxin|pentaacetyldigitoxin| +E0305532|penta-acetylgitoxin|pentaacetylgitoxin| +E0305533|penta-ammineaquaruthenium|pentaammineaquaruthenium| +E0305534|penta-amminechlororuthenium|pentaamminechlororuthenium| +E0305616|phallolysin|phallolysine| +E0305678|phenylsulphate|phenylsulfate| +E0305721|phospho-opsin|phosphoopsin| +E0305783|sila-hexocyclium|silahexocyclium| +E0305809|sirohaem|siroheme| +E0305830|Solco Trichovac|SolcoTrichovac| +E0305831|Solco Urovac|SolcoUrovac| +E0305878|spirobramine|spirobramin| +E0305981|sulphaclozine|sulfaclozine| +E0305994|sulphatolamide|sulfatolamide| +E0305998|sulphitocobalamin|sulfitocobalamin| +E0306005|sulfo-ciprofloxacin|sulfociprofloxacin| +E0306011|sulphophosphovanillin|sulfophosphovanillin| +E0306012|sulphoquinovose|sulfoquinovose| +E0306014|sulfotep|sulfotepp| +E0306015|sulphotrim|sulfotrim| +E0306028|super EPA|superEPA| +E0306178|tetra-acetylmelitten|tetraacetylmelitten| +E0306193|tetra-ethyltin|tetraethyltin| +E0306254|theo-esberiven|theoesberiven| +E0306396|thomycide|tomicide| +E0306497|triethyl lead|triethyllead| +E0306531|trimethyl lead|trimethyllead| +E0306726|verdohaemochrome|verdohemochrome| +E0306764|vinylcyclo-octane|vinylcyclooctane| +E0306892|CD-ROM|CDROM| +E0306895|data bank|databank| +E0306900|floor covering|floorcovering| +E0306918|ethmozine|ethmozin| +E0306918|etmozin|ethmozin| +E0306919|moracizine|moracizin| +E0307049|gengkwanin|genkwanin| +E0307053|glucosulphone|glucosulfone| +E0307073|iberiatoxin|iberiotoxin| +E0307093|kijimicin|kijimycin| +E0307098|leukopyrokinin|leucopyrokinin| +E0307099|leucosulphakinin|leucosulfakinin| +E0307099|leukosulfakinin|leucosulfakinin| +E0307099|leukosulphakinin|leucosulfakinin| +E0307120|mira-gel|miragel| +E0307212|sulphoevernan|sulfoevernan| +E0307256|load bearing|loadbearing| +E0307257|weight bearing|weightbearing| +E0307258|needle sharing|needlesharing| +E0307258|needle-sharing|needlesharing| +E0307268|agrichemical|agrochemical| +E0307270|pancreatico-duodenectomy|pancreaticoduodenectomy| +E0307283|needle stick|needlestick| +E0307283|needle-stick|needlestick| +E0307325|synapto-physin|synaptophysin| +E0307375|hypocapnaemia|hypocapnemia| +E0307408|polydipsia|polydypsia| +E0307412|drop foot|dropfoot| +E0307412|drop-foot|dropfoot| +E0307421|amiksin|amyxin| +E0307421|amixin|amyxin| +E0307445|co-dependence|codependence| +E0307446|co-dependency|codependency| +E0307455|deprenil|deprenyl| +E0307467|en clomiphene|enclomifene| +E0307467|en-clomiphene|enclomifene| +E0307467|enclomiphene|enclomifene| +E0307467|enclomiphen|enclomifene| +E0307480|phthivazide|ftivazide| +E0307486|gastrozepin|gastrotsepin| +E0307492|homeo box|homeobox| +E0307505|kidnaping|kidnapping| +E0307517|non-respondent|nonrespondent| +E0307712|alkylsulphohydrolase|alkylsulfohydrolase| +E0307848|antiffeine|antifein| +E0308063|benzhydrylsulphinylacetamide|benzhydrylsulfinylacetamide| +E0308102|bicarphen|bicarfen| +E0308121|binapakril|binapacrile| +E0308291|chetofenilbutazone|chetofenilbutazon| +E0308297|chloracyzine|chloracysine| +E0308535|cyanomorpholino-adriamycin|cyanomorpholinoadriamycin| +E0308569|cyclo-somatostatin|cyclosomatostatin| +E0308662|deitiphorine|deitiforine| +E0308952|dilafurane|Dilafurane| +E0309115|dual cement|dualcement| +E0309327|elokron|elocron| +E0309340|emoxipine|emoxipin| +E0309340|emoxypine|emoxipin| +E0309340|emoxypin|emoxipin| +E0309351|endo-xylanase|endoxylanase| +E0309382|epitiostanol|epithiostanol| +E0309384|etacizin|etatsizin| +E0309384|etacyzine|etatsizin| +E0309384|etatsizine|etatsizin| +E0309384|ethacizine|etatsizin| +E0309384|ethacizin|etatsizin| +E0309395|ergocristine|ergocrystin| +E0309395|ergokrystin|ergocrystin| +E0309404|erigem|erygem| +E0309450|ethirazole|ethirazol| +E0309461|ethylbenztropine|ethylbenzatropine| +E0309463|ethylbromphenvinfos|ethylbromfenvinfos| +E0309463|ethylbromphenvinphos|ethylbromfenvinfos| +E0309489|etophylline|etophyllin| +E0309518|falicain|falicaine| +E0309537|fenaminosulph|fenaminosulf| +E0309548|fenitro-oxone|fenitrooxon| +E0309548|fenitro-oxon|fenitrooxon| +E0309548|fenitrooxone|fenitrooxon| +E0309558|fenvalerate|fenvalarate| +E0309562|ferakryl|ferakril| +E0309568|ferricyanohaemoglobin|ferricyanohemoglobin| +E0309576|ferroactinolite|ferroactinolyte| +E0309629|fluorosulphonate|fluorosulfonate| +E0309652|formidacillin|foramidocillin| +E0309745|ganglefene|ganglefen| +E0309777|germacrone|germacron| +E0309804|glucametacine|glucametacin| +E0309831|glutaurin|glutaurine| +E0309895|haloanizone|haloanisone| +E0309899|halo-opsin|haloopsin| +E0309928|hepatoglobine|hepatoglobin| +E0309946|hexadecanesulphonate|hexadecanesulfonate| +E0310017|hydrosulphite|hydrosulfite| +E0310037|hydroxymethylsulphonate|hydroxymethylsulfonate| +E0310063|ichthyomicin|ichthyomycin| +E0310063|ichtiomicin|ichthyomycin| +E0310063|ichtiomycin|ichthyomycin| +E0310085|immunomicin|immunomycin| +E0310095|indamicin|indamycin| +E0310110|inkazan|inkasan| +E0310114|inostamicin|inostamycin| +E0310279|kemantane|kemantan| +E0310281|kenshengmycine|kensengmycin| +E0310358|leakadin|leacadin| +E0310359|lekopain|lecopain| +E0310380|leukotoxin|leucotoxin| +E0310385|Leukocell|leukocell| +E0310406|lignosulphonate|lignosulfonate| +E0310422|lipo-oligosaccharide|lipooligosaccharide| +E0310430|listrocol|listricol| +E0310491|lysosulphatide|lysosulfatide| +E0310495|maaloxon|maaloxan| +E0310501|maduramycin|maduramicin| +E0310509|magurlyt|magurlit| +E0310538|maroxepine|maroxepin| +E0310567|megosine|megasin| +E0310578|melperone|melperon| +E0310580|menfegol|menfegal| +E0310580|menphegal|menfegal| +E0310580|menphegol|menfegal| +E0310584|menogaril|menogarol| +E0310614|mesuximide|mesuximid| +E0310623|methamidophos|metamidophos| +E0310626|metamizil|metamyzil| +E0310626|methamisil|metamyzil| +E0310636|methemocyanin|methaemocyanin| +E0310665|methylbromofos|methylbromophos| +E0310666|methylbromfenvinfos|methylbromphenvinphos| +E0310666|methylbromfenvinphos|methylbromphenvinphos| +E0310666|methylbromphenvinfos|methylbromphenvinphos| +E0310672|methylcobalamine|methylcobalamin| +E0310693|methylsalazosulphapyridine|methylsalazosulfapyridine| +E0310697|methylsulphonylfluoride|methylsulfonylfluoride| +E0310782|monochlorodimedone|monochlorodimedon| +E0310811|monuron|monouron| +E0310849|midecamycin|mydecamycin| +E0310849|midekamycin|mydecamycin| +E0310864|nacom|nakom| +E0310915|nerobolyl|nerobolil| +E0310930|nikofezon|nicophezon| +E0310971|nitrosohaem|nitrosoheme| +E0310980|nitrosylferrohaem|nitrosylferroheme| +E0310981|nitrosylhaem|nitrosylheme| +E0310983|nitrosylprotoheme|nitrosylprotohaem| +E0310992|noformicin|noformycin| +E0310995|nonflamine|nonflamin| +E0311043|novesin|novescine| +E0311049|novurite|novurit| +E0311065|octaethylverdohemochrome|octaethylverdohaemochrome| +E0311080|oxoline|oksolin| +E0311103|optochine|optochin| +E0311103|optoquine|optochin| +E0311108|orase|orasa| +E0311108|oraza|orasa| +E0311251|paphencyl|paphencil| +E0311389|diphtheria-pertussis immunisation|diphtheria-pertussis immunization| +E0311399|drug-metabolising enzyme|drug-metabolizing enzyme| +E0311409|hexamethylenebisacetamide|hexamethylene bisacetamide| +E0311416|hydroxyphenyllactic acid|hydroxyphenyl lactic acid| +E0311423|infection-associated haemophagocytic syndrome|infection-associated hemophagocytic syndrome| +E0311489|human gonadotrophin releasing hormone associated peptide|human gonadotropin releasing hormone associated peptide| +E0311489|human gonadotrophin releasing hormone associated peptid|human gonadotropin releasing hormone associated peptide| +E0311489|human gonadotropin releasing hormone associated peptid|human gonadotropin releasing hormone associated peptide| +E0311698|LRAPeptid|LRAPeptide| +E0311699|leucine-rich amelogenin peptid|leucine-rich amelogenin peptide| +E0311827|metaiodobenzylguanidine|meta-iodobenzylguanidine| +E0312074|NF IV|NFIV| +E0312124|Pekin|Peking| +E0312126|pelletise|pelletize| +E0312127|pelletisation|pelletization| +E0312128|pelletiser|pelletizer| +E0312130|pentasulfated|pentasulphated| +E0312148|photoisomerise|photoisomerize| +E0312149|photoisomerisation|photoisomerization| +E0312153|photo-oxidise|photooxidize| +E0312153|photo-oxidize|photooxidize| +E0312153|photooxidise|photooxidize| +E0312154|photopolymerise|photopolymerize| +E0312155|photopolymerisation|photopolymerization| +E0312168|pinealectomise|pinealectomize| +E0312174|plasticisation|plasticization| +E0312181|polysulphated|polysulfated| +E0312183|polytraumatized|polytraumatised| +E0312196|postlabelling|postlabeling| +E0312197|postlabelling|postlabeling| +E0312222|pre-embed|preembed| +E0312223|pre-establish|preestablish| +E0312224|pre-establishment|preestablishment| +E0312225|pre-expose|preexpose| +E0312235|pre-irradiate|preirradiate| +E0312236|pre-irradiation|preirradiation| +E0312263|proteolyze|proteolyse| +E0312270|purse string|pursestring| +E0312270|purse-string|pursestring| +E0312274|quantise|quantize| +E0312275|quantisation|quantization| +E0312320|recatheterisation|recatheterization| +E0312328|recolonise|recolonize| +E0312341|recrystallisation|recrystallization| +E0312371|rehospitalise|rehospitalize| +E0312372|rehospitalisation|rehospitalization| +E0312417|unsulphated|unsulfated| +E0312482|repolarise|repolarize| +E0312483|repolarisation|repolarization| +E0312515|reutilise|reutilize| +E0312516|reutilisation|reutilization| +E0312519|revascularise|revascularize| +E0312520|revolutionalise|revolutionalize| +E0312523|ritualise|ritualize| +E0312524|ritualisation|ritualization| +E0312527|rumor|rumour| +E0312539|sensibilise|sensibilize| +E0312544|servocontrol|servo-control| +E0312546|shoe-string|shoestring| +E0312552|siliconise|siliconize| +E0312553|siliconisation|siliconization| +E0312567|smoulder|smolder| +E0312568|smoulder|smolder| +E0312582|spiralise|spiralize| +E0312583|spiralisation|spiralization| +E0312603|subspecialise|subspecialize| +E0312604|subspecialisation|subspecialization| +E0312616|synthetise|synthetize| +E0312628|tetrasulphonated|tetrasulfonated| +E0312632|thermosensitise|thermosensitize| +E0312636|thoracotomise|thoracotomize| +E0312649|tolerise|tolerize| +E0312650|tolerisation|tolerization| +E0312654|traumatise|traumatize| +E0312655|traumatisation|traumatization| +E0312671|trisulphated|trisulfated| +E0312683|unacclimatized|unacclimatised| +E0312718|uncatalysed|uncatalyzed| +E0312719|uncategorised|uncategorized| +E0312735|uncolonised|uncolonized| +E0312758|underemphasise|underemphasize| +E0312769|underutilise|underutilize| +E0312770|underutilisation|underutilization| +E0312835|unionise|unionize| +E0312852|unmetabolized|unmetabolised| +E0312854|unmineralised|unmineralized| +E0312865|unoxidised|unoxidized| +E0312867|unpasteurised|unpasteurized| +E0312886|unrealised|unrealized| +E0312898|unrivalled|unrivaled| +E0312908|unsensitised|unsensitized| +E0312915|unspecialised|unspecialized| +E0312916|unstabilised|unstabilized| +E0313012|nucleosidetriphosphatase|nucleoside-triphosphatase| +E0313085|phenylalanyldiiodotyrosine|phenylalanyl-diiodotyrosine| +E0313215|polyhexylcyanoacrylate|polyhexyl cyanoacrylate| +E0313307|foetal acute phase agent|fetal acute phase agent| +E0313854|cetyltrimethylammonium bromide|cetyltrimethyl-ammonium bromide| +E0314504|glucosaminyl-muramyl-dipeptide|glucosaminylmuramyl dipeptide| +E0314524|hypercalcaemic hormone|hypercalcemic hormone| +E0314564|biologic false positive|biologic false-positive| +E0314582|extracorporeal shock wave lithotripsy|extracorporeal shockwave lithotripsy| +E0314606|bromsulfalein sodium|bromsulphalein sodium| +E0314614|automated anaesthesia record keeper|automated anesthesia record keeper| +E0314660|fluorescent treponemal antibody-absorption|fluorescent treponemal antibody absorption| +E0314680|hexamethyl-phosphoric triamide|hexamethylphosphoric triamide| +E0314816|auriculo-ventricular|auriculoventricular| +E0314825|enzyme linked immuno-sorbent assay|enzyme-linked immunosorbent assay| +E0314825|enzyme linked immunosorbent assay|enzyme-linked immunosorbent assay| +E0314825|enzyme-linked immuno-sorbent assay|enzyme-linked immunosorbent assay| +E0314830|human T cell leucaemia lymphoma virus|human T cell leukemia lymphoma virus| +E0314830|human T cell leucemia lymphoma virus|human T cell leukemia lymphoma virus| +E0314830|human T cell leukaemia lymphoma virus|human T cell leukemia lymphoma virus| +E0314916|tuberculin-tested|tuberculin tested| +E0314954|diagnosis related group|diagnosis-related group| +E0314985|positive attention behaviour|positive attention behavior| +E0315030|preventive health behaviour|preventive health behavior| +E0315039|pyriform|piriform| +E0315056|high-molecular-weight kininogen|high molecular weight kininogen| +E0315071|peanut-agglutinin|peanut agglutinin| +E0315105|voltampere|volt-ampere| +E0315116|extractibility|extractability| +E0315117|thermosensitisation|thermosensitization| +E0315120|non-linearity|nonlinearity| +E0315379|HibTITER|Hibtiter| +E0315489|ALEC|Alec| +E0316683|monosulphated|monosulfated| +E0316688|multibarrelled|multibarreled| +E0316689|multicentred|multicentered| +E0316691|multi-colored|multicolored| +E0316691|multi-coloured|multicolored| +E0316691|multicoloured|multicolored| +E0316692|multi-handicapped|multihandicapped| +E0316693|multi-laminated|multilaminated| +E0316694|multi-layered|multilayered| +E0316695|multi-layering|multilayering| +E0316696|multi-lobated|multilobated| +E0316699|multi-transfused|multitransfused| +E0316703|myristylated|myristoylated| +E0316705|necrotise|necrotize| +E0316706|necrotisation|necrotization| +E0316708|neovascularizing|neovascularising| +E0316716|noise-making|noisemaking| +E0316717|noise-making|noisemaking| +E0316725|nonanaesthetised|nonanesthetized| +E0316726|nonasulfated|nonasulphated| +E0316744|non-demented|nondemented| +E0316747|nondepolarised|nondepolarized| +E0316748|nondepolarising|nondepolarizing| +E0316749|non depressed|nondepressed| +E0316749|non-depressed|nondepressed| +E0316756|nonenergised|nonenergized| +E0316758|non-exposed|nonexposed| +E0316772|nonheparinised|nonheparinized| +E0316773|nonhospitalised|nonhospitalized| +E0316774|nonhydrolysed|nonhydrolyzed| +E0316777|nonimmunised|nonimmunized| +E0316791|non ionized|nonionized| +E0316791|non-ionized|nonionized| +E0316793|nonkeratinised|nonkeratinized| +E0316794|nonkeratinising|nonkeratinizing| +E0316795|nonlabelled|nonlabeled| +E0316800|nonmetabolised|nonmetabolized| +E0316806|nonopsonised|nonopsonized| +E0316815|nonpolarised|nonpolarized| +E0316819|non producing|nonproducing| +E0316819|non-producing|nonproducing| +E0316838|nonsensitised|nonsensitized| +E0316841|nonspecialised|nonspecialized| +E0316843|nonsplenectomised|nonsplenectomized| +E0316844|nonstandardised|nonstandardized| +E0316845|non-stimulated|nonstimulated| +E0316848|nonsulphated|nonsulfated| +E0316855|non teaching|nonteaching| +E0316855|non-teaching|nonteaching| +E0316862|non treated|nontreated| +E0316862|non-treated|nontreated| +E0316867|non-vaccinated|nonvaccinated| +E0316868|non-vaccination|nonvaccination| +E0316869|nonvascularised|nonvascularized| +E0316879|estrogenised|oestrogenized| +E0316879|estrogenized|oestrogenized| +E0316879|oestrogenised|oestrogenized| +E0316880|oligomerise|oligomerize| +E0316882|operationalise|operationalize| +E0316883|operationalisation|operationalization| +E0316884|orchidectomise|orchidectomize| +E0316891|orthokeratinised|orthokeratinized| +E0316895|osteotomise|osteotomize| +E0316915|over-represent|overrepresent| +E0316946|rhinological|rhinologic| +E0316953|antileucaemic|antileukaemic| +E0316953|antileucemic|antileukaemic| +E0316953|antileukemic|antileukaemic| +E0316957|chronopharmacological|chronopharmacologic| +E0316965|dysalbuminemic|dysalbuminaemic| +E0316968|etiopathological|etiopathologic| +E0316969|euprolactinaemic|euprolactinemic| +E0316974|hepta-carboxylic|heptacarboxylic| +E0316976|hydroxyeicosapentenoic|hydroxyeicosapentaenoic| +E0316978|hypergammaglobulinaemic|hypergammaglobulinemic| +E0316982|hypoprolactinaemic|hypoprolactinemic| +E0316984|hypoprothrombinaemic|hypoprothrombinemic| +E0316985|intra-cytoplasmatic|intracytoplasmatic| +E0316998|non symptomatic|nonsymptomatic| +E0316998|non-symptomatic|nonsymptomatic| +E0317008|sulfosalicylic|sulphosalicylic| +E0317013|ursacholic|ursocholic| +E0317016|acanthamebic|acanthamoebic| +E0317017|acatalasaemic|acatalasemic| +E0317019|aminoethanesulphonic|aminoethanesulfonic| +E0317026|bilio-enteric|bilioenteric| +E0317036|duodeno-pancreatic|duodenopancreatic| +E0317047|haematuric|hematuric| +E0317052|hyperlipemic|hyperlipaemic| +E0317084|tachy-systolic|telesystolic| +E0317096|antihemolytic|antihaemolytic| +E0317106|cerebello-thalamic|cerebellothalamic| +E0317179|trisulphonic|trisulfonic| +E0317185|anti-alcoholic|antialcoholic| +E0317231|hypernatremic|hypernatraemic| +E0317233|hypoalbuminemic|hypoalbuminaemic| +E0317238|immuno-electron microscopic|immunoelectronmicroscopic| +E0317238|immunoelectron microscopic|immunoelectronmicroscopic| +E0317249|micro-morphologic|micromorphologic| +E0317270|psychoneurological|psychoneurologic| +E0317298|aminopropanesulphonic|aminopropanesulfonic| +E0317322|dysglobulinaemic|dysglobulinemic| +E0317323|dysmenorrheic|dysmenorrhoeic| +E0317329|heptanesulphonic|heptanesulfonic| +E0317341|hypergastrinemic|hypergastrinaemic| +E0317343|hyperuricemic|hyperuricaemic| +E0317345|hypoproteinemic|hypoproteinaemic| +E0317349|insulinemic|insulinaemic| +E0317396|uretero-colic|ureterocolic| +E0317451|entero-colic|enterocolic| +E0317460|gastro-colonic|gastrocolonic| +E0317476|hypermagnesemic|hypermagnesaemic| +E0317486|mechano-electric|mechanoelectric| +E0317597|dysgammaglobulinaemic|dysgammaglobulinemic| +E0317623|hyperphosphatemic|hyperphosphataemic| +E0317626|hypouricemic|hypouricaemic| +E0317636|macroglobulinaemic|macroglobulinemic| +E0317701|tetrasulphonic|tetrasulfonic| +E0317707|toluenesulfonic|toluenesulphonic| +E0317804|diazobenzenesulphonic|diazobenzenesulfonic| +E0317842|fibrinemic|fibrinaemic| +E0317853|guanidinoethanesulfonic|guanidinoethanesulphonic| +E0317854|hemoglobinolytic|haemoglobinolytic| +E0317855|hemolymphatic|haemolymphatic| +E0317856|haemocytic|hemocytic| +E0317861|hexanesulphonic|hexanesulfonic| +E0317895|isothiocyanatobenzenesulphonic|isothiocyanatobenzenesulfonic| +E0317904|lympholeucaemic|lympholeukemic| +E0317904|lympholeucemic|lympholeukemic| +E0317904|lympholeukaemic|lympholeukemic| +E0317905|lymphopenic|lymphopaenic| +E0317908|meningo-encephalic|meningoencephalic| +E0317910|mercaptoethanesulfonic|mercaptoethanesulphonic| +E0317928|naphthylaminesulphonic|naphthylaminesulfonic| +E0317951|oxoethanesulphonic|oxoethanesulfonic| +E0317989|psychosociological|psychosociologic| +E0318026|vinylsulphonic|vinylsulfonic| +E0318031|neuropaediatric|neuropediatric| +E0318034|lactonisation|lactonization| +E0318036|microhaemagglutination|microhemagglutination| +E0318040|postembolisation|postembolization| +E0318041|structuralisation|structuralization| +E0318043|trimerisation|trimerization| +E0318063|allosensitisation|allosensitization| +E0318070|desulphuration|desulfuration| +E0318072|enolisation|enolization| +E0318080|humanisation|humanization| +E0318082|microvascularisation|microvascularization| +E0318089|aromatisation|aromatization| +E0318092|cationisation|cationization| +E0318099|departmentalisation|departmentalization| +E0318100|departmentalise|departmentalize| +E0318110|parameterisation|parameterization| +E0318111|parameterise|parameterize| +E0318113|prioritisation|prioritization| +E0318115|resocialisation|resocialization| +E0318116|resocialise|resocialize| +E0318122|cryo section|cryosection| +E0318122|cryo-section|cryosection| +E0318134|bilateralisation|bilateralization| +E0318136|cellularisation|cellularization| +E0318139|compactisation|compactization| +E0318140|customisation|customization| +E0318147|precurarisation|precurarization| +E0318149|supersensitisation|supersensitization| +E0318150|thermostabilisation|thermostabilization| +E0318151|topoisomerisation|topoisomerization| +E0318158|cicatrization|cicatrisation| +E0318161|demasculinisation|demasculinization| +E0318162|demasculinise|demasculinize| +E0318165|dextro-transposition|dextrotransposition| +E0318166|digitalization|digitalisation| +E0318167|digitilise|digitilize| +E0318172|micellisation|micellization| +E0318185|subcategorisation|subcategorization| +E0318186|subcategorise|subcategorize| +E0318187|temporisation|temporization| +E0318188|thromboembolisation|thromboembolization| +E0318191|coloration|colouration| +E0318208|photodimerisation|photodimerization| +E0318214|asynchronisation|asynchronization| +E0318217|bureaucratisation|bureaucratization| +E0318218|chimerisation|chimerization| +E0318222|decriminalisation|decriminalization| +E0318223|defunctionalisation|defunctionalization| +E0318224|depoliticisation|depoliticization| +E0318225|depoliticise|depoliticize| +E0318231|dorsalisation|dorsalization| +E0318232|dorsalise|dorsalize| +E0318234|haemoadsorption|hemoadsorption| +E0318244|skeletonisation|skeletonization| +E0318245|skeletonise|skeletonize| +E0318252|Americanisation|Americanization| +E0318253|Americanise|Americanize| +E0318267|leucoagglutination|leukoagglutination| +E0318268|microcrystallisation|microcrystallization| +E0318271|neurosensitisation|neurosensitization| +E0318276|pressurise|pressurize| +E0318281|thermocauterisation|thermocauterization| +E0318282|thermocauterise|thermocauterize| +E0318284|xenohybridisation|xenohybridization| +E0318287|academisation|academization| +E0318289|alphabetisation|alphabetization| +E0318290|alphabetise|alphabetize| +E0318291|anodisation|anodization| +E0318292|anodise|anodize| +E0318293|autopolymerisation|autopolymerization| +E0318294|bicompartmentalisation|bicompartmentalization| +E0318295|bicompartmentalise|bicompartmentalize| +E0318297|colorisation|colorization| +E0318297|colourisation|colorization| +E0318297|colourization|colorization| +E0318298|colorise|colorize| +E0318298|colourize|colorize| +E0318298|coulorise|colorize| +E0318303|decolouration|decoloration| +E0318308|federalisation|federalization| +E0318309|federalise|federalize| +E0318310|finalisation|finalization| +E0318312|glucuronisation|glucuronization| +E0318313|glucoronise|glucoronize| +E0318314|haploidisation|haploidization| +E0318315|haploidise|haploidize| +E0318317|impersonalisation|impersonalization| +E0318318|impersonalise|impersonalize| +E0318320|monosulphation|monosulfation| +E0318322|motorisation|motorization| +E0318323|neuroimmunisation|neuroimmunization| +E0318326|radiolocalisation|radiolocalization| +E0318327|romanticisation|romanticization| +E0318328|saponisation|saponization| +E0318329|scrutinisation|scrutinization| +E0318330|sexualisation|sexualization| +E0318331|sexualise|sexualize| +E0318334|thermoradiosensitisation|thermoradiosensitization| +E0318336|xanthomatisation|xanthomatization| +E0318339|re-occlusion|reocclusion| +E0318349|post-transfusion|posttransfusion| +E0318350|post-transfusion|posttransfusion| +E0318351|post-transfusion|posttransfusion| +E0318400|haemotransfusion|hemotransfusion| +E0318412|autohaemotransfusion|autohemotransfusion| +E0318563|leucopoiesis|leukopoiesis| +E0318599|erythroleucosis|erythroleukosis| +E0318602|haematoemesis|hematoemesis| +E0318603|haematophagocytosis|hematophagocytosis| +E0318604|haemobartonellosis|hemobartonellosis| +E0318627|medalist|medallist| +E0318671|ethylmalonic-adipicaciduria|ethylmalonic-adipic aciduria| +E0318809|indole acrylic acid|indoleacrylic acid| +E0318810|indole acrylic glycine|indoleacrylic glycine| +E0318818|bromoethanesulphonic acid|bromoethanesulfonic acid| +E0318820|criminologic|criminological| +E0318847|beta nitropropionic acid|beta-nitropropionic acid| +E0318849|thiazolidinecarboxylic acid|thiazolidine carboxylic acid| +E0318853|para-benzylaminesulphonic acid|para-benzylaminesulfonic acid| +E0318869|beta hydroxyvaleric acid|beta-hydroxyvaleric acid| +E0318905|beta naphthoxyacetic acid|beta-naphthoxyacetic acid| +E0318909|octanesulphonic acid|octanesulfonic acid| +E0318914|beta ureidopropionic acid|beta-ureidopropionic acid| +E0318916|aminobenzenesulphonic acid|aminobenzenesulfonic acid| +E0318917|para-aminobenzenesulphonic acid|para-aminobenzenesulfonic acid| +E0318995|mercaptoethanesulfonic acid|mercaptoethanesulphonic acid| +E0319009|oxoethanesulphonic acid|oxoethanesulfonic acid| +E0319059|leucaemia virus|leukemia virus| +E0319059|leucemia virus|leukemia virus| +E0319059|leukaemia virus|leukemia virus| +E0319111|KJ|kj| +E0319141|isoquinolinesulphonyl|isoquinolinesulfonyl| +E0319142|immuno-cytochemically|immunocytochemically| +E0319142|immunocyto-chemically|immunocytochemically| +E0319154|haemodynamically|hemodynamically| +E0319173|non verbal|nonverbal| +E0319173|non-verbal|nonverbal| +E0319175|venous haematocrit|venous hematocrit| +E0319187|endothelium derived relaxing factor|endothelium-derived relaxing factor| +E0319209|subsp.|subsp| +E0319211|Machado Joseph disease|Machado-Joseph disease| +E0319229|placque neutralisation|plaque neutralization| +E0319229|placque neutralization|plaque neutralization| +E0319229|plaque neutralisation|plaque neutralization| +E0319296|over-production|overproduction| +E0319297|over-produce|overproduce| +E0319301|anti-cardiolipin|anticardiolipin| +E0319302|anti-cardiolipin antibody|anticardiolipin antibody| +E0319346|oestradiol-binding protein|estradiol-binding protein| +E0319362|reinforced manoeuvre|reinforced maneuver| +E0319363|manoeuvre|maneuver| +E0319391|intra-fallopian|intrafallopian| +E0319402|meter|metre| +E0319405|bio-electrical|bioelectrical| +E0319431|rectal morphine sulphate|rectal morphine sulfate| +E0319456|intra-individual|intraindividual| +E0319459|long-standing|longstanding| +E0319492|ferrihaemoprotein|ferrihemoprotein| +E0319501|heamagglutinin neuraminidase|hemagglutinin neuraminidase| +E0319521|read-only memory|read only memory| +E0319543|phenol sulfotransferase|phenolsulfotransferase| +E0319543|phenol sulphotransferase|phenolsulfotransferase| +E0319543|phenolsulphotransferase|phenolsulfotransferase| +E0319575|co-stimulate|costimulate| +E0319576|co-stimulation|costimulation| +E0319593|gastrin-releasing peptid|gastrin-releasing peptide| +E0319643|semi-quantitatively|semiquantitatively| +E0319644|euthanise|euthanize| +E0319652|non-transgenic|nontransgenic| +E0319661|hydrolysable|hydrolyzable| +E0319691|life span|lifespan| +E0319709|neurogenic bladder disfunction|neurogenic bladder dysfunction| +E0319732|bucco-linguo-masticatory|buccolinguomasticatory| +E0319772|ascites tumour fluid|ascites tumor fluid| +E0319807|work site|worksite| +E0319885|naso-tracheal|nasotracheal| +E0319887|post-conceptional|postconceptional| +E0319890|co-immunoprecipitation|coimmunoprecipitation| +E0319891|non-tumorous|nontumorous| +E0319891|non-tumourous|nontumorous| +E0319891|nontumourous|nontumorous| +E0319910|pancreatico-biliary|pancreaticobiliary| +E0319911|non conservative|nonconservative| +E0319911|non-conservative|nonconservative| +E0319914|case load|caseload| +E0319928|immuno-active|immunoactive| +E0319946|neurosecretory disfunction|neurosecretory dysfunction| +E0319966|central tumour registry|central tumor registry| +E0319991|behavioural disorder|behavioral disorder| +E0320017|germfree|germ-free| +E0320019|post-anaesthesia|postanesthesia| +E0320019|post-anesthesia|postanesthesia| +E0320019|postanaesthesia|postanesthesia| +E0320020|post-anaesthesia|postanesthesia| +E0320020|post-anesthesia|postanesthesia| +E0320020|postanaesthesia|postanesthesia| +E0320023|anti-tuberculosis|antituberculosis| +E0320026|inter-quartile|interquartile| +E0320043|tumour doubling time|tumor doubling time| +E0320046|rat basophilic leucaemia|rat basophilic leukemia| +E0320046|rat basophilic leucemia|rat basophilic leukemia| +E0320046|rat basophilic leukaemia|rat basophilic leukemia| +E0320051|post-surgery|postsurgery| +E0320052|post-surgery|postsurgery| +E0320053|infra-inguinal|infrainguinal| +E0320064|inter-aural|interaural| +E0320071|multi-layer|multilayer| +E0320094|oro-tracheal|orotracheal| +E0320101|sulphoximine|sulfoximine| +E0320162|tumour-bearing animal|tumor-bearing animal| +E0320190|non classical|nonclassical| +E0320190|non-classical|nonclassical| +E0320201|hepato-protective|hepatoprotective| +E0320202|castor|caster| +E0320272|phenix|phoenix| +E0320274|pick-up|pickup| +E0320275|pick-up|pickup| +E0320331|screw worm|screwworm| +E0320331|screw-worm|screwworm| +E0320332|SCUBA|scuba| +E0320333|SCUBA|scuba| +E0320368|stand-by|standby| +E0320369|stand-by|standby| +E0320374|step-mother|stepmother| +E0320432|welked|whelked| +E0320451|king bird|kingbird| +E0320486|lodge-pole|lodgepole| +E0320497|mackintosh|macintosh| +E0320535|midrange|mid-range| +E0320536|mid-term|midterm| +E0320537|mid-winter|midwinter| +E0320545|monolog|monologue| +E0320670|pixy|pixie| +E0320683|pollack|pollock| +E0320684|pollack|pollock| +E0320720|prothonotary|protonotary| +E0320750|rat-tail|rattail| +E0320751|razor-back|razorback| +E0320791|run down|rundown| +E0320791|run-down|rundown| +E0320792|run down|rundown| +E0320792|run-down|rundown| +E0320795|Sabra|sabra| +E0320803|sand-hill|sandhill| +E0320859|side-arm|sidearm| +E0320860|side-arm|sidearm| +E0320862|side-wall|sidewall| +E0320869|Shiva|Siva| +E0320915|Sputnik|sputnik| +E0321028|trade off|tradeoff| +E0321028|trade-off|tradeoff| +E0321045|czar|tsar| +E0321101|walk-out|walkout| +E0321152|musk ox|muskox| +E0321199|ileo-anal|ileoanal| +E0321236|protein-energy malnutrition|protein energy malnutrition| +E0321278|cortico-medullary|corticomedullary| +E0321311|partial splenic embolisation|partial splenic embolization| +E0321315|Parkinsonian side effect|parkinsonian side effect| +E0321320|cysteine-string protein|cysteine string protein| +E0321329|brush-border membrane vesicle|brush border membrane vesicle| +E0321335|pre-discharge|predischarge| +E0321336|pre-discharge|predischarge| +E0321356|crown rump length|crown-rump length| +E0321368|diam.|diam| +E0321413|intra-chromosomal|intrachromosomal| +E0321415|pin prick|pinprick| +E0321443|aerial combat manoeuvre|aerial combat maneuver| +E0321465|cysto-urethrography|cystourethrography| +E0321480|galactosyl ceramide|galactosylceramide| +E0321484|intra-subject|intrasubject| +E0321536|aryl hydrocarbon hydroxylase|arylhydrocarbon hydroxylase| +E0321538|NGFr|NGFR| +E0321549|rostro-ventrolateral medulla|rostral ventrolateral medulla| +E0321566|data set|dataset| +E0321571|deacetyldiltiazem|deacetyl diltiazem| +E0321586|inflammatory pseudotumour|inflammatory pseudotumor| +E0321587|tumour|tumor| +E0321613|haematopoietic stem cell|hematopoietic stem cell| +E0321614|analogue|analog| +E0321655|palmo-mental reflex|palmomental reflex| +E0321676|non-governmental organisation|non-governmental organization| +E0321676|nongovernmental organisation|non-governmental organization| +E0321676|nongovernmental organization|non-governmental organization| +E0321737|loco-regional anaesthesia|loco-regional anesthesia| +E0321741|health care|healthcare| +E0321760|tumoural|tumoral| +E0321803|health care worker|healthcare worker| +E0321894|nonsyncytium-inducing|non-syncytium-inducing| +E0321913|alpha|alfa| +E0321924|tool kit|toolkit| +E0322031|extra-intracranial bypass|extraintracranial bypass| +E0322032|EC/IC bypass|EC-IC bypass| +E0322060|vesico-ureteric|vesicoureteric| +E0322061|v.|vs.| +E0322061|vs|vs.| +E0322071|tricolour|tricolor| +E0322080|copper containing amine oxidase|copper-containing amine oxidase| +E0322114|crico-esophageal|cricopharyngeal| +E0322119|disharmonical|disharmonic| +E0322122|edentate|edentulate| +E0322125|eosinophilous leucaemia|eosinophilous leukemia| +E0322125|eosinophilous leucemia|eosinophilous leukemia| +E0322125|eosinophilous leukaemia|eosinophilous leukemia| +E0322146|collagenic|collagenogenic| +E0322148|chromophilous|chromatophilous| +E0322153|side-chain cleaving cholesterol mono-oxygenase|side-chain cleaving cholesterol monooxygenase| +E0322173|bi-ischiadic|bi-ischiatic| +E0322197|Rokitansky-Kuster-Hauser syndrome|Mayer-Rokitansky-Kuster-Hauser syndrome| +E0322212|Bartter's syndrome|Bartter syndrome| +E0330019|anaesthetic|anesthetic| +E0330025|epithelise|epithelize| +E0330026|epithelisation|epithelization| +E0330028|prodrug|pro-drug| +E0330029|necrotising glomerulonephritis|necrotizing glomerulonephritis| +E0330031|haemorrheological|hemorrheological| +E0330037|above mentioned|abovementioned| +E0330037|above-mentioned|abovementioned| +E0330043|abdominoperineal|abdomino-perineal| +E0330044|abdominothoracic|abdomino-thoracic| +E0330046|abdominocaval|abdomino-caval| +E0330099|arterio-arterial|arterioarterial| +E0330110|automatisation|automatization| +E0330111|automatise|automatize| +E0330135|Amerindian|amerindian| +E0330141|aminosulphide|aminosulfide| +E0330147|angio-invasion|angioinvasion| +E0330148|angio-lymphatic|angiolymphatic| +E0330149|angina-like|anginalike| +E0330180|band-like|bandlike| +E0330188|bench mark|benchmark| +E0330198|bio-analytical|bioanalytical| +E0330242|chemosensitiser|chemosensitizer| +E0330244|cheek lift|cheeklift| +E0330254|co-assemble|coassemble| +E0330264|co-transmitter|cotransmitter| +E0330267|cross-linguistic|crosslinguistic| +E0330331|co-application|coapplication| +E0330334|coloniser|colonizer| +E0330342|co-presence|copresence| +E0330343|co-processor|coprocessor| +E0330344|co-repressor|corepressor| +E0330345|co-residence|coresidence| +E0330346|co-regulate|coregulate| +E0330347|co-planarity|coplanarity| +E0330350|co-secretion|cosecretion| +E0330351|co-suppression|cosuppression| +E0330352|co-solvent|cosolvent| +E0330357|cranio-encephalic|cranioencephalic| +E0330363|co-variable|covariable| +E0330364|co-variable|covariable| +E0330366|counter-receptor|counterreceptor| +E0330415|hyper-mutation|hypermutation| +E0330418|hyper-responder|hyperresponder| +E0330423|hypersynchronisation|hypersynchronization| +E0330425|hypnotisable|hypnotizable| +E0330444|immuno-activity|immunoactivity| +E0330458|immunodisregulatory|immunodysregulatory| +E0330459|immuno-electron microscopy|immunoelectronmicroscopy| +E0330459|immunoelectron microscopy|immunoelectronmicroscopy| +E0330484|infra-clinical|infraclinical| +E0330488|infra-pyramidal|infrapyramidal| +E0330519|morpho-syntactic|morphosyntactic| +E0330539|multilabelled|multilabeled| +E0330541|multimerisation|multimerization| +E0330549|multi-site|multisite| +E0330559|myelo-ablative|myeloablative| +E0330571|naso-temporal|nasotemporal| +E0330580|neurobehaviour|neurobehavior| +E0330600|non active|nonactive| +E0330600|non-active|nonactive| +E0330606|nonaneurismal|nonaneurysmal| +E0330612|non aqueous|nonaqueous| +E0330612|non-aqueous|nonaqueous| +E0330637|non cognitive|noncognitive| +E0330637|non-cognitive|noncognitive| +E0330652|non cerebral|noncerebral| +E0330652|non-cerebral|noncerebral| +E0330654|non continuous|noncontinuous| +E0330654|non-continuous|noncontinuous| +E0330662|non cumulative|noncumulative| +E0330662|non-cumulative|noncumulative| +E0330663|non critical|noncritical| +E0330663|non-critical|noncritical| +E0330687|wine-making|winemaking| +E0330690|word-like|wordlike| +E0330695|whistle-blower|whistleblower| +E0330701|water ski|waterski| +E0330741|unsterilised|unsterilized| +E0330790|undigestible|undigestable| +E0330847|air crew|aircrew| +E0330848|air leak|airleak| +E0330905|alveolo-arterial|alveoloarterial| +E0330920|amoeba-like|amoebalike| +E0331011|cysto-prostatectomy|cystoprostatectomy| +E0331021|black currant|blackcurrant| +E0331057|centiMorgan|centimorgan| +E0331059|centro-median|centromedian| +E0331063|cerebro-hepato-renal|cerebrohepatorenal| +E0331064|cell type|celltype| +E0331077|choledochocoele|choledochocele| +E0331086|chondro-ectodermal|chondroectodermal| +E0331087|choledocho-choledochostomy|choledochocholedochostomy| +E0331151|middle-sized|middlesized| +E0331164|milk shake|milkshake| +E0331173|modeller|modeler| +E0331208|entero-haemorrhagic|enterohemorrhagic| +E0331208|entero-hemorrhagic|enterohemorrhagic| +E0331208|enterohaemorrhagic|enterohemorrhagic| +E0331228|fertilisability|fertilizability| +E0331229|fertilisable|fertilizable| +E0331232|fibro-proliferative|fibroproliferative| +E0331255|granuloma-like|granulomalike| +E0331284|heterodimerise|heterodimerize| +E0331285|heterodimerisation|heterodimerization| +E0331336|wash-in|washin| +E0331400|under foot|underfoot| +E0331431|diphenyl ether|diphenylether| +E0331486|co-inheritance|coinheritance| +E0331487|co-inherit|coinherit| +E0331498|mosquitofish|mosquito fish| +E0331499|afirinogenemia|afirinogenaemia| +E0331536|ventro-postero-lateral|ventroposterolateral| +E0331541|ventriculo-infundibular fold|ventriculoinfundibular fold| +E0331561|ventralise|ventralize| +E0331610|uncanceled|uncancelled| +E0331623|tumorcell|tumor cell| +E0331623|tumour cell|tumor cell| +E0331623|tumourcell|tumor cell| +E0331645|trifluoromethanesulphonate|trifluoromethanesulfonate| +E0331689|toxico-genetic|toxicogenetic| +E0331705|thoraco-lumbo-sacral|thoracolumbosacral| +E0331705|thoraco-lumbosacral|thoracolumbosacral| +E0331737|vestibulocerebellar|vestibulo-cerebellar| +E0331742|vertebro basilar|vertebro-basilar| +E0331742|vertebrobasilar|vertebro-basilar| +E0331743|verrucolichenoid|verruco-lichenoid| +E0331744|verrucopapillary|verruco-papillary| +E0331757|ureteroenteric|uretero-enteric| +E0331758|ureteroileal|uretero-ileal| +E0331761|ureterovaginal|uretero-vaginal| +E0331762|ureterovesical|uretero-vesical| +E0331784|tubularise|tubularize| +E0331815|tubuloductal|tubulo-ductal| +E0331817|tuberomammillary|tubero-mammillary| +E0331818|tuberoinfundibular|tubero-infundibular| +E0331819|tuberohypophysial|tubero-hypophysial| +E0331820|tuberoeruptive|tubero-eruptive| +E0331821|tuberothalamic|tubero-thalamic| +E0331822|tuberculid|tuberculide| +E0331868|tricosa-arabinoside|tricosaarabinoside| +E0331869|tricho-thiodystrophy|trichothiodystrophy| +E0331887|transcrotal|transscrotal| +E0331888|transcaphoid|transscaphoid| +E0331889|transuccinylase|transsuccinylase| +E0331891|transinusoidal|transsinusoidal| +E0331892|transylvian|transsylvian| +E0331896|transtadially|transstadially| +E0331897|transphenoid|transsphenoid| +E0331922|transcleral|transscleral| +E0331964|system-wide|systemwide| +E0332010|synapto-genesis|synaptogenesis| +E0332031|sulphoconjugate|sulfoconjugate| +E0332032|sulphophenylxanthine|sulfophenylxanthine| +E0332033|sulphoglucuronide|sulfoglucuronide| +E0332061|subcompartmentalisation|subcompartmentalization| +E0332062|subcompartmentalise|subcompartmentalize| +E0332068|suboesophageal|subesophageal| +E0332079|stilbenedisulphonate|stilbenedisulfonate| +E0332095|undersulphated|undersulfated| +E0332115|time scale|timescale| +E0332153|tetraploidisation|tetraploidization| +E0332163|tetramerise|tetramerize| +E0332165|tetramerisation|tetramerization| +E0332174|thermalise|thermalize| +E0332176|tetra-alkylammonium|tetraalkylammonium| +E0332179|tetra-azamacrocyclic|tetraazamacrocyclic| +E0332185|sulphoglucosamine|sulfoglucosamine| +E0332186|sulpholobal|sulfolobal| +E0332189|stroke-like|strokelike| +E0332204|sledge-hammer|sledgehammer| +E0332207|slit-like|slitlike| +E0332208|socio-emotional|socioemotional| +E0332215|septo-hippocampal|septohippocampal| +E0332219|tetra-amine|tetraamine| +E0332229|thin section|thinsection| +E0332283|tarso-conjunctival|tarsoconjunctival| +E0332336|sulfobenzoate|sulphobenzoate| +E0332337|sulfon|sulphon| +E0332338|diaminodiphenyl sulfon|diaminodiphenyl sulphon| +E0332347|sun ray|sunray| +E0332349|sulfuration|sulphuration| +E0332351|sulforhodamin|sulphorhodamin| +E0332352|sulfamonomethoxine|sulphamonomethoxine| +E0332354|sulphosuccinimido|sulfosuccinimido| +E0332356|synapto-dendritic|synaptodendritic| +E0332358|synaptoneogenesis|synapto-neogenesis| +E0332362|sulfonamido|sulphonamido| +E0332374|sulfenic|sulphenic| +E0332375|sulfenic acid|sulphenic acid| +E0332377|sub-range|subrange| +E0332385|sub-phase|subphase| +E0332388|sub-national|subnational| +E0332418|silk moth|silkmoth| +E0332443|somatiser|somatizer| +E0332472|spot-like|spotlike| +E0332477|amino-oxy|aminooxy| +E0332492|anatomicofunctional|anatomico-functional| +E0332493|anatomicopathological|anatomico-pathological| +E0332494|anatomicohistological|anatomico-histological| +E0332495|anatomicoechocardiographic|anatomico-echocardiographic| +E0332496|anatomicoclinical|anatomico-clinical| +E0332497|anatomicosurgical|anatomico-surgical| +E0332498|anatomicoradiological|anatomico-radiological| +E0332499|anatomicomorphological|anatomico-morphological| +E0332504|anoestrous|anestrous| +E0332508|angio-edema|angio-oedema| +E0332508|angioedema|angio-oedema| +E0332508|angiooedema|angio-oedema| +E0332513|angstrum|angstrom| +E0332521|annualise|annualize| +E0332524|anonymise|anonymize| +E0332530|anteriorise|anteriorize| +E0332549|antileucocyte|antileukocyte| +E0332565|anti-vitamin K|antivitamin K| +E0332566|antrobulbar|antro-bulbar| +E0332567|antroduodenoplasty|antro-duodenoplasty| +E0332568|antropyloric|antro-pyloric| +E0332571|antro-pyloroduodenal|antro-pyloro-duodenal| +E0332571|antropyloroduodenal|antro-pyloro-duodenal| +E0332574|any more|anymore| +E0332575|any time|anytime| +E0332612|archeal|archaeal| +E0332640|aromatisable|aromatizable| +E0332680|atriofemoral|atrio-femoral| +E0332681|atrioventricular|atrio-ventricular| +E0332703|autocatalyse|autocatalyze| +E0332711|auto-inflation|autoinflation| +E0332754|bacille Calmette-Guerin|bacille Calmette Guerin| +E0332760|back school|backschool| +E0332790|bed size|bedsize| +E0332813|benzylaminesulphonic|benzylaminesulfonic| +E0332838|bi-institutional|biinstitutional| +E0332847|norbinaltorphamine|nor-binaltorphamine| +E0332879|blastocoele|blastocoel| +E0332914|cranio-caudal|craniocaudal| +E0332927|decision maker|decisionmaker| +E0332946|brachiobasilic|brachio-basilic| +E0332947|brachiocephalic|brachio-cephalic| +E0332948|brachioaxillary|brachio-axillary| +E0332949|brachioradial|brachio-radial| +E0332950|brachioradialis|brachio-radialis| +E0332951|brachioradialis muscle|brachio-radialis muscle| +E0332953|brachiothoracic|brachio-thoracic| +E0332986|bulbomedullary|bulbo-medullary| +E0332987|bulbo urethral|bulbo-urethral| +E0332988|bulbospinal|bulbo-spinal| +E0332989|bulbocavernous|bulbo-cavernous| +E0332990|bulboprostatic|bulbo-prostatic| +E0332991|bulbomembranous|bulbo-membranous| +E0333034|comradery|camaraderie| +E0333066|hemangiosis carcinomatosa|haemangiosis carcinomatosa| +E0333094|Cdk|CDK| +E0333094|cdk|CDK| +E0333103|cerebrovascular|cerebro-vascular| +E0333104|cerebrospinal|cerebro-spinal| +E0333105|cerebrocostomandibular|cerebro-costo-mandibular| +E0333107|cerebromuscular dystrophy|cerebro-muscular dystrophy| +E0333109|cervicovaginal|cervico-vaginal| +E0333110|cervicofundal|cervico-fundal| +E0333118|cervicofacial|cervico-facial| +E0333127|chemoprotectant|chemo-protectant| +E0333128|chemo-sensitisation|chemo-sensitization| +E0333128|chemosensitisation|chemo-sensitization| +E0333128|chemosensitization|chemo-sensitization| +E0333129|chemo-sensitise|chemo-sensitize| +E0333129|chemosensitise|chemo-sensitize| +E0333129|chemosensitize|chemo-sensitize| +E0333130|chemo-endocrine|chemoendocrine| +E0333131|chemo-organotroph|chemoorganotroph| +E0333132|chemo-prevent|chemoprevent| +E0333151|chitolipo-oligosaccharide|chitolipooligosaccharide| +E0333163|co-calibrate|cocalibrate| +E0333165|co-colonization|cocolonization| +E0333166|co-colonize|cocolonize| +E0333170|co-enrich|coenrich| +E0333171|co-enrichment|coenrichment| +E0333172|co-exposure|coexposure| +E0333173|co-expose|coexpose| +E0333183|cono-truncal|conotruncal| +E0333185|co-oxidative|cooxidative| +E0333186|co-register|coregister| +E0333187|co-registration|coregistration| +E0333188|co-pathogen|copathogen| +E0333189|co-rear|corear| +E0333192|cortico-striatal|corticostriatal| +E0333202|diacyl phosphatidyl choline|diacylphosphatidylcholine| +E0333202|diacyl phosphatidylcholine|diacylphosphatidylcholine| +E0333242|extraanatomic|extra-anatomic| +E0333279|claw toe|clawtoe| +E0333286|co-active|coactive| +E0333287|co-active|coactive| +E0333288|co-activity|coactivity| +E0333289|co-agonist|coagonist| +E0333295|co-circulate|cocirculate| +E0333296|co-circulation|cocirculation| +E0333297|co-crystallize|cocrystallize| +E0333298|co-crystallization|cocrystallization| +E0333299|co-electroporation|coelectroporation| +E0333306|coimmobilise|coimmobilize| +E0333307|coimmobilisation|coimmobilization| +E0333312|collateralisation|collateralization| +E0333313|collateralise|collateralize| +E0333320|columnisation|columnization| +E0333349|co-oximetry|cooximetry| +E0333353|co-protease|coprotease| +E0333354|co-release|corelease| +E0333355|co-release|corelease| +E0333368|co-promote|copromote| +E0333369|co-promotion|copromotion| +E0333372|coracohumeral|coraco-humeral| +E0333373|coracoclavicular|coraco-clavicular| +E0333375|corneoscleral|corneo-scleral| +E0333376|corneoconjunctival|corneo-conjunctival| +E0333377|corneoretinal|corneo-retinal| +E0333383|cortico-cancellous|corticocancellous| +E0333384|cortico-motoneuron|corticomotoneuron| +E0333388|cosolubilise|cosolubilize| +E0333389|cosolubilisation|cosolubilization| +E0333391|co-store|costore| +E0333396|co-twin|cotwin| +E0333402|cowage|cowhage| +E0333420|cross-peak|crosspeak| +E0333446|cyclise|cyclize| +E0333463|cyto-adhere|cytoadhere| +E0333464|cyto-adherence|cytoadherence| +E0333467|cyto-histology|cytohistology| +E0333487|de-adenylate|deadenylate| +E0333516|de-energise|deenergize| +E0333516|de-energize|deenergize| +E0333516|deenergise|deenergize| +E0333517|de-epithelialise|deepithelialize| +E0333517|de-epithelialize|deepithelialize| +E0333517|deepithelialise|deepithelialize| +E0333528|defunctionalise|defunctionalize| +E0333569|deparaffinise|deparaffinize| +E0333579|depsi-peptide|depsipeptide| +E0333580|derivatisation|derivatization| +E0333580|derivitisation|derivatization| +E0333580|derivitization|derivatization| +E0333588|desalinise|desalinize| +E0333589|desalinisation|desalinization| +E0333590|desepidermisation|desepidermization| +E0333612|diacylglyceryl|diacyglycerol| +E0333618|diabetes-like|diabeteslike| +E0333675|dihexanoyl phosphatidylcholine|dihexanoyl-phosphatidylcholine| +E0333683|dihydro-orotate dehydrogenase|dihydroorotate dehydrogenase| +E0333699|di-isopropylaminoethyl|diisopropylaminoethyl| +E0333700|di-isocyanoalkene|diisocyanoalkene| +E0333702|di-iodothyropropionic|diiodothyropropionic| +E0333703|di-iodothyropropionic acid|diiodothyropropionic acid| +E0333704|di-isopropylphosphorofluoridate|diisopropylphosphorofluoridate| +E0333705|di-isothiocyanatodihydrostilbene|diisothiocyanatodihydrostilbene| +E0333706|di-isothiocyanostilbene|diisothiocyanostilbene| +E0333721|dimethanesulphonate|dimethanesulfonate| +E0333732|dimethyl lysine|dimethyllysine| +E0333764|macrothrombocytopaenia|macrothrombocytopenia| +E0333771|mechano-electrical|mechanoelectrical| +E0333772|mechano-enzyme|mechanoenzyme| +E0333777|medicalisation|medicalization| +E0333779|medicalise|medicalize| +E0333781|maternofoetal|maternofetal| +E0333788|mesio-temporal|mesiotemporal| +E0333791|meta-analytical|metaanalytical| +E0333808|micellise|micellize| +E0333844|endo-pyelotomy|endopyelotomy| +E0333847|epaulet|epaulette| +E0333848|entero-endocrine|enteroendocrine| +E0333849|erythaematode|erythematode| +E0333858|face lift|facelift| +E0333860|feeble-minded|feebleminded| +E0333872|flavohaemoglobin|flavohemoglobin| +E0333880|distearoyl-phosphatidylcholine|distearoyl phosphatidylcholine| +E0333914|ductopaenic|ductopenic| +E0333923|disbalanced|dysbalanced| +E0333924|disbalance|dysbalance| +E0333928|disexecutive|dysexecutive| +E0333929|disfunctioning|dysfunctioning| +E0333930|disglycaemic|dysglycemic| +E0333930|disglycemic|dysglycemic| +E0333930|dysglycaemic|dysglycemic| +E0333933|dislipidaemic|dyslipidemic| +E0333933|dislipidemic|dyslipidemic| +E0333933|dyslipidaemic|dyslipidemic| +E0333934|dysmature|dismature| +E0333938|dissynchronous|dyssynchronous| +E0333970|embolo-therapy|embolotherapy| +E0333971|embryofetotoxic|embryofeto-toxic| +E0333972|embryofetotoxicity|embryofeto-toxicity| +E0333982|discretise|discretize| +E0333990|endosulfan|endosulphan| +E0333998|enterectomise|enterectomize| +E0334002|enzymo-immunoassay|enzymoimmunoassay| +E0334020|equi-active|equiactive| +E0334039|aesthetically|esthetically| +E0334118|fibro-elastoma|fibroelastoma| +E0334130|fire-fighter|firefighter| +E0334141|fistulise|fistulize| +E0334143|flash-lamp|flashlamp| +E0334152|flexibilise|flexibilize| +E0334153|flexibilisation|flexibilization| +E0334157|fluorobenzenesulphonamide|fluorobenzenesulfonamide| +E0334194|fronto-ethmoid|frontoethmoid| +E0334199|fruit fly|fruitfly| +E0334199|fruit-fly|fruitfly| +E0334209|beta funaltrexamine|beta-funaltrexamine| +E0334220|galatorrhoea|galatorrhea| +E0334252|geranyl-geranylate|geranylgeranylate| +E0334273|Clethrionomys glariolus|Clethrionomys glareolus| +E0334284|gluco-oligosaccharide|glucooligosaccharide| +E0334336|gradeable|gradable| +E0334351|grenz zone|Grenz zone| +E0334373|gynaecophoric|gynecophoric| +E0334374|gynaecophoric canal|gynecophoric canal| +E0334378|haemangiopericytomatous|hemangiopericytomatous| +E0334379|haemocoel|hemocoel| +E0334380|haemolysin|hemolysin| +E0334382|half-maximally|halfmaximally| +E0334405|harmonisation|harmonization| +E0334416|haematolymphoid|hematolymphoid| +E0334417|haematon|hematon| +E0334418|haematopathologic|hematopathologic| +E0334419|haematopoeitic|hematopoeitic| +E0334420|haematopoetically|hematopoetically| +E0334421|haematotoxicity|hematotoxicity| +E0334426|hemi-diaphragm|hemidiaphragm| +E0334428|hemidisk|hemidisc| +E0334430|hemi-leaflet|hemileaflet| +E0334432|hemiparaesthesia|hemiparesthesia| +E0334433|hard-packed|hardpacked| +E0334440|haemocytometry|hemocytometry| +E0334441|haemodynamical|hemodynamical| +E0334442|haemoglobulin|hemoglobulin| +E0334445|haemoparasite|hemoparasite| +E0334446|haemopoietin|hemopoietin| +E0334452|hepatico-jejunostomy|hepaticojejunostomy| +E0334461|judgemental|judgmental| +E0334483|intra-individually|intraindividually| +E0334493|intracaecal|intracecal| +E0334497|intra-epidermally|intraepidermally| +E0334501|intrafoetal|intrafetal| +E0334502|intra-epithelially|intraepithelially| +E0334503|intra-alveolar|intraalveolar| +E0334510|lattice-like|latticelike| +E0334515|lipo-soluble|liposoluble| +E0334518|long-lasting|longlasting| +E0334538|misrecognise|misrecognize| +E0334558|hypercortisolaemia|hypercortisolemia| +E0334569|hyperhomocysteinaemia|hyperhomocysteinemia| +E0334570|hyperhomocysteinaemic|hyperhomocysteinemic| +E0334578|hyperkalaemic|hyperkalemic| +E0334579|hyperleucocytic|hyperleukocytic| +E0334582|hyper-methylate|hypermethylate| +E0334590|hepato-toxin|hepatotoxin| +E0334593|hepta-acetate|heptaacetate| +E0334611|hetero-atom|heteroatom| +E0334622|inositol hexasulphate|inositol hexasulfate| +E0334624|hind leg|hindleg| +E0334635|holochord|holocord| +E0334636|holo-receptor|holoreceptor| +E0334642|homocysteinaemia|homocysteinemia| +E0334650|grow-out|growout| +E0334657|homo-ionic|homoionic| +E0334738|leucocytospermia|leukocytospermia| +E0334739|leucodepletion|leukodepletion| +E0334745|logopaedic|logopedic| +E0334746|lumbo-pelvic|lumbopelvic| +E0334781|midoesophagus|midesophagus| +E0334787|mislocalise|mislocalize| +E0334788|mislocalisation|mislocalization| +E0334793|mono-exponential|monoexponential| +E0334799|hypo-osmolar|hypoosmolar| +E0334802|hyporetinaemia|hyporetinemia| +E0334812|infero-apical|inferoapical| +E0334813|infero-medially|inferomedially| +E0334815|infero-temporal|inferotemporal| +E0334817|ingroup|in-group| +E0334842|intra-nigral|intranigral| +E0334862|let-up|letup| +E0334874|stabilisation|stabilization| +E0334875|stabilise|stabilize| +E0334927|reticulo-nodular|reticulonodular| +E0334940|resterilisable|resterilizable| +E0334941|resterilisability|resterilizability| +E0334942|reorganisational|reorganizational| +E0334966|follow-back|followback| +E0335000|no-flow|noflow| +E0335048|disulphonic acid|disulfonic acid| +E0335097|foodservice|food service| +E0335098|frontotemporal|fronto-temporal| +E0335102|frontoparietal|fronto-parietal| +E0335103|frontocentral|fronto-central| +E0335109|gamma herpes virus|gammaherpesvirus| +E0335122|hydroxymethyglutaryl coenzyme A-reductase|hydroxymethyglutaryl coenzyme A reductase| +E0335122|hydroxymethyglutaryl-coenzyme A reductase|hydroxymethyglutaryl coenzyme A reductase| +E0335122|hydroxymethyglutaryl-coenzyme A-reductase|hydroxymethyglutaryl coenzyme A reductase| +E0335138|hypoprebetalipoproteinaemia|hypoprebetalipoproteinemia| +E0335193|infra-community|infracommunity| +E0335194|infra-limbic|infralimbic| +E0335195|infra-subspecific|infrasubspecific| +E0335221|intercordal|interchordal| +E0335228|inter-equipment|interequipment| +E0335229|inter-domain|interdomain| +E0335233|inter-fertile|interfertile| +E0335240|interleucocyte|interleukocyte| +E0335249|intermoult|intermolt| +E0335250|intermoult|intermolt| +E0335275|intertumour|intertumor| +E0335276|inter-twin|intertwin| +E0335282|hypotransferrinaemic|hypotransferrinemic| +E0335348|isopentenyl-diphosphate|isopentenyl diphosphate| +E0335377|caryorhexis|karyorhexis| +E0335444|micro-prolactinoma|macroprolactinoma| +E0335484|intra-assay|intraassay| +E0335517|juxta-uterine|juxtauterine| +E0335521|lactamisation|lactamization| +E0335526|muconate lactonising enzyme|muconate lactonizing enzyme| +E0335528|lactonise|lactonize| +E0335531|stratum lacunosum moleculare|stratum lacunosum-moleculare| +E0335538|mobilisable|mobilizable| +E0335553|non fatty|nonfatty| +E0335553|non-fatty|nonfatty| +E0335555|non fermentative|nonfermentative| +E0335555|non-fermentative|nonfermentative| +E0335562|nonhypercalcaemic|nonhypercalcemic| +E0335601|methyl-thioadenosine phosphorylase|methylthioadenosine phosphorylase| +E0335623|beta naphthylamide|beta-naphthylamide| +E0335646|beta naphthylisothiocyanate|beta-naphthylisothiocyanate| +E0335802|myo-intimal|myointimal| +E0335811|mytomycin|mytomicin| +E0335812|mytomycin C|mytomicin C| +E0335817|beta naltrexol|beta-naltrexol| +E0335863|pincer-like|pincerlike| +E0335878|photohaemolysis|photohemolysis| +E0335886|photo-oxidative|photooxidative| +E0335887|photosensitizer|photosensitiser| +E0335897|pharmaco-epidemiologist|pharmacoepidemiologist| +E0335899|petaloid-like|petaloidlike| +E0335905|imidazo-pyridine|imidazo pyridine| +E0335905|imidazopyridine|imidazo pyridine| +E0335912|immunohisto chemical|immuno-histochemical| +E0335912|immunohisto-chemical|immuno-histochemical| +E0335912|immunohistochemical|immuno-histochemical| +E0335914|immunohisto chemistry|immuno-histochemistry| +E0335914|immunohisto-chemistry|immuno-histochemistry| +E0335914|immunohistochemistry|immuno-histochemistry| +E0335915|immunoregulatory|immuno-regulatory| +E0335929|Kass|kass| +E0335932|tetramethylrhodamine isothiocyanate|tetramethylrhodamine isothio-cyanate| +E0336686|non-arthritogenic|nonarthritogenic| +E0336687|non-disease|nondisease| +E0336688|non-endometriosis|nonendometriosis| +E0336695|nitty-gritty|nitty gritty| +E0336697|non-equilibrium|nonequilibrium| +E0336698|non-excitable|nonexcitable| +E0336700|non-excitability|nonexcitability| +E0336701|non-exercise|nonexercise| +E0336702|non-exercising|nonexercising| +E0336703|non-extraction|nonextraction| +E0336704|non-familiar|nonfamiliar| +E0336705|non-familiarity|nonfamiliarity| +E0336706|non-farm|nonfarm| +E0336707|non-ferritin iron|nonferritin iron| +E0336708|non-ferritin|nonferritin| +E0336709|non-filtered|nonfiltered| +E0336713|non-fortuitous|nonfortuitous| +E0336714|non-globular|nonglobular| +E0336716|non-gated|nongated| +E0336718|non-fusioned|nonfusioned| +E0336719|non-governmental|nongovernmental| +E0336721|non-hybrid|nonhybrid| +E0336722|non-immunosuppressive|nonimmunosuppressive| +E0336723|non-industrial|nonindustrial| +E0336724|non typical|nontypical| +E0336724|non-typical|nontypical| +E0336725|non-urgent|nonurgent| +E0336726|non-urgency|nonurgency| +E0336727|non-ulcerating|nonulcerating| +E0336728|non-treponemal|nontreponemal| +E0336754|leucomalacia|leukomalacia| +E0336765|life-support|life support| +E0336767|libidinisation|libidinization| +E0336866|ideogram|idiogram| +E0336904|Bacillus megatherium|Bacillus megaterium| +E0336906|mega-ureter|megaureter| +E0336925|medialisation|medialization| +E0336926|medialise|medialize| +E0336971|infra-structural|infrastructural| +E0336972|infraareolar|infra-areolar| +E0336986|non-occupationally|nonoccupationally| +E0336988|non-operable|nonoperable| +E0336989|non-operability|nonoperability| +E0336990|non-odontogenic|nonodontogenic| +E0336991|non-nucleolar|nonnucleolar| +E0336992|non-neurological|nonneurological| +E0336993|non-neutralizing|nonneutralizing| +E0336994|non-nitrous|nonnitrous| +E0336995|non-nutrient|nonnutrient| +E0336996|non-nutrient|nonnutrient| +E0336997|non-meningitis|nonmeningitis| +E0336998|non-mentholated|nonmentholated| +E0336999|non-metabolisable|nonmetabolizable| +E0336999|non-metabolizable|nonmetabolizable| +E0336999|nonmetabolisable|nonmetabolizable| +E0337000|non-metaplastic|nonmetaplastic| +E0337001|non-military|nonmilitary| +E0337002|non-mitochondrial|nonmitochondrial| +E0337003|non-monogamous|nonmonogamous| +E0337004|non-modifiable|nonmodifiable| +E0337005|non-modifiability|nonmodifiability| +E0337006|non-marginal|nonmarginal| +E0337007|non-lung|nonlung| +E0337019|neuroleptanaesthesia|neuroleptanesthesia| +E0337031|nicotinised|nicotinized| +E0337032|non-nicotinised|non-nicotinized| +E0337032|nonnicotinised|non-nicotinized| +E0337032|nonnicotinized|non-nicotinized| +E0337035|nitro-anilide|nitroanilide| +E0337036|nitro-aromatic|nitroaromatic| +E0337037|nitro-aromatic|nitroaromatic| +E0337039|non-generalist|nongeneralist| +E0337040|non-generalist|nongeneralist| +E0337041|non-fractured|nonfractured| +E0337042|non-fulminant|nonfulminant| +E0337043|non-flow|nonflow| +E0337044|non-glucidic|nonglucidic| +E0337045|non-graded|nongraded| +E0337046|non-head|nonhead| +E0337047|non-healed|nonhealed| +E0337049|non-haemorrhaged|nonhemorrhaged| +E0337049|non-hemorrhaged|nonhemorrhaged| +E0337049|nonhaemorrhaged|nonhemorrhaged| +E0337050|non-high|nonhigh| +E0337051|non-homology|nonhomology| +E0337052|non-hormone|nonhormone| +E0337053|non-host|nonhost| +E0337054|non-hyperfunctional|nonhyperfunctional| +E0337055|non-hypertension|nonhypertension| +E0337056|non-hypertensive|nonhypertensive| +E0337057|non-hypertensive|nonhypertensive| +E0337058|non-iatrogenic|noniatrogenic| +E0337060|non-illness|nonillness| +E0337061|non-incorporated|nonincorporated| +E0337062|non-inducibility|noninducibility| +E0337063|non-inducible|noninducible| +E0337064|non-inducing|noninducing| +E0337065|non-infarction|noninfarction| +E0337066|non-inhibited|noninhibited| +E0337067|non-inhibition|noninhibition| +E0337068|non-injured|noninjured| +E0337069|non-instructed|noninstructed| +E0337070|non-intercalative|nonintercalative| +E0337071|non-interleaved|noninterleaved| +E0337072|non-internalised|noninternalized| +E0337072|non-internalized|noninternalized| +E0337072|noninternalised|noninternalized| +E0337073|non-intubated|nonintubated| +E0337074|non-isometric|nonisometric| +E0337075|non-isotope|nonisotope| +E0337076|non-jaundiced|nonjaundiced| +E0337077|non-labor|nonlabor| +E0337078|non-lacunar|nonlacunar| +E0337079|non-laminar|nonlaminar| +E0337080|non-lipidated|nonlipidated| +E0337081|non-listerial|nonlisterial| +E0337082|non-linkage|nonlinkage| +E0337083|non-lesional|nonlesional| +E0337084|non-malnourished|nonmalnourished| +E0337085|non-major|nonmajor| +E0337086|non-major|nonmajor| +E0337087|non-manipulated|nonmanipulated| +E0337088|non-mover|nonmover| +E0337089|non-maximal|nonmaximal| +E0337090|non-mucinous|nonmucinous| +E0337091|non-micromanipulated|nonmicromanipulated| +E0337092|non-mutilating|nonmutilating| +E0337093|non-negative|nonnegative| +E0337094|non natural|nonnatural| +E0337094|non-natural|nonnatural| +E0337095|non-neural|nonneural| +E0337096|non-opioid|nonopioid| +E0337097|non-opioid|nonopioid| +E0337098|non-opposed|nonopposed| +E0337099|non-osteoporotic|nonosteoporotic| +E0337100|non-overexpressed|nonoverexpressed| +E0337101|non-palindromic|nonpalindromic| +E0337102|non-neuroleptic|nonneuroleptic| +E0337104|non-negotiated|nonnegotiated| +E0337105|non-optimal|nonoptimal| +E0337106|non-ossifying|nonossifying| +E0337107|non-molar|nonmolar| +E0337108|non-myo-invasive|nonmyoinvasive| +E0337108|non-myoinvasive|nonmyoinvasive| +E0337109|non-pelvic|nonpelvic| +E0337110|non-peptidic|nonpeptidic| +E0337111|non-perforated|nonperforated| +E0337112|non-perforation|nonperforation| +E0337113|non-periodic|nonperiodic| +E0337114|non-permeable|nonpermeable| +E0337115|non-permeability|nonpermeability| +E0337116|non-participant|nonparticipant| +E0337117|non-papillary|nonpapillary| +E0337118|non-primary|nonprimary| +E0337119|non-recognition|nonrecognition| +E0337120|non-recovered|nonrecovered| +E0337121|non-protective|nonprotective| +E0337122|non-recidivism|nonrecidivism| +E0337123|non-rearranged|nonrearranged| +E0337124|non-referred|nonreferred| +E0337125|non-rejecting|nonrejecting| +E0337126|non-regulation|nonregulation| +E0337127|non-psychiatrist|nonpsychiatrist| +E0337128|non-rejector|nonrejector| +E0337129|non-reproductive|nonreproductive| +E0337130|non-randomly|nonrandomly| +E0337131|non-researcher|nonresearcher| +E0337134|non-leukaemogenic|nonleukemogenic| +E0337134|non-leukemogenic|nonleukemogenic| +E0337134|nonleukaemogenic|nonleukemogenic| +E0337135|non-locality|nonlocality| +E0337136|non-localised|nonlocalized| +E0337136|non-localized|nonlocalized| +E0337136|nonlocalised|nonlocalized| +E0337137|non-lymphopenic|nonlymphopenic| +E0337138|non-melanoma|nonmelanoma| +E0337139|non-motoneuron|nonmotoneuron| +E0337140|non-murine|nonmurine| +E0337141|non-myristoylated|nonmyristoylated| +E0337142|non-occluding|nonoccluding| +E0337143|non-optimised|nonoptimized| +E0337143|non-optimized|nonoptimized| +E0337143|nonoptimised|nonoptimized| +E0337144|non-oxidised|nonoxidized| +E0337144|non-oxidized|nonoxidized| +E0337144|nonoxidised|nonoxidized| +E0337145|non-paced|nonpaced| +E0337146|non-parasite|nonparasite| +E0337147|non-personnel|nonpersonnel| +E0337148|non-pancreatitic|nonpancreatitic| +E0337149|non-parametolic|nonparametolic| +E0337150|non-partisan|nonpartisan| +E0337151|non-partisan|nonpartisan| +E0337152|non-pathogen|nonpathogen| +E0337153|non-phenotyped|nonphenotyped| +E0337154|non-phosphorylatable|nonphosphorylatable| +E0337155|non-pilocytic|nonpilocytic| +E0337156|non-piperidine|nonpiperidine| +E0337157|non-plant|nonplant| +E0337158|non-plasmatic|nonplasmatic| +E0337159|non-plasminogen|nonplasminogen| +E0337160|non-porcelainised|nonporcelainized| +E0337160|non-porcelainized|nonporcelainized| +E0337160|nonporcelainised|nonporcelainized| +E0337161|non-powdered|nonpowdered| +E0337162|non-preservated|nonpreservated| +E0337164|non-precipitating|nonprecipitating| +E0337165|non-priming|nonpriming| +E0337166|non-processive|nonprocessive| +E0337167|non-progressive|nonprogressive| +E0337168|non-progressive|nonprogressive| +E0337169|non-prolonged|nonprolonged| +E0337170|non-purging|nonpurging| +E0337171|non-radical|nonradical| +E0337172|non-radiolabeled|nonradiolabeled| +E0337173|non-reducible|nonreducible| +E0337174|non-reducibility|nonreducibility| +E0337175|non-reiterated|nonreiterated| +E0337176|non-reperfused|nonreperfused| +E0337177|non-replicative|nonreplicative| +E0337178|non-resectable|nonresectable| +E0337179|non-resectability|nonresectability| +E0337180|non-resective|nonresective| +E0337181|non-resolving|nonresolving| +E0337182|non-rigid|nonrigid| +E0337183|non-respiratory|nonrespiratory| +E0337184|non-restrictive|nonrestrictive| +E0337185|non-rhabdomyosarcomatous|nonrhabdomyosarcomatous| +E0337186|non-reversible|nonreversible| +E0337188|non-secreted|nonsecreted| +E0337189|non-secretor|nonsecretor| +E0337190|non-sedating|nonsedating| +E0337191|non-skilled|nonskilled| +E0337192|non-seeded|nonseeded| +E0337193|non-sexually|nonsexually| +E0337194|non-serotypeable|nonserotypeable| +E0337195|non-protocol|nonprotocol| +E0337196|non-rachitic|nonrachitic| +E0337200|methyl serotonin|methylserotonin| +E0337200|methyl-serotonin|methylserotonin| +E0337201|methyl-succinate|methylsuccinate| +E0337203|methyl-thioadenosine|methylthioadenosine| +E0337214|micro-trauma|microtrauma| +E0337221|micro-well|microwell| +E0337223|mimetise|mimetize| +E0337236|mono-adduct|monoadduct| +E0337237|mono-alkylated|monoalkylated| +E0337238|mono-arabinosylated|monoarabinosylated| +E0337240|mono-liganded|monoliganded| +E0337288|Salmonella typhi murium|Salmonella typhimurium| +E0337288|Salmonella typhi-murium|Salmonella typhimurium| +E0337290|multi-fraction|multifraction| +E0337291|multi-function|multifunction| +E0337292|multi-function|multifunction| +E0337293|multi-coil|multicoil| +E0337294|multi-gate|multigate| +E0337295|multi-group|multigroup| +E0337296|multi-group|multigroup| +E0337297|multi-helix|multihelix| +E0337298|multi-institution|multiinstitution| +E0337299|multi-institution|multiinstitution| +E0337300|multi-joint|multijoint| +E0337301|multi-joint|multijoint| +E0337302|multi-lesion|multilesion| +E0337303|multi-lesion|multilesion| +E0337306|multi-process|multiprocess| +E0337307|multi-process|multiprocess| +E0337311|multi-residue|multiresidue| +E0337312|multi-residue|multiresidue| +E0337313|multi-scale|multiscale| +E0337314|multi-slice|multislice| +E0337315|multi-slice|multislice| +E0337316|multi-test|multitest| +E0337317|multi-test|multitest| +E0337318|multi-state|multistate| +E0337319|multi-state|multistate| +E0337320|multi-tendoned|multitendoned| +E0337321|multi-ubiquitin|multiubiquitin| +E0337322|multi-vaccination|multivaccination| +E0337323|multi-variant|multivariant| +E0337324|multi-variant|multivariant| +E0337325|multi-wave-length|multiwavelength| +E0337325|multi-wavelength|multiwavelength| +E0337332|over-achiever|overachiever| +E0337334|musculovenous|musculo-venous| +E0337337|musculoarticular|musculo-articular| +E0337355|non-pregnancy|nonpregnancy| +E0337356|non-prostate|nonprostate| +E0337357|non-reward|nonreward| +E0337358|non-rodent|nonrodent| +E0337359|non-rotavirus|nonrotavirus| +E0337360|non-salicylate|nonsalicylate| +E0337361|non-scalp|nonscalp| +E0337362|non-seizure|nonseizure| +E0337363|non-sensory|nonsensory| +E0337364|non-sibling|nonsibling| +E0337365|non-simultaneously|nonsimultaneously| +E0337366|non-soap|nonsoap| +E0337367|non-sonority|nonsonority| +E0337368|non-specificity|nonspecificity| +E0337369|non-speech|nonspeech| +E0337370|non-spinal|nonspinal| +E0337371|non-stabilised|nonstabilized| +E0337371|non-stabilized|nonstabilized| +E0337371|nonstabilised|nonstabilized| +E0337372|non-standard|nonstandard| +E0337373|non-starved|nonstarved| +E0337374|non statistical|nonstatistical| +E0337374|non-statistical|nonstatistical| +E0337375|non-stereotyped|nonstereotyped| +E0337376|non-stimulatory|nonstimulatory| +E0337377|non-straining|nonstraining| +E0337378|non-strenuous|nonstrenuous| +E0337379|non-stringent|nonstringent| +E0337380|non-subcutaneous|nonsubcutaneous| +E0337381|non-supplemented|nonsupplemented| +E0337382|non-suppressor|nonsuppressor| +E0337383|non-susceptible|nonsusceptible| +E0337384|non-susceptibility|nonsusceptibility| +E0337385|non-syncopal|nonsyncopal| +E0337386|non-templated|nontemplated| +E0337387|non-surgery|nonsurgery| +E0337388|non-textual|nontextual| +E0337389|non-syndromic|nonsyndromic| +E0337390|non-target|nontarget| +E0337391|non-toxicity|nontoxicity| +E0337392|non-thermogenic|nonthermogenic| +E0337393|non-tertiary|nontertiary| +E0337394|non-thyroidal|nonthyroidal| +E0337395|non-transduced|nontransduced| +E0337396|non-transmural|nontransmural| +E0337397|non-twinned|nontwinned| +E0337398|non-transplanted|nontransplanted| +E0337400|non-transferable|nontransferable| +E0337402|non-vectorial|nonvectorial| +E0337403|non-vegetarian|nonvegetarian| +E0337404|non-vegetarian|nonvegetarian| +E0337405|non-vertebral|nonvertebral| +E0337406|non-renewable|nonrenewable| +E0337407|non-wounded|nonwounded| +E0337408|non-word|nonword| +E0337409|non-vitrectomised|nonvitrectomized| +E0337409|non-vitrectomized|nonvitrectomized| +E0337409|nonvitrectomised|nonvitrectomized| +E0337427|occipitoaxial|occipito-axial| +E0337447|octavo-lateral|octavolateral| +E0337450|oculo-dermal|oculodermal| +E0337451|oculo-pharyngeal|oculopharyngeal| +E0337452|oculo-vestibular|oculovestibular| +E0337456|oligo-arabinoside|oligoarabinoside| +E0337457|oligo-asthenozoospermia|oligoasthenozoospermia| +E0337459|oligo-adenosine|oligoadenosine| +E0337463|oligo-dendroblast|oligodendroblast| +E0337464|oligo-clonality|oligoclonality| +E0337466|olecranisation|olecranization| +E0337467|oligo-amine|oligoamine| +E0337474|oligo-astrocytoma|oligoastrocytoma| +E0337475|oligo-deoxynucleoside|oligodeoxynucleoside| +E0337493|mono-oleoylglycerol|monooleoylglycerol| +E0337496|multi-organism|multiorganism| +E0337497|multi-organelle|multiorganelle| +E0337502|onco-antigen|oncoantigen| +E0337504|onco-retroviral|oncoretroviral| +E0337509|morpholinylmercaptobenzothiazole|morpholinyl mercaptobenzothiazole| +E0337510|mercaptoethane sulphonate|mercaptoethane sulfonate| +E0337512|methyl methanethiolsulphonate|methyl methanethiolsulfonate| +E0337518|non-gangrenous|nongangrenous| +E0337520|oligo-probe|oligoprobe| +E0337543|organo-mercurial|organomercurial| +E0337563|oro-anal|oroanal| +E0337565|orthologue|ortholog| +E0337572|over-consumption|overconsumption| +E0337573|over-consume|overconsume| +E0337579|out-compete|outcompete| +E0337580|out group|outgroup| +E0337580|out-group|outgroup| +E0337581|out-pace|outpace| +E0337584|over-associate|overassociate| +E0337585|over-association|overassociation| +E0337586|over-eater|overeater| +E0337587|over-committed|overcommitted| +E0337588|over-detect|overdetect| +E0337589|over-detection|overdetection| +E0337590|over-dominance|overdominance| +E0337591|over-elongation|overelongation| +E0337592|over-elongate|overelongate| +E0337593|over-insertion|overinsertion| +E0337594|over-insert|overinsert| +E0337595|over-learn|overlearn| +E0337596|over-report|overreport| +E0337597|over-referral|overreferral| +E0337598|over-refer|overrefer| +E0337600|over-protectiveness|overprotectiveness| +E0337602|over-sensitivity|oversensitivity| +E0337603|over-sensitive|oversensitive| +E0337604|over-proliferate|overproliferate| +E0337605|over-proliferation|overproliferation| +E0337606|over-ground|overground| +E0337607|over-ground|overground| +E0337608|over-simplistic|oversimplistic| +E0337609|over-transcription|overtranscription| +E0337610|over-transcribe|overtranscribe| +E0337611|over-predict|overpredict| +E0337612|over-prediction|overprediction| +E0337614|over-glycosylated|overglycosylated| +E0337615|over-methylation|overmethylation| +E0337616|over-pressure|overpressure| +E0337617|over-secretion|oversecretion| +E0337618|over-secrete|oversecrete| +E0337619|over-sew|oversew| +E0337620|over-sew|oversew| +E0337621|over-stage|overstage| +E0337622|over-stretch|overstretch| +E0337623|over-stretch|overstretch| +E0337624|over-synthesise|oversynthesize| +E0337624|over-synthesize|oversynthesize| +E0337624|oversynthesise|oversynthesize| +E0337625|over-synthesis|oversynthesis| +E0337626|over-wrap|overwrap| +E0337627|over-wrap|overwrap| +E0337651|pan-cardiac|pancardiac| +E0337653|pan-colonic|pancolonic| +E0337657|palatogingival|palato-gingival| +E0337658|otopalatodigital|oto-palato-digital| +E0337659|pan-malabsorption|panmalabsorption| +E0337661|paraarterially|para-arterially| +E0337674|methylmethane sulphonate|methylmethane sulfonate| +E0337675|methylmethane thiosulphonate|methylmethane thiosulfonate| +E0337676|ethylmethane sulphonate|ethylmethane sulfonate| +E0337678|mis-tune|mistune| +E0337679|mis-fold|misfold| +E0337680|mis-fold|misfold| +E0337693|pantoyl-lactone|pantoyl lactone| +E0337702|phospho-compound|phosphocompound| +E0337705|non-university|nonuniversity| +E0337706|non-threshold|nonthreshold| +E0337707|non-weightbearing|non-weight-bearing| +E0337707|nonweight-bearing|non-weight-bearing| +E0337707|nonweightbearing|non-weight-bearing| +E0337708|non-weightbearing|non-weight-bearing| +E0337708|nonweight-bearing|non-weight-bearing| +E0337708|nonweightbearing|non-weight-bearing| +E0337711|para-colic|paracolic| +E0337712|para-cortical|paracortical| +E0337713|para-crystal|paracrystal| +E0337716|ice fish|icefish| +E0337716|ice-fish|icefish| +E0337721|mid-graft|midgraft| +E0337728|mid-piece|midpiece| +E0337729|mid-flexion|midflexion| +E0337730|mid-hindbrain|midhindbrain| +E0337731|mid-leg|midleg| +E0337732|mid-life|midlife| +E0337733|mid-molecule|midmolecule| +E0337734|mid-sporulation|midsporulation| +E0337735|mid-systole|midsystole| +E0337736|mid-tibial|midtibial| +E0337737|mid-wall|midwall| +E0337738|mid-zone|midzone| +E0337741|mono-cortical|monocortical| +E0337744|multimerise|multimerize| +E0337745|multi-negative|multinegative| +E0337748|non-vaccinate|nonvaccinate| +E0337749|non-silicate|nonsilicate| +E0337750|non-sterol|nonsterol| +E0337751|non-taxon|nontaxon| +E0337752|non-teratogen|nonteratogen| +E0337753|non-transgenic|nontransgenic| +E0337754|non-transplant|nontransplant| +E0337755|non-urea|nonurea| +E0337756|non-valgus|nonvalgus| +E0337757|non-vertex|nonvertex| +E0337779|paralogue|paralog| +E0337795|pepsinise|pepsinize| +E0337819|peri-acetabular|periacetabular| +E0337820|peri-airway|periairway| +E0337821|peri-aneurysm|perianeurysm| +E0337822|peri-appendageal|periappendageal| +E0337828|peri-ellipsoidal|periellipsoidal| +E0337848|pre-aerosol|preaerosol| +E0337859|pre-arrest|prearrest| +E0337860|pre-arrest|prearrest| +E0337861|pre-assembly|preassembly| +E0337862|pre-associated|preassociated| +E0337863|pre-attentively|preattentively| +E0337871|pre-obese|preobese| +E0337897|phospho-intermediate|phosphointermediate| +E0337899|phosphoadenylyl sulfate|phosphoadenylyl sulphate| +E0337900|phospho-anhydride|phosphoanhydride| +E0337901|phospho-enzyme|phosphoenzyme| +E0337904|phospho-inositidase|phosphoinositidase| +E0337905|phospho-isoform|phosphoisoform| +E0337917|photo-adduct|photoadduct| +E0337949|platinised|platinized| +E0337985|peritumoural|peritumoral| +E0337994|alpha phenylglycidate|alpha-phenylglycidate| +E0338003|photo-insertion|photoinsertion| +E0338042|papillotubular|papillo-tubular| +E0338043|papillorenal|papillo-renal| +E0338050|osmol|osmole| +E0338051|oralpharyngeal|oral-pharyngeal| +E0338052|permeabiliser|permeabilizer| +E0338065|orthophenylphenate|ortho-phenylphenate| +E0338066|sodium orthophenylphenate|sodium ortho-phenylphenate| +E0338070|phyllodes tumour|phyllodes tumor| +E0338103|plate-like|platelike| +E0338126|policy-making|policymaking| +E0338127|polarisability|polarizability| +E0338128|polarisable|polarizable| +E0338133|well posedness|well-posedness| +E0338134|ill posedness|ill-posedness| +E0338135|polyhaematoporphyrin|polyhematoporphyrin| +E0338152|protectible|protectable| +E0338155|prostatectomise|prostatectomize| +E0338159|sublocalise|sublocalize| +E0338160|sublocalisation|sublocalization| +E0338229|caecectomised|cecectomized| +E0338231|septo-temporal|septotemporal| +E0338247|semi-group|semigroup| +E0338258|secretagogue|secretagog| +E0338266|Vipera russellii|Vipera russelli| +E0338271|sclerotise|sclerotize| +E0338283|Schwannian|schwannian| +E0338301|sand pit|sandpit| +E0338301|sand-pit|sandpit| +E0338312|runon|run-on| +E0338346|robotised|robotized| +E0338349|ristocetincofactor|ristocetin cofactor| +E0338352|Rhodesian Ridgeback|Rhodesian ridgeback| +E0338354|over-ridingly|overridingly| +E0338389|rhino-conjunctivitis|rhinoconjunctivitis| +E0338405|retro-urethral|retrourethral| +E0338413|retro-orbital|retroorbital| +E0338416|retro-infusion|retroinfusion| +E0338420|retro-element|retroelement| +E0338448|re-slice|reslice| +E0338451|re-stenose|restenose| +E0338454|re-obliteration|reobliteration| +E0338455|re-obliterate|reobliterate| +E0338458|relocalisation|relocalization| +E0338459|relocalise|relocalize| +E0338466|re-internalisation|reinternalization| +E0338466|re-internalization|reinternalization| +E0338466|reinternalisation|reinternalization| +E0338467|re-internalise|reinternalize| +E0338467|re-internalize|reinternalize| +E0338467|reinternalise|reinternalize| +E0338468|re-enter|reenter| +E0338469|re-emerge|reemerge| +E0338470|re-emergence|reemergence| +E0338483|residualise|residualize| +E0338484|resensitisation|resensitization| +E0338485|resensitise|resensitize| +E0338486|resulphate|resulfate| +E0338490|re-score|rescore| +E0338491|re-rupture|rerupture| +E0338496|reperitonealisation|reperitonealization| +E0338497|reperitonealise|reperitonealize| +E0338501|re-occlude|reocclude| +E0338502|reno-ureteral|renoureteral| +E0338515|re-invent|reinvent| +E0338516|re-invention|reinvention| +E0338517|re-inflation|reinflation| +E0338518|re-inflate|reinflate| +E0338519|re-extraction|reextraction| +E0338520|re-extract|reextract| +E0338522|re-interview|reinterview| +E0338523|re-engineer|reengineer| +E0338526|recategorise|recategorize| +E0338527|recategorisation|recategorization| +E0338533|re-endothelialise|reendothelialize| +E0338533|re-endothelialize|reendothelialize| +E0338533|reendothelialise|reendothelialize| +E0338534|re-endothelialisation|reendothelialization| +E0338534|re-endothelialization|reendothelialization| +E0338534|reendothelialisation|reendothelialization| +E0338537|re-excision|reexcision| +E0338538|re-excise|reexcise| +E0338539|re-elevation|reelevation| +E0338540|re-elevate|reelevate| +E0338543|re-irradiation|reirradiation| +E0338544|re-irradiate|reirradiate| +E0338545|re-esterify|reesterify| +E0338547|re-epithelialise|reepithelialize| +E0338547|re-epithelialize|reepithelialize| +E0338547|reepithelialise|reepithelialize| +E0338554|re-equilibration|reequilibration| +E0338555|re-equilibrate|reequilibrate| +E0338559|re-amplify|reamplify| +E0338560|re-amplification|reamplification| +E0338567|re-arterialise|rearterialize| +E0338567|re-arterialize|rearterialize| +E0338567|rearterialise|rearterialize| +E0338568|re-arterialisation|rearterialization| +E0338568|re-arterialization|rearterialization| +E0338568|rearterialisation|rearterialization| +E0338573|re-approximate|reapproximate| +E0338574|re-approximation|reapproximation| +E0338575|re-angioplasty|reangioplasty| +E0338576|re-afferent|reafferent| +E0338587|radio-immuno-assayable|radioimmunoassayable| +E0338587|radio-immunoassayable|radioimmunoassayable| +E0338587|radioimmuno-assayable|radioimmunoassayable| +E0338588|radio-immunotherapeutic|radioimmunotherapeutic| +E0338591|rainforest|rain forest| +E0338603|radio-aerosol|radioaerosol| +E0338604|radio-aerosol|radioaerosol| +E0338616|post-acquisition|postacquisition| +E0338617|post-agonist|postagonist| +E0338618|post-ablation|postablation| +E0338619|post-ablation|postablation| +E0338620|post-acute|postacute| +E0338621|post-amenorrheic|postamenorrheic| +E0338622|post-angiography|postangiography| +E0338623|post-angiography|postangiography| +E0338624|post-anoxia|postanoxia| +E0338625|post-anoxia|postanoxia| +E0338626|post-arrest|postarrest| +E0338627|post-assessment|postassessment| +E0338628|post-biomedical|postbiomedical| +E0338629|post-bolus|postbolus| +E0338631|post-capsomeric|postcapsomeric| +E0338632|post-catheterization|postcatheterization| +E0338633|post-catheterisation|postcatheterization| +E0338633|post-catheterization|postcatheterization| +E0338633|postcatheterisation|postcatheterization| +E0338635|post-chemotherapy|postchemotherapy| +E0338636|post-cleaning|postcleaning| +E0338638|post-coitus|postcoitus| +E0338639|post-coitus|postcoitus| +E0338699|path length|pathlength| +E0338699|path-length|pathlength| +E0338702|pharyngo-esophagogram|pharyngoesophagogram| +E0338702|pharyngo-oesophagogram|pharyngoesophagogram| +E0338704|line shape|lineshape| +E0338704|line-shape|lineshape| +E0338705|line width|linewidth| +E0338705|line-width|linewidth| +E0338709|live-birth|live birth| +E0338709|livebirth|live birth| +E0338710|log-normal|lognormal| +E0338713|chondrospinal|chondro-spinal| +E0338714|chondromucosal|chondro-mucosal| +E0338716|choriodecidual|chorio-decidual| +E0338745|cyanomorpholinodaunomycin|cyanomorpholino-daunomycin| +E0338753|edg|Edg| +E0338755|fibroodontoma|fibro-odontoma| +E0338758|fibromuscular|fibro-muscular| +E0338759|fibroatelectatic|fibro-atelectatic| +E0338760|fibromucinous|fibro-mucinous| +E0338762|DoD|DOD| +E0338770|gastroarterial|gastro-arterial| +E0338771|gastroulcerogenic|gastro-ulcerogenic| +E0338779|haploinsufficient|haplo-insufficient| +E0338780|haploidentification|haplo-identification| +E0338781|haploinsufficiency|haplo-insufficiency| +E0338782|hand surgery|handsurgery| +E0338782|hand-surgery|handsurgery| +E0338783|hippocamponeocortical|hippocampo-neocortical| +E0338784|hippocampocortical|hippocampo-cortical| +E0338787|hippocampoparietal|hippocampo-parietal| +E0338788|postero-anterior|posteroanterior| +E0338789|posteroperipheral|postero-peripheral| +E0338790|posteroanteriorly|postero-anteriorly| +E0338792|Abercrombie's syndrome|Abercrombie syndrome| +E0338811|Collectotrichum dematium|Colletotrichum dematium| +E0338826|acquired hypogammaglobulinaemia|acquired hypogammaglobulinemia| +E0338865|antithyroid antibody|anti-thyroid antibody| +E0338902|bakers' itch|baker's itch| +E0338942|amebic abscess|amoebic abscess| +E0338943|amoeboid movement|ameboid movement| +E0338973|blast cell leucaemia|blast cell leukemia| +E0338973|blast cell leucemia|blast cell leukemia| +E0338973|blast cell leukaemia|blast cell leukemia| +E0338981|breath analyser|breath analyzer| +E0338996|chain-saw|chain saw| +E0338996|chainsaw|chain saw| +E0338998|child-bed fever|childbed fever| +E0338999|child labour|child labor| +E0339039|alpha-haemolysis|alpha-hemolysis| +E0339055|archaeocortex|archeocortex| +E0339087|wool picking|wool-picking| +E0339120|utero-ovarian ligament|uteroovarian ligament| +E0339159|temporomandibular disfunction syndrome|temporomandibular dysfunction syndrome| +E0339196|arrhinia|arhinia| +E0339215|arterial haemorrhage|arterial hemorrhage| +E0339291|basophilic leucocyte|basophilic leukocyte| +E0339294|Battle sign|Battle's sign| +E0339322|bleeding heart pigeon|bleeding-heart pigeon| +E0339327|blue green alga|blue-green alga| +E0339331|body colour|body color| +E0339340|branched chain ketoaciduria|branched-chain ketoaciduria| +E0339342|brain aneurism|brain aneurysm| +E0339352|case-control study|case control study| +E0339388|bird breeders' lung|bird breeder's lung| +E0339413|Brodmann area|Brodmann's area| +E0339428|brass-founders' fever|brass-founders' fever| +E0339429|brass-founders' ague|brass founders' ague| +E0339461|cheese-maker|cheese maker| +E0339461|cheesemaker|cheese maker| +E0339470|crico-esophageal tendon|cricoesophageal tendon| +E0339487|deckhand|deck hand| +E0339517|cephalocoele|cephalocele| +E0339531|chloranaemia|chloranemia| +E0339583|extra-uterine pregnancy|extrauterine pregnancy| +E0339586|eye blink|eyeblink| +E0339587|beta-aminoisobutyricaciduria|beta aminoisobutyricaciduria| +E0339612|choledochogastrostomy|choledocho-gastrostomy| +E0339619|coal miner's lung|coal miners' lung| +E0339621|clasp knife rigidity|clasp-knife rigidity| +E0339670|Clouston syndrome|Clouston's syndrome| +E0339688|congenital nonhaemolytic jaundice|congenital nonhemolytic jaundice| +E0339707|drop-foot gait|drop foot gait| +E0339707|dropfoot gait|drop foot gait| +E0339713|colo-colic|colocolic| +E0339716|nonbullous congenital ichthyosiform erythroderma|non-bullous congenital ichthyosiform erythroderma| +E0339728|congenital sucrose isomaltose malabsorption|congenital sucrose-isomaltose malabsorption| +E0339756|cross-arm flap|cross arm flap| +E0339757|crown-heel length|crown heel length| +E0339770|dietary amenorrhoea|dietary amenorrhea| +E0339772|dorsal external arcuate fibre|dorsal external arcuate fiber| +E0339774|dose rate|dose-rate| +E0339775|drop shaped|drop-shaped| +E0339776|drug induced lupus|drug-induced lupus| +E0339797|carbamoyl phosphate synthetase deficiency|carbamoyl-phosphate synthetase deficiency| +E0339799|cis trans test|cis-trans test| +E0339810|Creutzfeldt Jakob syndrome|Creutzfeldt-Jakob syndrome| +E0339816|cross immunity|cross-immunity| +E0339825|cutaneous T cell lymphoma|cutaneous T-cell lymphoma| +E0339839|de Morgan's spot|De Morgan's spot| +E0339840|cytotoxic T-cell|cytotoxic T cell| +E0339844|Debre-Semelaigne's syndrome|Debre-Semelaigne syndrome| +E0339853|De Sanctis Cacchione syndrome|DeSanctis-Cacchione syndrome| +E0339853|De Sanctis-Cacchione syndrome|DeSanctis-Cacchione syndrome| +E0339853|de Sanctis Cacchione syndrome|DeSanctis-Cacchione syndrome| +E0339853|de Sanctis-Cacchione syndrome|DeSanctis-Cacchione syndrome| +E0339889|deaf mute|deaf-mute| +E0339898|Dejerine Lichtheim phenomenon|Dejerine-Lichtheim phenomenon| +E0339916|Duncan syndrome|Duncan's syndrome| +E0339917|dum dum fever|dum-dum fever| +E0339917|dumdum fever|dum-dum fever| +E0339920|Dupre syndrome|Dupre's syndrome| +E0339925|dysponderal amenorrhoea|dysponderal amenorrhea| +E0339940|familial non-haemolytic jaundice|familial non-hemolytic jaundice| +E0339944|foetal acoustic stimulation test|fetal acoustic stimulation test| +E0339946|fibre cell|fiber cell| +E0339950|film strip|filmstrip| +E0339961|embryonal tumour|embryonal tumor| +E0339966|emprosthotonus|emprosthotonos| +E0339968|Entameba hartmanni|Entamoeba hartmanni| +E0339975|enterokinesia|enterocinesia| +E0339979|ectodermosis erosiva pluri-orificialis|ectodermosis erosiva pluriorificialis| +E0339986|eosinophilia myalgia syndrome|eosinophilia-myalgia syndrome| +E0340024|viral haemagglutination|viral hemagglutination| +E0340065|faecaloma|fecaloma| +E0340070|fer-de-lance|fer de lance| +E0340153|oesophago-oesophagostomy|esophago-esophagostomy| +E0340157|foreign-body giant cell|foreign body giant cell| +E0340168|frost anaesthesia|frost anesthesia| +E0340203|gastro-pancreatic reflex|gastropancreatic reflex| +E0340204|gastro-esophagostomy|gastroesophagostomy| +E0340204|gastro-oesophagostomy|gastroesophagostomy| +E0340205|gastro-intestinal digestion|gastrointestinal digestion| +E0340223|glassblower|glass blower| +E0340230|globulo-maxillary cyst|globulomaxillary cyst| +E0340237|glosso-epiglottic fold|glossoepiglottic fold| +E0340238|glucagon-stimulation test|glucagon stimulation test| +E0340249|Gower's manoeuvre|Gower's maneuver| +E0340260|Gorlin Psaume syndrome|Gorlin-Psaume syndrome| +E0340278|grey syndrome|gray syndrome| +E0340304|gyrus occipitotemporalis lateralis|gyrus occipito-temporalis lateralis| +E0340311|habenulo-interpeduncular tract|habenulointerpeduncular tract| +E0340314|Haemaphysalis leporispalustris|Haemaphysalis leporis-palustris| +E0340363|haemagglutination inhibition test|hemagglutination inhibition test| +E0340370|haemocytophagia|hemocytophagia| +E0340372|haemorrhagic dengue|hemorrhagic dengue| +E0340373|Henle's fibre layer|Henle's fiber layer| +E0340375|hepatic amoebiasis|hepatic amebiasis| +E0340393|high chair|highchair| +E0340394|high protein diet|high-protein diet| +E0340412|home brew|home-brew| +E0340431|hydrogen-ion concentration|hydrogen ion concentration| +E0340456|ice box|icebox| +E0340495|ink blot test|inkblot test| +E0340541|intraarticular sternocostal ligament|intra-articular sternocostal ligament| +E0340545|intrapartum haemorrhage|intrapartum hemorrhage| +E0340553|ischaemic bowel disease|ischemic bowel disease| +E0340567|jack knife seizure|jackknife seizure| +E0340567|jack-knife seizure|jackknife seizure| +E0340572|jackrabbit|jack rabbit| +E0340593|ketosis resistant diabetes|ketosis-resistant diabetes| +E0340647|laser Doppler velocimetry|laser-Doppler velocimetry| +E0340656|Laurence Moon syndrome|Laurence-Moon syndrome| +E0340659|LeFort osteotomy|Le Fort osteotomy| +E0340659|Lefort osteotomy|Le Fort osteotomy| +E0340661|leather-bottle stomach|leather bottle stomach| +E0340666|left gastro-omental artery|left gastroomental artery| +E0340688|leukotome|leucotome| +E0340689|leucocytoclastic angiitis|leukocytoclastic angiitis| +E0340699|lipline|lip line| +E0340738|low calorie diet|low-calorie diet| +E0340742|Long Evans rat|Long-Evans rat| +E0340768|well-differentiated lymphocytic lymphoma|well differentiated lymphocytic lymphoma| +E0340773|mail-order|mail order| +E0340775|mal de Meleda|mal de meleda| +E0340780|manic depressive disorder|manic-depressive disorder| +E0340781|manic depressive reaction|manic-depressive reaction| +E0340785|massive haemorrhage|massive hemorrhage| +E0340811|megalokaryocyte|megalocaryocyte| +E0340813|megalophthalmos|megalophthalmus| +E0340818|mento-anterior position|mentoanterior position| +E0340835|microscopic haematuria|microscopic hematuria| +E0340860|nail biting|nail-biting| +E0340862|nasoalveolar cyst|naso-alveolar cyst| +E0340863|naso-palatine duct cyst|nasopalatine duct cyst| +E0340868|necrotising cellulitis|necrotizing cellulitis| +E0340869|necrotising scleritis|necrotizing scleritis| +E0340907|nonimmune hydrops fetalis|non-immune hydrops fetalis| +E0340908|non-rachitic bow leg|non-rachitic bowleg| +E0340908|nonrachitic bow leg|non-rachitic bowleg| +E0340908|nonrachitic bowleg|non-rachitic bowleg| +E0340909|nonthrombocytopenic purpura|non-thrombocytopenic purpura| +E0340910|nonvenereal syphilis|non-venereal syphilis| +E0340912|non-member|nonmember| +E0340913|non parametric statistics|nonparametric statistics| +E0340913|non-parametric statistics|nonparametric statistics| +E0340914|non-striated muscle|nonstriated muscle| +E0340915|non-toxic goiter|nontoxic goiter| +E0340915|non-toxic goitre|nontoxic goiter| +E0340915|nontoxic goitre|nontoxic goiter| +E0340956|meta analysis|meta-analysis| +E0340956|metaanalysis|meta-analysis| +E0340957|metal-fume fever|metal fume fever| +E0340959|metropathia haemorrhagica|metropathia hemorrhagica| +E0340972|mixed hyperlipidaemia|mixed hyperlipidemia| +E0341040|neuronal ceroid lipofuscinosis|neuronal ceroid-lipofuscinosis| +E0341094|nutritional amenorrhoea|nutritional amenorrhea| +E0341098|nursemaid's elbow|nursemaids' elbow| +E0341099|nutcracker oesophagus|nutcracker esophagus| +E0341103|oculodento-osseous dysplasia|oculo-dento-osseous dysplasia| +E0341103|oculodentoosseous dysplasia|oculo-dento-osseous dysplasia| +E0341107|olfactory anaesthesia|olfactory anesthesia| +E0341113|open-bite|open bite| +E0341113|openbite|open bite| +E0341121|orange-flower water|orange flower water| +E0341205|pigeon breeder's lung|pigeon breeders' lung| +E0341205|pigeon breeders lung|pigeon breeders' lung| +E0341205|pigeon-breeder's lung|pigeon breeders' lung| +E0341205|pigeon-breeders lung|pigeon breeders' lung| +E0341205|pigeon-breeders' lung|pigeon breeders' lung| +E0341233|port-wine naevus|port-wine nevus| +E0341235|post traumatic stress disorder|post-traumatic stress disorder| +E0341238|posterior atlanto-occipital membrane|posterior atlantooccipital membrane| +E0341244|myeloid granulocytic leucaemia|myeloid granulocytic leukemia| +E0341244|myeloid granulocytic leucemia|myeloid granulocytic leukemia| +E0341244|myeloid granulocytic leukaemia|myeloid granulocytic leukemia| +E0341280|pipefitter|pipe fitter| +E0341302|premenopausal amenorrhoea|premenopausal amenorrhea| +E0341325|prostatorrhoea|prostatorrhea| +E0341328|pseudohaematuria|pseudohematuria| +E0341350|relative amenorrhoea|relative amenorrhea| +E0341371|sail maker|sailmaker| +E0341412|Pediococcus urinae-equi|Pediococcus urinaeequi| +E0341443|precuneus|praecuneus| +E0341465|punch drunk encephalopathy|punchdrunk encephalopathy| +E0341469|quadrantanopia|quadrant anopia| +E0341506|port wine naevus|portwine nevus| +E0341506|port wine nevus|portwine nevus| +E0341506|portwine naevus|portwine nevus| +E0341508|post-infectious encephalitis|postinfectious encephalitis| +E0341510|posthemiplegic chorea|post-hemiplegic chorea| +E0341512|post-perfusion syndrome|postperfusion syndrome| +E0341513|post-sphenoidal bone|postsphenoidal bone| +E0341514|post-stenotic dilatation|poststenotic dilatation| +E0341515|post-transfusion hepatitis|posttransfusion hepatitis| +E0341517|pre-excitation syndrome|preexcitation syndrome| +E0341524|male Turner's syndrome|male Turner syndrome| +E0341525|Mauriac's syndrome|Mauriac syndrome| +E0341528|Mohs surgery|Mohs' surgery| +E0341528|Mohs's surgery|Mohs' surgery| +E0341560|uretero-vesical junction|ureterovesical junction| +E0341564|unconjugated hyperbilirubinaemia|unconjugated hyperbilirubinemia| +E0341575|trainsickness|train sickness| +E0341643|tuberculin type hypersensitivity|tuberculin-type hypersensitivity| +E0341651|Zieve's syndrome|Zieve syndrome| +E0341695|vasa previa|vasa praevia| +E0341726|haw finch|hawfinch| +E0341731|acute tubulointerstitial nephritis|acute tubulo-interstitial nephritis| +E0341737|lymphoedema tarda|lymphedema tarda| +E0341762|naevus spilus|nevus spilus| +E0341766|three day fever|three-day fever| +E0341767|three day measles|three-day measles| +E0341778|systematic desensitisation|systematic desensitization| +E0341781|surf board|surfboard| +E0341790|swimmer's itch|swimmers' itch| +E0341810|sleep walking disorder|sleepwalking disorder| +E0341810|sleep-walking disorder|sleepwalking disorder| +E0341815|spasmodic dysmenorrhoea|spasmodic dysmenorrhea| +E0341843|sulphur granule|sulfur granule| +E0341850|shoulder-blade|shoulder blade| +E0341850|shoulderblade|shoulder blade| +E0341854|semi-conscious|semiconscious| +E0341855|self view|self-view| +E0341860|see saw nystagmus|see-saw nystagmus| +E0341860|seesaw nystagmus|see-saw nystagmus| +E0341861|scrivener's palsy|scriveners' palsy| +E0341866|Mobius' syndrome|Mobius syndrome| +E0341866|Moebius syndrome|Mobius syndrome| +E0341874|esophagointestinal|esophago-intestinal| +E0341874|oesophago-intestinal|esophago-intestinal| +E0341874|oesophagointestinal|esophago-intestinal| +E0341915|Parry Romberg syndrome|Parry-Romberg syndrome| +E0341933|pharyngo-esophageal diverticulum|pharyngoesophageal diverticulum| +E0341933|pharyngo-oesophageal diverticulum|pharyngoesophageal diverticulum| +E0341936|pinkeye|pink eye| +E0341943|pleuropneumonia like organism|pleuropneumonia-like organism| +E0341955|pleurothotonus|pleurothotonos| +E0341961|low renin hypertension|low-renin hypertension| +E0341966|oral leukoplakia|oral leucoplakia| +E0341967|Oddi's sphincter|Oddis sphincter| +E0341988|positive end-expiratory pressure|positive end expiratory pressure| +E0342008|pure red-cell aplasia|pure red cell aplasia| +E0342013|rectocolonoscopy|recto-colonoscopy| +E0342014|rectosigmoid colon|recto-sigmoid colon| +E0342015|recto-appendiceal fistula|rectoappendiceal fistula| +E0342043|ventral external arcuate fibre|ventral external arcuate fiber| +E0342044|transverse pontine fibre|transverse pontine fiber| +E0342046|Fiessinger Leroy Reiter syndrome|Fiessinger-Leroy-Reiter syndrome| +E0342046|Fiessinger-Leroy-Reiter's syndrome|Fiessinger-Leroy-Reiter syndrome| +E0342052|hypoxanthine-guanine phosphoribosyltransferase deficiency|hypoxanthine guanine phosphoribosyltransferase deficiency| +E0342068|right gastro-omental artery|right gastroomental artery| +E0342083|sandflea|sand flea| +E0342108|sign writer|signwriter| +E0342110|silo filler's lung|silo-filler's lung| +E0342110|silo fillers' lung|silo-filler's lung| +E0342110|silo-fillers' lung|silo-filler's lung| +E0342168|Rendu Osler Weber syndrome|Rendu-Osler-Weber syndrome| +E0342189|mean cell haemoglobin concentration|mean cell hemoglobin concentration| +E0342207|ring form|ring-form| +E0342207|ringform|ring-form| +E0342232|Romano Ward syndrome|Romano-Ward syndrome| +E0342255|Salmonella abortus-ovis|Salmonella abortusovis| +E0342259|Salmonella typhi-suis|Salmonella typhisuis| +E0342296|self psychology|self-psychology| +E0342317|schistocoelia|schistocelia| +E0342324|scleroedema neonatorum|scleredema neonatorum| +E0342462|seven day fever|seven-day fever| +E0342496|stiff-person syndrome|stiff person syndrome| +E0342531|seborrhoeic wart|seborrheic wart| +E0342538|Vogt Koyanagi Harada Syndrome|Vogt-Koyanagi-Harada syndrome| +E0342586|strawberry haemangioma|strawberry hemangioma| +E0342652|tumour lysis syndrome|tumor lysis syndrome| +E0342654|Treacher Collins Franceschetti syndrome|Treacher Collins-Franceschetti syndrome| +E0342660|X-linked hypogammaglobulinaemia|X-linked hypogammaglobulinemia| +E0342674|neuro-ectodermal hamartoma|neuroectodermal hamartoma| +E0342677|humourousness|humorousness| +E0342687|five day fever|five-day fever| +E0342688|race course|racecourse| +E0342694|pyo-carious|pyocarious| +E0342695|pyo-septic|pyoseptic| +E0342696|pyo-necrotic|pyonecrotic| +E0342699|pyo-destructive|pyodestructive| +E0342703|haemorrhagic fibrinogenolysis|hemorrhagic fibrinogenolysis| +E0342720|tea taster's cough|tea-tasters' cough| +E0342720|tea tasters' cough|tea-tasters' cough| +E0342720|tea-taster's cough|tea-tasters' cough| +E0342722|tea taster's disease|tea-tasters' disease| +E0342722|tea tasters' disease|tea-tasters' disease| +E0342722|tea-taster's disease|tea-tasters' disease| +E0342760|tunafish|tuna fish| +E0342780|vitello-intestinal duct|vitellointestinal duct| +E0342783|voicebox|voice box| +E0342800|spur cell anaemia|spur cell anemia| +E0342832|supra-occipital bone|supraoccipital bone| +E0342836|squirrel fish|squirrelfish| +E0342877|subacute sclerosing leucoencephalopathy|subacute sclerosing leukoencephalopathy| +E0342903|superior sulcus tumour|superior sulcus tumor| +E0342915|Tenia hydatigena|Taenia hydatigena| +E0342916|Tenia marginata|Taenia marginata| +E0342933|thalamo-olivary tract|thalamoolivary tract| +E0342978|writer's spasm|writers' spasm| +E0342986|wood-carver|wood carver| +E0343031|synagog|synagogue| +E0343072|transhiatal|trans-hiatal| +E0343079|Trantas's dot|Trantas' dot| +E0343085|trench foot|trenchfoot| +E0343159|vaginal haematocele|vaginal hematocele| +E0343159|vaginal haematocoele|vaginal hematocele| +E0343190|venous haemorrhage|venous hemorrhage| +E0343192|Tapia syndrome|Tapia's syndrome| +E0343238|vesico-ureteric reflux|vesicoureteric reflux| +E0343241|virusaemia|virusemia| +E0343249|viral haemorrhagic fever|viral hemorrhagic fever| +E0343294|acromio-clavicular joint|acromioclavicular joint| +E0343326|Vitex agnus-castus|Vitex agnus castus| +E0343331|Xyphias gladius|Xiphias gladius| +E0343364|dart board|dartboard| +E0343373|foot rest|footrest| +E0343390|non-residential|nonresidential| +E0343391|non-prescribed|nonprescribed| +E0343392|non-visual|nonvisual| +E0343393|non-nutritive|nonnutritive| +E0343397|non-striated|nonstriated| +E0343398|non-urban|nonurban| +E0343411|semi-skilled|semiskilled| +E0343444|air field|airfield| +E0343446|bird-like|birdlike| +E0343463|amygdalohippocampal|amygdalo-hippocampal| +E0343464|amygdalosubicular|amygdalo-subicular| +E0343473|arthro-osteitis|arthroosteitis| +E0343474|arthro-series|arthroseries| +E0343475|atlantoaxoid|atlanto-axoid| +E0343581|chess board|chessboard| +E0343614|church yard|churchyard| +E0343668|co-dominance|codominance| +E0343734|deer fly|deerfly| +E0343741|deicer|de-icer| +E0343851|eye shade|eyeshade| +E0343860|fibrogastroscopic|fibro-gastroscopic| +E0343916|Glycyphagus destructor|Glyciphagus destructor| +E0344044|Kerckring's fold|Kerkring's fold| +E0344066|latero-dorsal|laterodorsal| +E0344084|linguoalveolar|linguo-alveolar| +E0344111|Marseille|Marseilles| +E0344114|mento-posterior|mentoposterior| +E0344161|Nucleus praeopticus medianus|nucleus preopticus medianus| +E0344189|myelo-optico-neuropathy|myeloopticoneuropathy| +E0344218|Bothrops schlegeli|Bothrops schlegelii| +E0344241|Cnemidocoptes jamaicensis|Knemidokoptes jamaicensis| +E0344241|Knemidocoptes jamaicensis|Knemidokoptes jamaicensis| +E0344242|Cnemidocoptes mutans|Knemidokoptes mutans| +E0344242|Knemidocoptes mutans|Knemidokoptes mutans| +E0344262|vesiculo-deferentography|vesiculodeferentography| +E0344263|orbito-frontal|orbitofrontal| +E0344538|sodium sulphacetamide|sodium sulfacetamide| +E0344650|galvanisers' poisoning|galvanizers' poisoning| +E0344651|zinc poisoning tremor|zinc-poisoning tremor| +E0344671|oculo-cardiac|oculocardiac| +E0344713|non-slip|nonslip| +E0344722|palmo-plantar|palmoplantar| +E0344724|palmodigital|palmo-digital| +E0344789|vibro-acoustic|vibroacoustic| +E0344790|vestibulo-spinal|vestibulospinal| +E0344800|ventro-posterior|ventroposterior| +E0344802|ventroposteromedial|ventro-postero-medial| +E0344803|ventrocranial|ventro-cranial| +E0344804|ventrocaudal|ventro-caudal| +E0344921|trichorhinophalangeal|tricho-rhino-phalangeal| +E0344922|folliculosebaceous|folliculo-sebaceous| +E0344928|toxicopharmacological|toxico-pharmacological| +E0344930|toxicometabolic|toxico-metabolic| +E0344931|toxiconutritional|toxico-nutritional| +E0344932|toxicobiological|toxico-biological| +E0344933|toxicoseptic|toxico-septic| +E0344934|toxicopathogenesis|toxico-pathogenesis| +E0344950|toxicokinetics|toxico-kinetics| +E0344993|longhead char|longhead charr| +E0345011|masto-retrosigmoid|mastoretrosigmoid| +E0345012|mastolymphocytic|masto-lymphocytic| +E0345029|aerodiameter|aero-diameter| +E0345038|atriobiventricular|atrio-biventricular| +E0345045|basoapical|baso-apical| +E0345048|biliodigestive|bilio-digestive| +E0345084|encephalo-cranial|encephalocranial| +E0345087|facio-cranial|faciocranial| +E0345089|faun-tail|faun tail| +E0345093|oesophago-aortal|esophago-aortal| +E0345094|esophago-visceral|esophagovisceral| +E0345094|oesophago-visceral|esophagovisceral| +E0345094|oesophagovisceral|esophagovisceral| +E0345095|esophago-vertebral|esophagovertebral| +E0345095|oesophago-vertebral|esophagovertebral| +E0345095|oesophagovertebral|esophagovertebral| +E0345096|esophago-mediastinal|esophagomediastinal| +E0345096|oesophago-mediastinal|esophagomediastinal| +E0345096|oesophagomediastinal|esophagomediastinal| +E0345101|gingivo-periodontal|gingivoperiodontal| +E0345102|gingivo-buccal|gingivobuccal| +E0345104|gingivo-periosteoplasty|gingivoperiosteoplasty| +E0345105|gingivo-periodontitis|gingivoperiodontitis| +E0345106|cerebro-placental|cerebroplacental| +E0345109|cysto-cystoplasty|cystocystoplasty| +E0345148|iridocorneal|irido-corneal| +E0345149|irido-retinochoroidal|iridoretinochoroidal| +E0345150|iridozonular|irido-zonular| +E0345196|kerato-dermal|keratodermal| +E0345198|labio-palatal|labiopalatal| +E0345199|labio-scrotal|labioscrotal| +E0345200|lacto-ovo vegetarian|lacto-ovo-vegetarian| +E0345202|lacto-bacillary|lactobacillary| +E0345208|mento-collical|mentocollical| +E0345219|sino-auricular|sinoauricular| +E0345258|nevomelanocytic|nevo-melanocytic| +E0345283|osteo-meningeal|osteomeningeal| +E0345284|osteo-muscular|osteomuscular| +E0345342|roto-torsional|rototorsional| +E0345343|roto-vibrational|rotovibrational| +E0345344|rotorod|roto-rod| +E0345374|clock face|clockface| +E0345428|housebuilder|house builder| +E0345454|glucuronidase invitro test|glucuronidase in vitro test| +E0345466|leuco-araiosis|leukoaraiosis| +E0345466|leucoaraiosis|leukoaraiosis| +E0345466|leuko-araiosis|leukoaraiosis| +E0345499|rifle bird|riflebird| +E0345540|Rauwolfia serpentina|Rauvolfia serpentina| +E0345587|sheep shearer|sheepshearer| +E0345587|sheep-shearer|sheepshearer| +E0345600|sialo-glycolipid receptor|sialoglycolipid receptor| +E0345614|silver-gray rockfish|silvergray rockfish| +E0345731|sunn-hemp|sunn hemp| +E0345734|grey-rumped swiftlet|gray-rumped swiftlet| +E0345741|trophoblastic pseudotumor|trophoblastic pseudotumour| +E0345742|tachy-fibrillation|tachyfibrillation| +E0345829|thromboocclusive|thrombo-occlusive| +E0345830|thromboaspiration|thrombo-aspiration| +E0345831|thromboobliteration|thrombo-obliteration| +E0345875|wool-sorter|woolsorter| +E0345937|folliculitis cheloidalis nuchae|folliculitis keloidalis nuchae| +E0345939|sunn-hemp mosaic virus|sunn hemp mosaic virus| +E0345942|sunn-hemp mosaic tobamovirus|sunn hemp mosaic tobamovirus| +E0345965|spondylo-epiphyseal|spondyloepiphyseal| +E0345971|interpremolar distance|inter-premolar distance| +E0345974|pancreato-protective|pancreatoprotective| +E0345975|pulmono-protective|pulmonoprotective| +E0345976|pulmonoarterial|pulmono-arterial| +E0345977|pulmono-oesophageal|pulmono-esophageal| +E0345977|pulmonoesophageal|pulmono-esophageal| +E0345978|venovenous bypass|veno-venous bypass| +E0345996|ileoanal anastomosis|ileo-anal anastomosis| +E0345997|ileo-ileo-colic|ileo-ileocolic| +E0345997|ileoileocolic|ileo-ileocolic| +E0345998|colocolic anastomosis|colo-colic anastomosis| +E0345999|coloileocolonic|coloileo-colonic| +E0346000|coloileocolonic junction|coloileo-colonic junction| +E0346019|oxoalcohol|oxo-alcohol| +E0346036|quasimolecular|quasi-molecular| +E0346038|quasidirect|quasi-direct| +E0346039|quasipalindromic|quasi-palindromic| +E0346044|non carrier|noncarrier| +E0346044|non-carrier|noncarrier| +E0346060|lumbosacrocoxal|lumbo-sacro-coxal| +E0346066|sclero-choroid|sclerochoroid| +E0346067|sclero-choroidal|sclerochoroidal| +E0346068|sclero-trabeculectomy|sclerotrabeculectomy| +E0346069|sclero-embolisation|sclero-embolization| +E0346071|sclero-uveotumorectomy|sclerouveotumorectomy| +E0346072|sclero-corneomalacia|sclerocorneomalacia| +E0346076|telobox|telo-box| +E0346077|Schizo-saccharomyces pombe|Schizosaccharomyces pombe| +E0346129|Cnemidocoptes laevis|Knemidocoptes laevis| +E0346129|Knemidokoptes laevis|Knemidocoptes laevis| +E0346130|Cnemidocoptes|Knemidocoptes| +E0346130|Knemidokoptes|Knemidocoptes| +E0346135|urethrocolonic|urethro-colonic| +E0346136|urethrosigmoid|urethro-sigmoid| +E0346137|urethrosigmoid anastomosis|urethro-sigmoid anastomosis| +E0346159|unisite|uni-site| +E0346166|Helly's solution|Helly solution| +E0346229|alcelaphine herpesvirus-1|alcelaphine herpesvirus 1| +E0346230|ovine herpesvirus-2|ovine herpesvirus 2| +E0346249|amygdalohippocampal epilepsy|amygdalo-hippocampal epilepsy| +E0346250|anancastic personality disorder|anankastic personality disorder| +E0346254|foetus anideus|fetus anideus| +E0346308|foetal cranioclasis|fetal cranioclasis| +E0346309|foetal basiotripsy|fetal basiotripsy| +E0346310|foetal craniotomy|fetal craniotomy| +E0346322|Beal's auriculo-osteodysplasia syndrome|Beal's auriculoosteodysplasia syndrome| +E0346557|cockade naevus|cockade nevus| +E0346559|genetic co-dominance|genetic codominance| +E0346613|Amadina fasciata|Amadena fasciata| +E0346614|cut-throat finch|cutthroat finch| +E0346636|human bot-fly|human bot fly| +E0346636|human botfly|human bot fly| +E0346650|grey triggerfish|gray triggerfish| +E0346709|rabbit-foot-clover|rabbit foot clover| +E0346742|generalized haematopoietic hypoplasia|generalized hematopoietic hypoplasia| +E0346759|grey silky flycatcher|gray silky flycatcher| +E0346884|epicranial subaponeurotic haemorrhage|epicranial subaponeurotic hemorrhage| +E0346912|sulcus fimbrio-dentatus|sulcus fimbriodentatus| +E0346925|iridocorneal dysgenesis|irido-corneal dysgenesis| +E0346928|Cnemidocoptes jamaicensis Turk|Knemidokoptes jamaicensis Turk| +E0346928|Knemidocoptes jamaicensis Turk|Knemidokoptes jamaicensis Turk| +E0346982|cerebro-macular dystrophy|cerebromacular dystrophy| +E0346991|Hurter's spade-foot toad|Hurter's spadefoot toad| +E0346999|Van Buchem disease|van Buchem disease| +E0347017|chronic fibroedematous gingivitis|chronic fibro-edematous gingivitis| +E0347088|bell-clapper|bell clapper| +E0347090|bell-clapper deformity|bell clapper deformity| +E0347096|Leptosylla|Leptopsylla| +E0347180|direct mento-posterior position|direct mentoposterior position| +E0347181|right mento-posterior position|right mentoposterior position| +E0347182|left mento-posterior position|left mentoposterior position| +E0347184|extra-embryonic mesoblast|extraembryonic mesoblast| +E0347256|Pacinian tumour|Pacinian tumor| +E0347313|post-traumatic periosteoma|posttraumatic periosteoma| +E0347384|lodgepole pine|lodge-pole pine| +E0347406|jequirity bean|jequirty bean| +E0347531|oesophageal muscularis propria|esophageal muscularis propria| +E0347555|criss-cross prickleback|crisscross prickleback| +E0347576|horse-biting louse|horse biting louse| +E0347582|horse botfly|horse bot fly| +E0347582|horse-bot fly|horse bot fly| +E0347606|Greenland musk ox|Greenland muskox| +E0347617|nailfold haemorrhage|nailfold hemorrhage| +E0347642|noncommissioned officer|non-commissioned officer| +E0347644|non-nutritive sweetener|nonnutritive sweetener| +E0347647|non-jury trial|nonjury trial| +E0347651|non-slip surface|nonslip surface| +E0347652|non-urban society|nonurban society| +E0347653|non-visual photoreceptor|nonvisual photoreceptor| +E0347654|non-visual photosensitivity|nonvisual photosensitivity| +E0347658|supersqueeze oesophagus|supersqueeze esophagus| +E0347675|sulfur polypore|sulphur polypore| +E0347690|ventriculoauricular shunt|ventriculo-auricular shunt| +E0347691|vestibulo-spinal tract|vestibulospinal tract| +E0347692|fetal vibro-acoustic stimulation test|fetal vibroacoustic stimulation test| +E0347781|Israel's shunt hyperbilirubinaemia|Israel's shunt hyperbilirubinemia| +E0347791|oculo-dentodigital syndrome|oculo-dento-digital syndrome| +E0347791|oculodento-digital syndrome|oculo-dento-digital syndrome| +E0347791|oculodentodigital syndrome|oculo-dento-digital syndrome| +E0347805|French angel fish|French angelfish| +E0347808|grey potoo|gray potoo| +E0347957|sulphacetamide allergy|sulfacetamide allergy| +E0347958|ophthalmic sodium sulphacetamide|ophthalmic sodium sulfacetamide| +E0347959|topical sodium sulphacetamide|topical sodium sulfacetamide| +E0347980|syringomyelia-anaesthesia syndrome|syringomyelia-anesthesia syndrome| +E0347982|self-stimulative behaviour|self-stimulative behavior| +E0347985|temporooccipital fasciculus|temporo-occipital fasciculus| +E0348029|desulphurisation treater|desulphurization treater| +E0348036|sulphur-breasted toucan|sulfur-breasted toucan| +E0348053|mega-unit|megaunit| +E0348105|pilliferous|piliferous| +E0348120|rat bite|ratbite| +E0348120|rat-bite|ratbite| +E0348122|re-box|rebox| +E0348167|zygomatico-auricular|zygomaticoauricular| +E0348178|mechanochemical|mechano-chemical| +E0348179|mechanoenergetic|mechano-energetic| +E0348266|thiosulfuric|thiosulphuric| +E0348303|long-tail|longtail| +E0348304|long-tailed|longtailed| +E0348316|mento-transverse|mentotransverse| +E0348317|methel|metel| +E0348485|sulfphocarbamide|sulfocarbamide| +E0348568|pneumocoele|pneumocele| +E0348730|grey-backed tern|gray-backed tern| +E0348812|Xyphias|Xiphias| +E0348821|ventro-laterally|ventrolaterally| +E0348822|proximodistal|proximo-distal| +E0349397|non-glucosuric|nonglucosuric| +E0349398|non-food|nonfood| +E0349399|non-sister|nonsister| +E0349402|oculo-auriculo-vertebral|oculoauriculovertebral| +E0349402|oculo-auriculovertebral|oculoauriculovertebral| +E0349403|oculo-dento-digital|oculodentodigital| +E0349403|oculo-dentodigital|oculodentodigital| +E0349403|oculodento-digital|oculodentodigital| +E0349405|oculodento-osseous|oculo-dento-osseous| +E0349405|oculodentoosseous|oculo-dento-osseous| +E0349407|tricho-oculodermovertebral|tricho-oculo-dermo-vertebral| +E0349408|oculo-mandibular|oculomandibular| +E0349409|meningo-oculofacial|meningo-oculo-facial| +E0349425|pleuro-esophageal|pleuroesophageal| +E0349425|pleuro-oesophageal|pleuroesophageal| +E0349425|pleurooesophageal|pleuroesophageal| +E0349426|biliopleurobronchial|bilio-pleuro-bronchial| +E0349436|pharyngo-conjunctival|pharyngoconjunctival| +E0349450|velo-cardio-facial|velocardiofacial| +E0349452|ventriculo-infundibular|ventriculoinfundibular| +E0349453|ventriculoauricular|ventriculo-auricular| +E0349459|red whiskered|red-whiskered| +E0349460|white whiskered|white-whiskered| +E0349466|telerehabilitation|tele-rehabilitation| +E0349475|mesiopalatal|mesio-palatal| +E0349476|mesiodistally|mesio-distally| +E0349478|morphomolecular|morpho-molecular| +E0349479|morphogenotype|morpho-genotype| +E0349480|chemo-architecture|chemoarchitecture| +E0349481|myelolymphatic|myelo-lymphatic| +E0349484|ophthalmosphygmographic|ophthalmo-sphygmographic| +E0349485|ophthalmobrachial|ophthalmo-brachial| +E0349495|epididymotesticular tuberculosis|epididymo-testicular tuberculosis| +E0349511|villagisation|villagization| +E0349513|vice-admiral|vice admiral| +E0349576|trap door|trapdoor| +E0349595|triallist|trialist| +E0349623|terpolymerisation|terpolymerization| +E0349651|tectonise|tectonize| +E0349652|tectonisation|tectonization| +E0349662|rideable|ridable| +E0349663|rideability|ridability| +E0349677|rhematise|rhematize| +E0349678|rhematisation|rhematization| +E0349690|resole|resol| +E0349749|nodulise|nodulize| +E0349750|nodulisation|nodulization| +E0349763|orangerie|orangery| +E0349770|orchella|orchilla| +E0349771|organisable|organizable| +E0349772|organisability|organizability| +E0350160|grey-rumped|gray-rumped| +E0350307|post-infectious|postinfectious| +E0350354|post-laminectomy|postlaminectomy| +E0350371|Bancroftian|bancroftian| +E0350528|Pacchionian|pacchionian| +E0350530|intra-occipital|intraoccipital| +E0350651|olivo-cerebellar|olivocerebellar| +E0350688|white-spotted|whitespotted| +E0350698|immuno-electron|immunoelectron| +E0350705|gastro-omental|gastroomental| +E0350708|extra-intracranial|extraintracranial| +E0350709|extra-intracranial artery bypass|extraintracranial artery bypass| +E0350869|Scatophaga|Scathophaga| +E0351136|reticular fibre|reticular fiber| +E0351142|antihaemorrhagic factor|antihemorrhagic factor| +E0351193|Vitamin-A acid|Vitamin A acid| +E0351221|Viscogel|Visco-gel| +E0351223|sternoxiphoid|sterno-xiphoid| +E0351230|anti-idiotype antibody|antiidiotype antibody| +E0351236|haemoglobin S|hemoglobin S| +E0351251|haemoglobin F|hemoglobin F| +E0351266|albinism I|albinism 1| +E0351277|beta-adrenergic receptor|beta adrenergic receptor| +E0351292|Bence Jones proteinuria|Bence-Jones proteinuria| +E0351319|iron sulphate|iron sulfate| +E0351391|bacterial haemolysin|bacterial hemolysin| +E0351410|haemoglobin C|hemoglobin C| +E0351416|transcatheter arterial chemoembolisation|transcatheter arterial chemoembolization| +E0351448|zinc oxide-eugenol dental cement|zinc oxide eugenol dental cement| +E0351470|neutralising antibody|neutralizing antibody| +E0351486|transverse fibre|transverse fiber| +E0351490|cholera entero-toxin|cholera enterotoxin| +E0351491|cytochrome c-1|cytochrome C1| +E0351491|cytochrome c1|cytochrome C1| +E0351560|palmitoyl thioglycollate|palmitoyl thioglycolate| +E0351595|haemoglobin E|hemoglobin E| +E0351609|sodium sulfite|sodium sulphite| +E0351613|allyl isothiocyanate|allylisothiocyanate| +E0351634|haemoglobin D|hemoglobin D| +E0351636|prolylhydroxylase|prolyl hydroxylase| +E0351637|haemoglobin H|hemoglobin H| +E0351719|haemagglutinating virus|hemagglutinating virus| +E0351733|deoxygenated haemoglobin|deoxygenated hemoglobin| +E0351749|novocain|novocaine| +E0351831|lysylhydroxylase|lysyl hydroxylase| +E0351837|ma-huang|ma huang| +E0351840|postestablishment|post-establishment| +E0351950|problematisation|problematization| +E0351951|problematise|problematize| +E0352330|aortomitral|aorto-mitral| +E0352530|tubuloglandular|tubulo-glandular| +E0352531|tubulofollicular|tubulo-follicular| +E0352533|cervicosacral|cervico-sacral| +E0352534|cervicocraniofacial|cervico-craniofacial| +E0353882|Acremonium potronii|Acremonium potroni| +E0353888|Acremonium roseo-griseum|Acremonium roseogriseum| +E0353889|Cephalosporium roseo-griseum|Cephalosporium roseogriseum| +E0354074|allo-erotism|alloerotism| +E0354078|cost-effective|cost effective| +E0354081|normolipaemic|normolipemic| +E0354082|Roussy Levy syndrome|Roussy-Levy syndrome| +E0354083|Chiari Frommel syndrome|Chiari-Frommel syndrome| +E0354092|North|north| +E0354094|anaesthetic|anesthetic| +E0354097|Swiss type agammaglobulinaemia|Swiss type agammaglobulinemia| +E0354097|Swiss-type agammaglobulinaemia|Swiss type agammaglobulinemia| +E0354097|Swiss-type agammaglobulinemia|Swiss type agammaglobulinemia| +E0354098|non-pharmacological|nonpharmacological| +E0354100|hyphaemia|hyphemia| +E0354103|dermagraphic|dermographic| +E0354110|alkalisation|alkalization| +E0354117|haemotrophic|hemotropic| +E0354117|haemotropic|hemotropic| +E0354117|hemotrophic|hemotropic| +E0354121|sarcosine dithiocarbamate|sarcosinedithiocarbamate| +E0354127|rivinian|Rivinian| +E0354132|semeiologic|semiological| +E0400018|flow chart|flowchart| +E0400023|fluanxol|Fluanxol| +E0400026|flumazenil|Flumazenil| +E0400033|flumazepil|Flumazepil| +E0400037|fluridrazepam|Fluridrazepam| +E0400051|flufenazin|Flufenazin| +E0400053|flubiprofen|Flubiprofen| +E0400057|flurotyl|Flurotyl| +E0400066|formyl-tetra-hydrofolate|formyltetrahydrofolate| +E0400066|formyltetra-hydrofolate|formyltetrahydrofolate| +E0400072|lyophilisation|lyophilization| +E0400084|urofollitrophin|Urofollitrophin| +E0400087|furagin|Furagin| +E0400088|furazidin|Furazidin| +E0400096|forunculosis|furunculosis| +E0400098|fucithalmic|Fucithalmic| +E0400105|gabbromycin|Gabbromycin| +E0400110|galactose phosphate|galactosephosphate| +E0400114|gallamine|Gallamine| +E0400127|gelaspon|Gelaspon| +E0400130|geriocaine|Geriocaine| +E0400166|glucosyl ceramide|glucosylceramide| +E0400203|glycyrrhizia|glycyrrhiza| +E0400208|thioglucosoaurate|Thioglucosoaurate| +E0400214|gramaxin|Gramaxin| +E0400242|hamadryad|hamadryas| +E0400242|hamadrya|hamadryas| +E0400246|harmidine|Harmidine| +E0400261|hematoxiline|hematoxilin| +E0400267|haemobilia|hemobilia| +E0400285|heptachlor|Heptachlor| +E0400299|HEMEL|Hemel| +E0400299|hemel|Hemel| +E0400370|hymenolepiasis|hymenolepiosis| +E0400386|hyperbetalipoproteinaemia|hyperbetalipoproteinemia| +E0400387|hyperaemia|hyperemia| +E0400388|hypergammaglobulinaemia|hypergammaglobulinemia| +E0400389|hyperglycaemia|hyperglycemia| +E0400392|hyperpotassaemia|hyperpotassemia| +E0400394|dysbetalipoproteinaemia|dysbetalipoproteinemia| +E0400395|hyperprebetalipoproteinaemia|hyperprebetalipoproteinemia| +E0400396|hypernatraemia|hypernatremia| +E0400402|hyperprolactinaemia|hyperprolactinemia| +E0400406|hyperthyroxinaemia|hyperthyroxinemia| +E0400411|hypoesthaesia|hypoesthesia| +E0400412|hypobetalipoproteinaemia|hypobetalipoproteinemia| +E0400413|hypocalcaemia|hypocalcemia| +E0400419|hypokalaemia|hypokalemia| +E0400420|hypopotassaemia|hypopotassemia| +E0400421|hypolipoproteinaemia|hypolipoproteinemia| +E0400422|hypomenorrhoea|hypomenorrhea| +E0400423|hyponatraemia|hyponatremia| +E0400429|hypoproteinaemia|hypoproteinemia| +E0400430|hypoprothrombinaemia|hypoprothrombinemia| +E0400442|icthyosis|ichthyosis| +E0400447|iphosphamide|ifosfamide| +E0400448|isofosfamide|isophosphamide| +E0400470|vophaverdin|vofaverdin| +E0400470|wofaverdin|vofaverdin| +E0400511|iodamebiasis|iodamoebiasis| +E0400527|ortho iodohippurate|orthoiodohippurate| +E0400527|ortho-iodohippurate|orthoiodohippurate| +E0400532|kardiotrast|Kardiotrast| +E0400533|cardiotrast|Cardiotrast| +E0400554|iophendylate|iofendylate| +E0400586|dyflos|Dyflos| +E0400587|fluostigmine|fluorostigmine| +E0400604|methysoprinol|methisoprinol| +E0400604|metisoprinol|methisoprinol| +E0400665|ketotifene|ketotifen| +E0400665|ketotiphene|ketotifen| +E0400665|ketotiphen|ketotifen| +E0400678|Kirghizstan|Kyrgyzstan| +E0400678|Kirgizstan|Kyrgyzstan| +E0400738|leucine aryl amidase|leucinarylamidase| +E0400738|leucine arylamidase|leucinarylamidase| +E0400739|leukocytopheresis|leukocytapheresis| +E0400740|leukopheresis|leukapheresis| +E0400758|levo amphetamine|levoamphetamine| +E0400758|levo-amphetamine|levoamphetamine| +E0400763|laevopropoxyphene|levopropoxyphene| +E0400769|Gn-RH|GnRH| +E0400813|rye grass|ryegrass| +E0400825|loxapine succinate|loxapinsuccinate| +E0400841|Luxemborg|Luxembourg| +E0400841|Luxemburg|Luxembourg| +E0400848|lymphocytopheresis|lymphocytapheresis| +E0400875|sulphabenzamine|sulfabenzamine| +E0400943|kanpo|kampo| +E0400969|melittin|melitten| +E0400969|melliten|melitten| +E0400969|mellitin|melitten| +E0400977|menotrophin|menotropin| +E0400979|methyl partricin|methylpartricin| +E0400988|mepivicaine|mepivacaine| +E0400995|sarkolysine|sarkolysin| +E0401007|meta-ethics|metaethics| +E0401039|metandienone|methandienone| +E0401042|methylenesulphonate|methylenesulfonate| +E0401057|ferrihaemoglobin|ferrihemoglobin| +E0401072|methiothepine|methiothepin| +E0401072|metitepine|methiothepin| +E0401092|methoxy-dimethyltryptamine|methoxydimethyltryptamine| +E0401099|methyl mesilate|methylmesilate| +E0401103|methylparathion|methyl parathion| +E0401107|alpha methyldopa|alphamethyldopa| +E0401107|alpha-methyldopa|alphamethyldopa| +E0401134|Methylmonadaceae|Methylomonadaceae| +E0401138|Metipred|metipred| +E0401147|Alkiron|alkiron| +E0401180|peroxysome|peroxisome| +E0401202|midodrin|midodrine| +E0401207|leucaenine|leucenine| +E0401208|leucaenol|leucenol| +E0401214|miokamycin|miocamycine| +E0401214|myocamicin|miocamycine| +E0401215|Mirex|mirex| +E0401229|Moldavia|Moldova| +E0401231|molsidomin|molsidomine| +E0401266|prolyl leucyl glycinamide|prolylleucylglycinamide| +E0401266|prolyl-leucyl-glycinamide|prolylleucylglycinamide| +E0401272|keratan sulfaturia|keratansulfaturia| +E0401291|myohaemoglobinuria|myohemoglobinuria| +E0401321|naphthalenesulphonate|naphthalenesulfonate| +E0401344|mud puppy|mudpuppy| +E0401349|neomalthusianism|Neomalthusianism| +E0401382|nicarbazine|nicarbazin| +E0401405|korinfar|Korinfar| +E0401414|metilmercadon|methylmercadone| +E0401421|nicethamide|nizethamid| +E0401448|nitromiphene|nitromifene| +E0401449|nitroparaffine|nitroparaffin| +E0401460|nitroxynil|nitroxinil| +E0401468|nomifensin|nomifensine| +E0401472|nonachlazin|nonachlazine| +E0401472|nonakhlazin|nonachlazine| +E0402717|cholenzym|cholenzyme| +E0402719|choline sulfatase|cholinesulfatase| +E0402719|choline sulphatase|cholinesulfatase| +E0402719|choline-sulfatase|cholinesulfatase| +E0402719|choline-sulphatase|cholinesulfatase| +E0402719|cholinesulphatase|cholinesulfatase| +E0402722|cholyl-glycyl-tyrosine|cholylglycyltyrosine| +E0402993|cyano-met-myoglobin|cyanometmyoglobin| +E0403028|cyclomunin|cyclomunine| +E0403043|cycloprovera|CycloProvera| +E0403070|cysteinyl-glycine|cysteinylglycine| +E0403101|dansyl chloride|dansylchloride| +E0403105|dansyl-galactoside|dansylgalactoside| +E0403113|deptomycin|daptomycin| +E0403154|deglyco-bleomycin|deglycobleomycin| +E0403157|dehydro-sanol-tri|dehydrosanoltri| +E0403193|dimethyl vinylbutonate|demethylvinylbutonate| +E0403212|deoxyhaemerythrin|deoxyhemerythrin| +E0403213|deoxyhaemocyanin|deoxyhemocyanin| +E0403270|desmethyl ofloxacin|desmethylofloxacin| +E0403279|desulphoredoxin|desulforedoxin| +E0403280|desulphatohirudin|desulfatohirudin| +E0403288|deuterohaeme|deuteroheme| +E0403407|diethyl mercury|diethylmercury| +E0403409|diethylphenyl-phosphine|diethylphenylphosphine| +E0403429|difurfurylidene acetone|difurfurylideneacetone| +E0403485|diiodosulphophenylisothiocyanate|diiodosulfophenylisothiocyanate| +E0403580|diphenyl diselenide|diphenyldiselenide| +E0403626|disulphanilamide|disulfanilamide| +E0403774|eMix|EMix| +E0403786|endo-exonuclease|endoexonuclease| +E0403858|erythrotrophin|erythrotropin| +E0403871|etaphedrine|etafedrine| +E0403898|ethoxy-precocene|ethoxyprecocene| +E0403946|eupatoriopicrin|eupatoriopicrine| +E0403952|everninomicin|everninomycin| +E0404034|fenretinimide|fenretinide| +E0404052|ferri-exochelin|ferriexochelin| +E0404082|flakumin|flacumin| +E0404130|fluoro-gold|fluorogold| +E0404139|fluorphlogopite|fluorophlogopite| +E0404143|fluoxidine|fluoxydine| +E0404195|Frumil|frumil| +E0404201|fucolipide|fucolipid| +E0404205|fucosylglycolipide|fucosylglycolipid| +E0404240|fusafungine|fusafungin| +E0404248|gabaculin|gabaculine| +E0404262|galactosyl hydroxylysine|galactosylhydroxylysine| +E0404283|gastrotrophin|gastrotropin| +E0404310|geranyl acetone|geranylacetone| +E0404312|geranyl-geranyl-acetone|geranylgeranylacetone| +E0404345|globotetraosyl ceramide|globotetraosylceramide| +E0404352|glucitol-lysine|glucitollysine| +E0404363|glucosyl urea|glucosylurea| +E0404383|glyceroglucolipide|glyceroglucolipid| +E0404400|glycosyl phosphatidylinositol|glycosylphosphatidylinositol| +E0404400|glycosyl-phosphatidylinositol|glycosylphosphatidylinositol| +E0404443|grisin|grisein| +E0404443|grizin|grisein| +E0404514|haemichrome|hemichrome| +E0404650|hydrolink|HydroLink| +E0404678|hydroxymethyl methacrylate|hydroxymethylmethacrylate| +E0404684|hydroxypropyl cellulose|hydroxypropylcellulose| +E0404702|cyanosulphoxylate|cyanosulfoxylate| +E0404727|imanin|imanine| +E0404752|imuvert|ImuVert| +E0404795|insulinotrophin|insulinotropin| +E0404853|iridoid glucoside|iridoidglucoside| +E0404891|iso-imperatorin|isoimperatorin| +E0404898|iso-luminol|isoluminol| +E0404909|iso-metronidazole|isometronidazole| +E0404926|isopropyl methanesulfonate|isopropylmethanesulfonate| +E0404926|isopropyl methanesulphonate|isopropylmethanesulfonate| +E0404926|isopropylmethanesulphonate|isopropylmethanesulfonate| +E0404966|jing song ling|jingsongling| +E0405018|konjak|konjac| +E0405019|konjac mannan|konjak mannan| +E0405019|konjac-mannan|konjak mannan| +E0405019|konjak-mannan|konjak mannan| +E0405049|levodosin|laevodosin| +E0405096|leukocyanidin|leucocyanidin| +E0405097|leukoegresin|leucoegresin| +E0405098|leukokininase|leucokininase| +E0405099|leukomyosuppressin|leucomyosuppressin| +E0405101|leucyl-leucine|leucylleucine| +E0405103|leukemomycin|leukaemomycin| +E0405105|leucokininogen|leukokininogen| +E0405106|leucoregulin|leukoregulin| +E0405107|leucosialin|leukosialin| +E0405108|leucotrophin|leukotrophin| +E0405108|leucotropin|leukotrophin| +E0405108|leukotropin|leukotrophin| +E0405114|laevocabastine|levocabastine| +E0405115|laevomecol|levomecol| +E0405116|laevophacetoperane|levophacetoperane| +E0405117|laevoristatin|levoristatin| +E0405243|lysinopril|lisinopril| +E0405247|lyso-amidase|lysoamidase| +E0405255|lyso-phosphatidyl ethanolamine|lysophosphatidylethanolamine| +E0405255|lysophosphatidyl ethanolamine|lysophosphatidylethanolamine| +E0405288|maleyl-albumin|maleylalbumin| +E0405317|mannosulphan|mannosulfan| +E0405318|mannosyl retinyl phosphate|mannosylretinylphosphate| +E0405321|mannozime|mannozym| +E0405381|meizo-thrombin|meizothrombin| +E0405432|mesulphen|mesulfen| +E0405497|polysulphoethylaspartamide|polysulfoethylaspartamide| +E0405525|poly-pyrimidine tract-binding protein|polypyrimidine tract-binding protein| +E0405566|pro-dermorphin|prodermorphin| +E0405587|propanesulphonate|propanesulfonate| +E0405601|pro-pressophysin|propressophysin| +E0405606|propylenedimethanesulphonate|propylenedimethanesulfonate| +E0405623|pro-temp|protemp| +E0405630|protohaemochrome|protohemochrome| +E0405633|protrophin|protropin| +E0405681|pyridoxal oxime|pyridoxaloxime| +E0405689|pyrogallolsulphonephthalein|pyrogallolsulfonephthalein| +E0405777|respivax|respivaks| +E0405788|retro-thiorphan|retrothiorphan| +E0405812|rifabutine|rifabutin| +E0405825|riodoksol|riodoxol| +E0405829|ritosulphan|ritosulfan| +E0405900|saiphos|sayphos| +E0405900|sayfos|sayphos| +E0406018|solila nova|solilanova| +E0406019|soliusulphon|soliusulfon| +E0406022|solufiline|soluphylline| +E0406061|spy dust|spydust| +E0406094|sulphotransferase I|sulfotransferase I| +E0406099|sulphotransferase II|sulfotransferase II| +E0406101|sulphotransferase III|sulfotransferase III| +E0406127|sulfentanyl|sulfentanil| +E0406127|sulphentanil|sulfentanil| +E0406127|sulphentanyl|sulfentanil| +E0406131|sulphacarbamide|sulfacarbamide| +E0406132|sulphallate|sulfallate| +E0406133|sulphamethylphenazole|sulfamethylphenazole| +E0406134|sulphametrol|sulfametrol| +E0406135|sulphamidine|sulfamidine| +E0406136|sulphamidochrysoidin|sulfamidochrysoidin| +E0406137|sulphamoyldapsone|sulfamoyldapsone| +E0406138|sulphanilylsulphanilamide|sulfanilylsulfanilamide| +E0406139|sulphanol|sulfanol| +E0406140|sulphasan|sulfasan| +E0406142|sulphenazone|sulfenazone| +E0406143|sulphene|sulfene| +E0406144|sulphiram|sulfiram| +E0406145|sulphochlorantine|sulfochlorantine| +E0406146|sulphoglycopeptide|sulfoglycopeptide| +E0406147|sulpholithoglycocholine|sulfolithoglycocholine| +E0406148|sulphonol|sulfonol| +E0406149|sulphonolipid|sulfonolipid| +E0406150|sulphosuccinimidobiotin|sulfosuccinimidobiotin| +E0406151|sulphotyrosine|sulfotyrosine| +E0406155|sulphetrone|sulfetrone| +E0406158|sulusulphone|sulusulfone| +E0406227|tumor-associated foetal antigen|tumor-associated fetal antigen| +E0406227|tumour-associated fetal antigen|tumor-associated fetal antigen| +E0406227|tumour-associated foetal antigen|tumor-associated fetal antigen| +E0406263|tumour-associated transplantation antigen|tumor-associated transplantation antigen| +E0406286|t-BHQ|TBHQ| +E0406302|transitional cell carcinoma|transitional-cell carcinoma| +E0406355|tetraethylpyrophosphate|tetraethyl pyrophosphate| +E0406387|tetanohaemolysin|tetanohemolysin| +E0406397|tetraethyl-pyrazine|tetraethylpyrazine| +E0406418|tetramethylenedisulfotetramine|tetramethylenedisulphotetramine| +E0406493|thiamine propyl disulfide|thiaminepropyldisulfide| +E0406493|thiamine propyl disulphide|thiaminepropyldisulfide| +E0406493|thiamine propyldisulfide|thiaminepropyldisulfide| +E0406493|thiamine propyldisulphide|thiaminepropyldisulfide| +E0406493|thiaminepropyldisulphide|thiaminepropyldisulfide| +E0406497|thiazolsulphone|thiazolsulfone| +E0406511|thioldisulphide|thioldisulfide| +E0406533|tetrahydropteroylpentaglutamate|tetrahydropteroyl pentaglutamate| +E0406542|thymolsulphonphthalein|thymolsulfonphthalein| +E0406571|TimeLine|timeline| +E0406571|time line|timeline| +E0406605|tumour-cell migratory inhibition factor|tumor-cell migratory inhibition factor| +E0406620|tetramethylthiuram monosulphide|tetramethylthiuram monosulfide| +E0406664|tetrapropylenebenzyl sulphonate|tetrapropylenebenzyl sulfonate| +E0406666|tetraphenylporphine sulphonate|tetraphenylporphine sulfonate| +E0406670|triphenyl tin fluoride|triphenyltin fluoride| +E0406884|urosulphan|urosulfan| +E0407015|varicella zoster immune globulin|varicella-zoster immune globulin| +E0407102|zosterine|zosterin| +E0407114|back rub|backrub| +E0407128|hydrorachis|hydrorhachis| +E0407133|scleropericeratitis|scleroperikeratitis| +E0407166|abzym|abzyme| +E0407190|air bag|airbag| +E0407201|geranyl-geranylation|geranylgeranylation| +E0407251|viridenomycin|viridinomycin| +E0407265|procainamide ethobromide|procaine amide ethobromide| +E0407297|ciliary neuronotropic factor|ciliary neuronotrophic factor| +E0407299|sulphoraphane|sulforaphane| +E0407300|sulphorafan|sulforafan| +E0407312|desoxyadenosyltransferase|deoxyadenosyltransferase| +E0407323|glycosulphatase|glycosulfatase| +E0407347|desoxynucleotidase|deoxynucleotidase| +E0407354|dansyl-leucine|dansylleucine| +E0407408|methylenedioxybenzene|methylene dioxybenzene| +E0407453|erysulphoxide|erysulfoxide| +E0407454|erysulphone|erysulfone| +E0407591|sulphimidazole|sulfimidazole| +E0407620|heparin-binding neurotropic factor|heparin-binding neurotrophic factor| +E0407626|aphiG|AphiG| +E0407642|perfluoro-octane|perfluorooctane| +E0407650|haemoferritin|hemoferritin| +E0407673|ethyldehydroxy-sparsomycin|ethyldeshydroxysparsomycin| +E0407673|ethyldehydroxysparsomycin|ethyldeshydroxysparsomycin| +E0407673|ethyldeshydroxy-sparsomycin|ethyldeshydroxysparsomycin| +E0407690|sunphenone|sunphenon| +E0407709|methanethiosulphonate|methanethiosulfonate| +E0407762|dimethylsulphoniopropionate|dimethylsulfoniopropionate| +E0407787|norditrophin|Norditropin| +E0407787|norditropin|Norditropin| +E0407806|farnesyl transferase|farnesyltransferase| +E0407890|desoxymethyspergualin|deoxymethyspergualin| +E0407896|perfluorooctane sulphonic acid|perfluorooctane sulfonic acid| +E0407980|hyaena|hyena| +E0408027|anaesthesimeter|anesthesimeter| +E0408040|anomaloscopical|anomaloscopic| +E0408044|applanometrical|applanometric| +E0408048|arteriometrical|arteriometric| +E0408054|arthroscopical|arthroscopic| +E0408071|bed rail|bedrail| +E0408081|capnometrical|capnometric| +E0408089|cardiointegraphical|cardiointegraphic| +E0408118|chronomyometrical|chronomyometric| +E0408131|compimetrical|compimetric| +E0408142|cryometrical|cryometric| +E0408151|cystometrical|cystometric| +E0408174|dilatometrical|dilatometric| +E0408177|diopsimetrical|diopsimetric| +E0408181|diplopiometrical|diplopiometric| +E0408211|eikonometrical|eikonometric| +E0408217|electrobasographical|electrobasographic| +E0408222|electrogastrographical|electrogastrographic| +E0408228|electrogoniometrical|electrogoniometric| +E0408232|electromanometrical|electromanometric| +E0408245|encephalographical|encephalographic| +E0408255|entoptoscopical|entoptoscopic| +E0408260|ektacytometrical|ektacytometric| +E0408263|filtrometrical|filtrometric| +E0408265|aesthesiometer|esthesiometer| +E0408266|aesthesiometrical|esthesiometric| +E0408266|aesthesiometric|esthesiometric| +E0408266|esthesiometrical|esthesiometric| +E0408267|aesthesiometrically|esthesiometrically| +E0408274|fenestrometrical|fenestrometric| +E0408276|foetascope|fetascope| +E0408277|foetascopic|fetascopic| +E0408278|foetascopically|fetascopically| +E0408280|haemoconcentrator|hemoconcentrator| +E0408283|haemotachometer|hemotachometer| +E0408287|fluorimetric|fluorometric| +E0408290|fluorophotometrical|fluorophotometric| +E0408294|fundoscope|funduscope| +E0408304|gastrographical|gastrographic| +E0408323|haemacytometer|hemacytometer| +E0408324|haemacytometric|hemacytometric| +E0408325|haemacytometrically|hemacytometrically| +E0408326|haematofluorometer|hematofluorometer| +E0408327|haematofluorometric|hematofluorometric| +E0408328|haematofluorometrically|hematofluorometrically| +E0408329|haemoglobinometer|hemoglobinometer| +E0408330|haemoglobinometric|hemoglobinometric| +E0408331|haemoglobinometrically|hemoglobinometrically| +E0408332|haemodetoxifier|hemodetoxifier| +E0408333|haemoximeter|hemoximeter| +E0408337|haemoximetric|hemoximetric| +E0408352|kinaesthesiometer|kinesthesiometer| +E0408353|kinaesthesiometrical|kinesthesiometric| +E0408353|kinaesthesiometric|kinesthesiometric| +E0408353|kinesthesiometrical|kinesthesiometric| +E0408354|kinaesthesiometrically|kinesthesiometrically| +E0408384|micropipet|micropipette| +E0408438|ophthalmoleucoscope|ophthalmoleukoscope| +E0408439|ophthalmoleucoscopic|ophthalmoleukoscopic| +E0408440|ophthalmoleucoscopically|ophthalmoleukoscopically| +E0408626|rhinomanometrical|rhinomanometric| +E0408644|sedimentometrical|sedimentometric| +E0408660|bronchospirometrical|bronchospirometric| +E0408679|synchroniser|synchronizer| +E0408809|pharyngo-laryngectomy|pharyngolaryngectomy| +E0408831|uvulo-palato-pharyngoplasty|uvulopalatopharyngoplasty| +E0408834|oesophagorrhaphy|esophagorrhaphy| +E0408839|oesophagogastropexy|esophagogastropexy| +E0408869|pancreatico-cysto-gastrostomy|pancreaticocystogastrostomy| +E0408880|uretero-calicostomy|ureterocalicostomy| +E0408913|cryoleukotomy|cryoleucotomy| +E0408938|icce|ICCE| +E0408953|haemorrhagometry|hemorrhagometry| +E0408958|hyperbasaemia|hyperbasemia| +E0408993|montmorillonite|montmorrillonite| +E0408998|Endo R|ENDOR| +E0408998|endo R|ENDOR| +E0409004|antihyperuricaemic|antihyperuricemic| +E0409005|antihyperuricaemic|antihyperuricemic| +E0409008|Madura|Madoera| +E0409052|pre-menopause|premenopause| +E0409055|post-menopause|postmenopause| +E0409068|caulimo-virus|caulimovirus| +E0409069|como-virus|comovirus| +E0409079|Haemachatus|Hemachatus| +E0409121|enoxaparine|enoxaparin| +E0409130|haemorheology|hemorheology| +E0409130|haemorrheology|hemorheology| +E0409130|hemorrheology|hemorheology| +E0409158|capripox virus|capripoxvirus| +E0409159|leporipox virus|leporipoxvirus| +E0409173|neurotheceoma|neurothekeoma| +E0409173|neurothecoma|neurothekeoma| +E0409177|dimethylbusulphan|dimethylbusulfan| +E0409204|ethoxysclerol|aethoxysclerol| +E0409229|polysulphated glycosaminoglycan|polysulfated glycosaminoglycan| +E0409239|O-ATP|oATP| +E0409240|oligophosphoglyceroyl-ATP|oligophosphoglycerol-ATP| +E0409274|phosphoadenylylsulphatase|phosphoadenylylsulfatase| +E0409298|desethyloxybutynin|deethyloxybutynin| +E0409346|lactosorb|LactoSorb| +E0409383|Fresubin|fresubin| +E0409496|colorectal-associated growth factor|colorectum-associated growth factor| +E0409526|oncoscint|OncoScint| +E0409568|laevopraid|levopraid| +E0409569|laevosulpiride|levosulpiride| +E0409582|neupogen|Neupogen| +E0409649|cerato-ulmin|ceratoulmin| +E0409659|butenyl isothiocyanate|butenylisothiocyanate| +E0409692|phthalocyaninetetrasulphonate|phthalocyaninetetrasulfonate| +E0409719|beta cellulin|betacellulin| +E0409719|beta-cellulin|betacellulin| +E0409735|dehydroleukodin|dehydroleucodin| +E0409736|dehydroleukodine|dehydroleucodine| +E0409776|gonadotrophin surge-attenuating factor|gonadotropin surge-attenuating factor| +E0409905|Molgramostim|molgramostim| +E0409923|immunocorticotrophin|immunocorticotropin| +E0410027|hyperhistidinaemia|hyperhistidinemia| +E0410041|hydrocalix|hydrocalyx| +E0410045|bed wetting|bedwetting| +E0410045|bed-wetting|bedwetting| +E0410065|haemodialysate|hemodialyzate| +E0410065|haemodialyzate|hemodialyzate| +E0410065|hemodialysate|hemodialyzate| +E0410095|aegobronchophony|egobronchophony| +E0410117|hidromiosis|hidromeiosis| +E0410118|goose-flesh|gooseflesh| +E0410124|atopomenorrhoea|atopomenorrhea| +E0410133|absent-mindedness|absentmindedness| +E0410135|absent-minded|absentminded| +E0410165|pre-syncope|presyncope| +E0410166|palinaesthesia|palinesthesia| +E0410168|aphememaesthesia|aphememesthesia| +E0410189|dopy|dopey| +E0410241|microhaematuria|microhematuria| +E0410244|hyperdefaecation|hyperdefecation| +E0410245|hyperdefaecate|hyperdefecate| +E0410258|hypogeusaesthesia|hypogeusesthesia| +E0410273|dyslipidaemia|dyslipidemia| +E0410276|ion exchange chromatography|ion-exchange chromatography| +E0410312|Auto PEEP|AutoPEEP| +E0410312|Auto-PEEP|AutoPEEP| +E0410312|auto PEEP|AutoPEEP| +E0410312|auto-PEEP|AutoPEEP| +E0410312|autoPEEP|AutoPEEP| +E0410316|disease-modifying anti-rheumatic drug|disease-modifying antirheumatic drug| +E0410367|dimethylsulphide|dimethylsulfide| +E0410394|skelaxin|Skelaxin| +E0410395|Batrafen|batrafen| +E0410412|phloroglucindimethylaether|phloroglucindimethylether| +E0410424|deoxyfructosylserotonin|desoxyfructosylserotonin| +E0410445|AICAR transformylase|AICARTFase| +E0410446|aminoimidazolecarboxamide ribonucleotide transformylase|aminoimidazole carboxamide ribonucleotide transformylase| +E0410471|epithalamin|epithalamine| +E0410517|Leustatin|leustatin| +E0410544|Accupril|accupril| +E0410642|isorhyncophylline|isorhynchophylline| +E0410649|Maxaquin|maxaquin| +E0410689|neutrexin|NeuTrexin| +E0410745|diheptyl diselenide|diheptyldiselenide| +E0410749|sulphenosine|sulfenosine| +E0410781|enterohaemolysin|enterohemolysin| +E0410842|NF-AT protein|NFAT protein| +E0410845|vinleukinol|vinleucinol| +E0410863|diaspirin-cross-linked haemoglobin|diaspirin-cross-linked hemoglobin| +E0410865|AAPF-CMK|AAPFcmk| +E0410905|caltrophin|caltropin| +E0410956|valaciclovir|valacyclovir| +E0410961|trypsin carboxypeptidase peptid inhibitor|trypsin carboxypeptidase peptide inhibitor| +E0410982|foetal lung cytostatic protein|fetal lung cytostatic protein| +E0411000|pig leucocyte cysteine proteinase inhibitor|pig leukocyte cysteine proteinase inhibitor| +E0411050|thymolymphotrophin|thymolymphotropin| +E0411135|Replens|replens| +E0411220|epifisan|epiphysan| +E0411220|epifizan|epiphysan| +E0411220|epiphisan|epiphysan| +E0411220|epiphyzan|epiphysan| +E0411230|tumour-derived adhesion factor|tumor-derived adhesion factor| +E0411245|decarboxyethoxyloratadine|descarboxyethoxyloratadine| +E0411273|flavohaemoprotein|flavohemoprotein| +E0411337|Rejuvex|rejuvex| +E0411355|dansyl proline|dansylproline| +E0411368|Titer Max|TiterMax| +E0411377|trimethylsilyl methanol|trimethylsilylmethanol| +E0411383|poly(tetramethylene oxide)|polytetramethylene oxide| +E0411445|urinaid|UrinAid| +E0411931|Cumopyran|cumopyran| +E0411932|Cumopyrin|cumopyrin| +E0412642|bio-control|biocontrol| +E0412657|laevofloxacin|levofloxacin| +E0412660|festschrift|Festschrift| +E0412668|leucostasis|leukostasis| +E0412675|moulting|molting| +E0412681|Shiatzu|Shiatsu| +E0412681|shiatsu|Shiatsu| +E0412681|shiatzu|Shiatsu| +E0412683|no observed effect level|no-observed-effect level| +E0412685|no observed adverse effect level|no-observed-adverse-effect level| +E0412697|diazobenzenesulphonate|diazobenzenesulfonate| +E0412699|estrogynedron|oestrogynaedron| +E0412701|pyridoxinyl glyoxylate|pyridoxinylglyoxylate| +E0412706|perfluoroctylbromide|perfluorooctylbromide| +E0412706|perfluorooctyl bromide|perfluorooctylbromide| +E0412712|dimethyl terephthalate|dimethylterephthalate| +E0412713|methyl cellosolve|methylcellosolve| +E0412714|methyl isothiocyanate|methylisothiocyanate| +E0412720|glyceryl monooleate|glycerylmonooleate| +E0412721|imidazolidinyl urea|imidazolidinylurea| +E0412725|bromophenacyl bromide|bromophenacylbromide| +E0412731|ethyl chloroformate|ethylchloroformate| +E0412732|cumyl hydroperoxide|cumylhydroperoxide| +E0412737|methyl isocyanate|methylisocyanate| +E0412738|nitrosyl haemoglobin|nitrosylhemoglobin| +E0412738|nitrosyl hemoglobin|nitrosylhemoglobin| +E0412738|nitrosylhaemoglobin|nitrosylhemoglobin| +E0412739|PL-AC|PLAC| +E0412743|phenyl diguanide|phenyldiguanide| +E0412750|ethyl carbitol|ethylcarbitol| +E0412752|dioleyl phosphate|dioleylphosphate| +E0412757|diethyl sulfate|diethylsulfate| +E0412757|diethyl sulphate|diethylsulfate| +E0412757|diethylsulphate|diethylsulfate| +E0412771|retinyl phosphate|retinylphosphate| +E0412774|phenacyl bromide|phenacylbromide| +E0412776|divinyl sulfide|divinylsulfide| +E0412776|divinyl sulphide|divinylsulfide| +E0412776|divinylsulphide|divinylsulfide| +E0412780|PNP-GalNAc|pNPGalNAc| +E0412782|PNP-GlcNAc|pNPGlcNAc| +E0412784|pirimiphos methyl|pirimiphosmethyl| +E0412786|carboxymethyl dextran|carboxymethyldextran| +E0412787|diethyl maleate|diethylmaleate| +E0412788|ethyl acetimidate|ethylacetimidate| +E0412803|ro-neet|roneet| +E0412805|oxycobalt myoglobin|oxycobaltmyoglobin| +E0412807|acetyl adenylate|acetyladenylate| +E0412808|ethylbutyl thiourea|ethylbutylthiourea| +E0412811|dihydro-DIDS|dihydroDIDS| +E0412813|octyl glucoside|octylglucoside| +E0412816|creatine amidinohydrolase|creatineamidinohydrolase| +E0412817|goniopora toxin|gonioporatoxin| +E0412822|Azeptin|azeptin| +E0412825|dimethyl disulfide|dimethyldisulfide| +E0412825|dimethyl disulphide|dimethyldisulfide| +E0412825|dimethyldisulphide|dimethyldisulfide| +E0412831|perioglas|PerioGlas| +E0412835|sulfhydryl oxidase|sulphydryloxidase| +E0412835|sulfhydryloxidase|sulphydryloxidase| +E0412835|sulphydryl oxidase|sulphydryloxidase| +E0412836|acetyl ethyl tetramethyl tetralin|acetylethyltetramethyltetralin| +E0412836|acetyl ethyltetramethyltetralin|acetylethyltetramethyltetralin| +E0412842|apo J|apoJ| +E0412845|apo D|apoD| +E0412854|dibutyl phenylphosphate|dibutylphenylphosphate| +E0412863|Olbetam|olbetam| +E0412864|hexamethylene glycol|hexamethyleneglycol| +E0412867|dansyl hydrazine|dansylhydrazine| +E0412871|lauryl sulfate|laurylsulfate| +E0412871|lauryl sulphate|laurylsulfate| +E0412871|laurylsulphate|laurylsulfate| +E0412872|co-amoxiclav|coamoxiclav| +E0412873|presomatotrophin|presomatotropin| +E0412880|methoxy pectin|methoxypectin| +E0412892|leukodelphinidin|leucodelphinidin| +E0412893|leukoefdin|leucoefdin| +E0412894|leukoephdine|leucoephdine| +E0412895|leucoephdin|leukoephdin| +E0412901|fructose lysine|fructoselysine| +E0412903|fructose glycine|fructoseglycine| +E0412906|Se-HCAT|SeHCAT| +E0412917|indoxyl phosphate|indoxylphosphate| +E0412918|mannosyl phosphatidylinositol|mannosylphosphatidylinositol| +E0412920|lauryldimethyl betaine|lauryldimethylbetaine| +E0412924|benzyl thiocyanate|benzylthiocyanate| +E0412940|VMO-I|VMOI| +E0412945|ascorbyl monostearate|ascorbylmonostearate| +E0412950|mutan synthetase|mutansynthetase| +E0412956|phosphoglycerol transferase|phosphoglyceroltransferase| +E0412959|dicumyl peroxide|dicumylperoxide| +E0412978|5,9-diMe-DBC|DiMeDBC| +E0412982|fapyade|FapyAde| +E0412992|vero toxin|verotoxin| +E0412996|SC RNA|SCRNA| +E0413001|pentaglycosyl ceramide|pentaglycosylceramide| +E0413004|pro-ANF|proANF| +E0413009|LPLRF-amide|LPLRFamide| +E0413011|F-ara-AMP|FaraAMP| +E0413019|PV-IZT|PVIZT| +E0413023|desoxybouvardin|deoxybouvardin| +E0413026|monocytoangiotrophin|monocytoangiotropin| +E0413030|aluminum tetrasulphophthalocyanine|aluminum tetrasulfophthalocyanine| +E0413031|aluminum trisulphonatophthalocyanine|aluminum trisulfonatophthalocyanine| +E0413037|cyclopentenyl cytosine|cyclopentenylcytosine| +E0413040|hexahydro-sila-difenidol|hexahydrosiladiphenidol| +E0413040|hexahydro-sila-diphenidol|hexahydrosiladiphenidol| +E0413040|hexahydrosiladifenidol|hexahydrosiladiphenidol| +E0413041|docosahexenoylcarnitine|docosahexaenoylcarnitine| +E0413045|Lamictal|lamictal| +E0413046|Lamiktal|lamiktal| +E0413056|polyisobutyl cyanoacrylate|polyisobutylcyanoacrylate| +E0413057|acetyl acetonate|acetylacetonate| +E0413058|desacetyl cephapirin|desacetylcephapirin| +E0413060|NF-III|NFIII| +E0413062|emodin anthrone|emodinanthrone| +E0413067|pro-GnRH|proGnRH| +E0413068|pro-gonadotrophin-releasing hormone|pro-gonadotropin-releasing hormone| +E0413073|methyl hesperidin|methylhesperidin| +E0413075|ethyl maltol|ethylmaltol| +E0413083|isophorone diamine|isophoronediamine| +E0413084|propylene chlorohydrin|propylenechlorohydrin| +E0413094|cyclohexyl methylphosphonofluoridate|cyclohexylmethylphosphonofluoridate| +E0413096|benzyl selenocyanate|benzylselenocyanate| +E0413106|phosphatidyl inositol dimannoside|phosphatidylinositoldimannoside| +E0413106|phosphatidylinositol dimannoside|phosphatidylinositoldimannoside| +E0413144|dansyllyso-PAF|dansyllysoPAF| +E0413148|monobenzyl toluene|monobenzyltoluene| +E0413170|hexahydro-difenidol|hexahydrodiphenidol| +E0413170|hexahydro-diphenidol|hexahydrodiphenidol| +E0413170|hexahydrodifenidol|hexahydrodiphenidol| +E0413219|benzoylglycyl phenyllactate|benzoylglycylphenyllactate| +E0413230|pyrene glyoxal|pyreneglyoxal| +E0413231|alpha-SSR|SSRalpha| +E0413234|NetOPC|Net-OPC| +E0413239|topa quinone|topaquinone| +E0413258|hnRNP-I|hnRNPI| +E0413283|Helio Progress|Helioprogress| +E0413283|Helio progress|Helioprogress| +E0413283|helioprogress|Helioprogress| +E0413288|PPAR-beta|PPARbeta| +E0413291|dimethyl mercury|dimethylmercury| +E0413292|rufloxacin sulfoxide|rufloxacinsulfoxide| +E0413292|rufloxacin sulphoxide|rufloxacinsulfoxide| +E0413292|rufloxacinsulphoxide|rufloxacinsulfoxide| +E0413299|H-B-VAX|HBVax| +E0413299|HB-VAX|HBVax| +E0413307|triphenyl bismuth|triphenylbismuth| +E0413310|monomaleimido gold|monomaleimidogold| +E0413321|gonadotrophin surge-inhibiting factor|gonadotropin surge-inhibiting factor| +E0413335|beta-TrCP|betaTrCP| +E0413337|alpha-TTP|alphaTTP| +E0413365|pro-HGF|proHGF| +E0413367|undecyl sulfate|undecylsulfate| +E0413367|undecyl sulphate|undecylsulfate| +E0413367|undecylsulphate|undecylsulfate| +E0413378|diisopropyl sulfate|diisopropylsulfate| +E0413378|diisopropyl sulphate|diisopropylsulfate| +E0413378|diisopropylsulphate|diisopropylsulfate| +E0413379|zeta PKC|zetaPKC| +E0413384|tosyl chymotrypsin|tosylchymotrypsin| +E0413480|butanethiosulphonate|butanethiosulfonate| +E0413488|RPTP-sigma|RPTPsigma| +E0413501|cholyl-glycylamido-fluorescein|cholylglycylamidofluorescein| +E0413542|trimethyl carotenoporphyrin|trimethylcarotenoporphyrin| +E0413543|trimethoxy carotenoporphyrin|trimethoxycarotenoporphyrin| +E0413546|hexadecyl phosphoserine|hexadecylphosphoserine| +E0413559|poly(decamethylene) oxide|polydecamethylene oxide| +E0413563|poly(octamethylene oxide)|polyoctamethylene oxide| +E0413576|arylsulphate sulphotransferase|arylsulfate sulfotransferase| +E0413629|XLalpha(s)|XLalphas| +E0413639|retarDENT|RetarDENT| +E0413684|vinyl ethyl methacrylate|vinylethylmethacrylate| +E0413685|rapicide|RapiCide| +E0413741|desulphofuscidin|desulfofuscidin| +E0413742|desulphorubidin|desulforubidin| +E0413773|reClot|ReClot| +E0413794|glucosyl sphingosine|glucosylsphingosine| +E0413820|lumenHance|LumenHance| +E0413820|lumenhance|LumenHance| +E0413844|haemocytin|hemocytin| +E0413906|farnesyl thiotriazole|farnesylthiotriazole| +E0413981|methanethiosulphonate ethylammonium|methanethiosulfonate ethylammonium| +E0413983|fertiLight|FertiLight| +E0413983|fertilight|FertiLight| +E0413989|sulphinemycin|sulfinemycin| +E0413999|desoxytrehalose|deoxytrehalose| +E0414005|saizen|Saizen| +E0414910|pentosan polysulphate sodium|pentosan polysulfate sodium| +E0414925|Stepa|STEPA| +E0414959|Orbenin-DC|Orbenin D.C.| +E0414972|Depo-Medrone|depo-medrone| +E0414981|Fumar|fumar| +E0415048|meclocycline sulphosalicylate|meclocycline sulfosalicylate| +E0415055|phentolamine methanesulphonate|phentolamine methanesulfonate| +E0415087|indinavir sulphate|indinavir sulfate| +E0415106|sulphacetamide sodium|sulfacetamide sodium| +E0415678|Darvon N|Darvon-N| +E0415847|depressurise|depressurize| +E0415848|depressurisation|depressurization| +E0415853|desensitised|desensitized| +E0415855|desulphate|desulfate| +E0415856|desynchronise|desynchronize| +E0415892|Louis A. Duhring|Louis Adolphus Duhring| +E0415892|Louis Duhring|Louis Adolphus Duhring| +E0415897|editorialise|editorialize| +E0415898|editorialisation|editorialization| +E0415899|editorialiser|editorializer| +E0415907|electrodialyse|electrodialyze| +E0415917|epimerise|epimerize| +E0415919|epoxidise|epoxidize| +E0415920|epoxidisation|epoxidization| +E0415928|euthanatise|euthanatize| +E0415930|fantasise|fantasize| +E0415931|feminise|feminize| +E0415932|fictionalise|fictionalize| +E0415933|fictionalisation|fictionalization| +E0415935|firefighting|fire fighting| +E0415943|Alexander Fleming|Sir Alexander Fleming| +E0415946|focalise|focalize| +E0415947|focalisation|focalization| +E0415951|formalinise|formalinize| +E0415952|formalinisation|formalinization| +E0415955|ganglionectomise|ganglionectomize| +E0415957|gastrectomise|gastrectomize| +E0415961|glomectomise|glomectomize| +E0415967|haemoagglutinate|hemoagglutinate| +E0415968|haemoagglutination|hemoagglutination| +E0415969|haemodialyse|hemodialyze| +E0415969|haemodialyze|hemodialyze| +E0415969|hemodialyse|hemodialyze| +E0415970|haemodilute|hemodilute| +E0415978|hemispherectomise|hemispherectomize| +E0415979|haemoperfuse|hemoperfuse| +E0415991|hypersensitise|hypersensitize| +E0415992|hypersensitisation|hypersensitization| +E0415997|hypertransfusable|hypertransfusible| +E0416003|hypomineralise|hypomineralize| +E0416004|hypomineralisable|hypomineralizable| +E0416005|hypomineraliser|hypomineralizer| +E0416009|impacter|impactor| +E0416011|initialise|initialize| +E0416012|initialisation|initialization| +E0416013|insolubilise|insolubilize| +E0416014|insolubilisation|insolubilization| +E0416026|interiorise|interiorize| +E0416027|interiorisation|interiorization| +E0416030|isoimmunise|isoimmunize| +E0416031|isomerise|isomerize| +E0416035|jejunectomise|jejunectomize| +E0416040|labyrinthectomise|labyrinthectomize| +E0416041|laminectomise|laminectomize| +E0416044|laparotomise|laparotomize| +E0416049|life-saving|lifesaving| +E0416050|life-saving|lifesaving| +E0416052|lipectomise|lipectomize| +E0416055|lobectomise|lobectomize| +E0416058|lymphadenectomise|lymphadenectomize| +E0416059|lypophilise|lypophilize| +E0416060|lypophilisation|lypophilization| +E0416061|lypophiliser|lypophilizer| +E0416076|mastectomise|mastectomize| +E0416077|medullectomise|medullectomize| +E0416078|melanise|melanize| +E0416089|microcomputerise|microcomputerize| +E0416090|microcomputerisation|microcomputerization| +E0416091|microcomputerisable|microcomputerizable| +E0416105|midsized|midsize| +E0416124|moisturise|moisturize| +E0416125|moisturiser|moisturizer| +E0416141|functionalise|functionalize| +E0416142|functionalisation|functionalization| +E0416147|aetiopathogenesis|etiopathogenesis| +E0416149|haemopoiesis|hemopoiesis| +E0416158|pre-dialysis|predialysis| +E0416210|haemophagocytosis|hemophagocytosis| +E0416234|semisynthesise|semisynthesize| +E0416252|haemoblastosis|hemoblastosis| +E0416277|non-ionic|nonionic| +E0416278|strategical|strategic| +E0416305|entero-hepatic|enterohepatic| +E0416307|aminolaevulinic|aminolevulinic| +E0416322|bacteraemic|bacteremic| +E0416322|bacteriemic|bacteremic| +E0416326|hyperinsulinaemic|hyperinsulinemic| +E0416330|kinematical|kinematic| +E0416344|non pathogenic|nonpathogenic| +E0416344|non-pathogenic|nonpathogenic| +E0416346|subaortal|subaortic| +E0416350|electrographical|electrographic| +E0416367|nontumourigenic|nontumorigenic| +E0416370|amperometrical|amperometric| +E0416372|aetiopathogenetic|etiopathogenetic| +E0416374|ursodesoxycholic|ursodeoxycholic| +E0416379|duodeno-gastric|duodenogastric| +E0416380|erythroleukaemic|erythroleukemic| +E0416381|hypoxaemic|hypoxemic| +E0416398|preischaemic|preischemic| +E0416404|hypertriglyceridaemic|hypertriglyceridemic| +E0416405|piezo electric|piezoelectric| +E0416405|piezoelectrical|piezoelectric| +E0416410|rheologic|rheological| +E0416414|non-pharmacologically|nonpharmacologically| +E0416418|biometrical|biometric| +E0416423|non-atopic|nonatopic| +E0416424|radioimmunologic|radioimmunological| +E0416425|stereologic|stereological| +E0416437|voltammetrical|voltammetric| +E0416452|hepato-splenic|hepatosplenic| +E0416466|nonimmunological|nonimmunologic| +E0416501|endotoxaemic|endotoxemic| +E0416516|haemophagocytic|hemophagocytic| +E0416522|non-haematologic|nonhematologic| +E0416522|non-hematologic|nonhematologic| +E0416522|nonhaematologic|nonhematologic| +E0416523|nonhaematologically|nonhematologically| +E0416528|haemorheologic|hemorheologic| +E0416529|haemorheologically|hemorheologically| +E0416536|hydroperoxy eicosatetraenoic|hydroperoxyeicosatetraenoic| +E0416548|nonhaemorrhagic|nonhemorrhagic| +E0416550|pretherapeutical|pretherapeutic| +E0416557|exocyclical|exocyclic| +E0416560|microradiographical|microradiographic| +E0416570|diarrhoeic|diarrheic| +E0416571|hypergonadotrophic|hypergonadotropic| +E0416578|hyponatraemic|hyponatremic| +E0416585|hyposmotic|hypoosmotic| +E0416589|semiallogeneic|semiallogenic| +E0416593|cineangiographical|cineangiographic| +E0416598|nonhaemolytic|nonhemolytic| +E0416600|anesthaesiological|anesthesiological| +E0416600|anesthaesiologic|anesthesiological| +E0416600|anesthesiologic|anesthesiological| +E0416601|anesthaesiologically|anesthesiologically| +E0416604|ethanesulphonic|ethanesulfonic| +E0416606|methyl mercuric|methylmercuric| +E0416609|amphotrophic|amphotropic| +E0416619|nonhaematopoietic|nonhematopoietic| +E0416623|polycythaemic|polycythemic| +E0416638|abdomino-pelvic|abdominopelvic| +E0416641|biomicroscopical|biomicroscopic| +E0416647|euvolaemic|euvolemic| +E0416664|non hepatic|nonhepatic| +E0416664|non-hepatic|nonhepatic| +E0416668|thrombasthaenic|thrombasthenic| +E0416674|microfluorimetric|microfluorometric| +E0416678|non-isotopic|nonisotopic| +E0416695|gastroenterological|gastroenterologic| +E0416699|hyperlipoproteinaemic|hyperlipoproteinemic| +E0416714|stereophotogrammetrical|stereophotogrammetric| +E0416721|nonleukaemic|nonleukemic| +E0416723|prothoracal|prothoracic| +E0416727|hypogonadotropic|hypogonadotrophic| +E0416730|non genetic|nongenetic| +E0416730|non-genetic|nongenetic| +E0416732|normoprolactinaemic|normoprolactinemic| +E0416733|otoacoustical|otoacoustic| +E0416739|foetotoxic|fetotoxic| +E0416740|foetotoxicity|fetotoxicity| +E0416749|propanesulphonic|propanesulfonic| +E0416752|trinitrobenzenesulphonic|trinitrobenzenesulfonic| +E0416753|analbuminaemic|analbuminemic| +E0416756|cyto-fluorimetric|cytofluorimetric| +E0416776|retrochiasmic|retrochiasmatic| +E0416794|physiotherapeutical|physiotherapeutic| +E0416805|anti-orthostatic|antiorthostatic| +E0416810|histoenzymic|histoenzymatic| +E0416814|keto-isocaproic|ketoisocaproic| +E0416820|paradigmatical|paradigmatic| +E0416832|intra-amnionic|intra-amniotic| +E0416832|intraamnionic|intra-amniotic| +E0416832|intraamniotic|intra-amniotic| +E0416833|intra-amnionically|intra-amniotically| +E0416833|intraamnionically|intra-amniotically| +E0416833|intraamniotically|intra-amniotically| +E0416857|extra-cytoplasmic|extracytoplasmic| +E0416859|gastro-entero-pancreatic|gastroenteropancreatic| +E0416859|gastro-enteropancreatic|gastroenteropancreatic| +E0416863|immunomorphological|immunomorphologic| +E0416867|microanalytical|microanalytic| +E0416873|paedodontic|pedodontic| +E0416878|retro-hepatic|retrohepatic| +E0416881|trifluoromethanesulphonic|trifluoromethanesulfonic| +E0416882|axisymmetric|axisymmetrical| +E0416887|galactosaemic|galactosemic| +E0416890|hyperammonaemic|hyperammonemic| +E0416891|hyperbilirubinaemic|hyperbilirubinemic| +E0416897|nonuraemic|nonuremic| +E0416908|aorto-enteric|aortoenteric| +E0416930|anatomopathologic|anatomopathological| +E0416931|andrological|andrologic| +E0416933|calcaemic|calcemic| +E0416939|gerontologic|gerontological| +E0416946|nephrologic|nephrological| +E0416948|neurobiologic|neurobiological| +E0416952|normolipidaemic|normolipidemic| +E0416959|stereometrical|stereometric| +E0416964|Ayurvedic|ayurvedic| +E0416966|bilio-pancreatic|biliopancreatic| +E0416969|electroneurographical|electroneurographic| +E0416971|entero-pancreatic|enteropancreatic| +E0416974|nonpyrexiogenic|nonpyrogenic| +E0416974|nonpyrogenetic|nonpyrogenic| +E0416978|opto-electronic|optoelectronic| +E0416979|opto-electronically|optoelectronically| +E0416982|piperazineethanesulphonic|piperazineethanesulfonic| +E0416986|thrombohaemorrhagic|thrombohemorrhagic| +E0417011|nonstenosal|nonstenotic| +E0417012|non-thrombogenic|nonthrombogenic| +E0417035|iconographical|iconographic| +E0417037|infra-hepatic|infrahepatic| +E0417039|microfilaraemic|microfilaremic| +E0417042|non parasitic|nonparasitic| +E0417042|non-parasitic|nonparasitic| +E0417042|nonparasitical|nonparasitic| +E0417043|phoniatrical|phoniatric| +E0417050|postischaemically|postischemically| +E0417056|subanaesthetic|subanesthetic| +E0417059|traumatologic|traumatological| +E0417075|dismyelopoietic|dysmyelopoietic| +E0417080|hypoinsulinaemic|hypoinsulinemic| +E0417082|immunobiologic|immunobiological| +E0417091|nonbacteraemic|nonbacteremic| +E0417092|non-epileptic|nonepileptic| +E0417102|agammaglobulinaemic|agammaglobulinemic| +E0417109|electropharmacologic|electropharmacological| +E0417112|haemodialytic|hemodialytic| +E0417118|lipaemic|lipemic| +E0417126|phenomenologic|phenomenological| +E0417139|chloromercuriphenylsulphonic|chloromercuriphenylsulfonic| +E0417144|enzymologic|enzymological| +E0417145|extra-thymic|extrathymic| +E0417158|immunohaematological|immunohematologic| +E0417158|immunohaematologic|immunohematologic| +E0417158|immunohematological|immunohematologic| +E0417162|nonanaemic|nonanemic| +E0417164|nonphysiologic|nonphysiological| +E0417166|oligomenorrhoeic|oligomenorrheic| +E0417178|angiologic|angiological| +E0417185|biomechanic|biomechanical| +E0417196|electromicroscopical|electromicroscopic| +E0417204|granulo-monocytic|granulomonocytic| +E0417209|hypolipaemic|hypolipemic| +E0417210|lymphohaematopoietic|lymphohematopoietic| +E0417215|neuro-otological|neurotologic| +E0417215|neuro-otologic|neurotologic| +E0417215|neurotological|neurotologic| +E0417216|non cyclic|noncyclic| +E0417216|non-cyclic|noncyclic| +E0417216|noncyclical|noncyclic| +E0417218|non-narcotic|nonnarcotic| +E0417247|clinicoradiologic|clinicoradiological| +E0417250|dimethyl maleic|dimethylmaleic| +E0417254|haemorrheologic|hemorrheologic| +E0417255|haemorrheologically|hemorrheologically| +E0417259|hypogammaglobulinaemic|hypogammaglobulinemic| +E0417268|methoxy mandelic|methoxymandelic| +E0417269|microanatomical|microanatomic| +E0417276|neurographical|neurographic| +E0417279|nonmetrical|nonmetric| +E0417282|pathohistological|pathohistologic| +E0417291|stereomicroscopical|stereomicroscopic| +E0417293|subperiodical|subperiodic| +E0417299|Synoptic|synoptic| +E0417299|synoptical|synoptic| +E0417306|alphanumerical|alphanumeric| +E0417313|chloromercuribenzenesulphonic|chloromercuribenzenesulfonic| +E0417316|chronometrical|chronometric| +E0417321|equianalgetic|equianalgesic| +E0417330|immunohistopathological|immunohistopathologic| +E0417338|nongynecologic|nongynecological| +E0417344|paraprothetic|paraprosthetic| +E0417369|bio-mimetic|biomimetic| +E0417371|carcinological|carcinologic| +E0417372|cholesterolaemic|cholesterolemic| +E0417378|epizootiological|epizootiologic| +E0417388|hypotriglyceridaemic|hypotriglyceridemic| +E0417394|lymphohaemopoietic|lymphohemopoietic| +E0417397|naphthalenesulphonic|naphthalenesulfonic| +E0417402|papulo-necrotic|papulonecrotic| +E0417427|benzenesulphonic|benzenesulfonic| +E0417428|biopharmaceutic|biopharmaceutical| +E0417429|bromo cyclic|bromocyclic| +E0417429|bromo-cyclic|bromocyclic| +E0417443|isovolaemic|isovolemic| +E0417453|neuroelectrical|neuroelectric| +E0417455|nontherapeutical|nontherapeutic| +E0417457|paraproteinaemic|paraproteinemic| +E0417473|afibrinogenaemic|afibrinogenemic| +E0417496|glomerulo-nephritic|glomerulonephritic| +E0417503|hyperphenylalaninaemic|hyperphenylalaninemic| +E0417506|immunotoxicological|immunotoxicologic| +E0417524|anaesthesist|anesthesist| +E0417529|marxist|Marxist| +E0417530|marxist|Marxist| +E0417537|leninist|Leninist| +E0417538|leninist|Leninist| +E0417560|sulphation|sulfation| +E0417570|immunolocalisation|immunolocalization| +E0417571|immunolocalise|immunolocalize| +E0417574|aromatise|aromatize| +E0417575|arborisation|arborization| +E0417576|arborise|arborize| +E0417577|colocalisation|colocalization| +E0417578|haemosorption|hemosorption| +E0417584|radiosensitisation|radiosensitization| +E0417605|post-transplantation|posttransplantation| +E0417616|alloimmunise|alloimmunize| +E0417642|mid-gestation|midgestation| +E0417643|mid-gestation|midgestation| +E0417654|immunoneutralisation|immunoneutralization| +E0417655|immunoneutralise|immunoneutralize| +E0417661|pre-ejection|preejection| +E0417662|regionalisation|regionalization| +E0417663|regionalise|regionalize| +E0417672|re-epithelialisation|reepithelialization| +E0417672|re-epithelialization|reepithelialization| +E0417672|reepithelialisation|reepithelialization| +E0417680|over-stimulation|overstimulation| +E0417688|polyploidisation|polyploidization| +E0417689|decidualisation|decidualization| +E0417690|decidualise|decidualize| +E0417691|re-exploration|reexploration| +E0417692|re-explore|reexplore| +E0417714|postimmunisation|postimmunization| +E0417718|chemoembolisation|chemoembolization| +E0417734|labilisation|labilization| +E0417735|labilise|labilize| +E0417738|actualisation|actualization| +E0417739|actualise|actualize| +E0417764|dispensarisation|dispensarization| +E0417765|dispensarise|dispensarize| +E0417781|copolymerisation|copolymerization| +E0417782|copolymerise|copolymerize| +E0417791|crossreact|cross-react| +E0417792|crossreactive|cross-reactive| +E0417793|cross reactivity|cross-reactivity| +E0417793|crossreactivity|cross-reactivity| +E0417811|microembolisation|microembolization| +E0417812|microembolise|microembolize| +E0417826|recolonisation|recolonization| +E0417833|haemocoagulation|hemocoagulation| +E0417834|haemocoagulate|hemocoagulate| +E0417839|postfertilisation|postfertilization| +E0417850|formalisation|formalization| +E0417861|verbalisation|verbalization| +E0417862|circularisation|circularization| +E0417864|desulphation|desulfation| +E0417882|curarisation|curarization| +E0417883|curarise|curarize| +E0417889|microcatheterisation|microcatheterization| +E0417890|microcatheterise|microcatheterize| +E0417895|autoimmunisation|autoimmunization| +E0417896|autoimmunise|autoimmunize| +E0417899|capillarisation|capillarization| +E0417910|malignisation|malignization| +E0417911|malignise|malignize| +E0417914|radiolocalise|radiolocalize| +E0417919|spinalisation|spinalization| +E0417933|mm Hg|mmHg| +E0417948|BMAX|Bmax| +E0417961|tumour growth|tumor growth| +E0417963|toxic goitre|toxic goiter| +E0417973|acad|Acad| +E0417974|Natl Acad Sci|Natl. Acad. Sci.| +E0417996|in vitro fertilisation|in vitro fertilization| +E0418035|receptor operated channel|receptor-operated channel| +E0418037|Apr.|Apr| +E0418042|amoebic prevalence rate|amebic prevalence rate| +E0418049|evening primrose oil|evening primrose-oil| +E0418051|inservice|in-service| +E0418059|non significant|nonsignificant| +E0418059|non-significant|nonsignificant| +E0418070|opiate analgaesia|opiate analgesia| +E0418074|methyl-arginine|methylarginine| +E0418078|ceruleus|caeruleus| +E0418078|coeruleus|caeruleus| +E0418079|ceruleus|caeruleus| +E0418079|coeruleus|caeruleus| +E0418080|locus ceruleus|locus caeruleus| +E0418080|locus coeruleus|locus caeruleus| +E0418084|automated physiological profile|automated physiologic profile| +E0418128|myo-metrial|myometrial| +E0418135|tmax|Tmax| +E0418140|co-transport|cotransport| +E0418141|co-transporter|cotransporter| +E0418152|NOE|nOe| +E0418171|Rec A|recA| +E0418171|RecA|recA| +E0418182|Tx|tx| +E0418182|T|tx| +E0418183|T|Tx| +E0418209|PX|Px| +E0418230|respiratory centre|respiratory center| +E0418243|anthelminthic|anthelmintic| +E0418243|antihelmintic|anthelmintic| +E0418264|Dx|dx| +E0418298|carnitine palmitoyltransferase|carnitine palmityl transferase| +E0418309|down regulation|downregulation| +E0418309|down-regulation|downregulation| +E0418333|Caco 2 cell|Caco-2 cell| +E0418338|anti-retroviral|antiretroviral| +E0418347|immunolabelling|immunolabeling| +E0418348|TD|td| +E0418363|tumour dose|tumor dose| +E0418375|PCC|pcc| +E0418384|poison control center|Poison Control Center| +E0418422|leucocytosis-inducing factor|leukocytosis-inducing factor| +E0418423|leucocyte inhibitory factor|leukocyte inhibitory factor| +E0418424|leucaemia-inhibiting factor|leukemia-inhibiting factor| +E0418424|leucemia-inhibiting factor|leukemia-inhibiting factor| +E0418424|leukaemia-inhibiting factor|leukemia-inhibiting factor| +E0418440|breast tumour|breast tumor| +E0418441|brain tumour|brain tumor| +E0418444|bladder tumour|bladder tumor| +E0418446|oxy|OXY| +E0418449|madin-darby canine kidney cell|Madin-Darby canine kidney cell| +E0418455|com|commun| +E0418495|sRBC|SRBC| +E0418509|RG|Rg| +E0418514|anti-double-stranded DNA|anti-dsDNA| +E0418579|inter-rater|interrater| +E0418605|post-transplantation|posttransplantation| +E0418614|SSB|ssb| +E0418616|DNA-SSB|DNA-ssb| +E0418632|non uniform|nonuniform| +E0418632|non-uniform|nonuniform| +E0418637|pancreas after kidney transplant|pancreas-after-kidney transplant| +E0418643|thiobarbituric acid-reactive substance|thiobarbituric acid reactive substance| +E0418678|total hydroxylapatite|total hydroxyapatite| +E0418680|Treponema haemagglutination|Treponema hemagglutination| +E0418691|morpho-functional|morphofunctional| +E0418693|post-exercise|postexercise| +E0418694|post-exercise|postexercise| +E0418697|in-center haemodialysis|in-center hemodialysis| +E0418732|peptidyl prolyl isomerase|peptidylprolyl isomerase| +E0418732|peptidyl-prolyl isomerase|peptidylprolyl isomerase| +E0418739|obsessive-compulsive disorder|obsessive compulsive disorder| +E0418745|Nissl-stain|Nissl stain| +E0418746|Nissl-stain|Nissl stain| +E0418762|Methylococcus capsulatus (Bath)|Methylococcus capsulatus Bath| +E0418763|interpretative|interpretive| +E0418764|interpretatively|interpretively| +E0418766|acetoxymethylester|acetoxymethyl ester| +E0418769|pfu|PFU| +E0418770|pock forming unit|pock-forming unit| +E0418771|plaque forming unit|plaque-forming unit| +E0418780|Haemoglobin Hopkins-II|Hemoglobin Hopkins-II| +E0418782|Haemoglobin Hopkins-I|Hemoglobin Hopkins-I| +E0418826|paediatric nurse practitioner|pediatric nurse practitioner| +E0418830|Haemophilus influenzae type B|Haemophilus influenzae type b| +E0418837|Dulbecco's modified Eagle medium|Dulbecco's modified Eagle's medium| +E0418894|MacIntosh|Macintosh| +E0418898|r-HuEPO|rHuEPO| +E0418926|circum-sporozoite|circumsporozoite| +E0418929|cryo electron microscopy|cryoelectron microscopy| +E0418929|cryo-electron microscopy|cryoelectron microscopy| +E0418930|cryo electron micrograph|cryoelectron micrograph| +E0418930|cryo-electron micrograph|cryoelectron micrograph| +E0418931|cryo microscopy|cryomicroscopy| +E0418931|cryo-microscopy|cryomicroscopy| +E0418932|cryo transmission electron microscopy|cryotransmission electron microscopy| +E0418932|cryo-transmission electron microscopy|cryotransmission electron microscopy| +E0418933|cryo section|cryosection| +E0418933|cryo-section|cryosection| +E0418938|t-butyl hydroperoxide|t-butylhydroperoxide| +E0418974|CCR protein|ccr protein| +E0418975|cold circadian rhythm-RNA binding protein|cold-circadian rhythm-RNA binding protein| +E0418982|buthionine sulphoximine|buthionine sulfoximine| +E0419018|cranio-maxillo-facial|cranio-maxillofacial| +E0419022|craniorachischisis|cranio-rachischisis| +E0419044|VV|vv| +E0419048|tumour glycoprotein assay|tumor glycoprotein assay| +E0419050|total gonadotrophin activity|total gonadotropin activity| +E0419062|hepato-coeliac|hepato-celiac| +E0419066|endothelial-leucocyte adhesion molecule|endothelial-leukocyte adhesion molecule| +E0419068|endothelial-leucocyte adhesion molecule-1|endothelial-leukocyte adhesion molecule-1| +E0419075|ecto-domain|ectodomain| +E0419124|oestradiol cyclopentane propionate|estradiol cyclopentane propionate| +E0419132|sub-domain|subdomain| +E0419133|FMRF-amide|FMRFamide| +E0419135|FMRFamide-like|FMRFamidelike| +E0419136|phenylalanyl-methionyl-arginyl-phenylalaninamide-like|phenylalanyl-methionyl-arginyl-phenylalaninamidelike| +E0419144|third|thirdly| +E0419153|heminested|hemi-nested| +E0419154|hemi-epiphyseal|hemiepiphyseal| +E0419155|hemiatrophy|hemi-atrophy| +E0419156|hemimethylated|hemi-methylated| +E0419162|hemipelvis|hemi-pelvis| +E0419204|femorofemoral|femoro-femoral| +E0419209|diisopropylfluorophosphate|diisopropyl fluorophosphate| +E0419216|semi-thin|semithin| +E0419233|haemophagocytic lymphohistiocytosis|hemophagocytic lymphohistiocytosis| +E0419236|post-pill amenorrhea|postpill amenorrhea| +E0419236|post-pill amenorrhoea|postpill amenorrhea| +E0419236|postpill amenorrhoea|postpill amenorrhea| +E0419236|postpill-amenorrhea|postpill amenorrhea| +E0419236|postpill-amenorrhoea|postpill amenorrhea| +E0419237|postpartum amenorrhoea|postpartum amenorrhea| +E0419241|post-pill|postpill| +E0419242|post-pill|postpill| +E0419254|mono-exponential|monoexponential| +E0419257|QoL|QOL| +E0419267|haemagglutinating encephalomyelitis virus|hemagglutinating encephalomyelitis virus| +E0419287|Meth-A|Meth A| +E0419292|bio-available|bioavailable| +E0419303|pentosephosphate pathway|pentose phosphate pathway| +E0419321|holoenzyme|holo-enzyme| +E0419331|holo human chorionic gonadotrophin|holo human chorionic gonadotropin| +E0419350|high tech|high-tech| +E0419351|low tech|low-tech| +E0419356|nonimmunological contact urticaria|nonimmunologic contact urticaria| +E0419367|Kenner-foecal medium|Kenner-fecal medium| +E0419368|KF|Kf| +E0419375|GPIb|GpIb| +E0419420|non-stimulating|nonstimulating| +E0419428|nortryptyline|nortriptyline| +E0419435|ALD|Ald| +E0419442|membrane impermeant|membrane-impermeant| +E0419443|membrane impermeance|membrane-impermeance| +E0419456|ileorectal|ileo-rectal| +E0419470|thiol-ester|thiolester| +E0419471|thiol-ester|thiolester| +E0419477|high molecular mass kininogen|high-molecular-mass kininogen| +E0419479|heel to knee|heel-to-knee| +E0419480|heel to knee|heel-to-knee| +E0419481|hand-to-knee|hand to knee| +E0419482|hand-to-knee|hand to knee| +E0419483|heat killed|heat-killed| +E0419484|non-existent|nonexistent| +E0419485|non-lymphoid|nonlymphoid| +E0419494|inter-generational|intergenerational| +E0419507|extra-cardiac|extracardiac| +E0419509|international normalised ratio|international normalized ratio| +E0419510|cranio-mandibular|craniomandibular| +E0419513|enterochromaffinlike|enterochromaffin-like| +E0419521|pre-dialysis|predialysis| +E0419523|Cronbach alpha coefficient|Cronbach's alpha coefficient| +E0419524|post-contrast|postcontrast| +E0419525|post-contrast|postcontrast| +E0419540|oxygen carbon sulphide|oxygen carbon sulfide| +E0419547|constitutional aplastic anaemia|constitutional aplastic anemia| +E0419552|carotid audio frequency analysis|carotid audiofrequency analysis| +E0419552|carotid audio-frequency analysis|carotid audiofrequency analysis| +E0419560|moderate aplastic anaemia|moderate aplastic anemia| +E0419569|PrV|PRV| +E0419572|motor-evoked potential|motor evoked potential| +E0419593|nonspecific aortic arteritis|nonspecific aortoarteritis| +E0419598|naphthalene acetic acid|naphthaleneacetic acid| +E0419602|non-isotopically|nonisotopically| +E0419609|principal neutralising determinant|principal neutralizing determinant| +E0419638|acid detergent fibre|acid detergent fiber| +E0419639|actin depolymerising factor|actin depolymerizing factor| +E0419648|naevocellular naevus|nevocellular nevus| +E0419650|low-molecular-weight|low molecular weight| +E0419659|TID|tid| +E0419668|vasoocclusion|vaso-occlusion| +E0419672|vasoocclusive|vaso-occlusive| +E0419680|dorsovegetal|dorso-vegetal| +E0419681|dorsotemporal|dorso-temporal| +E0419682|dorsolateral|dorso-lateral| +E0419683|dorsoventral|dorso-ventral| +E0419684|dorsocaudal|dorso-caudal| +E0419690|dorsoventrally|dorso-ventrally| +E0419692|co-treatment|cotreatment| +E0419693|co-treat|cotreat| +E0419714|non-parenchymal|nonparenchymal| +E0419719|haematopoietic progenitor transplant|hematopoietic progenitor transplant| +E0419720|hypothromboplastinaemia|hypothromboplastinemia| +E0419722|house-tree-person test|House-Tree-Person test| +E0419725|mono-functional|monofunctional| +E0419773|soret region|Soret region| +E0419796|non-seminomatous|nonseminomatous| +E0419810|breath-holding|breathholding| +E0419827|para-spinal|paraspinal| +E0419847|automated computerised axial tomography|automated computerized axial tomography| +E0419851|non-fucosylated|nonfucosylated| +E0419854|tracheo-oesophageal|tracheo-esophageal| +E0419854|tracheoesophageal|tracheo-esophageal| +E0419854|tracheooesophageal|tracheo-esophageal| +E0419855|tracheo-oesophageal fistula|tracheo-esophageal fistula| +E0419856|tracheo bronchial|tracheo-bronchial| +E0419863|lysine-vasopressin|lysine vasopressin| +E0419871|fetomaternal|feto-maternal| +E0419871|foeto-maternal|feto-maternal| +E0419871|foetomaternal|feto-maternal| +E0419872|foeto-foetal|feto-fetal| +E0419873|fetoplacental|feto-placental| +E0419873|foeto-placental|feto-placental| +E0419873|foetoplacental|feto-placental| +E0419874|alpha feto-protein|alpha feto protein| +E0419874|alpha fetoprotein|alpha feto protein| +E0419874|alpha foeto protein|alpha feto protein| +E0419874|alpha foeto-protein|alpha feto protein| +E0419874|alpha foetoprotein|alpha feto protein| +E0419874|alpha-feto-protein|alpha feto protein| +E0419874|alpha-fetoprotein|alpha feto protein| +E0419874|alpha-foeto-protein|alpha feto protein| +E0419874|alpha-foetoprotein|alpha feto protein| +E0419876|maternal serum alpha feto protein|maternal serum alpha feto-protein| +E0419876|maternal serum alpha foeto protein|maternal serum alpha feto-protein| +E0419876|maternal serum alpha foeto-protein|maternal serum alpha feto-protein| +E0419876|maternal serum alpha-feto-protein|maternal serum alpha feto-protein| +E0419876|maternal serum alpha-foeto-protein|maternal serum alpha feto-protein| +E0419877|non-receptor|nonreceptor| +E0419880|tubulointerstitial nephritis|tubulo-interstitial nephritis| +E0419881|tubulo-interstitial nephropathy|tubulointerstitial nephropathy| +E0419882|tubulo-vesicular|tubulovesicular| +E0419883|tubulo-papillary|tubulopapillary| +E0419884|tubulovillous|tubulo-villous| +E0419885|tubulofilamentous|tubulo-filamentous| +E0419886|tubuloglomerular|tubulo-glomerular| +E0419918|auto-regressive|autoregressive| +E0419920|dysplasminogenaemia|dysplasminogenemia| +E0419938|histostructurally|histo-structurally| +E0419939|histomorphometry|histo-morphometry| +E0419942|pregnancy induced hypertension|pregnancy-induced hypertension| +E0419944|periventricular-intraventricular haemorrhage|periventricular-intraventricular hemorrhage| +E0419947|wild type|wildtype| +E0419948|wild type|wildtype| +E0419965|high molecular weight|high-molecular-weight| +E0419974|oro-caecal|oro-cecal| +E0419974|oro-coecal|oro-cecal| +E0419974|orocaecal|oro-cecal| +E0419974|orocecal|oro-cecal| +E0419974|orocoecal|oro-cecal| +E0419976|orofacial|oro-facial| +E0419977|oropharynx|oro-pharynx| +E0419979|oro-oesophageal|oro-esophageal| +E0419980|orofaciodigital syndrome|oro-facio-digital syndrome| +E0419986|haemopoietic histocompatibility|hemopoietic histocompatibility| +E0419993|haemorrhagic hypotension|hemorrhagic hypotension| +E0419995|hepatic haemangioma|hepatic hemangioma| +E0419996|haematophagic histiocytosis|hemophagocytic histiocytosis| +E0419996|haemophagocytic histiocytosis|hemophagocytic histiocytosis| +E0419996|hematophagic histiocytosis|hemophagocytic histiocytosis| +E0419998|haemodialysis hypotension|hemodialysis hypotension| +E0419999|hereditary haemochromatosis|hereditary hemochromatosis| +E0420000|hypergastrinaemic hyperchlorhydria|hypergastrinemic hyperchlorhydria| +E0420004|healthy haemophiliac|healthy hemophiliac| +E0420009|Hamburger and Hamilton's stage|Hamburger and Hamilton stage| +E0420023|tec kinase|Tec kinase| +E0420028|cardiac pulmonary oedema|cardiac pulmonary edema| +E0420047|non-target|nontarget| +E0420051|micro-environmental|microenvironmental| +E0420061|beta fructofuranosidase|beta-fructofuranosidase| +E0420067|centromeric desoxyribonucleic acid|centromeric deoxyribonucleic acid| +E0420075|mucosal oesophageal cancer|mucosal esophageal cancer| +E0420077|conceptual metabolisable energy|conceptual metabolizable energy| +E0420090|transcatheter arterial embolisation|transcatheter arterial embolization| +E0420091|transarterial embolisation|transarterial embolization| +E0420107|cross sectionally|cross-sectionally| +E0420128|landrace|Landrace| +E0420131|single-particle tracking|single particle tracking| +E0420141|anti-phosphotyrosine|antiphosphotyrosine| +E0420143|HIV coinfected|HIV-coinfected| +E0420150|waist/hip ratio|waist-hip ratio| +E0420151|waist to hip ratio|waist-to-hip ratio| +E0420170|lower oesophageal contractility|lower esophageal contractility| +E0420175|very low birthweight infant|very low birth weight infant| +E0420175|very-low-birth-weight infant|very low birth weight infant| +E0420175|very-low-birthweight infant|very low birth weight infant| +E0420180|capillary refill time|capillary refilling time| +E0420182|cortisone-resistant thymocyte|cortisone resistant thymocyte| +E0420185|computerised renal tomography|computerized renal tomography| +E0420189|cathode ray tube|cathode-ray tube| +E0420191|CRT|Crt| +E0420207|ventriculoperitoneal|ventriculo-peritoneal| +E0420209|ventriculocoronary|ventriculo-coronary| +E0420212|ventriculovenous|ventriculo-venous| +E0420216|histo-cytological|histocytologic| +E0420216|histo-cytologic|histocytologic| +E0420216|histocytological|histocytologic| +E0420217|histo-cytologically|histocytologically| +E0420223|NAChR|nAChR| +E0420228|post-exercise ischaemia|postexercise ischemia| +E0420228|post-exercise ischemia|postexercise ischemia| +E0420228|postexercise ischaemia|postexercise ischemia| +E0420232|shar-pei|shar pei| +E0420235|abnormal illness behaviour|abnormal illness behavior| +E0420239|AIB|Aib| +E0420244|Quetelet's index|Quetelet index| +E0420251|MCAB|McAb| +E0420251|McAB|McAb| +E0420258|self-organising map|self-organizing map| +E0420262|haemoglobinuric bilious fever|hemoglobinuric bilious fever| +E0420272|stilbene disulphonate|stilbene disulfonate| +E0420283|foetal heart rate|fetal heart rate| +E0420296|non-pharmacologic|nonpharmacologic| +E0420315|antigen-neutralising capacity|antigen-neutralizing capacity| +E0420316|acid neutralisation capacity|acid neutralization capacity| +E0420333|dehydroepiandrosterone sulphate|dehydroepiandrosterone sulfate| +E0420334|isoquinolinesulphonamide|isoquinolinesulfonamide| +E0420356|Masson's tumour|Masson's tumor| +E0420365|phenyl-tert-butylnitrone|phenyl-tert-butyl nitrone| +E0420402|extended release|extended-release| +E0420405|pre-initiation|preinitiation| +E0420417|inter-chain|interchain| +E0420428|colour dilution alopecia|color dilution alopecia| +E0420429|congenital dyserythropoietic anaemia|congenital dyserythropoietic anemia| +E0420433|certified dental assistant|Certified Dental Assistant| +E0420440|cardio-protection|cardioprotection| +E0420447|M. avium intracellulare|M. avium-intracellulare| +E0420459|acid citrate dextrose|acid-citrate-dextrose| +E0420483|intra-membrane|intramembrane| +E0420488|sub-dermal|subdermal| +E0420494|meningo-basal|mediobasal| +E0420504|cystoid macular oedema|cystoid macular edema| +E0420517|hydrolysability|hydrolyzability| +E0420518|non-hydrolysable|non-hydrolyzable| +E0420518|nonhydrolysable|non-hydrolyzable| +E0420518|nonhydrolyzable|non-hydrolyzable| +E0420522|pre-immune|preimmune| +E0420526|non-desmosomal|nondesmosomal| +E0420558|rate pressure product|rate-pressure product| +E0420562|visuo-motor|visuomotor| +E0420571|afro|Afro| +E0420572|afro|Afro| +E0420589|Alma-Ata|Alma Ata| +E0420640|barb|Barb| +E0420641|barb|Barb| +E0420696|Capitol|capitol| +E0420700|carboxy terminus|carboxy-terminus| +E0420701|care taker|caretaker| +E0420701|care-taker|caretaker| +E0420731|CPU|cpu| +E0420742|cummin|cumin| +E0420750|Democrat|democrat| +E0420768|ear drum|eardrum| +E0420768|ear-drum|eardrum| +E0420785|Roux en Y|Roux-en-Y| +E0420828|flyer|flier| +E0420831|to and fro|to-and-fro| +E0420847|generalised estimating equation|generalized estimating equation| +E0420855|Grebe's syndrome|Grebe syndrome| +E0420870|sulphur hexafluoride|sulfur hexafluoride| +E0420881|infraoccluded|infra-occluded| +E0420908|Leghorn|leghorn| +E0420920|human herpes virus|human herpesvirus| +E0420920|human herpes-virus|human herpesvirus| +E0420921|HHV8|HHV-8| +E0420922|human herpes-virus 8|human herpes virus 8| +E0420922|human herpesvirus 8|human herpes virus 8| +E0420924|Kaposi's sarcoma-associated herpes virus|Kaposi's sarcoma-associated herpesvirus| +E0420924|Kaposi's sarcoma-associated herpes-virus|Kaposi's sarcoma-associated herpesvirus| +E0420924|Kaposi's-sarcoma-associated herpes-virus|Kaposi's sarcoma-associated herpesvirus| +E0420924|Kaposi's-sarcoma-associated herpesvirus|Kaposi's sarcoma-associated herpesvirus| +E0420926|HCQ|hcq| +E0420933|combined familial hyperlipidaemia|combined familial hyperlipidemia| +E0420936|Cfh|cfh| +E0420959|AIDS dementia complex|AIDS-dementia complex| +E0420984|food-borne intoxication|foodborne intoxication| +E0420985|food-borne disease|foodborne disease| +E0420996|soluble tumour necrosis factor receptor|soluble tumor necrosis factor receptor| +E0421004|microm|microM| +E0421012|dox|Dox| +E0421027|soluble tumour necrosis factor|soluble tumor necrosis factor| +E0421031|DNL|dnl| +E0421035|disseminated necrotising leucoencephalopathy|disseminated necrotizing leukoencephalopathy| +E0421035|disseminated necrotising leukoencephalopathy|disseminated necrotizing leukoencephalopathy| +E0421036|tumor-draining lymph node lymphocyte|tumor-draining lymphnode lymphocyte| +E0421036|tumour-draining lymph node lymphocyte|tumor-draining lymphnode lymphocyte| +E0421036|tumour-draining lymphnode lymphocyte|tumor-draining lymphnode lymphocyte| +E0421038|hepatic de novo lipogenesis|de novo hepatic lipogenesis| +E0421057|ovine corticotropin-releasing hormone|ovine corticotropin releasing hormone| +E0421070|VX|Vx| +E0421145|homoiothermal|homeothermal| +E0421145|homothermal|homeothermal| +E0421196|hyperestrinaemia|hyperestrinemia| +E0421200|hydromorphon|Hydromorphon| +E0421205|previa|praevia| +E0421210|puromycin N-acetyl transferase gene|puromycin acetyltransferase gene| +E0421210|puromycin N-acetyltransferase gene|puromycin acetyltransferase gene| +E0421211|puromycin N-acetyl transferase|puromycin acetyltransferase| +E0421211|puromycin N-acetyltransferase|puromycin acetyltransferase| +E0421216|hypoferraemic|hypoferremic| +E0421219|oestrous|estruous| +E0421234|pileated|piliated| +E0421238|skim milk|skim-milk| +E0421238|skimmilk|skim-milk| +E0421248|intra vitam|intravitam| +E0421248|intra-vitam|intravitam| +E0421251|humourism|humorism| +E0421257|MORT-1|Mort-1| +E0421260|pre-bereavement|prebereavement| +E0421261|pre-bereavement|prebereavement| +E0421278|haemorrhagic colitis|hemorrhagic colitis| +E0421279|haemoglobin concentration|hemoglobin concentration| +E0421286|non-small cell carcinoma|non-small-cell carcinoma| +E0421301|hypercholesteraemia|hypercholesteremia| +E0421302|hypercholesteraemic|hypercholesteremic| +E0421303|hyperferricaemia|hyperferricemia| +E0421305|hypocholesteraemia|hypocholesteremia| +E0421306|hypocholesteraemic|hypocholesteremic| +E0421318|idiopathetic steatorrhoea|idiopathetic steatorrhea| +E0421353|lateralis grey column|lateralis gray column| +E0421357|legitimise|legitimize| +E0421358|legitimisation|legitimization| +E0421360|leucocytal|leukocytal| +E0421361|laevorotary|levorotary| +E0421416|morpho-metrical|morphometrical| +E0421422|myo-electrical|myoelectrical| +E0421432|nephraemia|nephremia| +E0421487|otacariasis|otocariasis| +E0421489|out of doors|out-of-doors| +E0421498|pancreotropic|pancreatropic| +E0421535|phloridzinise|phloridzinize| +E0421542|physiological amenorrhoea|physiological amenorrhea| +E0421582|pykno epilepsy|pyknoepilepsy| +E0421582|pykno-epilepsy|pyknoepilepsy| +E0421592|chinacrine|chinacrin| +E0421686|mitre|miter| +E0421690|postimmunisation|postimmunization| +E0421695|problem-solving information|problem solving information| +E0421714|Leukonostoc|Leuconostoc| +E0421735|transmittible|transmittable| +E0421759|variolisation|variolization| +E0421762|vesico-colic|vesicocolic| +E0421776|somaesthetic|somesthetic| +E0421798|subarachnoidal haemorrhage|subarachnoidal hemorrhage| +E0421855|A-1|A1| +E0421870|mesmerisation|mesmerization| +E0421876|cross reaction|crossreaction| +E0421876|cross-reaction|crossreaction| +E0421882|crepe|crape| +E0421883|fistula-in-ano|fistula in ano| +E0421896|dexter|Dexter| +E0421912|non-emergency|nonemergency| +E0421914|Kirghiz Republic|Kirgiz Republic| +E0421917|Quillaia saponaria|Quillaja saponaria| +E0421918|Quillaia saponaria Molina|Quillaja saponaria Molina| +E0421918|Quillaja saponaria molina|Quillaja saponaria Molina| +E0421977|adreno-genital|adrenogenital| +E0421978|adreno-receptor|adrenoreceptor| +E0421979|alpha adreno-receptor|alpha-adrenoreceptor| +E0421979|alpha adrenoreceptor|alpha-adrenoreceptor| +E0421979|alpha-adreno-receptor|alpha-adrenoreceptor| +E0421980|beta adreno-receptor|beta-adrenoreceptor| +E0421980|beta adrenoreceptor|beta-adrenoreceptor| +E0421980|beta-adreno-receptor|beta-adrenoreceptor| +E0421981|adreno-renal|adrenorenal| +E0421982|adreno-gonadal|adrenogonadal| +E0422052|acetylphenyl-hydrazine|acetylphenyl hydrazine| +E0422086|Actinobacillus actinomycetem-comitans|Actinobacillus actinomycetem comitans| +E0422087|A. actinomycetem-comitans|A. actinomycetem comitans| +E0422116|adeno associated|adeno-associated| +E0422131|adenylyl cyclase|adenylylcyclase| +E0422135|ADK|AdK| +E0422135|Adk|AdK| +E0422144|adult-like|adultlike| +E0422146|A. aegypti|Ae. aegypti| +E0422151|age mate|agemate| +E0422151|age-mate|agemate| +E0422154|air gun|airgun| +E0422160|angel fish|angelfish| +E0422161|anti-gay|antigay| +E0422162|upper aero digestive tract|upper aero-digestive tract| +E0422162|upper aerodigestive tract|upper aero-digestive tract| +E0422163|aero-allergen|aeroallergen| +E0422171|etiopathogenetically|aetiopathogenetically| +E0422173|afterhyperpolarising|afterhyperpolarizing| +E0422222|Al-Ain|Al Ain| +E0422243|Aldo|ALDO| +E0422500|beta lysine mutase|beta-lysine mutase| +E0422585|ameboflagellate|amoeboflagellate| +E0422595|AMU|amu| +E0422601|amygdalo-hippocampus|amygdalohippocampus| +E0422602|amygdalo-cortical|amygdalocortical| +E0422603|amygdalo-hippocampectomy|amygdalohippocampectomy| +E0422604|amygdalo-hypothalamic|amygdalohypothalamic| +E0422621|anatomo-biological|anatomobiological| +E0422637|anergise|anergize| +E0422639|aneuploidisation|aneuploidization| +E0422663|anhydro ara C|anhydro-ara-C| +E0422701|anilinonaphthalene sulphonate|anilinonaphthalene sulfonate| +E0422718|annulo aortic ectasia|annulo-aortic ectasia| +E0422718|annuloaortic ectasia|annulo-aortic ectasia| +E0422719|annulo ventricular|annulo-ventricular| +E0422719|annuloventricular|annulo-ventricular| +E0422737|antennocerebral|antenno-cerebral| +E0422738|antennocerebral tract|antenno-cerebral tract| +E0422739|anterio-posterior|anterioposterior| +E0422741|antero-posteriorly|anteroposteriorly| +E0422742|antero-inferiorly|anteroinferiorly| +E0422743|antero-superiorly|anterosuperiorly| +E0422764|anti-adhesion|antiadhesion| +E0422765|anti-aggregatory|antiaggregatory| +E0422766|anti-algal|antialgal| +E0422767|anti-allodynic|antiallodynic| +E0422768|anti-arterial|antiarterial| +E0422769|anti-asthma|antiasthma| +E0422772|anti-calcitonin|anticalcitonin| +E0422773|anti-capsular|anticapsular| +E0422774|anti-cardiolipid|anticardiolipid| +E0422776|anti-cellular|anticellular| +E0422778|anti-cortisol|anticortisol| +E0422779|anti-cryptosporidial|anticryptosporidial| +E0422780|anti-dermatophyte|antidermatophyte| +E0422781|anti-dopamine|antidopamine| +E0422783|anti-elastase|antielastase| +E0422784|anti-elastase|antielastase| +E0422785|anti-endomysium|antiendomysium| +E0422786|anti-envelope|antienvelope| +E0422787|anti-factor|antifactor| +E0422787|antiFactor|antifactor| +E0422788|anti-factor Xa|antifactor Xa| +E0422788|antiFactor Xa|antifactor Xa| +E0422789|anti-factor IIa|antifactor IIa| +E0422789|antiFactor IIa|antifactor IIa| +E0422790|anti-factor VIII|antifactor VIII| +E0422790|antiFactor VIII|antifactor VIII| +E0422791|anti-factor VII|antifactor VII| +E0422791|antiFactor VII|antifactor VII| +E0422792|anti-factor V|antifactor V| +E0422792|antiFactor V|antifactor V| +E0422793|anti-factor IX|antifactor IX| +E0422793|antiFactor IX|antifactor IX| +E0422794|anti-fertility|antifertility| +E0422796|anti-flagellar|antiflagellar| +E0422797|antigenise|antigenize| +E0422798|antigenisation|antigenization| +E0422799|anti-genomic|antigenomic| +E0422800|anti-gliadin|antigliadin| +E0422801|anti-glucagon|antiglucagon| +E0422802|anti-glucagon|antiglucagon| +E0422803|anti-glycan|antiglycan| +E0422804|anti-gonadotrophin|antigonadotropin| +E0422804|anti-gonadotropin|antigonadotropin| +E0422804|antigonadotrophin|antigonadotropin| +E0422805|anti-gonadotrophin|antigonadotropin| +E0422805|anti-gonadotropin|antigonadotropin| +E0422805|antigonadotrophin|antigonadotropin| +E0422806|anti-gonadotrophin releasing hormone|antigonadotropin releasing hormone| +E0422806|anti-gonadotropin releasing hormone|antigonadotropin releasing hormone| +E0422806|antigonadotrophin releasing hormone|antigonadotropin releasing hormone| +E0422808|anti-haemagglutinin|antihemagglutinin| +E0422808|anti-hemagglutinin|antihemagglutinin| +E0422808|antihaemagglutinin|antihemagglutinin| +E0422809|anti-herpesviral|antiherpesviral| +E0422810|anti-histone|antihistone| +E0422811|anti-histone|antihistone| +E0422812|anti-influenza|antiinfluenza| +E0422813|antiinvasion|anti-invasion| +E0422814|anti-ischaemic|antiischemic| +E0422814|anti-ischemic|antiischemic| +E0422814|antiischaemic|antiischemic| +E0422815|anti-junction|antijunction| +E0422816|anti-Legionella|anti-legionella| +E0422816|antilegionella|anti-legionella| +E0422817|antileucoproteinase|antileukoproteinase| +E0422819|skin-derived antileucoproteinase|skin-derived antileukoproteinase| +E0422825|acute leucaemia protocol|acute leukemia protocol| +E0422825|acute leucemia protocol|acute leukemia protocol| +E0422825|acute leukaemia protocol|acute leukemia protocol| +E0422826|anti-ligand|antiligand| +E0422827|anti-lipopolysaccharide|antilipopolysaccharide| +E0422828|anti-lymphocyte|antilymphocyte| +E0422829|anti-lymphocyte|antilymphocyte| +E0422830|anti-mesometrial|antimesometrial| +E0422831|anti-microsomal|antimicrosomal| +E0422832|anti-migraine|antimigraine| +E0422833|anti-mitochondrial|antimitochondrial| +E0422834|anti-moesin|antimoesin| +E0422835|anti-murine|antimurine| +E0422837|antinitrotyrosine|anti-nitrotyrosine| +E0422838|anti-obsessional|antiobsessional| +E0422839|anti-oncogenic|antioncogenic| +E0422840|anti-osteoporotic|antiosteoporotic| +E0422841|anti-parent|antiparent| +E0422842|anti-pericentrin|antipericentrin| +E0422843|anti-peroxidase|antiperoxidase| +E0422844|anti-phosphatidic|antiphosphatidic| +E0422845|anti-phosphatidic acid|antiphosphatidic acid| +E0422846|anti-phosphatidylserine|antiphosphatidylserine| +E0422847|anti-platelet|antiplatelet| +E0422848|anti-Pneumocystis|antipneumocystis| +E0422849|anti-porcine|antiporcine| +E0422850|anti-progestin|antiprogestin| +E0422851|anti-promotional|antipromotional| +E0422852|anti-rabbit|antirabbit| +E0422853|anti-rat|antirat| +E0422854|anti-recombinant|antirecombinant| +E0422855|anti-renal|antirenal| +E0422856|anti-resorptive|antiresorptive| +E0422857|anti-ribosomal|antiribosomal| +E0422858|anti-rotational|antirotational| +E0422859|anti-shivering|antishivering| +E0422861|anti-succinic|antisuccinic| +E0422863|anti-therapeutic|antitherapeutic| +E0422864|anti-thrombolytic|antithrombolytic| +E0422865|anti-tobacco|antitobacco| +E0422866|anti-topoisomerase|antitopoisomerase| +E0422867|anti-tremor|antitremor| +E0422868|anti-vertigo|antivertigo| +E0422870|antro duodenal|antroduodenal| +E0422870|antro-duodenal|antroduodenal| +E0422878|aorto-popliteal|aortopopliteal| +E0422879|aorto-celiac|aortoceliac| +E0422879|aorto-coeliac|aortoceliac| +E0422879|aortocoeliac|aortoceliac| +E0422880|aorto-bifemoral|aortobifemoral| +E0422881|aorto-ilio-femoral|aortoiliofemoral| +E0422883|aorto-renal|aortorenal| +E0422884|aorto-ventricular|aortoventricular| +E0422889|aphidborne|aphid-borne| +E0422890|apico-posterior|apicoposterior| +E0422893|apodioldehydrase|apodiol dehydratase| +E0422895|apolipophorin-I|apolipophorin I| +E0422896|apolipophorin-II|apolipophorin II| +E0422897|apolipophorin-III|apolipophorin III| +E0422898|apo-obelin|apoobelin| +E0422944|archaeologically|archeologically| +E0422966|Arnt|ARNT| +E0422972|arterio-jugular|arteriojugular| +E0422973|arterio-enteric|arterioenteric| +E0422974|arterio-lymphatic|arteriolymphatic| +E0422975|arterio-occlusive|arterioocclusive| +E0422977|artero-venous|arterovenous| +E0422978|artero-arterial|arteroarterial| +E0422979|arterylike|artery-like| +E0422982|artefactual|artifactual| +E0422990|AANAT|AA-NAT| +E0423045|athero-occlusive|atheroocclusive| +E0423046|athero-thrombosis|atherothrombosis| +E0423047|athero-thrombogenesis|atherothrombogenesis| +E0423048|athero-thrombogenic|atherothrombogenic| +E0423051|atlantoaxial|atlanto-axial| +E0423054|atlanto-axial ankylosis|atlantoaxial ankylosis| +E0423055|atlantooccipital ankylosis|atlanto-occipital ankylosis| +E0423056|atlantooccipital instability|atlanto-occipital instability| +E0423057|atlantooccipital malformation|atlanto-occipital malformation| +E0423060|all-trans-retinoic acid|all-trans retinoic acid| +E0423162|auto-epitope|autoepitope| +E0423169|auto-immunological|autoimmunological| +E0423170|auto-immunologic|autoimmunologic| +E0423171|auto-inhibitory|autoinhibitory| +E0423173|autopolymerising|autopolymerizing| +E0423174|autopolymerised|autopolymerized| +E0423181|autosensitise|autosensitize| +E0423182|autosensitisation|autosensitization| +E0423192|avascularised|avascularized| +E0423231|axo-axonal|axoaxonal| +E0423232|axo-spinous|axospinous| +E0423235|axonin 1|axonin-1| +E0423236|axonin 2|axonin-2| +E0423248|post kala-azar|post-kala-azar| +E0423258|AZI|azi| +E0423357|bancroftian filarial chylocoele|bancroftian filarial chylocele| +E0423375|baro-sensitive|barosensitive| +E0423376|baro-sensitivity|barosensitivity| +E0423401|bis-diazotised benzidine|bis-diazotized benzidine| +E0423415|behaviourist|behaviorist| +E0423492|tBuBHQ|t-BuBHQ| +E0423586|beta blocker|betablocker| +E0423589|TGFbeta|TGF-beta| +E0423590|transforming growth factor beta|transforming growth factor-beta| +E0423592|beta glucanase|beta-glucanase| +E0423593|beta glucoside|beta-glucoside| +E0423613|Diamond-Blackfan anaemia|Diamond-Blackfan anemia| +E0423616|dolichos biflorus lectin|Dolichos biflorus lectin| +E0423629|bilio-bronchial|biliobronchial| +E0423637|bio-accumulator|bioaccumulator| +E0423638|bio-tolerant|biotolerant| +E0423640|bio-impedance analysis|bioimpedance analysis| +E0423641|bio-inert|bioinert| +E0423642|bio-adhesive|bioadhesive| +E0423643|bio-adhesive|bioadhesive| +E0423644|bio-antioxidant|bioantioxidant| +E0423645|bio-antioxidant|bioantioxidant| +E0423646|biochanin-A|biochanin A| +E0423648|bio-clinical|bioclinical| +E0423657|bio-indicator|bioindicator| +E0423658|bio-isosteric|bioisosteric| +E0423663|bio-magnetic|biomagnetic| +E0423667|bio-monitor|biomonitor| +E0423668|bio-monitor|biomonitor| +E0423673|bio-reduction|bioreduction| +E0423681|biosynthesise|biosynthesize| +E0423684|bio-therapy|biotherapy| +E0423704|fructose-bisphosphate aldolase|fructose biphosphate aldolase| +E0423725|ribulose biphosphate carboxylase|ribulosebiphosphate carboxylase| +E0423804|blood brain barrier|bloodbrain barrier| +E0423804|blood-brain barrier|bloodbrain barrier| +E0423804|blood/brain barrier|bloodbrain barrier| +E0423835|live-born|liveborn| +E0423851|brachy-radiotherapy|brachyradiotherapy| +E0423852|brachy-teletherapy|brachyteletherapy| +E0423856|brachy-turricephaly|brachyturricephaly| +E0423870|Leishmania brasiliensis peruviana|Leishmania braziliensis peruviana| +E0423872|Leishmania brasiliensis guyanensis|Leishmania braziliensis guyanensis| +E0423880|breast milk|breastmilk| +E0423904|bric-a-brac|bric a brac| +E0423960|beta bromopropionate|beta-bromopropionate| +E0423968|bromouridine-triphosphate|bromouridine triphosphate| +E0423976|bronchiolo-alveolar|bronchioloalveolar| +E0423977|bronchiolo-alveolar carcinoma|bronchioloalveolar carcinoma| +E0423978|broncho-constrictive|bronchoconstrictive| +E0423980|broncho-fiberscopy|bronchofiberscopy| +E0423982|broncho-pneumopathy|bronchopneumopathy| +E0424029|myringitis bullosa haemorrhagica|myringitis bullosa hemorrhagica| +E0424030|angina bullosa hemorrhagica|angina bullosa haemorrhagica| +E0424086|butilate|butylate| +E0424087|alpha-naphthyl butilate esterase|alpha-naphthyl butylate esterase| +E0424087|alpha-naphtyl butilate esterase|alpha-naphthyl butylate esterase| +E0424087|alpha-naphtyl butylate esterase|alpha-naphthyl butylate esterase| +E0424096|hyoscinbutylbromide|hyoscine butylbromide| +E0424187|cancerisation|cancerization| +E0424188|cancerise|cancerize| +E0424225|capillarise|capillarize| +E0424244|Histoplasma capsulatum AG|Histoplasma capsulatum ag| +E0424244|Histoplasma capsulatum Ag|Histoplasma capsulatum ag| +E0424246|Histoplasma capsulatum AB|Histoplasma capsulatum ab| +E0424258|carbamoyl-phosphate synthase|carbamoylphosphate synthase| +E0424320|amine carboxyborane|amine-carboxyborane| +E0424329|protein carboxy methylase|protein carboxymethylase| +E0424355|cardio-haemodynamic|cardiohemodynamic| +E0424355|cardio-hemodynamic|cardiohemodynamic| +E0424355|cardiohaemodynamic|cardiohemodynamic| +E0424407|alpha casomorphin|alpha-casomorphin| +E0424417|catalise|catalize| +E0424422|catheterisable|catheterizable| +E0424434|cavo-atrial|cavoatrial| +E0424436|cavo-pulmonary|cavopulmonary| +E0424444|cecropin 1|cecropin-1| +E0424445|cecropin 2|cecropin-2| +E0424446|coele|cele| +E0424448|beta cellobioside|beta-cellobioside| +E0424449|beta tigogenin cellobioside|beta-tigogenin cellobioside| +E0424461|cellulo-adipose|celluloadipose| +E0424463|cellulo-cutaneous flap|cellulocutaneous flap| +E0424464|cellulo-vascular|cellulovascular| +E0424465|cellulo-lymphadenectomy|cellulolymphadenectomy| +E0424477|centro-medial|centromedial| +E0424486|ceramo-metallic|ceramometallic| +E0424497|cerebro-cortical|cerebrocortical| +E0424500|cerebro-ventricular|cerebroventricular| +E0424504|macula caerulea|macula cerulea| +E0424506|cervico-cephalic|cervicocephalic| +E0424507|cervico-mediastinal|cervicomediastinal| +E0424517|continuous filtration leucapheresis|continuous filtration leukapheresis| +E0424518|continuous flow leukapheresis|continuous flow leucapheresis| +E0424519|central-field loss|central field loss| +E0424526|channellike|channel-like| +E0424537|chemo-enzymatic|chemoenzymatic| +E0424539|chemo-mechanical|chemomechanical| +E0424559|chito-oligosaccharide|chitooligosaccharide| +E0424560|chitooligomer|chito-oligomer| +E0424572|beta chlorolactic acid|beta-chlorolactic acid| +E0424580|dibutylchloro(chloromethyl)-stannane|dibutylchloro(chloromethyl)stannane| +E0424627|cholangio-pancreatographic|cholangiopancreatographic| +E0424630|cholecystectomise|cholecystectomize| +E0424657|chroniser|chronizer| +E0424663|chymotrypsin-like|chymotrypsinlike| +E0424739|city-wide|citywide| +E0424747|clearcut|clear-cut| +E0424748|clearcut|clear-cut| +E0424749|clearcut|clear-cut| +E0424753|clinico-histopathologic|clinicohistopathologic| +E0424754|clinicopathogenic|clinico-pathogenic| +E0424755|clinicopathomorphological|clinico-pathomorphological| +E0424766|co-adjuvant|coadjuvant| +E0424767|co-adjuvant|coadjuvant| +E0424770|coal mining|coalmining| +E0424771|co-apply|coapply| +E0424774|co-assembly|coassembly| +E0424776|roller-coaster|roller coaster| +E0424784|co-cluster|cocluster| +E0424785|co-crystal|cocrystal| +E0424786|codevelopment|co-development| +E0424788|co-educational|coeducational| +E0424789|co-electroporate|coelectroporate| +E0424792|co-encapsidation|coencapsidation| +E0424793|co-encapsidate|coencapsidate| +E0424800|co-extraction|coextraction| +E0424801|co-extract|coextract| +E0424814|Staphylococcus cohnii subsp urealyticus|Staphylococcus cohnii subsp. urealyticus| +E0424818|co-hybridisation|cohybridization| +E0424818|co-hybridization|cohybridization| +E0424818|cohybridisation|cohybridization| +E0424819|co-hybridise|cohybridize| +E0424819|co-hybridize|cohybridize| +E0424819|cohybridise|cohybridize| +E0424824|co-ingestion|coingestion| +E0424825|co-ingest|coingest| +E0424826|co-inoculation|coinoculation| +E0424827|co-inoculate|coinoculate| +E0424828|co-investigator|coinvestigator| +E0424837|cardio-oesophageal relaxation|cardio-esophageal relaxation| +E0424837|cardioesophageal relaxation|cardio-esophageal relaxation| +E0424837|cardiooesophageal relaxation|cardio-esophageal relaxation| +E0424838|cardio-respiratory arrest|cardiorespiratory arrest| +E0424839|velo-cardio-facial syndrome|velocardiofacial syndrome| +E0424841|two celled|two-celled| +E0424842|single celled|single-celled| +E0424843|multi-celled|multicelled| +E0424845|giant celled|giant-celled| +E0424847|one celled|one-celled| +E0424848|small celled|small-celled| +E0424849|clear celled|clear-celled| +E0424850|spindle celled|spindle-celled| +E0424851|four celled|four-celled| +E0424852|centro-parietal|centroparietal| +E0424853|centro-parietally|centroparietally| +E0424854|centro-temporal|centrotemporal| +E0424855|centro-temporally|centrotemporally| +E0424857|centro-symmetric|centrosymmetric| +E0424858|centro-symmetrical|centrosymmetrical| +E0424859|centro-symmetrically|centrosymmetrically| +E0424880|colo-anal|coloanal| +E0424881|colo-colonic|colocolonic| +E0424885|colono-ileoscopy|colonoileoscopy| +E0424892|co-management|comanagement| +E0424893|co-manage|comanage| +E0424904|conc.|conc| +E0424905|conc.|conc| +E0424960|haematoporphyria congenita|hematoporphyria congenita| +E0424976|conodipine-M|conodipine M| +E0424979|cono-ventricular|conoventricular| +E0424997|cont.|cont| +E0424998|cont.|cont| +E0425015|contra-luminal|contraluminal| +E0425016|contra-lesional|contralesional| +E0425017|contra-inflammatory|contrainflammatory| +E0425020|co-oxidation|cooxidation| +E0425021|co-oxidise|cooxidize| +E0425021|co-oxidize|cooxidize| +E0425021|cooxidise|cooxidize| +E0425022|co-partition|copartition| +E0425023|co-perfuse|coperfuse| +E0425026|co-planar|coplanar| +E0425034|copro-antigen|coproantigen| +E0425035|copro-culture|coproculture| +E0425038|copro eosinophil cationic protein|copro-eosinophil cationic protein| +E0425039|copro'gen|COPRO'gen| +E0425040|co-production|coproduction| +E0425041|co-produce|coproduce| +E0425042|copyback|copy-back| +E0425045|ECorL|EcorL| +E0425047|cord-like|cordlike| +E0425048|co-receptor|coreceptor| +E0425049|co-regulator|coregulator| +E0425053|co-resistant|coresistant| +E0425054|co-resistance|coresistance| +E0425065|colonisation factor antigen|colonization factor antigen| +E0425076|cortico-cortical|corticocortical| +E0425078|adrenal corticosteroid poisoning|adrenal cortico-steroid poisoning| +E0425079|thalamocorticothalamic loop|thalamo-cortico-thalamic loop| +E0425080|thalamocorticothalamic|thalamo-cortico-thalamic| +E0425081|corticothalamocortical loop|cortico-thalamo-cortical loop| +E0425082|corticothalamocortical|cortico-thalamo-cortical| +E0425083|cortico-subcortical|corticosubcortical| +E0425084|cortico-motoneuronal|corticomotoneuronal| +E0425086|corticotubular|cortico-tubular| +E0425087|cortico-motor|corticomotor| +E0425088|cortico-hippocampal|corticohippocampal| +E0425090|cortico-sensitive|corticosensitive| +E0425091|cortico-sensitivity|corticosensitivity| +E0425092|cortico-therapy|corticotherapy| +E0425093|cortico-therapeutic|corticotherapeutic| +E0425106|co-secrete|cosecrete| +E0425108|co-sponsor|cosponsor| +E0425109|co-sponsor|cosponsor| +E0425110|co-sponsorship|cosponsorship| +E0425113|co-substrate|cosubstrate| +E0425114|co-synthesise|cosynthesize| +E0425114|co-synthesize|cosynthesize| +E0425114|cosynthesise|cosynthesize| +E0425115|co-transfer|cotransfer| +E0425116|co-transfer|cotransfer| +E0425119|co-transport|cotransport| +E0425130|counter-productive|counterproductive| +E0425131|counter-productivity|counterproductivity| +E0425132|counter-selectable|counterselectable| +E0425133|counter-transport|countertransport| +E0425134|counter-transport|countertransport| +E0425145|coxsackie endocarditis|Coxsackie endocarditis| +E0425146|Coxsackie virus A|Coxsackievirus A| +E0425146|coxsackie virus A|Coxsackievirus A| +E0425146|coxsackievirus A|Coxsackievirus A| +E0425147|coxsackie A9|Coxsackie A9| +E0425148|Coxsackie A21|coxsackie A21| +E0425149|Coxsackie A21 virus|coxsackie A21 virus| +E0425150|Coxsackie virus B|Coxsackievirus B| +E0425150|coxsackie virus B|Coxsackievirus B| +E0425150|coxsackievirus B|Coxsackievirus B| +E0425151|coxsackie B1|Coxsackie B1| +E0425152|enterovirus coxsackie B1|enterovirus Coxsackie B1| +E0425153|coxsackie myocarditis|Coxsackie myocarditis| +E0425154|coxsackie B2 virus|Coxsackie B2 virus| +E0425155|coxsackie B2|Coxsackie B2| +E0425156|Coxsackievirus B3|Coxsackie virus B3| +E0425156|coxsackie virus B3|Coxsackie virus B3| +E0425156|coxsackievirus B3|Coxsackie virus B3| +E0425157|coxsackie B3|Coxsackie B3| +E0425158|coxsackie B3 virus|Coxsackie B3 virus| +E0425159|Coxsackie virus B4|Coxsackievirus B4| +E0425159|coxsackie virus B4|Coxsackievirus B4| +E0425159|coxsackievirus B4|Coxsackievirus B4| +E0425160|coxsackie B4 virus|Coxsackie B4 virus| +E0425161|coxsackie B4|Coxsackie B4| +E0425162|coxsackie B5 virus|Coxsackie B5 virus| +E0425163|Coxsackie virus B5|Coxsackievirus B5| +E0425163|coxsackie virus B5|Coxsackievirus B5| +E0425163|coxsackievirus B5|Coxsackievirus B5| +E0425164|coxsackie B5|Coxsackie B5| +E0425165|coxsackie B6|Coxsackie B6| +E0425166|coxsackie B6 virus|Coxsackie B6 virus| +E0425167|Coxsackie virus B6|Coxsackievirus B6| +E0425167|coxsackie virus B6|Coxsackievirus B6| +E0425167|coxsackievirus B6|Coxsackievirus B6| +E0425168|Coxsackie virus P2-C|Coxsackievirus P2-C| +E0425168|Coxsackie virus P2C|Coxsackievirus P2-C| +E0425168|Coxsackievirus P2C|Coxsackievirus P2-C| +E0425168|coxsackie virus P2-C|Coxsackievirus P2-C| +E0425168|coxsackie virus P2C|Coxsackievirus P2-C| +E0425168|coxsackievirus P2-C|Coxsackievirus P2-C| +E0425168|coxsackievirus P2C|Coxsackievirus P2-C| +E0425169|Coxsackie P2C virus|Coxsackie P2-C virus| +E0425169|coxsackie P2-C virus|Coxsackie P2-C virus| +E0425169|coxsackie P2C virus|Coxsackie P2-C virus| +E0425170|Coxsackie P2-C|Coxsackie P2C| +E0425170|coxsackie P2-C|Coxsackie P2C| +E0425170|coxsackie P2C|Coxsackie P2C| +E0425171|Coxsackie virus A9|Coxsackievirus A9| +E0425171|coxsackie virus A9|Coxsackievirus A9| +E0425171|coxsackievirus A9|Coxsackievirus A9| +E0425172|Coxsackie virus A21|Coxsackievirus A21| +E0425172|coxsackie virus A21|Coxsackievirus A21| +E0425172|coxsackievirus A21|Coxsackievirus A21| +E0425173|Coxsackie virus B2|Coxsackievirus B2| +E0425173|coxsackie virus B2|Coxsackievirus B2| +E0425173|coxsackievirus B2|Coxsackievirus B2| +E0425174|coxsackie meningitis|Coxsackie meningitis| +E0425175|Coxsackie pericarditis|coxsackie pericarditis| +E0425176|coxsackie carditis|Coxsackie carditis| +E0425177|congenital Coxsackie infection|congenital coxsackie infection| +E0425178|coxsackie muscle infection|Coxsackie muscle infection| +E0425179|coxsackie viral meningitis|Coxsackie viral meningitis| +E0425180|lymphonodular Coxsackie pharyngitis|lymphonodular coxsackie pharyngitis| +E0425181|neonatal Coxsackie virus syndrome|neonatal coxsackie virus syndrome| +E0425181|neonatal Coxsackievirus syndrome|neonatal coxsackie virus syndrome| +E0425181|neonatal coxsackievirus syndrome|neonatal coxsackie virus syndrome| +E0425182|Coxsackie complement fixation test|coxsackie complement fixation test| +E0425183|coxsackie A viral meningitis|Coxsackie A viral meningitis| +E0425184|coxsackie B viral meningitis|Coxsackie B viral meningitis| +E0425185|coxsackie A24 variant virus|Coxsackie A24 variant virus| +E0425186|coxsackievirus A24 variant|Coxsackievirus A24 variant| +E0425187|coxsackievirus A24|Coxsackievirus A24| +E0425190|cranio-cervical|craniocervical| +E0425203|day care|daycare| +E0425299|cysteinesulphinate|cysteinesulfinate| +E0425305|pyelo-ureteritis cystica|pyloureteritis cystica| +E0425306|cysto-biliary|cystobiliary| +E0425307|cysto-jejunostomy|cystojejunostomy| +E0425308|cysto-jejunal|cystojejunal| +E0425309|micturating cysto-urethrography|micturating cystourethrography| +E0425311|voiding cysto-urethrography|voiding cystourethrography| +E0425313|cysto-urethrographic|cystourethrographic| +E0425314|cysto-ureteral|cystoureteral| +E0425315|cysto-enteric|cystoenteric| +E0425316|cysto-gastrostomy|cystogastrostomy| +E0425317|cysto-peritoneal|cystoperitoneal| +E0425318|cysto-peritoneal shunt|cystoperitoneal shunt| +E0425319|cysto-peritoneal shunting|cystoperitoneal shunting| +E0425323|cyto-matrix|cytomatrix| +E0425324|cyto-histological|cytohistological| +E0425327|cyto-reducing|cytoreducing| +E0425328|cyto-immunological|cytoimmunological| +E0425329|cyto-immunology|cytoimmunology| +E0425330|cyto-lethal|cytolethal| +E0425333|cyto-differentiating|cytodifferentiating| +E0425334|cyto-architecturally|cytoarchitecturally| +E0425348|dark-field|darkfield| +E0425349|de-adapt|deadapt| +E0425350|de-adaptation|deadaptation| +E0425351|de-adenylation|deadenylation| +E0425353|pentoxy resorufin-O-dealkylase|pentoxyresorufin O-dealkylase| +E0425353|pentoxyresorufin-O-dealkylase|pentoxyresorufin O-dealkylase| +E0425359|de-angulation|deangulation| +E0425436|cyclomaltooctaose|cyclomalto-octaose| +E0425468|cyclopentyl sulphamate|cyclopentyl sulfamate| +E0425522|dark-cell degeneration|dark cell degeneration| +E0425527|delayed-conditional-discrimination task|delayed conditional discrimination task| +E0425566|de-endothelialised|deendothelialized| +E0425566|de-endothelialized|deendothelialized| +E0425566|deendothelialised|deendothelialized| +E0425567|de-epithelialisation|deepithelialization| +E0425567|de-epithelialization|deepithelialization| +E0425567|deepithelialisation|deepithelialization| +E0425568|de-etiolate|deetiolate| +E0425569|de-etiolation|deetiolation| +E0425571|defeminise|defeminize| +E0425572|defeminisation|defeminization| +E0425575|deflavo-enzyme|deflavo enzyme| +E0425598|dehospitalisation|dehospitalization| +E0425665|demucosalised|demucosalized| +E0425689|dentino enamel junction|dentino-enamel junction| +E0425689|dentinoenamel junction|dentino-enamel junction| +E0425690|dentinocemental junction|dentino-cemental junction| +E0425691|dentinocemental|dentino-cemental| +E0425692|dentino enamel|dentino-enamel| +E0425692|dentinoenamel|dentino-enamel| +E0425693|dentinopulpal|dentino-pulpal| +E0425768|beta thioguanine deoxyriboside|beta-thioguanine deoxyriboside| +E0425769|beta-TGdR|beta TGdR| +E0425791|PHA-depolymerase|PHA depolymerase| +E0425793|PHB depolymerase|PHB-depolymerase| +E0425805|depression-like|depressionlike| +E0425818|dermatorespiratory|dermato-respiratory| +E0425819|dermato-physiological|dermatophysiological| +E0425820|dermato-pathology|dermatopathology| +E0425821|dermo-chondro-corneal dystrophy|dermochondrocorneal dystrophy| +E0425822|tricho-oculodermovertebral syndrome|tricho-oculo-dermo-vertebral syndrome| +E0425823|dermo-epidermal|dermoepidermal| +E0425824|dermo-plastic|dermoplastic| +E0425825|dermo-hypodermal|dermohypodermal| +E0425853|desmethoxy derivative|desmethoxy-derivative| +E0425858|desmocollin 1|desmocollin I| +E0425859|desmocollin 2|desmocollin II| +E0425860|desmocollin 3|desmocollin III| +E0425861|desmoglein I|desmoglein 1| +E0425862|desmoglein II|desmoglein 2| +E0425882|destablisation|destablization| +E0425883|destablise|destablize| +E0425884|desulphurate|desulfurate| +E0425893|dual-energy x-ray absorptiometry|dual energy x-ray absorptiometry| +E0425896|DGA|dGA| +E0425896|dga|dGA| +E0425901|deglycosylated ricin A chain|deglycosylated ricin A-chain| +E0425911|dialysed iron|dialyzed iron| +E0425919|scleroedema diabeticorum|scleredema diabeticorum| +E0425934|diacyl phosphatidylglycerol|diacylphosphatidylglycerol| +E0425970|trans-diamminedichloro platinum|trans-diamminedichloroplatinum| +E0425970|trans-diamminedichloro-platinum|trans-diamminedichloroplatinum| +E0425991|diarachidoyl phosphatidylcholine|diarachidoylphosphatidylcholine| +E0426005|preventive dental behaviour|preventive dental behavior| +E0426032|digitizer|digitiser| +E0426052|direct acting|direct-acting| +E0426052|directacting|direct-acting| +E0426059|disco-vertebral|discovertebral| +E0426066|dislipidemia|dislipidaemia| +E0426097|diarylsulphonylurea|diarylsulfonylurea| +E0426135|diazonaphthalenedisulphonic acid|diazonaphthalenedisulfonic acid| +E0426249|tripotassium dicitrato bismuthate|tripotassium-dicitrato bismuthate| +E0426290|methyl diethylthiocarbamate sulphoxide|methyl diethylthiocarbamate sulfoxide| +E0426297|methylene dimethane sulfonate|methylene dimethanesulfonate| +E0426297|methylene dimethane sulphonate|methylene dimethanesulfonate| +E0426297|methylene dimethanesulphonate|methylene dimethanesulfonate| +E0426301|DGlc-DAG|DGlcDAG| +E0426305|dihomogamma linolenic acid|dihomogamma-linolenic acid| +E0426471|dihydroxyboryl cellulose|dihydroxyboryl-cellulose| +E0426511|diisopropyl phosphorofluoridase|di-isopropyl phosphorofluoridase| +E0426548|extra-dimensional shift|extradimensional shift| +E0426550|ethane dimethane sulphonate|ethane dimethane sulfonate| +E0426552|energy dispersive spectrometry|energy-dispersive spectrometry| +E0426554|oedema disease|edema disease| +E0426744|dipeptidylpeptidase|dipeptidyl peptidase| +E0426749|dipeptidyl-peptidase IV|dipeptidyl peptidase IV| +E0426750|DPP-IV|DPP IV| +E0426751|dipeptidyl-amino-peptidase I|dipeptidyl aminopeptidase I| +E0426753|peptidyl-dipeptidase A|peptidyl dipeptidase A| +E0426754|peptidyl-dipeptidase B|peptidyl dipeptidase B| +E0426757|dipeptidyl amino-peptidase IV|dipeptidyl aminopeptidase IV| +E0426763|dipeptidyl-amino-peptidase II|dipeptidyl aminopeptidase II| +E0426764|dipeptidyl-amino-peptidase III|dipeptidyl aminopeptidase III| +E0426834|nucleoside-diphosphosugar|nucleoside diphosphosugar| +E0426849|diethylstilboestrol dipropionate|diethylstilbestrol dipropionate| +E0426851|oestradiol dipropionate|estradiol dipropionate| +E0426854|stilboestrol dipropionate|stilbestrol dipropionate| +E0426874|disialo-transferrin|disialotransferrin| +E0426881|distal-most|distalmost| +E0426888|disulphated|disulfated| +E0426914|double-sex|doublesex| +E0426928|downregulated in adenoma|downregulated-in-adenoma| +E0426929|dialysis related amyloidosis|dialysis-related amyloidosis| +E0426930|dopamine receptor antagonist|dopamine-receptor antagonist| +E0426946|DLG|Dlg| +E0426946|dlg|Dlg| +E0426950|dolicho-ectatic|dolichoectatic| +E0426959|diphenyleneiodonium|diphenylene iodonium| +E0427011|farm worker|farmworker| +E0427026|detrusor sphincter dyssynergia|detrusor-sphincter dyssynergia| +E0427035|DSX|dsx| +E0427059|diffusion weighted|diffusion-weighted| +E0427061|deionised water|deionized water| +E0427070|dyn A|dyn-A| +E0427071|dynorphin A|dynorphin-A| +E0427072|dyn B|dyn-B| +E0427073|dynorphin B|dynorphin-B| +E0427076|dysembryoplastic neuroepithelial tumour|dysembryoplastic neuroepithelial tumor| +E0427079|DNT|dnt| +E0427108|ecogeography|eco-geography| +E0427109|eco-epidemiological|ecoepidemiological| +E0427110|eco-epidemiology|ecoepidemiology| +E0427111|Eco RI|EcoRI| +E0427111|Eco-RI|EcoRI| +E0427113|Eco RV|EcoRV| +E0427115|eco-toxicology|ecotoxicology| +E0427116|ecto-apyrase|ectoapyrase| +E0427117|ecto-ATPase|ectoATPase| +E0427122|ecto-nucleotidase|ectonucleotidase| +E0427123|ecto-protein kinase|ectoprotein kinase| +E0427124|ecto-protein|ectoprotein| +E0427127|ecto-protease|ectoprotease| +E0427130|oedemic|edemic| +E0427140|echogenic foetal lung|echogenic fetal lung| +E0427141|early foetal loss|early fetal loss| +E0427145|EGR-1|Egr-1| +E0427145|egr-1|Egr-1| +E0427148|EGR-2|Egr-2| +E0427148|egr-2|Egr-2| +E0427150|EGR-3|Egr-3| +E0427150|egr-3|Egr-3| +E0427162|eigen analysis|eigenanalysis| +E0427163|eigen value|eigenvalue| +E0427163|eigen-value|eigenvalue| +E0427170|electro-clinical|electroclinical| +E0427172|electro-fulguration|electrofulguration| +E0427174|electro-gustometry|electrogustometry| +E0427175|electro-inject|electroinject| +E0427176|electro-injection|electroinjection| +E0427177|electro-mobility shift assay|electromobility shift assay| +E0427179|electro-myographical|electromyographical| +E0427180|electron-dense|electrondense| +E0427181|electron-density|electrondensity| +E0427182|electron-lucent|electronlucent| +E0427183|electron-lucency|electronlucency| +E0427185|electro-optical|electrooptical| +E0427186|electropermeabilised|electropermeabilized| +E0427274|extra-mammary Paget's disease|extramammary Paget's disease| +E0427277|estramustine-phosphate|estramustine phosphate| +E0427277|estramustinphosphate|estramustine phosphate| +E0427290|emv|Emv| +E0427292|ecotropic murine leucaemia virus|ecotropic murine leukemia virus| +E0427292|ecotropic murine leucemia virus|ecotropic murine leukemia virus| +E0427292|ecotropic murine leukaemia virus|ecotropic murine leukemia virus| +E0427298|encephalo-cranio-cutaneous lipomatosis|encephalocraniocutaneous lipomatosis| +E0427299|endo-anal|endoanal| +E0427300|endo-cavitary|endocavitary| +E0427301|endocrino-metabolic|endocrinometabolic| +E0427302|endocrino-therapy|endocrinotherapy| +E0427303|neuro-endocrino-immunological|neuroendocrinoimmunological| +E0427306|endo-loop|endoloop| +E0427317|endo-urological|endourological| +E0427318|endo-urology|endourology| +E0427337|entero-invasive|enteroinvasive| +E0427338|entero-invasiveness|enteroinvasiveness| +E0427349|epi-aortic|epiaortic| +E0427364|epimetaphysial|epimetaphyseal| +E0427374|epithelio-mesenchymal|epitheliomesenchymal| +E0427375|epithelio-reticular|epithelioreticular| +E0427376|epitheliostromal|epithelio-stromal| +E0427398|equi-anaesthetic|equianesthetic| +E0427398|equi-anesthetic|equianesthetic| +E0427398|equianaesthetic|equianesthetic| +E0427421|erythemato-papular|erythematopapular| +E0427422|erythemato-squamous|erythematosquamous| +E0427423|erythemato-bullous|erythematobullous| +E0427424|erythemato-telangiectatic|erythematotelangiectatic| +E0427425|erythemato-telangiectatic rosacea|erythematotelangiectatic rosacea| +E0427440|erythro-megakaryocytic|erythromegakaryocytic| +E0427444|esophago-cardia|esophagocardia| +E0427444|oesophago-cardia|esophagocardia| +E0427444|oesophagocardia|esophagocardia| +E0427445|esophago-pleural|esophagopleural| +E0427445|oesophago-pleural|esophagopleural| +E0427445|oesophagopleural|esophagopleural| +E0427446|esophago-pleural fistula|esophagopleural fistula| +E0427446|oesophago-pleural fistula|esophagopleural fistula| +E0427446|oesophagopleural fistula|esophagopleural fistula| +E0427515|ethicolegal|ethico-legal| +E0427518|ethno-cultural|ethnocultural| +E0427971|first-hand|firsthand| +E0427972|first-hand|firsthand| +E0428020|cross-clamp|crossclamp| +E0428021|cross-clamp|crossclamp| +E0428022|cross-head|crosshead| +E0428023|cross-protect|crossprotect| +E0428024|cross-reactively|crossreactively| +E0428027|cryo-electron microscope|cryoelectron microscope| +E0428028|cryo-electron microscopic|cryoelectron microscopic| +E0428029|cryo-fix|cryofix| +E0428032|cryo-thin section|cryothin section| +E0428033|cryo-ultrathin section|cryoultrathin section| +E0428038|cranioorbital|cranio-orbital| +E0428039|cranio-ventral|cranioventral| +E0428040|craniocervical-mandibular|cranio-cervical-mandibular| +E0428070|CST|Cst| +E0428075|ctk|Ctk| +E0428079|non-foo|nonfoo| +E0428082|alpha-difluoromethyl ornithine|alpha-difluoromethylornithine| +E0428099|dry-powder inhaler|dry powder inhaler| +E0428100|dry-powder inhalation|dry powder inhalation| +E0428101|despentapeptide-insulin|despentapeptide insulin| +E0428109|fibro-intimal|fibrointimal| +E0428116|eco color-Doppler|eco-color-Doppler| +E0428116|eco colour-Doppler|eco-color-Doppler| +E0428116|eco-colour-Doppler|eco-color-Doppler| +E0428117|ECO-Doppler|eco-Doppler| +E0428130|fluorescent labeled antibody|fluorescent-labeled antibody| +E0428144|fleur-de-lys|fleur-de-lis| +E0428145|fleur de lis abdominoplasty|fleur de lys abdominoplasty| +E0428145|fleur-de-lis abdominoplasty|fleur de lys abdominoplasty| +E0428145|fleur-de-lys abdominoplasty|fleur de lys abdominoplasty| +E0428156|flu-like|flulike| +E0428160|fluoro-immunoenzymatic|fluoroimmunoenzymatic| +E0428171|fish oil concentrate|fish-oil concentrate| +E0428214|frame-shifting|frameshifting| +E0428219|fronto-cortical|frontocortical| +E0428220|fronto-parallel|frontoparallel| +E0428228|FTZ|Ftz| +E0428228|ftz|Ftz| +E0428230|FTZ-F1|Ftz-F1| +E0428298|Fz|fz| +E0428300|foetal zone|fetal zone| +E0428309|galactosyl sulphatide|galactosyl sulfatide| +E0428316|globoid cell leucodystrophy|globoid cell leukodystrophy| +E0428323|galectin 1|galectin-1| +E0428323|galectin I|galectin-1| +E0428323|galectin-I|galectin-1| +E0428325|galectin 2|galectin-2| +E0428325|galectin II|galectin-2| +E0428325|galectin-II|galectin-2| +E0428326|galectin 3|galectin-3| +E0428327|galectin 4|galectin-4| +E0428328|galectin 5|galectin-5| +E0428329|galectin 6|galectin-6| +E0428330|galectin 7|galectin-7| +E0428331|galectin 8|galectin-8| +E0428332|galectin 9|galectin-9| +E0428346|haemoglobin G gammaglobin|hemoglobin G gammaglobin| +E0428358|ganglio-series|ganglioseries| +E0428360|gas-less|gasless| +E0428363|gastrinaemia|gastrinemia| +E0428366|gate-keeping|gatekeeping| +E0428367|gate-keeping|gatekeeping| +E0428368|Gax|gax| +E0428369|GAX-collagen|GAX collagen| +E0428441|Gitelman's syndrome|Gitelman syndrome| +E0428464|globalisation|globalization| +E0428465|globalise|globalize| +E0428471|glucopaenia|glucopenia| +E0428484|gamma GTP|gammaGTP| +E0428507|Pseudomonas syringae pv glycinea|Pseudomonas syringae pv. glycinea| +E0428529|G protein-coupled receptor|G-protein-coupled receptor| +E0428531|gamma-glutamyl phosphate reductase|gamma-glutamylphosphate reductase| +E0428535|general practise residency|general practice residency| +E0428548|grand multipara|grandmultipara| +E0428558|granulo-filamentous|granulofilamentous| +E0428559|granulo-fibrillar|granulofibrillar| +E0428560|granulo-macrophagic|granulomacrophagic| +E0428572|gray-scale|grayscale| +E0428572|grey-scale|grayscale| +E0428572|greyscale|grayscale| +E0428573|gray-scale|grayscale| +E0428573|grey-scale|grayscale| +E0428573|greyscale|grayscale| +E0428585|grasp and release test|Grasp and Release Test| +E0428591|GRX|Grx| +E0428591|grx|Grx| +E0428601|gamma GT|gamma-GT| +E0428605|alpha-GT|alpha-gt| +E0428606|guanidinoethanesulphonate|guanidinoethanesulfonate| +E0428631|gynecologically|gynaecologically| +E0428632|gynaecologic|gynecologic| +E0428634|agarose-haematin|agarose-hematin| +E0428635|haematin-sepharose|hematin-sepharose| +E0428636|haematinic acid|hematinic acid| +E0428637|beta-haematin|beta-hematin| +E0428638|hematopathy|haematopathy| +E0428639|pyridine hemochromogen|pyridine haemochromogen| +E0428640|hemogregarine|haemogregarine| +E0428673|hand-sewn|handsewn| +E0428686|hardmetal|hard metal| +E0428699|heparin-binding domain|heparin binding domain| +E0428701|hypophosphataemic bone disease|hypophosphatemic bone disease| +E0428703|hBD-2|HBD-2| +E0428705|hBD-1|HBD-1| +E0428722|haematologically|hematologically| +E0428723|haematolymphopoietic|hematolymphopoietic| +E0428724|haematopathology|hematopathology| +E0428725|haematopoietically|hematopoietically| +E0428726|haematoxilin-eosin|hematoxilineosin| +E0428726|haematoxilineosin|hematoxilineosin| +E0428726|hematoxilin-eosin|hematoxilineosin| +E0428727|hemi-arthroplasty|hemiarthroplasty| +E0428728|hemi-channel|hemichannel| +E0428732|hemi-field|hemifield| +E0428734|hemi-liver|hemiliver| +E0428736|hemimethylation|hemi-methylation| +E0428737|hemi-protonation|hemiprotonation| +E0428738|hemi-protonated|hemiprotonated| +E0428739|hemi-space|hemispace| +E0428741|hemi-syndrome|hemisyndrome| +E0428742|haemoaccess|hemoaccess| +E0428743|haemocytometer|hemocytometer| +E0428744|haemoglobinless|hemoglobinless| +E0428745|haemolytically|hemolytically| +E0428746|haemopathy|hemopathy| +E0428747|haemoregulatory|hemoregulatory| +E0428748|haemostatically|hemostatically| +E0428749|haemotoxicity|hemotoxicity| +E0428750|haemotoxic|hemotoxic| +E0428762|heparin therapy|heparintherapy| +E0428768|portahepatis node|porta hepatis node| +E0428770|hepato-carcinogenesis|hepatocarcinogenesis| +E0428771|hepato-duodenal|hepatoduodenal| +E0428772|hepato-erythropoietic porphyria|hepatoerythropoietic porphyria| +E0428773|hepato-pancreas|hepatopancreas| +E0428811|heregulin beta 1|heregulin beta1| +E0428812|alpha-heregulin|alpha heregulin| +E0428813|heregulin alpha|heregulin-alpha| +E0428814|heregulin beta 2|heregulin-beta2| +E0428814|heregulin beta2|heregulin-beta2| +E0428814|heregulin-beta 2|heregulin-beta2| +E0428816|alpha heregulin receptor|alpha-heregulin receptor| +E0428828|heterochromatinisation|heterochromatinization| +E0428829|heterochromatinised|heterochromatinized| +E0428883|health hazard appraisal|Health Hazard Appraisal| +E0428884|hereditary haemolytic anaemia|hereditary hemolytic anemia| +E0428925|histiocytoid haemangioma|histiocytoid hemangioma| +E0428927|histo-autoradiographical|histoautoradiographical| +E0428937|Hly|hly| +E0428938|adenylate cyclase-haemolysin|adenylate cyclase-hemolysin| +E0428954|depolymerised holothurian glycosaminoglycan|depolymerized holothurian glycosaminoglycan| +E0428964|homocysteinaemic|homocysteinemic| +E0428965|homodimerisation|homodimerization| +E0428966|homodimerise|homodimerize| +E0428985|hormono-therapy|hormonotherapy| +E0428988|house dust mite|housedust-mite| +E0428988|housedust mite|housedust-mite| +E0429005|hyperglycaemic hyperosmolar syndrome|hyperglycemic hyperosmolar syndrome| +E0429007|hereditary haemolytic syndrome|hereditary hemolytic syndrome| +E0429009|hyperinsulinism-hyperammonaemia syndrome|hyperinsulinism-hyperammonemia syndrome| +E0429014|Hy|hy| +E0429039|Aeromonas hydrophila subsp. anaerogenes|Aeromonas hydrophila subsp anaerogenes| +E0429041|Aeromonas hydrophila subsp. hydrophila|Aeromonas hydrophila subsp hydrophila| +E0429043|Aeromonas hydrophila subsp. proteolytica|Aeromonas hydrophila subsp proteolytica| +E0429077|alpha-hydroxyketone|alpha hydroxyketone| +E0429116|Staphylococcus hyicus subsp. hyicus|Staphylococcus hyicus subsp hyicus| +E0429118|Staphylococcus hyicus subsp. chromogenes|Staphylococcus hyicus subsp chromogenes| +E0429128|hyperamino aciduria|hyperamino-aciduria| +E0429128|hyperaminoaciduria|hyperamino-aciduria| +E0429132|hypercitrullinaemia|hypercitrullinemia| +E0429147|hyper-induction|hyperinduction| +E0429148|hyper-induce|hyperinduce| +E0429149|HyperPP|hyperPP| +E0429150|hyperkalaemic distal renal tubular acidosis|hyperkalemic distal renal tubular acidosis| +E0429151|hyperlactataemia|hyperlactatemia| +E0429152|hyperleucocytotic|hyperleukocytotic| +E0429153|hyper-locomotion|hyperlocomotion| +E0429155|hyper-mutability|hypermutability| +E0429156|hyper-mutable|hypermutable| +E0429163|hyper-recombination|hyperrecombination| +E0429164|hyper-reninism|hyperreninism| +E0429171|hyperthermo-chemo-radiotherapy|hyperthermochemoradiotherapy| +E0429172|haeme-controlled repressor|heme-controlled repressor| +E0429173|host cell reactivation|host-cell reactivation| +E0429180|hypertriacylglycerolaemia|hypertriacylglycerolemia| +E0429183|hypnotisability|hypnotizability| +E0429195|hypoglutaminaemia|hypoglutaminemia| +E0429197|hypo-osmolality|hypoosmolality| +E0429198|hypo-phosphorylate|hypophosphorylate| +E0429199|hypo-phosphorylation|hypophosphorylation| +E0429213|hypotestosteronaemia|hypotestosteronemia| +E0429215|hypoxicischaemic|hypoxicischemic| +E0429234|icterohaemorrhagiae|Icterohaemorrhagiae| +E0429248|ileo-colonic|ileocolonic| +E0429249|ileo-ileal|ileoileal| +E0429250|ileo-sigmoidocolic|ileosigmoidocolic| +E0429251|ileo-vaginal|ileovaginal| +E0429252|ileo-jejunitis|ileojejunitis| +E0429253|ileo-ureteral|ileoureteral| +E0429254|ileo-psoas|ileopsoas| +E0429260|ilio-pubic|iliopubic| +E0429293|enzyme linked immuno-adsorbent assay|enzyme-linked immunoadsorbent assay| +E0429293|enzyme linked immunoadsorbent assay|enzyme-linked immunoadsorbent assay| +E0429293|enzyme-linked immuno-adsorbent assay|enzyme-linked immunoadsorbent assay| +E0429295|immuno-analysis|immunoanalysis| +E0429297|immuno-biology|immunobiology| +E0429298|immuno-chemiluminescence|immunochemiluminescence| +E0429299|immuno-chemiluminescent|immunochemiluminescent| +E0429300|immuno-competition|immunocompetition| +E0429301|immuno-cytofluorescent|immunocytofluorescent| +E0429302|immuno-cytofluorescence|immunocytofluorescence| +E0429305|immuno-enzymetric|immunoenzymetric| +E0429306|immuno-expression|immunoexpression| +E0429310|immunohaemotherapy|immunohemotherapy| +E0429311|immuno-incompetence|immunoincompetence| +E0429312|immuno-intervention|immunointervention| +E0429315|immuno-parameter|immunoparameter| +E0429316|immuno-peptide|immunopeptide| +E0429318|immuno-positivity|immunopositivity| +E0429320|immuno-recessive|immunorecessive| +E0429321|immuno-response|immunoresponse| +E0429323|immuno-suppressor|immunosuppressor| +E0429324|immuno-target|immunotarget| +E0429327|immuno-virological|immunovirological| +E0429336|Asclepias incarnata ssp incarnata|Asclepias incarnata ssp. incarnata| +E0429343|inclass|in-class| +E0429344|inclass|in-class| +E0429362|Opuntia ficus-indica|Opuntia ficus indica| +E0429363|O. ficus-indica|O. ficus indica| +E0429371|INDO|indo| +E0429371|Indo|indo| +E0429372|indo 1|indo-1| +E0429373|Indoeuropean|Indo-European| +E0429374|Indoasian|Indo-Asian| +E0429375|Indoasian|Indo-Asian| +E0429405|infectability|infectibility| +E0429410|infero-posteriorly|inferoposteriorly| +E0429411|infero-laterally|inferolaterally| +E0429412|infero-medial|inferomedial| +E0429413|infero-frontal|inferofrontal| +E0429414|infero-superior|inferosuperior| +E0429415|infero-temporally|inferotemporally| +E0429416|infero-nasal|inferonasal| +E0429422|in-folding|infolding| +E0429425|infra-cardiac|infracardiac| +E0429433|ingroup|in-group| +E0429461|inter-animal|interanimal| +E0429463|inter-bacterial|interbacterial| +E0429465|inter-birth interval|interbirth interval| +E0429468|inter-center|intercenter| +E0429470|inter-comparison|intercomparison| +E0429473|intercosto-bronchial|intercostobronchial| +E0429474|intercosto-brachial|intercostobrachial| +E0429475|intercosto-facial|intercostofacial| +E0429483|acne associated arthritis|acne-associated arthritis| +E0429484|acquired aplastic anaemia|acquired aplastic anemia| +E0429487|gluten free|gluten-free| +E0429488|HL60 cell|HL-60 cell| +E0429496|sodium polystyrene sulfphonate|sodium polystyrene sulfonate| +E0429518|beta-lipotrophic pituitary hormone|beta-lipotropic pituitary hormone| +E0429520|beta melanocyte stimulating hormone|beta melanocyte-stimulating hormone| +E0429521|beta calcitonin gene-related peptide|beta-calcitonin gene-related peptide| +E0429522|beta hydroxyacyl CoA dehydrogenase|beta-hydroxyacyl CoA dehydrogenase| +E0429543|bornylpyrophosphate cyclase|bornyl pyrophosphate cyclase| +E0429544|bornylpyrophosphate synthetase|bornyl pyrophosphate synthetase| +E0429545|bornylpyrophosphate synthase|bornyl pyrophosphate synthase| +E0429550|Henoch Schoenlein purpura|Henoch-Schonlein purpura| +E0429550|Henoch Schonlein purpura|Henoch-Schonlein purpura| +E0429550|Henoch-Schoenlein purpura|Henoch-Schonlein purpura| +E0429552|Henoch Schoenlein nephritis|Henoch-Schonlein nephritis| +E0429552|Henoch Schonlein nephritis|Henoch-Schonlein nephritis| +E0429552|Henoch-Schoenlein nephritis|Henoch-Schonlein nephritis| +E0429557|cyclic AMP dependent protein kinase|cyclic AMP-dependent protein kinase| +E0429558|adenosine cyclic monophosphate dependent protein kinase|adenosine cyclic monophosphate-dependent protein kinase| +E0429559|cyclic AMP phosphodiesterase inhibitor|cyclic AMP-phosphodiesterase inhibitor| +E0429566|desoxycholate citrate agar|desoxycholate-citrate agar| +E0429594|AIDS associated Kaposi's sarcoma|AIDS-associated Kaposi's sarcoma| +E0429598|dauno rubidomycine|dauno-rubidomycine| +E0429599|acute lymphocytic leucaemia|acute lymphocytic leukemia| +E0429599|acute lymphocytic leucemia|acute lymphocytic leukemia| +E0429599|acute lymphocytic leukaemia|acute lymphocytic leukemia| +E0429601|serum beta 2 microglobulin|serum beta 2-microglobulin| +E0429601|serum beta-2 microglobulin|serum beta 2-microglobulin| +E0429601|serum beta-2-microglobulin|serum beta 2-microglobulin| +E0429612|moi|MOI| +E0429618|oak wood|oakwood| +E0429645|Oct|Oct.| +E0429648|Arbeitsgemeinschaft Schweizerischer Frauenkliniken|Arbeitsgemeinschaft schweizerischer Frauenkliniken| +E0429659|thromboplastin-activation test|thromboplastin activation test| +E0429661|trans-axial tomography|transaxial tomography| +E0429663|tumour activity test|tumor activity test| +E0429688|Crohns disease|Crohn's disease| +E0429697|caesarean delivery|cesarean delivery| +E0429697|caesarian delivery|cesarean delivery| +E0429697|cesarian delivery|cesarean delivery| +E0429710|inter-cultural|intercultural| +E0429711|inter-cuspal|intercuspal| +E0429716|inter-electrode|interelectrode| +E0429717|inter-episode|interepisode| +E0429718|inter-esterified|interesterified| +E0429719|inter-eye|intereye| +E0429722|inter-filament|interfilament| +E0429723|inter-fraction|interfraction| +E0429724|inter-fraction interval|interfraction interval| +E0429727|involved field irradiation|involved-field irradiation| +E0429731|inter-hospital|interhospital| +E0429732|inter-laminar|interlaminar| +E0429733|inter-library|interlibrary| +E0429734|inter-loop|interloop| +E0429735|inter-meal|intermeal| +E0429741|inter-modal|intermodal| +E0429761|alpha internexin|alpha-internexin| +E0429762|beta internexin|beta-internexin| +E0429763|inter-nucleotide|internucleotide| +E0429767|inter-organ|interorgan| +E0429772|inter-pregnancy|interpregnancy| +E0429803|acephalochiria|acephalocheiria| +E0429819|"whistling face"|whistling face| +E0429873|acoustic neurilemmoma|acoustic neurilemoma| +E0429876|acquired immunodeficiency syndrome|acquired immuno-deficiency syndrome| +E0429887|bovine leucosis|bovine leukosis| +E0429912|adenine phosphoribosyl transferase deficiency|adenine phosphoribosyltransferase deficiency| +E0429915|advanced oesophageal cancer|advanced esophageal cancer| +E0429920|asymptomatic oesophageal carcinoma|asymptomatic esophageal carcinoma| +E0429938|American leishmaniosis|American leishmaniasis| +E0429941|anaesthesia dolorosa|anesthesia dolorosa| +E0429965|aerootitis media|aero-otitis media| +E0429977|aleukia haemorrhagica|aleukia hemorrhagica| +E0430016|Bacteroides melaninogenicus subsp asaccharolyticus|Bacteroides melaninogenicus subsp. asaccharolyticus| +E0430017|Bacteroides melaninogenicus ss asaccharolyticus|Bacteroides melaninogenicus ss. asaccharolyticus| +E0430020|Bacteroides melaninogenicus subsp melaninogenicus|Bacteroides melaninogenicus subsp. melaninogenicus| +E0430021|Bacteroides melaninogenicus ss melaninogenicus|Bacteroides melaninogenicus ss. melaninogenicus| +E0430037|Bacteroides fragilis subsp distasonis|Bacteroides fragilis subsp. distasonis| +E0430038|Bacteroides fragilis ss distasonis|Bacteroides fragilis ss. distasonis| +E0430043|cabinet maker|cabinetmaker| +E0430050|carboxyhaemoglobinaemia|carboxyhemoglobinemia| +E0430054|cervico-thoracic ganglion|cervicothoracic ganglion| +E0430055|chamber maid|chambermaid| +E0430066|coal-miner|coal miner| +E0430070|collar-bone|collar bone| +E0430070|collarbone|collar bone| +E0430091|alpha streptococcus|alpha-streptococcus| +E0430092|alpha Streptococcus|alpha-Streptococcus| +E0430095|alveolo-dental membrane|alveolodental membrane| +E0430101|aminoacid analyzer|amino acid analyzer| +E0430110|anaemia neonatorum|anemia neonatorum| +E0430118|anterior atlanto-occipital membrane|anterior atlantooccipital membrane| +E0430126|anterior superior pancreatico-duodenal artery|anterior superior pancreaticoduodenal artery| +E0430127|antero-septal myocardial infarction|anteroseptal myocardial infarction| +E0430129|antigen presenting cell|antigen-presenting cell| +E0430141|archeocerebellum|archaeocerebellum| +E0430171|antinucleolar antibody|anti-nucleolar antibody| +E0430177|Argyll Robertson sign|Argyll-Robertson sign| +E0430180|Arnold Chiari deformity|Arnold-Chiari deformity| +E0430208|auriculoventricular dissociation|auriculo-ventricular dissociation| +E0430209|auto-erythrocyte sensitisation|auto-erythrocyte sensitization| +E0430209|autoerythrocyte sensitisation|auto-erythrocyte sensitization| +E0430209|autoerythrocyte sensitization|auto-erythrocyte sensitization| +E0430210|atrio-ventricular nodal artery|atrioventricular nodal artery| +E0430211|balloon fish|balloonfish| +E0430222|basiphilic cell|basophilic cell| +E0430226|Berger's paraesthesia|Berger's paresthesia| +E0430237|brown tail moth|brown-tail moth| +E0430254|castor oil plant|castor-oil plant| +E0430269|charley horse|charleyhorse| +E0430271|chile con carne|chili con carne| +E0430279|APT test|apt test| +E0430285|articulatio sacroiliaca|articulatio sacro-iliaca| +E0430331|basi-occipital bone|basioccipital bone| +E0430333|basi-sphenoid bone|basisphenoid bone| +E0430334|Bassen Kornzweig syndrome|Bassen-Kornzweig syndrome| +E0430338|Bender Gestalt test|Bender-Gestalt test| +E0430341|Bernard-Horner syndrome|Bernard Horner syndrome| +E0430349|beta streptococcus|beta-streptococcus| +E0430350|beta-Streptococcus|beta Streptococcus| +E0430389|bitter-sweet|bittersweet| +E0430391|black-dot ringworm|black dot ringworm| +E0430400|blue-bloater|blue bloater| +E0430401|block anaesthesia|block anesthesia| +E0430403|blood gas analyser|blood gas analyzer| +E0430452|Bruton's agammaglobulinaemia|Bruton's agammaglobulinemia| +E0430454|bubonocoele|bubonocele| +E0430461|Brenner's tumour|Brenner's tumor| +E0430476|clear air turbulence|clear-air turbulence| +E0430477|CAT|C.A.T.| +E0430478|computer-assisted tomography|computer assisted tomography| +E0430489|Campylobacter fetus subsp. fetus|Campylobacter fetus subsp fetus| +E0430497|Canavan-Van Bogaert-Bertrand disease|Canavan-van Bogaert-Bertrand disease| +E0430499|cancerphobia|cancer phobia| +E0430512|carbohydrate induced hyperlipaemia|carbohydrate-induced hyperlipemia| +E0430512|carbohydrate induced hyperlipemia|carbohydrate-induced hyperlipemia| +E0430512|carbohydrate-induced hyperlipaemia|carbohydrate-induced hyperlipemia| +E0430513|cardio-esophageal sphincter|cardioesophageal sphincter| +E0430513|cardio-oesophageal sphincter|cardioesophageal sphincter| +E0430513|cardiooesophageal sphincter|cardioesophageal sphincter| +E0430531|cation exchange capacity|cation-exchange capacity| +E0430586|cerebello-spinal tract|cerebellospinal tract| +E0430588|cerebro-atrophic hyperammonaemia|cerebroatrophic hyperammonemia| +E0430588|cerebro-atrophic hyperammonemia|cerebroatrophic hyperammonemia| +E0430588|cerebroatrophic hyperammonaemia|cerebroatrophic hyperammonemia| +E0430589|cerebro-atrophic|cerebroatrophic| +E0430590|cerebro-retinal angiomatosis|cerebroretinal angiomatosis| +E0430591|cerebro-retinal|cerebroretinal| +E0430596|chair fast|chair-fast| +E0430596|chairfast|chair-fast| +E0430604|chemo-autotroph|chemoautotroph| +E0430610|child rearing|child-rearing| +E0430610|childrearing|child-rearing| +E0430611|child rearing|child-rearing| +E0430611|childrearing|child-rearing| +E0430620|cholecysto-gastric fistula|cholecystogastric fistula| +E0430621|choledochointestinal|choledocho-intestinal| +E0430622|choledocho-jejunal|choledochojejunal| +E0430623|choledochohepatic|choledocho-hepatic| +E0430624|choledochocholedochal|choledocho-choledochal| +E0430625|choledocho-enteric|choledochoenteric| +E0430626|choledocho-duodenal|choledochoduodenal| +E0430627|choledocho-vesical|choledochovesical| +E0430628|choledocho-pancreatography|choledochopancreatography| +E0430629|choledochopancreatic|choledocho-pancreatic| +E0430630|choledochoureteral|choledocho-ureteral| +E0430642|chronic progressive non-hereditary chorea|chronic progressive nonhereditary chorea| +E0430673|cis-trans isomerisation|cis-trans isomerization| +E0430677|Claude Bernard Horner syndrome|Claude Bernard-Horner syndrome| +E0430689|club house|clubhouse| +E0430690|co-agglutinate|coagglutinate| +E0430693|sting-ray|stingray| +E0430694|coachwhip sting-ray|coachwhip stingray| +E0430695|Coast Guard|coast guard| +E0430695|Coastguard|coast guard| +E0430695|coastguard|coast guard| +E0430742|drain pipe|drainpipe| +E0430742|drain-pipe|drainpipe| +E0430758|eosinophilic leucocyte|eosinophilic leukocyte| +E0430766|encephalo-facial angiomatosis|encephalofacial angiomatosis| +E0430784|collateral hyperaemia|collateral hyperemia| +E0430810|congenital familial non-haemolytic jaundice|congenital familial non-hemolytic jaundice| +E0430810|congenital familial nonhaemolytic jaundice|congenital familial non-hemolytic jaundice| +E0430810|congenital familial nonhemolytic jaundice|congenital familial non-hemolytic jaundice| +E0430811|congenital hydrocoele|congenital hydrocele| +E0430814|congestive dysmenorrhoea|congestive dysmenorrhea| +E0430816|conjugated hyper-bilirubinaemia|conjugated hyperbilirubinemia| +E0430816|conjugated hyper-bilirubinemia|conjugated hyperbilirubinemia| +E0430816|conjugated hyperbilirubinaemia|conjugated hyperbilirubinemia| +E0430823|convoluted T cell lymphoma|convoluted T-cell lymphoma| +E0430831|co-parent|coparent| +E0430838|corn-cockle poisoning|corn cockle poisoning| +E0430838|corncockle poisoning|corn cockle poisoning| +E0430840|corneo-scleral junction|corneoscleral junction| +E0430857|cortico-bulbar tract|corticobulbar tract| +E0430866|cotton-wool exudate|cotton wool exudate| +E0430868|cotton-wool spots|cotton wool spots| +E0430870|cow-parsnip|cow parsnip| +E0430873|craniocoele|craniocele| +E0430883|crico-arytenoid muscle|cricoarytenoid muscle| +E0430891|cross dress|cross-dress| +E0430892|cross leg flap|cross-leg flap| +E0430893|cross leg|cross-leg| +E0430894|cross-over trial|crossover trial| +E0430903|cryanaesthesia|cryanesthesia| +E0430919|cusk eel|cusk-eel| +E0430943|cystourethrocoele|cystourethrocele| +E0430946|CY-VA-DIC|CYVADIC| +E0430969|Dianetics|dianetics| +E0430992|duodeno-enterostomy|duodenoenterostomy| +E0431013|dehaematisation|dehematization| +E0431016|dentato-thalamic fiber|dentatothalamic fiber| +E0431016|dentato-thalamic fibre|dentatothalamic fiber| +E0431016|dentatothalamic fibre|dentatothalamic fiber| +E0431023|detrusor hyper-reflexia|detrusor hyperreflexia| +E0431057|dose-effect curve|dose effect curve| +E0431058|dose-response curve|dose response curve| +E0431071|duodeno-jejunal|duodenojejunal| +E0431073|duodeno-ileal|duodenoileal| +E0431074|duodeno-vesical|duodenovesical| +E0431075|duodeno-gastric reflux|duodenogastric reflux| +E0431076|duodeno-gastro-oesophageal reflux|duodeno-gastro-esophageal reflux| +E0431076|duodeno-gastroesophageal reflux|duodeno-gastro-esophageal reflux| +E0431078|duodeno-renal|duodenorenal| +E0431079|duodeno-cecal|duodenocecal| +E0431079|duodeno-coecal|duodenocecal| +E0431079|duodenocoecal|duodenocecal| +E0431080|duodeno-caval fistula|duodenocaval fistula| +E0431081|duodeno-caval|duodenocaval| +E0431082|duodeno-pyloric|duodenopyloric| +E0431083|duodeno-jejunum|duodenojejunum| +E0431084|duodeno-intestinal|duodenointestinal| +E0431087|dysplastic naevus syndrome|dysplastic nevus syndrome| +E0431091|Ebola haemorrhagic fever|Ebola hemorrhagic fever| +E0431112|epiphysial fracture|epiphyseal fracture| +E0431129|extra chromosomal inheritance|extrachromosomal inheritance| +E0431129|extra-chromosomal inheritance|extrachromosomal inheritance| +E0431149|emotionally-focused therapy|emotionally focused therapy| +E0431152|earth fixed target|earth-fixed target| +E0431155|Eisenia fetida|Eisenia foetida| +E0431167|epilepsy monitoring unit|epilepsy-monitoring unit| +E0431171|endocrine exophthalmus|endocrine exophthalmos| +E0431186|episthotonus|episthotonos| +E0431187|epizootic aptha|epizootic aphtha| +E0431195|esophagosalivary reflex|esophago-salivary reflex| +E0431195|oesophago-salivary reflex|esophago-salivary reflex| +E0431195|oesophagosalivary reflex|esophago-salivary reflex| +E0431196|essential thrombocytopaenia|essential thrombocytopenia| +E0431208|eye colour|eye color| +E0431209|F.U.O.|FUO| +E0431211|facioscapulohumeral muscular dystrophy|facio-scapulo-humeral muscular dystrophy| +E0431212|foetal alcohol effect|fetal alcohol effect| +E0431219|familial fat induced hyperlipaemia|familial fat induced hyperlipemia| +E0431219|familial fat-induced hyperlipaemia|familial fat induced hyperlipemia| +E0431219|familial fat-induced hyperlipemia|familial fat induced hyperlipemia| +E0431220|familial hyperlipaemia|familial hyperlipemia| +E0431244|femoro-popliteal bypass|femoropopliteal bypass| +E0431246|foetal hydrops|fetal hydrops| +E0431247|fibroid tumour|fibroid tumor| +E0431265|Favre Racouchot syndrome|Favre-Racouchot syndrome| +E0431279|fer de lance virus|fer-de-lance virus| +E0431286|fibrinopaenia|fibrinopenia| +E0431318|fly agaric|fly-agaric| +E0431323|folliculitis cheloidalis|folliculitis keloidalis| +E0431328|foot path|footpath| +E0431359|free floating|free-floating| +E0431359|freefloating|free-floating| +E0431369|fronto-parietal suture|frontoparietal suture| +E0431374|funnel-web spider|funnel web spider| +E0431383|game-keeper|gamekeeper| +E0431384|game-keeper's thumb|gamekeeper's thumb| +E0431385|gamma-chain disease|gamma chain disease| +E0431405|gastro-epiploic artery|gastroepiploic artery| +E0431406|gastro-intestinal allergy|gastrointestinal allergy| +E0431407|gastro-intestinal tularaemia|gastrointestinal tularemia| +E0431407|gastro-intestinal tularemia|gastrointestinal tularemia| +E0431407|gastrointestinal tularaemia|gastrointestinal tularemia| +E0431412|gel filtration chromatography|gelfiltration chromatography| +E0431412|gel-filtration chromatography|gelfiltration chromatography| +E0431414|generalised elastolysis|generalized elastolysis| +E0431415|generalised marginal gingivitis|generalized marginal gingivitis| +E0431423|gestalt psychology|Gestalt psychology| +E0431432|Glasgow coma scale|Glasgow Coma Scale| +E0431438|glomerulo-tubular|glomerulotubular| +E0431439|glomerulo-sclerotic|glomerulosclerotic| +E0431440|glomerulo-vascular|glomerulovascular| +E0431449|glucosyl ceramide lipidosis|glucosylceramide lipidosis| +E0431458|golden rain tree|goldenrain tree| +E0431466|grave digger|gravedigger| +E0431466|grave-digger|gravedigger| +E0431468|gray cheeked thrush|gray-cheeked thrush| +E0431474|ground hog|groundhog| +E0431492|Grawitz's tumour|Grawitz's tumor| +E0431509|gustatory anaesthesia|gustatory anesthesia| +E0431511|Gyn|GYN| +E0431511|gyn|GYN| +E0431512|Gyn|GYN| +E0431512|gyn|GYN| +E0431536|H. leporis-palustris|H. leporispalustris| +E0431542|hair brush|hairbrush| +E0431542|hair-brush|hairbrush| +E0431543|hemophilus|haemophilus| +E0431546|half-beak|halfbeak| +E0431548|Hallermann Streiff syndrome|Hallermann-Streiff syndrome| +E0431553|hand print|handprint| +E0431559|harbour seal|harbor seal| +E0431560|hard bodied tick|hard-bodied tick| +E0431562|Harding Passey melanoma|Harding-Passey melanoma| +E0431573|head first|headfirst| +E0431573|head-first|headfirst| +E0431582|heel spur|heelspur| +E0431587|haemangioblastomatosis|hemangioblastomatosis| +E0431588|haemomediastinum|hemomediastinum| +E0431589|haemopericardium|hemopericardium| +E0431590|haematotympanum|hematotympanum| +E0431591|haematoperitoneum|hematoperitoneum| +E0431593|haemocholecyst|hemocholecyst| +E0431594|haemoflagellate|hemoflagellate| +E0431595|haemoflagellate|hemoflagellate| +E0431596|haemoglobin test|hemoglobin test| +E0431597|haemoplastic|hemoplastic| +E0431598|haemogenic|hemogenic| +E0431599|haemoptoic|hemoptoic| +E0431600|haemospasia|hemospasia| +E0431601|Henoch Schoenlein syndrome|Henoch-Schonlein syndrome| +E0431601|Henoch Schonlein syndrome|Henoch-Schonlein syndrome| +E0431601|Henoch-Schoenlein syndrome|Henoch-Schonlein syndrome| +E0431603|hepato-splanchnic|hepatosplanchnic| +E0431604|hepato-cellularity|hepatocellularity| +E0431605|hepatoneurologic|hepato-neurologic| +E0431606|hepatointestinal|hepato-intestinal| +E0431607|hepatogastroenterologist|hepato-gastroenterologist| +E0431608|hepatogastroenterology|hepato-gastroenterology| +E0431609|hepato-gastrointestinal|hepatogastrointestinal| +E0431610|hepato-protection|hepatoprotection| +E0431626|heterologous ensemination|heterologous insemination| +E0431632|hexose monophosphate shunt|hexosemonophosphate shunt| +E0431632|hexose-monophosphate shunt|hexosemonophosphate shunt| +E0431636|high-calorie diet|high calorie diet| +E0431637|high-fat diet|high fat diet| +E0431641|hipbone|hip bone| +E0431666|human leucocyte antigen typing|human leukocyte antigen typing| +E0431669|horn-fly|horn fly| +E0431669|hornfly|horn fly| +E0431670|horse chestnut|horse-chestnut| +E0431670|horsechestnut|horse-chestnut| +E0431674|Horton syndrome|Horton's syndrome| +E0431700|hypoglycaemic shock|hypoglycemic shock| +E0431701|hypophyseal dwarf|hypophysial dwarf| +E0431705|hypothalamic amenorrhoea|hypothalamic amenorrhea| +E0431706|ice-pack|ice pack| +E0431707|icthyosis vulgaris|ichthyosis vulgaris| +E0431709|ileo-caecal junction|ileocecal junction| +E0431709|ileo-cecal junction|ileocecal junction| +E0431709|ileo-coecal junction|ileocecal junction| +E0431709|ileocaecal junction|ileocecal junction| +E0431709|ileocoecal junction|ileocecal junction| +E0431711|idiopathic hypercalcaemia|idiopathic hypercalcemia| +E0431732|idio-ventricular rhythm|idioventricular rhythm| +E0431734|ilio-lumbar ligament|iliolumbar ligament| +E0431735|ilio-pectineal line|iliopectineal line| +E0431736|imam|Imam| +E0431738|immuno-deficiency disorder|immunodeficiency disorder| +E0431763|infantile beri-beri|infantile beriberi| +E0431764|infected aneurism|infected aneurysm| +E0431766|inferior hypophyseal artery|inferior hypophysial artery| +E0431770|infiltration anaesthesia|infiltration anesthesia| +E0431774|in-growing toenail|ingrowing toenail| +E0431778|inn keeper|innkeeper| +E0431778|inn-keeper|innkeeper| +E0431781|insufflation anaesthesia|insufflation anesthesia| +E0431787|inter-alveolar septum|interalveolar septum| +E0431788|inter-atrial groove|interatrial groove| +E0431801|inter-ureteric fold|interureteric fold| +E0431805|intra-abdominal pressure|intraabdominal pressure| +E0431806|intra-cerebellar nucleus|intracerebellar nucleus| +E0431807|intra-cranial aerocele|intracranial aerocele| +E0431807|intra-cranial aerocoele|intracranial aerocele| +E0431807|intracranial aerocoele|intracranial aerocele| +E0431808|intra-cutaneous injection|intracutaneous injection| +E0431809|intramedullary haemorrhage|intramedullary hemorrhage| +E0431810|intrapulpal anaesthesia|intrapulpal anesthesia| +E0431811|intra-uterine contraception|intrauterine contraception| +E0431842|jaw winking|jaw-winking| +E0431845|jet injection|jet-injection| +E0431850|Jaffe Lichtenstein syndrome|Jaffe-Lichtenstein syndrome| +E0431850|Jaffe Lichtenstein's syndrome|Jaffe-Lichtenstein syndrome| +E0431850|Jaffe-Lichtenstein's syndrome|Jaffe-Lichtenstein syndrome| +E0431854|Kallmann syndrome|Kallmann's syndrome| +E0431856|keratinising cyst|keratinizing cyst| +E0431862|keto acid decarboxylase deficiency|ketoacid decarboxylase deficiency| +E0431863|ketosis prone diabetes|ketosis-prone diabetes| +E0431875|Klein Waardenburg syndrome|Klein-Waardenburg syndrome| +E0431877|Kolmogorov Smirnov test|Kolmogorov-Smirnov test| +E0431878|Krukenberg's tumour|Krukenberg's tumor| +E0431883|Klippel Trenaunay syndrome|Klippel-Trenaunay syndrome| +E0431890|jack-o'-lantern|jack-o-lantern| +E0431891|infralow|infra-low| +E0431892|infra-hisian|infra-Hisian| +E0431892|infraHisian|infra-Hisian| +E0431892|infrahisian|infra-Hisian| +E0431893|infra-hisian block|infra-Hisian block| +E0431893|infraHisian block|infra-Hisian block| +E0431893|infrahisian block|infra-Hisian block| +E0431894|infra-human|infrahuman| +E0431895|mossy fibre|mossy fiber| +E0431896|infraaortic|infra-aortic| +E0431897|infra-therapeutic|infratherapeutic| +E0431898|infra-thoracic|infrathoracic| +E0431899|infraauricular|infra-auricular| +E0431900|infra-sellar|infrasellar| +E0431901|infra-popliteal|infrapopliteal| +E0431902|infra-red optometer|infrared optometer| +E0431903|infra-red spectroscopy|infrared spectroscopy| +E0431904|infra-red spectrometry|infrared spectrometry| +E0431905|near infra-red spectroscopy|near-infrared spectroscopy| +E0431905|near infrared spectroscopy|near-infrared spectroscopy| +E0431905|near-infra-red spectroscopy|near-infrared spectroscopy| +E0431907|gamete intra-fallopian transfer|gamete intrafallopian transfer| +E0431909|intra-cytoplasmatic sperm injection|intracytoplasmatic sperm injection| +E0431911|intraacinar|intra-acinar| +E0431912|intraventral tegmental area|intra-ventral tegmental area| +E0431914|intra-sleep|intrasleep| +E0431915|intra-sleep awakening|intrasleep awakening| +E0431916|intraobserver|intra-observer| +E0431917|intrainvestigator|intra-investigator| +E0431918|intraabdominally|intra-abdominally| +E0431920|IV|iv| +E0431924|juxtaarterial|juxta-arterial| +E0431925|juxta-osseous|juxtaosseous| +E0431926|juxtadural|juxta-dural| +E0431927|juxta-epithelial|juxtaepithelial| +E0431928|juxta-pleural|juxtapleural| +E0431929|juxta-centromeric|juxtacentromeric| +E0431930|juxtaalveolar|juxta-alveolar| +E0431941|Koplik's spot|Koplik spot| +E0431942|Korsakoff syndrome|Korsakoff's syndrome| +E0431942|Korsakov syndrome|Korsakoff's syndrome| +E0431942|Korsakov's syndrome|Korsakoff's syndrome| +E0431943|K-ras|KRAS| +E0431943|Kras|KRAS| +E0431944|Krebs cycle|Krebs' cycle| +E0431944|Krebs's cycle|Krebs' cycle| +E0431946|Kyoto Wistar rat|Kyoto-Wistar rat| +E0431949|L.E. cell|LE cell| +E0431954|lactosylceramidosis|lactosyl ceramidosis| +E0431965|Landouzy Dejerine dystrophy|Landouzy-Dejerine dystrophy| +E0431968|Langerhans cell granulomatosis|Langerhans-cell granulomatosis| +E0431974|Lasegue's sign|Lasegue sign| +E0431991|left gastro-pancreatic fold|left gastropancreatic fold| +E0431992|gastro-pancreatic|gastropancreatic| +E0432017|Leptosylla segnis|Leptopsylla segnis| +E0432023|Leptospira interrogans serogroup Australis|Leptospira interrogans, serogroup Australis| +E0432024|L. interrogans serogroup Australis|L. interrogans, serogroup Australis| +E0432025|Leptospira interrogans serogroup Bataviae|Leptospira interrogans, serogroup Bataviae| +E0432026|L. interrogans serogroup Bataviae|L. interrogans, serogroup Bataviae| +E0432027|Leptospira interrogans serogroup Grippotyphosa|Leptospira interrogans, serogroup Grippotyphosa| +E0432028|L. interrogans serogroup Grippotyphosa|L. interrogans, serogroup Grippotyphosa| +E0432029|Leptospira interrogans serogroup Icterohemorrhagiae|Leptospira interrogans, serogroup Icterohaemorrhagiae| +E0432030|L. interrogans serogroup Icterohaemorrhagiae|L. interrogans, serogroup Icterohaemorrhagiae| +E0432031|Leptospira interrogans serogroup Pyrogenes|Leptospira interrogans, serogroup Pyrogenes| +E0432032|L. interrogans serogroup Pyrogenes|L. interrogans, serogroup Pyrogenes| +E0432035|Leuconostoc mesenteroides ssp. dextranicum|Leuconostoc mesenteroides subsp. dextranicum| +E0432038|leucorrhagia|leukorrhagia| +E0432039|Lichtheim sign|Lichtheim's sign| +E0432045|lieno-renal shunt|lienorenal shunt| +E0432046|lieno-mesenteric|lienomesenteric| +E0432047|lieno-portal|lienoportal| +E0432070|Lignac Fanconi syndrome|Lignac-Fanconi syndrome| +E0432079|linear morphoea|linear morphea| +E0432081|linguo-apically|linguoapically| +E0432082|bucco-linguo-facial|buccolinguofacial| +E0432083|bucco-linguo-facial apraxia|buccolinguofacial apraxia| +E0432085|bucco-linguo-masticatory dyskinesia|buccolinguomasticatory dyskinesia| +E0432086|bucco-linguo-masticatory syndrome|buccolinguomasticatory syndrome| +E0432087|linguolabial|linguo-labial| +E0432088|linguo-buccal|linguobuccal| +E0432089|linguo-pharyngeal|linguopharyngeal| +E0432090|linguo-intrusive|linguointrusive| +E0432091|linguo-statistical|linguostatistical| +E0432093|linguo-facial|linguofacial| +E0432094|linguohypoglossal|linguo-hypoglossal| +E0432095|linguo-mandibular|linguomandibular| +E0432097|linguo-palatal|linguopalatal| +E0432098|linguo-version|linguoversion| +E0432101|long-term memory|long term memory| +E0432102|low-purine diet|low purine diet| +E0432103|low-residue diet|low residue diet| +E0432111|lipaemia retinalis|lipemia retinalis| +E0432112|leucaemic retinitis|leukemic retinitis| +E0432112|leucemic retinitis|leukemic retinitis| +E0432112|leukaemic retinitis|leukemic retinitis| +E0432137|Lovset's manoeuvre|Lovset's maneuver| +E0432138|lower segment caesarean section|lower segment cesarean section| +E0432138|lower segment caesarian section|lower segment cesarean section| +E0432138|lower segment cesarian section|lower segment cesarean section| +E0432148|Lu. umbratilis|L. umbratilis| +E0432151|Lyell syndrome|Lyell's syndrome| +E0432157|lymphogenous leucaemia|lymphogenous leukemia| +E0432157|lymphogenous leucemia|lymphogenous leukemia| +E0432157|lymphogenous leukaemia|lymphogenous leukemia| +E0432159|lympho-reticular system|lymphoreticular system| +E0432184|maxillo-mandibular fixation|maxillomandibular fixation| +E0432188|mixed anxiety depressive disorder|mixed anxiety-depressive disorder| +E0432189|multiple acyl-CoA-dehydrogenase deficiency|multiple acyl-CoA dehydrogenase deficiency| +E0432193|myoadenylate deaminase|myo-adenylate deaminase| +E0432195|main en griffe|main-en-griffe| +E0432208|manubrio-sternal|manubriosternal| +E0432209|manubrio-sternal joint|manubriosternal joint| +E0432210|marasmic-kwashiorkor|marasmic kwashiorkor| +E0432213|Marchiafava Bignami syndrome|Marchiafava-Bignami syndrome| +E0432216|Maroteaux Lamy syndrome|Maroteaux-Lamy syndrome| +E0432218|matzoh|matzo| +E0432236|Mediterranean anaemia|Mediterranean anemia| +E0432239|megacystis megaureter syndrome|megacystis-megaureter syndrome| +E0432252|mento-posterior position|mentoposterior position| +E0432262|metaphysial dysostosis|metaphyseal dysostosis| +E0432264|Metis|metis| +E0432276|mid-axilla|midaxilla| +E0432277|mid-axillary line|midaxillary line| +E0432280|milk-leg|milk leg| +E0432284|miners' elbow|miner's elbow| +E0432287|mis-sense mutation|missense mutation| +E0432290|mixed haemorrhoid|mixed hemorrhoid| +E0432291|mixed leucocyte reaction|mixed leukocyte reaction| +E0432300|mono-factorial|monofactorial| +E0432302|monophthalmos|monophthalmus| +E0432310|moon face|moonface| +E0432310|moon-face|moonface| +E0432311|Morgan|morgan| +E0432315|Morquio Ullrich syndrome|Morquio-Ullrich syndrome| +E0432329|mu chain disease|mu-chain disease| +E0432332|mud bath|mud-bath| +E0432332|mudbath|mud-bath| +E0432338|multiple sulphatase deficiency|multiple sulfatase deficiency| +E0432344|muscularisation|muscularization| +E0432372|myo-endothelial|myoendothelial| +E0432373|myo-tendinous|myotendinous| +E0432380|naegleriosis|naegleriasis| +E0432387|naso-alveolar|nasoalveolar| +E0432388|naso-tracheal intubation|nasotracheal intubation| +E0432390|naso-intestinal|nasointestinal| +E0432391|nasoocular|naso-ocular| +E0432392|naso-oesophageal|naso-esophageal| +E0432392|nasoesophageal|naso-esophageal| +E0432392|nasooesophageal|naso-esophageal| +E0432393|blepharonasofacial|blepharo-naso-facial| +E0432394|naso-sinusal|nasosinusal| +E0432395|nasosinus|naso-sinus| +E0432397|naso-respiratory|nasorespiratory| +E0432398|naso-genal|nasogenal| +E0432399|naso-endoscopy|nasoendoscopy| +E0432401|naso-jejunal|nasojejunal| +E0432402|nasooccipital axis|naso-occipital axis| +E0432403|nasooccipital|naso-occipital| +E0432404|naso-ethmoidal|nasoethmoidal| +E0432405|nasoethmoidorbital|naso-ethmoid-orbital| +E0432406|nasoethmoid|naso-ethmoid| +E0432407|naso-biliary|nasobiliary| +E0432409|native born|native-born| +E0432412|necrotising arteritis|necrotizing arteritis| +E0432413|necrotising erysipelas|necrotizing erysipelas| +E0432439|Netherton syndrome|Netherton's syndrome| +E0432447|neuro-epithelial tumor|neuroepithelial tumor| +E0432447|neuro-epithelial tumour|neuroepithelial tumor| +E0432447|neuroepithelial tumour|neuroepithelial tumor| +E0432469|N. otitidis caviarum|N. otitidis-caviarum| +E0432469|N. otitidiscaviarum|N. otitidis-caviarum| +E0432473|non-involution|noninvolution| +E0432474|nonvibratory tinnitus|non-vibratory tinnitus| +E0432475|non-accredited|nonaccredited| +E0432476|non-comitant|noncomitant| +E0432477|non-comitant strabismus|noncomitant strabismus| +E0432478|non-diagnosis|nondiagnosis| +E0432479|Nonne Milroy Meige syndrome|Nonne-Milroy-Meige syndrome| +E0432480|non-profit|nonprofit| +E0432481|non-profit|nonprofit| +E0432482|non-staphylococcal scalded skin syndrome|nonstaphylococcal scalded skin syndrome| +E0432482|non-staphylococcal scalded-skin syndrome|nonstaphylococcal scalded skin syndrome| +E0432482|nonstaphylococcal scalded-skin syndrome|nonstaphylococcal scalded skin syndrome| +E0432483|non-thrombocytopenic|nonthrombocytopenic| +E0432553|Bitot spot|Bitot's spot| +E0432554|Di Guglielmo's syndrome|Di Guglielmo syndrome| +E0432554|DiGuglielmo syndrome|Di Guglielmo syndrome| +E0432554|DiGuglielmo's syndrome|Di Guglielmo syndrome| +E0432555|Gartner cyst|Gartner's cyst| +E0432556|Gasser syndrome|Gasser's syndrome| +E0432565|oil-tanker|oil tanker| +E0432573|OCA|OCa| +E0432575|occipito-anterior position|occipitoanterior position| +E0432588|oculo-pupillary reflex|oculopupillary reflex| +E0432600|organism identification number|Organism Identification Number| +E0432604|old age|old-age| +E0432611|SIS oncogene|sis oncogene| +E0432618|open loop|open-loop| +E0432626|oro-caecal transit time|orocoecal transit time| +E0432626|oro-cecal transit time|orocoecal transit time| +E0432626|oro-coecal transit time|orocoecal transit time| +E0432626|orocaecal transit time|orocoecal transit time| +E0432626|orocecal transit time|orocoecal transit time| +E0432627|oroocular|oro-ocular| +E0432628|oro-dental|orodental| +E0432630|orocaudal|oro-caudal| +E0432631|oral hairy leucoplakia|oral hairy leukoplakia| +E0432635|orbital pseudo-tumor|orbital pseudotumor| +E0432635|orbital pseudo-tumour|orbital pseudotumor| +E0432635|orbital pseudotumour|orbital pseudotumor| +E0432647|oro-tracheal intubation|orotracheal intubation| +E0432650|orthopaedic surgery|orthopedic surgery| +E0432672|over-generosity|overgenerosity| +E0432673|over-generous|overgenerous| +E0432674|over-shirt|overshirt| +E0432682|Ps|P s| +E0432683|Ps.|Ps| +E0432688|post-inertia dyskinesia|postinertia dyskinesia| +E0432695|Pajot's manoeuvre|Pajot's maneuver| +E0432707|pancreatico-jejunal|pancreaticojejunal| +E0432725|para-sagittal plane|parasagittal plane| +E0432730|para-vertebral line|paravertebral line| +E0432731|parietooccipital suture|parieto-occipital suture| +E0432752|pure tone threshold|pure-tone threshold| +E0432755|passionfruit|passion fruit| +E0432756|passion fruit woodiness virus|passionfruit woodiness virus| +E0432762|Paterson Brown Kelly syndrome|Paterson-Brown-Kelly syndrome| +E0432767|peak-flow meter|peak flow meter| +E0432775|paediatric dentistry|pediatric dentistry| +E0432784|psoralen ultraviolet A therapy|psoralen-ultraviolet A therapy| +E0432797|perianal haematoma|perianal hematoma| +E0432811|phaco-antigenic|phacoantigenic| +E0432811|phako-antigenic|phacoantigenic| +E0432811|phakoantigenic|phacoantigenic| +E0432812|phaco-antigenic uveitis|phacoantigenic uveitis| +E0432812|phako-antigenic uveitis|phacoantigenic uveitis| +E0432812|phakoantigenic uveitis|phacoantigenic uveitis| +E0432815|pharmaco-therapeutics|pharmacotherapeutics| +E0432818|pharyngo-tonsillar|pharyngotonsillar| +E0432819|pharyngo-upper oesophageal sphincter|pharyngo-upper esophageal sphincter| +E0432821|pharyngocutan|pharyngo-cutan| +E0432822|pharyngocutaneous|pharyngo-cutaneous| +E0432823|pharyngo-esophagoplasty|pharyngoesophagoplasty| +E0432823|pharyngo-oesophagoplasty|pharyngoesophagoplasty| +E0432839|photo-luminescence|photoluminescence| +E0432842|photo-protection|photoprotection| +E0432860|pietism|Pietism| +E0432862|pigeon-chest|pigeon chest| +E0432899|port wine stain|port-wine stain| +E0432899|portwine stain|port-wine stain| +E0432903|pleuro-pneumonectomy|pleuropneumonectomy| +E0432904|pleuro-amniotic|pleuroamniotic| +E0432905|pleuro-parenchymal|pleuroparenchymal| +E0432949|polyradiculo-neuropathy|polyradiculoneuropathy| +E0432959|post gastrectomy syndrome|post-gastrectomy syndrome| +E0432960|post pericardiotomy syndrome|post-pericardiotomy syndrome| +E0432961|post vaccinal encephalomyelitis|post-vaccinal encephalomyelitis| +E0432961|postvaccinal encephalomyelitis|post-vaccinal encephalomyelitis| +E0432962|post concussional syndrome|post-concussional syndrome| +E0432962|postconcussional syndrome|post-concussional syndrome| +E0432963|post traumatic brain syndrome|post-traumatic brain syndrome| +E0432963|posttraumatic brain syndrome|post-traumatic brain syndrome| +E0432964|post-basic stare|postbasic stare| +E0432967|posterior fontanel|posterior fontanelle| +E0432972|post-hypnotic amnesia|posthypnotic amnesia| +E0432973|post-mature labor|postmature labor| +E0432974|post-natal development|postnatal development| +E0432975|post-spinal headache|postspinal headache| +E0432976|post-thrombotic syndrome|postthrombotic syndrome| +E0432977|post-traumatic amnesia|posttraumatic amnesia| +E0432979|pre-maxillary bone|premaxillary bone| +E0432980|pre-motor area|premotor area| +E0432981|pre-occipital incisure|preoccipital incisure| +E0432983|pre-psychotic schizophrenia|prepsychotic schizophrenia| +E0432985|pre-sacral nerve|presacral nerve| +E0432989|pre-vascular|prevascular| +E0432991|primary extra-pulmonary coccidioidomycosis|primary extrapulmonary coccidioidomycosis| +E0432997|procaryotic cell|prokaryotic cell| +E0433003|propionic acidaemia|propionic acidemia| +E0433029|Prader Willi syndrome|Prader-Willi syndrome| +E0433030|Prausnitz Kustner test|Prausnitz-Kustner test| +E0433036|pre-diabetes|prediabetes| +E0433037|pre-fab|prefab| +E0433038|pre-fab|prefab| +E0433051|procto-colectomy|proctocolectomy| +E0433052|procto-sigmoidoscopy|proctosigmoidoscopy| +E0433053|procto-colitis|proctocolitis| +E0433071|pseudo cowpox virus|pseudocowpox virus| +E0433071|pseudo-cowpox virus|pseudocowpox virus| +E0433075|pseudo-croup|pseudocroup| +E0433084|psycho-physic|psychophysic| +E0433090|racemose aneurism|racemose aneurysm| +E0433093|rabbit papilloma virus|rabbit papillomavirus| +E0433101|pseudo-athetosis|pseudoathetosis| +E0433102|pseudo-exophoria|pseudoexophoria| +E0433103|pseudo-hypothyroidism|pseudohypothyroidism| +E0433105|pseudo-osteomalacic pelvis|pseudoosteomalacic pelvis| +E0433116|pulmo-diaphragmatic ligament|pulmodiaphragmatic ligament| +E0433117|pulmo-renal|pulmorenal| +E0433118|pulmo-renal syndrome|pulmorenal syndrome| +E0433119|cardio-pulmo-cerebral resuscitation|cardiopulmocerebral resuscitation| +E0433120|pulmo-cardiac|pulmocardiac| +E0433121|pulmo-cardiac syndrome|pulmocardiac syndrome| +E0433122|pulmo-mediastinal|pulmomediastinal| +E0433125|pure line|pureline| +E0433125|pure-line|pureline| +E0433126|pure line|pureline| +E0433126|pure-line|pureline| +E0433128|pyelo-caliceal|pyelocaliceal| +E0433128|pyelo-calyceal|pyelocaliceal| +E0433128|pyelocalyceal|pyelocaliceal| +E0433129|pyelo-ureterostomy|pyeloureterostomy| +E0433130|pyelo-ureteral|pyeloureteral| +E0433131|pyelo-ureteral junction|pyeloureteral junction| +E0433134|pyloro-antral|pyloroantral| +E0433135|gastro-pyloro-duodenal|gastropyloroduodenal| +E0433136|pyloro-bulbar|pylorobulbar| +E0433137|pyloro-duodenal|pyloroduodenal| +E0433138|pyoovarium|pyo-ovarium| +E0433143|R AW|RAW| +E0433145|radio-cardiography|radiocardiography| +E0433146|radioreceptorassay|radioreceptor assay| +E0433157|reaction formation|reaction-formation| +E0433171|redbug|red bug| +E0433178|Refsum syndrome|Refsum's syndrome| +E0433187|recent event memory|recent-event memory| +E0433194|renal haemorrhage|renal hemorrhage| +E0433196|reno-jejunal|renojejunal| +E0433197|renoaortic|reno-aortic| +E0433198|renoaortic ratio|reno-aortic ratio| +E0433199|renoprotective|reno-protective| +E0433230|right atrio-ventricular valve|right atrioventricular valve| +E0433231|right gastro-pancreatic fold|right gastropancreatic fold| +E0433232|retro-vector|retrovector| +E0433233|retro-aldol|retroaldol| +E0433234|retro-esophageal recess|retroesophageal recess| +E0433234|retro-oesophageal recess|retroesophageal recess| +E0433234|retrooesophageal recess|retroesophageal recess| +E0433235|left retro-esophageal recess|left retroesophageal recess| +E0433235|left retro-oesophageal recess|left retroesophageal recess| +E0433235|left retrooesophageal recess|left retroesophageal recess| +E0433236|retro-esophageal aortic arch|retroesophageal aortic arch| +E0433236|retro-oesophageal aortic arch|retroesophageal aortic arch| +E0433236|retrooesophageal aortic arch|retroesophageal aortic arch| +E0433237|retro-esophageal carotid artery|retroesophageal carotid artery| +E0433237|retro-oesophageal carotid artery|retroesophageal carotid artery| +E0433237|retrooesophageal carotid artery|retroesophageal carotid artery| +E0433238|retro-esophageal pulmonary artery|retroesophageal pulmonary artery| +E0433238|retro-oesophageal pulmonary artery|retroesophageal pulmonary artery| +E0433238|retrooesophageal pulmonary artery|retroesophageal pulmonary artery| +E0433239|retro-esophageal subclavian artery|retroesophageal subclavian artery| +E0433239|retro-oesophageal subclavian artery|retroesophageal subclavian artery| +E0433239|retrooesophageal subclavian artery|retroesophageal subclavian artery| +E0433240|right retro-esophageal recess|right retroesophageal recess| +E0433240|right retro-oesophageal recess|right retroesophageal recess| +E0433240|right retrooesophageal recess|right retroesophageal recess| +E0433241|retroinverso|retro-inverso| +E0433242|retroaortic|retro-aortic| +E0433243|retroaortic lymph node|retro-aortic lymph node| +E0433244|retroaortic node|retro-aortic node| +E0433245|retroendocytose|retro-endocytose| +E0433246|retroendocytosis|retro-endocytosis| +E0433247|retroodontoid|retro-odontoid| +E0433248|retro-reflective|retroreflective| +E0433249|retrobinding|retro-binding| +E0433250|retro-grade pyelography|retrograde pyelography| +E0433253|rod and frame test|rod-and-frame test| +E0433256|rhino-sinusal|rhinosinusal| +E0433257|chronic rhino-sinusitis|chronic rhinosinusitis| +E0433258|allergic rhino-sinusitis|allergic rhinosinusitis| +E0433262|tricho-rhino-phalangeal syndrome type I|trichorhinophalangeal syndrome type I| +E0433263|tricho-rhino-phalangeal syndrome type II|trichorhinophalangeal syndrome type II| +E0433264|tricho-rhino-phalangeal syndrome type III|trichorhinophalangeal syndrome type III| +E0433266|rhinoorbitalcerebral|rhino-orbital-cerebral| +E0433267|rhinoorbitalcerebral mucormycosis|rhino-orbital-cerebral mucormycosis| +E0433268|rhinoorbital mucormycosis|rhino-orbital mucormycosis| +E0433269|rhinoorbital|rhino-orbital| +E0433277|retro-rectal space|retrorectal space| +E0433286|roller-skate|roller skate| +E0433287|roller skate|roller-skate| +E0433292|Rose-Waaler test|Rose Waaler test| +E0433304|sacro-anterior position|sacroanterior position| +E0433305|sacro-coccygeal teratoma|sacrococcygeal teratoma| +E0433308|saddle back tamarin|saddle-back tamarin| +E0433308|saddleback tamarin|saddle-back tamarin| +E0433314|Salmonella abortus-equi|Salmonella abortusequi| +E0433315|S. abortus-equi|S. abortusequi| +E0433327|sandburr|sandbur| +E0433328|Sandifer syndrome|Sandifer's syndrome| +E0433344|service connected disability|service-connected disability| +E0433345|spino-cerebellar degeneration|spinocerebellar degeneration| +E0433346|sub-acute coronary disease|subacute coronary disease| +E0433352|Schilling's leucaemia|Schilling's leukemia| +E0433352|Schilling's leucemia|Schilling's leukemia| +E0433352|Schilling's leukaemia|Schilling's leukemia| +E0433355|schizo affective disorder|schizoaffective disorder| +E0433355|schizo-affective disorder|schizoaffective disorder| +E0433366|sea-cow|sea cow| +E0433366|seacow|sea cow| +E0433372|sea-snake|sea snake| +E0433372|seasnake|sea snake| +E0433374|sea blue histiocyte|sea-blue histiocyte| +E0433376|sodium dodecyl sulfate-polyacrylamide gel electrophoresis|sodium dodecyl sulphate-polyacrylamide gel electrophoresis| +E0433377|SDS PAGE|SDS-PAGE| +E0433378|sodium dodecyl sulfate-PAGE|sodium dodecyl sulphate-PAGE| +E0433378|sodium dodecylsulfate-PAGE|sodium dodecyl sulphate-PAGE| +E0433378|sodium dodecylsulphate-PAGE|sodium dodecyl sulphate-PAGE| +E0433380|SDS polyacrylamide gel electrophoresis|SDS-polyacrylamide gel electrophoresis| +E0433382|secondary chemo-prophylaxis|secondary chemoprophylaxis| +E0433384|secondary haemorrhage|secondary hemorrhage| +E0433390|self fertilise|self-fertilize| +E0433390|self fertilize|self-fertilize| +E0433390|self-fertilise|self-fertilize| +E0433391|self incrimination|self-incrimination| +E0433392|self tolerance|self-tolerance| +E0433393|self tolerant|self-tolerant| +E0433394|self care|self-care| +E0433394|selfcare|self-care| +E0433395|self doubt|self-doubt| +E0433397|self perception|self-perception| +E0433398|semi-consciousness|semiconsciousness| +E0433400|semi-oval center|semioval center| +E0433415|serum therapy|serumtherapy| +E0433424|shake-down|shakedown| +E0433431|shin-oak|shin oak| +E0433435|shock lung syndrome|shock-lung syndrome| +E0433438|short-gut syndrome|short gut syndrome| +E0433439|short-increment sensitivity index test|short increment sensitivity index test| +E0433441|short sightedness|short-sightedness| +E0433441|shortsightedness|short-sightedness| +E0433442|short sighted|short-sighted| +E0433442|shortsighted|short-sighted| +E0433443|short-wave therapy|short wave therapy| +E0433443|shortwave therapy|short wave therapy| +E0433445|shut in|shut-in| +E0433446|shut in|shut-in| +E0433450|sideropaenia|sideropenia| +E0433458|singers nodule|singer's nodule| +E0433458|singers' nodule|singer's nodule| +E0433488|soft bodied tick|soft-bodied tick| +E0433523|split-tail|splittail| +E0433524|spongiform leucodystrophy|spongiform leukodystrophy| +E0433527|hepatosplenorenal|hepato-spleno-renal| +E0433528|porto-spleno-renal|portosplenorenal| +E0433529|splenosystemic|spleno-systemic| +E0433530|splenopeptide|spleno-peptide| +E0433532|spleno-gonadal fusion|splenogonadal fusion| +E0433533|spleno-caval|splenocaval| +E0433534|spleno-caval shunt|splenocaval shunt| +E0433535|spleno-portal|splenoportal| +E0433537|spleno-pancreatectomy|splenopancreatectomy| +E0433538|spleno-mesenteric|splenomesenteric| +E0433577|leukoderma acquisitum centrifugum|leucoderma acquisitum centrifugum| +E0433579|long arm cast|long-arm cast| +E0433580|low amplitude contraction|low-amplitude contraction| +E0433581|lung adeno-carcinoma cell|lung adenocarcinoma cell| +E0433587|acro-lentiginous melanoma|acrolentiginous melanoma| +E0433588|acro-lentiginous|acrolentiginous| +E0433590|acrorenal syndrome|acro-renal syndrome| +E0433591|acro-renal|acrorenal| +E0433614|ankle foot orthosis|ankle-foot orthosis| +E0433635|acute haematogenous osteomyelitis|acute hematogenous osteomyelitis| +E0433638|anterior ischaemic optic neuropathy|anterior ischemic optic neuropathy| +E0433676|Allan Herndon Dudley syndrome|Allan-Herndon-Dudley syndrome| +E0433680|Mont-Amba|Mont Amba| +E0433708|angio magnetic resonance imaging|angio-magnetic resonance imaging| +E0433708|angiomagnetic resonance imaging|angio-magnetic resonance imaging| +E0433709|angio MRI|angio-MRI| +E0433710|angio computed tomography|angio-computed tomography| +E0433711|angio CT|angio-CT| +E0433714|vibratory angio-oedema|vibratory angio-edema| +E0433714|vibratory angioedema|vibratory angio-edema| +E0433714|vibratory angiooedema|vibratory angio-edema| +E0433715|adult angio-sarcoma|adult angiosarcoma| +E0433716|angio-edema-urticaria|angioedema-urticaria| +E0433716|angio-oedema-urticaria|angioedema-urticaria| +E0433716|angiooedema-urticaria|angioedema-urticaria| +E0433718|angio-follicular lymphoid hyperplasia|angiofollicular lymphoid hyperplasia| +E0433719|benign angio-follicular hyperplasia|benign angiofollicular hyperplasia| +E0433720|angio-follicular hyperplasia|angiofollicular hyperplasia| +E0433721|angio-follicular lymph node hyperplasia|angiofollicular lymph node hyperplasia| +E0433722|angioeccrine hamartoma|angio-eccrine hamartoma| +E0433723|angio-tumoural|angio-tumoral| +E0433723|angiotumoral|angio-tumoral| +E0433723|angiotumoural|angio-tumoral| +E0433724|anti-tumoural|anti-tumoral| +E0433724|antitumoral|anti-tumoral| +E0433724|antitumoural|anti-tumoral| +E0433725|angiosurgical|angio-surgical| +E0433726|angiosurgically|angio-surgically| +E0433727|angio-endothelial|angioendothelial| +E0433728|angio magnetic resonance|angio-magnetic resonance| +E0433728|angiomagnetic resonance|angio-magnetic resonance| +E0433758|bread board|breadboard| +E0433758|bread-board|breadboard| +E0433773|antero-septal infarction|anteroseptal infarction| +E0433775|anti-clockwise|anticlockwise| +E0433776|anti-clockwise|anticlockwise| +E0433777|anti-mongolism|antimongolism| +E0433780|antro-choanal|antrochoanal| +E0433791|cutaneous appendicovesicostomy|cutaneous appendico-vesicostomy| +E0433792|appendico-vesicostomy|appendicovesicostomy| +E0433793|appendico-duodenostomy|appendicoduodenostomy| +E0433794|appendico-umbilical|appendicoumbilical| +E0433795|appendico-vesical fistula|appendicovesical fistula| +E0433796|appendico-vesical|appendicovesical| +E0433807|clearing house|clearinghouse| +E0433807|clearing-house|clearinghouse| +E0433808|cloak room|cloakroom| +E0433815|cow bird|cowbird| +E0433820|dock master|dockmaster| +E0433824|fin-less|finless| +E0433838|appendico-caecal|appendico-cecal| +E0433838|appendico-coecal|appendico-cecal| +E0433838|appendicocaecal|appendico-cecal| +E0433838|appendicocecal|appendico-cecal| +E0433838|appendicocoecal|appendico-cecal| +E0433839|appendicoileal fistula|appendico-ileal fistula| +E0433840|appendicoileal|appendico-ileal| +E0433841|appendicocutaneous fistula|appendico-cutaneous fistula| +E0433842|appendicocutaneous|appendico-cutaneous| +E0433866|arterioarterial fistula|arterio-arterial fistula| +E0433867|arterio-venous fistula thrombosis|arteriovenous fistula thrombosis| +E0433905|Henck Assman disease|Henck-Assman disease| +E0433941|balano-cavernous|balanocavernous| +E0433953|Barth's syndrome|Barth syndrome| +E0433981|basi-sphenoid|basisphenoid| +E0433985|red berried elder|red-berried elder| +E0433998|bio-morphological|biomorphological| +E0433999|bio-inorganic|bioinorganic| +E0434000|bio-inorganic chemistry|bioinorganic chemistry| +E0434001|bio-politics|biopolitics| +E0434002|bio-persistence|biopersistence| +E0434003|bioorganic|bio-organic| +E0434004|bio-safety|biosafety| +E0434005|bio-electrical impedance analysis|bioelectrical impedance analysis| +E0434006|bio-adhesion|bioadhesion| +E0434007|bio heat equation|bio-heat equation| +E0434008|bio heat transfer equation|bio-heat transfer equation| +E0434009|bio-bank|biobank| +E0434010|bio-synthetic|biosynthetic| +E0434011|bio-electrical impedance|bioelectrical impedance| +E0434012|bio-electric impedance|bioelectric impedance| +E0434013|bio-oxidation|biooxidation| +E0434014|bio-oxidise|biooxidize| +E0434014|bio-oxidize|biooxidize| +E0434014|biooxidise|biooxidize| +E0434015|biooptical|bio-optical| +E0434040|blackfin sea robin|blackfin searobin| +E0434040|blackfin sea-robin|blackfin searobin| +E0434045|blacktail pike conger|blacktail pike-conger| +E0434050|Blacky Pictures Test|Blacky pictures test| +E0434053|blepharo-kerato-conjunctivitis|blepharokeratoconjunctivitis| +E0434054|blepharo-coloboma|blepharocoloboma| +E0434065|Bobo Dioulasso|Bobo-Dioulasso| +E0434075|two colored bolete|two-colored bolete| +E0434084|branchio-otorenal|branchio-oto-renal| +E0434084|branchiootorenal|branchio-oto-renal| +E0434091|bott|bot| +E0434092|borderline ovarian tumour|borderline ovarian tumor| +E0434095|virgin's bower|virgin's-bower| +E0434103|brady tachy syndrome|brady-tachy syndrome| +E0434104|tachy brady syndrome|tachy-brady syndrome| +E0434107|brady-tachyarrhythmia|bradytachyarrhythmia| +E0434108|brady tachycardia syndrome|bradytachycardia syndrome| +E0434108|brady-tachycardia syndrome|bradytachycardia syndrome| +E0434119|red sided broadbill|red-sided broadbill| +E0434121|broncho-fiberoptic|bronchofiberoptic| +E0434122|broncho-esophageal fistula|bronchoesophageal fistula| +E0434122|broncho-oesophageal fistula|bronchoesophageal fistula| +E0434122|bronchooesophageal fistula|bronchoesophageal fistula| +E0434123|broncho-pulmonic|bronchopulmonic| +E0434124|broncho-biliary fistula|bronchobiliary fistula| +E0434125|bronchoobstructive syndrome|broncho-obstructive syndrome| +E0434126|bronchoobstructive|broncho-obstructive| +E0434127|bronchoobstruction|broncho-obstruction| +E0434146|red eared bulbul|red-eared bulbul| +E0434147|red vented bulbul|red-vented bulbul| +E0434148|white eared bulbul|white-eared bulbul| +E0434149|red whiskered bulbul|red-whiskered bulbul| +E0434151|white cheeked bulbul|white-cheeked bulbul| +E0434159|bustard pigeon|bustard-pigeon| +E0434180|cardiac accelerator center|cardiac-accelerator center| +E0434183|complement activating capacity|complement-activating capacity| +E0434184|chronic atropic candidosis|chronic atrophic candidosis| +E0434186|Clinical Advisory Committee|clinical advisory committee| +E0434193|haemoglobin Caen|hemoglobin Caen| +E0434198|cajuput tree|cajeput tree| +E0434199|cajuput oil|cajeput oil| +E0434204|calcitonin gene related peptide|calcitonin gene-related peptide| +E0434231|purple cappy lory|purple-cappy lory| +E0434232|carboxy terminal|carboxy-terminal| +E0434232|carboxyterminal|carboxy-terminal| +E0434233|carboxy-tetrahydrocannabinol|carboxy tetrahydrocannabinol| +E0434234|carboxy-phosphate|carboxy phosphate| +E0434234|carboxyphosphate|carboxy phosphate| +E0434236|carboxy seminaphthorhodafluor|carboxy-seminaphthorhodafluor| +E0434252|concave casqued hornbill|concave-casqued hornbill| +E0434253|casque headed iguana|casque-headed iguana| +E0434254|tree frog|treefrog| +E0434254|tree-frog|treefrog| +E0434255|casque headed tree frog|casque-headed treefrog| +E0434255|casque headed tree-frog|casque-headed treefrog| +E0434255|casque headed treefrog|casque-headed treefrog| +E0434255|casque-headed tree frog|casque-headed treefrog| +E0434255|casque-headed tree-frog|casque-headed treefrog| +E0434268|cell conditioned medium|cell-conditioned medium| +E0434269|beta CCM|beta-CCM| +E0434273|cranio-cervical malformation|craniocervical malformation| +E0434276|ileo-caeco-colonic|ileocecocolonic| +E0434276|ileo-ceco-colonic|ileocecocolonic| +E0434276|ileo-coeco-colonic|ileocecocolonic| +E0434276|ileocaecocolonic|ileocecocolonic| +E0434276|ileocoecocolonic|ileocecocolonic| +E0434277|caeco-rectal|cecorectal| +E0434277|caecorectal|cecorectal| +E0434277|ceco-rectal|cecorectal| +E0434277|coeco-rectal|cecorectal| +E0434277|coecorectal|cecorectal| +E0434278|caeco-rectal anastomosis|ceco-rectal anastomosis| +E0434278|caecorectal anastomosis|ceco-rectal anastomosis| +E0434278|cecorectal anastomosis|ceco-rectal anastomosis| +E0434278|coeco-rectal anastomosis|ceco-rectal anastomosis| +E0434278|coecorectal anastomosis|ceco-rectal anastomosis| +E0434279|caeco-cystoplasty|cecocystoplasty| +E0434279|caecocystoplasty|cecocystoplasty| +E0434279|ceco-cystoplasty|cecocystoplasty| +E0434279|coeco-cystoplasty|cecocystoplasty| +E0434279|coecocystoplasty|cecocystoplasty| +E0434280|caeco-colonic|cecocolonic| +E0434280|caecocolonic|cecocolonic| +E0434280|ceco-colonic|cecocolonic| +E0434280|coeco-colonic|cecocolonic| +E0434280|coecocolonic|cecocolonic| +E0434281|caeco-ileal|ceco-ileal| +E0434281|caecoileal|ceco-ileal| +E0434281|cecoileal|ceco-ileal| +E0434281|coeco-ileal|ceco-ileal| +E0434281|coecoileal|ceco-ileal| +E0434282|ileo-caeco-colic|ileocecocolic| +E0434282|ileo-ceco-colic|ileocecocolic| +E0434282|ileo-coeco-colic|ileocecocolic| +E0434282|ileocaecocolic|ileocecocolic| +E0434282|ileocoecocolic|ileocecocolic| +E0434283|ileo-caeco-rectal|ileocecorectal| +E0434283|ileo-ceco-rectal|ileocecorectal| +E0434283|ileo-coeco-rectal|ileocecorectal| +E0434283|ileocaecorectal|ileocecorectal| +E0434283|ileocoecorectal|ileocecorectal| +E0434284|caeco-proctostomy|caecoproctostomy| +E0434284|ceco-proctostomy|caecoproctostomy| +E0434284|cecoproctostomy|caecoproctostomy| +E0434284|coeco-proctostomy|caecoproctostomy| +E0434284|coecoproctostomy|caecoproctostomy| +E0434285|caeco-appendicular|ceco-appendicular| +E0434285|caecoappendicular|ceco-appendicular| +E0434285|cecoappendicular|ceco-appendicular| +E0434285|coeco-appendicular|ceco-appendicular| +E0434285|coecoappendicular|ceco-appendicular| +E0434286|caeco-ureterocele|cecoureterocele| +E0434286|caecoureterocele|cecoureterocele| +E0434286|ceco-ureterocele|cecoureterocele| +E0434286|coeco-ureterocele|cecoureterocele| +E0434286|coecoureterocele|cecoureterocele| +E0434289|cementodentinal junction|cemento-dentinal junction| +E0434291|centri-acinar|centriacinar| +E0434292|centri-nuclear|centrinuclear| +E0434293|centri-filtration|centrifiltration| +E0434300|craniocerebellocardiac syndrome|cranio-cerebello-cardiac syndrome| +E0434302|craniocerebellocardiac dysplasia|cranio-cerebello-cardiac dysplasia| +E0434303|cerebellobrainstem|cerebello-brainstem| +E0434304|cerebello-cortical|cerebellocortical| +E0434305|cerebellothalamocortical|cerebello-thalamo-cortical| +E0434311|cervico-humeral|cervicohumeral| +E0434312|constant-frequency train|constant frequency train| +E0434317|Erdheim Chester disease|Erdheim-Chester disease| +E0434320|child-bed|childbed| +E0434321|Ch'ing|Ching| +E0434322|black chinned tilapia|black-chinned tilapia| +E0434323|black chinned hummingbird|black-chinned hummingbird| +E0434324|leaf chinned bat|leaf-chinned bat| +E0434325|black chinned yuhina|black-chinned yuhina| +E0434328|cholangio-pancreaticography|cholangiopancreaticography| +E0434329|cholangio-pancreatogram|cholangiopancreatogram| +E0434330|percutaneous transhepatic cholangio drainage|percutaneous transhepatic cholangio-drainage| +E0434331|choledochogastric|choledocho-gastric| +E0434333|choledocho-enteric anastomosis|choledochoenteric anastomosis| +E0434334|choledochoenteric fistula|choledocho-enteric fistula| +E0434335|choledocho-pancreatic duct|choledochopancreatic duct| +E0434336|choledocho-vesical fistula|choledochovesical fistula| +E0434342|chondro-protective|chondroprotective| +E0434344|chondro-osteoplastic|chondroosteoplastic| +E0434346|chondro-hexasaccharide|chondrohexasaccharide| +E0434347|chondro-inductive|chondroinductive| +E0434373|circummaxillary|circum-maxillary| +E0434374|circumapical|circum-apical| +E0434375|circum-tropical|circumtropical| +E0434376|circum-pennate|circumpennate| +E0434378|circum-aortic|circumaortic| +E0434381|circum-spinal|circumspinal| +E0434406|chronic mesenteric ischaemia|chronic mesenteric ischemia| +E0434409|cell mediated immune|cell-mediated immune| +E0434414|sputter-coater|sputter coater| +E0434469|blue crowned conure|blue-crowned conure| +E0434472|green cheeked conure|green-cheeked conure| +E0434474|red fronted conure|red-fronted conure| +E0434476|cuffed oro-pharyngeal airway|cuffed oropharyngeal airway| +E0434492|cortico-limbic|corticolimbic| +E0434494|cortico-caudate|corticocaudate| +E0434495|Cooperative Osteosarcoma Study|cooperative osteosarcoma study| +E0434506|tree creeper|tree-creeper| +E0434506|treecreeper|tree-creeper| +E0434507|trumpet-creeper|trumpet creeper| +E0434512|short toed tree creeper|short-toed tree creeper| +E0434512|short toed tree-creeper|short-toed tree creeper| +E0434512|short toed treecreeper|short-toed tree creeper| +E0434512|short-toed tree-creeper|short-toed tree creeper| +E0434512|short-toed treecreeper|short-toed tree creeper| +E0434527|white winged crossbill|white-winged crossbill| +E0434535|chondroitin sulphate C|chondroitin sulfate C| +E0434544|cortico-striato-cerebellar|corticostriatocerebellar| +E0434558|Culver's root|Culver's-root| +E0434606|DAO|DAo| +E0434631|deep water|deep-water| +E0434631|deepwater|deep-water| +E0434646|de luxe|deluxe| +E0434651|Tenia dentata|Taenia dentata| +E0434652|fissura fimbrio-dentata|fissura fimbriodentata| +E0434659|dentomandibular|dento-mandibular| +E0434661|dentoenamel|dento-enamel| +E0434662|dentoenamel junction|dento-enamel junction| +E0434663|dento-maxillary|dentomaxillary| +E0434666|trichodentoosseous syndrome|tricho-dento-osseous syndrome| +E0434669|dermatoallergological|dermato-allergological| +E0434670|dermatoallergic|dermato-allergic| +E0434671|dermatomyopathy|dermato-myopathy| +E0434674|dermato-mucosal|dermatomucosal| +E0434675|dermatohistopathological|dermato-histopathological| +E0434679|dermato-venereological|dermatovenereological| +E0434681|dermo-hypodermic|dermohypodermic| +E0434682|dermomuscular|dermo-muscular| +E0434691|dextro enantiomer|dextro-enantiomer| +E0434695|D-TGA|d-TGA| +E0434695|DGTA|d-TGA| +E0434695|dTGA|d-TGA| +E0434696|dextro isomer|dextroisomer| +E0434696|dextro-isomer|dextroisomer| +E0434700|dextrobenzetimide|dextro-benzetimide| +E0434702|dextropropoxyphene hydrochloride|dextro-propoxyphene hydrochloride| +E0434704|d-amphetamine sulfate|d-amphetamine sulphate| +E0434729|direct occipito-posterior position|direct occipitoposterior position| +E0434755|duodeno-gastral reflux|duodenogastral reflux| +E0434756|duodeno-gastral|duodenogastral| +E0434757|duodenocholedochal|duodeno-choledochal| +E0434758|duodeno-duodenal|duodenoduodenal| +E0434759|duodeno-esophageal|duodenoesophageal| +E0434759|duodeno-oesophageal|duodenoesophageal| +E0434760|duodeno-esophageal reflux|duodenoesophageal reflux| +E0434760|duodeno-oesophageal reflux|duodenoesophageal reflux| +E0434763|dorso-ventral muscle|dorsoventral muscle| +E0434767|oculo-mandibular dyscephaly|oculomandibular dyscephaly| +E0434769|earpit deafness syndrome|earpit-deafness syndrome| +E0434770|deafness earpit syndrome|deafness-earpits syndrome| +E0434770|deafness earpits syndrome|deafness-earpits syndrome| +E0434770|deafness-earpit syndrome|deafness-earpits syndrome| +E0434789|extradural haematoma|extradural hematoma| +E0434814|endo-phagocytic|endophagocytic| +E0434815|endo-cellulase|endocellulase| +E0434821|entero-cutaneous fistula|enterocutaneous fistula| +E0434822|entero-vesical fistula|enterovesical fistula| +E0434823|entero-haemorrhagic Escherichia coli|enterohemorrhagic Escherichia coli| +E0434823|entero-hemorrhagic Escherichia coli|enterohemorrhagic Escherichia coli| +E0434823|enterohaemorrhagic Escherichia coli|enterohemorrhagic Escherichia coli| +E0434825|entero-mammary|enteromammary| +E0434826|entero-mesenteric|enteromesenteric| +E0434828|epauletted fruit bat|epauleted fruit bat| +E0434847|ethinyl oestriol|ethinyl estriol| +E0434848|ethinyl estradiol glucuronide|ethinylestradiol glucuronide| +E0434848|ethinyl oestradiol glucuronide|ethinylestradiol glucuronide| +E0434848|ethinyloestradiol glucuronide|ethinylestradiol glucuronide| +E0434849|ethinyl estradiol sulfate|ethinylestradiol sulfate| +E0434849|ethinyl estradiol sulphate|ethinylestradiol sulfate| +E0434849|ethinyl oestradiol sulfate|ethinylestradiol sulfate| +E0434849|ethinyl oestradiol sulphate|ethinylestradiol sulfate| +E0434849|ethinylestradiol sulphate|ethinylestradiol sulfate| +E0434849|ethinyloestradiol sulfate|ethinylestradiol sulfate| +E0434849|ethinyloestradiol sulphate|ethinylestradiol sulfate| +E0434849|ethynyl estradiol sulfate|ethinylestradiol sulfate| +E0434849|ethynyl estradiol sulphate|ethinylestradiol sulfate| +E0434849|ethynyl oestradiol sulfate|ethinylestradiol sulfate| +E0434849|ethynyl oestradiol sulphate|ethinylestradiol sulfate| +E0434849|ethynylestradiol sulfate|ethinylestradiol sulfate| +E0434849|ethynylestradiol sulphate|ethinylestradiol sulfate| +E0434849|ethynyloestradiol sulfate|ethinylestradiol sulfate| +E0434849|ethynyloestradiol sulphate|ethinylestradiol sulfate| +E0434850|ethinyl estradiol sulphonate|ethinyl estradiol sulfonate| +E0434850|ethinyl oestradiol sulfonate|ethinyl estradiol sulfonate| +E0434850|ethinyl oestradiol sulphonate|ethinyl estradiol sulfonate| +E0434850|ethinylestradiol sulfonate|ethinyl estradiol sulfonate| +E0434850|ethinylestradiol sulphonate|ethinyl estradiol sulfonate| +E0434850|ethinyloestradiol sulfonate|ethinyl estradiol sulfonate| +E0434850|ethinyloestradiol sulphonate|ethinyl estradiol sulfonate| +E0434851|ethinyl oestradiol-ethynodiol|ethinyl estradiol-ethynodiol| +E0434851|ethinylestradiol-ethynodiol|ethinyl estradiol-ethynodiol| +E0434851|ethinyloestradiol-ethynodiol|ethinyl estradiol-ethynodiol| +E0434852|ethinyl oestradiol-levonorgestrel|ethinyl estradiol-levonorgestrel| +E0434852|ethinylestradiol-levonorgestrel|ethinyl estradiol-levonorgestrel| +E0434852|ethinyloestradiol-levonorgestrel|ethinyl estradiol-levonorgestrel| +E0434906|faden operation|Faden operation| +E0434907|Cuppers Faden operation|Cuppers' Faden operation| +E0434907|Cuppers faden operation|Cuppers' Faden operation| +E0434907|Cuppers' faden operation|Cuppers' Faden operation| +E0434922|Ferrier Stone syndrome|Ferrier-Stone syndrome| +E0434932|fibro-caseous|fibrocaseous| +E0434937|white spotted filefish|whitespotted filefish| +E0434937|white-spotted filefish|whitespotted filefish| +E0434938|orange spotted filefish|orangespotted filefish| +E0434938|orange-spotted filefish|orangespotted filefish| +E0434951|farmers' lung disease|farmer's lung disease| +E0434968|fundus oriented perimetry|fundus-oriented perimetry| +E0434970|focal organising pneumonia|focal organizing pneumonia| +E0435012|Galla Rhois|Galla rhois| +E0435021|red eye gaper|redeye gaper| +E0435021|red-eye gaper|redeye gaper| +E0435041|esophago-gastro-duodenal|esophagogastroduodenal| +E0435041|esophago-gastroduodenal|esophagogastroduodenal| +E0435041|oesophago-gastro-duodenal|esophagogastroduodenal| +E0435041|oesophago-gastroduodenal|esophagogastroduodenal| +E0435041|oesophagogastroduodenal|esophagogastroduodenal| +E0435042|gastro-urology|gastrourology| +E0435043|gastro-gastric|gastrogastric| +E0435047|hunter gatherer|hunter-gatherer| +E0435056|split gilled mushroom|split-gilled mushroom| +E0435058|gastro-intestinal transit|gastrointestinal transit| +E0435063|glass-house|glasshouse| +E0435064|glass-house worker|glasshouse worker| +E0435069|glucosyl diacylglycerol|glucosyldiacylglycerol| +E0435077|diacyl glyceryl ether|diacylglyceryl ether| +E0435081|glomerulo-tubulo-nephritis|glomerulotubulonephritis| +E0435081|glomerulo-tubulonephritis|glomerulotubulonephritis| +E0435083|glycerylmonostearate|glyceryl monostearate| +E0435088|glycerylmethacrylate|glyceryl methacrylate| +E0435098|Glyciphagus|Glycyphagus| +E0435111|notch tongue goby|notchtongue goby| +E0435111|notch-tongue goby|notchtongue goby| +E0435140|goodie|goody| +E0435148|great tailed grackle|great-tailed grackle| +E0435149|boat tailed grackle|boat-tailed grackle| +E0435152|grannie|granny| +E0435153|Granny-Smith apple|Granny Smith apple| +E0435154|granny-bashing|granny bashing| +E0435158|gray headed greenlet|gray-headed greenlet| +E0435158|grey headed greenlet|gray-headed greenlet| +E0435158|grey-headed greenlet|gray-headed greenlet| +E0435159|tawny crowned greenlet|tawny-crowned greenlet| +E0435191|guard rail|guardrail| +E0435191|guard-rail|guardrail| +E0435192|guerilla|guerrilla| +E0435193|guerilla|guerrilla| +E0435201|gumbo limbo virus|gumbo-limbo virus| +E0435220|hepatic artery embolisation|hepatic artery embolization| +E0435221|hepatic arterial embolisation|hepatic arterial embolization| +E0435222|hydro-alcoholic extract|hydroalcoholic extract| +E0435240|Hakim syndome|Hakim's syndome| +E0435262|mad hatter's disease|Mad Hatter's disease| +E0435263|Salmonella new-haw|Salmonella newhaw| +E0435269|Juberg Hayward syndrome|Juberg-Hayward syndrome| +E0435304|haemato-lacrimal barrier|hemato-lacrimal barrier| +E0435305|haemato-lacrimal|hemato-lacrimal| +E0435306|haemato-immunological|hemato-immunological| +E0435307|haematological|hematological| +E0435308|haemato-pneumothorax|hematopneumothorax| +E0435308|haematopneumothorax|hematopneumothorax| +E0435308|hemato-pneumothorax|hematopneumothorax| +E0435309|haemato-oncology|hemato-oncology| +E0435309|haematooncology|hemato-oncology| +E0435309|hematooncology|hemato-oncology| +E0435310|haemato-oncological|hemato-oncological| +E0435310|haematooncological|hemato-oncological| +E0435310|hematooncological|hemato-oncological| +E0435311|haemato-oncologic|hemato-oncologic| +E0435311|haematooncologic|hemato-oncologic| +E0435311|hematooncologic|hemato-oncologic| +E0435312|hemi-cortex|hemicortex| +E0435314|heminested polymerase chain reaction|hemi-nested polymerase chain reaction| +E0435315|heminested PCR|hemi-nested PCR| +E0435318|hemiparkinsonian|hemi-parkinsonian| +E0435319|hemiparkinsonism|hemi-parkinsonism| +E0435320|hemiinattention|hemi-inattention| +E0435321|hemi-parasitic|hemiparasitic| +E0435324|haemofuscin|hemofuscin| +E0435325|hepatico-antrostomy|hepaticoantrostomy| +E0435327|hepatico-jejunal|hepaticojejunal| +E0435329|spino-cerebellar heredoataxia|spinocerebellar heredoataxia| +E0435350|Hilding syndrome|Hilding's syndrome| +E0435359|holm-oak|holm oak| +E0435365|cloven hoofed|cloven-hoofed| +E0435377|ground-hornbill|ground hornbill| +E0435379|silvery cheeked hornbill|silvery-cheeked hornbill| +E0435380|white crested hornbill|white-crested hornbill| +E0435381|Blyth's wreath billed hornbill|Blyth's wreath-billed hornbill| +E0435382|red billed dwarf hornbill|red-billed dwarf hornbill| +E0435394|half value layer|half-value layer| +E0435398|hydrorrhoea|hydrorrhea| +E0435399|hydrorrhoea uterinum|hydrorrhea uterinum| +E0435416|iatro-mechanics|iatromechanics| +E0435418|iatro-chemistry|iatrochemistry| +E0435419|iatro-chemist|iatrochemist| +E0435420|Ichythyophthirius multifilis|Ichthyophthirius multifiliis| +E0435435|enzyme linked immuno-filtration assay|enzyme-linked immuno-filtration assay| +E0435435|enzyme linked immunofiltration assay|enzyme-linked immuno-filtration assay| +E0435435|enzyme-linked immunofiltration assay|enzyme-linked immuno-filtration assay| +E0435437|immuno-filtration|immunofiltration| +E0435445|improvisational theatre|improvisational theater| +E0435448|infra-clinic|infraclinic| +E0435450|infraocclusion|infra-occlusion| +E0435451|infra-order|infraorder| +E0435454|infraphysiological|infra-physiological| +E0435503|Shi'ite|Shiite| +E0435509|pheasant tailed jacana|pheasant-tailed jacana| +E0435514|long tailed jaeger|long-tailed jaeger| +E0435532|scrub jay|scrub-jay| +E0435533|western scrub jay|western scrub-jay| +E0435534|Florida scrub jay|Florida scrub-jay| +E0435538|pinon jay|pinyon jay| +E0435541|white crested jay thrush|white-crested jay thrush| +E0435542|bluejay|blue jay| +E0435554|jolthead porgee|jolthead porgy| +E0435564|Kaffir|kaffir| +E0435564|Kafir|kaffir| +E0435564|kafir|kaffir| +E0435565|Kaffir lily|kaffir lily| +E0435565|Kafir lily|kaffir lily| +E0435565|kafir lily|kaffir lily| +E0435566|Kaffir pox|kaffir pox| +E0435566|Kafir pox|kaffir pox| +E0435566|kafir pox|kaffir pox| +E0435567|red fronted kakariki|red-fronted kakariki| +E0435569|Karakul|karakul| +E0435571|karakul sheep|Karakul sheep| +E0435596|Kindler's syndrome|Kindler syndrome| +E0435605|Kleeblattschadel|kleeblattschadel| +E0435606|Kleeblattschadel deformity|kleeblattschadel deformity| +E0435613|knee osteo-arthritis|knee osteoarthritis| +E0435629|Lact|lact| +E0435637|fiber lapper|fibre lapper| +E0435641|C. lari|Camp. lari| +E0435642|laryngo-tracheo-bronchial|laryngotracheobronchial| +E0435642|laryngo-tracheobronchial|laryngotracheobronchial| +E0435643|laryngo-pharyngo-esophagectomy|laryngo-pharyngo-oesophagectomy| +E0435643|laryngopharyngoesophagectomy|laryngo-pharyngo-oesophagectomy| +E0435643|laryngopharyngooesophagectomy|laryngo-pharyngo-oesophagectomy| +E0435644|laryngo-bronchoscopy|laryngobronchoscopy| +E0435647|laterocentral|latero-central| +E0435648|latero-frontal|laterofrontal| +E0435649|latero-medial|lateromedial| +E0435650|latero-tracheal|laterotracheal| +E0435651|latero-cervical|laterocervical| +E0435652|latero-lateral|laterolateral| +E0435654|school leaver|school-leaver| +E0435688|linotype|Linotype| +E0435689|lipochitin oligosaccharide|lipo-chitin oligosaccharide| +E0435689|lipochitin-oligosaccharide|lipo-chitin oligosaccharide| +E0435691|lipochito-oligosaccharide|lipo-chitooligosaccharide| +E0435691|lipochitooligosaccharide|lipo-chitooligosaccharide| +E0435692|lipo-proteic|lipoproteic| +E0435693|lipo-solubility|liposolubility| +E0435697|lipomyohaemangioma|lipomyohemangioma| +E0435700|leucocyte migration technique|leukocyte migration technique| +E0435702|leucocyte migration test|leukocyte migration test| +E0435707|Salmonella loma-linda|Salmonella lomalinda| +E0435730|longfin scorpion fish|longfin scorpionfish| +E0435760|lumbo-sacral orthosis|lumbosacral orthosis| +E0435761|left salpingooophorectomy|left salpingo-oophorectomy| +E0435766|lateral spino-thalamic tract|lateral spinothalamic tract| +E0435767|life sustaining treatment|life-sustaining treatment| +E0435774|left sacro-transverse|left sacrotransverse| +E0435781|lumbo-peritoneal shunt|lumboperitoneal shunt| +E0435782|lumbo-peritoneal|lumboperitoneal| +E0435783|lumbo-sciatic syndrome|lumbosciatic syndrome| +E0435784|lumbo-sciatic|lumbosciatic| +E0435785|thoraco-lumbosacral orthosis|thoraco-lumbo-sacral orthosis| +E0435785|thoracolumbosacral orthosis|thoraco-lumbo-sacral orthosis| +E0435788|lumbo-aortic|lumboaortic| +E0435789|rodent lung worm|rodent lungworm| +E0435790|lung worm|lungworm| +E0435791|fox lung worm|fox lungworm| +E0435792|look up table|look-up table| +E0435792|lookup table|look-up table| +E0435851|mask-like facies|masklike facies| +E0435852|mask-like|masklike| +E0435885|medio-ventral|medioventral| +E0435886|medio-ventral nucleus|medioventral nucleus| +E0435889|megacystis microcolon hypoperistalsis syndrome|megacystis-microcolon-hypoperistalsis syndrome| +E0435890|megaureter megacystis hydronephrosis syndrome|megaureter-megacystis-hydronephrosis syndrome| +E0435891|megacystis microcolon intestinal hypoperistalsis syndrome|megacystis-microcolon-intestinal hypoperistalsis syndrome| +E0435907|non-glucosuric melituria|nonglucosuric melituria| +E0435907|non-glucosuric mellituria|nonglucosuric melituria| +E0435907|nonglucosuric mellituria|nonglucosuric melituria| +E0435912|meningo-eruptive syndrome|meningoeruptive syndrome| +E0435913|early summer meningo-encephalitis|early-summer meningoencephalitis| +E0435913|early summer meningoencephalitis|early-summer meningoencephalitis| +E0435913|early-summer meningo-encephalitis|early-summer meningoencephalitis| +E0435915|meningo-oculofacial angiomatosis|meningo-oculo-facial angiomatosis| +E0435916|meningo-cerebral|meningocerebral| +E0435919|merl|merle| +E0435930|meso-rectal|mesorectal| +E0435931|meso-rectal node|mesorectal node| +E0435932|meso-rectal lymph node|mesorectal lymph node| +E0435933|total meso-rectal excision|total mesorectal excision| +E0435934|metacentre balance technique|metacenter balance technique| +E0435945|micro-pore|micropore| +E0435946|micro-pore filter|micropore filter| +E0435949|mid-facial|midfacial| +E0435973|Mobius sequence|Moebius sequence| +E0435974|Mobius|Moebius| +E0435975|Mobius congenital oculofacial paralysis|Moebius congenital oculofacial paralysis| +E0435976|Mobius anomalad|Moebius' anomalad| +E0435976|Mobius' anomalad|Moebius' anomalad| +E0435976|Moebius anomalad|Moebius' anomalad| +E0435988|MON|Mon| +E0436000|mu opioid receptor|mu-opioid receptor| +E0436002|morpho-cytochemical|morphocytochemical| +E0436003|morpho-pathologic|morphopathologic| +E0436004|morpho-pathological|morphopathological| +E0436005|morpho-structural|morphostructural| +E0436006|morphoecological|morpho-ecological| +E0436007|morpho-histochemical|morphohistochemical| +E0436008|morpho-quantitative|morphoquantitative| +E0436023|muco-muscular|mucomuscular| +E0436025|muco-adhesive|mucoadhesive| +E0436027|oculo-muco-cutaneous syndrome|oculomucocutaneous syndrome| +E0436027|oculo-mucocutaneous syndrome|oculomucocutaneous syndrome| +E0436028|oculo-mucocutaneous bullous dermatosis|oculo-muco-cutaneous bullous dermatosis| +E0436028|oculomucocutaneous bullous dermatosis|oculo-muco-cutaneous bullous dermatosis| +E0436029|oculo-mucocutaneous|oculo-muco-cutaneous| +E0436029|oculomucocutaneous|oculo-muco-cutaneous| +E0436037|multi-core disease|multicore disease| +E0436038|multicore congenital myopathy|multi-core congenital myopathy| +E0436039|multi-core myopathy|multicore myopathy| +E0436040|multi-core|multicore| +E0436041|maxillary multi-segmental osteotomy|maxillary multisegmental osteotomy| +E0436042|multi-segmental|multisegmental| +E0436045|Haemophilus influenza-murium|Haemophilus influenzae-murium| +E0436047|S. typhi murium|S. typhimurium| +E0436047|S. typhi-murium|S. typhimurium| +E0436054|muscovy duck|Muscovy duck| +E0436059|myelo-erythroid|myeloerythroid| +E0436062|adreno-myelo-leucodystrophy|adrenomyeloleukodystrophy| +E0436062|adreno-myelo-leukodystrophy|adrenomyeloleukodystrophy| +E0436062|adrenomyeloleucodystrophy|adrenomyeloleukodystrophy| +E0436064|myelolymphoproliferative|myelo-lymphoproliferative| +E0436066|subacute myelooptic neuropathy|subacute myelo-optic neuropathy| +E0436085|haemoglobin Nancy|hemoglobin Nancy| +E0436110|near point|nearpoint| +E0436110|near-point|nearpoint| +E0436111|negative end expiratory pressure|negative end-expiratory pressure| +E0436127|Salmonella nessziona|Salmonella ness-ziona| +E0436129|non-epileptic seizure|nonepileptic seizure| +E0436131|non-equilibrium steady state|nonequilibrium steady state| +E0436137|news reader|newsreader| +E0436153|egg nog|eggnog| +E0436162|non-alcohol dependent|nonalcohol-dependent| +E0436162|non-alcohol-dependent|nonalcohol-dependent| +E0436162|nonalcohol dependent|nonalcohol-dependent| +E0436163|non-alcohol related|nonalcohol-related| +E0436163|non-alcohol-related|nonalcohol-related| +E0436163|nonalcohol related|nonalcohol-related| +E0436164|non-biological|nonbiological| +E0436165|non contiguous|noncontiguous| +E0436165|non-contiguous|noncontiguous| +E0436166|non-exclusive|nonexclusive| +E0436167|non-exclusivity|nonexclusivity| +E0436168|non-food|nonfood| +E0436169|nonfood-deprived|non-food-deprived| +E0436170|nonfood-related|non-food-related| +E0436171|non-material|nonmaterial| +E0436172|non-pecuniary|nonpecuniary| +E0436173|non-religious|nonreligious| +E0436174|non-segmented|nonsegmented| +E0436175|non-segmented basophil|nonsegmented basophil| +E0436176|non-segmented eosinophil|nonsegmented eosinophil| +E0436177|non-segmented negative-strand RNA virus|nonsegmented negative-strand RNA virus| +E0436179|non-sister chromatid|nonsister chromatid| +E0436180|non-sister|nonsister| +E0436181|non-stress|nonstress| +E0436182|non-sympathetic|nonsympathetic| +E0436183|non use|nonuse| +E0436183|non-use|nonuse| +E0436184|non-vital tooth|nonvital tooth| +E0436185|non-vital|nonvital| +E0436186|non-vitality|nonvitality| +E0436201|oast house disease|oast-house disease| +E0436201|oasthouse disease|oast-house disease| +E0436208|oat-cell cancer|oat cell cancer| +E0436208|oatcell cancer|oat cell cancer| +E0436209|oat-cell carcinoma syndrome|oat cell carcinoma syndrome| +E0436209|oatcell carcinoma syndrome|oat cell carcinoma syndrome| +E0436228|orthopaedic examination|orthopedic examination| +E0436241|Orthopedic Nursing Certificate|Orthopaedic Nursing Certificate| +E0436244|onco-fetal protein|oncofetal protein| +E0436244|onco-foetal protein|oncofetal protein| +E0436244|oncofoetal protein|oncofetal protein| +E0436245|onco-fetal antigen|oncofetal antigen| +E0436245|onco-foetal antigen|oncofetal antigen| +E0436245|oncofoetal antigen|oncofetal antigen| +E0436246|onco-surgery|oncosurgery| +E0436247|onco-surgical|oncosurgical| +E0436248|onco-developmental antigen|oncodevelopmental antigen| +E0436249|onco-developmental protein|oncodevelopmental protein| +E0436250|onco-developmental|oncodevelopmental| +E0436251|onco-haematology|oncohematology| +E0436251|onco-hematology|oncohematology| +E0436251|oncohaematology|oncohematology| +E0436252|onco-haematological|oncohematological| +E0436252|onco-hematological|oncohematological| +E0436252|oncohaematological|oncohematological| +E0436253|onco-suppressor gene|oncosuppressor gene| +E0436254|onco-retrovirus|oncoretrovirus| +E0436255|hereditary onychoosteodysplasia|hereditary onycho-osteodysplasia| +E0436257|psoriatic onychopachydermoperiostitis|psoriatic onycho-pachydermo-periostitis| +E0436259|psoriatic onychoperiostitis|psoriatic onycho-periostitis| +E0436271|ophthalmo-surgery|ophthalmosurgery| +E0436272|ophthalmo-surgical|ophthalmosurgical| +E0436274|ophthalmoneurologic|ophthalmo-neurologic| +E0436277|angiospastic ophthalmo-auricular syndrome|angiospastic ophthalmoauricular syndrome| +E0436296|orchido-epididymitis|orchidoepididymitis| +E0436298|oro-maxillo-facial|oromaxillofacial| +E0436298|oromaxillo-facial|oromaxillofacial| +E0436299|oro-faecal|orofecal| +E0436299|oro-fecal|orofecal| +E0436299|orofaecal|orofecal| +E0436300|oro-antral fistula|oroantral fistula| +E0436301|oro-antral|oroantral| +E0436303|digito-oro-facial syndrome|digito-orofacial syndrome| +E0436309|oestrogen replacement therapy|estrogen replacement therapy| +E0436311|oesophageal radionuclide transit|esophageal radionuclide transit| +E0436315|vapour pressure osmometry|vapor pressure osmometry| +E0436345|body packer syndrome|body-packer syndrome| +E0436346|body packer|body-packer| +E0436349|post-antibiotic effect|postantibiotic effect| +E0436366|palatogingival groove|palato-gingival groove| +E0436368|otopalatodigital syndrome|oto-palato-digital syndrome| +E0436369|otopalatodigital syndrome type II|oto-palato-digital syndrome type II| +E0436370|otopalatodigital syndrome type I|oto-palato-digital syndrome type I| +E0436372|palato-oesophageal|palato-esophageal| +E0436373|palato-oesophageal incoordination|palato-esophageal incoordination| +E0436404|green rumped parrotlet|green-rumped parrotlet| +E0436413|van Patten|Van Patten| +E0436424|Pediatric Evaluation of Disability Inventory|Paediatric Evaluation of Disability Inventory| +E0436429|primary-effusion lymphoma|primary effusion lymphoma| +E0436433|pel|Pel| +E0436456|peritoneoanal resection|peritoneo-anal resection| +E0436457|peritoneoserosal surface|peritoneo-serosal surface| +E0436458|peritoneoserosal|peritoneo-serosal| +E0436459|peritoneo-vaginal|peritoneovaginal| +E0436460|peritoneocaval shunt|peritoneo-caval shunt| +E0436461|peritoneocaval|peritoneo-caval| +E0436462|peri-ureteric|periureteric| +E0436463|postenucleation socket syndrome|post-enucleation socket syndrome| +E0436467|pseudo-epileptic seizure|pseudoepileptic seizure| +E0436468|pseudo-exfoliative syndrome|pseudoexfoliative syndrome| +E0436469|pre-epiglottic space|preepiglottic space| +E0436470|polyethylene sulphonate|polyethylene sulfonate| +E0436471|photo-electron spectroscopy|photoelectron spectroscopy| +E0436486|pressure equalisation|pressure equalization| +E0436494|phako|phaco| +E0436495|phako|phaco| +E0436496|phakoexeresis|phako-exeresis| +E0436497|pseudo-phaco-anaphylactic endophthalmitis|pseudo-phako-anaphylactic endophthalmitis| +E0436497|pseudo-phacoanaphylactic endophthalmitis|pseudo-phako-anaphylactic endophthalmitis| +E0436497|pseudo-phakoanaphylactic endophthalmitis|pseudo-phako-anaphylactic endophthalmitis| +E0436498|phaco-anaphylactic|phako-anaphylactic| +E0436498|phacoanaphylactic|phako-anaphylactic| +E0436498|phakoanaphylactic|phako-anaphylactic| +E0436500|phaco-trabeculectomy|phacotrabeculectomy| +E0436501|phaco-chop|phaco chop| +E0436503|pharyngo-tympanic|pharyngotympanic| +E0436504|pharyngocutaneous fistula|pharyngo-cutaneous fistula| +E0436513|photo-electron|photoelectron| +E0436514|X ray photo-electron spectroscopy|X-ray photoelectron spectroscopy| +E0436514|X ray photoelectron spectroscopy|X-ray photoelectron spectroscopy| +E0436514|X-ray photo-electron spectroscopy|X-ray photoelectron spectroscopy| +E0436514|x-ray photo-electron spectroscopy|X-ray photoelectron spectroscopy| +E0436514|x-ray photoelectron spectroscopy|X-ray photoelectron spectroscopy| +E0436514|xray photo-electron spectroscopy|X-ray photoelectron spectroscopy| +E0436514|xray photoelectron spectroscopy|X-ray photoelectron spectroscopy| +E0436515|X ray photoemission spectroscopy|X-ray photoemission spectroscopy| +E0436515|x ray photoemission spectroscopy|X-ray photoemission spectroscopy| +E0436515|x-ray photoemission spectroscopy|X-ray photoemission spectroscopy| +E0436515|xray photoemission spectroscopy|X-ray photoemission spectroscopy| +E0436517|photo-electron microscopy|photoelectron microscopy| +E0436518|photo-electron spectrometry|photoelectron spectrometry| +E0436530|pidgin English|Pidgin English| +E0436531|pietist|Pietist| +E0436532|pietist|Pietist| +E0436541|PILO|Pilo| +E0436541|pilo|Pilo| +E0436543|pilo-sebaceous naevoid disorder|pilosebaceous nevoid disorder| +E0436543|pilo-sebaceous nevoid disorder|pilosebaceous nevoid disorder| +E0436543|pilosebaceous naevoid disorder|pilosebaceous nevoid disorder| +E0436551|pincer-nail deformity|pincer nail deformity| +E0436552|pincer nail|pincer-nail| +E0436559|pipe-stem fibrosis|pipestem fibrosis| +E0436560|pipe stem portal cirrhosis|pipestem portal cirrhosis| +E0436560|pipe-stem portal cirrhosis|pipestem portal cirrhosis| +E0436561|pipe stem capillary|pipestem capillary| +E0436561|pipe-stem capillary|pipestem capillary| +E0436566|ant pipit|ant-pipit| +E0436567|southern ant pipit|southern ant-pipit| +E0436573|pleurothoracic|pleuro-thoracic| +E0436574|pleurophrenic|pleuro-phrenic| +E0436575|pleurohepatic|pleuro-hepatic| +E0436577|biliopleurobronchial fistula|bilio-pleuro-bronchial fistula| +E0436578|pleuroamniotic shunt|pleuro-amniotic shunt| +E0436579|pleuro-parietal|pleuroparietal| +E0436589|pneumo-allergen|pneumoallergen| +E0436590|pneumo-phtisiology|pneumophtisiology| +E0436591|pneumo-hydraulic|pneumohydraulic| +E0436592|pneumoorbitus|pneumo-orbitus| +E0436605|tube-nose poacher|tubenose poacher| +E0436612|blue spotted poacher|bluespotted poacher| +E0436619|silver polisher's lung disease|silver polishers' lung disease| +E0436620|air powder polisher|air-powder polisher| +E0436655|NRPo|NRPO| +E0436656|NRPc|NRPC| +E0436674|postero-inferior|posteroinferior| +E0436675|ventral postero-inferior nucleus|ventral posteroinferior nucleus| +E0436676|postero-inferior cerebellar artery|posteroinferior cerebellar artery| +E0436677|post-infective|postinfective| +E0436678|post-menstrual|postmenstrual| +E0436679|post-menstrual endometrium|postmenstrual endometrium| +E0436680|post-parturient|postparturient| +E0436683|post-parturient haemoglobinuria|postparturient hemoglobinuria| +E0436683|post-parturient hemoglobinuria|postparturient hemoglobinuria| +E0436683|postparturient haemoglobinuria|postparturient hemoglobinuria| +E0436694|pre-adult|preadult| +E0436695|pre-cerebellar nucleus|precerebellar nucleus| +E0436696|pre-cerebellar|precerebellar| +E0436701|pre-logical|prelogical| +E0436704|pre-occipital|preoccipital| +E0436705|pre-prostatic|preprostatic| +E0436706|pre-prostatic urethra|preprostatic urethra| +E0436707|pre-prostatic vein|preprostatic vein| +E0436708|pre-rolandic gyrus|prerolandic gyrus| +E0436709|pre-rolandic artery|prerolandic artery| +E0436710|pre-rolandic|prerolandic| +E0436716|lumbo-sacral prespondylolisthesis|lumbosacral prespondylolisthesis| +E0436717|pre-sternal|presternal| +E0436718|pre-sternal ciliated cyst|presternal ciliated cyst| +E0436722|PRN|prn| +E0436723|PRN|prn| +E0436724|PRN|Prn| +E0436725|postrotatory nystagmus|post-rotatory nystagmus| +E0436727|plaque reduction neutralisation|plaque reduction neutralization| +E0436784|white whiskered puffbird|white-whiskered puffbird| +E0436787|Lhb|LHb| +E0436809|puppet-like|puppetlike| +E0436810|puppet-like syndrome|puppetlike syndrome| +E0436820|postero-ventral pallidotomy|posteroventral pallidotomy| +E0436825|pyelo-ureteric|pyeloureteric| +E0436895|ring closing metathesis|ring-closing metathesis| +E0436898|pinon|pinyon| +E0436899|pinon juniper|pinyon-juniper| +E0436899|pinon-juniper|pinyon-juniper| +E0436899|pinyon juniper|pinyon-juniper| +E0436900|pinon pine|pinyon pine| +E0436901|pinon mouse|pinyon mouse| +E0436902|pinon nut|pinyon nut| +E0436911|Dahl salt resistant rat|Dahl salt-resistant rat| +E0436914|Daily Symptom Report|daily symptom report| +E0436919|dissimilatory sulphite reductase|dissimilatory sulfite reductase| +E0436920|DSR|Dsr| +E0436920|dsr|Dsr| +E0436921|red back spider|redback spider| +E0436921|red-back spider|redback spider| +E0436922|Australian red back spider|Australian redback spider| +E0436922|Australian red-back spider|Australian redback spider| +E0436923|red backed spider|red-backed spider| +E0436924|red back vole|redback vole| +E0436924|red-back vole|redback vole| +E0436925|red backed salamander|red-backed salamander| +E0436926|red back salamander|red-back salamander| +E0436926|redback salamander|red-back salamander| +E0436934|red-tail monkey|redtail monkey| +E0436941|redtail gerbil|red-tail gerbil| +E0436942|red-water|redwater| +E0436949|hyperrefringence|hyper-refringence| +E0436969|placque remover|plaque remover| +E0436980|reticulo-endothelial disorder|reticuloendothelial disorder| +E0436981|reticulo-linear|reticulolinear| +E0436982|reticulorumen|reticulo-rumen| +E0436983|reticulo-thalamic|reticulothalamic| +E0436984|reticulo-cortical|reticulocortical| +E0436995|retro-tracheal|retrotracheal| +E0436996|rhabdo-sphincter|rhabdosphincter| +E0436998|North Rhine Westphalia|North Rhine-Westphalia| +E0437023|Rivermead Motor Assessment|Rivermead motor assessment| +E0437030|retromolar trigon|retromolar trigone| +E0437042|cocoa bean roaster|cocoa-bean roaster| +E0437045|five bearded rockling|five-bearded rockling| +E0437077|rowan berry|rowanberry| +E0437084|reference strand-mediated conformation analysis|reference strand mediated conformation analysis| +E0437084|reference-strand mediated conformation analysis|reference strand mediated conformation analysis| +E0437106|Rutter behaviour questionnaire|Rutter behavior questionnaire| +E0437108|Rutter Parent Questionnaire|Rutter parent questionnaire| +E0437109|Rutter Teacher Questionnaire|Rutter teacher questionnaire| +E0437149|sake|saki| +E0437152|haemoglobin Saki|hemoglobin Saki| +E0437156|SALP|sALP| +E0437161|salpingouterostomy|salpingo-uterostomy| +E0437162|chronic salpingooophoritis|chronic salpingo-oophoritis| +E0437163|acute salpingooophoritis|acute salpingo-oophoritis| +E0437172|sand box|sandbox| +E0437208|Sargassum triggerfish|sargassum triggerfish| +E0437209|Q-SART|QSART| +E0437214|sino-atrial reentrant tachycardia|sinoatrial reentrant tachycardia| +E0437228|scapho-lunate|scapholunate| +E0437229|scapho-lunate advanced collapse|scapholunate advanced collapse| +E0437231|scapho-lunate dissociation|scapholunate dissociation| +E0437232|scapho-lunate ligament|scapholunate ligament| +E0437233|scapho-lunate joint|scapholunate joint| +E0437254|schizoparanoid|schizo-paranoid| +E0437264|Scilla siberica|Scilla sibirica| +E0437267|Scilla non-scripta|Scilla nonscripta| +E0437285|white faced scops owl|white-faced scops owl| +E0437291|pot scourer pleurodesis|pot-scourer pleurodesis| +E0437295|black necked screamer|black-necked screamer| +E0437302|single-donor platelet|single donor platelet| +E0437303|short day photoperiod|short-day photoperiod| +E0437324|semi-voluntary|semivoluntary| +E0437328|septooptic dysplasia|septo-optic dysplasia| +E0437330|septopreoptic|septo-preoptic| +E0437337|sero-fibrinous|serofibrinous| +E0437349|single fibre electromyography|single fiber electromyography| +E0437350|single fibre EMG|single fiber EMG| +E0437362|serum derived hyaluronan associated protein|serum-derived hyaluronan-associated protein| +E0437364|slow hyperpolarising after-potential|slow hyperpolarizing afterpotential| +E0437364|slow hyperpolarising afterpotential|slow hyperpolarizing afterpotential| +E0437364|slow hyperpolarizing after-potential|slow hyperpolarizing afterpotential| +E0437384|Self-Harm Inventory|self-harm inventory| +E0437392|SHI|shi| +E0437456|strong-ion difference|strong ion difference| +E0437457|surface induced dissociation|surface-induced dissociation| +E0437458|Schimke immunoosseous dysplasia|Schimke immuno-osseous dysplasia| +E0437479|sputter-initiated resonance ionisation spectroscopy|sputter-initiated resonance ionization spectroscopy| +E0437494|Arctic skua|arctic skua| +E0437496|antarctic skua|Antarctic skua| +E0437542|polka dot snailfish|polka-dot snailfish| +E0437555|grey snapper|gray snapper| +E0437577|white-spotted soapfish|whitespotted soapfish| +E0437587|spiny cheek soldierfish|spinycheek soldierfish| +E0437587|spiny-cheek soldierfish|spinycheek soldierfish| +E0437590|big eye soldierfish|bigeye soldierfish| +E0437590|big-eye soldierfish|bigeye soldierfish| +E0437603|spade-foot toad|spadefoot toad| +E0437604|North American spade-foot toad|North American spadefoot toad| +E0437606|Eastern spade-foot toad|Eastern spadefoot toad| +E0437608|European spade-foot toad|European spadefoot toad| +E0437610|Couch's spade-foot toad|Couch's spadefoot toad| +E0437611|Western spade-foot toad|Western spadefoot toad| +E0437611|western spade-foot toad|Western spadefoot toad| +E0437611|western spadefoot toad|Western spadefoot toad| +E0437624|Spemann organiser|Spemann organizer| +E0437625|Spemann's organiser|Spemann's organizer| +E0437626|single photon emission tomography|single-photon emission tomography| +E0437633|blue-gold goby|bluegold goby| +E0437646|paprika splitter's lung|paprika splitters' lung| +E0437654|vineyard sprayer's lung|vineyard sprayers' lung| +E0437661|Spurling manoevre|Spurling maneuver| +E0437673|Japanese angelshark|Japanese angel shark| +E0437676|clouded angelshark|clouded angel shark| +E0437687|sulphamethoxazole-trimethoprim|sulfamethoxazole-trimethoprim| +E0437689|sickle thalassaemia|sickle thalassemia| +E0437709|st|St| +E0437710|st|St| +E0437719|Warthin Starry stain|Warthin-Starry stain| +E0437720|Warthin Starry staining|Warthin-Starry staining| +E0437734|Scatophaga stercoraria|Scathophaga stercoraria| +E0437738|Stim|stim| +E0437755|endolymphatic stromal miosis|endolymphatic stromal myosis| +E0437756|stromal miosis|stromal myosis| +E0437758|structuralise|structuralize| +E0437759|poststructuralism|post-structuralism| +E0437770|sub-trigonal|subtrigonal| +E0437778|sulphadimidine|sulfadimidine| +E0437779|sulfo-MBS|sulpho-MBS| +E0437781|sulfo-iduronidate sulfatase deficiency|sulfoiduronidate sulfatase deficiency| +E0437781|sulpho-iduronidate sulphatase deficiency|sulfoiduronidate sulfatase deficiency| +E0437781|sulphoiduronidate sulphatase deficiency|sulfoiduronidate sulfatase deficiency| +E0437799|nevus lipomatodes cutaneous superficialis|naevus lipomatodes cutaneous superficialis| +E0437801|naevus lipomatosus cutaneus superficialis|nevus lipomatosus cutaneus superficialis| +E0437804|oesophagitis dissecans superficialis|esophagitis dissecans superficialis| +E0437845|syr.|syr| +E0437851|tail light|taillight| +E0437855|smear-taker|smear taker| +E0437856|risk taker|risk-taker| +E0437875|tea factory cough|tea-factory cough| +E0437876|tea-taster|tea taster| +E0437877|tea maker's asthma|tea-makers' asthma| +E0437877|tea makers' asthma|tea-makers' asthma| +E0437877|tea-maker's asthma|tea-makers' asthma| +E0437879|healthcare team|health care team| +E0437892|lesser hedgehog-tenrec|lesser hedgehog tenrec| +E0437893|hedgehog-tenrec|hedgehog tenrec| +E0437926|trans-hiatal esophagectomy|transhiatal oesophagectomy| +E0437926|trans-hiatal oesophagectomy|transhiatal oesophagectomy| +E0437926|transhiatal esophagectomy|transhiatal oesophagectomy| +E0437936|Bernard Soulier thrombopathy|Bernard-Soulier thrombopathy| +E0437937|tic polonga|ticpolonga| +E0437959|tumour node metastasis|tumor node metastasis| +E0437980|blue tongued skink|blue-tongued skink| +E0437981|blue tongued lizard|blue-tongued lizard| +E0437982|long tongued bat|long-tongued bat| +E0437983|long tongued bee|long-tongued bee| +E0437997|tracheo-bronchoplasty|tracheobronchoplasty| +E0437998|tracheo-gastric fistula|tracheogastric fistula| +E0437999|tracheo-gastric|tracheogastric| +E0438000|tracheoinnominate artery|tracheo-innominate artery| +E0438001|tracheoinnominate|tracheo-innominate| +E0438003|tracheoinnominate fistula|tracheo-innominate fistula| +E0438010|photomechanical transferrer|photo-mechanical transferrer| +E0438016|tubulo-reticular inclusion|tubuloreticular inclusion| +E0438030|tricorn|tricorne| +E0438065|grey-winged trumpeter|gray-winged trumpeter| +E0438077|tummy ache|tummy-ache| +E0438086|time-weighted average|time weighted average| +E0438087|T wave alternans|T-wave alternans| +E0438089|tongue-twister|tongue twister| +E0438099|unilateral latero-thoracic exanthem|unilateral laterothoracic exanthem| +E0438141|under-cast padding|undercast padding| +E0438171|unsystematised|unsystematized| +E0438179|uretero-caecal|ureterocaecal| +E0438179|uretero-cecal|ureterocaecal| +E0438179|ureterocecal|ureterocaecal| +E0438180|uretero-colic anastomosis|ureterocolic anastomosis| +E0438181|uretero-intestinal anastomosis|ureterointestinal anastomosis| +E0438183|uretero-cutaneous|ureterocutaneous| +E0438184|ureterovulvar|uretero-vulvar| +E0438185|ureterouterine fistula|uretero-uterine fistula| +E0438186|ureterocutaneostomy|uretero-cutaneostomy| +E0438187|uretero-pyelic|ureteropyelic| +E0438205|vasoocclusive crisis|vaso-occlusive crisis| +E0438208|vasoobliterative|vaso-obliterative| +E0438211|visual electrically-evoked potential|visual electrically evoked potential| +E0438218|ventro-caudal thalamic peduncle|ventrocaudal thalamic peduncle| +E0438220|vertebro basilar artery syndrome|vertebro-basilar artery syndrome| +E0438220|vertebrobasilar artery syndrome|vertebro-basilar artery syndrome| +E0438221|vertebro basilar ischaemia|vertebro-basilar ischemia| +E0438221|vertebro basilar ischemia|vertebro-basilar ischemia| +E0438221|vertebro-basilar ischaemia|vertebro-basilar ischemia| +E0438221|vertebrobasilar ischaemia|vertebro-basilar ischemia| +E0438221|vertebrobasilar ischemia|vertebro-basilar ischemia| +E0438222|vertebrooccipital anastomosis|vertebro-occipital anastomosis| +E0438223|vertebrooccipital|vertebro-occipital| +E0438228|vesico-caecal|vesicocecal| +E0438228|vesico-cecal|vesicocecal| +E0438228|vesico-coecal|vesicocecal| +E0438228|vesicocaecal|vesicocecal| +E0438228|vesicocoecal|vesicocecal| +E0438229|vesicoileal|vesico-ileal| +E0438230|vesicosigmoidocolic|vesico-sigmoidocolic| +E0438231|vesicocutaneous|vesico-cutaneous| +E0438232|vesicointestinal fistula|vesico-intestinal fistula| +E0438233|vesico-enteric fistula|vesicoenteric fistula| +E0438235|vesico-amniotic|vesicoamniotic| +E0438236|vesico-amniotic shunt|vesicoamniotic shunt| +E0438271|grey wagtail|gray wagtail| +E0438283|bay breasted warbler|bay-breasted warbler| +E0438284|black capped warbler|black-capped warbler| +E0438285|blue winged warbler|blue-winged warbler| +E0438286|chestnut sided warbler|chestnut-sided warbler| +E0438290|yellow rumped warbler|yellow-rumped warbler| +E0438299|orange crowned warbler|orange-crowned warbler| +E0438322|wobbler's syndrome|wobbler syndrome| +E0438347|Yo|YO| +E0438353|Zoon's balano-posthitis|Zoon's balanoposthitis| +E0438388|familial lecithin-cholesterol acyltransferase deficiency|familial lecithin cholesterol acyltransferase deficiency| +E0438392|angio-cellular|angiocellular| +E0438404|anaesthesia circuit|anesthesia circuit| +E0438413|under-achiever|underachiever| +E0438451|alveolointerstitial|alveolo-interstitial| +E0438452|alveolo-buccal|alveolobuccal| +E0438460|foetus acardius amorphus|fetus acardius amorphus| +E0438461|foetus amorphus|fetus amorphus| +E0438466|amygdalo-striatal|amygdalostriatal| +E0438469|amygdalo-thalamic|amygdalothalamic| +E0438471|amygdalo-periacqueductal grey pathway|amygdalo-periacqueductal gray pathway| +E0438473|phosphate activated glutaminase|phosphate-activated glutaminase| +E0438475|periaqueductal grey matter|periaqueductal gray matter| +E0438476|periaquaductal grey|periaquaductal gray| +E0438478|pregnancy associated glycoprotein|pregnancy-associated glycoprotein| +E0438479|amygdalo-periacqueductal grey matter|amygdalo-periacqueductal gray matter| +E0438480|amygdalo-periacqueductal grey|amygdalo-periacqueductal gray| +E0438501|anti-foaming agent|antifoaming agent| +E0438502|anti-foaming|antifoaming| +E0438504|anti-vitamin|antivitamin| +E0438505|apico-basal|apicobasal| +E0438506|apicoanteroseptal region|apico-anteroseptal region| +E0438507|apicoanteroseptal|apico-anteroseptal| +E0438508|apico-lateral|apicolateral| +E0438509|apicoaortic|apico-aortic| +E0438519|Alpine swift|alpine swift| +E0438531|anti-thyroid drug|antithyroid drug| +E0438533|articulo-trochanteric distance|articulotrochanteric distance| +E0438534|articulo-pedicular|articulopedicular| +E0438535|articulo-visceral|articulovisceral| +E0438555|auriculo-parietal|auriculoparietal| +E0438556|auriculo-vertical|auriculovertical| +E0438563|bacterio-clinical|bacterioclinical| +E0438564|bacterio-therapy|bacteriotherapy| +E0438571|baro-denervated|barodenervated| +E0438572|baro-afferent|baroafferent| +E0438573|baro-afferent|baroafferent| +E0438574|baro-regulation|baroregulation| +E0438575|baro-regulated|baroregulated| +E0438576|baro-volutrauma|barovolutrauma| +E0438581|battledoor|battledore| +E0438617|bonassus|bonasus| +E0438626|brachio-facial|brachiofacial| +E0438628|broncho|bronco| +E0438634|boulle|buhl| +E0438637|Caco 2|Caco-2| +E0438639|caddice|caddis| +E0438640|caddice worm|caddis worm| +E0438641|cajeput|cajuput| +E0438654|small headed|small-headed| +E0438659|carcino-fetal|carcinofetal| +E0438659|carcino-foetal|carcinofetal| +E0438659|carcinofoetal|carcinofetal| +E0438681|A. cataphylla|Ae. cataphylla| +E0438703|cephalo-auricular sulcus|cephaloauricular sulcus| +E0438704|cephalo-auricular|cephaloauricular| +E0438705|cephalo-skeletal dysplasia|cephaloskeletal dysplasia| +E0438706|cephalo-skeletal|cephaloskeletal| +E0438708|cephalo-rachidian|cephalorachidian| +E0438716|Arctic charr|arctic char| +E0438716|Arctic char|arctic char| +E0438716|arctic charr|arctic char| +E0438717|cheilo-palatoschisis|cheilopalatoschisis| +E0438719|cheilo-rhinoplastic|cheilorhinoplastic| +E0438751|cicer milk vetch|cicer milkvetch| +E0438752|milk vetch|milkvetch| +E0438753|timber milk vetch|timber milkvetch| +E0438778|COE|CoE| +E0438807|cono-truncus|conotruncus| +E0438819|corn stalk|cornstalk| +E0438825|sterno-costo-clavicular|sternocostoclavicular| +E0438826|retrocostoxyphoid hernia|retro-costo-xyphoid hernia| +E0438827|retrocostoxyphoid|retro-costo-xyphoid| +E0438832|CREAT|creat| +E0438832|creat.|creat| +E0438834|crisscross|criss-cross| +E0438835|crystallisable|crystallizable| +E0438836|crystallisability|crystallizability| +E0438837|crystallisable fragment|crystallizable fragment| +E0438843|cut-throat|cutthroat| +E0438844|cut-throat|cutthroat| +E0438849|Da Costa|DaCosta| +E0438860|Deca|DECA| +E0438862|deca-histidine|decahistidine| +E0438863|deca-saccharide|decasaccharide| +E0438864|decolour|decolor| +E0438873|degeneratio hyaloideoretinalis hereditaria|degeneratio hyaloideo-retinalis hereditaria| +E0438882|Collectotrichum|Colletotrichum| +E0438883|demiembryo|demi-embryo| +E0438884|demi-span|demispan| +E0438887|demimorula|demi-morula| +E0438888|demipointe|demi-pointe| +E0438896|disulfiram ethanol reaction|disulfiram-ethanol reaction| +E0438896|disulphiram ethanol reaction|disulfiram-ethanol reaction| +E0438896|disulphiram-ethanol reaction|disulfiram-ethanol reaction| +E0438897|dual-energy radiography|dual energy radiography| +E0438943|dog tooth|dogtooth| +E0438946|dorso-sacral|dorsosacral| +E0438962|dismaturity|dysmaturity| +E0438966|extra-cytoplasmic function|extracytoplasmic function| +E0438969|extended-care facility|extended care facility| +E0438973|oedema factor|edema factor| +E0438986|embryo-foetal|embryo-fetal| +E0438986|embryofetal|embryo-fetal| +E0438986|embryofoetal|embryo-fetal| +E0438987|extended field radiotherapy|extended-field radiotherapy| +E0438988|extended field|extended-field| +E0438989|extra fine|extrafine| +E0438989|extra-fine|extrafine| +E0439003|enolether|enol ether| +E0439010|epauletted|epauleted| +E0439048|ethinyl oestradiol hemihydrate|ethinyl estradiol hemihydrate| +E0439048|ethinylestradiol hemihydrate|ethinyl estradiol hemihydrate| +E0439048|ethinyloestradiol hemihydrate|ethinyl estradiol hemihydrate| +E0439050|ethynyl|ethinyl| +E0439061|acute generalised exanthematous pustulosis|acute generalized exanthematous pustulosis| +E0439062|advanced glycosylation end product|advanced glycosylation end-product| +E0439077|field amplified sample stacking|field-amplified sample stacking| +E0439078|field amplified|field-amplified| +E0439083|faun tail naevus|faun-tail nevus| +E0439083|faun tail nevus|faun-tail nevus| +E0439083|faun-tail naevus|faun-tail nevus| +E0439084|ferri-form|ferriform| +E0439085|ferri-transferrin|ferritransferrin| +E0439086|ferri-pyoverdin|ferripyoverdin| +E0439087|ferri-reduction|ferrireduction| +E0439088|ferri-reductase|ferrireductase| +E0439120|forklike|fork-like| +E0439133|frog-like|froglike| +E0439134|faecal urobilinogen|fecal urobilinogen| +E0439135|foetal urobilinogen|fetal urobilinogen| +E0439140|galactooligosaccharide|galacto-oligosaccharide| +E0439154|ganglio-bronchial fistula|gangliobronchial fistula| +E0439155|ganglio-bronchial|gangliobronchial| +E0439156|ganglio-thalamic|gangliothalamic| +E0439157|garrapata|garapata| +E0439166|geranylpyrophosphate|geranyl pyrophosphate| +E0439167|geranyldiphosphate|geranyl diphosphate| +E0439168|geranyldiphosphate synthase|geranyl diphosphate synthase| +E0439258|haematoporphyria|hematoporphyria| +E0439266|hepta-chlorinated|heptachlorinated| +E0439271|hexose monophosphate|hexosemonophosphate| +E0439271|hexose-monophosphate|hexosemonophosphate| +E0439273|high intensity sprint training|high-intensity sprint training| +E0439275|Hist|hist| +E0439277|Van't Hoff enthalpy|van't Hoff enthalpy| +E0439278|Van't Hoff plot|van't Hoff plot| +E0439294|hydraemic|hydremic| +E0439356|inter-territorial|interterritorial| +E0439357|inter-tropical|intertropical| +E0439400|Kerkring fold|Kerckring fold| +E0439405|Cnemidocoptes pilae|Knemidocoptes pilae| +E0439405|Knemidokoptes pilae|Knemidocoptes pilae| +E0439406|Cnemidocoptes gallinae|Knemidokoptes gallinae| +E0439406|Knemidocoptes gallinae|Knemidokoptes gallinae| +E0439411|Kung|!Kung| +E0439475|A. farauti Laveran|An. farauti Laveran| +E0439500|lipo-lymphoedema|lipo-lymphedema| +E0439500|lipolymphedema|lipo-lymphedema| +E0439500|lipolymphoedema|lipo-lymphedema| +E0439501|lipo-polypeptide|lipopolypeptide| +E0439502|lipo-chito-oligosaccharidic|lipo-chitooligosaccharidic| +E0439503|lipo-amino acid|lipoamino acid| +E0439504|lipo-amino|lipoamino| +E0439506|lipo-decapeptide|lipodecapeptide| +E0439509|liq.|liq| +E0439510|liq.|liq| +E0439522|B-cell acute lymphoblastic leucaemia|B-cell acute lymphoblastic leukemia| +E0439522|B-cell acute lymphoblastic leucemia|B-cell acute lymphoblastic leukemia| +E0439522|B-cell acute lymphoblastic leukaemia|B-cell acute lymphoblastic leukemia| +E0439524|chloroethyleneoxide|chloroethylene oxide| +E0439525|mixed cell leucaemia|mixed-cell leukemia| +E0439525|mixed cell leucemia|mixed-cell leukemia| +E0439525|mixed cell leukaemia|mixed-cell leukemia| +E0439525|mixed cell leukemia|mixed-cell leukemia| +E0439525|mixed-cell leucaemia|mixed-cell leukemia| +E0439525|mixed-cell leucemia|mixed-cell leukemia| +E0439525|mixed-cell leukaemia|mixed-cell leukemia| +E0439527|vinca-alkaloid|vinca alkaloid| +E0439527|vincaalkaloid|vinca alkaloid| +E0439530|chlormadinon acetate|chlormadinone acetate| +E0439531|calcium-magnesium acetate|calcium magnesium acetate| +E0439533|cost minimisation analysis|cost minimization analysis| +E0439534|oestradiol cypionate|estradiol cypionate| +E0439542|anti-rabies serum|antirabies serum| +E0439544|beta nicotyrine|beta-nicotyrine| +E0439545|SSA antigen|SS-A antigen| +E0439554|hypoplastic acute leucaemia|hypoplastic acute leukemia| +E0439554|hypoplastic acute leucemia|hypoplastic acute leukemia| +E0439554|hypoplastic acute leukaemia|hypoplastic acute leukemia| +E0439558|endo-tracheal anaesthesia|endotracheal anesthesia| +E0439558|endo-tracheal anesthesia|endotracheal anesthesia| +E0439558|endotracheal anaesthesia|endotracheal anesthesia| +E0439575|anti-mineralocorticoid|antimineralocorticoid| +E0439576|anti-mineralocorticoid|antimineralocorticoid| +E0439579|thanatos|Thanatos| +E0439587|Bouin solution|Bouin's solution| +E0439594|ethyloleate|ethyl oleate| +E0439598|atlantooccipital membrane|atlanto-occipital membrane| +E0439602|methyl malonyl-coenzyme A epimerase|methylmalonyl-coenzyme A epimerase| +E0439603|methyl malonyl-CoA epimerase|methylmalonyl-CoA epimerase| +E0439604|epsilon aminocaproic acid|epsilon-aminocaproic acid| +E0439617|t&a|T&A| +E0439638|clindamicin phosphate|clindamycin phosphate| +E0439639|alpha adrenergic receptor|alpha-adrenergic receptor| +E0439639|alphaadrenergic receptor|alpha-adrenergic receptor| +E0439642|mepivicaine hydrochloride|mepivacaine hydrochloride| +E0439647|padimate O|padimate-O| +E0439649|interleukin 2|interleukin-2| +E0439655|terminal deoxyribonucleotidyltransferase|terminal deoxyribonucleotidyl transferase| +E0439662|slow reacting substance|slow-reacting substance| +E0439664|pre-excite|preexcite| +E0439665|ventricular preexcitation|ventricular pre-excitation| +E0439666|ligand gated channel|ligand-gated channel| +E0439667|ligand gated ion channel|ligand-gated ion channel| +E0439668|ligand gated|ligand-gated| +E0439672|hypoxanthine phosphoribosyl transferase|hypoxanthine phosphoribosyltransferase| +E0439683|periodic acid-Schiff stain|periodic acid Schiff stain| +E0439685|MEGAL|MeGal| +E0439685|MEGal|MeGal| +E0439689|oestradiol enanthate|estradiol enanthate| +E0439695|flax seed oil|flaxseed oil| +E0439709|D-D|D-d| +E0439711|hepatitis B immuneglobulin|hepatitis B immune globulin| +E0439714|interleukin 3|interleukin-3| +E0439720|supra-scapular notch|suprascapular notch| +E0439747|S-wave|S wave| +E0439747|s wave|S wave| +E0439747|s-wave|S wave| +E0439759|Hipp|HIPP| +E0439759|hipp|HIPP| +E0439762|Hipp|HIPP| +E0439762|hipp|HIPP| +E0439763|hilar perforant path associated cell|hilar perforant path-associated cell| +E0439817|ortho-cresol|orthocresol| +E0439820|glass-ionomer cement|glass ionomer cement| +E0439822|autooxidation|auto-oxidation| +E0439823|auto-oxidisation|auto-oxidization| +E0439823|autooxidisation|auto-oxidization| +E0439823|autooxidization|auto-oxidization| +E0439830|abdominal peritonaeum|abdominal peritoneum| +E0439839|phenyl propanolamine hydrochloride|phenylpropanolamine hydrochloride| +E0439840|cortisol-binding globulin|cortisol binding globulin| +E0439844|psycho-social development|psychosocial development| +E0439851|eardrops|ear drops| +E0439853|5 fluorouracil|5-fluorouracil| +E0439853|5fluorouracil|5-fluorouracil| +E0439854|eosin-B|eosin B| +E0439855|Wilm tumour|Wilm tumor| +E0439870|alpha naphthol|alpha-naphthol| +E0439903|gelatine sponge|gelatin sponge| +E0439906|low density lipoprotein receptor|low-density lipoprotein receptor| +E0439910|Histoplasma capsulatum var duboisii|Histoplasma capsulatum var. duboisii| +E0439911|H. capsulatum var duboisii|H. capsulatum var. duboisii| +E0439916|single cell liquid cytotoxic assay|single-cell liquid cytotoxic assay| +E0439920|swine leucocyte antigen|swine leukocyte antigen| +E0439941|self-realisation|self-realization| +E0439959|sucrose octa acetate|sucrose octaacetate| +E0439959|sucrose octa-acetate|sucrose octaacetate| +E0439966|peri-apical curettage|periapical curettage| +E0439981|penta-erythritol triacrylate|pentaerythritol triacrylate| +E0439985|B cell antigen receptor|B-cell antigen receptor| +E0439987|graft vs host reaction|graft-vs-host reaction| +E0439987|graft-vs.-host reaction|graft-vs-host reaction| +E0439988|methylanthranilate|methyl anthranilate| +E0439989|anti D antibody|anti-d antibody| +E0439989|anti d antibody|anti-d antibody| +E0439989|anti-D antibody|anti-d antibody| +E0439990|phenylisocyanate|phenyl isocyanate| +E0439992|interleukin 1|interleukin-1| +E0439999|T cell antigen receptor|T-cell antigen receptor| +E0440003|alkalinise|alkalinize| +E0440005|cholesterol sulphatase|cholesterol sulfatase| +E0440017|alphaketoglutarate dehydrogenase|alpha-ketoglutarate dehydrogenase| +E0440018|prostaglandin endoperoxide synthase|prostaglandin-endoperoxide synthase| +E0440020|Tyrode solution|Tyrode's solution| +E0440034|manganese sulphate|manganese sulfate| +E0440036|Locke solution|Locke's solution| +E0440039|contact lens induced acute red eye|contact lens-induced acute red eye| +E0440039|contact-lens-induced acute red eye|contact lens-induced acute red eye| +E0440046|burst forming unit erythroid|burst-forming unit erythroid| +E0440046|burst forming unit-erythroid|burst-forming unit erythroid| +E0440046|burst-forming unit-erythroid|burst-forming unit erythroid| +E0440047|BFU E|BFU-E| +E0440051|haemoglobin A2|hemoglobin A2| +E0440057|Anglo Scandinavian Cardiac Outcomes Trial|Anglo-Scandinavian Cardiac Outcomes Trial| +E0440060|self worth|self-worth| +E0440061|mullerian-inhibiting substance|mullerian inhibiting substance| +E0440077|menadione sodium bisulphite|menadione sodium bisulfite| +E0440081|axillo-femoral bypass|axillofemoral bypass| +E0440086|potassium sparing diuretic|potassium-sparing diuretic| +E0440120|Dejerine Sottas syndrome|Dejerine-Sottas syndrome| +E0440141|atracurium besilate|atracurium besylate| +E0440145|Ziehl Neelsen stain|Ziehl-Neelsen stain| +E0440157|sodium potassium pump|sodium-potassium pump| +E0440162|minor tranquiliser|minor tranquilizer| +E0440162|minor tranquilliser|minor tranquilizer| +E0440162|minor tranquillizer|minor tranquilizer| +E0440180|combined hyperlipidaemia|combined hyperlipidemia| +E0440187|formate hydrogen lyase|formate hydrogenlyase| +E0440187|formate-hydrogen lyase|formate hydrogenlyase| +E0440187|formate-hydrogenlyase|formate hydrogenlyase| +E0440189|oestradiol valerate|estradiol valerate| +E0440195|albuterol sulphate|albuterol sulfate| +E0440200|group specific component|group-specific component| +E0440201|organo-metallic compound|organometallic compound| +E0440204|haematopoietic growth factor|hematopoietic growth factor| +E0440214|generalised pustular psoriasis|generalized pustular psoriasis| +E0440217|salicylazosulphapyridine|salicylazosulfapyridine| +E0440241|p value|p-value| +E0440243|Shigatoxin|Shiga toxin| +E0440243|shiga toxin|Shiga toxin| +E0440243|shigatoxin|Shiga toxin| +E0440244|Shiga Kruse disease|Shiga-Kruse disease| +E0440246|SurA|surA| +E0440254|self antigen|self-antigen| +E0440262|DOPA oxidase|dopaoxidase| +E0440262|DOPA-oxidase|dopaoxidase| +E0440262|dopa oxidase|dopaoxidase| +E0440262|dopa-oxidase|dopaoxidase| +E0440269|haemoglobin M|hemoglobin M| +E0440271|Fc-receptor|Fc receptor| +E0440280|angiotensin I converting enzyme|angiotensin I-converting enzyme| +E0440296|I-A antigen|Ia antigen| +E0440296|I-a antigen|Ia antigen| +E0440296|IA antigen|Ia antigen| +E0440298|alpha-helix|alpha helix| +E0440307|bis chloronitrosourea|bis-chloronitrosourea| +E0440307|bischloronitrosourea|bis-chloronitrosourea| +E0440329|Porteus Maze test|Porteus Maze Test| +E0440338|Student's t-test|Student's t test| +E0440338|Students t test|Student's t test| +E0440338|Students t-test|Student's t test| +E0440338|Students' t test|Student's t test| +E0440338|Students' t-test|Student's t test| +E0440339|Student t-test|Student t test| +E0440383|fowl pox vaccine|fowlpox vaccine| +E0440385|selfunderstanding|self-understanding| +E0440393|DNA directed RNA polymerase|DNA-directed RNA polymerase| +E0440394|Burow solution|Burow's solution| +E0440401|H 2 antigen|H-2 antigen| +E0440401|H2 antigen|H-2 antigen| +E0440411|Shetland sheep dog|Shetland sheepdog| +E0440412|shetland wool|Shetland wool| +E0440414|benzyl penicillin potassium|benzylpenicillin potassium| +E0440429|black spotted topminnow|blackspotted topminnow| +E0440484|papulo-squamous dermatosis|papulosquamous dermatosis| +E0440485|papulo-nodular|papulonodular| +E0440486|papulo-nodule|papulonodule| +E0440487|papulo-pustular acne|papulopustular acne| +E0440488|papulo erythroderma|papuloerythroderma| +E0440488|papulo-erythroderma|papuloerythroderma| +E0440489|Ofuji's papulo-erythroderma|Ofuji's papuloerythroderma| +E0440490|Ofuji papulo-erythroderma|Ofuji papuloerythroderma| +E0440512|blacktailed prairie dog|black-tailed prairie dog| +E0440544|highly glucose tolerant beta glucosidase|highly glucose-tolerant beta-glucosidase| +E0440544|highly glucose tolerant beta-glucosidase|highly glucose-tolerant beta-glucosidase| +E0440577|habenulointerpeduncular|habenulo-interpeduncular| +E0440651|Hyacinthoides non-scripta|Hyacinthoides nonscripta| +E0440682|haemangiosis|hemangiosis| +E0440690|Wagner Unverricht syndrome|Wagner-Unverricht syndrome| +E0440723|pv.|pv| +E0440748|post-vasectomy|postvasectomy| +E0440749|post-voiding|postvoiding| +E0440750|post-voiding|postvoiding| +E0440751|post-vasectomy|postvasectomy| +E0440795|bare necked umbrellabird|bare-necked umbrellabird| +E0440808|olivo-cerebellar pathway|olivocerebellar pathway| +E0440809|olivo-cerebellar atrophy|olivocerebellar atrophy| +E0440810|olivo-cerebellar tract|olivocerebellar tract| +E0440825|isohaematinic|isohematinic| +E0440911|Mcardle disease|McArdle disease| +E0440956|Thiry Vella loop|Thiry-Vella loop| +E0440963|witch's butter|witches' butter| +E0440963|witches butter|witches' butter| +E0441028|Kuf|KUf| +E0441028|kUF|KUf| +E0441089|cemento-dentinal|cementodentinal| +E0441135|Buthus martensi Karsch|Buthus martensii Karsch| +E0441136|Buthus martensi|Buthus martensii| +E0441145|grey whale|gray whale| +E0441266|dioleoylphosphatidylserine|dioleoyl phosphatidylserine| +E0441288|sociomedical|socio-medical| +E0441441|Encephalartos friderici guilielmi|Encephalartos friderici-guilielmi| +E0441449|Schiller Duval body|Schiller-Duval body| +E0441464|polybutylcyanoacrylate|polybutyl cyanoacrylate| +E0441478|seborrhoea faciei|seborrhea faciei| +E0441491|alkyl ammonium|alkylammonium| +E0441492|alkyl ammonium amidobenzoate|alkylammonium amidobenzoate| +E0441493|alkyl ammonium chloride|alkylammonium chloride| +E0441494|alkyl ammonium salt|alkylammonium salt| +E0441500|Aeromonas salmonicida ss. salmonicida|Aeromonas salmonicida subsp. salmonicida| +E0441501|A. salmonicida ss. salmonicida|A. salmonicida subsp. salmonicida| +E0441503|Aeromonas salmonicida ss. achromogenes|Aeromonas salmonicida subsp. achromogenes| +E0441504|A. salmonicida ss. achromogenes|A. salmonicida subsp. achromogenes| +E0441506|Aeromonas salmonicida ss. masoucida|Aeromonas salmonicida subsp. masoucida| +E0441507|A. salmonicida ss. masoucida|A. salmonicida subsp. masoucida| +E0441509|Aeromonas salmonicida ss. smithia|Aeromonas salmonicida subsp. smithia| +E0441510|A. salmonicida ss. smithia|A. salmonicida subsp. smithia| +E0441543|Spiegler-Fendt pseudo lymphoma|Spiegler-Fendt pseudolymphoma| +E0441543|Spiegler-Fendt pseudo-lymphoma|Spiegler-Fendt pseudolymphoma| +E0441566|Banti's syndrome|Banti syndrome| +E0441585|Br. hyodysenteriae|B. hyodysenteriae| +E0441628|Microsporum cookeii|Microsporum cookei| +E0441637|vitello-intestinal|vitellointestinal| +E0441638|vitello-intestinal band|vitellointestinal band| +E0441639|vitello-intestinal structure|vitellointestinal structure| +E0441642|myoinositol pentakisphosphate|myo-inositol pentakisphosphate| +E0441650|oculo-auriculovertebral spectrum|oculo-auriculo-vertebral spectrum| +E0441650|oculoauriculovertebral spectrum|oculo-auriculo-vertebral spectrum| +E0441664|Osler Weber Rendu syndrome|Osler-Weber-Rendu syndrome| +E0441665|Osler Rendu Weber syndrome|Osler-Rendu-Weber syndrome| +E0441666|Osler Rendu Weber disease|Osler-Rendu-Weber disease| +E0441667|Rendu Osler disease|Rendu-Osler disease| +E0441670|Hunter McAlpine syndrome|Hunter-McAlpine syndrome| +E0441735|Posner Schlossman syndrome|Posner-Schlossman syndrome| +E0441738|Terrien Viel syndrome|Terrien-Viel syndrome| +E0441749|Bassen Kornzweig disease|Bassen-Kornzweig disease| +E0441754|A.s. stramineus|A. s. stramineus| +E0441756|A.s. macconnelli|A. s. macconnelli| +E0441844|jack fruit|jackfruit| +E0441885|ioxithalamic|ioxitalamic| +E0441935|fascio-cutan|fasciocutan| +E0441966|benzyl methanethiolsulphonate|benzyl methanethiolsulfonate| +E0441994|X ray energy spectrometry|x-ray energy spectrometry| +E0441994|X-ray energy spectrometry|x-ray energy spectrometry| +E0441994|Xray energy spectrometry|x-ray energy spectrometry| +E0441994|x ray energy spectrometry|x-ray energy spectrometry| +E0441994|xray energy spectrometry|x-ray energy spectrometry| +E0441995|X ray energy spectroscopy|x-ray energy spectroscopy| +E0441995|X-ray energy spectroscopy|x-ray energy spectroscopy| +E0441995|Xray energy spectroscopy|x-ray energy spectroscopy| +E0441995|x ray energy spectroscopy|x-ray energy spectroscopy| +E0441995|xray energy spectroscopy|x-ray energy spectroscopy| +E0441996|X ray emission spectroscopy|X-ray emission spectroscopy| +E0441996|Xray emission spectroscopy|X-ray emission spectroscopy| +E0441996|x ray emission spectroscopy|X-ray emission spectroscopy| +E0441996|x-ray emission spectroscopy|X-ray emission spectroscopy| +E0441996|xray emission spectroscopy|X-ray emission spectroscopy| +E0441998|xeno-oestrogen|xenoestrogen| +E0441998|xenooestrogen|xenoestrogen| +E0442003|dimethialium propyldisulphide|dimethialium propyldisulfide| +E0442074|three line basslet|threeline basslet| +E0442074|three-line basslet|threeline basslet| +E0442197|jequirty|jequirity| +E0442220|aralia saponin|aralia-saponin| +E0442238|anti-pernicious|antipernicious| +E0442281|Valsalva maneuver|Valsalva manoeuvre| +E0442283|Valsalva leak point pressure|Valsalva leak-point pressure| +E0442285|extra-dimensional|extradimensional| +E0442308|paraaortic|para-aortic| +E0442347|Bothriechis schlegeli|Bothriechis schlegelii| +E0442348|Marchi positive body|Marchi-positive body| +E0442472|glucocorticoid responsive unit|glucocorticoid-responsive unit| +E0442491|fluorometrical|fluorimetrical| +E0442496|hydroencephalocoele|hydroencephalocele| +E0442500|lower|lour| +E0442502|demyelinization|demyelinisation| +E0442504|human T cell leucaemia virus IV|human T-cell leukemia virus IV| +E0442504|human T cell leucemia virus IV|human T-cell leukemia virus IV| +E0442504|human T cell leukaemia virus IV|human T-cell leukemia virus IV| +E0442504|human T cell leukemia virus IV|human T-cell leukemia virus IV| +E0442504|human T-cell leucaemia virus IV|human T-cell leukemia virus IV| +E0442504|human T-cell leucemia virus IV|human T-cell leukemia virus IV| +E0442504|human T-cell leukaemia virus IV|human T-cell leukemia virus IV| +E0442506|cross match|crossmatch| +E0442506|cross-match|crossmatch| +E0442516|gamma glutamyl transpeptidase|gammaglutamyl transpeptidase| +E0442516|gamma-glutamyl transpeptidase|gammaglutamyl transpeptidase| +E0442516|gamma-glutamyl-transpeptidase|gammaglutamyl transpeptidase| +E0442516|gamma-glutamyltranspeptidase|gammaglutamyl transpeptidase| +E0442519|mastermind|master-mind| +E0442524|Creutzfeldt Jakob disease|Creutzfeldt-Jakob disease| +E0442527|haematotropic|hematotropic| +E0442531|Adams Stokes syndrome|Adams-Stokes syndrome| +E0442532|rivinian foramen|Rivinian foramen| +E0442534|non-haematological|nonhematological| +E0442534|non-hematological|nonhematological| +E0442534|nonhaematological|nonhematological| diff --git a/office/regression/000_000228.txt b/office/regression/000_000228.txt new file mode 100644 index 0000000..edf773d --- /dev/null +++ b/office/regression/000_000228.txt @@ -0,0 +1,21864 @@ +E0000046|A-1|A1| +E0000050|A.A.M.D.|AAMD| +E0000081|AIDS related complex|AIDS-related complex| +E0000154|act|Act| +E0000155|active vertical corrector|Active Vertical Corrector| +E0000158|Adams Stokes disease|Adams-Stokes disease| +E0000163|adriamycin|Adriamycin| +E0000164|adriamycinol|Adriamycinol| +E0000181|Ancistrodon|Agkistrodon| +E0000202|alcian blue|Alcian blue| +E0000225|alk. phos.|Alk. phos.| +E0000225|Alk. Phos.|Alk. phos.| +E0000234|AluI|Alu I| +E0000237|Alzheimer disease|Alzheimer's disease| +E0000239|alzheimer-type|Alzheimer-type| +E0000311|American Nurses' Association|American Nurses Association| +E0000353|American-type culture collection|American type culture collection| +E0000360|Anabaena|Anabena| +E0000379|angora|Angora| +E0000381|antarctic|Antarctic| +E0000382|antarctic|Antarctic| +E0000389|apartheid|Apartheid| +E0000401|Apressoline|Apresoline| +E0000423|araA|Ara A| +E0000423|AraA|Ara A| +E0000423|ara-A|Ara A| +E0000423|ara A|Ara A| +E0000428|archbishop|Archbishop| +E0000432|arechine|Arechine| +E0000434|Argentinean|Argentinian| +E0000435|Argentinean|Argentinian| +E0000437|Argyll-Robertson pupil|Argyll Robertson pupil| +E0000538|Asulfidine|Azulfidine| +E0000538|Azulfadine|Azulfidine| +E0000546|AAA|A.A.A.| +E0000552|AADS|A.A.D.S.| +E0000578|ACOS|A.C.O.S.| +E0000588|AGS|A.G.S.| +E0000592|AI|A.I.| +E0000636|A. U.|A.U.| +E0000638|b12|B12| +E0000638|B-12|B12| +E0000640|b16 melanoma|B16 melanoma| +E0000642|b5|B5| +E0000648|B.B.B.|BBB| +E0000688|B.S.|BS| +E0000718|bactrim|Bactrim| +E0000754|banting|Banting| +E0000758|baoshen wan|Baoshen Wan| +E0000773|Barlow syndrome|Barlow's syndrome| +E0000787|Bartonella anaemia|Bartonella anemia| +E0000819|baygon|Baygon| +E0000845|Bekhterev's disease|Bechterew's disease| +E0000845|Bekhterew's disease|Bechterew's disease| +E0000845|Bechterev's disease|Bechterew's disease| +E0000857|bedouin|Bedouin| +E0000857|beduin|Bedouin| +E0000857|Beduin|Bedouin| +E0000866|Bekhterew's arthritis|Bekhterev's arthritis| +E0000866|Bechterew's arthritis|Bekhterev's arthritis| +E0000868|Bechterew's nucleus|Bekhterev's nucleus| +E0000877|Bell palsy|Bells palsy| +E0000877|Bell's palsy|Bells palsy| +E0000885|Bence-Jones protein|Bence Jones protein| +E0000887|Bence Jones protein Den|Bence Jones protein den| +E0000917|Berlin's oedema|Berlin's edema| +E0000920|Bernard Soulier syndrome|Bernard-Soulier syndrome| +E0000932|Berotek|Berotec| +E0001057|Bolivian haemorrhagic fever virus|Bolivian hemorrhagic fever virus| +E0001090|braille|Braille| +E0001096|Brasil|Brazil| +E0001109|Brill-Symmers' disease|Brill-Symmers disease| +E0001109|Brill Symmers disease|Brill-Symmers disease| +E0001123|British pharmacopeia|British pharmacopoeia| +E0001156|Bruns's disease|Bruns' disease| +E0001156|Bruns disease|Bruns' disease| +E0001182|Burns's amaurosis|Burns' amaurosis| +E0001185|Buschke's scleroedema|Buschke's scleredema| +E0001195|Belorussian S.S.R.|Byelorussian S.S.R.| +E0001197|Bywaters syndrome|Bywaters' syndrome| +E0001197|Bywater's syndrome|Bywaters' syndrome| +E0001204|B-cell|B cell| +E0001206|B fibre|B fiber| +E0001206|B-fiber|B fiber| +E0001206|B-fibre|B fiber| +E0001207|B-lymphocyte|B lymphocyte| +E0001211|b-chain|B-chain| +E0001223|Btu|B.T.U.| +E0001223|BTU|B.T.U.| +E0001248|cALLA|CALLA| +E0001248|cALLa|CALLA| +E0001313|cmc|CMC| +E0001315|cmrgl|CMRGL| +E0001316|cmro|CMRO| +E0001317|cmv|CMV| +E0001318|cnbr|CNBR| +E0001319|cnc|CNC| +E0001373|Caesarian|Caesarean| +E0001373|Cesarean|Caesarean| +E0001373|Cesarian|Caesarean| +E0001381|Calabar oedema|Calabar edema| +E0001398|Calmette Guerin bacillus|Calmette-Guerin bacillus| +E0001412|Camoquine|Camoquin| +E0001489|Chagas's disease|Chagas' disease| +E0001489|Chagas disease|Chagas' disease| +E0001515|Chiari's syndrome|Chiari syndrome| +E0001519|chief|Chief| +E0001569|Codman's tumour|Codman's tumor| +E0001577|Colles fracture|Colles' fracture| +E0001592|con|Con| +E0001599|congressional|Congressional| +E0001600|congressman|Congressman| +E0001601|congresswoman|Congresswoman| +E0001608|ConA|Con-A| +E0001610|Cooley's anaemia|Cooley's anemia| +E0001635|Korvatone|Corvaton| +E0001643|Costen's syndrome|Costen syndrome| +E0001649|count|Count| +E0001650|county|County| +E0001658|Coxsackievirus|Coxsackie virus| +E0001658|coxsackie virus|Coxsackie virus| +E0001658|coxsackievirus|Coxsackie virus| +E0001663|Cr P|CrP| +E0001677|Crimean haemorrhagic fever virus|Crimean hemorrhagic fever virus| +E0001710|cubism|Cubism| +E0001718|Curantil|Curantyl| +E0001718|Kurantil|Curantyl| +E0001738|Cygnolin|Cygnoline| +E0001764|C1 esterase|C 1 esterase| +E0001764|C1-esterase|C 1 esterase| +E0001767|C-terminal|C terminal| +E0001771|CAP|C.A.P.| +E0001915|dahuang zhechong wan|Dahuang Zhechong Wan| +E0001923|dalmatian|Dalmatian| +E0001927|dalton|Dalton| +E0001940|Danlos disease|Danlos' disease| +E0001957|Daunoblastine|Daunoblastin| +E0001968|DaCosta's syndrome|Da Costa's syndrome| +E0001968|Da Costa syndrome|Da Costa's syndrome| +E0001968|DaCosta syndrome|Da Costa's syndrome| +E0001975|Dec.|Dec| +E0001978|Dekaris|Decaris| +E0001988|deg|Deg| +E0001988|Deg.|Deg| +E0001988|deg.|Deg| +E0001990|Decranol|Degranol| +E0001992|deism|Deism| +E0001994|Deiters nucleus|Deiters' nucleus| +E0001994|Deiter's nucleus|Deiters' nucleus| +E0002025|destiny|Destiny| +E0002033|de Gier|De Gier| +E0002038|Diagnostic-Related Group|Diagnostic Related Group| +E0002043|Dibenylene|Dibenyline| +E0002044|Dibenzylin|Dibenzyline| +E0002104|Diiodoquin|Diodoquin| +E0002121|DiGuglielmo disease|Di Guglielmo disease| +E0002140|dominion|Dominion| +E0002148|Douglas's cul-de-sac|Douglas' cul-de-sac| +E0002150|Down syndrome|Down's syndrome| +E0002150|Down's Syndrome|Down's syndrome| +E0002197|dyazide|Dyazide| +E0002199|dynorphin|Dynorphin| +E0002236|EBNA 1|EBNA1| +E0002238|E-B virus|EB virus| +E0002238|E B virus|EB virus| +E0002240|ecdovirus|ECDO virus| +E0002245|ecmovirus|ECMO virus| +E0002249|EC/IC|EC-IC| +E0002291|ets|ETS| +E0002295|Eales's disease|Eales' disease| +E0002295|Eales disease|Eales' disease| +E0002297|earl|Earl| +E0002305|Eating Disorders Inventory|Eating Disorder Inventory| +E0002316|Edelmann's anaemia|Edelmann's anemia| +E0002328|Ehlers Danlos disease|Ehlers-Danlos disease| +E0002335|Eisenmenger's syndrome|Eisenmenger syndrome| +E0002344|empire|Empire| +E0002356|Entameba histolytica|Entamoeba histolytica| +E0002358|Entero-bacteriaceae|Enterobacteriaceae| +E0002359|ENTEROtest|Enterotest| +E0002365|episcopal|Episcopal| +E0002366|episcopal|Episcopal| +E0002379|Erb Duchenne paralysis|Erb-Duchenne paralysis| +E0002403|Euclidian|Euclidean| +E0002416|eustachian|Eustachian| +E0002417|evangelical|Evangelical| +E0002419|evans blue|Evans blue| +E0002419|Evan's blue|Evans blue| +E0002422|Ewing sarcoma|Ewing's sarcoma| +E0002424|expressionism|Expressionism| +E0002453|FEV1.0|FEV1| +E0002453|FEV 1.0|FEV1| +E0002478|FVIIIRAg|FVIIIRA| +E0002483|factor VIII|Factor VIII| +E0002487|fallopian|Fallopian| +E0002489|Fanconi's anaemia|Fanconi's anemia| +E0002493|fascism|Fascism| +E0002494|fascist|Fascist| +E0002500|Feb.|Feb| +E0002557|Fitzhugh-Curtis syndrome|Fitz-Hugh-Curtis syndrome| +E0002557|Fitzhugh Curtis syndrome|Fitz-Hugh-Curtis syndrome| +E0002578|Forbes disease|Forbes' disease| +E0002599|Francis disease|Francis' disease| +E0002650|F.R.C.P.(C.)|F.R.C.P.C.| +E0002680|gp110|GP110| +E0002681|gp30|GP30| +E0002682|gp32|GP32| +E0002683|gp41|GP41| +E0002684|gp64|GP64| +E0002708|galv|Galv.| +E0002745|gentile|Gentile| +E0002746|gentile|Gentile| +E0002766|Ghanaian|Ghanian| +E0002807|GoLYTELY|Golytely| +E0002817|Gpp(NH)p|GppNHp| +E0002822|Graves's disease|Graves' disease| +E0002822|Grave's disease|Graves' disease| +E0002822|Graves disease|Graves' disease| +E0002831|Greenwich mean time|Greenwich Mean Time| +E0002842|Gross' disease|Gross's disease| +E0002842|Gross disease|Gross's disease| +E0002874|gypsy|Gypsy| +E0002874|gipsy|Gypsy| +E0002910|HL60|HL-60| +E0002911|HLA|HL-A| +E0002952|HT-29|HT29| +E0002953|HT-29|HT29| +E0002956|HTLV-III-LAV antibody|HTLV III LAV antibody| +E0002957|HTLV-III-LAV antigen|HTLV III LAV antigen| +E0002960|HTLV-III serodiagnosis|HTLV III serodiagnosis| +E0002961|HTLV-III serology|HTLV III serology| +E0002969|HTLV-I|HTLV-1| +E0002969|HTLVI|HTLV-1| +E0002970|HTLVII|HTLV-II| +E0002971|HTLVIII|HTLV-III| +E0002972|HTLV IV|HTLV-IV| +E0002981|Hemosporidium|Haemosporidium| +E0002983|Hageman factor|Hagemann factor| +E0002987|Hailey Hailey disease|Hailey-Hailey disease| +E0002996|Hallervorden Spatz disease|Hallervorden-Spatz disease| +E0003007|Hand Schuller Christian disease|Hand-Schuller-Christian disease| +E0003064|Haemophilus|Hemophilus| +E0003067|Henderson-Hasselbalch|Henderson-Hasselbach| +E0003078|herculean|Herculean| +E0003081|Hers disease|Hers' disease| +E0003127|Hodge manoeuvre|Hodge maneuver| +E0003136|Hoguet's manoeuvre|Hoguet's maneuver| +E0003163|Hovius's canal|Hovius' canal| +E0003164|Hovius's circle|Hovius' circle| +E0003165|Hovius's membrane|Hovius' membrane| +E0003166|Hovius's plexus|Hovius' plexus| +E0003169|HsaI Endonuclease|HsaI endonuclease| +E0003187|Hunter syndrome|Hunter's syndrome| +E0003196|Hurler syndrome|Hurler's syndrome| +E0003226|hyperstat|Hyperstat| +E0003279|I.C.U.|ICU| +E0003292|IGF-I|IGF-1| +E0003293|IGF-II|IGF-2| +E0003302|IL-2|IL 2| +E0003302|IL2|IL 2| +E0003319|I.Q.|IQ| +E0003391|imperial|Imperial| +E0003392|impressionism|Impressionism| +E0003393|impressionist|Impressionist| +E0003485|IPAA|I.P.A.A.| +E0003514|Jakob Creutzfeldt disease|Jakob-Creutzfeldt disease| +E0003552|joule|Joule| +E0003576|Kaposi sarcoma|Kaposi's sarcoma| +E0003614|Kinnier-Wilson disease|Kinnier Wilson disease| +E0003620|kleenex|Kleenex| +E0003626|Klumpke Dejerine paralysis|Klumpke-Dejerine paralysis| +E0003644|Korsakov's disease|Korsakoff's disease| +E0003661|Kufs disease|Kufs' disease| +E0003661|Kufs's disease|Kufs' disease| +E0003661|Kuf's disease|Kufs' disease| +E0003675|Kussmaul Landry paralysis|Kussmaul-Landry paralysis| +E0003704|LCMRgl|LCMRglu| +E0003704|LCMR-gl|LCMRglu| +E0003704|LCMRGl|LCMRglu| +E0003772|Langdon-Down's disease|Langdon Down's disease| +E0003812|Legg Calve Perthes disease|Legg-Calve-Perthes disease| +E0003817|Leishmania brasiliensis|Leishmania braziliensis| +E0003818|Leishmania brasiliensis brasiliensis|Leishmania braziliensis braziliensis| +E0003819|Leishman's anaemia|Leishman's anemia| +E0003835|Lewandowsky Lutz disease|Lewandowsky-Lutz disease| +E0003844|Leydig's cell|Leydig cell| +E0003869|limbo|Limbo| +E0003901|lord|Lord| +E0003943|LPN|L.P.N.| +E0003943|lpn|L.P.N.| +E0003943|l.p.n.|L.P.N.| +E0003998|Macaca fasicularis|Macaca fascicularis| +E0004006|Madam|Madame| +E0004033|mammalia|Mammalia| +E0004036|Mann Bollman fistula|Mann-Bollman fistula| +E0004046|Marchiafava Micheli disease|Marchiafava-Micheli disease| +E0004048|Marcus-Gunn pupil|Marcus Gunn pupil| +E0004055|Marie Bamberger disease|Marie-Bamberger disease| +E0004057|Marie Strumpell spondylitis|Marie-Strumpell spondylitis| +E0004082|medicaid|Medicaid| +E0004090|medicare|Medicare| +E0004115|Memorial Sloan-Kettering Cancer Center|Memorial Sloan Kettering Cancer Center| +E0004121|mengovirus|Mengo virus| +E0004123|Menkes disease|Menkes' disease| +E0004139|Microtrak|MicroTrak| +E0004139|microtrak|MicroTrak| +E0004171|mocha|Mocha| +E0004172|mod|Mod| +E0004173|moderil|Moderil| +E0004231|moselle|Moselle| +E0004233|Muslem|Moslem| +E0004233|Muslim|Moslem| +E0004234|Muslem|Moslem| +E0004234|Muslim|Moslem| +E0004237|moyamoya|Moya Moya| +E0004245|Mucha Habermann disease|Mucha-Habermann disease| +E0004262|Mycobacterium avium intracellulare|Mycobacterium avium-intracellulare| +E0004295|NAD(H)|NADH| +E0004414|Navaho|Navajo| +E0004424|negroid|Negroid| +E0004425|negroid|Negroid| +E0004427|Neisseria gonorrheae|Neisseria gonorrhoeae| +E0004456|New Zealand Black|New Zealand black| +E0004457|New Zealand White|New Zealand white| +E0004488|north|North| +E0004489|north|North| +E0004490|northeastern|Northeastern| +E0004491|northern|Northern| +E0004493|northwest|Northwest| +E0004494|northwest|Northwest| +E0004495|northwestern|Northwestern| +E0004504|Nov.|Nov| +E0004508|Nulytely|NuLYTELY| +E0004540|NY|N.Y.| +E0004562|Ogilvie syndrome|Ogilvie's syndrome| +E0004580|OP|Op| +E0004588|oriental|Oriental| +E0004589|oriental|Oriental| +E0004598|Osgood Schlatter disease|Osgood-Schlatter disease| +E0004599|Osler-Rendu disease|Osler Rendu disease| +E0004604|Ota's naevus|Ota's nevus| +E0004615|oxyterracin|Oxyterracine| +E0004701|PGE-1|PGE1| +E0004712|P.I.D.|PID| +E0004728|Prl|PRL| +E0004744|puva therapy|PUVA therapy| +E0004786|Pancoast syndrome|Pancoast's syndrome| +E0004797|Panthopaque|Pantopaque| +E0004807|paradise|Paradise| +E0004826|Parkinsons disease|Parkinson's disease| +E0004826|Parkinsons's disease|Parkinson's disease| +E0004826|Parkinsons' disease|Parkinson's disease| +E0004832|paschal|Paschal| +E0004849|Pelizaeus Merzbacher disease|Pelizaeus-Merzbacher disease| +E0004888|Ph 1 chromosome|Ph1 chromosome| +E0004904|photostat|Photostat| +E0004911|PhD|Ph.D.| +E0004922|Pierre-Robin syndrome|Pierre Robin syndrome| +E0004929|Pipolfen|Pipolphen| +E0004981|populist|Populist| +E0005012|Pseudo-monas aeruginosa|Pseudomonas aeruginosa| +E0005028|PPD|P.P.D.| +E0005031|Q.R.|QR| +E0005034|queen|Queen| +E0005035|queen|Queen| +E0005040|Quincke's oedema|Quincke's edema| +E0005044|QT interval|Q-T interval| +E0005046|r|R| +E0005049|RAS|RA-s| +E0005060|RNAase|RNase| +E0005079|ras.|Ras.| +E0005092|Reclus disease|Reclus' disease| +E0005095|Reed Sternberg cell|Reed-Sternberg cell| +E0005097|regent|Regent| +E0005098|regent|Regent| +E0005099|reggae|Reggae| +E0005120|Rett's syndrome|Rett syndrome| +E0005153|Rivinus's foramen|Rivinus' foramen| +E0005153|Rivinus foramen|Rivinus' foramen| +E0005167|Roumanian|Romanian| +E0005167|Rumanian|Romanian| +E0005168|Roumanian|Romanian| +E0005168|Rumanian|Romanian| +E0005175|rose bengal|Rose Bengal| +E0005193|Rous associated virus|Rous-associated virus| +E0005195|Roux en Y anastomosis|Roux-en-Y anastomosis| +E0005207|rugby|Rugby| +E0005243|RMP|R.M.P.| +E0005244|RN|R.N.| +E0005248|RSA|R.S.A.| +E0005272|sp.|SP| +E0005281|ST segment|ST-segment| +E0005287|SV 40|SV40| +E0005314|san zhuang wan|San Zhuang Wan| +E0005378|scrooge|Scrooge| +E0005389|senator|Senator| +E0005398|Shavers disease|Shaver's disease| +E0005398|Shavers' disease|Shaver's disease| +E0005407|Shy-Drager syndrome|Shy Drager syndrome| +E0005419|Simmonds disease|Simmonds' disease| +E0005419|Simmond's disease|Simmonds' disease| +E0005427|Sjogren syndrome|Sjogren's syndrome| +E0005435|Sneddon Wilkinson disease|Sneddon-Wilkinson disease| +E0005466|Spielmeyer Vogt disease|Spielmeyer-Vogt disease| +E0005507|Streptococcus fecalis|Streptococcus faecalis| +E0005515|Streptomyces avidini|Streptomyces avidinii| +E0005546|Saint Louis encephalitis|St. Louis encephalitis| +E0005574|Swifts disease|Swift's disease| +E0005585|SYVA|Syva| +E0005654|Tenia|Taenia| +E0005676|TCR|TcR| +E0005728|Tigazon|Tigason| +E0005739|Thiopronine|Tiopronin| +E0005739|Tiopronine|Tiopronin| +E0005761|Tolosa Hunt syndrome|Tolosa-Hunt syndrome| +E0005825|T cell|T-cell| +E0005827|T lymphocyte|T-lymphocyte| +E0005828|TAT|T.A.T.| +E0005857|UDP-glucuronosyltransferase|UDP glucuronosyltransferase| +E0005878|U.S.|US| +E0005879|U.S.A.|USA| +E0005961|Unna's naevus|Unna's nevus| +E0005964|Unverricht Lundborg disease|Unverricht-Lundborg disease| +E0006031|Valsalva's manoeuvre|Valsalva's maneuver| +E0006041|vaseline|Vaseline| +E0006069|Viet Nam|Vietnam| +E0006073|vinca|Vinca| +E0006085|vit. A|Vit A| +E0006086|vit. C|Vit C| +E0006087|vit. E|Vit E| +E0006088|vit. G|Vit G| +E0006089|vit. K|Vit K| +E0006090|vit. L|Vit L| +E0006091|vit. M|Vit M| +E0006103|VA|V.A.| +E0006139|Waldenstrom's macroglobulinaemia|Waldenstrom's macroglobulinemia| +E0006175|Vvedenskii inhibition|Wedensky inhibition| +E0006204|Werner syndrome|Werner's syndrome| +E0006245|Wilms's tumor|Wilms' tumor| +E0006245|Wilm's tumor|Wilms' tumor| +E0006245|Wilms tumor|Wilms' tumor| +E0006245|Wilms' tumour|Wilms' tumor| +E0006245|Wilms's tumour|Wilms' tumor| +E0006245|Wilm's tumour|Wilms' tumor| +E0006245|Wilms tumour|Wilms' tumor| +E0006262|Wissler syndrome|Wissler's syndrome| +E0006265|Wistar-Furth rat|Wistar Furth rat| +E0006270|Witkop-von Sallmann disease|Witkop-Von Sallmann disease| +E0006278|Wolff-Parkinson-White syndrome|Wolff Parkinson White syndrome| +E0006320|xerox|Xerox| +E0006321|xerox|Xerox| +E0006331|X inactivation|X-inactivation| +E0006332|X linked|X-linked| +E0006333|x-ray|X-ray| +E0006333|xray|X-ray| +E0006333|x ray|X-ray| +E0006333|X ray|X-ray| +E0006334|x-ray|X-ray| +E0006334|xray|X-ray| +E0006334|x ray|X-ray| +E0006334|X ray|X-ray| +E0006401|zwittergent|Zwittergent| +E0006446|abdominal aortic aneurism|abdominal aortic aneurysm| +E0006468|abdomino-vaginal|abdominovaginal| +E0006481|abetalipoproteinaemia|abetalipoproteinemia| +E0006554|above mentioned|above-mentioned| +E0006555|above named|above-named| +E0006566|abridgable|abridgeable| +E0006567|abridgement|abridgment| +E0006592|absinth|absinthe| +E0006610|absorbable gelatine sponge|absorbable gelatin sponge| +E0006710|accessary|accessory| +E0006725|accident prone|accident-prone| +E0006732|acclimatise|acclimatize| +E0006756|acccouter|accoutre| +E0006757|accouterment|accoutrement| +E0006771|accurst|accursed| +E0006820|acetonaemic|acetonemic| +E0006835|acetylisation|acetylization| +E0006849|acetylsulphanilamide|acetylsulfanilamide| +E0006872|achrestic anaemia|achrestic anemia| +E0006877|achromatise|achromatize| +E0006885|achylic anaemia|achylic anemia| +E0006891|acidaemia|acidemia| +E0006892|acidaemic|acidemic| +E0006925|acknowledgment|acknowledgement| +E0006933|acneform|acneiform| +E0006969|acquired haemolytic anaemia|acquired hemolytic anemia| +E0006971|acquired immune-deficiency syndrome|acquired immune deficiency syndrome| +E0007021|acromio-clavicular|acromioclavicular| +E0007023|acromio-humeral|acromiohumeral| +E0007169|acute haemolytic anaemia|acute hemolytic anemia| +E0007170|acute haemorrhagic conjunctivitis|acute hemorrhagic conjunctivitis| +E0007172|acute haemorrhagic pancreatitis|acute hemorrhagic pancreatitis| +E0007184|acute lymphoblastic leukaemia|acute lymphoblastic leukemia| +E0007184|acute lymphoblastic leucemia|acute lymphoblastic leukemia| +E0007184|acute lymphoblastic leucaemia|acute lymphoblastic leukemia| +E0007193|acute nonlymphocytic leukemia|acute non-lymphocytic leukemia| +E0007193|acute non-lymphocytic leukaemia|acute non-lymphocytic leukemia| +E0007193|acute nonlymphocytic leukaemia|acute non-lymphocytic leukemia| +E0007193|acute nonlymphocytic leucemia|acute non-lymphocytic leukemia| +E0007193|acute nonlymphocytic leucaemia|acute non-lymphocytic leukemia| +E0007193|acute non-lymphocytic leucemia|acute non-lymphocytic leukemia| +E0007193|acute non-lymphocytic leucaemia|acute non-lymphocytic leukemia| +E0007202|acute posthemorrhagic anaemia|acute posthemorrhagic anemia| +E0007219|aciclovir|acyclovir| +E0007264|addlepated|addle-pated| +E0007287|adeno-carcinoma|adenocarcinoma| +E0007295|adenohypophysial|adenohypophyseal| +E0007324|adenosinediphosphate|adenosine diphosphate| +E0007340|adenylylimidodiphosphate|adenylyl imidodiphosphate| +E0007341|adenylcyclase|adenyl cyclase| +E0007496|adreno-cortical|adrenocortical| +E0007501|adrenocorticotrophic|adrenocorticotropic| +E0007502|adrenocorticotrophic hormone|adrenocorticotropic hormone| +E0007503|adrenocorticotrophin|adrenocorticotropin| +E0007503|adreno-corticotrophin|adrenocorticotropin| +E0007503|adreno-corticotropin|adrenocorticotropin| +E0007516|adrenotropic|adrenotrophic| +E0007540|adult T-cell leucemia|adult T-cell leukemia| +E0007540|adult T-cell leukaemia|adult T-cell leukemia| +E0007540|adult T-cell leucaemia|adult T-cell leukemia| +E0007540|adult T cell leukemia|adult T-cell leukemia| +E0007540|adult T cell leukaemia|adult T-cell leukemia| +E0007540|adult T cell leucemia|adult T-cell leukemia| +E0007540|adult T cell leucaemia|adult T-cell leukemia| +E0007541|adult coeliac disease|adult celiac disease| +E0007546|adult t-cell lymphoma|adult T-cell lymphoma| +E0007578|advertize|advertise| +E0007592|ad-lib|ad lib| +E0007596|ad lib|ad-lib| +E0007597|ad lib|ad-lib| +E0007616|aero-digestive|aerodigestive| +E0007645|esthete|aesthete| +E0007646|esthetical|aesthetical| +E0007647|esthetics|aesthetics| +E0007648|etiology|aetiology| +E0007696|aflatoxin b1|aflatoxin B1| +E0007700|afore-said|aforesaid| +E0007701|afore-said|aforesaid| +E0007702|aforementioned|afore-mentioned| +E0007703|aforementioned|afore-mentioned| +E0007711|after care|aftercare| +E0007711|after-care|aftercare| +E0007715|after image|afterimage| +E0007715|after-image|afterimage| +E0007720|after-potential|afterpotential| +E0007722|after-treatment|aftertreatment| +E0007722|after treatment|aftertreatment| +E0007724|afterhyperpolarization|after-hyperpolarization| +E0007724|after hyperpolarization|after-hyperpolarization| +E0007724|after-hyperpolarisation|after-hyperpolarization| +E0007724|afterhyperpolarisation|after-hyperpolarization| +E0007724|after hyperpolarisation|after-hyperpolarization| +E0007729|agammaglobulinaemia|agammaglobulinemia| +E0007743|aging|ageing| +E0007744|aging|ageing| +E0007779|aggrandise|aggrandize| +E0007780|aggrandisement|aggrandizement| +E0007805|aglycon|aglycone| +E0007827|agonise|agonize| +E0007828|agonised|agonized| +E0007879|aeroplane|airplane| +E0007889|air-conditioner|air conditioner| +E0007890|air-conditioning|air conditioning| +E0007890|airconditioning|air conditioning| +E0007901|airsick|air-sick| +E0007902|airsickness|air-sickness| +E0007902|air sickness|air-sickness| +E0007910|acinetic|akinetic| +E0007918|alanine amino transferase|alanine aminotransferase| +E0007927|alated|alate| +E0007940|albumen|albumin| +E0007940|albumine|albumin| +E0007967|alcoholisation|alcoholization| +E0007968|alcoholise|alcoholize| +E0007971|alcohol-withdrawal syndrome|alcohol withdrawal syndrome| +E0007989|aleukaemic|aleukemic| +E0007989|aleucemic|aleukemic| +E0007989|aleucaemic|aleukemic| +E0008037|aline|align| +E0008038|alinement|alignment| +E0008043|alimentary oedema|alimentary edema| +E0008060|ALK|alk| +E0008069|alkalinisation|alkalinization| +E0008070|alkalise|alkalize| +E0008079|alcaptonuria|alkaptonuria| +E0008080|alcaptonuric|alkaptonuric| +E0008081|alcaptonuric|alkaptonuric| +E0008107|allel|allele| +E0008162|allogeneic|allogenic| +E0008215|alright|all right| +E0008216|alright|all right| +E0008250|alpha-atrial naturiuretic peptide|alpha atrial natriuretic peptide| +E0008253|alpha-globulin|alpha globulin| +E0008260|alpha-act|alpha-1-act| +E0008263|alpha 1-anti-trypsin|alpha-1-anti-trypsin| +E0008263|alpha-1-antitrypsin|alpha-1-anti-trypsin| +E0008263|alpha 1-antitrypsin|alpha-1-anti-trypsin| +E0008263|alpha 1 anti-trypsin|alpha-1-anti-trypsin| +E0008263|alpha 1 antitrypsin|alpha-1-anti-trypsin| +E0008268|alphaadrenergic|alpha-adrenergic| +E0008284|alpha-glucosyl transferase|alpha-glucosyltransferase| +E0008295|alpha-MpT|alpha-mpt| +E0008295|alpha-MPT|alpha-mpt| +E0008301|alpha tocopherol|alpha-tocopherol| +E0008355|aluminium|aluminum| +E0008364|Alundum|alundum| +E0008391|alveolo-capillary|alveolocapillary| +E0008393|alveolo-dental|alveolodental| +E0008395|alveolo-labial|alveololabial| +E0008396|alveolo-lingual|alveololingual| +E0008398|alveolo-palatal|alveolopalatal| +E0008409|amakrine|amacrine| +E0008410|amakrine|amacrine| +E0008439|embassador|ambassador| +E0008446|ambiance|ambience| +E0008457|ambosexual|ambisexual| +E0008480|amoebiasis|amebiasis| +E0008481|amebacidal|amebicidal| +E0008481|amoebidical|amebicidal| +E0008481|amoebacidal|amebicidal| +E0008484|amoebic colitis|amebic colitis| +E0008485|amoebic dysentery|amebic dysentery| +E0008492|amoeboid|ameboid| +E0008510|amenorrhoeal|amenorrheal| +E0008540|amid|amidst| +E0008561|amidophenazon|aminophenazone| +E0008570|amino-acid|amino acid| +E0008570|aminoacid|amino acid| +E0008594|amnesiac|amnesic| +E0008595|amnesiac|amnesic| +E0008610|ameba|amoeba| +E0008611|amebic|amoebic| +E0008612|amebicide|amoebicide| +E0008612|amoebacide|amoebicide| +E0008612|amebacide|amoebicide| +E0008613|amebocyte|amoebocyte| +E0008614|amongst|among| +E0008622|amortisation|amortization| +E0008623|amortise|amortize| +E0008657|amphitheatre|amphitheater| +E0008664|amphotericin-B|amphotericin B| +E0008679|ampoule|ampule| +E0008679|ampul|ampule| +E0008690|ams.|ams| +E0008733|amyasthenic|amyosthenic| +E0008756|anemic|anaemic| +E0008760|anerobic|anaerobic| +E0008771|anaesthetization|anaesthetisation| +E0008771|anesthetisation|anaesthetisation| +E0008771|anesthetization|anaesthetisation| +E0008772|anaesthetize|anaesthetise| +E0008772|anesthetise|anaesthetise| +E0008772|anesthetize|anaesthetise| +E0008791|analyzer|analyser| +E0008791|analysor|analyser| +E0008796|analysable|analyzable| +E0008797|analyse|analyze| +E0008810|anancastic personality|anankastic personality| +E0008811|anapaest|anapest| +E0008822|anaphylotoxin|anaphylatoxin| +E0008878|anconal|anconeal| +E0008879|anconal bursa|anconeal bursa| +E0008888|anckylostomiasis|ancylostomiasis| +E0008920|anaemia|anemia| +E0008935|anaesthesia|anesthesia| +E0008937|anaesthesiologist|anesthesiologist| +E0008938|anaesthesiology|anesthesiology| +E0008941|anaesthetic ether|anesthetic ether| +E0008943|anaesthetist|anesthetist| +E0008944|anoestrus|anestrus| +E0008949|aneurine|aneurin| +E0008951|aneurism|aneurysm| +E0008952|aneurismal|aneurysmal| +E0008965|angioectatic|angiectatic| +E0008966|angitis|angiitis| +E0008986|angio-follicular|angiofollicular| +E0008998|angio-immunoblastic lymphadenopathy|angioimmunoblastic lymphadenopathy| +E0008999|angio-invasive|angioinvasive| +E0009018|angio-neurotic|angioneurotic| +E0009020|angio-neurotic oedema|angioneurotic edema| +E0009020|angio-neurotic edema|angioneurotic edema| +E0009020|angioneurotic oedema|angioneurotic edema| +E0009021|angio-occlusive|angioocclusive| +E0009028|angio-sarcoma|angiosarcoma| +E0009042|angiotensinamide|angiotensin amide| +E0009043|angiotensin-converting enzyme|angiotensin converting enzyme| +E0009044|angiotensin-converting enzyme inhibitor|angiotensin converting enzyme inhibitor| +E0009047|angiotropic|angiotrophic| +E0009053|anglicisation|anglicization| +E0009054|anglicise|anglicize| +E0009078|anhydrosis|anhidrosis| +E0009078|anidrosis|anhidrosis| +E0009079|antihidrotic|anhidrotic| +E0009079|anidrotic|anhidrotic| +E0009140|anchylosing spondylitis|ankylosing spondylitis| +E0009141|anchylosis|ankylosis| +E0009149|annexe|annex| +E0009150|annexe|annex| +E0009210|ano-rectal|anorectal| +E0009253|antiacid|antacid| +E0009254|antiacid|antacid| +E0009258|antagonisation|antagonization| +E0009259|antagonise|antagonize| +E0009272|ante-bellum|antebellum| +E0009289|ante partum|antepartum| +E0009289|ante-partum|antepartum| +E0009299|anteriour|anterior| +E0009339|antero-external|anteroexternal| +E0009342|antero-inferior|anteroinferior| +E0009344|antero-lateral|anterolateral| +E0009349|antero-posterior|anteroposterior| +E0009351|antero-septal|anteroseptal| +E0009403|antiamoebic|antiamebic| +E0009404|antiamoebic|antiamebic| +E0009405|antianaemic|antianemic| +E0009406|antianaemic|antianemic| +E0009407|anti-anginal|antianginal| +E0009411|anti-arrhythmic|antiarrhythmic| +E0009412|anti-arrhythmic|antiarrhythmic| +E0009413|antarthritic|antiarthritic| +E0009432|antibody dependent cellular cytotoxicity|antibody-dependent cellular cytotoxicity| +E0009433|antibody dependent cell mediated cytotoxicity|antibody-dependent cell-mediated cytotoxicity| +E0009438|anti-cancer|anticancer| +E0009441|anti-cariogenic|anticariogenic| +E0009452|anti-cholinergic|anticholinergic| +E0009467|anti-convulsive|anticonvulsive| +E0009468|anti-convulsive|anticonvulsive| +E0009475|antidiarrhoeal|antidiarrheal| +E0009475|anti-diarrheal|antidiarrheal| +E0009475|anti-diarrhoeal|antidiarrheal| +E0009476|antidiarrhoeal|antidiarrheal| +E0009476|anti-diarrheal|antidiarrheal| +E0009476|anti-diarrhoeal|antidiarrheal| +E0009482|anti-diuretic hormone|antidiuretic hormone| +E0009496|antemetic|antiemetic| +E0009497|antemetic|antiemetic| +E0009502|antioestrogen|antiestrogen| +E0009503|antioestrogen|antiestrogen| +E0009510|anti-fibrinolytic|antifibrinolytic| +E0009517|anti-fungal|antifungal| +E0009518|anti-fungal|antifungal| +E0009523|antigenemic|antigenaemic| +E0009524|antigenaemia|antigenemia| +E0009531|antigen antibody complex|antigen-antibody complex| +E0009541|anti-helix|antihelix| +E0009543|antihaemophilic factor|antihemophilic factor| +E0009545|anthemorrhagic|antihemorrhagic| +E0009546|anthemorrhagic|antihemorrhagic| +E0009547|anti-histamine|antihistamine| +E0009552|antihypercholesterolaemic|antihypercholesterolemic| +E0009553|antihypercholesterolaemic|antihypercholesterolemic| +E0009565|anthysteric|antihysteric| +E0009566|anthysteric|antihysteric| +E0009567|anti-idiotype|antiidiotype| +E0009573|antiketogenic|antiketogenetic| +E0009581|antileucocytic|antileukocytic| +E0009582|antilipaemic|antilipemic| +E0009583|antilipaemic|antilipemic| +E0009637|anti-nuclear factor|antinuclear factor| +E0009638|antodontalgic|antiodontalgic| +E0009674|anti-platelet|antiplatelet| +E0009693|antipyrin|antipyrine| +E0009706|anti-rheumatic|antirheumatic| +E0009707|anti-rheumatic|antirheumatic| +E0009709|anti-scabietic|antiscabietic| +E0009710|anti-scabietic|antiscabietic| +E0009720|antisepticise|antisepticize| +E0009752|anti-thrombotic|antithrombotic| +E0009753|anti-thrombotic|antithrombotic| +E0009754|anti-thymocyte globulin|antithymocyte globulin| +E0009755|anti-thyroid|antithyroid| +E0009793|anti-d|anti-D| +E0009794|anti-hbc|anti-HBc| +E0009794|anti HBc|anti-HBc| +E0009795|anti-hbs|anti-HBs| +E0009798|anticomplement|anti-complement| +E0009804|antiinfective|anti-infective| +E0009804|anti infective|anti-infective| +E0009805|antiinfective|anti-infective| +E0009805|anti infective|anti-infective| +E0009808|antisense|anti-sense| +E0009812|anti-tumour|anti-tumor| +E0009812|antitumor|anti-tumor| +E0009812|antitumour|anti-tumor| +E0009828|annuloplasty|anuloplasty| +E0009877|aorto-caval|aortocaval| +E0009878|aorto-coronary|aortocoronary| +E0009881|aorto-pulmonary|aortopulmonary| +E0009883|aortoarteritis|aorto-arteritis| +E0009910|aphacic|aphakic| +E0009911|aphacic|aphakic| +E0009925|aphaeresis|apheresis| +E0009938|aptha|aphtha| +E0009968|aplastic anaemia|aplastic anemia| +E0009971|apnoea|apnea| +E0009972|apnoeic|apneic| +E0009999|apolopoprotein A-1|apolipoprotein A-I| +E0009999|apolopoprotein AI|apolipoprotein A-I| +E0010000|apolipoprotein AII|apolipoprotein A-II| +E0010001|apolipoprotein AIII|apolipoprotein A-III| +E0010002|apolipoprotein AIV|apolipoprotein A-IV| +E0010004|apolipoprotein B 100|apolipoprotein B-100| +E0010014|apologise|apologize| +E0010026|apophysial|apophyseal| +E0010048|apostatise|apostatize| +E0010056|apoA-I|apo-A-I| +E0010056|apoAI|apo-A-I| +E0010056|APOA1|apo-A-I| +E0010057|apoA-IV|apo-A-IV| +E0010057|apoAIV|apo-A-IV| +E0010057|APOA4|apo-A-IV| +E0010058|apoC-III|apo-C-III| +E0010058|APOC3|apo-C-III| +E0010058|apoCIII|apo-C-III| +E0010059|appall|appal| +E0010062|apanange|appanage| +E0010082|appendicial|appendiceal| +E0010133|apprize|apprise| +E0010156|a propos|apropos| +E0010157|a propos|apropos| +E0010194|aquaeduct|aqueduct| +E0010251|araC|ara-C| +E0010251|AraC|ara-C| +E0010251|ara C|ara-C| +E0010258|arbour|arbor| +E0010278|archeological|archaeological| +E0010279|archeology|archaeology| +E0010286|archeocinetic|archeokinetic| +E0010287|archaeologist|archeologist| +E0010309|arcate|arcuate| +E0010318|ardor|ardour| +E0010329|arecholin|arecholine| +E0010329|arecoline|arecholine| +E0010329|arecolin|arecholine| +E0010374|argiprestocine|argiprestocin| +E0010409|armine|armin| +E0010410|armour|armor| +E0010411|armored|armoured| +E0010412|arms race|arms-race| +E0010426|round|around| +E0010427|round|around| +E0010475|d'arsonvalization|arsonvalization| +E0010478|artifact|artefact| +E0010483|arterialisation|arterialization| +E0010484|arterialise|arterialize| +E0010523|arterio-venous|arteriovenous| +E0010526|arterio-venous fistula|arteriovenous fistula| +E0010644|aryl-sulphonate|aryl sulfonate| +E0010644|arylsulfonate|aryl sulfonate| +E0010644|aryl sulphonate|aryl sulfonate| +E0010644|arylsulphonate|aryl sulfonate| +E0010644|aryl-sulfonate|aryl sulfonate| +E0010645|arylsulfotransferase|aryl sulfotransferase| +E0010645|arylsulphotransferase|aryl sulfotransferase| +E0010645|aryl sulphotransferase|aryl sulfotransferase| +E0010646|arylsulfotransferase IV|aryl sulfotransferase IV| +E0010646|aryl sulphotransferase IV|aryl sulfotransferase IV| +E0010646|arylsulphotransferase IV|aryl sulfotransferase IV| +E0010654|asafoetida|asafetida| +E0010654|assafetida|asafetida| +E0010654|assafoetida|asafetida| +E0010659|ascariosis|ascariasis| +E0010666|ascendency|ascendancy| +E0010667|ascendent|ascendant| +E0010922|astrocinetic|astrokinetic| +E0010962|ataxia-telangiectasia|ataxia telangiectasia| +E0010986|athero-sclerotic|atherosclerotic| +E0010987|athero-thrombotic|atherothrombotic| +E0010997|atreptic|athreptic| +E0011004|atlanto-occipital|atlantooccipital| +E0011005|atlantoodontoid|atlanto-odontoid| +E0011020|atomisation|atomization| +E0011021|atomise|atomize| +E0011054|atrio-ventricular node|atrioventricular node| +E0011064|atropic|atrophic| +E0011129|attitudinise|attitudinize| +E0011172|audio-visual|audiovisual| +E0011173|audio-visual|audiovisual| +E0011174|audiofrequency|audio frequency| +E0011174|audio-frequency|audio frequency| +E0011219|auriculo-cranial|auriculocranial| +E0011220|auriculo-parietal index|auriculoparietal index| +E0011221|auriculo-temporal|auriculotemporal| +E0011222|auriculo-temporal syndrome|auriculotemporal syndrome| +E0011223|auriculo-vertical index|auriculovertical index| +E0011227|aurin tricarboxylic acid|aurintricarboxylic acid| +E0011261|authorisation|authorization| +E0011262|authorise|authorize| +E0011308|autoimmune haemolytic anaemia|autoimmune hemolytic anemia| +E0011320|autolise|autolyze| +E0011367|autosterilisation|autosterilization| +E0011373|auto-transfusion|autotransfusion| +E0011380|autoxidise|autoxidize| +E0011381|auto-oxidise|auto-oxidize| +E0011381|autooxidize|auto-oxidize| +E0011381|autooxidise|auto-oxidize| +E0011387|auxilliary|auxiliary| +E0011388|auxilliary|auxiliary| +E0011397|Av|av| +E0011419|avianisation|avianization| +E0011420|avianise|avianize| +E0011471|ax|axe| +E0011472|ax|axe| +E0011477|axofugal|axifugal| +E0011518|axo-axonic|axoaxonic| +E0011519|axo-dendritic|axodendritic| +E0011522|axone|axon| +E0011527|axo-somatic|axosomatic| +E0011528|axotomisation|axotomization| +E0011529|axotomise|axotomize| +E0011534|azacitidine|azacytidine| +E0011538|azeserine|azaserine| +E0011566|azotaemia|azotemia| +E0011586|azygous|azygos| +E0011597|ba|baa| +E0011598|ba|baa| +E0011604|babesiasis|babesiosis| +E0011617|baby talk|baby-talk| +E0011618|baby tooth|baby-tooth| +E0011620|baccara|baccarat| +E0011633|bacillogenic|bacilligenic| +E0011684|backstroke|back-stroke| +E0011684|back stroke|back-stroke| +E0011685|baclophen|baclofen| +E0011687|bacteraemia|bacteremia| +E0011687|bacteriemia|bacteremia| +E0011692|bacterial aneurism|bacterial aneurysm| +E0011746|bacterio-phage|bacteriophage| +E0011755|bacterio-rhodopsin|bacteriorhodopsin| +E0011813|balano-posthitis|balanoposthitis| +E0011814|balano-preputial|balanopreputial| +E0011816|balantidiosis|balantidiasis| +E0011825|bail|bale| +E0011826|bail|bale| +E0011829|baulk|balk| +E0011830|baulk|balk| +E0011857|boloney|baloney| +E0011861|bametan|bamethan| +E0011881|band III protein|band 3 protein| +E0011908|baptise|baptize| +E0011952|barium sulphate|barium sulfate| +E0011956|barleycorn|barley-corn| +E0011957|barley sugar|barley-sugar| +E0011963|baro-denervation|barodenervation| +E0011970|baro-receptor|baroreceptor| +E0011971|baro-reflex|baroreflex| +E0011974|baro-trauma|barotrauma| +E0012034|basepair|base pair| +E0012034|base-pair|base pair| +E0012038|baseline|base-line| +E0012038|base line|base-line| +E0012051|basic aluminum sucrose sulphate|basic aluminum sucrose sulfate| +E0012088|baso-lateral|basolateral| +E0012092|basiphilic|basophilic| +E0012150|bay k virus|bay K virus| +E0012151|BCR|bcr| +E0012201|bed bug|bedbug| +E0012219|bedsore|bed sore| +E0012255|behaviour|behavior| +E0012256|behavioural|behavioral| +E0012263|behaviourism|behaviorism| +E0012274|behove|behoove| +E0012368|benorylate|benorilate| +E0012371|bensulphamide|bensulfamide| +E0012385|benzamsulphonamide|benzamsulfonamide| +E0012390|benzbromaron|benzbromarone| +E0012392|benzenemethanesulphonyl fluoride|benzenemethanesulfonyl fluoride| +E0012393|benzenesulphonate|benzenesulfonate| +E0012406|benzin|benzine| +E0012412|benzodiazepin|benzodiazepine| +E0012414|benzodiazepine tranquiliser|benzodiazepine tranquilizer| +E0012428|benzoapyrene|benzopyrene| +E0012454|benzidamine|benzydamine| +E0012459|benzyl penicillin|benzylpenicillin| +E0012480|beri-beri|beriberi| +E0012522|beta-dexamethasone|betadexamethasone| +E0012522|beta dexamethasone|betadexamethasone| +E0012525|betahistine methanesulfonate|betahistine methanesulphonate| +E0012539|beta-1 interferon|beta 1-interferon| +E0012543|beta 2 transferrin|beta 2-transferrin| +E0012548|beta-carotene|beta carotene| +E0012548|betacarotene|beta carotene| +E0012551|beta-globulin|beta globulin| +E0012552|beta-hexosaminidase|beta hexosaminidase| +E0012553|beta ketoacyl synthetase|beta keto acyl synthetase| +E0012553|beta-ketoacyl synthetase|beta keto acyl synthetase| +E0012554|beta-lactamase III|beta lactamase III| +E0012557|beta-lipoprotein cholesterol|beta lipoprotein cholesterol| +E0012564|beta-sialoglycoprotein|beta sialoglycoprotein| +E0012565|beta-trace protein|beta trace protein| +E0012566|beta-transducin|beta transducin| +E0012569|beta 1 globin|beta-1 globin| +E0012573|beta 2 thromboglobulin|beta-2 thromboglobulin| +E0012575|beta CGRP|beta-CGRP| +E0012579|beta acetyldigoxin|beta-acetyldigoxin| +E0012581|beta actinin|beta-actinin| +E0012584|beta alanine|beta-alanine| +E0012586|beta alanylhistidine|beta-alanylhistidine| +E0012588|beta aminopropionitrile|beta-aminopropionitrile| +E0012589|beta amylase|beta-amylase| +E0012593|beta bungarotoxin|beta-bungarotoxin| +E0012594|beta carboline|beta-carboline| +E0012596|beta casein|beta-casein| +E0012597|beta casomorphin|beta-casomorphin| +E0012598|beta cell adenoma|beta-cell adenoma| +E0012600|beta chloralose|beta-chloralose| +E0012601|beta cholestanol|beta-cholestanol| +E0012602|beta crystallin|beta-crystallin| +E0012605|beta cyclodextrin|beta-cyclodextrin| +E0012610|beta ecdysone|beta-ecdysone| +E0012611|beta endorphin|beta-endorphin| +E0012612|beta endorphin receptor|beta-endorphin receptor| +E0012613|beta-endosulphan|beta-endosulfan| +E0012613|beta endosulfan|beta-endosulfan| +E0012613|beta endosulphan|beta-endosulfan| +E0012614|beta enolase|beta-enolase| +E0012615|beta aescin|beta-escin| +E0012615|beta-aescin|beta-escin| +E0012615|beta escin|beta-escin| +E0012616|beta fibrinogenase|beta-fibrinogenase| +E0012617|beta fibrogenase|beta-fibrogenase| +E0012618|beta galactosidase|beta-galactosidase| +E0012622|beta galactoside|beta-galactoside| +E0012623|beta globin|beta-globin| +E0012624|beta glucocerebrosidase|beta-glucocerebrosidase| +E0012626|beta glucuronidase|beta-glucuronidase| +E0012627|beta-hemolytic|beta-haemolytic| +E0012628|beta heparin|beta-heparin| +E0012635|beta hydroxyphenethylamine|beta-hydroxyphenethylamine| +E0012637|beta hypophamine|beta-hypophamine| +E0012638|beta interferon|beta-interferon| +E0012639|beta isosparteine|beta-isosparteine| +E0012640|beta kallikrein|beta-kallikrein| +E0012642|beta keratin|beta-keratin| +E0012643|beta ketothiolase|beta-ketothiolase| +E0012646|beta lactamase|beta-lactamase| +E0012649|beta lactam antibiotic|beta-lactam antibiotic| +E0012650|beta lactoglobulin|beta-lactoglobulin| +E0012660|beta-lipotrophin|beta-lipotropin| +E0012661|beta lumicolchicine|beta-lumicolchicine| +E0012662|beta melanotropin|beta-melanotropin| +E0012663|beta mercaptoethylamine|beta-mercaptoethylamine| +E0012664|beta mercaptopropionate|beta-mercaptopropionate| +E0012665|beta mercaptopropionic acid|beta-mercaptopropionic acid| +E0012666|beta methyldigoxin|beta-methyldigoxin| +E0012667|beta naphthylamine|beta-naphthylamine| +E0012674|beta phenylethanol|beta-phenylethanol| +E0012675|beta phenylethanolamine|beta-phenylethanolamine| +E0012676|beta phenylethylhydrazine|beta-phenylethylhydrazine| +E0012678|beta propiolactone|beta-propiolactone| +E0012679|beta pyridylcarbinol|beta-pyridylcarbinol| +E0012680|beta receptor|beta-receptor| +E0012684|beta spectrin|beta-spectrin| +E0012687|beta sulfoalanine|beta-sulfoalanine| +E0012687|beta-sulphoalanine|beta-sulfoalanine| +E0012687|beta sulphoalanine|beta-sulfoalanine| +E0012688|beta thalassemia|beta-thalassemia| +E0012688|beta-thalassaemia|beta-thalassemia| +E0012688|beta thalassaemia|beta-thalassemia| +E0012689|beta thionase|beta-thionase| +E0012690|beta thrombin|beta-thrombin| +E0012691|beta thromboglobulin|beta-thromboglobulin| +E0012692|beta tocopherol|beta-tocopherol| +E0012693|beta tropomyosin|beta-tropomyosin| +E0012694|beta trypsin|beta-trypsin| +E0012695|beta tubulin|beta-tubulin| +E0012697|beta tyrosinase|beta-tyrosinase| +E0012698|beta urogastrone|beta-urogastrone| +E0012699|beta-very-low-density lipoprotein|beta-very low density lipoprotein| +E0012713|better|bettor| +E0012824|big head|bighead| +E0012850|bile-duct|bile duct| +E0012861|bilge water|bilge-water| +E0012899|bilirubinaemia|bilirubinemia| +E0012967|bio-active|bioactive| +E0012971|bio-assay|bioassay| +E0012972|bio-assay|bioassay| +E0012974|bio-availability|bioavailability| +E0012977|bio-chemical|biochemical| +E0012978|bio-chemical|biochemical| +E0013004|bio-equivalence|bioequivalence| +E0013005|bio-equivalent|bioequivalent| +E0013023|bio-impedance|bioimpedance| +E0013078|bio-physical|biophysical| +E0013079|bio-physics|biophysics| +E0013081|bio-polymer|biopolymer| +E0013101|bio-synthetic|biosynthetic| +E0013110|biomedical|bio-medical| +E0013130|bi-phasic|biphasic| +E0013153|birdpox|bird pox| +E0013157|bi-refringence|birefringence| +E0013164|birth-control|birth control| +E0013177|birthweight|birth weight| +E0013204|bi-specific|bispecific| +E0013211|bisulphite reductase|bisulfite reductase| +E0013266|black water fever|blackwater fever| +E0013315|blastocelic|blastocoelic| +E0013388|blepharo-conjunctivitis|blepharoconjunctivitis| +E0013388|blepharo conjunctivitis|blepharoconjunctivitis| +E0013392|blepharo-spasm|blepharospasm| +E0013399|blather|blether| +E0013400|blather|blether| +E0013434|block|bloc| +E0013442|blonde|blond| +E0013443|blonde|blond| +E0013510|bloodstream|blood stream| +E0013521|blood-vessel|blood vessel| +E0013527|blood aqueous barrier|blood-aqueous barrier| +E0013535|bloodletting|blood-letting| +E0013535|blood letting|blood-letting| +E0013538|blood pressure|blood-pressure| +E0013540|blood testis barrier|blood-testis barrier| +E0013565|blue oedema|blue edema| +E0013607|bobwhite|bob white| +E0013628|body-rocking|body rocking| +E0013637|bodyweight|body weight| +E0013691|bonemarrow|bone marrow| +E0013717|bone metabolism|bone-metabolism| +E0013793|borscht|borsch| +E0013793|borshcht|borsch| +E0013899|brachio-facial paralysis|brachiofacial paralysis| +E0013912|brachy-therapy|brachytherapy| +E0013920|brady-cardia|bradycardia| +E0013920|brady cardia|bradycardia| +E0013928|brady-tachycardia|bradytachycardia| +E0013928|brady tachycardia|bradytachycardia| +E0013941|brain oedema|brain edema| +E0013943|brainchild|brain-child| +E0013945|brainwash|brain-wash| +E0013946|brainwashing|brain-washing| +E0014009|breast-feed|breastfeed| +E0014013|breast-feeding|breast feeding| +E0014013|breastfeeding|breast feeding| +E0014055|bridge work|bridgework| +E0014055|bridge-work|bridgework| +E0014061|briar|brier| +E0014075|brimfull|brimful| +E0014090|breeches|britches| +E0014106|broadspectrum|broad-spectrum| +E0014116|brokenhearted|broken-hearted| +E0014128|brominised|brominized| +E0014134|bromcresol green|bromocresol green| +E0014135|bromocriptine|bromocryptine| +E0014154|bronchostenosis|bronchiostenosis| +E0014160|broncho-alveolar|bronchoalveolar| +E0014163|broncho-constriction|bronchoconstriction| +E0014168|broncho-esophageal|bronchoesophageal| +E0014168|broncho-oesophageal|bronchoesophageal| +E0014168|bronchooesophageal|bronchoesophageal| +E0014179|broncho-pleural|bronchopleural| +E0014181|broncho-pneumonia|bronchopneumonia| +E0014184|broncho-pulmonary|bronchopulmonary| +E0014185|broncho-pulmonary dysplasia|bronchopulmonary dysplasia| +E0014201|bronzed diabetes|bronze diabetes| +E0014223|brown oedema|brown edema| +E0014225|brown tumour|brown tumor| +E0014250|brutalise|brutalize| +E0014317|bufotenine|bufotenin| +E0014327|build up|buildup| +E0014327|build-up|buildup| +E0014338|bulbokapnin|bulbocapnine| +E0014376|bumethanide|bumetanide| +E0014407|bupivicaine|bupivacaine| +E0014430|burnous|burnouse| +E0014430|burnoose|burnouse| +E0014498|butylatedhydroxytoluene|butylated hydroxytoluene| +E0014515|butylmethyl ketone|butyl methyl ketone| +E0014544|by-pass|bypass| +E0014545|by-pass|bypass| +E0014546|by-product|byproduct| +E0014558|C1-esterase inhibitor|c1 esterase inhibitor| +E0014558|C1 esterase inhibitor|c1 esterase inhibitor| +E0014558|C 1 esterase inhibitor|c1 esterase inhibitor| +E0014562|C-DNA|cDNA| +E0014609|cerulein|caerulein| +E0014611|cesura|caesura| +E0014615|caffein|caffeine| +E0014652|calcaemia|calcemia| +E0014689|calcium-channel blocker|calcium channel blocker| +E0014707|calcium iopodate|calcium ipodate| +E0014744|cauldron|caldron| +E0014753|calibre|caliber| +E0014756|calyceal|caliceal| +E0014757|calycine|calicine| +E0014761|calyculus|caliculus| +E0014763|calliper|caliper| +E0014764|calliper|caliper| +E0014787|callous|callus| +E0014788|calloused|callused| +E0014803|calory|calorie| +E0014806|calorigenic|calorigenetic| +E0014821|calvariae|calvaria| +E0014821|calvarium|calvaria| +E0014828|calix|calyx| +E0014845|cameraman|camera-man| +E0014847|chamomile|camomile| +E0014855|camp fire|campfire| +E0014867|camptothecine|camptothecin| +E0014873|camp bed|camp-bed| +E0014884|canalisation|canalization| +E0014885|canalise|canalize| +E0014889|canceller|canceler| +E0014891|cancelation|cancellation| +E0014895|cancerocidal|cancericidal| +E0014896|cancerogenic|cancerigenic| +E0014924|candlepower|candle-power| +E0014925|candour|candor| +E0014959|cannibalisation|cannibalization| +E0014960|cannibalise|cannibalize| +E0014974|cantaloup|cantaloupe| +E0014984|cantharidine|cantharidin| +E0014984|kantaridin|cantharidin| +E0014988|cannula|canula| +E0015027|capitalisation|capitalization| +E0015028|capitalise|capitalize| +E0015043|caponisation|caponization| +E0015044|caponise|caponize| +E0015062|capsaicine|capsaicin| +E0015109|carbamoylphosphate|carbamoyl phosphate| +E0015129|carbenoxalone|carbenoxolone| +E0015137|carbochromene|carbochromen| +E0015137|carbocromen|carbochromen| +E0015137|carbocromene|carbochromen| +E0015143|carbafos|carbofos| +E0015143|carbophos|carbofos| +E0015143|karbofos|carbofos| +E0015156|carbolise|carbolize| +E0015157|carbolised|carbolized| +E0015169|carbonisation|carbonization| +E0015170|carbonise|carbonize| +E0015187|carboxyhaemoglobin|carboxyhemoglobin| +E0015195|carboxy-terminal|carboxyterminal| +E0015195|carboxy terminal|carboxyterminal| +E0015201|carburetter|carburetor| +E0015201|carburrettor|carburetor| +E0015203|carcase|carcass| +E0015204|carcino-embryonic antigen|carcinoembryonic antigen| +E0015206|carcino-genesis|carcinogenesis| +E0015218|carcinoma in-situ|carcinoma in situ| +E0015222|carcinoembryonic|carcino-embryonic| +E0015225|cardamum|cardamom| +E0015225|cardamon|cardamom| +E0015239|cardiac oedema|cardiac edema| +E0015280|cardio-hepatic|cardiohepatic| +E0015282|cardiocinetic|cardiokinetic| +E0015283|cardiocinetic|cardiokinetic| +E0015301|cardio pulmonary|cardiopulmonary| +E0015301|cardio-pulmonary|cardiopulmonary| +E0015303|cardio pulmonary resuscitation|cardiopulmonary resuscitation| +E0015303|cardio-pulmonary resuscitation|cardiopulmonary resuscitation| +E0015306|cardio-respiratory|cardiorespiratory| +E0015323|cardio-vascular|cardiovascular| +E0015324|cardio-vascular|cardiovascular| +E0015384|carotinoid|carotenoid| +E0015385|carotinoid|carotenoid| +E0015439|cartilagenous|cartilaginous| +E0015439|cartilagineous|cartilaginous| +E0015450|carving knife|carving-knife| +E0015454|carsick|car-sick| +E0015454|car sick|car-sick| +E0015502|casuality|casualty| +E0015512|katabolic|catabolic| +E0015515|catabolise|catabolize| +E0015527|catalog|catalogue| +E0015528|catalog|catalogue| +E0015529|catalyze|catalyse| +E0015581|catechol amine|catecholamine| +E0015586|categorisation|categorization| +E0015587|categorise|categorize| +E0015606|catheterisation|catheterization| +E0015607|catheterise|catheterize| +E0015608|catheterised|catheterized| +E0015619|cattle anaemia|cattle anemia| +E0015626|cat scratch disease|cat-scratch disease| +E0015626|catscratch disease|cat-scratch disease| +E0015644|calk|caulk| +E0015659|cauterisation|cauterization| +E0015660|cauterise|cauterize| +E0015688|caviare|caviar| +E0015690|caviller|caviler| +E0015710|coecal foramen|cecal foramen| +E0015710|caecal foramen|cecal foramen| +E0015711|coecal hernia|cecal hernia| +E0015711|caecal hernia|cecal hernia| +E0015712|caecitis|cecitis| +E0015714|ceco-colic|cecocolic| +E0015714|caecocolic|cecocolic| +E0015714|caeco-colic|cecocolic| +E0015714|coecocolic|cecocolic| +E0015714|coeco-colic|cecocolic| +E0015716|caecum|cecum| +E0015720|cephadroxyl|cefadroxil| +E0015721|cephamandole|cefamandole| +E0015723|cephazolin|cefazolin| +E0015735|coeliac|celiac| +E0015736|coeliac|celiac| +E0015737|coeliac artery|celiac artery| +E0015738|coeliac disease|celiac disease| +E0015739|coeliac ganglion|celiac ganglion| +E0015772|cellulo-fibrous|cellulofibrous| +E0015783|cellcycle|cell cycle| +E0015783|cell-cycle|cell cycle| +E0015799|cell mediated immunity|cell-mediated immunity| +E0015807|coelozoic|celozoic| +E0015819|ceonogenesis|cenogenesis| +E0015819|caenogenesis|cenogenesis| +E0015820|coenogenetic|cenogenetic| +E0015820|caenogenetic|cenogenetic| +E0015833|centre|center| +E0015834|centre|center| +E0015836|center haemodialysis|center hemodialysis| +E0015836|centre haemodialysis|center hemodialysis| +E0015842|centimetre|centimeter| +E0015849|centralisation|centralization| +E0015887|centrifugalisation|centrifugalization| +E0015888|centrifugalise|centrifugalize| +E0015893|centri-lobular|centrilobular| +E0015897|centrocaecal|centrocecal| +E0015899|centrocinetic|centrokinetic| +E0015899|kentrocinetic|centrokinetic| +E0015899|kentrokinetic|centrokinetic| +E0015915|cefalexin|cephalexin| +E0015917|cephalhematoma|cephalhaematoma| +E0015921|cephalisation|cephalization| +E0015925|cephalo-caudal|cephalocaudal| +E0015930|cephalohaematoma|cephalohematoma| +E0015936|cephalo-pelvic|cephalopelvic| +E0015936|cephalo pelvic|cephalopelvic| +E0015947|cefapirin|cephapirin| +E0015948|cefradine|cephradine| +E0015973|cerebelloolivary|cerebello-olivary| +E0016038|cerebrospinal fluid otorrhoea|cerebrospinal fluid otorrhea| +E0016049|cerebroocular|cerebro-ocular| +E0016071|Certified Medical Assistant|certified medical assistant| +E0016076|caeruloplasmin|ceruloplasmin| +E0016084|cervical dystokia|cervical dystocia| +E0016088|cervical intra-epithelial neoplasia|cervical intraepithelial neoplasia| +E0016097|cervico-brachial|cervicobrachial| +E0016099|cervico-brachial neuralgia|cervicobrachial neuralgia| +E0016100|cervico-buccal|cervicobuccal| +E0016106|cervico-medullary|cervicomedullary| +E0016107|cervico-scapular|cervicoscapular| +E0016108|cervico-thoracic|cervicothoracic| +E0016115|caesarean|cesarean| +E0016115|cesarian|cesarean| +E0016115|caesarian|cesarean| +E0016116|caesarean|cesarean| +E0016116|cesarian|cesarean| +E0016116|caesarian|cesarean| +E0016117|caesarean section|cesarean section| +E0016117|cesarian section|cesarean section| +E0016117|caesarian section|cesarean section| +E0016118|caesium|cesium| +E0016149|chalkitis|chalcitis| +E0016150|chalkone|chalcone| +E0016160|chamecephalic|chamaecephalic| +E0016161|chameprosopic|chamaeprosopic| +E0016194|chantey|chanty| +E0016201|chaperone|chaperon| +E0016202|chaperone|chaperon| +E0016204|charr|char| +E0016207|characterize|characterise| +E0016212|characterisation|characterization| +E0016259|chequebook|checkbook| +E0016259|check book|checkbook| +E0016259|cheque book|checkbook| +E0016259|cheque-book|checkbook| +E0016259|check-book|checkbook| +E0016260|chequer|checker| +E0016261|chequer|checker| +E0016262|chequered|checkered| +E0016280|cheesecake|cheese-cake| +E0016281|cheesecloth|cheese-cloth| +E0016292|chirognostic|cheirognostic| +E0016301|chelater|chelator| +E0016336|chemo-hormonal|chemohormonal| +E0016342|chemo-prevention|chemoprevention| +E0016343|chemo-prophylaxis|chemoprophylaxis| +E0016349|chemiosmotic|chemosmotic| +E0016371|check|cheque| +E0016386|chestwall|chest wall| +E0016390|chewing gum|chewing-gum| +E0016406|chicken pox|chickenpox| +E0016411|chickenhearted|chicken-hearted| +E0016430|childhood acute lymphoblastic leucemia|childhood acute lymphoblastic leukemia| +E0016430|childhood acute lymphoblastic leukaemia|childhood acute lymphoblastic leukemia| +E0016430|childhood acute lymphoblastic leucaemia|childhood acute lymphoblastic leukemia| +E0016440|childbearing|child-bearing| +E0016441|childbearing|child-bearing| +E0016445|chili|chilli| +E0016445|chile|chilli| +E0016449|chimeric|chimaeric| +E0016451|chimaera|chimera| +E0016459|chincap|chincup| +E0016459|chin cap|chincup| +E0016480|chirrup|chirp| +E0016481|chirrup|chirp| +E0016485|chiselled|chiseled| +E0016486|chiseller|chiseler| +E0016510|Cloranfenicol|chloramphenicol| +E0016510|Kloramfenikol|chloramphenicol| +E0016540|chloroformisation|chloroformization| +E0016541|chloroformise|chloroformize| +E0016555|chlorthiazid|chlorothiazide| +E0016557|chlorotic anaemia|chlorotic anemia| +E0016562|chlorodinitrobenzene|chloro-dinitrobenzene| +E0016566|clorpropamid|chlorpropamide| +E0016568|chlorprotixen|chlorprothixene| +E0016569|chlorchinaldol|chlorquinaldol| +E0016571|chlortalidone|chlorthalidone| +E0016590|chokedamp|choke-damp| +E0016595|cholangio-carcinoma|cholangiocarcinoma| +E0016604|cholangeitis|cholangitis| +E0016610|cholecystoenteric|cholecystenteric| +E0016615|cholecysto-gastric|cholecystogastric| +E0016616|cholecystagogic|cholecystogogic| +E0016629|choledocho-duodenostomy|choledochoduodenostomy| +E0016630|choledocho-jejunostomy|choledochojejunostomy| +E0016639|chololithic|cholelithic| +E0016641|cholaemia|cholemia| +E0016668|cholesterol thorax|cholesterohydrothorax| +E0016678|cholinergic fibre|cholinergic fiber| +E0016703|chondrodystrophia foetalis|chondrodystrophia fetalis| +E0016705|chondro-ectodermal dysplasia|chondroectodermal dysplasia| +E0016717|chondro-myxoid fibroma|chondromyxoid fibroma| +E0016742|chorio-carcinoma|chordocarcinoma| +E0016745|cordotomy|chordotomy| +E0016751|choreo-athetoid|choreoathetoid| +E0016758|chorio-allantoic|chorioallantoic| +E0016772|chorionic gonadotrophin|chorionic gonadotropin| +E0016776|chorio-retinal|chorioretinal| +E0016777|choroidoretinitis|chorioretinitis| +E0016809|chromatise|chromatize| +E0016868|chronaxie|chronaxy| +E0016902|chronic granulocytic leukaemia|chronic granulocytic leukemia| +E0016902|chronic granulocytic leucemia|chronic granulocytic leukemia| +E0016902|chronic granulocytic leucaemia|chronic granulocytic leukemia| +E0016912|chronic lymphocytic leucemia|chronic lymphocytic leukemia| +E0016912|chronic lymphocytic leukaemia|chronic lymphocytic leukemia| +E0016912|chronic lymphocytic leucaemia|chronic lymphocytic leukemia| +E0016918|chronic myelogenous leucemia|chronic myelogenous leukemia| +E0016918|chronic myelogenous leukaemia|chronic myelogenous leukemia| +E0016918|chronic myelogenous leucaemia|chronic myelogenous leukemia| +E0017006|cicatrise|cicatrize| +E0017007|cyder|cider| +E0017009|cigaret|cigarette| +E0017056|cypher|cipher| +E0017057|cypher|cipher| +E0017075|circularise|circularize| +E0017113|circum-oral|circumoral| +E0017152|cisterna cerebello-medullaris|cisterna cerebellomedullaris| +E0017170|citrous|citrus| +E0017171|citrous fruit|citrus fruit| +E0017181|civilisation|civilization| +E0017182|civilise|civilize| +E0017194|clamor|clamour| +E0017195|clamor|clamour| +E0017201|clangour|clangor| +E0017225|classical haemophilia|classical hemophilia| +E0017292|clearheaded|clear-headed| +E0017293|clearheadedness|clear-headedness| +E0017372|clinico-pathologic|clinicopathologic| +E0017405|clofazimine|clofazamine| +E0017429|clonorchiosis|clonorchiasis| +E0017450|closed angle glaucoma|closed-angle glaucoma| +E0017477|clotiapine|clothiapine| +E0017479|klotrimazole|clotrimazole| +E0017490|cloverleaf|clover-leaf| +E0017491|clove hitch|clove-hitch| +E0017499|club-foot|clubfoot| +E0017499|club foot|clubfoot| +E0017500|clubfooted|club-footed| +E0017503|clew|clue| +E0017504|clew|clue| +E0017562|coal-tar|coal tar| +E0017571|co-arctation|coarctation| +E0017585|cobalamin|cobalamine| +E0017596|cocainisation|cocainization| +E0017597|cocainise|cocainize| +E0017600|co-carcinogenic|cocarcinogenic| +E0017618|coccigenic|coccogenic| +E0017639|cochlear-implant|cochlear implant| +E0017646|cochleitis|cochlitis| +E0017647|co-chromatography|cochromatography| +E0017651|cockeyed|cock-eyed| +E0017678|cod liver oil|cod-liver oil| +E0017679|cecal|coecal| +E0017679|caecal|coecal| +E0017680|caecostomy|coecostomy| +E0017680|cecostomy|coecostomy| +E0017690|celomic|coelomic| +E0017702|co-exist|coexist| +E0017703|co-existence|coexistence| +E0017718|cognitive-behavior modification|cognitive-behaviour modification| +E0017720|cognisance|cognizance| +E0017721|cognisant|cognizant| +E0017770|coldhearted|cold-hearted| +E0017771|coldheartedly|cold-heartedly| +E0017772|coldheartedness|cold-heartedness| +E0017778|cole-slaw|coleslaw| +E0017836|collectivisation|collectivization| +E0017837|collectivise|collectivize| +E0017862|colloid goitre|colloid goiter| +E0017889|colonisation|colonization| +E0017890|colonise|colonize| +E0017902|colour|color| +E0017903|colour|color| +E0017905|colo-rectal|colorectal| +E0017909|colourful|colorful| +E0017911|colourless|colorless| +E0017912|colourlessness|colorlessness| +E0017913|colour blindness|color blindness| +E0017913|colorblindness|color blindness| +E0017913|colourblindness|color blindness| +E0017915|colour index|color index| +E0017979|comedocarcinoma|comedo carcinoma| +E0017983|cometabolise|cometabolize| +E0018017|commercialisation|commercialization| +E0018018|commercialise|commercialize| +E0018103|compartmentalisation|compartmentalization| +E0018104|compartmentalise|compartmentalize| +E0018117|compensatory emphysema|compensating emphysema| +E0018156|compleat|complete| +E0018244|computerisation|computerization| +E0018245|computerise|computerize| +E0018290|conceptualisation|conceptualization| +E0018291|conceptualise|conceptualize| +E0018299|concessioner|concessionaire| +E0018302|conchiolinosteomyelitis|conchiolin osteomyelitis| +E0018319|concommitant|concomitant| +E0018320|concommitant|concomitant| +E0018342|condensible|condensable| +E0018359|cundum|condom| +E0018392|connexus|conexus| +E0018408|confidante|confidant| +E0018466|congenital chloride diarrhoea|congenital chloride diarrhea| +E0018471|congenital hemolytic anaemia|congenital hemolytic anemia| +E0018476|congenital hypoplastic anaemia|congenital hypoplastic anemia| +E0018482|congenital nonspherocytic haemolytic anaemia|congenital nonspherocytic hemolytic anemia| +E0018482|congenital nonspherocytic haemolytic anemia|congenital nonspherocytic hemolytic anemia| +E0018482|congenital nonspherocytic hemolytic anaemia|congenital nonspherocytic hemolytic anemia| +E0018552|connexion|connection| +E0018769|continuous venovenous hemofiltration|continuous veno-venous hemofiltration| +E0018769|continuous veno-venous haemofiltration|continuous veno-venous hemofiltration| +E0018769|continuous venovenous haemofiltration|continuous veno-venous hemofiltration| +E0018785|contractability|contractibility| +E0018786|contractable|contractible| +E0018825|non contributory|noncontributory| +E0018825|non-contributory|noncontributory| +E0018873|convergance|convergence| +E0018929|cooky|cookie| +E0018929|cookey|cookie| +E0018935|combe|coomb| +E0018935|coombe|coomb| +E0018938|co-operation|cooperation| +E0018940|co-operative|cooperative| +E0018941|co-operativity|cooperativity| +E0018942|co-ordinate|coordinate| +E0018943|co-ordinate|coordinate| +E0018944|co-ordinate|coordinate| +E0018947|co-ordination|coordination| +E0019015|chorditis|corditis| +E0019043|corn flour|cornflour| +E0019049|corn starch|cornstarch| +E0019062|coronary aneurism|coronary aneurysm| +E0019114|corpuscule|corpuscle| +E0019133|correctable|correctible| +E0019144|corelation|correlation| +E0019198|corticofugal|corticifugal| +E0019199|corticopetal|corticipetal| +E0019203|cortico-bulbar|corticobulbar| +E0019216|cortico-spinal|corticospinal| +E0019218|cortico-spinal tract|corticospinal tract| +E0019219|cortico-steroid|corticosteroid| +E0019220|corticosteroid-binding globulin|corticosteroid binding globulin| +E0019223|cortico-thalamic|corticothalamic| +E0019224|corticotropic|corticotrophic| +E0019255|coryza virus|coryzavirus| +E0019260|cosensitise|cosensitize| +E0019263|coziness|cosiness| +E0019283|costalchondritis|costal chondritis| +E0019296|costo-chondral|costochondral| +E0019297|costo-chondritis|costochondritis| +E0019298|costo-clavicular|costoclavicular| +E0019304|costo-phrenic|costophrenic| +E0019308|costo-sternal|costosternal| +E0019310|costo-transverse|costotransverse| +E0019312|costo-vertebral|costovertebral| +E0019320|cost-benefit analysis|cost benefit analysis| +E0019323|cost-effectiveness|cost effectiveness| +E0019323|costeffectiveness|cost effectiveness| +E0019332|co-synthesis|cosynthesis| +E0019347|cotton wool|cotton-wool| +E0019357|couch grass|couch-grass| +E0019365|cumarin|coumarin| +E0019370|councillor|councilor| +E0019373|counselor|counsellor| +E0019392|counter-current immunoelectrophoresis|countercurrent immunoelectrophoresis| +E0019392|counter-current immuno-electrophoresis|countercurrent immunoelectrophoresis| +E0019392|countercurrent immuno-electrophoresis|countercurrent immunoelectrophoresis| +E0019410|counterattack|counter-attack| +E0019410|counter attack|counter-attack| +E0019411|counterattack|counter-attack| +E0019412|counterespionage|counter-espionage| +E0019413|counterintelligence|counter-intelligence| +E0019414|counterirritation|counter-irritation| +E0019415|counterrevolution|counter-revolution| +E0019417|countryfied|countrified| +E0019482|cow pox|cowpox| +E0019501|Coxsackie A9 virus|coxsackie A9 virus| +E0019502|Coxsackie A virus|coxsackie A virus| +E0019503|Coxsackie B virus|coxsackie B virus| +E0019509|cosy|cozy| +E0019510|cosy|cozy| +E0019511|cochromatograph|co-chromatograph| +E0019512|cocultivate|co-cultivate| +E0019514|coed|co-ed| +E0019518|coexistent|co-existent| +E0019519|cooperate|co-operate| +E0019522|cotrimoxazole|co-trimoxazole| +E0019576|cranio-cerebral|craniocerebral| +E0019578|cranio-facial|craniofacial| +E0019591|cranio-spinal|craniospinal| +E0019604|crepe|crape| +E0019649|creatinkinase|creatine kinase| +E0019697|crenelated|crenellated| +E0019740|crico-arytenoid|cricoarytenoid| +E0019747|crico-thyroid|cricothyroid| +E0019752|criminalisation|criminalization| +E0019753|criminalise|criminalize| +E0019776|criss-cross|crisscross| +E0019777|criss-cross heart|crisscross heart| +E0019780|crisscross|criss-cross| +E0019781|crisscross|criss-cross| +E0019799|criticise|criticize| +E0019822|crop dusting|crop-dusting| +E0019828|cross-bred|crossbred| +E0019836|cross-eyed|crosseyed| +E0019840|cross-link|crosslink| +E0019841|cross-link|crosslink| +E0019846|cross-over|crossover| +E0019847|cross-over|crossover| +E0019852|cross-reference|crossreference| +E0019853|cross-reference|crossreference| +E0019855|cross-fertile|cross fertile| +E0019856|cross-fertilization|cross fertilization| +E0019857|cross-fertilize|cross fertilize| +E0019858|cross-infection|cross infection| +E0019863|crosscultural|cross-cultural| +E0019877|crosstalk|cross-talk| +E0019877|cross talk|cross-talk| +E0019984|cryoglobulinaemia|cryoglobulinemia| +E0019985|cryoglobulinaemic|cryoglobulinemic| +E0019989|crymophylactic|cryophylactic| +E0019991|cryo-preservation|cryopreservation| +E0019991|cryo preservation|cryopreservation| +E0019992|cryo-preserve|cryopreserve| +E0019995|cryo-protein|cryoprotein| +E0019995|cryo protein|cryoprotein| +E0019998|cryo-surgery|cryosurgery| +E0019998|cryo surgery|cryosurgery| +E0020000|cryo-therapy|cryotherapy| +E0020000|cryo therapy|cryotherapy| +E0020019|cryptorrheic|cryptorrhetic| +E0020031|crystallisation|crystallization| +E0020031|cristallization|crystallization| +E0020031|cristallisation|crystallization| +E0020032|crystallise|crystallize| +E0020032|cristallize|crystallize| +E0020032|cristallise|crystallize| +E0020048|cubic centimetre|cubic centimeter| +E0020051|cubito-carpal|cubitocarpal| +E0020052|cubito-radial|cubitoradial| +E0020068|culdoscope|Culdoscope| +E0020104|cul de sac|cul-de-sac| +E0020138|cupronickel|cupro-nickel| +E0020144|curari|curare| +E0020161|curet|curette| +E0020162|curet|curette| +E0020193|curtsy|curtsey| +E0020194|curtsy|curtsey| +E0020244|cut-off|cutoff| +E0020244|cut off|cutoff| +E0020246|cyanamid|cyanamide| +E0020287|cyclic AMP-independent protein kinase|cyclic AMP independent protein kinase| +E0020300|cyclisation|cyclization| +E0020315|cyclophenil|cyclofenil| +E0020334|cyclo-oxygenase|cyclooxygenase| +E0020341|cyclophos-phamide|cyclophosphamide| +E0020354|ciclosporin|cyclosporin| +E0020384|cymarin|cymarine| +E0020384|tsimarin|cymarine| +E0020417|cystinamin|cystamine| +E0020418|cistafos|cystaphos| +E0020418|cistaphos|cystaphos| +E0020418|cystafos|cystaphos| +E0020421|cystathionine beta synthase|cystathionine beta-synthase| +E0020482|cystocoele|cystocele| +E0020517|cystylaminopeptidase|cystyl aminopeptidase| +E0020517|cystyl-aminopeptidase|cystyl aminopeptidase| +E0020517|cystyl-amino-peptidase|cystyl aminopeptidase| +E0020520|citicholine|cyticholine| +E0020520|citicoline|cyticholine| +E0020545|cyto-architectonic|cytoarchitectonic| +E0020546|cyto-architecture|cytoarchitecture| +E0020556|cytochrome c oxidase|cytochrome C oxidase| +E0020556|cytochrome-c oxidase|cytochrome C oxidase| +E0020590|cyto-histologic|cytohistologic| +E0020593|cytocerastic|cytokerastic| +E0020648|cyto-protective|cytoprotective| +E0020663|cyto-skeleton|cytoskeleton| +E0020677|cyto-toxic|cytotoxic| +E0020678|cyto-toxicity|cytotoxicity| +E0020680|cytotoxic T-lymphocyte|cytotoxic T lymphocyte| +E0020699|db|dB| +E0020704|decarbazine|dacarbazine| +E0020707|dacryoadenitis|dacryadenitis| +E0020733|daddy longlegs|daddy-longlegs| +E0020742|dairy farm|dairy-farm| +E0020743|dairy farmer|dairy-farmer| +E0020820|data base|database| +E0020822|dateable|datable| +E0020865|daydream|day-dream| +E0020865|day dream|day-dream| +E0020866|daydream|day-dream| +E0020866|day dream|day-dream| +E0020893|deafmutism|deaf-mutism| +E0020893|deaf mutism|deaf-mutism| +E0020902|deallergisation|deallergization| +E0020903|deallergise|deallergize| +E0020910|de-amination|deamination| +E0020951|debrisoquine|debrisoquin| +E0020975|deca-peptide|decapeptide| +E0021003|decentralise|decentralize| +E0021031|decigramme|decigram| +E0021032|decilitre|deciliter| +E0021045|decision making|decision-making| +E0021045|decisionmaking|decision-making| +E0021064|decolonisation|decolonization| +E0021065|decolonise|decolonize| +E0021066|decolourization|decolorization| +E0021066|decolorisation|decolorization| +E0021066|decolourisation|decolorization| +E0021067|decolorise|decolorize| +E0021067|decolourise|decolorize| +E0021067|decolourize|decolorize| +E0021166|defaecate|defecate| +E0021167|defaecation|defecation| +E0021178|defense|defence| +E0021179|defenseless|defenceless| +E0021180|defenselessness|defencelessness| +E0021239|deflexion|deflection| +E0021292|dehaematise|dehematize| +E0021297|dehumanisation|dehumanization| +E0021298|dehumanise|dehumanize| +E0021319|dehydrogenise|dehydrogenize| +E0021324|dehypnotise|dehypnotize| +E0021332|de-institutionalized|deinstitutionalized| +E0021335|deionisation|deionization| +E0021336|deionise|deionize| +E0021340|deja-vu|deja vu| +E0021344|decameter|dekameter| +E0021344|decametre|dekameter| +E0021355|delayed type hypersensitivity|delayed-type hypersensitivity| +E0021381|delimitate|delimit| +E0021401|delocalisation|delocalization| +E0021402|delocalise|delocalize| +E0021429|delta aminolevulinic acid|delta-aminolevulinic acid| +E0021446|demagnetise|demagnetize| +E0021448|demagog|demagogue| +E0021449|demagoguery|demagogy| +E0021462|demeanour|demeanor| +E0021470|demerera sugar|Demerara sugar| +E0021471|demetalisation|demetalization| +E0021472|demetalise|demetalize| +E0021484|demilitarisation|demilitarization| +E0021485|demilitarise|demilitarize| +E0021486|demineralisation|demineralization| +E0021487|demineralise|demineralize| +E0021492|demobilise|demobilize| +E0021495|democratisation|democratization| +E0021496|democratise|democratize| +E0021514|demonetise|demonetize| +E0021523|demoralisation|demoralization| +E0021524|demoralise|demoralize| +E0021544|denationalise|denationalize| +E0021564|denicotinised|denicotinized| +E0021564|de-nicotinized|denicotinized| +E0021564|de-nicotinised|denicotinized| +E0021695|dentato-thalamic|dentatothalamic| +E0021724|dento-alveolar|dentoalveolar| +E0021727|dento-facial|dentofacial| +E0021728|dento-gingival|dentogingival| +E0021752|deodorise|deodorize| +E0021756|deoxidise|deoxidize| +E0021765|desoxycholate|deoxycholate| +E0021774|deoxy cytidine monophosphate|deoxycytidine monophosphate| +E0021790|deoxynucleotidyltransferase|deoxynucleotidyl transferase| +E0021807|dependent|dependant| +E0021813|depersonalisation|depersonalization| +E0021814|depersonalisation neurosis|depersonalization neurosis| +E0021834|depolarise|depolarize| +E0021835|depolymerisation|depolymerization| +E0021836|depolymerise|depolymerize| +E0021884|deputise|deputize| +E0021891|derealisation|derealization| +E0021906|derivatise|derivatize| +E0021906|derivitise|derivatize| +E0021906|derivitize|derivatize| +E0021916|dermatan sulphate|dermatan sulfate| +E0021928|dermato-fibroma|dermatofibroma| +E0021928|dermato fibroma|dermatofibroma| +E0021979|descendent|descendant| +E0021997|desensitisation|desensitization| +E0021998|desensitise|desensitize| +E0022003|desexualisation|desexualization| +E0022004|desexualise|desexualize| +E0022031|desk top|desk-top| +E0022031|desktop|desk-top| +E0022049|desorption|desorbtion| +E0022080|destabilisation|destabilization| +E0022081|destabilise|destabilize| +E0022107|detectibility|detectability| +E0022108|detectible|detectable| +E0022181|devitalisation|devitalization| +E0022182|devitalise|devitalize| +E0022211|dextro-amphetamine|dextroamphetamine| +E0022220|dextro-rotatory|dextrorotatory| +E0022224|dexterous|dextrous| +E0022233|delead|de-lead| +E0022262|diacetyl morphine|diacetylmorphine| +E0022263|diacetyldiaminodiphenylsulfone|diacetyl diaminodiphenylsulfone| +E0022272|diadochocinetic|diadochokinetic| +E0022273|dieresis|diaeresis| +E0022274|diagnoseable|diagnosable| +E0022294|dialog|dialogue| +E0022295|dialog|dialogue| +E0022298|dialysability|dialyzability| +E0022299|dialysable|dialyzable| +E0022301|dialyser|dialyzer| +E0022310|diamond skin disease|diamond-skin disease| +E0022336|diaphysial|diaphyseal| +E0022337|diaphysial aclasis|diaphyseal aclasis| +E0022346|diarrhoea|diarrhea| +E0022347|diarrhoeal|diarrheal| +E0022349|diarrheogenic tumour|diarrheogenic tumor| +E0022400|diazotise|diazotize| +E0022411|dibenzyran|dibenziran| +E0022465|dichlorophene|dichlorophen| +E0022471|diclofenamid|dichlorphenamide| +E0022489|diclophenac|diclofenac| +E0022547|dienoestrol|dienestrol| +E0022560|dioestrus|diestrus| +E0022568|dietary fibre|dietary fiber| +E0022591|diethylenetriaminepentaacetate|diethylenetriaminepenta-acetate| +E0022592|diethylenetriaminepentaacetic acid|diethylenetriamine pentaacetic acid| +E0022593|diethylhexylphthalate|diethylhexyl phthalate| +E0022599|diethylstilbestrol|diethylstilboestrol| +E0022601|diethylether|diethyl ether| +E0022605|diethylpyrocarbonate|diethyl pyrocarbonate| +E0022607|dietician|dietitian| +E0022651|diffuse oesopohageal spasm|diffuse esophageal spasm| +E0022693|digestor|digester| +E0022715|digitalise|digitalize| +E0022727|digitilisation|digitilization| +E0022728|digitise|digitize| +E0022751|dihydrallazine|dihydralazine| +E0022766|dihydroergokrystin|dihydroergocristine| +E0022767|dihydroergokriptin|dihydroergocryptine| +E0022771|dihydroergotoxin|dihydroergotoxine| +E0022803|dihydroxy aluminum aminoacetate|dihydroxyaluminum aminoacetate| +E0022823|dihydroorotase|dihydro-orotase| +E0022838|dyke|dike| +E0022839|dyke|dike| +E0022863|dilithium carbamylphosphate|dilithium carbamyl phosphate| +E0022902|dimethyl acetal|dimethylacetal| +E0022904|dimethyl amine|dimethylamine| +E0022911|dimethylarsenate|dimethylarsinate| +E0022940|dimethyladipimate|dimethyl adipimate| +E0022951|dimetikon|dimeticon| +E0023005|dioctanoyl glycerol|dioctanoylglycerol| +E0023010|dioctylsulfosuccinate|dioctyl sulfosuccinate| +E0023010|dioctyl sulphosuccinate|dioctyl sulfosuccinate| +E0023010|dioctylsulphosuccinate|dioctyl sulfosuccinate| +E0023018|dioleoyl phosphatidylethanolamine|dioleoylphosphatidylethanolamine| +E0023018|dioleoylphosphatidyl ethanolamine|dioleoylphosphatidylethanolamine| +E0023022|dioptre|diopter| +E0023034|dipalmitoyl phosphatidylcholine|dipalmitoylphosphatidylcholine| +E0023041|diphenylchloroarsine|diphenylchlorarsine| +E0023173|disk|disc| +E0023177|discernability|discernibility| +E0023178|discernable|discernible| +E0023187|diskitis|discitis| +E0023198|discolour|discolor| +E0023199|discolouration|discoloration| +E0023212|disconnexion|disconnection| +E0023285|disfavour|disfavor| +E0023286|disfavour|disfavor| +E0023308|dishevelled|disheveled| +E0023313|dishonour|dishonor| +E0023314|dishonour|dishonor| +E0023346|disciform|diskiform| +E0023353|dislodgment|dislodgement| +E0023381|disorganisation|disorganization| +E0023382|disorganise|disorganize| +E0023393|despatch|dispatch| +E0023394|despatch|dispatch| +E0023396|dispensibility|dispensability| +E0023397|dispensible|dispensable| +E0023517|distention|distension| +E0023519|distil|distill| +E0023547|distoclusal|disto-occlusal| +E0023571|disulphide|disulfide| +E0023610|divers paralysis|divers' paralysis| +E0023646|disodium|di-sodium| +E0023712|dolour|dolor| +E0023738|domperidon|domperidone| +E0023779|dorsomesial|dorsimesal| +E0023781|dorso-anterior|dorsoanterior| +E0023791|dorso-radial|dorsoradial| +E0023800|dosemeter|dosimeter| +E0023801|dosemetric|dosimetric| +E0023817|double-blind method|double blind method| +E0023827|double blind|double-blind| +E0023827|doubleblind|double-blind| +E0023830|double talk|double-talk| +E0023836|donut|doughnut| +E0023841|dowse|douse| +E0023888|draughtiness|draftiness| +E0023889|draughtsman|draftsman| +E0023890|draughty|drafty| +E0023904|dramatise|dramatize| +E0023910|draft|draught| +E0023911|draft|draught| +E0023958|drinking water|drinking-water| +E0023990|drouth|drought| +E0024075|duffle|duffel| +E0024081|dulness|dullness| +E0024084|dumfound|dumbfound| +E0024106|duodeno-colic|duodenocolic| +E0024110|duodeno-jejunostomy|duodenojejunostomy| +E0024162|diad|dyad| +E0024174|dynamisation|dynamization| +E0024175|dynamise|dynamize| +E0024183|diphylline|dyphylline| +E0024188|dysboulic|dysbulic| +E0024194|dysdiadochocinetic|dysdiadochokinetic| +E0024198|dysenteric diarrhoea|dysenteric diarrhea| +E0024202|dysaesthetic|dysesthetic| +E0024203|disfunction|dysfunction| +E0024204|disfunctional|dysfunctional| +E0024212|dyshemopoietic|dyshematopoietic| +E0024212|dyshaematopoietic|dyshematopoietic| +E0024213|dysidrosis|dyshidrosis| +E0024213|dyshydrosis|dyshidrosis| +E0024221|dyslipoidosis|dyslipidosis| +E0024223|dysmenorrhoea|dysmenorrhea| +E0024246|dyspnoea|dyspnea| +E0024247|dyspnoeic|dyspneic| +E0024303|ev|eV| +E0024336|ear wax|earwax| +E0024366|ECBO virus|ecbovirus| +E0024366|ECBO-virus|ecbovirus| +E0024371|eccentroosteochondrodysplasia|eccentro-osteochondrodysplasia| +E0024411|ECHO virus|echovirus| +E0024411|ECHO-virus|echovirus| +E0024425|oecology|ecology| +E0024430|economise|economize| +E0024436|ecphorise|ecphorize| +E0024436|ekphorize|ecphorize| +E0024439|ECSO virus|ecsovirus| +E0024451|ecto-cervical|ectocervical| +E0024463|ecto-enzyme|ectoenzyme| +E0024490|ectropionise|ectropionize| +E0024504|oedema|edema| +E0024506|oedematous|edematous| +E0024531|eelworm|eel worm| +E0024532|eery|eerie| +E0024595|eggshell|egg shell| +E0024597|aegilops|egilops| +E0024609|ego-defence|ego-defense| +E0024614|ehrlich ascites tumour|ehrlich ascites tumor| +E0024621|eightfold|eight-fold| +E0024622|eightfold|eight-fold| +E0024722|electro-encephalographically|electroencephalographically| +E0024753|electronmicroscopy|electron microscopy| +E0024758|electronvolt|electron volt| +E0024850|eluant|eluent| +E0024898|embolization|embolisation| +E0024901|embolise|embolize| +E0024983|impanel|empanel| +E0024986|empathise|empathize| +E0024988|emperour|emperor| +E0024990|emphasise|emphasize| +E0025003|enplane|emplane| +E0025043|enamour|enamor| +E0025091|encephalo-myopathy|encephalomyopathy| +E0025099|encephalo-trigeminal angiomatosis|encephalotrigeminal angiomatosis| +E0025114|inclose|enclose| +E0025115|inclosure|enclosure| +E0025135|encyclopaedia|encyclopedia| +E0025144|endamoeba|endameba| +E0025149|endarterectomise|endarterectomize| +E0025152|endoarteritis|endarteritis| +E0025157|endeavour|endeavor| +E0025158|endeavour|endeavor| +E0025306|indorse|endorse| +E0025320|endostitis|endosteitis| +E0025326|endothelialisation|endothelialization| +E0025327|endothelialise|endothelialize| +E0025341|endotoxaemia|endotoxemia| +E0025347|endo-tracheal|endotracheal| +E0025361|end-stage|endstage| +E0025362|indue|endue| +E0025366|end-diastolic|end diastolic| +E0025367|end-point|end point| +E0025367|endpoint|end point| +E0025369|end stage renal disease|end-stage renal disease| +E0025376|energisation|energization| +E0025377|energise|energize| +E0025447|enrol|enroll| +E0025449|enrolment|enrollment| +E0025470|entamoeba|entameba| +E0025503|entero-cutaneous|enterocutaneous| +E0025513|entero-hepatic circulation|enterohepatic circulation| +E0025530|enterotoxaemia|enterotoxemia| +E0025532|entero-toxin|enterotoxin| +E0025537|entero-vesical|enterovesical| +E0025551|enthral|enthrall| +E0025576|endoplastic|entoplastic| +E0025591|intrench|entrench| +E0025596|intrust|entrust| +E0025647|eosine|eosin| +E0025648|eosinophile|eosinophil| +E0025649|eosinophile|eosinophil| +E0025658|eosinophilic meningo-encephalitis|eosinophilic meningoencephalitis| +E0025683|effedrin|ephedrine| +E0025766|epididymoorchitis|epididymo-orchitis| +E0025770|epidural anaesthesia|epidural anesthesia| +E0025771|epidural haematoma|epidural hematoma| +E0025807|epimenorrhoea|epimenorrhea| +E0025810|epinephrin|epinephrine| +E0025824|epiphysial|epiphyseal| +E0025825|epiphysial cartilage|epiphyseal cartilage| +E0025828|epiphysial plate|epiphyseal plate| +E0025866|epithelialisation|epithelialization| +E0025867|epithelialise|epithelialize| +E0025872|epithelial tumour|epithelial tumor| +E0025888|epitomise|epitomize| +E0025922|equalisation|equalization| +E0025923|equalise|equalize| +E0025994|ergometrin|ergometrine| +E0026015|eroticisation|eroticization| +E0026016|eroticise|eroticize| +E0026018|erotisation|erotization| +E0026019|erotise|erotize| +E0026031|errour|error| +E0026061|erythroedema polyneuropathy|erythredema polyneuropathy| +E0026062|erythraemic myelosis|erythremic myelosis| +E0026086|erythroleukaemia|erythroleukemia| +E0026086|erythroleucemia|erythroleukemia| +E0026086|erythroleucaemia|erythroleukemia| +E0026116|aescin|escin| +E0026116|escina|escin| +E0026120|aesculin|esculin| +E0026126|oesophageal|esophageal| +E0026127|oesophageal atresia|esophageal atresia| +E0026134|oesophagectomy|esophagectomy| +E0026135|oesophagitis|esophagitis| +E0026136|oesophagobronchial|esophagobronchial| +E0026136|esophago-bronchial|esophagobronchial| +E0026136|oesophago-bronchial|esophagobronchial| +E0026137|oesophagogastrectomy|esophagogastrectomy| +E0026137|esophago-gastrectomy|esophagogastrectomy| +E0026137|oesophago-gastrectomy|esophagogastrectomy| +E0026138|oesophagogastric|esophagogastric| +E0026138|esophago-gastric|esophagogastric| +E0026138|oesophago-gastric|esophagogastric| +E0026139|oesophagogastric junction|esophagogastric junction| +E0026141|oesophagogastrostomy|esophagogastrostomy| +E0026141|esophago-gastrostomy|esophagogastrostomy| +E0026141|oesophago-gastrostomy|esophagogastrostomy| +E0026144|oesophagoplasty|esophagoplasty| +E0026146|oesophagorespiratory|esophagorespiratory| +E0026146|esophago-respiratory|esophagorespiratory| +E0026146|oesophago-respiratory|esophagorespiratory| +E0026147|oesophagoscopy|esophagoscopy| +E0026149|oesophagostomy|esophagostomy| +E0026150|oesophagotracheal|esophagotracheal| +E0026150|esophago-tracheal|esophagotracheal| +E0026150|oesophago-tracheal|esophagotracheal| +E0026151|oesophagus|esophagus| +E0026158|specially|especially| +E0026164|expresso|espresso| +E0026179|essential mixed cryoglobulinaemia|essential mixed cryoglobulinemia| +E0026183|essential thrombocythaemia|essential thrombocythemia| +E0026196|aesthesia|esthesia| +E0026207|aestivation|estivation| +E0026211|oestradiol|estradiol| +E0026212|oestradiol benzoate|estradiol benzoate| +E0026216|oestriol|estriol| +E0026217|oestrogen|estrogen| +E0026218|oestrogenic|estrogenic| +E0026219|oestrogenicity|estrogenicity| +E0026220|estrogenisation|estrogenization| +E0026220|oestrogenization|estrogenization| +E0026220|oestrogenisation|estrogenization| +E0026221|estrogenise|estrogenize| +E0026221|oestrogenize|estrogenize| +E0026221|oestrogenise|estrogenize| +E0026222|oestrogen-like|estrogen-like| +E0026223|oestrogen-stimulated neurophysin|estrogen-stimulated neurophysin| +E0026224|oestrone|estrone| +E0026225|oestrus|estrous| +E0026227|oestrus|estrus| +E0026245|ethchlorovynol|ethchlorvynol| +E0026248|aether|ether| +E0026252|etherisation|etherization| +E0026253|etherise|etherize| +E0026317|ethylalcohol|ethyl alcohol| +E0026323|ethylketocyclazocine|ethyl-ketocyclazocine| +E0026324|ethyndiol diacetate|ethynodiol diacetate| +E0026327|aetiologic|etiologic| +E0026344|eukaryote|eucaryote| +E0026345|eukaryotic|eucaryotic| +E0026354|euglycaemic|euglycemic| +E0026390|eurythmics|eurhythmics| +E0026531|exchangable|exchangeable| +E0026683|exomphalos macroglossia gigantism syndrome|exomphalos-macroglossia-gigantism syndrome| +E0026695|exophthalmus|exophthalmos| +E0026701|exorcise|exorcize| +E0026716|expandible|expandable| +E0026752|expendible|expendable| +E0026873|exteriorisation|exteriorization| +E0026874|exteriorise|exteriorize| +E0026878|externalisation|externalization| +E0026879|externalise|externalize| +E0026930|extra-cellular|extracellular| +E0026931|extra-cellularly|extracellularly| +E0026932|extra-cellular fluid|extracellular fluid| +E0026934|extracellular matrix material|extracellular matrix-material| +E0026938|extra-cochlear|extracochlear| +E0026949|extractible|extractable| +E0026955|extra-curricular|extracurricular| +E0026966|extra-hepatic|extrahepatic| +E0027001|extra-pleural|extrapleural| +E0027009|extra-pulmonary|extrapulmonary| +E0027012|extra-renal|extrarenal| +E0027038|extroversion|extraversion| +E0027042|extraintracranial arterial bypass|extra-intracranial arterial bypass| +E0027055|extravert|extrovert| +E0027056|extrovert|extroverted| +E0027056|extraverted|extroverted| +E0027056|extravert|extroverted| +E0027083|eye-ball|eyeball| +E0027090|eyedrop|eye drop| +E0027092|eyestrain|eye-strain| +E0027092|eye strain|eye-strain| +E0027093|eyetooth|eye-tooth| +E0027106|facetted|faceted| +E0027111|face powder|face-powder| +E0027152|factorise|factorize| +E0027156|factor VIII related antigen|factor VIII-related antigen| +E0027169|Factor XIII|factor XIII| +E0027178|feces|faeces| +E0027182|faggot|fagot| +E0027183|faggot|fagot| +E0027208|faith healing|faith-healing| +E0027237|fallout|fall-out| +E0027252|false negative|false-negative| +E0027253|false negative|false-negative| +E0027271|familial hypophosphataemia|familial hypophosphatemia| +E0027274|familial megaloblastic anaemia|familial megaloblastic anemia| +E0027281|familiarise|familiarize| +E0027287|family history|family-history| +E0027288|family life|family-life| +E0027309|phantasy|fantasy| +E0027317|faradisation|faradization| +E0027318|faradise|faradize| +E0027319|faradiser|faradizer| +E0027331|farmers' lung|farmer's lung| +E0027336|far-sighted|farsighted| +E0027337|far-sightedness|farsightedness| +E0027352|fascitis|fasciitis| +E0027401|fatiguability|fatigability| +E0027401|fatigueability|fatigability| +E0027419|fatty tumour|fatty tumor| +E0027425|fat-free|fat free| +E0027429|fat cell|fat-cell| +E0027441|faultfinding|fault-finding| +E0027448|favour|favor| +E0027449|favour|favor| +E0027450|favourable|favorable| +E0027451|favourableness|favorableness| +E0027452|favourably|favorably| +E0027453|favorite|favourite| +E0027454|favorite|favourite| +E0027455|favoritism|favouritism| +E0027473|featherbed|feather-bed| +E0027474|featherbed|feather-bed| +E0027492|faecal|fecal| +E0027525|felspar|feldspar| +E0027566|feminisation|feminization| +E0027601|foenugreek|fenugreek| +E0027609|fermenter|fermentor| +E0027634|fertilisation|fertilization| +E0027636|fertilise|fertilize| +E0027637|fertiliser|fertilizer| +E0027644|fervour|fervor| +E0027657|foetal|fetal| +E0027659|foetal alcohol syndrome|fetal alcohol syndrome| +E0027661|foetal haemoglobin|fetal hemoglobin| +E0027661|fetal haemoglobin|fetal hemoglobin| +E0027664|foetal membrane|fetal membrane| +E0027670|foetid|fetid| +E0027675|foetoprotein|fetoprotein| +E0027676|foetoscopic|fetoscopic| +E0027677|foetoscopy|fetoscopy| +E0027680|foetus|fetus| +E0027699|fibreoptic|fiberoptic| +E0027699|fiber optic|fiberoptic| +E0027699|fibre optic|fiberoptic| +E0027700|fibre optics|fiber optics| +E0027701|fibre-endoscopic|fiber-endoscopic| +E0027704|fiber|fibre| +E0027705|fiberboard|fibreboard| +E0027706|fiberglass|fibreglass| +E0027747|fibroblast-like|fibroblastlike| +E0027807|fibrose|fibrous| +E0027839|field test|field-test| +E0027840|field test|field-test| +E0027901|filtrable|filterable| +E0027929|fimbrilin|fimbrillin| +E0027932|fineable|finable| +E0027936|finalise|finalize| +E0027969|fire-proof|fireproof| +E0027970|fire-proof|fireproof| +E0027974|fire control|fire-control| +E0027975|firedamp|fire-damp| +E0027976|firepower|fire-power| +E0027986|first-born|firstborn| +E0027987|first-born|firstborn| +E0027997|fishing tackle|fishing-tackle| +E0028013|fissure-in-ano|fissure in ano| +E0028017|fistulisation|fistulization| +E0028092|flat foot|flatfoot| +E0028105|flavin adenine dinucleotide|flavin-adenine dinucleotide| +E0028110|flavour|flavor| +E0028111|flavouring|flavoring| +E0028117|flax dressers' disease|flax-dresser's disease| +E0028127|fledgeling|fledgling| +E0028142|flection|flexion| +E0028183|flocculent|flocculant| +E0028194|floctafenin|floctafenine| +E0028215|floatation|flotation| +E0028232|flowcytometry|flow cytometry| +E0028256|fluidisation|fluidization| +E0028257|fluidise|fluidize| +E0028274|non-fluorescence|nonfluorescence| +E0028284|flouridisation|fluoridization| +E0028285|fluoridise|fluoridize| +E0028297|fluorimetry|fluorometry| +E0028305|fluoruracil|fluorouracil| +E0028308|fluoximesteron|fluoxymesterone| +E0028317|fluorothyl|flurothyl| +E0028341|flyingfish|flying-fish| +E0028341|flying fish|flying-fish| +E0028422|followup|follow-up| +E0028423|followup|follow-up| +E0028433|fount|font| +E0028434|fontanel|fontanelle| +E0028452|foot drop|footdrop| +E0028463|foot-rot|foot rot| +E0028464|foot and mouth disease|foot-and-mouth disease| +E0028466|footslog|foot-slog| +E0028497|fore arm|forearm| +E0028501|forbear|forebear| +E0028502|forbode|forebode| +E0028507|fo'c's'le|forecastle| +E0028507|fo'c'sle|forecastle| +E0028516|forgo|forego| +E0028544|fore skin|foreskin| +E0028551|for ever|forever| +E0028577|formaldehyd|formaldehyde| +E0028581|formalin-fixed|formalinfixed| +E0028586|formalise|formalize| +E0028622|foreswear|forswear| +E0028649|phosphomycin|fosfomycin| +E0028656|fossilisation|fossilization| +E0028657|fossilise|fossilize| +E0028674|four-fold|fourfold| +E0028675|four-fold|fourfold| +E0028685|fowl pest|fowlpest| +E0028715|fragillity|fragility| +E0028752|fraternisation|fraternization| +E0028753|fraternise|fraternize| +E0028781|freeze dry|freeze-dry| +E0028791|freestanding|free-standing| +E0028795|fraenal|frenal| +E0028799|fraenum|frenum| +E0028848|frigostabile|frigostable| +E0028857|frivoller|frivoler| +E0028887|fronto-cortical aphasia|frontocortical aphasia| +E0028894|fronto-polar|frontopolar| +E0028897|frontooccipital|fronto-occipital| +E0028902|frostbite|frost-bite| +E0028903|frostbitten|frost-bitten| +E0028927|furosemide|frusemide| +E0028949|fulfill|fulfil| +E0028950|fulfilment|fulfillment| +E0029016|funduscopy|fundoscopy| +E0029020|fundoscopic|funduscopic| +E0029067|frucula|furculum| +E0029143|gaberdine|gabardine| +E0029157|gayly|gaily| +E0029183|galactorrhoea|galactorrhea| +E0029186|galactosaemia|galactosemia| +E0029194|Galenic|galenic| +E0029201|gall bladder|gallbladder| +E0029205|galavant|gallivant| +E0029205|galivant|gallivant| +E0029210|gall stone|gallstone| +E0029210|gall-stone|gallstone| +E0029215|galvanisation|galvanization| +E0029216|galvanise|galvanize| +E0029238|gametocinetic|gametokinetic| +E0029243|gammaglobulin|gamma globulin| +E0029243|gamma-globulin|gamma globulin| +E0029244|gamma-radiation|gamma radiation| +E0029247|gamma-amino butyric acid|gamma-aminobutyric acid| +E0029247|gamma amino-butyric acid|gamma-aminobutyric acid| +E0029247|gamma aminobutyric acid|gamma-aminobutyric acid| +E0029262|ganlioform|gangliform| +E0029271|ganglio-neuroma|ganglioneuroma| +E0029300|garrapata disease|garapata disease| +E0029321|garotte|garrotte| +E0029321|garote|garrotte| +E0029321|garrote|garrotte| +E0029322|garotte|garrotte| +E0029322|garote|garrotte| +E0029322|garrote|garrotte| +E0029340|gasolene|gasoline| +E0029382|gastro-colic|gastrocolic| +E0029387|gastro-duodenal|gastroduodenal| +E0029388|gastro-duodenitis|gastroduodenitis| +E0029390|gastro-enteric|gastroenteric| +E0029391|gastro-enteritis|gastroenteritis| +E0029395|gastro-enterology|gastroenterology| +E0029397|gastro-enterostomy|gastroenterostomy| +E0029398|gastro-epiploic|gastroepiploic| +E0029400|gastro-oesophageal|gastroesophageal| +E0029400|gastro-esophageal|gastroesophageal| +E0029400|gastrooesophageal|gastroesophageal| +E0029402|gastrooesophageal reflux|gastroesophageal reflux| +E0029402|gastro esophageal reflux|gastroesophageal reflux| +E0029402|gastro oesophageal reflux|gastroesophageal reflux| +E0029402|gastro-esophageal reflux|gastroesophageal reflux| +E0029402|gastro-oesophageal reflux|gastroesophageal reflux| +E0029411|gastro-intestinal|gastrointestinal| +E0029412|gastro-intestinal bleeding|gastrointestinal bleeding| +E0029414|gastro-intestinal tract|gastrointestinal tract| +E0029429|gasteropod|gastropod| +E0029430|gasteropod|gastropod| +E0029447|gas chromatographic|gas-chromatographic| +E0029449|gasworks|gas-works| +E0029449|gas works|gas-works| +E0029458|gage|gauge| +E0029459|gage|gauge| +E0029481|gell|gel| +E0029481|jell|gel| +E0029482|gell|gel| +E0029482|jell|gel| +E0029486|gelatine|gelatin| +E0029489|gelatinisation|gelatinization| +E0029490|gelatinise|gelatinize| +E0029500|gelelectrophoresis|gel electrophoresis| +E0029501|gel-filtration|gel filtration| +E0029501|gelfiltration|gel filtration| +E0029523|generalisability|generalizability| +E0029524|generalisable|generalizable| +E0029525|generalisation|generalization| +E0029526|generalise|generalize| +E0029534|general anaesthesia|general anesthesia| +E0029596|genito-urinary|genitourinary| +E0029611|gentamycin|gentamicin| +E0029631|genuflexion|genuflection| +E0029647|geometric mean titre|geometric mean titer| +E0029666|germinal localisation|germinal localization| +E0029674|germplasm|germ plasm| +E0029674|germ-plasm|germ plasm| +E0029681|Gestalt|gestalt| +E0029682|Gestalt theory|gestalt theory| +E0029732|jibe|gibe| +E0029733|jibe|gibe| +E0029767|gingivo-labial|gingivolabial| +E0029770|gingivo-stomatitis|gingivostomatitis| +E0029803|glamorisation|glamorization| +E0029804|glamorise|glamorize| +E0029909|glomerulo-nephritis|glomerulonephritis| +E0029909|glomerulo nephritis|glomerulonephritis| +E0029911|glomerulo-sclerosis|glomerulosclerosis| +E0029911|glomerulo sclerosis|glomerulosclerosis| +E0029936|glossocinesthetic|glossokinesthetic| +E0029972|glucuronosyl transferase|glucuronosyltransferase| +E0030006|glycaemia|glycemia| +E0030007|glycaemic|glycemic| +E0030016|glyceryltrinitrate|glyceryl trinitrate| +E0030016|glyceryl-trinitrate|glyceryl trinitrate| +E0030019|glycocalix|glycocalyx| +E0030046|glycosamino-glycan|glycosaminoglycan| +E0030054|glycosylated haemoglobin|glycosylated hemoglobin| +E0030096|goitre|goiter| +E0030120|gonadotropic|gonadotrophic| +E0030121|gonadotrophin|gonadotropin| +E0030122|gonadotrophin-releasing hormone|gonadotropin-releasing hormone| +E0030122|gonadotropin releasing hormone|gonadotropin-releasing hormone| +E0030122|gonadotrophin releasing hormone|gonadotropin-releasing hormone| +E0030129|gonitis|goneitis| +E0030145|gonorrhoeal|gonorrheal| +E0030147|gonorrhoeal conjunctivitis|gonorrheal conjunctivitis| +E0030150|gonorrhea|gonorrhoea| +E0030157|goodbye|good-bye| +E0030157|good-by|good-bye| +E0030161|good-neighborliness|good-neighbourliness| +E0030173|gormandise|gormandize| +E0030224|graft versus host disease|graft-versus-host disease| +E0030225|graft versus host reaction|graft-versus-host reaction| +E0030228|gramme|gram| +E0030235|gram negative|gram-negative| +E0030235|gramnegative|gram-negative| +E0030237|gram positive|gram-positive| +E0030237|grampositive|gram-positive| +E0030238|gram positive|gram-positive| +E0030298|grapeshot|grape-shot| +E0030341|grave-wax|grave wax| +E0030394|gray|grey| +E0030395|gray|grey| +E0030396|gray|grey| +E0030398|grayness|greyness| +E0030422|grip|grippe| +E0030462|ground water|groundwater| +E0030464|ground itch anaemia|ground itch anemia| +E0030465|groundfish|ground-fish| +E0030466|ground glass|ground-glass| +E0030467|ground glass|ground-glass| +E0030474|group transfer|group-transfer| +E0030479|groveller|groveler| +E0030484|grownup|grown-up| +E0030485|grownup|grown-up| +E0030490|growth hormone releasing factor|growth hormone-releasing factor| +E0030498|gruelling|grueling| +E0030505|grumous|grumose| +E0030522|guanosinetriphosphate|guanosine triphosphate| +E0030535|guesswork|guess-work| +E0030556|guineapig|guinea pig| +E0030556|guinea-pig|guinea pig| +E0030558|guinea fowl|guinea-fowl| +E0030585|gun cotton|gun-cotton| +E0030585|guncotton|gun-cotton| +E0030600|guttapercha|gutta-percha| +E0030600|gutta percha|gutta-percha| +E0030609|jibe|gybe| +E0030617|gynaecium|gynaeceum| +E0030617|gynecium|gynaeceum| +E0030617|gynoecium|gynaeceum| +E0030622|gynaecological|gynecological| +E0030623|gynaecologist|gynecologist| +E0030624|gynaecology|gynecology| +E0030625|gynaecomastia|gynecomastia| +E0030668|hemagglutinating|haemagglutinating| +E0030669|hemagglutination|haemagglutination| +E0030670|hemagglutinin|haemagglutinin| +E0030671|hemangioendothelioma|haemangioendothelioma| +E0030672|hematolysis|haematolysis| +E0030673|hematoxylin|haematoxylin| +E0030674|hemocirculatory|haemocirculatory| +E0030675|hemofiltrate|haemofiltrate| +E0030676|hemolymph|haemolymph| +E0030678|hemoperfusion|haemoperfusion| +E0030679|hemophilus meningitis|haemophilus meningitis| +E0030680|hemoptysis|haemoptysis| +E0030681|hemorrhage|haemorrhage| +E0030682|hemorrhage|haemorrhage| +E0030684|hemostasis|haemostasis| +E0030716|halfhearted|half-hearted| +E0030717|halflife|half-life| +E0030717|half life|half-life| +E0030728|hallux|hallex| +E0030753|halo naevus|halo nevus| +E0030794|hand foot and mouth disease|hand-foot-and-mouth disease| +E0030794|hand, foot, and mouth disease|hand-foot-and-mouth disease| +E0030795|handwritten|hand-written| +E0030803|haplo-identity|haploidentity| +E0030807|haploidentical|haplo-identical| +E0030813|haptene|hapten| +E0030815|haptophile|haptophil| +E0030821|hari-kiri|hara-kiri| +E0030822|harbour|harbor| +E0030823|harbour|harbor| +E0030851|harmonise|harmonize| +E0030870|hasheesh|hashish| +E0030897|haut mal|haut-mal| +E0030923|head gear|headgear| +E0030923|head-gear|headgear| +E0030980|heart failure|heart-failure| +E0030987|heatshock protein|heat shock protein| +E0031007|hebephrenic|hebephreniac| +E0031008|hebephrenic|hebephreniac| +E0031014|hectogramme|hectogram| +E0031035|hight|height| +E0031037|heanous|heinous| +E0031075|hemocytozoon|hemacytozoon| +E0031075|haemacytozoon|hemacytozoon| +E0031075|haemocytozoon|hemacytozoon| +E0031077|haemadsorbent|hemadsorbent| +E0031079|haemagglutinate|hemagglutinate| +E0031080|haemagglutination inhibition|hemagglutination inhibition| +E0031082|haemal|hemal| +E0031083|haemal canal|hemal canal| +E0031084|haemangioblastoma|hemangioblastoma| +E0031086|haemangiofibroma|hemangiofibroma| +E0031087|haemangioma|hemangioma| +E0031088|haemangiosarcoma|hemangiosarcoma| +E0031090|haemarthrosis|hemarthrosis| +E0031095|hemothorax|hemathorax| +E0031095|haemothorax|hemathorax| +E0031095|haemathorax|hemathorax| +E0031095|hematothorax|hemathorax| +E0031096|haematic|hematic| +E0031097|haematic|hematic| +E0031098|haematinic|hematinic| +E0031099|haematinic|hematinic| +E0031101|haematobium|hematobium| +E0031102|haematochezia|hematochezia| +E0031104|haematocrit|hematocrit| +E0031105|haematocryal|hematocryal| +E0031106|haematoencephalic|hematoencephalic| +E0031106|hemato-encephalic|hematoencephalic| +E0031106|haemato-encephalic|hematoencephalic| +E0031107|hemato-encephalic barrier|hematoencephalic barrier| +E0031107|hemato encephalic barrier|hematoencephalic barrier| +E0031107|haematoencephalic barrier|hematoencephalic barrier| +E0031107|haemato-encephalic barrier|hematoencephalic barrier| +E0031107|haemato encephalic barrier|hematoencephalic barrier| +E0031108|haematogenic|hematogenic| +E0031110|haematogenous|hematogenous| +E0031114|haematoid|hematoid| +E0031115|haematoid carcinoma|hematoid carcinoma| +E0031116|haematologic|hematologic| +E0031118|haematology|hematology| +E0031119|haematoma|hematoma| +E0031123|haematophorphyrin|hematophorphyrin| +E0031124|haematophytic|hematophytic| +E0031125|haematoplastic|hematoplastic| +E0031127|haematopoietic|hematopoietic| +E0031129|haematoporphyrin|hematoporphyrin| +E0031132|haematotoxic|hematotoxic| +E0031135|haematozoon|hematozoon| +E0031136|haematuria|hematuria| +E0031137|haem|heme| +E0031146|heamic|hemic| +E0031148|haemic calculus|hemic calculus| +E0031173|hemispherium|hemisphaerium| +E0031179|hemi-thorax|hemithorax| +E0031183|haemo|hemo| +E0031189|haemochromatosis|hemochromatosis| +E0031193|haemoclip|hemoclip| +E0031195|haemocytophagic|hemocytophagic| +E0031196|haemodiafiltration|hemodiafiltration| +E0031198|haemodialysis|hemodialysis| +E0031199|haemodilution|hemodilution| +E0031200|haemodynamic|hemodynamic| +E0031201|haemodynamics|hemodynamics| +E0031205|haemofiltration|hemofiltration| +E0031208|haemoglobin|hemoglobin| +E0031209|haemoglobinated|hemoglobinated| +E0031210|haemoglobinemia|hemoglobinemia| +E0031210|haemoglobinaemia|hemoglobinemia| +E0031210|hemoglobinaemia|hemoglobinemia| +E0031212|haemoglobinolysis|hemoglobinolysis| +E0031215|haemoglobinuric|hemoglobinuric| +E0031220|hemolisation|hemolization| +E0031221|haemolymphopoietic|hemolymphopoietic| +E0031222|haemolysis|hemolysis| +E0031224|haemolytic|hemolytic| +E0031225|haemolytic anaemia|hemolytic anemia| +E0031225|haemolytic anemia|hemolytic anemia| +E0031225|hemolytic anaemia|hemolytic anemia| +E0031227|haemolysable|hemolyzable| +E0031228|haemolyzation|hemolyzation| +E0031228|hemolysation|hemolyzation| +E0031228|haemolysation|hemolyzation| +E0031229|hemolyse|hemolyze| +E0031229|haemolyse|hemolyze| +E0031229|haemolyze|hemolyze| +E0031230|haemolyzed|hemolyzed| +E0031230|hemolysed|hemolyzed| +E0031230|haemolysed|hemolyzed| +E0031232|haemopathic|hemopathic| +E0031236|haemophilia|hemophilia| +E0031237|haemophiliac|hemophiliac| +E0031238|haemophilia A|hemophilia A| +E0031240|haemophilic|hemophilic| +E0031245|haemopneumothorax|hemopneumothorax| +E0031246|haemopoietic|hemopoietic| +E0031246|hemapoietic|hemopoietic| +E0031246|haemapoietic|hemopoietic| +E0031249|haemorenal index|hemorenal index| +E0031250|haemorenal salt index|hemorenal salt index| +E0031252|haemorrhagic|hemorrhagic| +E0031256|haemorrhagic disease|hemorrhagic disease| +E0031266|hemorrhagic nephroso nephritis|hemorrhagic nephrosonephritis| +E0031266|haemorrhagic nephrosonephritis|hemorrhagic nephrosonephritis| +E0031266|haemorrhagic nephroso nephritis|hemorrhagic nephrosonephritis| +E0031270|haemorrhagic pyelitis|hemorrhagic pyelitis| +E0031273|hemorrhagic thrombocythaemia|hemorrhagic thrombocythemia| +E0031276|haemorrhoidal|hemorrhoidal| +E0031279|haemosiderosis|hemosiderosis| +E0031280|haemostatic|hemostatic| +E0031281|haemostatic|hemostatic| +E0031282|haemostyptic|hemostyptic| +E0031292|heparinisation|heparinization| +E0031293|heparinise|heparinize| +E0031295|hepatectomisation|hepatectomization| +E0031296|hepatectomise|hepatectomize| +E0031321|hepatised|hepatized| +E0031322|hepato-biliary|hepatobiliary| +E0031326|hepato-cellular|hepatocellular| +E0031361|hepato-renal|hepatorenal| +E0031365|hepato-splenomegaly|hepatosplenomegaly| +E0031366|hepato-toxic|hepatotoxic| +E0031367|hepato-toxicity|hepatotoxicity| +E0031395|hereditary haemorrhagic telangiectasia|hereditary hemorrhagic telangiectasia| +E0031400|hereditary nonspherocytic hemolytic anaemia|hereditary nonspherocytic hemolytic anemia| +E0031400|hereditary non-spherocytic hemolytic anemia|hereditary nonspherocytic hemolytic anemia| +E0031400|hereditary non-spherocytic hemolytic anaemia|hereditary nonspherocytic hemolytic anemia| +E0031400|hereditary nonspherocytic haemolytic anaemia|hereditary nonspherocytic hemolytic anemia| +E0031400|hereditary non-spherocytic haemolytic anaemia|hereditary nonspherocytic hemolytic anemia| +E0031442|herpesvirus hominis|herpesvirus hominous| +E0031443|herpesencephalitis|herpes encephalitis| +E0031451|herpesvirus|herpes virus| +E0031555|heterozygozity|heterozygosity| +E0031580|hexuronyl hexosaminoglycan sulphate|hexuronyl hexosaminoglycan sulfate| +E0031590|hiccough|hiccup| +E0031591|hiccough|hiccup| +E0031601|hidroadenoma|hidradenoma| +E0031601|hydradenoma|hidradenoma| +E0031624|high-fat|high fat| +E0031627|high-performance liquid chromatography|high performance liquid chromatography| +E0031634|high altitude pulmonary edema|high-altitude pulmonary edema| +E0031636|high density lipoprotein|high-density lipoprotein| +E0031636|high-density lipo-protein|high-density lipoprotein| +E0031636|high density lipo-protein|high-density lipoprotein| +E0031651|highpitched|high-pitched| +E0031665|highjack|hijack| +E0031665|high-jack|hijack| +E0031753|histo-incompatible|histoincompatible| +E0031764|histo-pathologic|histopathologic| +E0031854|home-like|homelike| +E0031861|homoeopath|homeopath| +E0031862|homoeopathic|homeopathic| +E0031863|homoeopathy|homeopathy| +E0031865|homoeostatic|homeostatic| +E0031908|homogenisation|homogenization| +E0031908|homogeneization|homogenization| +E0031908|homogeneisation|homogenization| +E0031909|homogenise|homogenize| +E0031967|honour|honor| +E0031968|honour|honor| +E0031969|honourable|honorable| +E0031979|hook worm|hookworm| +E0031979|hook-worm|hookworm| +E0032037|horse-shoe|horseshoe| +E0032041|horseplay|horse-play| +E0032042|horseracing|horse-racing| +E0032043|horseradish|horse-radish| +E0032054|hospitalisation|hospitalization| +E0032055|hospitalise|hospitalize| +E0032076|hot line|hotline| +E0032076|hot-line|hotline| +E0032077|hot spot|hotspot| +E0032080|hotplate|hot plate| +E0032089|house fly|housefly| +E0032139|humanise|humanize| +E0032145|human T-cell leukemia virus I antibody|human T cell leukemia virus I antibody| +E0032146|human T-cell leukemia virus I antigen|human T cell leukemia virus I antigen| +E0032147|human T-cell leukemia virus antibody|human T cell leukemia virus antibody| +E0032148|human T-cell leukemia virus antigen|human T cell leukemia virus antigen| +E0032149|human T-cell lymphotropic virus type III|human T cell lymphotropic virus type III| +E0032152|human T-lymphotropic virus associated leukemia lymphoma|human T lymphotropic virus associated leukemia lymphoma| +E0032153|human T-lymphotropic virus type IV|human T lymphotropic virus type IV| +E0032180|human leucocyte antigen|human leukocyte antigen| +E0032185|human papilloma virus|human papillomavirus| +E0032201|human T cell leukaemia virus III antibody|human T cell leukemia virus III antibody| +E0032201|human T cell leucemia virus III antibody|human T cell leukemia virus III antibody| +E0032201|human T cell leucaemia virus III antibody|human T cell leukemia virus III antibody| +E0032201|human t cell leukemia virus iii antibody|human T cell leukemia virus III antibody| +E0032202|human t cell leukemia virus iii antigen|human T cell leukemia virus III antigen| +E0032204|human t cell leukemia virus i myelopathy|human T cell leukemia virus I myelopathy| +E0032206|human t lymphotropic virus ii|human T lymphotropic virus II| +E0032207|human T-cell leukaemia|human T-cell leukemia| +E0032207|human T-cell leucemia|human T-cell leukemia| +E0032207|human T-cell leucaemia|human T-cell leukemia| +E0032207|human t-cell leukemia|human T-cell leukemia| +E0032209|human T-cell leukemia virus III infection|human t-cell leukemia virus iii infection| +E0032212|human T-cell leukemia virus III serology|human t-cell leukemia virus iii serology| +E0032216|human t-cell lymphotrophic virus|human T-cell lymphotrophic virus| +E0032217|human t-cell lymphotrophic virus 1|human T-cell lymphotrophic virus 1| +E0032230|humero-ulnar|humeroulnar| +E0032240|humour|humor| +E0032241|humour|humor| +E0032242|humoural|humoral| +E0032246|humourous|humorous| +E0032255|hunger oedema|hunger edema| +E0032290|hyaline|hyalin| +E0032312|hybridization|hybridisation| +E0032315|hybridise|hybridize| +E0032334|hidradenitis|hydradenitis| +E0032337|hydrallazin|hydralazine| +E0032357|hydraemic oedema|hydremic edema| +E0032358|hydraemic nephritis|hydremic nephritis| +E0032367|hydrocoele|hydrocele| +E0032379|hydrocodon|hydrocodone| +E0032387|HydroDiuril|HydroDIURIL| +E0032408|hydrogen sulphide|hydrogen sulfide| +E0032419|hydrolyse|hydrolyze| +E0032419|hydrolize|hydrolyze| +E0032419|hydrolise|hydrolyze| +E0032440|hydrophillic|hydrophilic| +E0032441|hydrophillic|hydrophilic| +E0032457|hydrops foetalis|hydrops fetalis| +E0032517|hydroxyindole acetic acid|hydroxyindoleacetic acid| +E0032517|hydroxy-indoleacetic acid|hydroxyindoleacetic acid| +E0032534|hydroxymethylglutaryl coA synthase|hydroxymethylglutaryl CoA synthase| +E0032566|hydroxyacid|hydroxy acid| +E0032628|hyperamylasaemia|hyperamylasemia| +E0032635|hyperbilirubinaemia|hyperbilirubinemia| +E0032640|hypercalcaemia|hypercalcemia| +E0032641|hypercalcaemic|hypercalcemic| +E0032643|hypercapnaemia|hypercapnemia| +E0032653|hyperchloraemic|hyperchloremic| +E0032655|hypercholesterolaemia|hypercholesterolemia| +E0032656|hypercholesterolaemic|hypercholesterolemic| +E0032675|hyperaemic|hyperemic| +E0032678|hyperaesthesia|hyperesthesia| +E0032691|hyperglycaemic|hyperglycemic| +E0032694|hyperidrosis|hyperhidrosis| +E0032698|hyperimmunisation|hyperimmunization| +E0032699|hyperimmunise|hyperimmunize| +E0032703|hyperinsulinaemia|hyperinsulinemia| +E0032703|hyperinsulemia|hyperinsulinemia| +E0032703|hyperinsulaemia|hyperinsulinemia| +E0032706|hyperkalaemia|hyperkalemia| +E0032719|hyperlipaemia|hyperlipemia| +E0032720|hyperlipidaemia|hyperlipidemia| +E0032721|hyperlipidaemic|hyperlipidemic| +E0032722|hyperlipoproteinaemia|hyperlipoproteinemia| +E0032729|hyperluteinisation|hyperluteinization| +E0032730|hyperluteinise|hyperluteinize| +E0032732|hypermenorrhoea|hypermenorrhea| +E0032740|hypermyoglobinaemia|hypermyoglobinemia| +E0032782|hyperpolarisation|hyperpolarization| +E0032783|hyperpolarise|hyperpolarize| +E0032790|hyperprolactinaemic|hyperprolactinemic| +E0032798|hyperreninaemic|hyperreninemic| +E0032842|hypertriglyceridaemia|hypertriglyceridemia| +E0032842|hyper-triglyceridaemia|hypertriglyceridemia| +E0032842|hyper-triglyceridemia|hypertriglyceridemia| +E0032862|hyperuricaemia|hyperuricemia| +E0032873|hypervolaemia|hypervolemia| +E0032875|hypaesthesia|hypesthesia| +E0032875|hypoaesthesia|hypesthesia| +E0032878|hyphaema|hyphema| +E0032900|hypnotise|hypnotize| +E0032908|hypoalbuminaemia|hypoalbuminemia| +E0032922|hypochloraemic|hypochloremic| +E0032926|hypocholesterolaemic|hypocholesterolemic| +E0032939|hypocomplementaemic|hypocomplementemic| +E0032967|hypogammaglobulinaemia|hypogammaglobulinemia| +E0032981|hypoglycaemia|hypoglycemia| +E0032982|hypoglycaemic|hypoglycemic| +E0032983|hypoglycaemic|hypoglycemic| +E0032991|hypoidrosis|hypohidrosis| +E0032995|hypokalemic|hypokalaemic| +E0033004|hypolipidaemic|hypolipidemic| +E0033014|hypomineralisation|hypomineralization| +E0033031|hypophosphataemia|hypophosphatemia| +E0033032|hypophosphataemic|hypophosphatemic| +E0033034|hypophysial|hypophyseal| +E0033036|hypophysectomise|hypophysectomize| +E0033039|hypophysioprivic|hypophyseoprivic| +E0033040|hypophysiotropic|hypophyseotropic| +E0033040|hypophysotropic|hypophyseotropic| +E0033056|hypoprolactinaemia|hypoprolactinemia| +E0033066|hyporeninaemic|hyporeninemic| +E0033104|hypothalamo-neurohypophysial|hypothalamo-neurohypophyseal| +E0033104|hypothalamoneurohypophysial|hypothalamo-neurohypophyseal| +E0033104|hypothalamoneurohypophyseal|hypothalamo-neurohypophyseal| +E0033113|hypothesise|hypothesize| +E0033130|hypovolaemia|hypovolemia| +E0033131|hypovelaemic|hypovolemic| +E0033131|hypovolaemic|hypovolemic| +E0033132|hypovolaemic shock|hypovolemic shock| +E0033142|hypoxaemia|hypoxemia| +E0033160|hysterectomised|hysterectomized| +E0033215|ice-cream|ice cream| +E0033261|idealisation|idealization| +E0033262|idealise|idealize| +E0033302|idiopathic hypochromic anaemia|idiopathic hypochromic anemia| +E0033306|idiopathic multiple pigmented haemorrhagic sarcoma|idiopathic multiple pigmented hemorrhagic sarcoma| +E0033306|idiopathetic multiple pigmented hemorrhagic sarcoma|idiopathic multiple pigmented hemorrhagic sarcoma| +E0033306|idiopathetic multiple pigmented haemorrhagic sarcoma|idiopathic multiple pigmented hemorrhagic sarcoma| +E0033323|idiot-savant|idiot savant| +E0033325|idio-ventricular|idioventricular| +E0033332|idolise|idolize| +E0033353|ilial|ileal| +E0033357|ileocaecal|ileocecal| +E0033357|ileocoecal|ileocecal| +E0033357|ileo-cecal|ileocecal| +E0033357|ileo cecal|ileocecal| +E0033357|ileo-caecal|ileocecal| +E0033357|ileo caecal|ileocecal| +E0033357|ileo-coecal|ileocecal| +E0033357|ileo coecal|ileocecal| +E0033360|ileo-colic|ileocolic| +E0033368|ileo-rectal anastomosis|ileorectal anastomosis| +E0033384|ilio-femoral|iliofemoral| +E0033387|ilio-inguinal|ilioinguinal| +E0033467|imidazol|imidazole| +E0033518|immobilisation|immobilization| +E0033519|immobilise|immobilize| +E0033531|immortalisation|immortalization| +E0033532|immortalise|immortalize| +E0033541|immune-complex disease|immune complex disease| +E0033553|immune complex|immune-complex| +E0033558|immunisation|immunization| +E0033560|immunise|immunize| +E0033566|immuno assay|immunoassay| +E0033566|immuno-assay|immunoassay| +E0033567|immuno assay|immunoassay| +E0033567|immuno-assay|immunoassay| +E0033593|immuno-deficiency|immunodeficiency| +E0033605|immuno-electrophoresis|immunoelectrophoresis| +E0033631|immuno-histochemically|immunohistochemically| +E0033635|immuno-incompetent|immunoincompetent| +E0033656|immuno-positive|immunopositive| +E0033712|impassibility|impassability| +E0033713|impassible|impassable| +E0033762|impetiginisation|impetiginization| +E0033910|in as much as|inasmuch as| +E0034002|inclusion blennorrhoea|inclusion blennorrhea| +E0034014|income tax|income-tax| +E0034188|indirect haemagglutination|indirect hemagglutination| +E0034197|indispensible|indispensable| +E0034212|individualisation|individualization| +E0034213|individualise|individualize| +E0034264|industrialisation|industrialization| +E0034265|industrialise|industrialize| +E0034363|infectable|infectible| +E0034446|infero-lateral|inferolateral| +E0034448|infero-posterior|inferoposterior| +E0034456|infiltrating tumour|infiltrating tumor| +E0034485|inflexion|inflection| +E0034502|influenzavirus|influenza virus| +E0034527|infra-diaphragmatic|infradiaphragmatic| +E0034535|infra-mammary|inframammary| +E0034540|infra-orbital|infraorbital| +E0034548|infra-red|infrared| +E0034550|infra-renal|infrarenal| +E0034555|infra-structure|infrastructure| +E0034557|infra-temporal fossa|infratemporal fossa| +E0034558|infra-tentorial|infratentorial| +E0034564|infra-umbilical|infraumbilical| +E0034594|engrained|ingrained| +E0034660|initiater|initiator| +E0034688|inner-city|innercity| +E0034715|innoculation|inoculation| +E0034746|enquire|inquire| +E0034747|enquiry|inquiry| +E0034770|ensemination|insemination| +E0034831|instal|install| +E0034833|instalment|installment| +E0034846|instill|instil| +E0034847|instillation|instilation| +E0034855|institutionalisation|institutionalization| +E0034856|institutionalise|institutionalize| +E0034888|insulinopaenia|insulinopenia| +E0034892|insulin-dependent diabetes mellitus|insulin dependent diabetes mellitus| +E0034896|insulin dependent|insulin-dependent| +E0034898|insulinlike|insulin-like| +E0034899|insulinlike growth factor I|insulin-like growth factor I| +E0034899|insulin-like growth factor 1|insulin-like growth factor I| +E0034899|insulinlike growth factor 1|insulin-like growth factor I| +E0034900|insulin-like growth factor ii|insulin-like growth factor II| +E0034900|insulinlike growth factor II|insulin-like growth factor II| +E0034900|insulin-like growth factor 2|insulin-like growth factor II| +E0034900|insulinlike growth factor 2|insulin-like growth factor II| +E0034902|insulin secretion|insulin-secretion| +E0034936|intellectualisation|intellectualization| +E0034937|intellectualise|intellectualize| +E0034975|inter-arytenoid|interarytenoid| +E0035032|inter-dialysis|interdialysis| +E0035056|interferon alpha|interferon-alpha| +E0035057|interferon gamma|interferon-gamma| +E0035108|intermediate hemorrhage|intermediary hemorrhage| +E0035142|internalisation|internalization| +E0035143|internalise|internalize| +E0035154|internal fertilisation|internal fertilization| +E0035176|internationalisation|internationalization| +E0035177|internationalise|internationalize| +E0035180|intern|interne| +E0035186|interneship|internship| +E0035303|interstitial cell-stimulating hormone|interstitial-cell stimulating hormone| +E0035303|interstitial cell stimulating hormone|interstitial-cell stimulating hormone| +E0035312|intertropical anaemia|intertropical anemia| +E0035312|inter-tropical anemia|intertropical anemia| +E0035312|inter-tropical anaemia|intertropical anemia| +E0035385|intra-abdominal|intrabdominal| +E0035385|intraabdominal|intrabdominal| +E0035393|intra-carotid|intracarotid| +E0035398|intra-cellular|intracellular| +E0035399|intra-cellularly|intracellularly| +E0035404|intracerebral haemorrhage|intracerebral hemorrhage| +E0035419|intra-cranial|intracranial| +E0035421|intracranial haemorrhage|intracranial hemorrhage| +E0035437|intra-dural|intradural| +E0035437|intra dural|intradural| +E0035441|intra-epithelial|intraepithelial| +E0035495|intra-muscular|intramuscular| +E0035496|intra-muscularly|intramuscularly| +E0035502|intra-neural|intraneural| +E0035508|intra-nuclear|intranuclear| +E0035511|intra-ocular|intraocular| +E0035513|intra-ocular pressure|intraocular pressure| +E0035514|intra-operative|intraoperative| +E0035515|intra-operatively|intraoperatively| +E0035516|intra-oral|intraoral| +E0035517|intra-orbital|intraorbital| +E0035552|intra-species|intraspecies| +E0035561|intratendinous supraanconeal bursa|intratendinous supra-anconeal bursa| +E0035566|intra-thoracic|intrathoracic| +E0035571|intra-tracheal|intratracheal| +E0035574|intratumour|intratumor| +E0035575|intratumoural|intratumoral| +E0035575|intra-tumoral|intratumoral| +E0035575|intra-tumoural|intratumoral| +E0035579|intra-uterine|intrauterine| +E0035586|intra-vascular|intravascular| +E0035589|intra-venous|intravenous| +E0035590|intra-venously|intravenously| +E0035591|intravenous anaesthesia|intravenous anesthesia| +E0035607|intraaortic|intra-aortic| +E0035610|intraarterially|intra-arterially| +E0035611|intraarticular|intra-articular| +E0035613|intraatrial|intra-atrial| +E0035660|intususception|intussusception| +E0035774|invitro|in vitro| +E0035774|in-vitro|in vitro| +E0035775|invitro|in vitro| +E0035776|in-vivo|in vivo| +E0035776|invivo|in vivo| +E0035779|indwelling|in-dwelling| +E0035780|infighting|in-fighting| +E0035785|in vivo|in-vivo| +E0035785|invivo|in-vivo| +E0035791|iodin|iodine| +E0035796|iodise|iodize| +E0035813|ionisation|ionization| +E0035815|ionise|ionize| +E0035824|iotalamate meglumine|iothalamate meglumine| +E0035877|iron-binding protein|iron binding protein| +E0035878|iron-deficiency anemia|iron deficiency anemia| +E0035878|iron deficiency anaemia|iron deficiency anemia| +E0035878|iron-deficiency anaemia|iron deficiency anemia| +E0035932|ischaemia|ischemia| +E0035933|ischaemia-reperfusion|ischemia-reperfusion| +E0035934|ischaemic|ischemic| +E0035936|ischaemic heart disease|ischemic heart disease| +E0035938|ischaemic necrosis|ischemic necrosis| +E0035944|ischiadic|ischiatic| +E0035981|islet cell|islet-cell| +E0036003|isoelectric focussing|isoelectric focusing| +E0036008|isoetarin|isoetharine| +E0036093|isosmotic|iso-osmotic| +E0036093|isoosmotic|iso-osmotic| +E0036103|italicise|italicize| +E0036112|itemise|itemize| +E0036135|jack knife|jack-knife| +E0036135|jackknife|jack-knife| +E0036136|jack knife|jack-knife| +E0036136|jackknife|jack-knife| +E0036142|gaol|jail| +E0036143|gaol|jail| +E0036167|jaywalk|jay-walk| +E0036182|jejuno-ileal|jejunoileal| +E0036183|jejuno-ileal bypass|jejunoileal bypass| +E0036183|jejuno ileal bypass|jejunoileal bypass| +E0036184|jejuno-ileitis|jejunoileitis| +E0036192|jeopardise|jeopardize| +E0036206|jewelled|jeweled| +E0036207|jeweller|jeweler| +E0036208|jewelery|jewellery| +E0036208|jewelry|jewellery| +E0036211|jig-saw|jigsaw| +E0036212|jig-saw puzzle|jigsaw puzzle| +E0036214|jimpsonweed|jimson weed| +E0036214|jimsonweed|jimson weed| +E0036245|josamycine|josamycin| +E0036270|judgment|judgement| +E0036342|juvenile pernicious anaemia|juvenile pernicious anemia| +E0036346|juxta-epiphyseal|juxtaepiphyseal| +E0036346|juxtaepiphysial|juxtaepiphyseal| +E0036346|juxta-epiphysial|juxtaepiphyseal| +E0036353|juxta-pyloric|juxtapyloric| +E0036357|jiujitsu|ju-jitsu| +E0036357|jujitsu|ju-jitsu| +E0036362|kail|kale| +E0036366|kaluresis|kaliuresis| +E0036367|kaluretic|kaliuretic| +E0036368|kaluretic|kaliuretic| +E0036372|kanamycin sulphate|kanamycin sulfate| +E0036375|capoc|kapok| +E0036377|carat|karat| +E0036380|karnofsky performance status|Karnofsky performance status| +E0036387|karyoclastic|karyoklastic| +E0036416|cheloid|keloid| +E0036427|keratan sulphate|keratan sulfate| +E0036428|ceratectomy|keratectomy| +E0036431|keratinisation|keratinization| +E0036432|keratinise|keratinize| +E0036436|kerato-acanthoma|keratoacanthoma| +E0036437|kerato-conjunctivitis|keratoconjunctivitis| +E0036438|kerato-conjunctivitis sicca|keratoconjunctivitis sicca| +E0036438|kerato conjunctivitis sicca|keratoconjunctivitis sicca| +E0036468|kerosine|kerosene| +E0036473|keto acidosis|ketoacidosis| +E0036495|qat|khat| +E0036495|kat|khat| +E0036503|kidnapper|kidnaper| +E0036516|kilogramme|kilogram| +E0036517|kilogram-calorie|kilogram calorie| +E0036520|kilometre|kilometer| +E0036543|kinaesthetic|kinesthetic| +E0036600|knock-knee|knock knee| +E0036608|knowledgable|knowledgeable| +E0036613|colypeptic|kolypeptic| +E0036618|kumis|koumiss| +E0036658|labio-cervical|labiocervical| +E0036661|labio-gingival|labiogingival| +E0036670|labio-nasal|labionasal| +E0036673|labour|labor| +E0036674|labour|labor| +E0036680|labour union|labor union| +E0036700|lacklustre|lackluster| +E0036705|lachrymal|lacrimal| +E0036706|lachrymal|lacrimal| +E0036707|lachrymal apparatus|lacrimal apparatus| +E0036708|lachrymal calculus|lacrimal calculus| +E0036709|lachrymal canal|lacrimal canal| +E0036710|lachrymal fistula|lacrimal fistula| +E0036711|lachrymal fossa|lacrimal fossa| +E0036712|lachrymal gland|lacrimal gland| +E0036713|lachrymal sac|lacrimal sac| +E0036714|lacrymate|lacrimate| +E0036715|lacrymation|lacrimation| +E0036720|lactalbumine|lactalbumin| +E0036720|lactalbumen|lactalbumin| +E0036749|lacto-vegetarian|lactovegetarian| +E0036750|lacto-vegetarian|lactovegetarian| +E0036771|laisser-faire|laissez-faire| +E0036776|lambast|lambaste| +E0036814|lamp black|lamp-black| +E0036814|lampblack|lamp-black| +E0036857|lapinise|lapinize| +E0036870|largess|largesse| +E0036875|large cell carcinoma|large-cell carcinoma| +E0036905|laryngo-pharyngeal|laryngopharyngeal| +E0036915|laryngo-tracheal|laryngotracheal| +E0036917|laryngo-tracheo-bronchitis|laryngotracheobronchitis| +E0036972|lateral occipito-temporal gyrus|lateral occipitotemporal gyrus| +E0037011|laughing gas|laughing-gas| +E0037054|lb.|lb| +E0037075|leaf mould|leaf-mould| +E0037075|leaf mold|leaf-mould| +E0037090|leapfrog|leap-frog| +E0037091|leapfrog|leap-frog| +E0037144|left handed|left-handed| +E0037144|lefthanded|left-handed| +E0037145|left sided appendicitis|left-sided appendicitis| +E0037154|legalise|legalize| +E0037162|leghaemoglobin|leghemoglobin| +E0037178|legitimatise|legitimatize| +E0037222|lense|lens| +E0037241|lenti-virus|lentivirus| +E0037330|leukocyte|leucocyte| +E0037333|leukoplakia|leucoplakia| +E0037335|leukovorin|leucovorin| +E0037337|leucemia|leukemia| +E0037337|leukaemia|leukemia| +E0037337|leucaemia|leukemia| +E0037339|leukaemic|leukemic| +E0037339|leucaemic|leukemic| +E0037339|leucemic|leukemic| +E0037340|leukaemic|leukemic| +E0037340|leucaemic|leukemic| +E0037340|leucemic|leukemic| +E0037341|leukaemic reticuloendotheliosis|leukemic reticuloendotheliosis| +E0037343|leukaemogenesis|leukemogenesis| +E0037344|leukaemogenic|leukemogenic| +E0037346|leukaemoid|leukemoid| +E0037347|leukaemoid reaction|leukemoid reaction| +E0037347|leucemoid reaction|leukemoid reaction| +E0037347|leucaemoid reaction|leukemoid reaction| +E0037353|leucocytic|leukocytic| +E0037355|leucocytoclastic|leukocytoclastic| +E0037357|leucocytolytic|leukocytolytic| +E0037358|leucocytosis|leukocytosis| +E0037362|leucodystrophy|leukodystrophy| +E0037363|leucoedema|leukoedema| +E0037364|leucoencephalitis|leukoencephalitis| +E0037365|leucoencephalopathy|leukoencephalopathy| +E0037367|leucokeratosis|leukokeratosis| +E0037370|leucoma|leukoma| +E0037374|leuconecrosis|leukonecrosis| +E0037375|leucopenia|leukopenia| +E0037376|leucopenic|leukopenic| +E0037380|leucorrhea|leukorrhea| +E0037380|leucorrhoea|leukorrhea| +E0037380|leukorrhoea|leukorrhea| +E0037382|leucosarcoma|leukosarcoma| +E0037383|leucosequestration|leukosequestration| +E0037384|leucosis|leukosis| +E0037385|leucotactic|leukotactic| +E0037386|leucotaxis|leukotaxis| +E0037387|leucotomy|leukotomy| +E0037389|leucotriene|leukotriene| +E0037390|leucovirus|leukovirus| +E0037405|laevocardia|levocardia| +E0037407|laevomeprozine|levomepromazine| +E0037410|laevorotatory|levorotatory| +E0037414|laevulose|levulose| +E0037434|libellous|libelous| +E0037439|liberalisation|liberalization| +E0037440|liberalise|liberalize| +E0037454|licence|license| +E0037455|licence|license| +E0037456|licenced|licensed| +E0037476|liqourice|licorice| +E0037491|lieno-renal|lienorenal| +E0037503|lifestyle|life style| +E0037505|lifelong|life-long| +E0037506|life threatening|life-threatening| +E0037506|lifethreatening|life-threatening| +E0037527|light-weight|lightweight| +E0037528|light-weight|lightweight| +E0037531|light chain|light-chain| +E0037535|lighthearted|light-hearted| +E0037535|light hearted|light-hearted| +E0037536|lightheartedness|light-heartedness| +E0037549|likeability|likability| +E0037550|likeable|likable| +E0037647|linguo-mesial|linguomesial| +E0037675|lipoedema|lipedema| +E0037676|lipide|lipid| +E0037708|lipoid dermato-arthritis|lipoid dermatoarthritis| +E0037712|lipoidproteinosis|lipoid proteinosis| +E0037733|lipophylic|lipophilic| +E0037736|lipo-protein|lipoprotein| +E0037753|lip reading|lip-reading| +E0037753|lipreading|lip-reading| +E0037758|liquify|liquefy| +E0037766|liquidise|liquidize| +E0037782|lissom|lissome| +E0037783|lissomeness|lissomness| +E0037794|litre|liter| +E0037824|lithotriptor|lithotripter| +E0037832|litmus paper|litmus-paper| +E0037875|lodestone|loadstone| +E0037918|localisation|localization| +E0037919|localise|localize| +E0037929|local anaesthetic|local anesthetic| +E0037945|lock jaw|lockjaw| +E0037971|lodgment|lodgement| +E0037997|loaiasis|loiasis| +E0037997|loasis|loiasis| +E0038029|long bone|long-bone| +E0038029|longbone|long-bone| +E0038031|long distance|long-distance| +E0038036|long term|long-term| +E0038036|longterm|long-term| +E0038038|longwinded|long-winded| +E0038039|longwindedness|long-windedness| +E0038052|loop diuretic|loop-diuretic| +E0038079|loath|loth| +E0038088|lower|lour| +E0038127|low-density lipoprotein|low density lipoprotein| +E0038127|low-density lipo-protein|low density lipoprotein| +E0038127|low density lipo-protein|low density lipoprotein| +E0038130|low-fat diet|low fat diet| +E0038133|low-pressure hydrocephalus|low pressure hydrocephalus| +E0038137|low-salt diet|low salt diet| +E0038139|low back|low-back| +E0038196|lumbo-abdominal|lumboabdominal| +E0038198|lumbo-costal|lumbocostal| +E0038199|lumbo-crural|lumbocrural| +E0038204|lumbo-sacral|lumbosacral| +E0038211|lumenal|luminal| +E0038274|luster|lustre| +E0038280|luteinisation|luteinization| +E0038281|luteinise|luteinize| +E0038281|lutenize|luteinize| +E0038282|luteinising hormone|luteinizing hormone| +E0038282|lutenizing hormone|luteinizing hormone| +E0038284|luteinizing hormone-releasing factor|luteinizing hormone releasing factor| +E0038285|luteinizing hormone-releasing hormone|luteinizing hormone releasing hormone| +E0038288|luteotropic|luteotrophic| +E0038313|lymphangiitis|lymphangeitis| +E0038325|lymphopheresis|lymphapheresis| +E0038328|lymphatic oedema|lymphatic edema| +E0038331|lymphatic leukaemia|lymphatic leukemia| +E0038331|lymphatic leucemia|lymphatic leukemia| +E0038331|lymphatic leucaemia|lymphatic leukemia| +E0038338|lymphoedema|lymphedema| +E0038344|lymphoblastic leukaemia|lymphoblastic leukemia| +E0038344|lymphoblastic leucemia|lymphoblastic leukemia| +E0038344|lymphoblastic leucaemia|lymphoblastic leukemia| +E0038352|lymphocoele|lymphocele| +E0038370|lymphocytic leukaemia|lymphocytic leukemia| +E0038370|lymphocytic leucaemia|lymphocytic leukemia| +E0038370|lymphocytic leucemia|lymphocytic leukemia| +E0038395|lymphoid leucemia|lymphoid leukemia| +E0038395|lymphoid leukaemia|lymphoid leukemia| +E0038395|lymphoid leucaemia|lymphoid leukemia| +E0038418|lympho-proliferative|lymphoproliferative| +E0038419|lympho-reticular|lymphoreticular| +E0038425|lymphnode|lymph node| +E0038431|linestrenol|lynestrenol| +E0038431|lynoestrenol|lynestrenol| +E0038435|lyophilise|lyophilize| +E0038452|lysogenisation|lysogenization| +E0038453|lysogenise|lysogenize| +E0038469|LES|l.e.s.| +E0038475|macadamise|macadamize| +E0038503|macroglobulinaemia|macroglobulinemia| +E0038547|maedi visna|maedi-visna| +E0038571|magnesium sulphate|magnesium sulfate| +E0038579|magnetisation|magnetization| +E0038580|magnetise|magnetize| +E0038625|make-up|makeup| +E0038632|malacoplacia|malacoplakia| +E0038632|malakoplakia|malacoplakia| +E0038707|malignant tumour|malignant tumor| +E0038743|mammillated|mamillated| +E0038744|mammillitis|mamillitis| +E0038749|mammoplasty|mammaplasty| +E0038759|mamillary|mammillary| +E0038760|mamilliform|mammilliform| +E0038778|mandatory|mandatary| +E0038812|manic-depressive psychosis|manic depressive psychosis| +E0038816|manic depressive illness|manic-depressive illness| +E0038839|maneuverability|manoeuvrability| +E0038840|maneuverable|manoeuvrable| +E0038842|maneuver|manoeuvre| +E0038870|maple-bark disease|maple bark disease| +E0038871|maple-syrup-urine disease|maple syrup urine disease| +E0038872|maprotilin|maprotiline| +E0038901|marihuana|marijuana| +E0038911|Marital Satisfaction Scale|marital satisfaction scale| +E0038948|marsupialisation|marsupialization| +E0038949|marsupialise|marsupialize| +E0038958|marvellous|marvelous| +E0038965|masculinisation|masculinization| +E0038966|masculinise|masculinize| +E0039045|mastoccipital|masto-occipital| +E0039050|mast cell leucemia|mast cell leukemia| +E0039050|mast cell leukaemia|mast cell leukemia| +E0039050|mast cell leucaemia|mast cell leukemia| +E0039050|mast-cell leukemia|mast cell leukemia| +E0039050|mast-cell leukaemia|mast cell leukemia| +E0039050|mast-cell leucemia|mast cell leukemia| +E0039050|mast-cell leucaemia|mast cell leukemia| +E0039066|materialisation|materialization| +E0039067|materialise|materialize| +E0039092|matt|matte| +E0039092|mat|matte| +E0039137|maximisation|maximization| +E0039138|maximise|maximize| +E0039147|maitansine|maytansine| +E0039148|mayapple|may apple| +E0039150|mazindole|mazindol| +E0039155|meagre|meager| +E0039190|mebendazol|mebendazole| +E0039206|mechanise|mechanize| +E0039219|medieval|mediaeval| +E0039273|medicine man|medicine-man| +E0039290|medio-lateral|mediolateral| +E0039292|medio-tarsal|mediotarsal| +E0039326|mephloquine|mefloquine| +E0039332|megaoesophagus|megaesophagus| +E0039359|miosis|meiosis| +E0039359|myosis|meiosis| +E0039360|miotic|meiotic| +E0039360|myotic|meiotic| +E0039369|melanaemia|melanemia| +E0039388|melanophore stimulating hormone|melanophore-stimulating hormone| +E0039408|mellitis|melitis| +E0039448|membraneous|membranous| +E0039466|memorisation|memorization| +E0039476|menarchial|menarcheal| +E0039487|meningocortical|meningeocortical| +E0039495|meningocoele|meningocele| +E0039499|meningococcaemia|meningococcemia| +E0039503|meningo-encephalitis|meningoencephalitis| +E0039573|mefenetoin|mephenytoin| +E0039586|mercerise|mercerize| +E0039645|merrymaking|merry-making| +E0039692|mesio-distal|mesiodistal| +E0039704|mesioocclusal|mesio-occlusal| +E0039704|mesiocclusal|mesio-occlusal| +E0039705|mesioocclusodistal|mesio-occlusodistal| +E0039707|mesmerise|mesmerize| +E0039778|mesouranic|mesuranic| +E0039791|metabolisability|metabolizability| +E0039792|metabolisable|metabolizable| +E0039793|metabolisation|metabolization| +E0039794|metabolise|metabolize| +E0039804|metachromatism|metachromasia| +E0039806|metachromatic leucodystrophy|metachromatic leukodystrophy| +E0039848|metaphysial|metaphyseal| +E0039865|metastasization|metastasisation| +E0039866|metastasise|metastasize| +E0039867|meta-static|metastatic| +E0039906|metoestrus|metestrus| +E0039909|methadylacetate|methadyl acetate| +E0039910|metallibure|methallibure| +E0039910|metallibur|methallibure| +E0039911|metamfetamine|methamphetamine| +E0039915|methanesulphonate|methanesulfonate| +E0039915|methane sulfonate|methanesulfonate| +E0039915|methane sulphonate|methanesulfonate| +E0039925|methaemoglobin|methemoglobin| +E0039926|methaemoglobinaemia|methemoglobinemia| +E0039930|metenolon|methenolone| +E0039931|methymazol|methimazole| +E0039933|methionine-enkephalin|methionine enkephalin| +E0039934|metisazone|methisazone| +E0039956|methyl cellulose|methylcellulose| +E0039974|methyl malonic acid|methylmalonic acid| +E0039979|methyl salicylate|methylsalicylate| +E0040002|meter|metre| +E0040005|metricise|metricize| +E0040035|mezereon|mezerein| +E0040036|meslocillin|mezlocillin| +E0040053|microaneurism|microaneurysm| +E0040056|microangiopathic haemolytic anaemia|microangiopathic hemolytic anemia| +E0040118|microlitre|microliter| +E0040123|micrometre|micrometer| +E0040130|micronisation|micronization| +E0040131|micronise|micronize| +E0040167|micro-stimulation|microstimulation| +E0040173|microtitre|microtiter| +E0040187|microorganism|micro-organism| +E0040188|microphysiology|micro-physiology| +E0040195|mid-brain|midbrain| +E0040202|middle-age|middle age| +E0040203|middle-aged|middle aged| +E0040238|midforceps|mid-forceps| +E0040239|midpoint|mid-point| +E0040241|midriff|mid-riff| +E0040283|militarise|militarize| +E0040301|milk alkali syndrome|milk-alkali syndrome| +E0040303|milk tooth|milk-tooth| +E0040308|millenium|millennium| +E0040313|milliliter|millilitre| +E0040314|millimetre|millimeter| +E0040321|milliosmole|milliosmol| +E0040355|mineralisation|mineralization| +E0040356|mineralise|mineralize| +E0040363|miner's asthma|miners' asthma| +E0040368|miniaturisation|miniaturization| +E0040369|miniaturise|miniaturize| +E0040382|minimise|minimize| +E0040439|misbehavior|misbehaviour| +E0040492|misjudgment|misjudgement| +E0040524|mis-shapen|misshapen| +E0040575|mytotan|mitotane| +E0040582|mitral click-murmer syndrome|mitral click murmur syndrome| +E0040616|mmol|mmole| +E0040631|mobilisation|mobilization| +E0040632|mobilise|mobilize| +E0040655|modernisation|modernization| +E0040656|modernise|modernize| +E0040691|mould|mold| +E0040692|mould|mold| +E0040694|mouldy|moldy| +E0040695|mol|mole| +E0040714|mollusk|mollusc| +E0040723|moult|molt| +E0040724|moult|molt| +E0040864|mononuclear leucocyte|mononuclear leukocyte| +E0040881|monopolise|monopolize| +E0040903|monosyphilide|monosyphilid| +E0040918|mono-unsaturated|monounsaturated| +E0040970|moralise|moralize| +E0041000|morphoea|morphea| +E0041013|morpho-genesis|morphogenesis| +E0041038|mortise|mortice| +E0041039|mortise|mortice| +E0041072|mothproof|moth-proof| +E0041073|mothproof|moth-proof| +E0041091|motoneurone|motoneuron| +E0041098|motorise|motorize| +E0041116|molder|moulder| +E0041125|mountain anaemia|mountain anemia| +E0041134|mouse mammary tumour virus|mouse mammary tumor virus| +E0041141|mousey|mousy| +E0041145|moveable|movable| +E0041146|moveable|movable| +E0041156|Moya Moya disease|moyamoya disease| +E0041156|moya-moya disease|moyamoya disease| +E0041185|muckrake|muck-rake| +E0041186|muckraker|muck-raker| +E0041187|mucocoele|mucocele| +E0041190|muco-cutaneous|mucocutaneous| +E0041196|muco-epidermoid|mucoepidermoid| +E0041197|muco-epidermoid carcinoma|mucoepidermoid carcinoma| +E0041210|muco-purulent|mucopurulent| +E0041233|mucous oedema|mucous edema| +E0041264|muellarian|mullerian| +E0041264|Mullerian|mullerian| +E0041264|Muellarian|mullerian| +E0041274|multicentre|multicenter| +E0041274|multi-center|multicenter| +E0041274|multi-centre|multicenter| +E0041277|multi-channel|multichannel| +E0041285|multi-disciplinary|multidisciplinary| +E0041304|multi-gene|multigene| +E0041329|multiplexor|multiplexer| +E0041365|multiinfarct|multi-infarct| +E0041366|multi infarct dementia|multi-infarct dementia| +E0041366|multiinfarct dementia|multi-infarct dementia| +E0041404|murine leukaemia virus|murine leukemia virus| +E0041404|murine leucaemia virus|murine leukemia virus| +E0041404|murine leucemia virus|murine leukemia virus| +E0041430|muscularise|muscularize| +E0041437|musculo-aponeurotic|musculoaponeurotic| +E0041438|musculo-cutaneous|musculocutaneous| +E0041444|musculo-skeletal|musculoskeletal| +E0041447|musculo-tendinous|musculotendinous| +E0041458|mushroom pickers' disease|mushroom picker's disease| +E0041458|mushroom-pickers' disease|mushroom picker's disease| +E0041458|mushroom-picker's disease|mushroom picker's disease| +E0041460|mushroom-worker's disease|mushroom worker's disease| +E0041460|mushroom workers' disease|mushroom worker's disease| +E0041460|mushroom-workers' disease|mushroom worker's disease| +E0041476|moustache|mustache| +E0041582|myelinization|myelinisation| +E0041590|myeloblastic leucemia|myeloblastic leukemia| +E0041590|myeloblastc leukaemia|myeloblastic leukemia| +E0041590|myeloblastc leucaemia|myeloblastic leukemia| +E0041595|myelocytic leucemia|myelocytic leukemia| +E0041595|myelocytic leukaemia|myelocytic leukemia| +E0041595|myelocytic leucaemia|myelocytic leukemia| +E0041598|myelo-dysplastic syndrome|myelodysplastic syndrome| +E0041603|myelogenous leukaemia|myelogenous leukemia| +E0041603|myelogenous leucemia|myelogenous leukemia| +E0041603|myelogenous leucaemia|myelogenous leukemia| +E0041610|myeloid leukaemia|myeloid leukemia| +E0041610|myeloid leucemia|myeloid leukemia| +E0041610|myeloid leucaemia|myeloid leukemia| +E0041619|myelomeningocoele|myelomeningocele| +E0041620|myelo-monocytic|myelomonocytic| +E0041621|myelomonocytic leukaemia|myelomonocytic leukemia| +E0041621|myelomonocytic leucemia|myelomonocytic leukemia| +E0041621|myelomonocytic leucaemia|myelomonocytic leukemia| +E0041632|myelo-proliferative|myeloproliferative| +E0041651|myo-cardial|myocardial| +E0041675|myo-electric|myoelectric| +E0041677|myo-epithelial|myoepithelial| +E0041706|myo-neural|myoneural| +E0041752|myo-tube|myotube| +E0041787|myxoedema|myxedema| +E0041789|myxoedematous|myxedematous| +E0041824|nafronyl oxalate|nafronyloxalate| +E0041828|n'gana|nagana| +E0041832|nail patella syndrome|nail-patella syndrome| +E0041833|nail polish|nail-polish| +E0041834|nail varnish|nail-varnish| +E0041836|naivety|naivete| +E0041854|nanogramme|nanogram| +E0041856|nanometre|nanometer| +E0041864|naphtol|naphthol| +E0041865|naphtol acetate esterase|naphthol acetate esterase| +E0041888|narcotise|narcotize| +E0041901|narrow angle glaucoma|narrow-angle glaucoma| +E0041907|nasalisation|nasalization| +E0041908|nasalise|nasalize| +E0041930|naso-bronchial|nasobronchial| +E0041934|naso-gastric|nasogastric| +E0041935|naso-labial|nasolabial| +E0041937|nasolachrymal|nasolacrimal| +E0041937|naso-lachrymal|nasolacrimal| +E0041937|naso-lacrimal|nasolacrimal| +E0041939|naso-lacrimal duct|nasolacrimal duct| +E0041939|nasolachrymal duct|nasolacrimal duct| +E0041939|naso-lachrymal duct|nasolacrimal duct| +E0041971|nationalise|nationalize| +E0041980|natruretic|natriuretic| +E0041981|natruretic|natriuretic| +E0041990|naturalisation|naturalization| +E0041991|naturalise|naturalize| +E0042003|natureopathy|naturopathy| +E0042038|near-sighted|nearsighted| +E0042039|near-sightedness|nearsightedness| +E0042049|nebulisation|nebulization| +E0042050|nebulise|nebulize| +E0042087|necrotising|necrotizing| +E0042088|necrotising angiitis|necrotizing angiitis| +E0042090|necrotising fasciitis|necrotizing fasciitis| +E0042091|necrotising haemorrhagic encephalomyelitis|necrotizing hemorrhagic encephalomyelitis| +E0042093|necrotising papillitis|necrotizing papillitis| +E0042094|necrotising renal papillitis|necrotizing renal papillitis| +E0042096|necrotising ulcerative gingivitis|necrotizing ulcerative gingivitis| +E0042099|necrotising vasculitis|necrotizing vasculitis| +E0042147|neighbor|neighbour| +E0042148|neighbor|neighbour| +E0042149|neighborhood|neighbourhood| +E0042150|neighborliness|neighbourliness| +E0042151|neighborly|neighbourly| +E0042169|neo-cortex|neocortex| +E0042178|neocinetic|neokinetic| +E0042194|neo-plastic|neoplastic| +E0042206|neocolonialism|neo-colonialism| +E0042213|nephrectomise|nephrectomize| +E0042307|nesslerisation|nesslerization| +E0042308|nesslerise|nesslerize| +E0042316|net|nett| +E0042319|nettle rash|nettlerash| +E0042343|neuraxone|neuraxon| +E0042363|neurobehavioural|neurobehavioral| +E0042379|neuro-cutaneous|neurocutaneous| +E0042387|neuro-ectodermal|neuroectodermal| +E0042417|neurohumour|neurohumor| +E0042418|neurohumoural|neurohumoral| +E0042419|neurohypophysial|neurohypophyseal| +E0042456|neurone|neuron| +E0042461|neuronaevus|neuronevus| +E0042468|neuron specific enolase|neuron-specific enolase| +E0042489|neuropile|neuropil| +E0042552|neutralisation|neutralization| +E0042553|neutralise|neutralize| +E0042557|neutropaenia|neutropenia| +E0042558|neutropaenic|neutropenic| +E0042559|neutrophile|neutrophil| +E0042560|neutrophile|neutrophil| +E0042567|naevocarcinoma|nevocarcinoma| +E0042567|nevo-carcinoma|nevocarcinoma| +E0042567|naevo-carcinoma|nevocarcinoma| +E0042568|nevo-cellular|nevocellular| +E0042569|naevocytic|nevocytic| +E0042571|naevoid|nevoid| +E0042572|naevoid basal-cell carcinoma syndrome|nevoid basal cell carcinoma syndrome| +E0042572|nevoid basal-cell carcinoma syndrome|nevoid basal cell carcinoma syndrome| +E0042572|naevoid basal cell carcinoma syndrome|nevoid basal cell carcinoma syndrome| +E0042573|naevoid neuroma|nevoid neuroma| +E0042574|naevoxanthoendothelioma|nevoxanthoendothelioma| +E0042575|naevus|nevus| +E0042578|new-born|newborn| +E0042578|new born|newborn| +E0042579|new-born|newborn| +E0042579|new born|newborn| +E0042614|nicotinamide adenine dinucleotide|nicotinamide-adenine dinucleotide| +E0042615|nicotinamide adenine dinucleotide phosphate|nicotinamide-adenine dinucleotide phosphate| +E0042632|nifuroxim|nifuroxime| +E0042643|nightblindness|night blindness| +E0042647|night soil|night-soil| +E0042648|nighttime|night-time| +E0042653|nicethamide|nikethamide| +E0042660|Ninhydrin|ninhydrin| +E0042686|nitro blue tetrazolium|nitroblue tetrazolium| +E0042695|nitrogenise|nitrogenize| +E0042705|nitroglycerin|nitroglycerine| +E0042765|nodular goitre|nodular goiter| +E0042811|non-bacterial|nonbacterial| +E0042813|non-bacterial thrombotic endocarditis|nonbacterial thrombotic endocarditis| +E0042815|non-barbiturate|nonbarbiturate| +E0042821|non-chromaffin paraganglioma|nonchromaffin paraganglioma| +E0042823|non clinical|nonclinical| +E0042823|non-clinical|nonclinical| +E0042824|non-coding|noncoding| +E0042825|non competitive|noncompetitive| +E0042825|non-competitive|noncompetitive| +E0042832|non-deciduate placenta|nondeciduate placenta| +E0042834|non diabetic|nondiabetic| +E0042834|non-diabetic|nondiabetic| +E0042835|non-diabetic|nondiabetic| +E0042836|nondialysed|nondialyzed| +E0042840|non-emergency|nonemergency| +E0042844|non essential|nonessential| +E0042844|non-essential|nonessential| +E0042845|non-esterified|nonesterified| +E0042846|non-esterified fatty acid|nonesterified fatty acid| +E0042848|non experimental|nonexperimental| +E0042848|non-experimental|nonexperimental| +E0042849|non fatal|nonfatal| +E0042849|non-fatal|nonfatal| +E0042850|non-fluent aphasia|nonfluent aphasia| +E0042851|non-functional|nonfunctional| +E0042852|non-gonococcal|nongonococcal| +E0042853|non-gonococcal urethritis|nongonococcal urethritis| +E0042856|nonhaem|nonheme| +E0042856|non-heme|nonheme| +E0042856|non-haem|nonheme| +E0042857|non-hereditary|nonhereditary| +E0042860|non-human|nonhuman| +E0042861|non-immune|nonimmune| +E0042862|non-immune|nonimmune| +E0042863|non infected|noninfected| +E0042863|non-infected|noninfected| +E0042864|non-infectious|noninfectious| +E0042867|non-invasive|noninvasive| +E0042868|non-invasively|noninvasively| +E0042869|non irradiated|nonirradiated| +E0042869|non-irradiated|nonirradiated| +E0042870|nonischaemic|nonischemic| +E0042870|non-ischaemic|nonischemic| +E0042870|non-ischemic|nonischemic| +E0042872|non-leukemic myelosis|nonleukemic myelosis| +E0042872|nonleukaemic myelosis|nonleukemic myelosis| +E0042872|non-leukaemic myelosis|nonleukemic myelosis| +E0042873|non-linear|nonlinear| +E0042873|non linear|nonlinear| +E0042875|non-metal|nonmetal| +E0042876|non-myelinated|nonmyelinated| +E0042876|non myelinated|nonmyelinated| +E0042877|non-neuronal|nonneuronal| +E0042878|non-occlusive|nonocclusive| +E0042880|non-oliguric|nonoliguric| +E0042883|non-opaque|nonopaque| +E0042884|non-organic|nonorganic| +E0042886|non-parallel|nonparallel| +E0042886|non parallel|nonparallel| +E0042890|non-physician|nonphysician| +E0042892|non-pitting edema|nonpitting edema| +E0042892|nonpitting oedema|nonpitting edema| +E0042892|non-pitting oedema|nonpitting edema| +E0042895|non pregnant|nonpregnant| +E0042895|non-pregnant|nonpregnant| +E0042896|non-professional|nonprofessional| +E0042898|non-psychotic|nonpsychotic| +E0042900|non-radioactive|nonradioactive| +E0042901|non-random|nonrandom| +E0042902|non-reactive|nonreactive| +E0042904|non-reducing|nonreducing| +E0042905|non-renal|nonrenal| +E0042910|non-rheumatoid|nonrheumatoid| +E0042911|non-seasonal allergic rhinitis|nonseasonal allergic rhinitis| +E0042912|non-selective|nonselective| +E0042916|non-sexual|nonsexual| +E0042917|non-smoker|nonsmoker| +E0042921|non-specific|nonspecific| +E0042926|non-steroidal|nonsteroidal| +E0042927|non-steroidal anti-inflammatory drug|nonsteroidal antiinflammatory drug| +E0042927|nonsteroidal anti-inflammatory drug|nonsteroidal antiinflammatory drug| +E0042927|non-steroidal antiinflammatory drug|nonsteroidal antiinflammatory drug| +E0042928|non structural|nonstructural| +E0042928|non-structural|nonstructural| +E0042929|non surgical|nonsurgical| +E0042929|non-surgical|nonsurgical| +E0042931|non-toxic|nontoxic| +E0042932|non-transcribed spacer|nontranscribed spacer| +E0042934|non-tuberculous|nontuberculous| +E0042937|non viable|nonviable| +E0042937|non-viable|nonviable| +E0042938|non-viral|nonviral| +E0042941|nonvisualisation|nonvisualization| +E0042944|non-small cell lung cancer|non small cell lung cancer| +E0042944|non-small-cell lung cancer|non small cell lung cancer| +E0042944|non small-cell lung cancer|non small cell lung cancer| +E0042945|non A, non B hepatitis|non-A, non-B hepatitis| +E0042945|non-A non-B hepatitis|non-A, non-B hepatitis| +E0042947|nonHodgkin's lymphoma|non-Hodgkin's lymphoma| +E0042954|nonabsorbable|non-absorbable| +E0042954|non absorbable|non-absorbable| +E0042955|nonadherence|non-adherence| +E0042956|non adherent|nonadherent| +E0042956|non-adherent|nonadherent| +E0042957|nonadrenergic|non-adrenergic| +E0042958|nonaggression|non-aggression| +E0042959|nonaligned|non-aligned| +E0042960|nonalignment|non-alignment| +E0042961|noncellular|non-cellular| +E0042962|non compliance|noncompliance| +E0042962|non-compliance|noncompliance| +E0042963|noncompliant|non-compliant| +E0042964|nonfiction|non-fiction| +E0042965|nonglomerular|non-glomerular| +E0042966|noninterference|non-interference| +E0042967|nonintervention|non-intervention| +E0042968|nonlymphocytic|non-lymphocytic| +E0042969|nonmalignant|non-malignant| +E0042970|nonmotile|non-motile| +E0042971|nonneoplastic|non-neoplastic| +E0042973|nonobligatory|non-obligatory| +E0042974|nonobservance|non-observance| +E0042975|non obstructive|nonobstructive| +E0042975|non-obstructive|nonobstructive| +E0042976|nonoperatively|non-operatively| +E0042977|nonparametric|non-parametric| +E0042978|nonpayment|non-payment| +E0042979|nonpolar|non-polar| +E0042984|nonsmall cell lung carcinoma|non-small cell lung carcinoma| +E0042987|nonviolence|non-violence| +E0042988|nonviolent|non-violent| +E0042997|noradrenalin|noradrenaline| +E0043016|normalisation|normalization| +E0043017|normalise|normalize| +E0043031|normocalcaemic|normocalcemic| +E0043033|normo-cellular|normocellular| +E0043040|normoglycaemia|normoglycemia| +E0043041|normoglycaemic|normoglycemic| +E0043042|normokalaemic|normokalemic| +E0043049|normo-tensive|normotensive| +E0043057|normovolaemic|normovolemic| +E0043072|Nosema disease|nosema disease| +E0043085|nosey|nosy| +E0043251|nurse midwife|nurse-midwife| +E0043272|nutritional macrocytic anaemia|nutritional macrocytic anemia| +E0043314|oast-house urine disease|oasthouse urine disease| +E0043319|oat-cell carcinoma|oat cell carcinoma| +E0043319|oatcell carcinoma|oat cell carcinoma| +E0043320|oatcell|oat-cell| +E0043320|oat cell|oat-cell| +E0043401|obsessive compulsive personality|obsessive-compulsive personality| +E0043407|obstetrical|obstetric| +E0043410|obstetrician-gynaecologist|obstetrician-gynecologist| +E0043473|occipito-anterior|occipitoanterior| +E0043478|occipito-cervical|occipitocervical| +E0043480|occipito-frontal|occipitofrontal| +E0043483|occipito-parietal|occipitoparietal| +E0043484|occipito-posterior|occipitoposterior| +E0043485|occipito-temporal|occipitotemporal| +E0043487|occipito-temporal sulcus|occipitotemporal sulcus| +E0043521|ocher|ochre| +E0043522|ocher|ochre| +E0043526|ochrea|ocrea| +E0043542|octylglucopyranoside|octyl glucopyranoside| +E0043560|oculo-auriculo-vertebral dysplasia|oculoauriculovertebral dysplasia| +E0043560|oculo-auriculovertebral dysplasia|oculoauriculovertebral dysplasia| +E0043560|oculo-auricolo-vertebral dysplasia|oculoauriculovertebral dysplasia| +E0043560|oculo-auricolovertebral dysplasia|oculoauriculovertebral dysplasia| +E0043560|oculoauricolovertebral dysplasia|oculoauriculovertebral dysplasia| +E0043565|oculo-dento-digital dysplasia|oculodentodigital dysplasia| +E0043565|oculodento-digital dysplasia|oculodentodigital dysplasia| +E0043565|oculo-dentodigital dysplasia|oculodentodigital dysplasia| +E0043578|oculo-pupillary|oculopupillary| +E0043608|odour|odor| +E0043612|odorless|odourless| +E0043613|odorlessness|odourlessness| +E0043614|enocyte|oenocyte| +E0043615|enology|oenology| +E0043617|esophagostomiasis|oesophagostomiasis| +E0043629|offence|offense| +E0043652|ofloxacin|ofloxacine| +E0043666|oil aspiration pneumonia|oil-aspiration pneumonia| +E0043668|oil painting|oil-painting| +E0043670|OK|okay| +E0043670|O.K.|okay| +E0043671|OK|okay| +E0043671|O.K.|okay| +E0043672|OK|okay| +E0043672|O.K.|okay| +E0043673|OK|okay| +E0043673|O.K.|okay| +E0043723|oligomenorrhoea|oligomenorrhea| +E0043748|olivo-ponto-cerebellar|olivopontocerebellar| +E0043748|olivo-pontocerebellar|olivopontocerebellar| +E0043748|olivoponto-cerebellar|olivopontocerebellar| +E0043749|olivo-ponto-cerebellar atrophy|olivopontocerebellar atrophy| +E0043749|olivo-pontocerebellar atrophy|olivopontocerebellar atrophy| +E0043749|olivoponto-cerebellar atrophy|olivopontocerebellar atrophy| +E0043781|omphalocoele|omphalocele| +E0043797|oncofoetal|oncofetal| +E0043797|onco-fetal|oncofetal| +E0043797|onco-foetal|oncofetal| +E0043816|oniric|oneiric| +E0043817|onirogenic|oneirogenic| +E0043827|onetime|one-time| +E0043860|onychoosteodysplasia|onycho-osteodysplasia| +E0043868|oophorectomise|oophorectomize| +E0043906|open angle glaucoma|open-angle glaucoma| +E0044016|opsonisation|opsonization| +E0044017|opsonise|opsonize| +E0044040|optic disc|optic disk| +E0044050|optimisation|optimization| +E0044051|optimise|optimize| +E0044056|opto-kinetic|optokinetic| +E0044090|orangutang|orangutan| +E0044090|orang-utan|orangutan| +E0044127|orchi-epididymitis|orchiepididymitis| +E0044162|organisation|organization| +E0044163|organisational|organizational| +E0044165|organise|organize| +E0044173|organo-mercurial|organomercurial| +E0044214|orrhodiagnosis|orodiagnosis| +E0044218|oro-nasal|oronasal| +E0044219|oro-pharyngeal|oropharyngeal| +E0044228|oromeningitis|orrhomeningitis| +E0044230|orris root|orrisroot| +E0044255|orthopaedic|orthopedic| +E0044256|orthopaedics|orthopedics| +E0044348|osteo-arthritis|osteoarthritis| +E0044353|osteo-articular|osteoarticular| +E0044360|osteo-chondral|osteochondral| +E0044395|osteone|osteon| +E0044398|osteopenia|osteopaenia| +E0044405|osteo-periosteal|osteoperiosteal| +E0044436|ostracise|ostracize| +E0044540|outmaneuver|outmanoeuvre| +E0044582|outwards|outward| +E0044591|outpatient|out-patient| +E0044610|ovariectomise|ovariectomize| +E0044637|overcapitalise|overcapitalize| +E0044637|over-capitalize|overcapitalize| +E0044637|over-capitalise|overcapitalize| +E0044640|over-charge|overcharge| +E0044641|over-charge|overcharge| +E0044645|over-crowd|overcrowd| +E0044655|over-estimate|overestimate| +E0044656|over-feed|overfeed| +E0044661|over-growth|overgrowth| +E0044663|over-hang|overhang| +E0044664|over-hang|overhang| +E0044671|over-jet|overjet| +E0044687|over-pay|overpay| +E0044723|over weight|overweight| +E0044724|over weight|overweight| +E0044725|over weight|overweight| +E0044730|overabundance|over-abundance| +E0044734|overburden|over-burden| +E0044735|overconfidence|over-confidence| +E0044736|overconfident|over-confident| +E0044737|overcook|over-cook| +E0044738|overdenture|over-denture| +E0044738|over denture|over-denture| +E0044739|overeat|over-eat| +E0044741|overemphasis|over-emphasis| +E0044742|overemphasize|over-emphasize| +E0044742|overemphasise|over-emphasize| +E0044742|over-emphasise|over-emphasize| +E0044744|overenthusiastic|over-enthusiastic| +E0044745|overestimation|over-estimation| +E0044746|overexert|over-exert| +E0044747|overexertion|over-exertion| +E0044748|overexpose|over-expose| +E0044749|overexposure|over-exposure| +E0044750|overheat|over-heat| +E0044751|overindulge|over-indulge| +E0044752|overindulgence|over-indulgence| +E0044753|overindulgent|over-indulgent| +E0044754|overpayment|over-payment| +E0044757|overpraise|over-praise| +E0044760|oversimplification|over-simplification| +E0044761|oversimplify|over-simplify| +E0044762|overstrain|over-strain| +E0044763|overstrain|over-strain| +E0044764|overvalue|over-value| +E0044837|oxidation reduction|oxidation-reduction| +E0044843|oxidise|oxidize| +E0044845|oxidising|oxidizing| +E0044849|oxymetry|oximetry| +E0044866|oxytremorine|oxotremorine| +E0044876|oxycobalt hemoglobin|oxycobalthemoglobin| +E0044881|oxifedrine|oxyfedrine| +E0044881|oxiphedrin|oxyfedrine| +E0044881|oxyphedrin|oxyfedrine| +E0044888|oxygenise|oxygenize| +E0044903|oxyhaemoglobin|oxyhemoglobin| +E0044905|oxymethalone|oxymetholone| +E0044924|oxyquinoline sulphate|oxyquinoline sulfate| +E0044939|ozaena|ozena| +E0044943|ozonisation|ozonization| +E0044944|ozonise|ozonize| +E0045003|packedcell volume|packed-cell volume| +E0045003|packed cell volume|packed-cell volume| +E0045016|pederast|paederast| +E0045017|pederasty|paederasty| +E0045046|pairfed|pair-fed| +E0045048|pyjama|pajama| +E0045049|pyjamas|pajamas| +E0045077|palato-maxillary|palatomaxillary| +E0045081|palato-pharyngeal|palatopharyngeal| +E0045094|palaeocortex|paleocortex| +E0045099|paleocinetic|paleokinetic| +E0045099|palaeokinetic|paleokinetic| +E0045099|palaeocinetic|paleokinetic| +E0045101|palaeontologist|paleontologist| +E0045102|palaeontology|paleontology| +E0045103|palaeopathology|paleopathology| +E0045141|palmitoylcarnitine|palmitoyl carnitine| +E0045146|palmitoyl-immunoglobulin g|palmitoyl-immunoglobulin G| +E0045153|palm oil|palm-oil| +E0045173|paludrine|Paludrine| +E0045176|pampas grass|pampas-grass| +E0045205|pancreatico-duodenal|pancreaticoduodenal| +E0045206|pancreatico-jejunostomy|pancreaticojejunostomy| +E0045260|panellist|panelist| +E0045314|pantie|panty| +E0045332|paperwork|paper-work| +E0045343|papilloedema|papilledema| +E0045352|papillomavirus|papilloma virus| +E0045360|papataci fever virus|pappataci fever virus| +E0045360|papatasi fever virus|pappataci fever virus| +E0045367|papulo-erythematous|papuloerythematous| +E0045369|papulo-pustular|papulopustular| +E0045431|paraoesophageal|paraesophageal| +E0045434|paraffine|paraffin| +E0045466|paralepsis|paraleipsis| +E0045466|paralipsis|paraleipsis| +E0045476|paralyze|paralyse| +E0045512|paramorphan|paramorfan| +E0045606|parasitaemia|parasitemia| +E0045618|parasitisation|parasitization| +E0045619|parasitise|parasitize| +E0045651|parathyrotropic|parathyrotrophic| +E0045670|para-vertebral|paravertebral| +E0045672|paraaminobenzoic acid|para-aminobenzoic acid| +E0045673|paraaortic body|para-aortic body| +E0045673|para aortic body|para-aortic body| +E0045717|parasthesia|paresthesia| +E0045717|paraesthesia|paresthesia| +E0045738|parieto-occipital sulcus|parietooccipital sulcus| +E0045742|parietooccipital|parieto-occipital| +E0045744|parietotemporal|parieto-temporal| +E0045755|parlour|parlor| +E0045821|partial hospitalisation|partial hospitalization| +E0045833|particularisation|particularization| +E0045834|particularise|particularize| +E0045862|parvo virus|parvovirus| +E0045862|parvo-virus|parvovirus| +E0045887|passive aggressive personality|passive-aggressive personality| +E0045906|pasteurisation|pasteurization| +E0045907|pasteurise|pasteurize| +E0045960|pathogene|pathogen| +E0045962|patho-genetic|pathogenetic| +E0046012|patronise|patronize| +E0046044|payor|payer| +E0046054|peacock blue|peacock-blue| +E0046055|peacock blue|peacock-blue| +E0046070|pearl barley|pearl-barley| +E0046075|pea green|pea-green| +E0046076|pea green|pea-green| +E0046108|paedagogic|pedagogic| +E0046122|paediatric|pediatric| +E0046123|paediatrician|pediatrician| +E0046124|paediatrics|pediatrics| +E0046141|paedodontics|pedodontics| +E0046144|paedophilia|pedophilia| +E0046167|pekingese|pekinese| +E0046167|Pekinese|pekinese| +E0046167|Pekingese|pekinese| +E0046176|pellagra-preventive|pellagra preventive| +E0046189|pelvicalyceal|pelvicaliceal| +E0046220|penalisation|penalization| +E0046221|penalise|penalize| +E0046227|pendant|pendent| +E0046228|pendant|pendent| +E0046254|penicillin V potassium|penicillin v potassium| +E0046278|poenology|penology| +E0046301|pentamidin|pentamidine| +E0046338|peptic oesophagitis|peptic esophagitis| +E0046342|peptid|peptide| +E0046353|peptonise|peptonize| +E0046405|perfervour|perfervor| +E0046485|pericaecal|pericecal| +E0046539|perioesophageal|periesophageal| +E0046563|pericaryon|perikaryon| +E0046598|perimysitis|perimysiitis| +E0046620|perinaeum|perineum| +E0046634|periodic acid Schiff reaction|periodic acid-Schiff reaction| +E0046636|periodic oedema|periodic edema| +E0046689|periphakitis|periphacitis| +E0046698|peripheral blood lymphocyte T|peripheral blood lymphocyte t| +E0046728|peri-portal|periportal| +E0046777|peritonaeal|peritoneal| +E0046779|peritonealise|peritonealize| +E0046790|peritoneo-venous|peritoneovenous| +E0046792|peritoneo-venous shunt|peritoneovenous shunt| +E0046792|peritoneo venous shunt|peritoneovenous shunt| +E0046793|peritonaeum|peritoneum| +E0046812|peri-ureteric fibrosis|periureteric fibrosis| +E0046834|periarticular|peri-articular| +E0046886|per oral|peroral| +E0046891|peroxidase-labelled|peroxidase-labeled| +E0046896|peroxidise|peroxidize| +E0046909|perfenazine|perphenazine| +E0046924|persistent foetal circulation|persistent fetal circulation| +E0046934|personalisation|personalization| +E0046935|personalise|personalize| +E0046943|perspex|Perspex| +E0046984|percent|per cent| +E0046985|percent|per cent| +E0047023|pethidin|pethidine| +E0047031|petit-mal epilepsy|petit mal epilepsy| +E0047032|petit-mal status|petit mal status| +E0047051|petrousitis|petrositis| +E0047057|petroccipital|petro-occipital| +E0047089|phagocytise|phagocytize| +E0047094|phagocytosable|phagocytozable| +E0047098|phacitis|phakitis| +E0047101|phacomatosis|phakomatosis| +E0047114|phalloidin|phalloidine| +E0047131|pharmaco-dynamic|pharmacodynamic| +E0047140|pharmacopoeia|pharmacopeia| +E0047165|pharyngo-esophageal|pharyngoesophageal| +E0047165|pharyngo-oesophageal|pharyngoesophageal| +E0047165|pharyngooesophageal|pharyngoesophageal| +E0047168|pharyngo-laryngeal|pharyngolaryngeal| +E0047169|pharyngo-laryngitis|pharyngolaryngitis| +E0047170|pharyngo-maxillary|pharyngomaxillary| +E0047179|pharyngo-tonsillitis|pharyngotonsillitis| +E0047181|pharyngo-tympanic tube|pharyngotympanic tube| +E0047210|phenolsulfonephthalein|phenolsulfonphthalein| +E0047222|phenoxymethylpenicillin|phenoxymethyl penicillin| +E0047227|fentolamin|phentolamine| +E0047244|phenyl mercuric acetate|phenylmercuric acetate| +E0047256|phaeochromocytoma|pheochromocytoma| +E0047283|philosophise|philosophize| +E0047287|phi phenomenon|phi-phenomenon| +E0047303|phlebotomise|phlebotomize| +E0047328|phlorhizinise|phlorhizinize| +E0047403|phosphatidyl ethanolamine|phosphatidylethanolamine| +E0047407|phosphatidyl inositol|phosphatidylinositol| +E0047409|phosphatidyl serine|phosphatidylserine| +E0047411|phosphatidylcholine|phosphatidyl choline| +E0047412|phosphatidylglycerol|phosphatidyl glycerol| +E0047419|phosphoadenosine phosphosulphate|phosphoadenosine phosphosulfate| +E0047431|phospho-enolpyruvate|phosphoenolpyruvate| +E0047432|phospho enol pyruvate carboxykinase|phosphoenolpyruvate carboxykinase| +E0047440|phosphoethanolaminetransferase|phosphoethanolamine transferase| +E0047457|phospholipide|phospholipid| +E0047484|phosphoribosylpyrophosphate|phosphoribosyl pyrophosphate| +E0047560|photo-densitometry|photodensitometry| +E0047598|photo-onycholysis|photoonycholysis| +E0047622|photosensitisation|photosensitization| +E0047623|photosensitise|photosensitize| +E0047643|photoradiation therapy|photo radiation therapy| +E0047679|phthalylsulfathiazole|phthalylsulphathiazole| +E0047683|tisic|phthisic| +E0047684|tisical|phthisical| +E0047754|physico-chemical|physicochemical| +E0047788|Phytin|phytin| +E0047793|phytohemagglutinin|phytohaemagglutinin| +E0047816|piarachnitis|pia-arachnitis| +E0047821|picibanyl|picibanil| +E0047845|picrylsulphonic acid|picrylsulfonic acid| +E0047862|piecework|piece-work| +E0047871|piecrust|pie-crust| +E0047871|pie crust|pie-crust| +E0047893|pigmented naevus|pigmented nevus| +E0047900|pig-tail|pigtail| +E0047902|pigheaded|pig-headed| +E0047903|pigheadedness|pig-headedness| +E0047904|pig iron|pig-iron| +E0047909|pilaff|pilaf| +E0047909|pilau|pilaf| +E0047935|pilo-erection|piloerection| +E0047942|pilo-sebaceous|pilosebaceous| +E0047943|pilo-sebaceous apparatus|pilosebaceous apparatus| +E0047944|pilose naevus|pilose nevus| +E0047981|pinguicula|pinguecula| +E0047982|Ping-Pong|ping-pong| +E0047982|pingpong|ping-pong| +E0047982|ping pong|ping-pong| +E0048004|pin money|pin-money| +E0048005|pinpoint|pin-point| +E0048006|pinpoint|pin-point| +E0048014|pipe clay|pipeclay| +E0048026|piperoxane|piperoxan| +E0048029|pipestem cirrhosis|pipe stem cirrhosis| +E0048041|pirazetam|piracetam| +E0048041|pyracetam|piracetam| +E0048047|pirenzepin|pirenzepine| +E0048047|pyrenzepine|pirenzepine| +E0048048|piribendyl|piribedil| +E0048054|pyritinol|piritinol| +E0048076|pitchblende|pitch-blende| +E0048140|plagiarise|plagiarize| +E0048190|placque|plaque| +E0048197|plasmocytoma|plasmacytoma| +E0048212|plasma-cell myeloma|plasma cell myeloma| +E0048236|plasmolysability|plasmolyzability| +E0048237|plasmolysable|plasmolyzable| +E0048238|plasmolyse|plasmolyze| +E0048267|platelet-activating factor|platelet activating factor| +E0048285|plate glass|plate-glass| +E0048348|pleiomorphic|pleomorphic| +E0048376|pleuro-cutaneous|pleurocutaneous| +E0048384|pleuro-pericardial|pleuropericardial| +E0048386|pleuro-peritoneal|pleuroperitoneal| +E0048388|pleuro-peritoneal sinus|pleuroperitoneal sinus| +E0048390|pleuro-pulmonary|pleuropulmonary| +E0048420|plunk|plonk| +E0048421|plunk|plonk| +E0048422|plunk|plonk| +E0048429|plough|plow| +E0048430|plough|plow| +E0048478|pmole|pmol| +E0048498|pneumo-coniosis|pneumoconiosis| +E0048505|pneumo-encephalography|pneumoencephalography| +E0048509|pneumohaemothorax|pneumohemothorax| +E0048509|pneumo-hemothorax|pneumohemothorax| +E0048509|pneumo-haemothorax|pneumohemothorax| +E0048527|pneumo-peritoneum|pneumoperitoneum| +E0048545|pocketknife|pocket-knife| +E0048546|pocket money|pocket-money| +E0048587|poison-ivy|poison ivy| +E0048590|poison sumach|poison sumac| +E0048592|poison gas|poison-gas| +E0048593|poison oak|poison-oak| +E0048597|poke-weed|pokeweed| +E0048597|poke weed|pokeweed| +E0048604|polarisation|polarization| +E0048605|polarise|polarize| +E0048608|polar anaemia|polar anemia| +E0048614|pole-axe|pole-ax| +E0048614|poleaxe|pole-ax| +E0048614|poleax|pole-ax| +E0048615|pole-axe|pole-ax| +E0048615|poleaxe|pole-ax| +E0048615|poleax|pole-ax| +E0048636|polio vaccine|poliovaccine| +E0048647|politicisation|politicization| +E0048648|politicise|politicize| +E0048660|pollinosis|pollenosis| +E0048663|pollicisation|pollicization| +E0048697|poly-articular|polyarticular| +E0048714|Polycillin|polycillin| +E0048725|polycythaemia|polycythemia| +E0048726|polycythaemia rubra vera|polycythemia rubra vera| +E0048727|polycythaemia vera|polycythemia vera| +E0048737|polyethyleneglycol|polyethylene glycol| +E0048770|polymerisation|polymerization| +E0048771|polymerise|polymerize| +E0048779|polymorphonuclear leucocyte|polymorphonuclear leukocyte| +E0048805|polyomavirus|polyoma virus| +E0048813|polypeptid|polypeptide| +E0048853|polysulphone|polysulfone| +E0048858|politef|polytef| +E0048883|polyvinyl pyrrolidone|polyvinylpyrrolidone| +E0048953|popularise|popularize| +E0049015|portahepatis|porta hepatis| +E0049023|portasystemic|portosystemic| +E0049051|positron-emission tomography|positron emission tomography| +E0049051|positron tomography|positron emission tomography| +E0049066|post-acidotic|postacidotic| +E0049073|postanaesthetic|postanesthetic| +E0049082|post-canine|postcanine| +E0049096|post-cesarean|postcesarean| +E0049096|post-Cesarean|postcesarean| +E0049113|post-date|postdate| +E0049151|posterior intra-occipital synchondrosis|posterior intraoccipital synchondrosis| +E0049175|postero-anterior|posteroanterior| +E0049178|postero-lateral|posterolateral| +E0049180|postero-medial|posteromedial| +E0049183|postero-superior|posterosuperior| +E0049188|post-exposure|postexposure| +E0049189|post-exposure|postexposure| +E0049196|post-ganglionic|postganglionic| +E0049206|posthaemorrhagic|posthemorrhagic| +E0049212|post-herpetic neuralgia|postherpetic neuralgia| +E0049212|post herpetic neuralgia|postherpetic neuralgia| +E0049218|posthypoglycaemic|posthypoglycemic| +E0049218|post-hypoglycemic|posthypoglycemic| +E0049218|post-hypoglycaemic|posthypoglycemic| +E0049223|post-infection|postinfection| +E0049224|post-infection|postinfection| +E0049226|post-infectious encephalomyelitis|postinfectious encephalomyelitis| +E0049239|post-mastectomy|postmastectomy| +E0049246|postmiotic|postmeiotic| +E0049246|post-meiotic|postmeiotic| +E0049246|post-miotic|postmeiotic| +E0049247|post-menopausal|postmenopausal| +E0049252|post-mitotic|postmitotic| +E0049256|post-nasal drip|postnasal drip| +E0049260|post-necrotic cirrhosis|postnecrotic cirrhosis| +E0049265|post-operative|postoperative| +E0049265|post operative|postoperative| +E0049266|post-operatively|postoperatively| +E0049266|post operatively|postoperatively| +E0049279|post-partum|postpartum| +E0049279|post partum|postpartum| +E0049280|post-partum|postpartum| +E0049280|post partum|postpartum| +E0049282|post-partum hemorrhage|postpartum hemorrhage| +E0049288|post-phlebitic syndrome|postphlebitic syndrome| +E0049295|post-prandial|postprandial| +E0049298|post-pubertal|postpubertal| +E0049322|post-transcriptional|posttranscriptional| +E0049325|post-translationally|posttranslationally| +E0049337|post-uterine|postuterine| +E0049350|post-coitum|post coitum| +E0049350|postcoitum|post coitum| +E0049352|post-mortem|post mortem| +E0049352|postmortem|post mortem| +E0049353|post-mortem|post mortem| +E0049353|postmortem|post mortem| +E0049354|post-mortem|post mortem| +E0049354|postmortem|post mortem| +E0049359|post-kala azar dermal leishmaniasis|post-kala-azar dermal leishmaniasis| +E0049359|post kala-azar dermal leishmaniasis|post-kala-azar dermal leishmaniasis| +E0049359|post kala azar dermal leishmaniasis|post-kala-azar dermal leishmaniasis| +E0049367|post term infant|post-term infant| +E0049369|posttibial|post-tibial| +E0049374|posttraumatic spondylitis|post-traumatic spondylitis| +E0049375|posttreatment|post-treatment| +E0049376|posttreatment|post-treatment| +E0049378|postvaccinal encephalitis|post-vaccinal encephalitis| +E0049378|post vaccinal encephalitis|post-vaccinal encephalitis| +E0049399|potheen|poteen| +E0049451|pox virus|poxvirus| +E0049460|practise|practice| +E0049463|prenomen|praenomen| +E0049494|pre-adolescent|preadolescent| +E0049495|pre-adolescent|preadolescent| +E0049499|preanaesthetic|preanesthetic| +E0049500|preanaesthetic|preanesthetic| +E0049516|pre-capillary|precapillary| +E0049517|pre-capillary|precapillary| +E0049586|pre-delivery|predelivery| +E0049621|pre-eclamptic|preeclamptic| +E0049622|pre-eclamptic|preeclamptic| +E0049624|pre-emption|preemption| +E0049630|pre-existing|preexisting| +E0049631|pre-exposure|preexposure| +E0049655|pre-ganglionic|preganglionic| +E0049696|preleukaemic|preleukemic| +E0049701|pre-lingual|prelingual| +E0049729|pre-menopausal|premenopausal| +E0049735|premiere|premier| +E0049736|premiere|premier| +E0049737|premise|premiss| +E0049738|premise|premiss| +E0049742|pre-morbid|premorbid| +E0049753|pre-operative|preoperative| +E0049754|pre-operatively|preoperatively| +E0049834|pre-senile dementia|presenile dementia| +E0049853|pre-set|preset| +E0049877|pressurised|pressurized| +E0049898|pretense|pretence| +E0049917|pre-treat|pretreat| +E0049918|pre-treatment|pretreatment| +E0049919|pre-treatment|pretreatment| +E0049935|preventible|preventable| +E0049957|predigest|pre-digest| +E0049958|preeclampsia|pre-eclampsia| +E0049959|preeminence|pre-eminence| +E0049960|preeminent|pre-eminent| +E0049961|preempt|pre-empt| +E0049996|primary anaemia|primary anemia| +E0049999|primary-care|primary care| +E0050014|primary thrombocythaemia|primary thrombocythemia| +E0050023|primaeval|primeval| +E0050025|primi-gravida|primigravida| +E0050055|prioritise|prioritize| +E0050058|prize|prise| +E0050105|prokaryotic|procaryotic| +E0050215|proflavin|proflavine| +E0050223|profundaplasty|profundoplasty| +E0050249|programme|program| +E0050250|programme|program| +E0050349|promyelocytic leukaemia|promyelocytic leukemia| +E0050356|pronetalol|pronethalol| +E0050372|proofread|proof-read| +E0050372|proof read|proof-read| +E0050373|pro-opiomelanocortin|proopiomelanocortin| +E0050373|pro opiomelanocortin|proopiomelanocortin| +E0050373|pro-opio-melanocortin|proopiomelanocortin| +E0050373|pro opio melanocortin|proopiomelanocortin| +E0050378|propagandise|propagandize| +E0050390|propellent|propellant| +E0050391|propellent|propellant| +E0050452|propylhexadrine|propylhexedrine| +E0050453|propiliodon|propyliodone| +E0050462|proscillaridine|proscillaridin| +E0050469|proselytisation|proselytization| +E0050470|proselytise|proselytize| +E0050561|protein kinase c|protein kinase C| +E0050623|protozoon|protozoan| +E0050624|protozoon|protozoan| +E0050686|proximo-lingual|proximolingual| +E0050759|pseudo-gout|pseudogout| +E0050760|pseudohaemophilia|pseudohemophilia| +E0050788|pseudomeningocoele|pseudomeningocele| +E0050802|pseudonormalisation|pseudonormalization| +E0050803|pseudonormalise|pseudonormalize| +E0050804|pseudo-obstructive|pseudoobstructive| +E0050807|pseudopapilloedema|pseudopapilledema| +E0050829|pseudotumour|pseudotumor| +E0050830|pseudotumour cerebri|pseudotumor cerebri| +E0050833|Pseudoxanthoma elasticum|pseudoxanthoma elasticum| +E0050834|pseudo obstruction|pseudo-obstruction| +E0050834|pseudoobstruction|pseudo-obstruction| +E0050835|pseudoproteinuria|pseudo-proteinuria| +E0050862|psychodelic|psychedelic| +E0050929|psycho-sensory aphasia|psychosensory aphasia| +E0050954|psychoanalyse|psycho-analyse| +E0050954|psychoanalyze|psycho-analyse| +E0050954|psycho-analyze|psycho-analyse| +E0050955|psychoanalysis|psycho-analysis| +E0050957|psychosocial|psycho-social| +E0051002|publicise|publicize| +E0051007|public speaking|public-speaking| +E0051030|podgy|pudgy| +E0051089|pulmonary oedema|pulmonary edema| +E0051159|pulverisation|pulverization| +E0051160|pulverise|pulverize| +E0051175|punch-drunk|punch drunk| +E0051175|punchdrunk|punch drunk| +E0051209|pupilary|pupillary| +E0051223|pure red-cell anemia|pure red cell anemia| +E0051223|pure red cell anaemia|pure red cell anemia| +E0051223|pure red-cell anaemia|pure red cell anemia| +E0051224|pure-tone|pure tone| +E0051224|puretone|pure tone| +E0051350|pyaemia|pyemia| +E0051351|pyaemic|pyemic| +E0051391|pyohaemothorax|pyohemothorax| +E0051392|pyo-hydronephrosis|pyohydronephrosis| +E0051412|pyorrhoea|pyorrhea| +E0051455|piriformis|pyriformis| +E0051471|pyrolyzate|pyrolysate| +E0051658|quinidine sulphate|quinidine sulfate| +E0051661|quinine bisulphate|quinine bisulfate| +E0051713|racoon|raccoon| +E0051720|racemisation|racemization| +E0051721|recemise|racemize| +E0051747|racket|racquet| +E0051804|radio-activity|radioactivity| +E0051805|radio-allergosorbent|radioallergosorbent| +E0051806|radio-allergosorbent test|radioallergosorbent test| +E0051807|radio-autography|radioautography| +E0051809|radio-biological|radiobiological| +E0051811|radio-carpal|radiocarpal| +E0051815|radio-dermatitis|radiodermatitis| +E0051816|radio-diagnosis|radiodiagnosis| +E0051820|radio-frequency|radiofrequency| +E0051823|radio-graphic|radiographic| +E0051824|radio-graphically|radiographically| +E0051827|radio-humeral|radiohumeral| +E0051831|radio-immune|radioimmune| +E0051832|radio-immunoassay|radioimmunoassay| +E0051832|radio-immuno-assay|radioimmunoassay| +E0051832|radioimmuno-assay|radioimmunoassay| +E0051832|radioimmuno assay|radioimmunoassay| +E0051832|radio immuno assay|radioimmunoassay| +E0051833|radio-immunologically|radioimmunologically| +E0051834|radio-immunosorbent|radioimmunosorbent| +E0051834|radio immunosorbent|radioimmunosorbent| +E0051834|radioimmuno-sorbent|radioimmunosorbent| +E0051834|radio-immuno-sorbent|radioimmunosorbent| +E0051836|radio immunotherapy|radioimmunotherapy| +E0051836|radio-immunotherapy|radioimmunotherapy| +E0051836|radioimmuno-therapy|radioimmunotherapy| +E0051837|radio-iodinated|radioiodinated| +E0051838|radio-iodination|radioiodination| +E0051839|radio-isotope|radioisotope| +E0051839|radio isotope|radioisotope| +E0051841|radio-isotopic|radioisotopic| +E0051841|radio isotopic|radioisotopic| +E0051842|radio-label|radiolabel| +E0051842|radio label|radiolabel| +E0051843|radio-ligand|radioligand| +E0051843|radio ligand|radioligand| +E0051848|radio-lucent|radiolucent| +E0051848|radio lucent|radiolucent| +E0051849|radio-mimetic|radiomimetic| +E0051853|radio-nuclide|radionuclide| +E0051853|radio nuclide|radionuclide| +E0051855|radioopaque|radiopaque| +E0051855|radio-opaque|radiopaque| +E0051857|radio-pharmaceutical|radiopharmaceutical| +E0051859|radio-receptor|radioreceptor| +E0051859|radio receptor|radioreceptor| +E0051860|radio-resistant|radioresistant| +E0051862|radio-sensitive|radiosensitive| +E0051862|radio sensitive|radiosensitive| +E0051863|radio-sensitiveness|radiosensitiveness| +E0051864|radio-sensitivity|radiosensitivity| +E0051864|radio sensitivity|radiosensitivity| +E0051865|radio-telemetering capsule|radiotelemetering capsule| +E0051866|radio-transparent|radiotransparent| +E0051866|radio transparent|radiotransparent| +E0051868|radio-ulnar|radioulnar| +E0051868|radio ulnar|radioulnar| +E0051870|radiowave|radio wave| +E0051871|radiotherapist|radio-therapist| +E0051872|radiotherapy|radio-therapy| +E0051883|rafoxanid|rafoxanide| +E0051952|rancor|rancour| +E0051953|rancorous|rancourous| +E0051956|randomisation|randomization| +E0052033|rationalisation|rationalization| +E0052034|rationalise|rationalize| +E0052037|ratan|rattan| +E0052048|ratbite fever|rat-bite fever| +E0052048|rat bite fever|rat-bite fever| +E0052082|reactivness|reactiveness| +E0052098|read-through|readthrough| +E0052110|realisation|realization| +E0052111|realise|realize| +E0052114|real-time|real time| +E0052115|re-animate|reanimate| +E0052216|recognisable|recognizable| +E0052217|recognise|recognize| +E0052240|reconnoiter|reconnoitre| +E0052303|recto-vaginal|rectovaginal| +E0052304|recto-vaginal fistula|rectovaginal fistula| +E0052306|recto-vesical|rectovesical| +E0052324|recurrent aphthous stomatitis|recurrent apthous stomatitis| +E0052381|red water disease|redwater disease| +E0052381|red-water disease|redwater disease| +E0052400|re-evaluate|reevaluate| +E0052401|re-evaluation|reevaluation| +E0052409|referrible|referable| +E0052425|reflexion|reflection| +E0052464|refractory anaemia|refractory anemia| +E0052542|regularise|regularize| +E0052676|remilitarise|remilitarize| +E0052678|remineralisation|remineralization| +E0052679|remineralise|remineralize| +E0052721|renal oedema|renal edema| +E0052744|renegue|renege| +E0052751|rennin|renin| +E0052766|reno-vascular|renovascular| +E0052767|reno-vascular hypertension|renovascular hypertension| +E0052779|reorganisation|reorganization| +E0052780|reorganise|reorganize| +E0052884|reproducable|reproducible| +E0052988|resolubilisation|resolubilization| +E0052992|resolvible|resolvable| +E0053001|resorption|resorbtion| +E0053110|resynthesise|resynthesize| +E0053150|reticulo-endothelial|reticuloendothelial| +E0053151|reticulo-endothelial system|reticuloendothelial system| +E0053156|reticulo-histiocytosis|reticulohistiocytosis| +E0053203|retractible|retractable| +E0053213|retreat|re-treat| +E0053226|retro-bulbar neuritis|retrobulbar neuritis| +E0053229|retro-cardiac|retrocardiac| +E0053230|retrocaecal|retrocecal| +E0053231|retrocaecal fossa|retrocecal fossa| +E0053231|retro-cecal fossa|retrocecal fossa| +E0053231|retro-caecal fossa|retrocecal fossa| +E0053232|retrocaecal hernia|retrocecal hernia| +E0053232|retro-caecal hernia|retrocecal hernia| +E0053232|retro-cecal hernia|retrocecal hernia| +E0053242|retrooesophageal|retroesophageal| +E0053242|retro-esophageal|retroesophageal| +E0053242|retro-oesophageal|retroesophageal| +E0053247|retro-grade|retrograde| +E0053267|retro-peritoneal|retroperitoneal| +E0053313|revascularisation|revascularization| +E0053339|reversable|reversible| +E0053356|revitalisation|revitalization| +E0053357|revitalise|revitalize| +E0053370|revolutionise|revolutionize| +E0053385|readdress|re-address| +E0053386|reafforest|re-afforest| +E0053387|reafforestation|re-afforestation| +E0053388|recount|re-count| +E0053389|recount|re-count| +E0053391|reecho|re-echo| +E0053394|reexamination|re-examination| +E0053395|reexamine|re-examine| +E0053407|rhabdo-myosarcoma|rhabdomyosarcoma| +E0053409|rhabdo virus|rhabdovirus| +E0053410|rachis|rhachis| +E0053415|rhapsodise|rhapsodize| +E0053522|rime|rhyme| +E0053523|rime|rhyme| +E0053566|rickettsial pox|rickettsialpox| +E0053623|right angle|right-angle| +E0053625|right handed|right-handed| +E0053625|righthanded|right-handed| +E0053626|right handedness|right-handedness| +E0053626|righthandedness|right-handedness| +E0053630|rigour|rigor| +E0053698|road sense|road-sense| +E0053728|rock-and-roll|rock-'n-roll| +E0053728|rock 'n' roll|rock-'n-roll| +E0053728|rock and roll|rock-'n-roll| +E0053728|rock'n roll|rock-'n-roll| +E0053728|rock-'n'-roll|rock-'n-roll| +E0053729|rock climbing|rock-climbing| +E0053731|rock salt|rock-salt| +E0053739|rontgen|roentgen| +E0053768|romanticise|romanticize| +E0053809|rosewater|rose-water| +E0053809|rose water|rose-water| +E0053852|roughcast|rough-cast| +E0053853|roughcast|rough-cast| +E0053855|roughhouse|rough-house| +E0053856|roughhouse|rough-house| +E0053869|round-worm|roundworm| +E0053872|round cell|round-cell| +E0053900|rubberise|rubberize| +E0053902|rubberneck|rubber-neck| +E0053903|rubberneck|rubber-neck| +E0053973|rumor|rumour| +E0053985|runoff|run-off| +E0054018|rye bread|rye-bread| +E0054032|saber|sabre| +E0054033|saber|sabre| +E0054053|sacculate|sacculated| +E0054068|sacralisation|sacralization| +E0054086|sacro-coccygeal|sacrococcygeal| +E0054091|sacro-iliac|sacroiliac| +E0054094|sacroileitis|sacroiliitis| +E0054095|sacro-lumbar|sacrolumbar| +E0054125|safekeeping|safe-keeping| +E0054157|salad dressing|salad-dressing| +E0054158|salad oil|salad-oil| +E0054226|salpingooophorectomy|salpingo-oophorectomy| +E0054226|salpingoophorectomy|salpingo-oophorectomy| +E0054227|salpingo oophoritis|salpingo-oophoritis| +E0054227|salpingooophoritis|salpingo-oophoritis| +E0054241|saltpetre|saltpeter| +E0054246|salt losing nephritis|salt-losing nephritis| +E0054247|salt water|salt-water| +E0054247|saltwater|salt-water| +E0054248|saltworks|salt-works| +E0054294|sandblast|sand-blast| +E0054303|sanguinous|sanguineous| +E0054311|sangfroid|sang froid| +E0054319|sanitisation|sanitization| +E0054320|sanitise|sanitize| +E0054367|sarcosin|sarcosine| +E0054429|savannah|savanna| +E0054434|savoury|savory| +E0054435|savor|savour| +E0054436|savor|savour| +E0054437|savory|savoury| +E0054473|scollop|scallop| +E0054474|scollop|scallop| +E0054535|scar cicatrise|scar cicatrize| +E0054537|skatologic|scatologic| +E0054545|scenary|scenery| +E0054551|skeptical|sceptical| +E0054565|Schistosoma mansonii|Schistosoma mansoni| +E0054574|schizo-affective|schizoaffective| +E0054574|schizo affective|schizoaffective| +E0054575|schizo-affective psychosis|schizoaffective psychosis| +E0054642|scleroedema|scleredema| +E0054643|scleroedema adultorum|scleredema adultorum| +E0054644|scleroedema adiposum|sclerema adiposum| +E0054651|sclero-conjunctival|scleroconjunctival| +E0054653|sclero-corneal|sclerocorneal| +E0054665|scleromyxoedema|scleromyxedema| +E0054671|sclerosing haemangioma|sclerosing hemangioma| +E0054688|scleratitis|sclerotitis| +E0054711|scopolaminebutylbromide|scopolamine hydrobromide| +E0054809|scrutinise|scrutinize| +E0054851|sea-food|seafood| +E0054851|sea food|seafood| +E0054876|seafish|sea-fish| +E0054877|sea level|sea-level| +E0054878|sea power|sea-power| +E0054879|seasick|sea-sick| +E0054879|sea sick|sea-sick| +E0054880|sea sickness|sea-sickness| +E0054880|seasickness|sea-sickness| +E0054881|seawater|sea-water| +E0054881|sea water|sea-water| +E0054889|seborrhoea|seborrhea| +E0054891|seborrhoeic|seborrheic| +E0054927|secondary immunisation|secondary immunization| +E0054941|secretagog|secretagogue| +E0054976|secularise|secularize| +E0055086|self fertilization|self-fertilization| +E0055086|self-fertilisation|self-fertilization| +E0055086|self fertilisation|self-fertilization| +E0055134|semi-automated|semiautomated| +E0055142|semi-erect|semierect| +E0055161|semeiotic|semiotic| +E0055167|semi-quantitative|semiquantitative| +E0055218|sense-organ|sense organ| +E0055228|sensitisation|sensitization| +E0055229|sensitise|sensitize| +E0055231|sensitiser|sensitizer| +E0055263|sentimentalise|sentimentalize| +E0055286|septicaemia|septicemia| +E0055287|septicaemic|septicemic| +E0055327|sear|sere| +E0055340|serialisation|serialization| +E0055341|serialise|serialize| +E0055380|seroneutralisation|seroneutralization| +E0055434|serum glutamic oxaloacetic transaminase|serum glutamic-oxaloacetic transaminase| +E0055485|sewer gas|sewer-gas| +E0055513|sex linked|sex-linked| +E0055533|shadowbox|shadow-box| +E0055564|sham-feeding|sham feeding| +E0055606|sheet lightning|sheet-lightning| +E0055615|shellshock|shell-shock| +E0055615|shell shock|shell-shock| +E0055672|shock-lung|shock lung| +E0055688|shoplift|shop-lift| +E0055705|shortchange|short-change| +E0055713|short term|short-term| +E0055714|short term memory|short-term memory| +E0055720|shot put|shot-put| +E0055741|show business|show-business| +E0055787|siagantritis|siagonantritis| +E0055789|sialogogic|sialagogic| +E0055802|sialorrhoea|sialorrhea| +E0055825|sickle-cell anemia|sickle cell anemia| +E0055825|sickle cell anaemia|sickle cell anemia| +E0055825|sickle-cell anaemia|sickle cell anemia| +E0055826|sickle-cell trait|sickle cell trait| +E0055827|sickle cell hemoglobin C disease|sickle cell-hemoglobin C disease| +E0055827|sickle-cell hemoglobin C disease|sickle cell-hemoglobin C disease| +E0055827|sickle-cell haemoglobin C disease|sickle cell-hemoglobin C disease| +E0055827|sickle cell-haemoglobin C disease|sickle cell-hemoglobin C disease| +E0055827|sickle cell haemoglobin C disease|sickle cell-hemoglobin C disease| +E0055829|sickle cell thalassemia disease|sickle cell-thalassemia disease| +E0055829|sickle cell-thalassaemia disease|sickle cell-thalassemia disease| +E0055829|sickle cell thalassaemia disease|sickle cell-thalassemia disease| +E0055830|sickle cell disease|sickle-cell disease| +E0055835|sick leave|sick-leave| +E0055836|sick pay|sick-pay| +E0055840|sideroachrestic anaemia|sideroachrestic anemia| +E0055840|sidero-achrestic anaemia|sideroachrestic anemia| +E0055840|sidero-achrestic anemia|sideroachrestic anemia| +E0055841|sideroblastic anaemia|sideroblastic anemia| +E0055844|sideropenic anaemia|sideropenic anemia| +E0055858|side effect|side-effect| +E0055859|sideslip|side-slip| +E0055860|side stroke|side-stroke| +E0055861|sidetrack|side-track| +E0055862|sidetrack|side-track| +E0055876|sightsee|sight-see| +E0055890|signalise|signalize| +E0055894|signet-ring|signet ring| +E0055896|signet ring cell carcinoma|signet-ring cell carcinoma| +E0055917|silicious|siliceous| +E0055934|silo-fillers' disease|silo-filler's disease| +E0055934|silo fillers' disease|silo-filler's disease| +E0055934|silo filler's disease|silo-filler's disease| +E0055934|silo-fillers disease|silo-filler's disease| +E0055934|silo fillers disease|silo-filler's disease| +E0055971|simple goitre|simple goiter| +E0055999|syncalide|sincalide| +E0056007|synciput|sinciput| +E0056010|sinewave|sine wave| +E0056018|singers node|singer's node| +E0056018|singers' node|singer's node| +E0056025|single-photon absorbiometry|single photon absorptiometry| +E0056037|singularise|singularize| +E0056057|sino-atrial node|sinoatrial node| +E0056084|syphon|siphon| +E0056085|syphon|siphon| +E0056093|sisomycin|sisomicin| +E0056093|sissomicin|sisomicin| +E0056120|sizeable|sizable| +E0056159|skilful|skillful| +E0056160|skilfully|skillfully| +E0056163|skimmed milk|skimmed-milk| +E0056203|skyrocket|sky-rocket| +E0056204|skywriting|sky-writing| +E0056239|slave trade|slave-trade| +E0056249|sleeping sickness|sleeping-sickness| +E0056254|sleep apnoea|sleep apnea| +E0056255|sleepwalking|sleep walking| +E0056255|sleep-walking|sleep walking| +E0056263|slenderise|slenderize| +E0056359|small pox|smallpox| +E0056362|small-cell carcinoma|small cell carcinoma| +E0056363|small-cell lung cancer|small cell lung cancer| +E0056367|small bowel|small-bowel| +E0056474|snow blind|snowblind| +E0056475|snow blindness|snowblindness| +E0056479|snowflake|snow-flake| +E0056498|soap opera|soap-opera| +E0056512|socialisation|socialization| +E0056513|socialise|socialize| +E0056528|social work|social-work| +E0056531|socio-biological|sociobiological| +E0056532|socio-cultural|sociocultural| +E0056544|sociodemographic|socio-demographic| +E0056545|socioeconomic|socio-economic| +E0056546|sociopolitical|socio-political| +E0056552|soda water|soda-water| +E0056556|sodium aurothiosulphate|sodium aurothiosulfate| +E0056562|sodium dodecylsulphate|sodium dodecyl sulfate| +E0056562|sodium dodecyl sulphate|sodium dodecyl sulfate| +E0056562|sodium dodecylsulfate|sodium dodecyl sulfate| +E0056636|solemnise|solemnize| +E0056660|soliloquise|soliloquize| +E0056675|solubilisation|solubilization| +E0056676|solubilise|solubilize| +E0056678|soluble gun cotton|soluble gun-cotton| +E0056678|soluble guncotton|soluble gun-cotton| +E0056692|somataesthetic|somatesthetic| +E0056696|somatisation|somatization| +E0056697|somatise|somatize| +E0056720|sompatotrope|somatotroph| +E0056723|somatotrophin|somatotropin| +E0056726|somber|sombre| +E0056727|somberness|sombreness| +E0056731|some day|someday| +E0056743|somnanbulism|somnambulism| +E0056784|Sorbitrate|sorbitrate| +E0056793|sorethroat|sore throat| +E0056835|south-western|southwestern| +E0056837|southeast|south-east| +E0056838|southeast|south-east| +E0056863|spadework|spade-work| +E0056934|specialization|specialisation| +E0056935|specialize|specialise| +E0056998|speleologist|spelaeologist| +E0056999|speleology|spelaeology| +E0057016|spermatocoele|spermatocele| +E0057091|sphenooccipital|spheno-occipital| +E0057092|sphenooccipital synchondrosis|spheno-occipital synchondrosis| +E0057162|spinal fluid|spinal-fluid| +E0057173|spindle-cell carcinoma|spindle cell carcinoma| +E0057225|spiritualise|spiritualize| +E0057231|spirochetal|spirochaetal| +E0057233|spirochete|spirochaete| +E0057239|spirochaetosis|spirochetosis| +E0057252|spurt|spirt| +E0057253|spurt|spirt| +E0057275|splay-footed|splayfooted| +E0057276|splayfoot|splay-foot| +E0057282|splendor|splendour| +E0057283|splenectomise|splenectomize| +E0057312|spleno-pancreatic|splenopancreatic| +E0057317|spleno-renal|splenorenal| +E0057351|spondylo-epiphyseal dysplasia|spondyloepiphyseal dysplasia| +E0057353|spondyl-olisthetic|spondylolisthetic| +E0057362|spongiitis|spongeitis| +E0057364|sponge cake|sponge-cake| +E0057364|spongecake|sponge-cake| +E0057385|spontaneous labour|spontaneous labor| +E0057478|spurry|spurrey| +E0057574|staff-member|staffmember| +E0057621|standardisation|standardization| +E0057622|standardise|standardize| +E0057643|staphyloedema|staphyledema| +E0057736|stanch|staunch| +E0057737|stanch|staunch| +E0057764|steamroller|steam-roller| +E0057765|steamroller|steam-roller| +E0057777|steatorrhoea|steatorrhea| +E0057781|steelworks|steel-works| +E0057781|steel works|steel-works| +E0057863|sterilization|sterilisation| +E0057864|sterilize|sterilise| +E0057882|sterno-cleido-mastoid|sternocleidomastoid| +E0057884|sterno-costo-clavicular hyperostosis|sternocostoclavicular hyperostosis| +E0057922|sticking plaster|sticking-plaster| +E0057936|stigmatise|stigmatize| +E0057937|stilboestrol|stilbestrol| +E0057941|still birth|stillbirth| +E0057945|still life|still-life| +E0057970|stirophos|stirofos| +E0057986|stock in trade|stock-in-trade| +E0057987|stockpile|stock-pile| +E0057988|stockpile|stock-pile| +E0057989|stocktaking|stock-taking| +E0057990|stogy|stogie| +E0058003|stomach ache|stomachache| +E0058003|stomach-ache|stomachache| +E0058030|stomodaeum|stomodeum| +E0058040|stone fruit|stone-fruit| +E0058061|story teller|storyteller| +E0058061|story-teller|storyteller| +E0058082|strain gauge|strain-gauge| +E0058137|streptococcaemia|streptococcemia| +E0058197|strip tease|strip-tease| +E0058214|stronger rosewater|stronger rose-water| +E0058214|stronger rose water|stronger rose-water| +E0058312|stylise|stylize| +E0058357|subarachnoid haemorrhage|subarachnoid hemorrhage| +E0058372|sub-capital|subcapital| +E0058453|subdural haematoma|subdural hematoma| +E0058528|subleukaemic leukaemia|subleukemic leukemia| +E0058528|subleucemic leucemia|subleukemic leukemia| +E0058528|subleucaemic leucaemia|subleukemic leukemia| +E0058673|subsidise|subsidize| +E0058761|subclass|sub-class| +E0058762|subclassification|sub-classification| +E0058763|subclassify|sub-classify| +E0058855|sugar-beet|sugar beet| +E0058857|sugar cane|sugar-cane| +E0058857|sugarcane|sugar-cane| +E0058880|sulphadiazine|sulfadiazine| +E0058886|Sulphalene|sulfalene| +E0058891|sulphamethoxazole|sulfamethoxazole| +E0058898|sulphasalazine|sulfasalazine| +E0058899|sulphatase|sulfatase| +E0058901|sulphatide lipidosis|sulfatide lipidosis| +E0058903|sulfhaemoglobin|sulfhemoglobin| +E0058903|sulphemoglobin|sulfhemoglobin| +E0058903|sulphaemoglobin|sulfhemoglobin| +E0058905|sulphydryl|sulfhydryl| +E0058906|sulphydryl-specific|sulfhydryl-specific| +E0058907|Sulphinpyrazone|sulfinpyrazone| +E0058911|sulphobromophthalein|sulfobromophthalein| +E0058913|sulphonate|sulfonate| +E0058914|sulphonate|sulfonate| +E0058915|sulphonation|sulfonation| +E0058916|sulphonic|sulfonic| +E0058918|sulphur|sulfur| +E0058919|sulphur|sulfur| +E0058920|sulphurate|sulfurate| +E0058921|sulphuret|sulfuret| +E0058925|sulphurize|sulfurize| +E0058925|sulphurise|sulfurize| +E0058929|sulphur mustard|sulfur mustard| +E0058943|sulfa|sulpha| +E0058944|sulfate|sulphate| +E0058945|sulfate|sulphate| +E0058946|sulfate-polyacrylamide|sulphate-polyacrylamide| +E0058947|sulfide|sulphide| +E0058957|sumac|sumach| +E0058959|summarise|summarize| +E0058982|sun-light|sunlight| +E0058988|sun stroke|sunstroke| +E0058991|sun worship|sun-worship| +E0059100|super-ovulation|superovulation| +E0059103|super oxide dismutase|superoxide dismutase| +E0059247|supra-scapular|suprascapular| +E0059312|surgeon's knot|surgeons' knot| +E0059353|susceptability|susceptibility| +E0059380|swob|swab| +E0059381|swob|swab| +E0059399|swop|swap| +E0059400|swop|swap| +E0059405|swathe|swath| +E0059496|symbolise|symbolize| +E0059500|sympathectomise|sympathectomize| +E0059520|sympathise|sympathize| +E0059521|sympathising eye|sympathizing eye| +E0059533|symphysial|symphyseal| +E0059568|synchronisation|synchronization| +E0059569|synchronise|synchronize| +E0059602|synaechia|synechia| +E0059608|synergise|synergize| +E0059612|syngenic|syngeneic| +E0059616|synezesis|synizesis| +E0059617|syncaryon|synkaryon| +E0059657|synthesise|synthesize| +E0059700|syringocoele|syringocele| +E0059707|sirup|syrup| +E0059716|systematisation|systematization| +E0059717|systematise|systematize| +E0059732|systolic click-murmur syndrome|systolic click murmur syndrome| +E0059755|tableware|table-ware| +E0059756|tabu|taboo| +E0059757|tabu|taboo| +E0059765|tachy-arrhythmia|tachyarrhythmia| +E0059770|tachypnoea|tachypnea| +E0059771|tacypnoeic|tachypneic| +E0059795|teniacide|taeniacide| +E0059795|tenicide|taeniacide| +E0059796|teniafugal|taeniafugal| +E0059796|tenifugal|taeniafugal| +E0059797|teniafuge|taeniafuge| +E0059798|tenial|taenial| +E0059799|tenial|taenial| +E0059801|teniasis|taeniasis| +E0059802|tenia coli|taenia coli| +E0059818|take-over|takeover| +E0059894|tapinocephalic|tapeinocephalic| +E0059908|tap dance|tap-dance| +E0059923|target cell|target-cell| +E0059946|tarso-metatarsal|tarsometatarsal| +E0060020|teamwork|team-work| +E0060028|tear gas|tear-gas| +E0060028|teargas|tear-gas| +E0060062|teenage|teen-age| +E0060139|templet|template| +E0060164|temporise|temporize| +E0060181|temporooccipital|temporo-occipital| +E0060187|tenible|tenable| +E0060222|taenia|tenia| +E0060295|terminal oedema|terminal edema| +E0060321|terracotta|terra-cotta| +E0060321|terra cotta|terra-cotta| +E0060322|terracotta|terra-cotta| +E0060322|terra cotta|terra-cotta| +E0060334|terrorise|terrorize| +E0060342|tertiary butylacetate|tertiary butyl acetate| +E0060375|tetanise|tetanize| +E0060396|tetracyclin|tetracycline| +E0060414|tetramere|tetramer| +E0060428|tetraacetate|tetra-acetate| +E0060428|tetracetate|tetra-acetate| +E0060451|thalassanaemia|thalassanemia| +E0060452|thalassaemia|thalassemia| +E0060453|thalassaemia major|thalassemia major| +E0060455|thalassaemic|thalassemic| +E0060456|thalassaemic|thalassemic| +E0060478|thanksgiving|thanks-giving| +E0060489|theatre|theater| +E0060567|thermo-couple|thermocouple| +E0060592|thermophilous|thermophilus| +E0060609|thermodynamics|thermo-dynamics| +E0060623|thimazol|thiamazole| +E0060623|tiamazol|thiamazole| +E0060624|thiamin|thiamine| +E0060657|thin-layer chromatography|thin layer chromatography| +E0060666|thioflavine|thioflavin| +E0060687|third-party|third party| +E0060694|thistledown|thistle-down| +E0060715|thoraco-lumbar|thoracolumbar| +E0060749|three day sickness|three-day sickness| +E0060781|thrombo angitiis obliterans|thromboangiitis obliterans| +E0060784|thrombocytopheresis|thrombocytapheresis| +E0060788|thrombocytopenia|thrombocytopaenia| +E0060794|thrombo-embolic|thromboembolic| +E0060795|thrombo-embolism|thromboembolism| +E0060853|thumbsucking|thumb sucking| +E0060853|thumb-sucking|thumb sucking| +E0060867|thymectomise|thymectomize| +E0060918|thymuline|thymulin| +E0060920|thymus-dependent lymphocyte|thymus dependent lymphocyte| +E0060951|thyroidectomise|thyroidectomize| +E0060972|thyroid stimulating hormone|thyroid-stimulating hormone| +E0060989|thyrotropic|thyrotrophic| +E0060990|thyrotropin|thyrotrophin| +E0060995|thyroxin|thyroxine| +E0061010|thiapride|tiapride| +E0061036|tick-borne typhus|tickborne typhus| +E0061037|tickertape|ticker-tape| +E0061050|tieclopidine|ticlopidine| +E0061132|tinea versicolour|tinea versicolor| +E0061133|tin foil|tinfoil| +E0061204|titre|titer| +E0061207|tittivate|titivate| +E0061239|tobramycin sulphate|tobramycin sulfate| +E0061258|toffy|toffee| +E0061294|toluenediisocyanate|toluene diisocyanate| +E0061349|tonsilectomy|tonsillectomy| +E0061366|tooth powder|toothpowder| +E0061408|topical anaesthetic|topical anesthetic| +E0061432|torous|torose| +E0061456|tortoiseshell|tortoise-shell| +E0061528|toxaemia|toxemia| +E0061546|toxic oedema|toxic edema| +E0061549|toxic haemolytic anaemia|toxic hemolytic anemia| +E0061558|toxic-shock syndrome|toxic shock syndrome| +E0061589|tracable|traceable| +E0061603|tracheo-bronchial|tracheobronchial| +E0061616|tracheostomise|tracheostomize| +E0061618|tracheotomise|tracheotomize| +E0061628|tracing paper|tracing-paper| +E0061649|trade unionism|trade-unionism| +E0061672|trapse|traipse| +E0061683|tranquillity|tranquility| +E0061684|tranquillization|tranquilization| +E0061684|tranquillisation|tranquilization| +E0061685|tranquillise|tranquilize| +E0061685|tranquillize|tranquilize| +E0061686|tranquiliser|tranquilizer| +E0061686|tranquilliser|tranquilizer| +E0061686|tranquillizer|tranquilizer| +E0061735|transsect|transect| +E0061744|transferrable|transferable| +E0061749|transfer-RNA|transfer RNA| +E0061804|translumenal|transluminal| +E0061861|transection|transsection| +E0061864|trans-sexual|transsexual| +E0061865|trans-sexual|transsexual| +E0061866|trans-sexualism|transsexualism| +E0061867|trans-sexuality|transsexuality| +E0061868|tranship|transship| +E0061909|trapshooting|trap-shooting| +E0061942|traveller|traveler| +E0061943|travelers' diarrhea|traveler's diarrhea| +E0061963|treasure trove|treasure-trove| +E0061981|tree-top|treetop| +E0062009|trendsetter|trend-setter| +E0062010|trendsetting|trend-setting| +E0062041|tri-atrial heart|triatrial heart| +E0062073|trichlorphon|trichlorfon| +E0062075|trichloracetic|trichloroacetic| +E0062134|tricyclic anti-depressant|tricyclic antidepressant| +E0062210|triose-phosphate isomerase|triosephosphate isomerase| +E0062210|triose phosphate isomerase|triosephosphate isomerase| +E0062275|trivialise|trivialize| +E0062296|trolly|trolley| +E0062304|trophoedema|trophedema| +E0062426|tripsinisation|trypsinization| +E0062427|trypsinise|trypsinize| +E0062434|tsetse fly disease|tsetse-fly disease| +E0062460|tuberculisation|tuberculization| +E0062510|tube caecostomy|tube cecostomy| +E0062522|tuboovarian|tubo-ovarian| +E0062523|tuboovarian abscess|tubo-ovarian abscess| +E0062532|tubulo-interstitial|tubulointerstitial| +E0062533|tubulo-reticular|tubuloreticular| +E0062540|taftsin|tuftsin| +E0062550|tumbleweed|tumble-weed| +E0062558|tumourigenesis|tumorigenesis| +E0062559|tumourigenic|tumorigenic| +E0062560|tumourigenicity|tumorigenicity| +E0062561|tumourlike|tumorlike| +E0062561|tumor-like|tumorlike| +E0062561|tumour-like|tumorlike| +E0062565|tumour virus|tumor virus| +E0062566|tumour-associated|tumor-associated| +E0062568|tumour-bearing|tumor-bearing| +E0062569|tumour-localizing|tumor-localizing| +E0062569|tumour-localising|tumor-localizing| +E0062569|tumor-localising|tumor-localizing| +E0062570|tumour-promoting|tumor-promoting| +E0062571|tumour-specific|tumor-specific| +E0062580|tuneable|tunable| +E0062587|tung oil|tung-oil| +E0062683|two-fold|twofold| +E0062684|two-fold|twofold| +E0062743|typhloenteritis|typhlenteritis| +E0062774|tyrannise|tyrannize| +E0062777|tire|tyre| +E0062782|tyrosinaemia|tyrosinemia| +E0062789|T cell chronic lymphocytic leucaemia|T cell chronic lymphocytic leukemia| +E0062789|T cell chronic lymphocytic leucemia|T cell chronic lymphocytic leukemia| +E0062789|T cell chronic lymphocytic leukaemia|T cell chronic lymphocytic leukemia| +E0062789|T-cell chronic lymphocytic leucaemia|T cell chronic lymphocytic leukemia| +E0062789|T-cell chronic lymphocytic leucemia|T cell chronic lymphocytic leukemia| +E0062789|T-cell chronic lymphocytic leukaemia|T cell chronic lymphocytic leukemia| +E0062789|T-cell chronic lymphocytic leukemia|T cell chronic lymphocytic leukemia| +E0062789|t-cell chronic lymphocytic leukemia|T cell chronic lymphocytic leukemia| +E0062828|oulitis|ulitis| +E0062852|ultra-filtration|ultrafiltration| +E0062872|ultraviolet a|ultraviolet A| +E0062873|ultraviolet b|ultraviolet B| +E0062880|ultrared|ultra-red| +E0062880|ultra red|ultra-red| +E0062949|uncharacterised|uncharacterized| +E0063019|under-feed|underfeed| +E0063051|under-staffed|understaffed| +E0063070|underway|under way| +E0063078|undetectible|undetectable| +E0063082|undialysed|undialyzed| +E0063125|unfavourable|unfavorable| +E0063126|unfavourably|unfavorably| +E0063128|unfertilised|unfertilized| +E0063165|uni-axial|uniaxial| +E0063177|uni-directional|unidirectional| +E0063178|uni-directionality|unidirectionality| +E0063201|unimmunised|unimmunized| +E0063243|united states pharmacopeia|United States Pharmacopeia| +E0063318|unpolymerised|unpolymerized| +E0063337|unrecognised|unrecognized| +E0063410|untypable|untypeable| +E0063410|un-typable|untypeable| +E0063410|un-typeable|untypeable| +E0063457|upside down|upside-down| +E0063458|upside down|upside-down| +E0063473|up to date|up-to-date| +E0063508|urbanisation|urbanization| +E0063509|urbanise|urbanize| +E0063532|uraemia|uremia| +E0063533|uraemic|uremic| +E0063559|ureterocoele|ureterocele| +E0063562|uretero-duodenal|ureteroduodenal| +E0063566|uretero-intestinal|ureterointestinal| +E0063570|uretero-pelvic|ureteropelvic| +E0063578|uretero-ureteral|ureteroureteral| +E0063580|uretero-uterine|ureterouterine| +E0063583|urethan|urethane| +E0063601|urethro-perineal|urethroperineal| +E0063603|urethro-prostatic|urethroprostatic| +E0063604|urethro-rectal|urethrorectal| +E0063607|urethro-scrotal|urethroscrotal| +E0063611|urethro-vaginal|urethrovaginal| +E0063702|urocinetic|urokinetic| +E0063722|ursodesoxycholic acid|ursodeoxycholic acid| +E0063734|useability|usability| +E0063735|useable|usable| +E0063772|utero-cervical|uterocervical| +E0063776|utero-placental|uteroplacental| +E0063784|utero-vaginal|uterovaginal| +E0063788|uteroovarian|utero-ovarian| +E0063793|utilisation|utilization| +E0063794|utilise|utilize| +E0063855|vaccinisation|vaccinization| +E0063868|vacuolisation|vacuolization| +E0063877|vagabond's disease|vagabonds' disease| +E0063900|vagino-perineal|vaginoperineal| +E0063980|vandalise|vandalize| +E0063997|Van't Hoff|van't Hoff| +E0064001|vaporisation|vaporization| +E0064001|vapourization|vaporization| +E0064001|vapourisation|vaporization| +E0064002|vaporise|vaporize| +E0064002|vapourize|vaporize| +E0064002|vapourise|vaporize| +E0064003|vapor|vapour| +E0064004|vapors|vapours| +E0064024|varicellisation|varicellization| +E0064028|varicocoele|varicocele| +E0064066|vascularisation|vascularization| +E0064067|vascularise|vascularize| +E0064082|vascular tumour|vascular tumor| +E0064089|vasculo-toxic|vasculotoxic| +E0064097|vaso-active|vasoactive| +E0064098|vasoactive intestinal peptid|vasoactive intestinal peptide| +E0064099|vaso-activity|vasoactivity| +E0064100|vaso-constriction|vasoconstriction| +E0064101|vaso-constrictive|vasoconstrictive| +E0064144|vaso-vagal|vasovagal| +E0064145|vaso-vagal syncope|vasovagal syncope| +E0064145|vaso vagal syncope|vasovagal syncope| +E0064198|veld|veldt| +E0064224|venipuncture|venepuncture| +E0064236|venezuelan equine encephalitis|Venezuelan equine encephalitis| +E0064271|venoocclusive|veno-occlusive| +E0064272|venovenous|veno-venous| +E0064316|ventro-lateral|ventrolateral| +E0064333|verbalise|verbalize| +E0064377|verruga|verruca| +E0064417|vertebro-basilar insufficiency|vertebrobasilar insufficiency| +E0064417|vertebro basilar insufficiency|vertebrobasilar insufficiency| +E0064444|very low density lipoprotein|very low-density lipoprotein| +E0064445|very low-density|very-low-density| +E0064460|vesico-cervical|vesicocervical| +E0064462|vesico-intestinal|vesicointestinal| +E0064463|vesico-perineal|vesicoperineal| +E0064464|vesico-prostatic|vesicoprostatic| +E0064468|vesico-rectal|vesicorectal| +E0064475|vesico-ureteral|vesicoureteral| +E0064476|vesico-urethral|vesicourethral| +E0064479|vesico-vaginal|vesicovaginal| +E0064480|vesico-vaginal fistula|vesicovaginal fistula| +E0064516|vestibuloocular|vestibulo-ocular| +E0064517|vestibulo ocular reflex|vestibulo-ocular reflex| +E0064517|vestibuloocular reflex|vestibulo-ocular reflex| +E0064543|phial|vial| +E0064573|victimisation|victimization| +E0064574|victimise|victimize| +E0064579|video-cassette|videocassette| +E0064579|video cassette|videocassette| +E0064595|vigour|vigor| +E0064641|vinylchloride|vinyl chloride| +E0064653|viremia|viraemia| +E0064654|viremic|viraemic| +E0064681|virilisation|virilization| +E0064682|virilise|virilize| +E0064736|visceroperitoneal|viscero-peritoneal| +E0064751|visualisation|visualization| +E0064752|visualise|visualize| +E0064768|vitalise|vitalize| +E0064777|vitamin-A|vitamin A| +E0064779|vitamin-C|vitamin C| +E0064780|vitamin-D|vitamin D| +E0064781|vitamin-E|vitamin E| +E0064798|vitrectomize|vitrectomise| +E0064828|viz.|viz| +E0064832|vocalisation|vocalization| +E0064833|vocalise|vocalize| +E0064856|volatilisation|volatilization| +E0064857|volitilise|volatilize| +E0064869|voltage clamp|voltage-clamp| +E0064905|Von Gierke's disease|von Gierke's disease| +E0064908|von Hippel Lindau disease|von Hippel-Lindau disease| +E0064908|Von Hippel-Lindau disease|von Hippel-Lindau disease| +E0064908|Von Hippel Lindau disease|von Hippel-Lindau disease| +E0064914|von Willebrands disease|von Willebrand's disease| +E0064914|von Willebrands' disease|von Willebrand's disease| +E0064936|vulcanisation|vulcanization| +E0064937|vulcanise|vulcanize| +E0064942|vulgarisation|vulgarization| +E0064943|vulgarise|vulgarize| +E0064962|vulvo-vaginal|vulvovaginal| +E0064984|waggon|wagon| +E0065084|wash-out|washout| +E0065135|watercolour|water-colour| +E0065135|watercolor|water-colour| +E0065135|water color|water-colour| +E0065138|water glass|water-glass| +E0065139|water polo|water-polo| +E0065140|waterpower|water-power| +E0065148|wave front|wavefront| +E0065187|wedding-ring|wedding ring| +E0065197|weed killer|weed-killer| +E0065218|weight lifter|weight-lifter| +E0065219|weight lifting|weight-lifting| +E0065219|weightlifting|weight-lifting| +E0065238|wellbeing|well-being| +E0065240|wellknown|well-known| +E0065240|well known|well-known| +E0065241|well water|well-water| +E0065242|welch|welsh| +E0065252|Western|western| +E0065253|Western|western| +E0065254|westernisation|westernization| +E0065255|westernise|westernize| +E0065260|West Nile|west nile| +E0065287|wheat germ|wheat-germ| +E0065287|wheatgerm|wheat-germ| +E0065291|wheel-chair|wheelchair| +E0065291|wheel chair|wheelchair| +E0065328|whimsy|whimsey| +E0065339|whip worm|whipworm| +E0065341|whirr|whir| +E0065342|whirr|whir| +E0065375|white sponge naevus|white sponge nevus| +E0065378|white spot disease|white-spot disease| +E0065382|whizz|whiz| +E0065395|whole-body irradiation|whole body irradiation| +E0065400|wholehearted|whole-hearted| +E0065401|whole wheat|whole-wheat| +E0065407|whooping-cough|whooping cough| +E0065446|willful|wilful| +E0065455|willpower|will-power| +E0065471|window dressing|window-dressing| +E0065472|wind-sucking|windsucking| +E0065500|wisdom tooth|wisdom-tooth| +E0065515|wych-hazel|witch-hazel| +E0065547|wolfsbane|wolf's-bane| +E0065547|wolf's bane|wolf's-bane| +E0065548|wolverene|wolverine| +E0065551|womanise|womanize| +E0065585|wood pulp|wood-pulp| +E0065590|wool-sorters' disease|woolsorters' disease| +E0065608|work force|workforce| +E0065610|working-class|working class| +E0065621|workload|work-load| +E0065622|workup|work-up| +E0065622|work up|work-up| +E0065626|world-wide|worldwide| +E0065627|world-wide|worldwide| +E0065655|rack|wrack| +E0065761|xerodermia|xeroderma| +E0065773|xipamid|xipamide| +E0065777|xyphoid|xiphoid| +E0065778|xyphoid|xiphoid| +E0065788|xilamide|xylamide| +E0065792|xylazin|xylazine| +E0065805|X-ray computed tomogram|x-ray computed tomogram| +E0065808|X ray crystallography|x-ray crystallography| +E0065808|X-ray crystallography|x-ray crystallography| +E0065808|xray crystallography|x-ray crystallography| +E0065808|Xray crystallography|x-ray crystallography| +E0065812|X-ray diffraction|x-ray diffraction| +E0065812|xray diffraction|x-ray diffraction| +E0065812|Xray diffraction|x-ray diffraction| +E0065812|x ray diffraction|x-ray diffraction| +E0065812|X ray diffraction|x-ray diffraction| +E0065814|x-ray fluourescence|x-ray fluorescence| +E0065817|X-ray therapy|x-ray therapy| +E0065853|yellowjacket|yellow jacket| +E0065877|yoghourt|yogurt| +E0065877|yoghurt|yogurt| +E0065907|yr.|yr| +E0065912|yuletide|yule-tide| +E0065939|zig-zag|zigzag| +E0065940|zig-zag|zigzag| +E0065941|zig-zag|zigzag| +E0065942|zimelidine|zimeldine| +E0065942|zimelidin|zimeldine| +E0065958|zinc oxide eugenol cement|zinc oxide-eugenol cement| +E0065967|zinc sulphadiazine|zinc sulfadiazine| +E0065968|zinc compound|zinc-compound| +E0065976|zombie|zombi| +E0065997|zoogloeic|zoogleic| +E0066024|zygomatico-auricular index|zygomaticoauricular index| +E0066025|zygomatico-facial|zygomaticofacial| +E0066028|zygomatico-frontal|zygomaticofrontal| +E0066029|zygomatico-maxillary|zygomaticomaxillary| +E0066032|zygomatico-temporal|zygomaticotemporal| +E0066080|African horsesickness|African horse sickness| +E0066121|DecaDurabolin|Deca-Durabolin| +E0066149|Hurthle cell tumour|Hurthle cell tumor| +E0066185|Morquio syndrome|Morquio's syndrome| +E0066210|politzer bag|Politzer bag| +E0066213|probanthine|Pro-Banthine| +E0066217|Puri-Nethol|Purinethol| +E0066238|Taka diastase|Taka-diastase| +E0066238|Takadiastase|Taka-diastase| +E0066272|acetylmethylcarbinol|acetylmethyl carbinol| +E0066275|acetylsulphadiazine|acetylsulfadiazine| +E0066292|acyl transferase|acyltransferase| +E0066297|adenosine triphosphatase|adenosinetriphosphatase| +E0066314|acathesia|akathisia| +E0066326|allylthiourea|allyl thiourea| +E0066333|ambrein|ambrin| +E0066367|angio-myoma|angiomyoma| +E0066377|anoopsia|anopsia| +E0066383|antihaemophilic|antihemophilic| +E0066391|anti-streptokinase|antistreptokinase| +E0066399|apex cardiography|apexcardiography| +E0066405|appendico-cecostomy|appendicocecostomy| +E0066405|appendicocoecostomy|appendicocecostomy| +E0066405|appendico-coecostomy|appendicocecostomy| +E0066405|appendicocaecostomy|appendicocecostomy| +E0066405|appendico-caecostomy|appendicocecostomy| +E0066413|argininosuccinic aciduria|argininosuccinicaciduria| +E0066417|arterectomy|arteriectomy| +E0066472|beta-glucosidase|beta glucosidase| +E0066477|bisulphide|bisulfide| +E0066493|brady-arrhythmia|bradyarrhythmia| +E0066493|brady arrhythmia|bradyarrhythmia| +E0066496|bromelin|bromelain| +E0066512|buphthalmus|buphthalmos| +E0066526|caliectomy|calicectomy| +E0066526|calycectomy|calicectomy| +E0066545|carbol-fuchsin|carbolfuchsin| +E0066545|carbol fuchsin|carbolfuchsin| +E0066565|carotenaemia|carotenemia| +E0066574|caecectomy|cecectomy| +E0066576|caecopexy|cecopexy| +E0066579|caecotomy|cecotomy| +E0066585|cefalosporin|cephalosporin| +E0066593|cerberine|cerberin| +E0066594|cerebello-pontine|cerebellopontine| +E0066628|choledocho-enterostomy|choledochoenterostomy| +E0066629|choledocho-lithotomy|choledocholithotomy| +E0066635|cholesterosis|cholesterolosis| +E0066636|cholinetheophyllinate|choline theophyllinate| +E0066647|choreo-athetosis|choreoathetosis| +E0066655|ciclopiroxolamine|ciclopirox olamine| +E0066686|coccyodynia|coccydynia| +E0066721|conisation|conization| +E0066726|copro-porphyrin|coproporphyrin| +E0066737|corticotropin|corticotrophin| +E0066764|cryptophthalmus|cryptophthalmos| +E0066805|danthrone|danthron| +E0066826|deoxyhaemoglobin|deoxyhemoglobin| +E0066827|desoxyribonuclease|deoxyribonuclease| +E0066845|devascularisation|devascularization| +E0066856|dextroamphetamine sulfate|dextroamphetamine sulphate| +E0066856|dextro-amphetamine sulphate|dextroamphetamine sulphate| +E0066856|dextro-amphetamine sulfate|dextroamphetamine sulphate| +E0066863|Dianabol|dianabol| +E0066889|difenidol|diphenidol| +E0066897|diskography|discography| +E0066916|duodeno-duodenostomy|duodenoduodenostomy| +E0066918|duodeno-pancreatectomy|duodenopancreatectomy| +E0066933|electrooculography|electro-oculography| +E0066933|electro oculography|electro-oculography| +E0066968|epiglottectomy|epiglottidectomy| +E0066982|ergokryptin|ergocryptine| +E0066987|erythrocin|erythrosin| +E0066993|oesophagogastromyotomy|esophagogastromyotomy| +E0066994|oesophagojejunostomy|esophagojejunostomy| +E0066994|esophago-jejunostomy|esophagojejunostomy| +E0066994|oesophago-jejunostomy|esophagojejunostomy| +E0066995|oesophagomyotomy|esophagomyotomy| +E0066998|aesthesioneuroepithelioma|esthesioneuroepithelioma| +E0067001|ethinyloestradiol|ethinylestradiol| +E0067001|ethinyl estradiol|ethinylestradiol| +E0067001|ethinyl oestradiol|ethinylestradiol| +E0067002|Ethiodol|ethiodol| +E0067008|ethylphenylephrine|ethyl phenylephrine| +E0067014|euflavin|euflavine| +E0067049|formol|Formol| +E0067052|fraenectomy|frenectomy| +E0067061|fullers' earth|fuller's earth| +E0067061|fullers earth|fuller's earth| +E0067065|fungaemia|fungemia| +E0067081|gantrisin|Gantrisin| +E0067136|glycerine|glycerin| +E0067139|glycinaemia|glycinemia| +E0067143|glycohaemoglobin|glycohemoglobin| +E0067150|glycyl-glycine|glycylglycine| +E0067150|glycyl glycine|glycylglycine| +E0067166|guaiphenesin|guaifenesin| +E0067190|helianthine|helianthin| +E0067192|haemadsorption|hemadsorption| +E0067194|haemangiectasis|hemangiectasis| +E0067195|haemangiomatosis|hemangiomatosis| +E0067196|haemangiopericytoma|hemangiopericytoma| +E0067199|haematemesis|hematemesis| +E0067200|haematin|hematin| +E0067202|haematomyelia|hematomyelia| +E0067203|haematopoiesis|hematopoiesis| +E0067204|haematopoietin|hematopoietin| +E0067206|haematospermia|hematospermia| +E0067208|haemerythrin|hemerythrin| +E0067219|haemin|hemin| +E0067224|hemi-thyroidectomy|hemithyroidectomy| +E0067226|haemoconcentration|hemoconcentration| +E0067228|haemocyanin|hemocyanin| +E0067230|haemoglobinuria|hemoglobinuria| +E0067231|haemopexin|hemopexin| +E0067232|haemophthalmos|hemophthalmos| +E0067234|haemorrhagin|hemorrhagin| +E0067235|haemorrhoidectomy|hemorrhoidectomy| +E0067236|haemosiderin|hemosiderin| +E0067237|haemospermia|hemospermia| +E0067242|hepatico-duodenostomy|hepaticoduodenostomy| +E0067244|hepatico-gastrostomy|hepaticogastrostomy| +E0067262|heterophyosis|heterophyiasis| +E0067276|hind brain|hindbrain| +E0067276|hind-brain|hindbrain| +E0067293|homoeostasis|homeostasis| +E0067296|homocysteine|homocystine| +E0067299|horsesickness|horse-sickness| +E0067315|hydroxymethyl transferase|hydroxymethyltransferase| +E0067327|hyperammonaemia|hyperammonemia| +E0067330|hypercarotenemia|hypercarotinemia| +E0067330|hypercarotenaemia|hypercarotinemia| +E0067330|hypercarotinaemia|hypercarotinemia| +E0067331|hyperchloraemia|hyperchloremia| +E0067333|hyperchylomicronaemia|hyperchylomicronemia| +E0067338|hyperoestrogenism|hyperestrogenism| +E0067339|hyperglobulinaemia|hyperglobulinemia| +E0067340|hyperglyceridaemia|hyperglyceridemia| +E0067341|hyperglycinaemia|hyperglycinemia| +E0067342|hypermagnesaemia|hypermagnesemia| +E0067344|hyperphenylalaninaemia|hyperphenylalaninemia| +E0067346|hyperphosphataemia|hyperphosphatemia| +E0067355|hypochloraemia|hypochloremia| +E0067357|hypocholesterolaemia|hypocholesterolemia| +E0067359|hypoinsulinaemia|hypoinsulinemia| +E0067361|hypomagnesaemia|hypomagnesemia| +E0067365|hyposensitisation|hyposensitization| +E0067385|ileo-ileostomy|ileoileostomy| +E0067386|ileo-rectostomy|ileorectostomy| +E0067386|ileo rectostomy|ileorectostomy| +E0067443|isoimmunisation|isoimmunization| +E0067447|isovalericacidemia|isovaleric acidemia| +E0067454|jejuno-jejunostomy|jejunojejunostomy| +E0067485|lactotrophin|lactotropin| +E0067486|lagophthalmus|lagophthalmos| +E0067503|leucoagglutinin|leukoagglutinin| +E0067504|leucocytic alexin|leukocytic alexin| +E0067505|leucocytic endolysin|leukocytic endolysin| +E0067519|lipaemia|lipemia| +E0067614|methaemalbumin|methemalbumin| +E0067621|methyleugenol|methyl eugenol| +E0067638|methyl xanthine|methylxanthine| +E0067683|myconstatin|Mycostatin| +E0067727|neurilemmoma|neurolemmoma| +E0067736|nigrosine|nigrosin| +E0067748|non-disjunction|nondisjunction| +E0067749|nonoxinol|nonoxynol| +E0067785|oophoro-hysterectomy|oophorohysterectomy| +E0067853|papulo-squamous|papulosquamous| +E0067855|para-phenylenediamine|paraphenylenediamine| +E0067855|paraphenylene diamine|paraphenylenediamine| +E0067857|paraproteinaemia|paraproteinemia| +E0067862|paraosmia|parosmia| +E0067885|Periactin|periactin| +E0067900|phakoemulsification|phacoemulsification| +E0067900|phako-emulsification|phacoemulsification| +E0067900|phaco-emulsification|phacoemulsification| +E0067916|phenylsalicylate|phenyl salicylate| +E0067917|phenylbutazon|phenylbutazone| +E0067958|Pituitrin|pituitrin| +E0067990|polyphenol oxidase|polyphenoloxidase| +E0068012|pre-excitation|preexcitation| +E0068013|Premarin|premarin| +E0068031|pro-gastrin|progastrin| +E0068042|prorenin|prorennin| +E0068059|pseudo-exfoliation|pseudoexfoliation| +E0068072|purpurin|purpurine| +E0068105|radio-element|radioelement| +E0068106|radio-immunoprecipitation|radioimmunoprecipitation| +E0068106|radioimmuno-precipitation|radioimmunoprecipitation| +E0068107|radio-iodine|radioiodine| +E0068107|radio iodine|radioiodine| +E0068116|recto-sigmoidectomy|rectosigmoidectomy| +E0068118|re-educate|reeducate| +E0068119|re-education|reeducation| +E0068159|sand fly|sandfly| +E0068166|saucerisation|saucerization| +E0068204|sialadenectomy|sialoadenectomy| +E0068283|sulphomucin|sulfomucin| +E0068339|thiadiazide|thiadiazine| +E0068388|transuretero-ureterostomy|transureteroureterostomy| +E0068419|trimethylxanthine|trimethyl xanthine| +E0068428|Trobicin|trobicin| +E0068455|uretero-ileostomy|ureteroileostomy| +E0068465|uretero-ureterostomy|ureteroureterostomy| +E0068508|vesico-enteric|vesicoenteric| +E0068517|villous|villose| +E0069115|oesophagogastroplasty|esophagogastroplasty| +E0069117|fraenoplasty|frenoplasty| +E0069162|acanthrocyte|acanthocyte| +E0069188|aminolaevulinate|aminolevulinate| +E0069221|apex cardiogram|apexcardiogram| +E0069237|atomiser|atomizer| +E0069248|bed pan|bedpan| +E0069262|bisulphite|bisulfite| +E0069266|blue tongue|bluetongue| +E0069272|bow leg|bowleg| +E0069285|butylacetate|butyl acetate| +E0069296|chorio-retinopathy|chorioretinopathy| +E0069298|kineplasty|cineplasty| +E0069306|oesophagogastroscopy|esophagogastroscopy| +E0069306|esophago-gastroscopy|esophagogastroscopy| +E0069306|oesophago-gastroscopy|esophagogastroscopy| +E0069311|glomerulo-nephropathy|glomerulonephropathy| +E0069315|haemoglobinometry|hemoglobinometry| +E0069316|haemoglobinopathy|hemoglobinopathy| +E0069342|radio-telemetry|radiotelemetry| +E0069342|radio telemetry|radiotelemetry| +E0069343|re-entry|reentry| +E0069372|cardiovertor|cardioverter| +E0069387|fibrinmonomer|fibrin monomer| +E0069391|hayfever|hay fever| +E0069409|maculo-papular|maculopapular| +E0069410|magnocellular|magnicellular| +E0069416|nebuliser|nebulizer| +E0069421|organiser|organizer| +E0069451|steriliser|sterilizer| +E0069458|thio ether|thioether| +E0069467|vaporiser|vaporizer| +E0069467|vapourizer|vaporizer| +E0069467|vapouriser|vaporizer| +E0069474|goat pox|goatpox| +E0069475|sheeppox|sheep-pox| +E0069475|sheep pox|sheep-pox| +E0069477|mouse pox|mousepox| +E0069481|haematosalpinx|hematosalpinx| +E0069534|pro-erythroblast|proerythroblast| +E0069560|pipette|pipet| +E0069565|stylette|stylet| +E0069581|haematocolpos|hematocolpos| +E0069623|cysto-urethrogram|cystourethrogram| +E0069634|haemogram|hemogram| +E0069635|electrooculogram|electro-oculogram| +E0069635|electro oculogram|electro-oculogram| +E0069645|vector cardiogram|vectorcardiogram| +E0069659|fluocortinbutyl|fluocortin butyl| +E0069682|sulphonyl|sulfonyl| +E0069711|hair ball|hairball| +E0069755|eyeworm|eye worm| +E0069756|flat worm|flatworm| +E0069757|heart worm|heartworm| +E0069770|haematomediastinum|hematomediastinum| +E0069771|haemotympanum|hemotympanum| +E0069799|haematopericardium|hematopericardium| +E0069807|radio-calcium|radiocalcium| +E0069810|haemoperitoneum|hemoperitoneum| +E0069817|mealworm|meal worm| +E0069840|rubberdam|rubber dam| +E0069853|sandbath|sand bath| +E0069855|mouthwash|mouth wash| +E0069866|shortwave|short wave| +E0069866|short-wave|short wave| +E0069883|haemocyte|hemocyte| +E0069886|histocyte|histiocyte| +E0069891|procaryote|prokaryote| +E0069908|sulphite|sulfite| +E0069914|isopropylmyristate|isopropyl myristate| +E0069920|polyvinyl acetate|polyvinylacetate| +E0069923|hydrolyzate|hydrolysate| +E0069923|hydrolizate|hydrolysate| +E0069923|hydrolisate|hydrolysate| +E0069955|methylsulfonate|methyl sulfonate| +E0069969|inositolniacinate|inositol niacinate| +E0069973|sulphocyanate|sulfocyanate| +E0069984|isopropylmeprobamate|isopropyl meprobamate| +E0069986|methylmethacrylate|methyl methacrylate| +E0069988|endplate|end plate| +E0070000|dimethylphthalate|dimethyl phthalate| +E0070004|guanosinemonophosphate|guanosine monophosphate| +E0070005|glycerolphosphate|glycerol phosphate| +E0070007|triosephosphate|triose phosphate| +E0070008|pyridoxinephosphate|pyridoxine phosphate| +E0070009|glyceraldehydephosphate|glyceraldehyde phosphate| +E0070010|heparitinsulfate|heparitin sulfate| +E0070011|chondroitinsulfate|chondroitin sulfate| +E0070012|dimethylsulfate|dimethyl sulfate| +E0070014|disulphate|disulfate| +E0070051|hydroxypropylmethylcellulose|hydroxypropyl methylcellulose| +E0070052|ethyl cellulose|ethylcellulose| +E0070143|depotestosterone|Depo-Testosterone| +E0070143|depo-testosterone|Depo-Testosterone| +E0070143|Depo-testosterone|Depo-Testosterone| +E0070174|actidione|Acti-Dione| +E0070183|trigon|trigone| +E0070185|sulphone|sulfone| +E0070187|levothyroxine|levo thyroxine| +E0070187|laevothyroxine|levo thyroxine| +E0070187|laevo thyroxine|levo thyroxine| +E0070188|neosynephrine|Neo-Synephrine| +E0070188|Neo-synephrine|Neo-Synephrine| +E0070192|dimethyl benzene|dimethylbenzene| +E0070193|methylbenzene|methyl benzene| +E0070229|hexachlorophane|hexachlorophene| +E0070291|haemochrome|hemochrome| +E0070298|thornapple|thorn apple| +E0070300|acetylsulfisoxazole|acetyl sulfisoxazole| +E0070300|acetyl sulphisoxazole|acetyl sulfisoxazole| +E0070300|acetylsulphisoxazole|acetyl sulfisoxazole| +E0070332|rectocoele|rectocele| +E0070334|haematocele|hematocele| +E0070334|haematocoele|hematocele| +E0070335|urethrocoele|urethrocele| +E0070336|chylocoele|chylocele| +E0070338|laryngocoele|laryngocele| +E0070357|fibro-cartilage|fibrocartilage| +E0070364|keto aldehyde|keto-aldehyde| +E0070364|ketoaldehyde|keto-aldehyde| +E0070408|Cardiogreen|Cardio-Green| +E0070415|chlorophyll|chlorophyl| +E0070430|cristagalli|crista galli| +E0070436|cut-down|cutdown| +E0070443|dentin|dentine| +E0070459|dysgerminoma|disgerminoma| +E0070532|head cap|headcap| +E0070534|haematometra|hematometra| +E0070538|haemochromogen|hemochromogen| +E0070549|hunch back|hunchback| +E0070554|hyperpnoea|hyperpnea| +E0070586|gynergen|Gynergen| +E0070652|Quillaia|Quillaja| +E0070660|laevodopa|levodopa| +E0070666|propyl paraben|propylparaben| +E0070669|thio-tepa|thiotepa| +E0070669|thio-TEPA|thiotepa| +E0070675|leucoderma|leukoderma| +E0070683|mandril|mandrel| +E0070690|melaena|melena| +E0070695|methyl mercaptan|methylmercaptan| +E0070700|mustardgas|mustard gas| +E0070703|myoinositol|myo-inositol| +E0070704|nailbed|nail bed| +E0070705|nailfold|nail fold| +E0070708|neurilemma|neurolemma| +E0070708|neurilema|neurolemma| +E0070710|nitrosurea|nitrosourea| +E0070711|non-union|nonunion| +E0070713|orthopnoea|orthopnea| +E0070715|otorrhoea|otorrhea| +E0070719|pawpaw|papaw| +E0070722|Pasteurella hemolytica|Pasteurella haemolytica| +E0070731|prodrug|pro-drug| +E0070732|progestogen|progestagen| +E0070738|radio-iron|radioiron| +E0070738|radio iron|radioiron| +E0070742|rhinorrhoea|rhinorrhea| +E0070755|culicicide|culicide| +E0070762|gonococcocide|gonococcide| +E0070766|larvacide|larvicide| +E0070771|molluscicide|molluscacide| +E0070774|muscicide|muscacide| +E0070775|muscicide|muscacide| +E0070776|nematicide|nematocide| +E0070777|nematicide|nematocide| +E0070791|schistosomacide|schistosomicide| +E0070802|viricide|virucide| +E0070839|tetraethyllead|tetra-ethyl lead| +E0070839|tetraethyl lead|tetra-ethyl lead| +E0070879|DepoProvera|Depo-Provera| +E0070879|Depo Provera|Depo-Provera| +E0070891|HCG|hCG| +E0070892|HPL|hPL| +E0070908|NeoCobefrin|Neo-Cobefrin| +E0070908|Neo Cobefrin|Neo-Cobefrin| +E0070919|Retin A|Retin-A| +E0070931|Zoomastigophora|Zoomastigophorea| +E0070934|chloramine T|chloramine-T| +E0070936|self hypnosis|self-hypnosis| +E0071012|Cornelia de Lange syndrome|Cornelia de Lange's syndrome| +E0071013|DiGeorge syndrome|DiGeorge's syndrome| +E0071013|Di George syndrome|DiGeorge's syndrome| +E0071013|Di George's syndrome|DiGeorge's syndrome| +E0071015|Edwards syndrome|Edwards' syndrome| +E0071016|Ekbom's syndrome|Ekbom syndrome| +E0071018|Gardner syndrome|Gardner's syndrome| +E0071022|Gorlin syndrome|Gorlin's syndrome| +E0071028|Jaccoud syndrome|Jaccoud's syndrome| +E0071029|Larsen syndrome|Larsen's syndrome| +E0071033|Maffucci syndrome|Maffucci's syndrome| +E0071034|Menkes syndrome|Menkes' syndrome| +E0071035|Minkowsky-Chauffard syndrome|Minkowski-Chauffard syndrome| +E0071044|Reiter syndrome|Reiter's syndrome| +E0071046|Roberts syndrome|Robert's syndrome| +E0071048|Saethre Chotzen syndrome|Saethre-Chotzen syndrome| +E0071050|Smith Lemli Opitz syndrome|Smith-Lemli-Opitz syndrome| +E0071051|Sotos syndrome|Sotos' syndrome| +E0071054|van der Woude's syndrome|Van der Woude's syndrome| +E0071054|Van der Woude syndrome|Van der Woude's syndrome| +E0071054|van der Woude syndrome|Van der Woude's syndrome| +E0071100|glycollic acid|glycolic acid| +E0071105|hydroiodic acid|hydriodic acid| +E0071149|sulphosalicylic acid|sulfosalicylic acid| +E0071157|coloured|colored| +E0071163|bio-electric|bioelectric| +E0071175|re-adapt|readapt| +E0071176|re-convert|reconvert| +E0071178|re-intervene|reintervene| +E0071203|wooliness|woolliness| +E0071208|ileocaecum|ileocecum| +E0071211|lateralisation|lateralization| +E0071212|terminalisation|terminalization| +E0071213|energiser|energizer| +E0071214|stabiliser|stabilizer| +E0071215|unsynchronised|unsynchronized| +E0071216|cystinaemia|cystinemia| +E0071217|gynaecoid|gynecoid| +E0071218|gynaecomazia|gynecomazia| +E0071219|haematohidrosis|hematohidrosis| +E0071220|haematologist|hematologist| +E0071221|hyperalphalipoproteinaemia|hyperalphalipoproteinemia| +E0071222|hypercupraemia|hypercupremia| +E0071223|hyperglucagonaemia|hyperglucagonemia| +E0071224|hyperimmunoglobulinaemia|hyperimmunoglobulinemia| +E0071225|hyperphosphatasaemia|hyperphosphatasemia| +E0071226|hypofibrinogenaemia|hypofibrinogenemia| +E0071227|hypoglucagonaemia|hypoglucagonemia| +E0071228|alaninaemia|alaninemia| +E0071229|alphalipoproteinaemia|alphalipoproteinemia| +E0071230|analphaliproteinaemia|analphaliproteinemia| +E0071231|antithrombinaemia|antithrombinemia| +E0071232|cystathioninaemia|cystathioninemia| +E0071233|dysfibrinogenaemia|dysfibrinogenemia| +E0071234|dysimmunoglobulinaemia|dysimmunoglobulinemia| +E0071235|galactassaemia|galactassemia| +E0071236|hyperapobetalipoproteinaemia|hyperapobetalipoproteinemia| +E0071237|hypermethioninaemia|hypermethioninemia| +E0071238|hyperornithinaemia|hyperornithinemia| +E0071239|hyperphenylalanineaemia|hyperphenylalanineemia| +E0071241|hypersomatostatinaemia|hypersomatostatinemia| +E0071242|hypertyrosinaemia|hypertyrosinemia| +E0071243|hypoalphalipoproteinaemia|hypoalphalipoproteinemia| +E0071244|hypodysfibrinogenaemia|hypodysfibrinogenemia| +E0071245|hypogastrinaemia|hypogastrinemia| +E0071246|hypolipidaemia|hypolipidemia| +E0071247|hypothyrotropinaemia|hypothyrotropinemia| +E0071248|hypothyroxinaemia|hypothyroxinemia| +E0071249|isoleucinaemia|isoleucinemia| +E0071250|ketoacidaemia|ketoacidemia| +E0071251|lipidaemia|lipidemia| +E0071252|lipoproteinaemia|lipoproteinemia| +E0071253|lipoprotinaemia|lipoprotinemia| +E0071254|methioninaemia|methioninemia| +E0071255|ornithinaemia|ornithinemia| +E0071256|pneumathaemia|pneumathemia| +E0071257|pseudohyponatraemia|pseudohyponatremia| +E0071258|pseudoleukaemia|pseudoleukemia| +E0071258|pseudoleucemia|pseudoleukemia| +E0071258|pseudoleucaemia|pseudoleukemia| +E0071259|sarcosinaemia|sarcosinemia| +E0071260|sitosterolaemia|sitosterolemia| +E0071261|sulphaemoglobinaemia|sulphaemoglobinemia| +E0071261|sulfhemoglobinemia|sulphaemoglobinemia| +E0071261|sulfhaemoglobinaemia|sulphaemoglobinemia| +E0071261|sulfhaemoglobinemia|sulphaemoglobinemia| +E0071262|tryptophanaemia|tryptophanemia| +E0071263|isohaemagglutinin|isohemagglutinin| +E0071264|laevorotation|levorotation| +E0071265|laevoversion|levoversion| +E0071266|mesocaecum|mesocecum| +E0071267|contracaecum|contracecum| +E0071268|taeniamyotomy|teniamyotomy| +E0071269|centilitre|centiliter| +E0071270|femtolitre|femtoliter| +E0071271|decimetre|decimeter| +E0071272|louvre|louver| +E0071273|louvred|louvered| +E0071274|mitre|miter| +E0071275|collumellar|columellar| +E0071276|labeller|labeler| +E0071277|pastile|pastille| +E0071277|pastil|pastille| +E0071282|stiletto|stilletto| +E0071283|teetotaller|teetotaler| +E0071284|acanthamoebiasis|acanthamebiasis| +E0071285|chloridorrhoea|chloridorrhea| +E0071286|blenorrhoea|blenorrhea| +E0071287|phagedaena|phagedena| +E0071288|dacryocoele|dacryocele| +E0071289|hypopnoea|hypopnea| +E0071291|oesophagoscope|esophagoscope| +E0071292|esophagogram|esophagram| +E0071292|oesophagram|esophagram| +E0071293|presbyoesophagus|presbyesophagus| +E0071294|oesophagocoele|esophagocoele| +E0071294|esophagocele|esophagocoele| +E0071295|oesophagoduodenal|esophagoduodenal| +E0071296|oesophagojejunal|esophagojejunal| +E0071296|esophago-jejunal|esophagojejunal| +E0071296|oesophago-jejunal|esophagojejunal| +E0071297|oesophagoscopic|esophagoscopic| +E0071298|oesophaogastrostomy|esophaogastrostomy| +E0071299|oesophgastrectomy|esophgastrectomy| +E0071300|pharyngolaryngooesophagectomy|pharyngolaryngoesophagectomy| +E0071300|pharyngo-laryngo-esophagectomy|pharyngolaryngoesophagectomy| +E0071300|pharyngo-laryngo-oesophagectomy|pharyngolaryngoesophagectomy| +E0071301|transoesophageal|transesophageal| +E0071313|picosulfate|picosulphate| +E0071314|polysulfide|polysulphide| +E0071316|sulfacetamide|sulphacetamide| +E0071339|arylsulphatase|arylsulfatase| +E0071340|bisulphate|bisulfate| +E0071341|bromsulphthalein|bromsulfthalein| +E0071342|busulphan|busulfan| +E0071343|dimethylsulphoxide|dimethylsulfoxide| +E0071343|dimethyl sulfoxide|dimethylsulfoxide| +E0071344|goldsodiumthiosulphate|goldsodiumthiosulfate| +E0071344|gold sodium thiosulfate|goldsodiumthiosulfate| +E0071344|gold sodium thiosulphate|goldsodiumthiosulfate| +E0071345|methylsulphate|methylsulfate| +E0071346|monosulphate|monosulfate| +E0071347|monosulphide|monosulfide| +E0071348|persulphate|persulfate| +E0071349|phenylsulphthion|phenylsulfthion| +E0071352|sesquisulphide|sesquisulfide| +E0071354|sulphadimethoxine|sulfadimethoxine| +E0071357|sulphafurazole|sulfafurazole| +E0071358|sulphaguanidine|sulfaguanidine| +E0071359|sulphaloxate|sulfaloxate| +E0071362|sulphathiazole|sulfathiazole| +E0071363|sulphatide|sulfatide| +E0071364|sulphatriad|sulfatriad| +E0071365|sulphaurea|sulfaurea| +E0071366|sulphenamide|sulfenamide| +E0071367|sulphocysteine|sulfocysteine| +E0071369|sulphomethate|sulfomethate| +E0071370|sulphonylurea|sulfonylurea| +E0071371|sulphosuccinate|sulfosuccinate| +E0071372|sulphoxide|sulfoxide| +E0071373|tetrabromosulphophthal|tetrabromosulfophthal| +E0071374|thiosulphatoaurate|thiosulfatoaurate| +E0071375|toluenesulphonamide|toluenesulfonamide| +E0071376|dishonourable|dishonorable| +E0071377|misdemeanour|misdemeanor| +E0071378|odourproof|odorproof| +E0071379|unflavoured|unflavored| +E0071380|flavoured|flavored| +E0071381|sulfonamide|sulphonamide| +E0071382|tunneller|tunneler| +E0071383|prelabour|prelabor| +E0071390|dermato-polymyositis|dermatopolymyositis| +E0071409|rhino-sinusitis|rhinosinusitis| +E0071421|greyish|grayish| +E0071422|greyishness|grayishness| +E0071423|hosteller|hosteler| +E0071424|killogramme|killogram| +E0071425|pickax|pickaxe| +E0071426|snowplough|snowplow| +E0071427|panelling|paneling| +E0071428|vice|vise| +E0071493|thrombo-embolectomy|thromboembolectomy| +E0071572|behaviourist|behaviorist| +E0071580|eugenist|eugenicist| +E0071651|bogyman|bogeyman| +E0071651|boogyman|bogeyman| +E0071651|boogeyman|bogeyman| +E0071777|customise|customize| +E0071778|hysterectomise|hysterectomize| +E0071779|laryngectomise|laryngectomize| +E0071781|lobotomise|lobotomize| +E0071802|chordectomy|cordectomy| +E0071890|semenologist|seminologist| +E0071904|allo-eroticism|alloeroticism| +E0071996|humouralism|humoralism| +E0072172|antibrachium|antebrachium| +E0072224|sanitorium|sanatorium| +E0072267|aelurophobia|ailurophobia| +E0072276|arachnephobia|arachnophobia| +E0072277|astrapophobia|astraphobia| +E0072278|ataxiophobia|ataxophobia| +E0072296|gynaephobia|gynephobia| +E0072296|gynophobia|gynephobia| +E0072297|haptephobia|haphephobia| +E0072298|haematophobia|hematophobia| +E0072299|haemophobia|hemophobia| +E0072360|albuminaemia|albuminemia| +E0072362|aleukaemia|aleukemia| +E0072362|aleucemia|aleukemia| +E0072362|aleucaemia|aleukemia| +E0072364|aminoacidaemia|aminoacidemia| +E0072371|anydremia|anhydremia| +E0072377|ataxiophemia|ataxophemia| +E0072385|bicarbonataemia|bicarbonatemia| +E0072387|canceraemia|canceremia| +E0072388|candidaemia|candidemia| +E0072394|chloroleukaemia|chloroleukemia| +E0072394|chloroleucemia|chloroleukemia| +E0072394|chloroleucaemia|chloroleukemia| +E0072395|cholesteraemia|cholesteremia| +E0072396|cholesterinaemia|cholesterinemia| +E0072397|cholesterolaemia|cholesterolemia| +E0072401|creatinaemia|creatinemia| +E0072403|deshydraemia|deshydremia| +E0072415|euglycaemia|euglycemia| +E0072422|haematoporphyrinaemia|hematoporphyrinemia| +E0072434|hyperaminoacidaemia|hyperaminoacidemia| +E0072434|hyperamino-acidaemia|hyperaminoacidemia| +E0072434|hyperamino-acidemia|hyperaminoacidemia| +E0072434|hyperamino acidaemia|hyperaminoacidemia| +E0072434|hyperamino acidemia|hyperaminoacidemia| +E0072444|hyperestrogenaemia|hyperestrogenemia| +E0072445|hyperferraemia|hyperferremia| +E0072446|hyperfibrinogenaemia|hyperfibrinogenemia| +E0072449|hyperhaemoglobinaemia|hyperhemoglobinemia| +E0072449|hyperhaemoglobinemia|hyperhemoglobinemia| +E0072453|hyperlactacidaemia|hyperlactacidemia| +E0072465|hypoalonaemia|hypoalonemia| +E0072471|hypocomplementaemia|hypocomplementemia| +E0072477|hypoferraemia|hypoferremia| +E0072484|hypouraemia|hypouremia| +E0072489|insulinaemia|insulinemia| +E0072499|lacticaemia|lacticemia| +E0072520|nephrohaemia|nephrohemia| +E0072522|normocalcaemia|normocalcemia| +E0072525|oligaemia|oligemia| +E0072557|pseudo-hyperkalemia|pseudohyperkalemia| +E0072557|pseudohyperkalaemia|pseudohyperkalemia| +E0072557|pseudo-hyperkalaemia|pseudohyperkalemia| +E0072558|pseudo-polycythemia|pseudopolycythemia| +E0072558|pseudopolycythaemia|pseudopolycythemia| +E0072558|pseudo-polycythaemia|pseudopolycythemia| +E0072567|radiotoxaemia|radiotoxemia| +E0072569|salicylaemia|salicylemia| +E0200009|acetyl-CoA|acetyl CoA| +E0200013|acid-fast|acid fast| +E0200014|acyl-CoA|acyl CoA| +E0200015|aftercataract|after cataract| +E0200015|after-cataract|after cataract| +E0200028|post-traumatic|post traumatic| +E0200054|pain-dysfunction syndrome|pain dysfunction syndrome| +E0200054|pain disfunction syndrome|pain dysfunction syndrome| +E0200054|pain-disfunction syndrome|pain dysfunction syndrome| +E0200060|appendicial abscess|appendiceal abscess| +E0200082|papyraceous foetus|papyraceous fetus| +E0200087|acid-fast stain|acid fast stain| +E0200096|Adams's operation|Adams' operation| +E0200098|pelvic haematoma|pelvic hematoma| +E0200110|Phalen's manoeuvre|Phalen's maneuver| +E0200114|Alcaligenes fecalis|Alcaligenes faecalis| +E0200117|Alexander-Adams operation|Alexander Adams operation| +E0200126|placenta praevia|placenta previa| +E0200146|post-central fissure|postcentral fissure| +E0200162|pre-central fissure|precentral fissure| +E0200164|anti-inflammatory|anti inflammatory| +E0200164|antiinflammatory|anti inflammatory| +E0200165|anti-inflammatory|anti inflammatory| +E0200165|antiinflammatory|anti inflammatory| +E0200166|precipitate labour|precipitate labor| +E0200177|prolonged labour|prolonged labor| +E0200183|propyleneglycol|propylene glycol| +E0200194|pulmonary haemorrhage|pulmonary hemorrhage| +E0200199|pupilary membrane|pupillary membrane| +E0200200|pure-tone audiometry|pure tone audiometry| +E0200207|RPh|R. Ph.| +E0200207|R.Ph|R. Ph.| +E0200208|R-protein|R protein| +E0200215|Rh-antibody|Rh antibody| +E0200245|attention-deficit hyperactivity disorder|attention deficit hyperactivity disorder| +E0200245|attention deficit-hyperactivity disorder|attention deficit hyperactivity disorder| +E0200245|attention deficit/hyperactivity disorder|attention deficit hyperactivity disorder| +E0200267|retro-grade urography|retrograde urography| +E0200270|Rh isoimmunisation|Rh isoimmunization| +E0200277|Ringers solution|Ringer's solution| +E0200277|Ringer solution|Ringer's solution| +E0200279|Ritgen manoeuvre|Ritgen maneuver| +E0200288|B-scan|B scan| +E0200292|S-sleep|S sleep| +E0200313|split-thickness graft|split thickness graft| +E0200325|benign tumour|benign tumor| +E0200327|Sachs' disease|Sachs disease| +E0200340|Scanzoni manoeuvre|Scanzoni maneuver| +E0200378|slit-lamp|slit lamp| +E0200379|Baldy-Webster operation|Baldy Webster operation| +E0200384|space-maintainer|space maintainer| +E0200397|basic red nine|basic red 9| +E0200436|Blalock-Taussig operation|Blalock Taussig operation| +E0200440|T-tube|T tube| +E0200446|thalassaemia minor|thalassemia minor| +E0200457|bovine leukaemia|bovine leukemia| +E0200457|bovine leucemia|bovine leukemia| +E0200457|bovine leucaemia|bovine leukemia| +E0200459|bovine virus diarrhoea|bovine virus diarrhea| +E0200463|tricho-rhino-phalangeal syndrome|trichorhinophalangeal syndrome| +E0200479|Burkitt's tumour|Burkitt's tumor| +E0200481|C-MOPP|C MOPP| +E0200481|C-mopp|C MOPP| +E0200481|C-Mopp|C MOPP| +E0200482|C-reactive protein|C reactive protein| +E0200484|C-banding|C banding| +E0200485|thalamocortical fibre|thalamocortical fiber| +E0200487|thiosulphuric acid|thiosulfuric acid| +E0200492|thoracic aneurism|thoracic aneurysm| +E0200494|thromboplastin-generation test|thromboplastin generation test| +E0200508|C-band|C band| +E0200514|Tourette syndrome|Tourette's syndrome| +E0200516|toxic multinodular goitre|toxic multinodular goiter| +E0200531|carbamoyl-phosphate-synthase|carbamoyl phosphate synthase| +E0200536|carboxy-lyase|carboxy lyase| +E0200536|carboxylyase|carboxy lyase| +E0200566|uretero-pelvic junction|ureteropelvic junction| +E0200583|Coombs's test|Coombs' test| +E0200583|Coombs test|Coombs' test| +E0200590|vitamin B 12|vitamin B12| +E0200590|vitamin B-12|vitamin B12| +E0200609|ventriculo-atrial shunt|ventriculoatrial shunt| +E0200620|vitreous humour|vitreous humor| +E0200625|Caldwell-Luc operation|Caldwell Luc operation| +E0200630|Von Gierke|von Gierke| +E0200663|acetylcoenzyme A|acetyl coenzyme A| +E0200668|acid sulphate|acid sulfate| +E0200671|central grey|central gray| +E0200687|alpha haemolysin|alpha hemolysin| +E0200714|circular fibre|circular fiber| +E0200730|anti DNA antibody|anti-DNA antibody| +E0200735|Clostridium novyii|Clostridium novyi| +E0200738|arcuate fibre|arcuate fiber| +E0200744|CoA-transferase|CoA transferase| +E0200764|collagen fibre|collagen fiber| +E0200769|colony-stimulating factor|colony stimulating factor| +E0200771|colony-forming unit|colony forming unit| +E0200775|complement-fixation test|complement fixation test| +E0200776|basophilic leukaemia|basophilic leukemia| +E0200776|basophilic leucemia|basophilic leukemia| +E0200776|basophilic leucaemia|basophilic leukemia| +E0200784|beta-sheet|beta sheet| +E0200784|betasheet|beta sheet| +E0200787|beta haemolysin|beta hemolysin| +E0200787|beta-hemolysin|beta hemolysin| +E0200787|beta-haemolysin|beta hemolysin| +E0200810|bulbo-urethral gland|bulbourethral gland| +E0200813|coraco-acromial ligament|coracoacromial ligament| +E0200815|calyceal diverticulum|caliceal diverticulum| +E0200824|corticobulbar fibre|corticobulbar fiber| +E0200826|corticopontine fibre|corticopontine fiber| +E0200827|cortico-pontine tract|corticopontine tract| +E0200828|cortico-rubral tract|corticorubral tract| +E0200830|corticospinal fibre|corticospinal fiber| +E0200831|corticothalamic fibre|corticothalamic fiber| +E0200834|carbamoylphosphate synthetase|carbamoyl phosphate synthetase| +E0200837|coverglass|cover glass| +E0200850|cathepsin-D|cathepsin D| +E0200857|coeliac axis|celiac axis| +E0200859|coeliac syndrome|celiac syndrome| +E0200872|cytochrome P-450|cytochrome P450| +E0200879|caesarean hysterectomy|cesarean hysterectomy| +E0200879|cesarian hysterectomy|cesarean hysterectomy| +E0200879|caesarian hysterectomy|cesarean hysterectomy| +E0200882|Danlos syndrome|Danlos' syndrome| +E0200882|Danlos's syndrome|Danlos' syndrome| +E0200926|depersonalisation disorder|depersonalization disorder| +E0200928|Descemets membrane|Descemet's membrane| +E0200934|dihydroxyvitamin D-3|dihydroxyvitamin D3| +E0200934|dihydroxyvitamin D 3|dihydroxyvitamin D3| +E0200934|dihydroxy-vitamin D3|dihydroxyvitamin D3| +E0200934|dihydroxy-vitamin D-3|dihydroxyvitamin D3| +E0200934|dihydroxy-vitamin D 3|dihydroxyvitamin D3| +E0200934|dihydroxy vitamin D3|dihydroxyvitamin D3| +E0200934|dihydroxy vitamin D-3|dihydroxyvitamin D3| +E0200934|dihydroxy vitamin D 3|dihydroxyvitamin D3| +E0200939|Doleris operation|Doleris' operation| +E0200939|Doleris's operation|Doleris' operation| +E0200950|Douglas method|Douglas' method| +E0200950|Douglas's method|Douglas' method| +E0200961|drug-resistant|drug resistant| +E0200967|corticotrophin releasing factor|corticotropin releasing factor| +E0200967|corticotropin-releasing factor|corticotropin releasing factor| +E0200967|corticotrophin-releasing factor|corticotropin releasing factor| +E0200968|corticotropin-releasing hormone|corticotropin releasing hormone| +E0200977|cu. mm.|cu mm| +E0200977|cu.mm.|cu mm| +E0200993|Ehlers-Danlos syndrome|Ehlers Danlos syndrome| +E0201010|desmoid tumour|desmoid tumor| +E0201015|Eppstein-Barr virus|Eppstein Barr virus| +E0201027|ego-alien|ego alien| +E0201028|ego-dystonic|ego dystonic| +E0201028|egodystonic|ego dystonic| +E0201030|diffuse goitre|diffuse goiter| +E0201033|elastic fibre|elastic fiber| +E0201038|disulphide bond|disulfide bond| +E0201039|electron-microscopic|electron microscopic| +E0201047|drumhead|drum head| +E0201055|end-bulb|end bulb| +E0201057|end-tidal|end tidal| +E0201062|end-product|end product| +E0201062|endproduct|end product| +E0201063|endoscopic retrograde cholangio-pancreatography|endoscopic retrograde cholangiopancreatography| +E0201066|endothelial leucocyte|endothelial leukocyte| +E0201072|erythroblastosis foetalis|erythroblastosis fetalis| +E0201076|oestrogen receptor|estrogen receptor| +E0201077|ethiodised oil|ethiodized oil| +E0201086|Estes operation|Estes' operation| +E0201086|Estes's operation|Estes' operation| +E0201096|extradural haemorrhage|extradural hemorrhage| +E0201097|extra-articular|extra articular| +E0201103|factor-A|factor A| +E0201106|eyewash|eye wash| +E0201109|F-actin|F actin| +E0201110|familial hyperlipoproteinaemia|familial hyperlipoproteinemia| +E0201111|false-positive|false positive| +E0201112|false-positive|false positive| +E0201114|fatty-acid synthase|fatty acid synthase| +E0201116|Fanconi's syndrome|Fanconi syndrome| +E0201124|follicle-stimulating hormone|follicle stimulating hormone| +E0201125|protooncogene|proto-oncogene| +E0201130|full-thickness graft|full thickness graft| +E0201134|Pseudo-monas putida|Pseudomonas putida| +E0201140|foetal fat|fetal fat| +E0201141|fibreoptic bronchoscopy|fiberoptic bronchoscopy| +E0201141|fiber-optic bronchoscopy|fiberoptic bronchoscopy| +E0201141|fibre-optic bronchoscopy|fiberoptic bronchoscopy| +E0201156|follicular centre cell lymphoma|follicular center cell lymphoma| +E0201160|beta-oestradiol|beta-estradiol| +E0201160|beta estradiol|beta-estradiol| +E0201160|beta oestradiol|beta-estradiol| +E0201162|foreign-body granuloma|foreign body granuloma| +E0201164|beta-naphthol|betanaphthol| +E0201164|beta naphthol|betanaphthol| +E0201166|cyclo ligase|cyclo-ligase| +E0201166|cycloligase|cyclo-ligase| +E0201170|carbomoyl phosphate synthase|carbomoyl-phosphate synthase| +E0201172|above knee amputation|above-knee amputation| +E0201178|Fredet-Ramstedt operation|Fredet Ramstedt operation| +E0201190|G-actin|G actin| +E0201191|G-protein|G protein| +E0201195|GH-RF|GH RF| +E0201196|GH-RH|GH RH| +E0201196|GHRH|GH RH| +E0201200|glutamic-oxaloacetic transaminase|glutamic oxaloacetic transaminase| +E0201201|glutamic-pyruvic transaminase|glutamic pyruvic transaminase| +E0201202|glutamyltranspeptidase|glutamyl transpeptidase| +E0201216|gas-liquid chromatography|gas liquid chromatography| +E0201224|germ-line|germ line| +E0201224|germline|germ line| +E0201226|Gila monster|gila monster| +E0201241|ferrous sulphate|ferrous sulfate| +E0201243|granulocytic leucemia|granulocytic leukemia| +E0201243|granulocytic leukaemia|granulocytic leukemia| +E0201243|granulocytic leucaemia|granulocytic leukemia| +E0201259|H-Y antigen|H Y antigen| +E0201261|H-reflex|H reflex| +E0201267|hammertoe|hammer toe| +E0201268|fracture-dislocation|fracture dislocation| +E0201275|haematopoietic system|hematopoietic system| +E0201278|haemolytic streptococcus|hemolytic streptococcus| +E0201281|haemorrhagic diathesis|hemorrhagic diathesis| +E0201283|haemorrhagic shock|hemorrhagic shock| +E0201304|Hippel-Lindau disease|Hippel Lindau disease| +E0201308|human chorionic gonadotrophin|human chorionic gonadotropin| +E0201309|hydro-lyase|hydro lyase| +E0201309|hydrolyase|hydro lyase| +E0201312|hypokalaemic alkalosis|hypokalemic alkalosis| +E0201316|Hemophilus influenzae|Haemophilus influenzae| +E0201317|hairy-cell leukemia|hairy cell leukemia| +E0201317|hairy cell leucemia|hairy cell leukemia| +E0201317|hairy-cell leucemia|hairy cell leukemia| +E0201317|hairy cell leukaemia|hairy cell leukemia| +E0201317|hairy-cell leukaemia|hairy cell leukemia| +E0201317|hairy cell leucaemia|hairy cell leukemia| +E0201317|hairy-cell leucaemia|hairy cell leukemia| +E0201325|heatstroke|heat stroke| +E0201325|heat-stroke|heat stroke| +E0201329|glomus tumour|glomus tumor| +E0201334|gold-foil|gold foil| +E0201341|grey commissure|gray commissure| +E0201342|grey substance|gray substance| +E0201357|high-frequency|high frequency| +E0201358|high-frequency|high frequency| +E0201377|haematopoietic tissue|hematopoietic tissue| +E0201379|haematoporphyrin derivative|hematoporphyrin derivative| +E0201381|hypoxanthine-guanine phosphoribosyl-transferase|hypoxanthine guanine phosphoribosyltransferase| +E0201381|hypoxanthine-guanine phosphoribosyltransferase|hypoxanthine guanine phosphoribosyltransferase| +E0201381|hypoxanthineguanine phosphoribosyltransferase|hypoxanthine guanine phosphoribosyltransferase| +E0201382|haemoglobin A|hemoglobin A| +E0201385|haemoglobin lepore|hemoglobin lepore| +E0201386|IL-3|IL 3| +E0201386|IL3|IL 3| +E0201387|haemolytic jaundice|hemolytic jaundice| +E0201390|haemorrhagic septicaemia|hemorrhagic septicemia| +E0201394|heparan sulphate|heparan sulfate| +E0201408|intra-abdonimal|intra abdominal| +E0201415|histamine-releasing factor|histamine releasing factor| +E0201441|ileo-psoas muscle|iliopsoas muscle| +E0201442|inhalation anaesthesia|inhalation anesthesia| +E0201453|insulin-dependent diabetes|insulin dependent diabetes| +E0201458|intercrural fibre|intercrural fiber| +E0201463|in-dwelling catheter|indwelling catheter| +E0201463|in dwelling catheter|indwelling catheter| +E0201471|intermittent positive-pressure breathing|intermittent positive pressure breathing| +E0201487|intestino-intestinal|intestino intestinal| +E0201488|intra-aortic balloon counterpulsation|intra aortic balloon counterpulsation| +E0201489|intra-arterial|intra arterial| +E0201489|intraarterial|intra arterial| +E0201492|intra-uterine device|intrauterine device| +E0201496|ionisation chamber|ionization chamber| +E0201499|juxta-articular|juxta articular| +E0201499|juxtaarticular|juxta articular| +E0201501|ketol-isomerase|ketol isomerase| +E0201503|Karposi sarcoma|Karposi's sarcoma| +E0201506|Kaschin-Beck disease|Kaschin Beck disease| +E0201506|Kashin Bek disease|Kaschin Beck disease| +E0201506|Kashin-Bek disease|Kaschin Beck disease| +E0201512|L-dopa|L dopa| +E0201513|growth hormone-releasing hormone|growth hormone releasing hormone| +E0201513|growth-hormone-releasing hormone|growth hormone releasing hormone| +E0201513|growth-hormone releasing hormone|growth hormone releasing hormone| +E0201514|L-S ratio|L S ratio| +E0201514|L/S ratio|L S ratio| +E0201516|Laki-Lorand factor|Laki Lorand factor| +E0201519|guanidine-acetic acid|guanidine acetic acid| +E0201522|h1|H1| +E0201522|H 1|H1| +E0201522|h 1|H1| +E0201523|h2|H2| +E0201523|H 2|H2| +E0201523|h 2|H2| +E0201524|LH-RH|LH RH| +E0201524|LHRH|LH RH| +E0201530|lachrymal artery|lacrimal artery| +E0201547|Letterer-Siwe disease|Letterer Siwe disease| +E0201548|leu-enkephalin|leu enkephalin| +E0201554|Sture A. Siwe|Sture August Siwe| +E0201554|Sture Siwe|Sture August Siwe| +E0201556|Libman-Sacks disease|Libman Sacks disease| +E0201573|insulin-like growth factor|insulin like growth factor| +E0201586|internal arcuate fibre|internal arcuate fiber| +E0201598|M phase|m phase| +E0201599|intestinal amoebiasis|intestinal amebiasis| +E0201604|M-protein|M protein| +E0201607|manic-depressive|manic depressive| +E0201608|manic-depressive|manic depressive| +E0201613|mid-forceps delivery|mid forceps delivery| +E0201613|midforceps delivery|mid forceps delivery| +E0201623|Muenchausen syndrome|Munchausen syndrome| +E0201623|Munchausen's syndrome|Munchausen syndrome| +E0201623|Muenchausen's syndrome|Munchausen syndrome| +E0201636|iron-sulfur protein|iron sulfur protein| +E0201636|iron sulphur protein|iron sulfur protein| +E0201636|iron-sulphur protein|iron sulfur protein| +E0201644|Matas' operation|Matas operation| +E0201644|Matas's operation|Matas operation| +E0201648|mean corpuscular haemoglobin|mean corpuscular hemoglobin| +E0201651|jawbone|jaw bone| +E0201662|melanocyte-stimulating hormone|melanocyte stimulating hormone| +E0201664|met-enkephalin|met enkephalin| +E0201669|Miles operation|Miles' operation| +E0201669|Miles's operation|Miles' operation| +E0201672|ketoacid decarboxylase|keto acid decarboxylase| +E0201673|keyhole limpet haemocyanin|keyhole limpet hemocyanin| +E0201673|keyhole-limpet hemocyanin|keyhole limpet hemocyanin| +E0201673|keyhole-limpet haemocyanin|keyhole limpet hemocyanin| +E0201676|lachrymal duct|lacrimal duct| +E0201677|lachrymal papilla|lacrimal papilla| +E0201678|lachrymonasal duct|lacrimonasal duct| +E0201689|Miller-Abbott tube|Miller Abbott tube| +E0201691|lecithin-sphingomyelin ratio|lecithin sphingomyelin ratio| +E0201693|Millin-Read operation|Millin Read operation| +E0201699|Mohs's chemosurgery|Mohs' chemosurgery| +E0201699|Mohs chemosurgery|Mohs' chemosurgery| +E0201700|Mohs's technique|Mohs' technique| +E0201700|Mohs technique|Mohs' technique| +E0201712|muscle fibre|muscle fiber| +E0201714|fast-twitch muscle fiber|fast twitch muscle fiber| +E0201714|fast twitch muscle fibre|fast twitch muscle fiber| +E0201714|fast-twitch muscle fibre|fast twitch muscle fiber| +E0201724|Eaton Lambert syndrome|Eaton-Lambert syndrome| +E0201749|myofascial pain disfunction|myofascial pain dysfunction| +E0201788|monocytic leucemia|monocytic leukemia| +E0201788|monocytic leukaemia|monocytic leukemia| +E0201788|monocytic leucaemia|monocytic leukemia| +E0201791|motor-unit|motor unit| +E0201796|multinodular goitre|multinodular goiter| +E0201809|nasal haemorrhage|nasal hemorrhage| +E0201812|naso-gastric tube|nasogastric tube| +E0201813|naso-labial cyst|nasolabial cyst| +E0201818|naevus sebaceus|nevus sebaceus| +E0201820|necrotising factor|necrotizing factor| +E0201823|N-terminal|N terminal| +E0201825|Niemann-Pick disease|Niemann Pick disease| +E0201826|neutralisation test|neutralization test| +E0201827|nitro blue tetrazolium test|nitroblue tetrazolium test| +E0201829|non-protein nitrogen|nonprotein nitrogen| +E0201831|neutrophile chemotactic factor|neutrophil chemotactic factor| +E0201837|naso-maxillary suture|nasomaxillary suture| +E0201838|nerve fibre layer|nerve fiber layer| +E0201848|non-A hepatitis|non A hepatitis| +E0201852|nucleolus organiser|nucleolus organizer| +E0201853|non-tropical sprue|non tropical sprue| +E0201853|nontropical sprue|non tropical sprue| +E0201860|obsessive-compulsive|obsessive compulsive| +E0201861|obsessive-compulsive|obsessive compulsive| +E0201863|obstructed labour|obstructed labor| +E0201866|oral facial digital syndrome|oral-facial-digital syndrome| +E0201873|oblique fibre|oblique fiber| +E0201876|obsessive-compulsive neurosis|obsessive compulsive neurosis| +E0201882|occipito-frontal diameter|occipitofrontal diameter| +E0201895|Omsk haemorrhagic fever|Omsk hemorrhagic fever| +E0201926|PAF-acether|PAF acether| +E0201938|cross-matching|cross matching| +E0201938|crossmatching|cross matching| +E0201939|cross-match|cross match| +E0201939|crossmatch|cross match| +E0201943|Cys-Cys|Cys Cys| +E0201943|Cys-cys|Cys Cys| +E0201950|E-rosette|E rosette| +E0201955|parietal peritonaeum|parietal peritoneum| +E0201959|passive haemagglutination|passive hemagglutination| +E0201974|peri-nephric abscess|perinephric abscess| +E0201986|platelet-derived growth factor|platelet derived growth factor| +E0201990|polyA|poly A| +E0201993|A.C.C.|ACC| +E0201995|acc|Acc| +E0201997|A.C.H.A.|ACHA| +E0201999|A.G.A.|AGA| +E0202003|aFP|AFP| +E0202004|Af Ph|AfP| +E0202005|ag|AG| +E0202008|A.H.A.|AHA| +E0202011|A.I.C.|AIC| +E0202020|A.M.S.A.|AMSA| +E0202023|aorto-iliac|aortoiliac| +E0202025|A.P.A.|APA| +E0202027|A.P.T.A.|APTA| +E0202031|aPTT|APTT| +E0202034|A.Q.|AQ| +E0202035|aq.|Aq.| +E0202035|AQ|Aq.| +E0202041|arg.|Arg| +E0202052|A.S.M.|ASM| +E0202053|As.M.|AsM| +E0202053|ASM|AsM| +E0202053|AS M|AsM| +E0202054|muco-gingival|mucogingival| +E0202057|asn.|Asn| +E0202073|A.A.D.|AAD| +E0202074|a.a-d|aad| +E0202074|aa-d|aad| +E0202078|A.A.D.R.|AADR| +E0202089|aorto-femoral|aortofemoral| +E0202093|non-electrolyte|nonelectrolyte| +E0202110|B.D.A.|BDA| +E0202112|B.D.S.|BDS| +E0202116|Bechterew|Bekhterev| +E0202116|Bechterev|Bekhterev| +E0202116|Bekhterew|Bekhterev| +E0202130|panhaematopenia|panhematopenia| +E0202132|Boettcher|Bottcher| +E0202135|burr|bur| +E0202136|paracousis|paracusis| +E0202143|carotenoderma|carotenodermia| +E0202149|C.B.|CB| +E0202151|CB|C/B| +E0202153|CBC|c.b.c.| +E0202161|pillule|pilule| +E0202175|C-H|CH| +E0202177|ch|Ch| +E0202177|CH|Ch| +E0202177|Ch.|Ch| +E0202195|cholangio-pancreatography|cholangiopancreatography| +E0202196|chylomicronaemia|chylomicronemia| +E0202203|pauci-articular|pauciarticular| +E0202209|COCL|COCl| +E0202221|Porter-Silber chromogen|Porter Silber chromogen| +E0202223|Porter-Silber reaction|Porter Silber reaction| +E0202224|cx.|Cx| +E0202224|CX|Cx| +E0202224|Cx.|Cx| +E0202234|prokalli-krein|prokallikrein| +E0202243|D.C.F.|DCF| +E0202247|D.C.H.|DCH| +E0202250|pseudo-lymphoma|pseudolymphoma| +E0202250|pseudo lymphoma|pseudolymphoma| +E0202253|det.|Det.| +E0202265|D.M.D.|DMD| +E0202278|D.P.|DP| +E0202279|D.P.H.|DPH| +E0202280|D.P.M.|DPM| +E0202281|d.p.m.|dpm| +E0202285|D.R.|DR| +E0202289|DU|dU| +E0202290|d.v.|dv| +E0202290|DV|dv| +E0202292|dysproteinaemia|dysproteinemia| +E0202298|diskectomy|discectomy| +E0202317|Sporozoa|Sporozoea| +E0202325|em.|Em| +E0202325|EM|Em| +E0202330|self-limited|self limited| +E0202333|erythroblastopaenia|erythroblastopenia| +E0202339|E.R.|ER| +E0202341|oesophagogastroduodenoscopy|esophagogastroduodenoscopy| +E0202341|esophago-gastroduodenoscopy|esophagogastroduodenoscopy| +E0202341|oesophago-gastroduodenoscopy|esophagogastroduodenoscopy| +E0202341|esophago-gastro-duodenoscopy|esophagogastroduodenoscopy| +E0202341|oesophago-gastro-duodenoscopy|esophagogastroduodenoscopy| +E0202351|Ssabanejew-Frank operation|Ssabanejew Frank operation| +E0202354|succinal-CoA|succinal CoA| +E0202366|oesophageal hiatus|esophageal hiatus| +E0202368|Swan-Ganz catheter|Swan Ganz catheter| +E0202377|F.L.P.|FLP| +E0202384|f.p.|fp| +E0202387|FUDR|FUdR| +E0202427|glu.|Glu| +E0202427|GLU|Glu| +E0202429|gly.|Gly| +E0202441|G-U|GU| +E0202445|x-ray film|x ray film| +E0202447|x-ray tube|x ray tube| +E0202451|Z-plasty|Z plasty| +E0202451|z plasty|Z plasty| +E0202451|z-plasty|Z plasty| +E0202453|Ziehl-Neelsen method|Ziehl Neelsen method| +E0202458|acetoacetyl-CoA|acetoacetyl CoA| +E0202462|acetyl-CoA acetyltransferase|acetyl CoA acetyltransferase| +E0202465|acetyl-CoA carboxylase|acetyl CoA carboxylase| +E0202470|acid-base balance|acid base balance| +E0202471|HM|Hm| +E0202476|acro-osteolysis|acro osteolysis| +E0202476|acroosteolysis|acro osteolysis| +E0202484|adeno-associated virus|adeno associated virus| +E0202486|hyper-reflexia|hyperreflexia| +E0202486|hyper reflexia|hyperreflexia| +E0202490|Hct|HCT| +E0202490|hct.|HCT| +E0202492|alpha-lipoprotein|alpha lipoprotein| +E0202492|alphalipoprotein|alpha lipoprotein| +E0202493|alpha-estradiol|alpha estradiol| +E0202493|alpha oestradiol|alpha estradiol| +E0202493|alpha-oestradiol|alpha estradiol| +E0202497|hiatus oesophageus|hiatus esophageus| +E0202506|I.H.|IH| +E0202507|IL 1|IL-1| +E0202507|IL1|IL-1| +E0202509|ILE|Ile| +E0202509|ile|Ile| +E0202511|I.M.V.|IMV| +E0202512|alpha2-macroglobulin|alpha2 macroglobulin| +E0202515|amido-ligase|amido ligase| +E0202515|amidolygase|amido ligase| +E0202520|aminoacyl-tRNA|aminoacyl tRNA| +E0202521|I.S.O.|ISO| +E0202526|immuno-adsorption|immunoadsorption| +E0202531|angle-closure glaucoma|angle closure glaucoma| +E0202535|kc.|kc| +E0202542|K.U.B.|KUB| +E0202543|kvp|kVp| +E0202543|KVP|kVp| +E0202543|kVP|kVp| +E0202554|aorto-duodenal|aortoduodenal| +E0202556|L.M.P.|LMP| +E0202560|arthro-ophthalmopathy|arthro ophthalmopathy| +E0202560|arthroophthalmopathy|arthro ophthalmopathy| +E0202563|L.S.A.|LSA| +E0202570|L.V.H.|LVH| +E0202575|lys.|Lys| +E0202575|LYS|Lys| +E0202580|beta-hydroxybutyric acid|beta hydroxybutyric acid| +E0202581|M.A.|MA| +E0202587|bundle-branch block|bundle branch block| +E0202588|M.B.|MB| +E0202592|M.C.|MC| +E0202600|M.D.A.|MDA| +E0202603|M.E.D.|MED| +E0202605|meq.|meq| +E0202605|MEq|meq| +E0202605|mEq.|meq| +E0202608|Mev|MeV| +E0202608|mev|MeV| +E0202616|cis-platinum|cis platinum| +E0202616|cisplatin|cis platinum| +E0202622|cross-reacting antigen|cross reacting antigen| +E0202626|darkfield microscope|dark-field microscope| +E0202633|polymethylmethacrylate|polymethyl methacrylate| +E0202655|potassium sulphate|potassium sulfate| +E0202660|pregnant mare serum gonadotrophin|pregnant mare serum gonadotropin| +E0202664|L and A|L & A| +E0202664|L A|L & A| +E0202664|L&A|L & A| +E0202681|rapid-eye-movement|rapid eye movement| +E0202691|retinol-binding protein|retinol binding protein| +E0202694|retro-pharyngeal abscess|retropharyngeal abscess| +E0202717|MEG|meg| +E0202732|somatotropin-releasing factor|somatotropin releasing factor| +E0202732|somatrophin releasing factor|somatotropin releasing factor| +E0202732|somatrophin-releasing factor|somatotropin releasing factor| +E0202733|mev.|Mev| +E0202739|spleno-renal shunt|splenorenal shunt| +E0202754|subungual haematoma|subungual hematoma| +E0202758|sulphinic acid|sulfinic acid| +E0202759|sulphonic acid|sulfonic acid| +E0202768|supra-orbital nerve|supraorbital nerve| +E0202774|swan-neck deformity|swan neck deformity| +E0202777|TPA|t-PA| +E0202786|terminal deoxynucleotidyltransferase|terminal deoxynucleotidyl transferase| +E0202794|thrombosed haemorrhoid|thrombosed hemorrhoid| +E0202806|topical anaesthesia|topical anesthesia| +E0202807|tracheo-bronchial tree|tracheobronchial tree| +E0202813|transperitoneal caesarean section|transperitoneal cesarean section| +E0202813|transperitoneal cesarian section|transperitoneal cesarean section| +E0202813|transperitoneal caesarian section|transperitoneal cesarean section| +E0202823|tumour angiogenesis|tumor angiogenesis| +E0202824|tumour-associated antigen|tumor-associated antigen| +E0202824|tumour associated antigen|tumor-associated antigen| +E0202825|N.D.A.|NDA| +E0202829|N.H.S.|NHS| +E0202834|N.P.A.|NPA| +E0202841|N.R.C.|NRC| +E0202852|N.T.P.|NTP| +E0202854|NT&P|NT & P| +E0202855|vesico-ureteral reflux|vesicoureteral reflux| +E0202855|vesico ureteral reflux|vesicoureteral reflux| +E0202860|visceral peritonaeum|visceral peritoneum| +E0202864|vitamin B-6|vitamin B6| +E0202864|vitamin B 6|vitamin B6| +E0202865|neu.|neu| +E0202866|vitamin D-2|vitamin D2| +E0202866|vitamin D 2|vitamin D2| +E0202887|O&A|O & A| +E0202888|OB.|OB| +E0202888|Ob|OB| +E0202889|OB.|OB| +E0202889|Ob|OB| +E0202904|od|OD| +E0202904|O.D.|OD| +E0202904|O/D|OD| +E0202904|o.d.|OD| +E0202905|od|OD| +E0202905|O.D.|OD| +E0202905|O/D|OD| +E0202905|o.d.|OD| +E0202908|ofd|OFD| +E0202909|ofd|OFD| +E0202913|oz.|oz| +E0202915|sub-acute combined degeneration|subacute combined degeneration| +E0202916|P-one|P1| +E0202918|pa|p.a.| +E0202937|Phb|PhB| +E0202941|PK|P-K| +E0202949|PMB|P.M.B.| +E0202951|p.o.|po| +E0202951|PO|po| +E0202951|P.O.|po| +E0202955|ppt.|ppt| +E0202955|Ppt|ppt| +E0202956|ppt.|ppt| +E0202956|Ppt|ppt| +E0202960|ps.p.|p.s.p.| +E0202960|PSP|p.s.p.| +E0202967|q.|q| +E0202967|Q|q| +E0202968|q.|q| +E0202968|Q|q| +E0202971|Q-10|Q10| +E0202972|RBC|rbc| +E0202972|r.b.c.|rbc| +E0202973|R.B.C.|RBC| +E0202976|rd.|rd| +E0202976|Rd|rd| +E0202980|RD|R.D.| +E0202981|REP|rep| +E0202982|REP|ReP| +E0202988|RSA|R.S.A.| +E0202990|RVH|R.V.H.| +E0202992|RX|Rx| +E0202993|Ra|ra.| +E0203006|SCM|S.C.M.| +E0203007|SCM|SC&M| +E0203008|SD|S.D.| +E0203009|SD|Sd| +E0203012|sed.|sed| +E0203012|Sed|sed| +E0203013|SED|S.E.D.| +E0203016|SF|Sf| +E0203020|sl|s.l.| +E0203020|SL|s.l.| +E0203028|SLT|S.L.T.| +E0203031|Sm-C|SM-C| +E0203031|SMC|SM-C| +E0203032|sph|sph.| +E0203033|sph|sph.| +E0203034|SPH|Sph| +E0203037|sq|sq.| +E0203043|SSD|S.S.D.| +E0203057|TED|T.E.D.| +E0203063|T & T|T&T| +E0203067|VA|va| +E0203067|V/A|va| +E0203068|VA|Va| +E0203071|vac.|vac| +E0203077|VR|v.r.| +E0203078|VR|V.R.| +E0203082|Y|y| +E0203085|yd.|yd| +E0203092|BI|B-I| +E0203093|BI|B-I| +E0203097|CPD|cpd.| +E0203097|cpd|cpd.| +E0203101|C.S.A.A.|CSAA| +E0203102|cyc.|cyc| +E0203102|CYC|cyc| +E0203104|cyl.|cyl| +E0203106|dc|d.c.| +E0203106|D.C.|d.c.| +E0203106|DC|d.c.| +E0203107|DC|D.C.| +E0203110|D and C|D & C| +E0203110|D&C|D & C| +E0203111|DCTP|dCTP| +E0203112|L and A|L & A| +E0203112|L A|L & A| +E0203112|L&A|L & A| +E0203118|DTMP|dTMP| +E0203128|O.U.|ou| +E0203128|o.u.|ou| +E0203128|OU|ou| +E0203129|O.U.|ou| +E0203129|o.u.|ou| +E0203129|OU|ou| +E0203134|PGE-2|PGE2| +E0203138|Ppd|p.p.d.| +E0203138|PPD|p.p.d.| +E0203139|PPD|P&PD| +E0203141|ppg.|ppg| +E0203148|ROP|R.O.P.| +E0203150|scr|scr.| +E0203150|SCR|scr.| +E0203153|Stokes's syndrome|Stokes' syndrome| +E0203158|VD|V.D.| +E0203163|VD|Vd| +E0203164|Vd|vd.| +E0203168|w|w.| +E0203168|W|w.| +E0203169|W|w| +E0203170|W|w| +E0203171|W|w| +E0203172|W|w| +E0203173|W|W.| +E0203177|aloe-emodin|aloe emodin| +E0203177|aloeemodin|aloe emodin| +E0203178|Cel|Cel.| +E0203178|CEL|Cel.| +E0203178|Cels|Cel.| +E0203179|Cel|Cel.| +E0203179|CEL|Cel.| +E0203179|Cels|Cel.| +E0203201|drug fast|drug-fast| +E0203217|Turner syndrome|Turner's syndrome| +E0203221|haematoxylin and eosin stain|hematoxylin and eosin stain| +E0203222|H & E|H&E| +E0203222|H and E|H&E| +E0203222|H + E|H&E| +E0203227|tricholeucocyte|tricholeukocyte| +E0203254|acute leucosis|acute leukosis| +E0203258|skin leucosis|skin leukosis| +E0203259|intermediate muscle fibre|intermediate muscle fiber| +E0203260|red muscle fibre|red muscle fiber| +E0203261|slow-twitch muscle fiber|slow twitch muscle fiber| +E0203261|slow twitch muscle fibre|slow twitch muscle fiber| +E0203261|slow-twitch muscle fibre|slow twitch muscle fiber| +E0203262|type I muscle fibre|type I muscle fiber| +E0203263|type II muscle fibre|type II muscle fiber| +E0203264|white muscle fibre|white muscle fiber| +E0203281|doc|doc.| +E0203283|DP|dp| +E0203287|D.P.|d.p.| +E0203287|DP|d.p.| +E0203296|EM|E/M| +E0203305|ER|er| +E0203306|Er|er.| +E0203317|F.L.T.|FLT| +E0203324|Amarantus|Amaranthus| +E0203325|cor.|cor| +E0203325|Cor|cor| +E0203325|COR|cor| +E0203326|cor.|cor| +E0203326|Cor|cor| +E0203326|COR|cor| +E0203328|Co R|CoR| +E0203333|DTP|D.T.P.| +E0203338|extern|externe| +E0203341|fe.|fe| +E0203341|Fe|fe| +E0203342|fe.|fe| +E0203342|Fe|fe| +E0203348|inv.|inv| +E0203348|Inv|inv| +E0203351|inv.|inv| +E0203351|Inv|inv| +E0203353|muc.|muc| +E0203353|MUC|muc| +E0203354|muc.|muc| +E0203354|MUC|muc| +E0203371|hpf|h.p.f.| +E0203371|HPF|h.p.f.| +E0203375|hypocalcaemic|hypocalcemic| +E0203380|kala azar|kala-azar| +E0203388|Lic.|Lic| +E0203406|nU.|nU| +E0203410|oxyphile|oxyphil| +E0203411|oxyphile|oxyphil| +E0203426|PME|P.M.E.| +E0203436|propionyl CoA carboxylase|propionyl-CoA carboxylase| +E0203439|receptor-destroying enzyme|receptor destroying enzyme| +E0203440|reg.|reg| +E0203444|R.E.G.|REG| +E0203446|RFA|R.F.A.| +E0203448|RFP|R.F.P.| +E0203452|RSP|R.S.P.| +E0203454|RST|R.S.T.| +E0203459|SLP|Slp| +E0203460|SLP|S.L.P.| +E0203474|tetramethyl benzidine|tetramethylbenzidine| +E0203476|thoraco-abdominal|thoracoabdominal| +E0203490|water clear cell|water-clear cell| +E0203498|Aborigine|aborigine| +E0203502|acetanilid|acetanilide| +E0203503|acetonaemia|acetonemia| +E0203507|acridonium|acridinium| +E0203509|acroparaesthesia|acroparesthesia| +E0203516|Vd|vd.| +E0203518|after-effect|aftereffect| +E0203523|Agrotis|agrotis| +E0203530|aleutian|Aleutian| +E0203536|alkalaemia|alkalemia| +E0203559|Animalia|animalia| +E0203562|anonyme|anonym| +E0203566|anticardium|antecardium| +E0203582|aquiculture|aquaculture| +E0203589|Argyll|argyll| +E0203589|argyle|argyll| +E0203589|Argyle|argyll| +E0203590|Argyll|argyll| +E0203590|argyle|argyll| +E0203590|Argyle|argyll| +E0203604|Asterioidea|Asteroidea| +E0203613|auramin|auramine| +E0203624|begasse|bagasse| +E0203624|begass|bagasse| +E0203625|bagasse disease|begasse disease| +E0203625|begass disease|begasse disease| +E0203643|benzedrine|Benzedrine| +E0203645|benzo dye|Benzo dye| +E0203648|benzoic sulphamide|benzoic sulfamide| +E0203650|cyano-benzene|cyanobenzene| +E0203657|Bergamo|Bergama| +E0203695|Brock syndrome|Brock's syndrome| +E0203697|bromidrosis|bromhidrosis| +E0203701|bronchorrhoea|bronchorrhea| +E0203724|cayman|caiman| +E0203724|Caiman|caiman| +E0203724|Cayman|caiman| +E0203726|caulken|calkin| +E0203732|cannister|canister| +E0203739|cardiazole|cardiazol| +E0203742|care-taking|caretaking| +E0203745|carragheenin|carrageenin| +E0203766|Cerastes|cerastes| +E0203784|cheek bone|cheekbone| +E0203796|chloracetone|chloroacetone| +E0203797|chloracetophenone|chloroacetophenone| +E0203798|chlorbenzene|chlorobenzene| +E0203801|chlorpicrin|chloropicrin| +E0203808|christ|Christ| +E0203843|colourimetry|colorimetry| +E0203862|coprodeum|coprodaeum| +E0203869|Cornish|cornish| +E0203870|Cornish|cornish| +E0203876|counter-clockwise|counterclockwise| +E0203877|counter-clockwise|counterclockwise| +E0203878|counter-pressure|counterpressure| +E0203900|cunnilingtus|cunnilingus| +E0203903|cuticularisation|cuticularization| +E0203911|cyrillic|Cyrillic| +E0203927|de-ligation|deligation| +E0203928|delphian|Delphian| +E0203928|Delphic|Delphian| +E0203928|delphic|Delphian| +E0203949|dimethyl aniline|dimethylaniline| +E0203959|disulphonic|disulfonic| +E0203966|dodecyl sulphate|dodecyl sulfate| +E0203966|dodecylsulfate|dodecyl sulfate| +E0203966|dodecylsulphate|dodecyl sulfate| +E0203970|dravidian|Dravidian| +E0203972|drop-out|dropout| +E0203975|dysaesthesia|dysesthesia| +E0203994|aegophony|egophony| +E0204005|electro-acoustic|electroacoustic| +E0204005|electroacoustical|electroacoustic| +E0204005|electro-acoustical|electroacoustic| +E0204006|electrocauterisation|electrocauterization| +E0204006|electro-cauterization|electrocauterization| +E0204006|electro-cauterisation|electrocauterization| +E0204007|electrocauterise|electrocauterize| +E0204007|electro-cauterize|electrocauterize| +E0204007|electro-cauterise|electrocauterize| +E0204015|electro-acoustically|electroacoustically| +E0204035|entamoebiasis|entamebiasis| +E0204035|endamoebiasis|entamebiasis| +E0204035|endamebiasis|entamebiasis| +E0204040|epigastrocoele|epigastrocele| +E0204040|epigastrocoel|epigastrocele| +E0204052|epinychium|eponychium| +E0204052|epionychium|eponychium| +E0204061|oesophagospasm|esophagospasm| +E0204134|forrel|forel| +E0204155|freon|Freon| +E0204159|furazane|furazan| +E0204172|gantree|gantry| +E0204173|Ganymede|ganymede| +E0204180|gastro-jejunal|gastrojejunal| +E0204181|gate keeper|gatekeeper| +E0204181|gate-keeper|gatekeeper| +E0204200|gingko|ginkgo| +E0204200|ginko|ginkgo| +E0204207|glycollic aciduria|glycolic aciduria| +E0204224|griffin|griffon| +E0204224|gryphon|griffon| +E0204232|huanaco|guanaco| +E0204235|Guinea green B|guinea green B| +E0204235|Guinea Green B|guinea green B| +E0204240|Hans Guenther|Hans Gunther| +E0204257|A.G.A.|AGA| +E0204275|haematite|hematite| +E0204278|hemianaesthesia|hemianesthesia| +E0204280|aq.|Aq.| +E0204280|AQ|Aq.| +E0204318|cx.|Cx| +E0204318|CX|Cx| +E0204318|Cx.|Cx| +E0204331|hyrst|hurst| +E0204335|D.O.A.|DOA| +E0204336|hydrastin|hydrastine| +E0204360|G-U|GU| +E0204368|indane|indan| +E0204378|infra-spinatus|infraspinatus| +E0204380|engrain|ingrain| +E0204388|L.M.P.|LMP| +E0204390|interruptor|interrupter| +E0204391|L.S.A.|LSA| +E0204394|M.D.A.|MDA| +E0204400|muskat|muscat| +E0204416|naphthaquinone|naphthoquinone| +E0204420|naso-maxillary|nasomaxillary| +E0204434|jelly-fish|jellyfish| +E0204444|karyoplasma|karyoplasm| +E0204455|Kmer|Khmer| +E0204456|Kmer|Khmer| +E0204457|kick-back|kickback| +E0204458|kieselgur|kieselguhr| +E0204461|Kirghese|Kirghiz| +E0204461|Kirghis|Kirghiz| +E0204461|Kirgiz|Kirghiz| +E0204461|Khirghiz|Kirghiz| +E0204462|kossotoxin|kosotoxin| +E0204462|koussotoxin|kosotoxin| +E0204474|lungoor|langur| +E0204481|non-conductive|nonconductive| +E0204483|non-dependent|nondependent| +E0204483|non dependent|nondependent| +E0204485|lassoo|lasso| +E0204488|non inflammatory|noninflammatory| +E0204488|non-inflammatory|noninflammatory| +E0204490|nonionising|nonionizing| +E0204490|non ionizing|nonionizing| +E0204490|non-ionizing|nonionizing| +E0204490|non-ionising|nonionizing| +E0204490|non ionising|nonionizing| +E0204493|non-mechanical|nonmechanical| +E0204496|non-obstetrical|nonobstetrical| +E0204497|non operative|nonoperative| +E0204497|non-operative|nonoperative| +E0204498|non-persistence|nonpersistence| +E0204500|non-purulent|nonpurulent| +E0204502|non-pyogenic|nonpyogenic| +E0204503|non-seasonal|nonseasonal| +E0204504|non suppurative|nonsuppurative| +E0204504|non-suppurative|nonsuppurative| +E0204506|non-venereal|nonvenereal| +E0204513|legionnaires' disease|Legionnaires' disease| +E0204513|Legionnaire's disease|Legionnaires' disease| +E0204513|legionnaire's disease|Legionnaires' disease| +E0204515|Legionnaire's bacillus|Legionnaires' bacillus| +E0204515|legionnaires' bacillus|Legionnaires' bacillus| +E0204515|legionnaire's bacillus|Legionnaires' bacillus| +E0204533|Leninism|leninism| +E0204543|opisthotonos|opisthotonus| +E0204551|over-anxious|overanxious| +E0204552|over-population|overpopulation| +E0204559|pallanaesthesia|pallanesthesia| +E0204560|pallaesthesia|pallesthesia| +E0204563|leukocidin|leucocidin| +E0204566|Abraham Levin|Abraham L. Levin| +E0204576|Kleine Levin syndrome|Kleine-Levin syndrome| +E0204580|light-headed|lightheaded| +E0204580|light headed|lightheaded| +E0204583|light-headedness|lightheadedness| +E0204583|light headedness|lightheadedness| +E0204588|Baron Joseph Lister|Joseph Lister| +E0204588|Lord Joseph Lister|Joseph Lister| +E0204598|live-born|liveborn| +E0204605|logorrhoea|logorrhea| +E0204606|logorrhoeic|logorrheic| +E0204610|Lombard voice reflex test|Lombard voice-reflex test| +E0204613|lotos|lotus| +E0204617|Lucite|lucite| +E0204619|loofah|luffa| +E0204632|machette|machete| +E0204632|matchet|machete| +E0204633|machiavellianism|Machiavellianism| +E0204634|machiavellian|Machiavellian| +E0204655|malthusianism|Malthusianism| +E0204656|orthopaedia|orthopedia| +E0204661|ozokerite|ozocerite| +E0204664|Pelew|Palau| +E0204665|papillon|Papillon| +E0204682|Marathon|marathon| +E0204683|Marathon|marathon| +E0204684|Marathon|marathon| +E0204689|pate|pattee| +E0204689|patee|pattee| +E0204730|marxism|Marxism| +E0204767|phthallic|phthalic| +E0204775|plaise|plaice| +E0204803|punto|ponto| +E0204805|porgee|porgy| +E0204806|porphin|porphine| +E0204832|menorrhoea|menorrhea| +E0204846|meso-appendix|mesoappendix| +E0204888|methadon|methadone| +E0204914|pyronin|pyronine| +E0204917|Mirza|mirza| +E0204922|Muhammedanism|Mohammedanism| +E0204929|quinoxalin|quinoxaline| +E0204930|molasse|Molasse| +E0204942|radio-surgery|radiosurgery| +E0204942|radio surgery|radiosurgery| +E0204943|radio-surgical|radiosurgical| +E0204943|radio surgical|radiosurgical| +E0204944|radio-therapeutic|radiotherapeutic| +E0204944|radio therapeutic|radiotherapeutic| +E0204965|morelle|morel| +E0204981|mollie|molly| +E0204987|remobilisation|remobilization| +E0204992|remobilise|remobilize| +E0204994|reproducability|reproducibility| +E0204998|muntjak|muntjac| +E0204998|munjak|muntjac| +E0205007|retro-pubic|retropubic| +E0205021|rily|riley| +E0205022|rinkals|ringhals| +E0205029|Romansch|Romansh| +E0205029|Romanche|Romansh| +E0205029|Rumansch|Romansh| +E0205040|safrol|safrole| +E0205056|sweeny|swinney| +E0205056|sweeney|swinney| +E0205058|synaesthesia|synesthesia| +E0205060|synaesthetic|synesthetic| +E0205064|synthesiser|synthesizer| +E0205088|semi-coma|semicoma| +E0205104|Tadjik|Tajik| +E0205104|Tadzhik|Tajik| +E0205110|Tangiers|Tangier| +E0205111|Tangiers|Tangier| +E0205153|shing|sheng| +E0205153|cheng|sheng| +E0205161|Telegu|Telugu| +E0205161|Teloogoo|Telugu| +E0205166|skene|skean| +E0205166|skeen|skean| +E0205166|skhian|skean| +E0205170|skein|skain| +E0205200|sylvan|silvan| +E0205208|Navaho|Navajo| +E0205212|Sinhalese|Singhalese| +E0205212|Singalese|Singhalese| +E0205212|Cingalese|Singhalese| +E0205212|Cinghalese|Singhalese| +E0205213|Sinhalese|Singhalese| +E0205213|Singalese|Singhalese| +E0205213|Cingalese|Singhalese| +E0205213|Cinghalese|Singhalese| +E0205220|thiophen|thiophene| +E0205242|somaesthesia|somesthesia| +E0205254|titan|Titan| +E0205270|Treacher Collins' syndrome|Treacher Collins syndrome| +E0205270|Treacher-Collins syndrome|Treacher Collins syndrome| +E0205270|Treacher-Collins' syndrome|Treacher Collins syndrome| +E0205278|spermatorrhoea|spermatorrhea| +E0205280|triazin|triazine| +E0205302|tropeolin|tropaeolin| +E0205306|Tudor|tudor| +E0205312|turkmen|Turkmen| +E0205341|timpani|tympani| +E0205359|under-employment|underemployment| +E0205363|strongyl|strongyle| +E0205370|suburbanisation|suburbanization| +E0205371|sulphamic|sulfamic| +E0205372|sulphamic acid|sulfamic acid| +E0205373|sulphamide|sulfamide| +E0205374|sulphonium|sulfonium| +E0205375|sulphuric|sulfuric| +E0205376|sulphurous|sulfurous| +E0205387|souslik|suslik| +E0205404|unsocialised|unsocialized| +E0205411|urethrorrhoea|urethrorrhea| +E0205417|Utopia|utopia| +E0205418|Uzbeg|Uzbek| +E0205418|Uzbak|Uzbek| +E0205418|Usbek|Uzbek| +E0205418|Usbeg|Uzbek| +E0205422|Valentine|valentine| +E0205436|coniine|conine| +E0205461|wetability|wettability| +E0205462|wetable|wettable| +E0205475|wooly|woolly| +E0205476|wooly|woolly| +E0205515|cyanacetic|cyanoacetic| +E0205518|cyanmethemoglobin|cyanomethemoglobin| +E0205528|Jugoslav|Yugoslav| +E0205529|Jugoslav|Yugoslav| +E0205534|zygomatico-orbital|zygomaticoorbital| +E0205576|ethyleneimine|ethylenimine| +E0205591|acridane|acridan| +E0205592|dichlorhydrin|dichlorohydrin| +E0205596|acryloyl|acrylyl| +E0205604|aerogene|aerogen| +E0205612|dimerisation|dimerization| +E0205613|dimerise|dimerize| +E0205628|americana|Americana| +E0205656|anato|annatto| +E0205656|anatto|annatto| +E0205656|anatta|annatto| +E0205656|arnatta|annatto| +E0205656|arnatto|annatto| +E0205656|arnotta|annatto| +E0205656|arnotto|annatto| +E0205657|anato|annatto| +E0205657|anatto|annatto| +E0205657|anatta|annatto| +E0205657|arnatta|annatto| +E0205657|arnatto|annatto| +E0205657|arnotta|annatto| +E0205657|arnotto|annatto| +E0205671|dulcin|Dulcin| +E0205678|antimoniate|antimonate| +E0205689|aesculetin|esculetin| +E0205690|esdragol|estragole| +E0205704|asaron|asarone| +E0205705|ascaridol|ascaridole| +E0205715|augmentor|augmenter| +E0205741|basto|basta| +E0205748|benzohydrol|benzhydrol| +E0205758|gallocyanine|gallocyanin| +E0205777|glycollic|glycolic| +E0205800|bicolour|bicolor| +E0205806|blow-out|blowout| +E0205808|haematogen|hematogen| +E0205825|brahman|Brahman| +E0205825|Brahmin|Brahman| +E0205825|brahmin|Brahman| +E0205825|Brahma|Brahman| +E0205825|brahma|Brahman| +E0205826|Bramah|Brahma| +E0205826|brahma|Brahma| +E0205826|bramah|Brahma| +E0205827|heptyne|heptine| +E0205866|ichthyocoll|ichthyocol| +E0205924|Capri|capri| +E0205925|Capri|capri| +E0205967|Castor|castor| +E0205976|celestine|coelestine| +E0205991|jaggary|jaggery| +E0205991|jagghery|jaggery| +E0205994|jajoba|jojoba| +E0205997|kampferol|kaempferol| +E0206027|chlorhydrin|chlorohydrin| +E0206043|cuticularised|cuticularized| +E0206059|linalol|linalool| +E0206063|loadstar|lodestar| +E0206078|citroptene|citropten| +E0206098|marmit|marmite| +E0206099|master-mind|mastermind| +E0206114|metabisulfite|metabisulphite| +E0206155|molluskan|molluscan| +E0206159|monacetin|monoacetin| +E0206179|Stein Leventhal syndrome|Stein-Leventhal syndrome| +E0206197|muskone|muscone| +E0206214|Nimrod|nimrod| +E0206215|Nimrodian|nimrodian| +E0206225|sulphamate|sulfamate| +E0206228|non-medical|nonmedical| +E0206229|sulphanilic|sulfanilic| +E0206230|non-medicinal|nonmedicinal| +E0206231|non-paralytic|nonparalytic| +E0206238|sulphobenzoic|sulfobenzoic| +E0206239|sulphobenzoic acid|sulfobenzoic acid| +E0206240|non-venomous|nonvenomous| +E0206249|sulphinate|sulfinate| +E0206251|sulphinic|sulfinic| +E0206277|Tartaric|tartaric| +E0206305|oxyhaemocyanin|oxyhemocyanin| +E0206329|pentaquin|pentaquine| +E0206370|phenyl ethylene|phenylethylene| +E0206404|thianaphthene|thionaphthene| +E0206405|thionine|Thionine| +E0206422|co-operative learning|cooperative learning| +E0206465|Primus|primus| +E0206472|propyne|propine| +E0206489|protargal|Protargol| +E0206561|rubin|rubine| +E0206564|saffranine|safranin| +E0206564|safranine|safranin| +E0206601|eruginous|aeruginous| +E0206606|anti-pain|antipain| +E0206655|deoxyribonuclease Eco-RI|deoxyribonuclease EcoRI| +E0206655|deoxyribonuclease Eco RI|deoxyribonuclease EcoRI| +E0206657|icosanoid|eicosanoid| +E0206673|flunarizin|flunarizine| +E0206679|glucuronyl transferase|glucuronyltransferase| +E0206685|hexamethyl melamine|hexamethylmelamine| +E0206687|hoechst|HOECHST| +E0206727|metergoline|methergoline| +E0206733|metaclopramide|metoclopramide| +E0206743|non endemic|nonendemic| +E0206743|non-endemic|nonendemic| +E0206744|nonrandomised|nonrandomized| +E0206744|non-randomized|nonrandomized| +E0206744|non-randomised|nonrandomized| +E0206750|non-cleaved|noncleaved| +E0206754|non-lymphoblastic|nonlymphoblastic| +E0206755|non-traumatic|nontraumatic| +E0206795|radio-immunodetection|radioimmunodetection| +E0206795|radio-immuno-detection|radioimmunodetection| +E0206795|radioimmuno-detection|radioimmunodetection| +E0206795|radio immunodetection|radioimmunodetection| +E0206799|recanalisation|recanalization| +E0206819|Sevin|sevin| +E0206825|space flight|spaceflight| +E0206829|streptozotocine|streptozotocin| +E0206847|uteroglobine|uteroglobin| +E0206920|iodo-insulin|iodoinsulin| +E0206930|methyl carbamate|methylcarbamate| +E0206934|methyl phenylalanine|methylphenylalanine| +E0206948|non-cancer|noncancer| +E0206950|non-small|nonsmall| +E0206972|pre-surface|presurface| +E0206973|pre-surface|presurface| +E0206975|propyl-norapomorphine|propylnorapomorphine| +E0206977|radiosensitiser|radiosensitizer| +E0206977|radio-sensitizer|radiosensitizer| +E0206977|radio sensitizer|radiosensitizer| +E0206995|tetrasulphophthalocyanine|tetrasulfophthalocyanine| +E0207006|velours|velour| +E0207011|abscisic acid|abscissic acid| +E0207037|tricolour|tricolor| +E0207038|tricoloured|tricolored| +E0207074|glycerol tri-myristate|glycerol trimyristate| +E0207112|albe|alb| +E0207149|batteau|bateau| +E0207168|B.O.A.|BOA| +E0207174|Bora|Boro| +E0207179|bradypnea|bradypnoea| +E0207200|buchu|bucco| +E0207200|bucku|bucco| +E0207205|Ber|ber| +E0207215|beta resorcylic acid|beta-resorcylic acid| +E0207233|kanari|canari| +E0207241|Caroline|Carolean| +E0207245|cep|cepe| +E0207277|chipre|chypre| +E0207280|cirrhose|cirrose| +E0207283|coco|cocoa| +E0207284|coco|cocoa| +E0207286|colourant|colorant| +E0207290|cund|cond| +E0207307|co-star|costar| +E0207308|co-star|costar| +E0207315|courante|courant| +E0207321|cuish|cuisse| +E0207340|Dacota|Dakota| +E0207340|Dacotah|Dakota| +E0207361|dictaphone|Dictaphone| +E0207368|haemostasia|hemostasia| +E0207379|directrice|directress| +E0207395|Emden|Embden| +E0207435|phantasia|fantasia| +E0207435|fantasie|fantasia| +E0207446|flak|flack| +E0207453|FRA|fra| +E0207454|fuchsin|fuchsine| +E0207455|furore|furor| +E0207476|hun|Hun| +E0207488|Graafian|graafian| +E0207489|Graafian follicle|graafian follicle| +E0207493|grice|grece| +E0207494|griff|griffe| +E0207495|grise|gris| +E0207513|islot|ilot| +E0207518|indegen|indigene| +E0207532|remead|remede| +E0207546|revetment|revetement| +E0207563|ikon|icon| +E0207563|eikon|icon| +E0207567|JATO|jato| +E0207570|Java|java| +E0207588|rajah|raja| +E0207604|Qatar|Katar| +E0207606|cheloidal|keloidal| +E0207609|knob-like|knoblike| +E0207620|saree|sari| +E0207631|kurk|kirk| +E0207637|labourer|laborer| +E0207640|Zia|Sia| +E0207662|soia|soja| +E0207662|soya|soja| +E0207689|Laze|Laz| +E0207689|Lazi|Laz| +E0207717|tabu|taboo| +E0207721|tappa|tapa| +E0207724|tatu|tatou| +E0207727|tanned cell haemagglutination|tanned cell hemagglutination| +E0207731|trembler|temblor| +E0207731|tremblor|temblor| +E0207764|laevo|levo| +E0207770|tromp|trompe| +E0207774|timpan|tympan| +E0207784|tumour skin test|tumor skin test| +E0207785|tiro|tyro| +E0207796|ley|lea| +E0207798|ley|leu| +E0207800|Madiera|madeira| +E0207824|mask|masque| +E0207832|meningoencephalocoele|meningoencephalocele| +E0207832|meningo-encephalocele|meningoencephalocele| +E0207832|meningo-encephalocoele|meningoencephalocele| +E0207838|valour|valor| +E0207843|venene|venin| +E0207864|Wiskott Aldrich syndrome|Wiskcott-Aldrich syndrome| +E0207884|myrbane oil|mirbane oil| +E0207886|moffette|mofette| +E0207917|multi-lobed|multilobed| +E0207957|Myxobacterales|Myxobacteriales| +E0207963|Martius Yellow|Martius yellow| +E0207976|mhorr|mohr| +E0207977|disulfonate|disulphonate| +E0207993|muron|myron| +E0207999|Napa|napa| +E0208019|navette|navet| +E0208028|Nitrobacteraceae|Nitrobacteriaceae| +E0208035|non-protein|nonprotein| +E0208038|non-tropical|nontropical| +E0208058|niuean|Niuean| +E0208059|enanthylate|oenanthylate| +E0208063|oligidria|olighidria| +E0208064|oligochete|oligochaete| +E0208065|oligochete|oligochaete| +E0208072|Otoe|Oto| +E0208091|passee|passe| +E0208093|Pax|pax| +E0208101|HEXA|Hex A| +E0208106|cava|kava| +E0208117|lim.|lim| +E0208127|phosphor|phosphore| +E0208131|pic|pik| +E0208131|pike|pik| +E0208146|platine|Platine| +E0208154|poesy|poesie| +E0208156|politique|Politique| +E0208163|pomeis|pomme| +E0208164|poulp|poulpe| +E0208165|min.|min| +E0208165|MIN|min| +E0208172|premiere|premier| +E0208195|migg|mig| +E0208216|rescission|recision| +E0208226|Rect.|rect.| +E0208241|Tal.|tal| +E0208241|tal.|tal| +E0208277|wy|wye| +E0208293|re-adaptation|readaptation| +E0208294|re-animation|reanimation| +E0208297|re-conversion|reconversion| +E0208303|hyp.|Hyp| +E0208303|HYP|Hyp| +E0208304|hyp|HYP| +E0208309|insulin degrading activity|insulin-degrading activity| +E0208312|IE|I.E.| +E0208315|I&E|I & E| +E0208315|I and E|I & E| +E0208323|IMI|Imi| +E0208325|ino.|Ino| +E0208325|INO|Ino| +E0208335|KO|K/O| +E0208336|KO|K/O| +E0208341|lim.|lim| +E0208342|LIV|liv| +E0208344|lo.|lo| +E0208344|LO|lo| +E0208345|lo.|lo| +E0208345|LO|lo| +E0208346|lo.|lo| +E0208346|LO|lo| +E0208353|lin|lin.| +E0208354|lin|lin.| +E0208357|mi|mi.| +E0208358|mi|mi.| +E0208359|MI|M.I.| +E0208362|mesio-incisal|mesioincisal| +E0208371|mot|Mot| +E0208387|nat.|Nat| +E0208388|nat.|Nat| +E0208392|non-accidental|nonaccidental| +E0208397|neo|neo.| +E0208399|N.O.A.|NOA| +E0208405|OH|o.h.| +E0208405|oh|o.h.| +E0208406|om|o.m.| +E0208409|Oto|oto.| +E0208409|OTO|oto.| +E0208433|acute oedematous pancreatitis|acute edematous pancreatitis| +E0208436|pean|peen| +E0208437|pean|paean| +E0208438|alpha1 fetoprotein|alpha-1 fetoprotein| +E0208438|alpha-1 foetoprotein|alpha-1 fetoprotein| +E0208438|alpha1 foetoprotein|alpha-1 fetoprotein| +E0208452|acute generalised tuberculosis|acute generalized tuberculosis| +E0208453|pur.|pur| +E0208457|polyurethan|polyurethane| +E0208460|aspartylhydroxaminic acid|aspartyl-hydroxaminic acid| +E0208461|rayah|raya| +E0208467|antihaemophilic globulin A|antihemophilic globulin A| +E0208472|anti-muellerian hormone|anti-mullerian hormone| +E0208472|anti-Mullerian hormone|anti-mullerian hormone| +E0208472|anti-Muellerian hormone|anti-mullerian hormone| +E0208474|acridinylamine methanesulfon-m-anisidide|acridinylamine methanesulphon-m-anisidide| +E0208481|antipernicious anaemia|antipernicious anemia| +E0208498|jour.|jour| +E0208501|hun.|hun| +E0208518|cephalo-pelvic disproportion|cephalopelvic disproportion| +E0208518|cephalo pelvic disproportion|cephalopelvic disproportion| +E0208530|deoxycholate citrate agar|deoxycholate-citrate agar| +E0208531|LAR|l.a.r.| +E0208531|lar|l.a.r.| +E0208534|LAR|lar.| +E0208535|lar.|lar| +E0208576|lam|lam.| +E0208576|Lam|lam.| +E0208576|LAM|lam.| +E0208588|rontgen|roentgen| +E0208589|equivalent rontgen|equivalent roentgen| +E0208591|oesophageal rupture|esophageal rupture| +E0208592|oestradiol receptor|estradiol receptor| +E0208602|fructosediphosphate|fructose diphosphate| +E0208617|gut associated lymphoid tissue|gut-associated lymphoid tissue| +E0208644|glomerular-stimulating hormone|glomerular stimulating hormone| +E0208647|Addison's cheloid|Addison's keloid| +E0208663|halothane anaesthesia|halothane anesthesia| +E0208664|haemagglutinating antibody|hemagglutinating antibody| +E0208680|haemolytic anemia antigen|hemolytic anemia antigen| +E0208680|hemolytic anaemia antigen|hemolytic anemia antigen| +E0208680|haemolytic anaemia antigen|hemolytic anemia antigen| +E0208682|haemagglutinin inhibition|hemagglutinin inhibition| +E0208697|R.R.A. Coombs|R. R. A. Coombs| +E0208754|lymphadenopathy associated virus|lymphadenopathy-associated virus| +E0208758|leucotactic factor activity|leukotactic factor activity| +E0208768|lipid-mobilizing|lipid mobilizing| +E0208775|leucocyte specific activity|leukocyte specific activity| +E0208775|leukocyte-specific activity|leukocyte specific activity| +E0208775|leucocyte-specific activity|leukocyte specific activity| +E0208782|Alfred Duehrssen|Alfred Duhrssen| +E0208788|large vessel haematocrit|large vessel hematocrit| +E0208843|on-hand|on hand| +E0208851|Perthes' disease|Perthes disease| +E0208851|Perthes's disease|Perthes disease| +E0208852|radiation leucemia virus|radiation leukemia virus| +E0208852|radiation leukaemia virus|radiation leukemia virus| +E0208852|radiation leucaemia virus|radiation leukemia virus| +E0208862|simian acquired immune-deficiency syndrome|simian acquired immune deficiency syndrome| +E0208872|wide-awake|wide awake| +E0208901|Meckel's syndrome|Meckel syndrome| +E0208910|drachm|dram| +E0208920|Perthes test|Perthes' test| +E0208920|Perthes's test|Perthes' test| +E0208927|broncho-alveolar lavage|bronchoalveolar lavage| +E0208930|de Quervain|Quervain| +E0208937|augmentation mammaplasty|augmentation mammoplasty| +E0208948|beta-sitosterol|beta sitosterol| +E0208960|body odour|body odor| +E0208964|bovine papillomavirus|bovine papilloma virus| +E0208991|cerebello-pontine angle|cerebellopontine angle| +E0208999|cervical oesophagus|cervical esophagus| +E0209008|chorioid|choroid| +E0209009|chorioidal|choroidal| +E0209011|chronic leucemia|chronic leukemia| +E0209011|chronic leukaemia|chronic leukemia| +E0209011|chronic leucaemia|chronic leukemia| +E0209012|chronic lymphatic leucemia|chronic lymphatic leukemia| +E0209012|chronic lymphatic leukaemia|chronic lymphatic leukemia| +E0209012|chronic lymphatic leucaemia|chronic lymphatic leukemia| +E0209025|congenital pseudarthrosis|congenital pseudoarthrosis| +E0209049|Schroeder oral-nasal directional stylette|Schroeder oral/nasal directional stylette| +E0209049|Schroeder oral/nasal directional stylet|Schroeder oral/nasal directional stylette| +E0209049|Schroeder oral-nasal directional stylet|Schroeder oral/nasal directional stylette| +E0209049|Schroeder oral nasal directional stylette|Schroeder oral/nasal directional stylette| +E0209049|Schroeder oral nasal directional stylet|Schroeder oral/nasal directional stylette| +E0209050|Schroeder stylet|Schroeder stylette| +E0209069|distal phalange|distal phalanx| +E0209082|Recklinghausen's tumour|Recklinghausen's tumor| +E0209089|earlobe|ear lobe| +E0209095|ectopic foetus|ectopic fetus| +E0209110|endoscopic catheterisation|endoscopic catheterization| +E0209111|oesophageal diverticulum|esophageal diverticulum| +E0209113|oesophageal mucous membrane|esophageal mucous membrane| +E0209114|oestrogen binding protein|estrogen binding protein| +E0209132|R.D. Sweet|R. D. Sweet| +E0209140|foetal head|fetal head| +E0209141|foetal malnutrition|fetal malnutrition| +E0209143|foetal position|fetal position| +E0209144|foetal presentation|fetal presentation| +E0209152|Volkmann's chilitis|Volkmann's cheilitis| +E0209170|foster-child|foster child| +E0209176|Douglas's pouch|Douglas' pouch| +E0209176|Douglas pouch|Douglas' pouch| +E0209179|Douglas's abscess|Douglas' abscess| +E0209198|grey matter|gray matter| +E0209204|heavy-chain disease|heavy chain disease| +E0209207|haemagglutination assay|hemagglutination assay| +E0209214|left-to-right shunt|left to right shunt| +E0209218|haemoglobin C disease|hemoglobin C disease| +E0209219|haemoglobin H disease|hemoglobin H disease| +E0209236|history-taking|history taking| +E0209264|hypoplastic left-heart syndrome|hypoplastic left heart syndrome| +E0209283|infra-spinatus muscle|infraspinatus muscle| +E0209297|mast cell tumour|mast cell tumor| +E0209312|intervertebral disk|intervertebral disc| +E0209315|intracerebral haematoma|intracerebral hematoma| +E0209332|lachrymal punctum|lacrimal punctum| +E0209343|meticillin|methicillin| +E0209348|methylbromide|methyl bromide| +E0209417|traumatic haemorrhage|traumatic hemorrhage| +E0209436|typhoid-paratyphoid vaccine|typhoid paratyphoid vaccine| +E0209465|non-myelinated nerve fiber|non myelinated nerve fiber| +E0209465|non myelinated nerve fibre|non myelinated nerve fiber| +E0209465|non-myelinated nerve fibre|non myelinated nerve fiber| +E0209465|nonmyelinated nerve fiber|non myelinated nerve fiber| +E0209465|nonmyelinated nerve fibre|non myelinated nerve fiber| +E0209506|white-matter|white matter| +E0209573|lor|LOR| +E0209580|vif|VIF| +E0209585|sor|SOR| +E0209588|vpu|VPU| +E0209619|FTA-Abs|FTA-ABS| +E0209620|FTA-Abs test|FTA-ABS test| +E0209620|FTA ABS test|FTA-ABS test| +E0209620|FTA-abs test|FTA-ABS test| +E0209625|anterior grey column|anterior gray column| +E0209626|lateral grey column|lateral gray column| +E0209636|post-operative hemorrhage|postoperative hemorrhage| +E0209636|postoperative haemorrhage|postoperative hemorrhage| +E0209636|post-operative haemorrhage|postoperative hemorrhage| +E0209671|pseudo-rabies virus|pseudorabies virus| +E0209691|recto-sigmoid junction|rectosigmoid junction| +E0209721|ribcage|rib cage| +E0209733|sacro-iliac joint|sacroiliac joint| +E0209785|confluent, reticulate papillomatosis|confluent reticulate papillomatosis| +E0209797|sodium sulphate|sodium sulfate| +E0209806|soft-tissue|soft tissue| +E0209830|oesophageal manometry|esophageal manometry| +E0209831|oesophageal motility|esophageal motility| +E0209837|oestrogen receptor protein|estrogen receptor protein| +E0209843|electronmicroscope|electron microscope| +E0209848|foetal erythroblastosis|fetal erythroblastosis| +E0209849|foetal erythrocyte|fetal erythrocyte| +E0209861|haemagglutinating encephalomyelitis|hemagglutinating encephalomyelitis| +E0209869|haemagglutination inhibition antibody|hemagglutination inhibition antibody| +E0209870|haemagglutination inhibition assay|hemagglutination inhibition assay| +E0209871|haemagglutination inhibitory antibody|hemagglutination inhibitory antibody| +E0209880|individualised education program|individualized education program| +E0209880|individualized education programme|individualized education program| +E0209880|individualised education programme|individualized education program| +E0209895|streptococcus group A|streptococcus Group A| +E0209914|macrophage activating factor|macrophage-activating factor| +E0209962|suface active agent|surface-active agent| +E0209964|mouse ovarian tumour|mouse ovarian tumor| +E0209968|myelo-proliferative disease|myeloproliferative disease| +E0209992|non stress test|nonstress test| +E0209992|non-stress test|nonstress test| +E0210021|thoracic oesophagus|thoracic esophagus| +E0210029|ornithine carbamoyl transferase|ornithine carbamoyltransferase| +E0210045|Osborne Mendel rat|Osborne-Mendel rat| +E0210069|paraaminobenzoate|para-aminobenzoate| +E0210076|plasmogen-activator inhibitor|plasmogen activator inhibitor| +E0210090|para-hydroxymercuribenzoate|parahydroxymercuribenzoate| +E0210094|paroxysmal nocturnal haemoglobinuria|paroxysmal nocturnal hemoglobinuria| +E0210099|perceptual organisation|perceptual organization| +E0210100|pancreatic oncofoetal antigen|pancreatic oncofetal antigen| +E0210117|prolactin releasing factor|prolactin-releasing factor| +E0210118|pyrogen releasing factor|pyrogen-releasing factor| +E0210136|renin-angiotensin|renin angiotensin| +E0210136|reninangiotensin|renin angiotensin| +E0210155|ruptured disk|ruptured disc| +E0210220|somatisation disorder|somatization disorder| +E0210241|ASO titre|ASO titer| +E0210248|salt free|salt-free| +E0210249|sugar free|sugar-free| +E0210250|sclerosing leucoencephalopathy|sclerosing leukoencephalopathy| +E0210251|secondary leucemia|secondary leukemia| +E0210251|secondary leukaemia|secondary leukemia| +E0210251|secondary leucaemia|secondary leukemia| +E0210260|secondary pulmonary haemosiderosis|secondary pulmonary hemosiderosis| +E0210266|somatotropin releasing hormone|somatotropin-releasing hormone| +E0210267|speech sound discrimination|speech-sound discrimination| +E0210269|single radial haemolysdis|single radial hemolysis| +E0210285|thyroxine-binding globulin|thyroxin-binding globulin| +E0210298|tumour growth factor|tumor growth factor| +E0210300|T cell growth factor|T-cell growth factor| +E0210317|ventriculo-atrial|ventriculoatrial| +E0210324|video disc|video disk| +E0210324|video-disk|video disk| +E0210324|video-disc|video disk| +E0210372|alouatta|alouatte| +E0210380|lateral crico-arytenoid muscle|lateral cricoarytenoid muscle| +E0210390|cell mediated lympholysis|cell-mediated lympholysis| +E0210392|amuck|amok| +E0210401|acral-lentiginous melanoma|acral lentiginous melanoma| +E0210416|mobile caecum|mobile cecum| +E0210454|posterior crico-arytenoid muscle|posterior cricoarytenoid muscle| +E0210455|acoenaesthesia|acenesthesia| +E0210480|coeliac lymph node|celiac lymph node| +E0210517|supra-orbital notch|supraorbital notch| +E0210529|Acinetobacter lwoffii|Acinetobacter lwoffi| +E0210549|acromio-clavicular ligament|acromioclavicular ligament| +E0210562|Actinobacillus lignieresi|Actinobacillus lignieresii| +E0210576|acute splenic tumour|acute splenic tumor| +E0210579|adenomatoid tumour|adenomatoid tumor| +E0210581|AMP|amp.| +E0210584|adiadokokinesia|adiadochokinesia| +E0210584|adiadochokinesis|adiadochokinesia| +E0210584|adiadokokinesis|adiadochokinesia| +E0210593|aerocoele|aerocele| +E0210629|Aicardi syndrome|Aicardi's syndrome| +E0210650|aliquorrhoea|aliquorrhea| +E0210673|allergic contact dermitis|allergic contact dermatitis| +E0210698|Alpers's disease|Alpers' disease| +E0210698|Alpers disease|Alpers' disease| +E0210706|Bernard J. Alpers|Bernard Jacob Alpers| +E0210706|Bernard Alpers|Bernard Jacob Alpers| +E0210720|Alstrom syndrome|Alstrom's syndrome| +E0210735|del Castillo|Del Castillo| +E0210738|E. B. Del Castillo|E. B. del Castillo| +E0210745|aluminium sulphate|aluminum sulfate| +E0210771|intra-articular ligament|intraarticular ligament| +E0210815|ilio-femoral ligament|iliofemoral ligament| +E0210818|below knee amputation|below-knee amputation| +E0210840|alpha-amylase|alpha amylase| +E0210864|atherosclerotic aneurism|atherosclerotic aneurysm| +E0210868|cylindroid aneurism|cylindroid aneurysm| +E0210872|aneurismal bone cyst|aneurysmal bone cyst| +E0210874|aneurismal hematoma|aneurysmal hematoma| +E0210874|aneurismal haematoma|aneurysmal hematoma| +E0210874|aneurysmal haematoma|aneurysmal hematoma| +E0210919|epiphysial line|epiphyseal line| +E0210989|cell-bound antibody|cell bound antibody| +E0210992|cross reacting antibody|cross-reacting antibody| +E0210996|antigen-combining site|antigen combining site| +E0211010|antihaemophilic factor A|antihemophilic factor A| +E0211012|antihaemophilic factor C|antihemophilic factor C| +E0211025|Purkinje fibre|Purkinje fiber| +E0211054|supra-orbital artery|supraorbital artery| +E0211084|oesopohageal artery|esophageal artery| +E0211093|right gastro-epiploic artery|right gastroepiploic artery| +E0211094|left gastro-epiploic artery|left gastroepiploic artery| +E0211129|Argentinian haemorrhagic fever|Argentinian hemorrhagic fever| +E0211225|autoeczematisation|autoeczematization| +E0211226|autoerythrocyte sensitisation syndrome|autoerythrocyte sensitization syndrome| +E0211252|Bacterium acetinomycetum comitans|Bacterium actinomycetem comitans| +E0211270|baraesthesia|baresthesia| +E0211274|supra-orbital vein|supraorbital vein| +E0211316|lachrymal vein|lacrimal vein| +E0211344|oesophageal vein|esophageal vein| +E0211351|barium sulphide|barium sulfide| +E0211382|left gastro-epiploic vein|left gastroepiploic vein| +E0211412|inferior haemorrhoidal vein|inferior hemorrhoidal vein| +E0211413|middle haemorrhoidal vein|middle hemorrhoidal vein| +E0211414|superior haemorrhoidal vein|superior hemorrhoidal vein| +E0211418|circolectric bed|CircOlectric bed| +E0211418|Circ-O-Lectric bed|CircOlectric bed| +E0211478|bird headed dwarf|bird-headed dwarf| +E0211486|blackfly|black fly| +E0211499|blood group antigen|blood-group antigen| +E0211510|Bolivian haemorrhagic fever|Bolivian hemorrhagic fever| +E0211517|bony callous|bony callus| +E0211525|oesophageal impression|esophageal impression| +E0211538|bot-fly|bot fly| +E0211538|botfly|bot fly| +E0211548|brewers' yeast|brewer's yeast| +E0211548|brewers yeast|brewer's yeast| +E0211563|oesophageal gland|esophageal gland| +E0211564|broncho-esophageal muscle|bronchoesophageal muscle| +E0211564|broncho-oesophageal muscle|bronchoesophageal muscle| +E0211564|bronchooesophageal muscle|bronchoesophageal muscle| +E0211565|pleuro-esophageal muscle|pleuroesophageal muscle| +E0211565|pleuro-oesophageal muscle|pleuroesophageal muscle| +E0211565|pleurooesophageal muscle|pleuroesophageal muscle| +E0211580|Brown Sequard syndrome|Brown-Sequard syndrome| +E0211580|Brown Sequard's syndrome|Brown-Sequard syndrome| +E0211586|Bruns's syndrome|Bruns' syndrome| +E0211586|Bruns syndrome|Bruns' syndrome| +E0211599|haemorrhoidal zone|hemorrhoidal zone| +E0211605|bull|bull.| +E0211605|Bull.|bull.| +E0211606|bull|bull.| +E0211606|Bull.|bull.| +E0211633|cafe-au-lait spot|cafe au lait spot| +E0211641|calcosphaerite|calcospherite| +E0211643|Campylobacter faecalis|Campylobacter fecalis| +E0211670|capillary haemangioma|capillary hemangioma| +E0211697|car-sickness|car sickness| +E0211697|carsickness|car sickness| +E0211700|carboxymethyl cellulose sodium|carboxymethylcellulose sodium| +E0211726|motor end-plate|motor end plate| +E0211726|motor endplate|motor end plate| +E0211729|carnosinaemia|carnosinemia| +E0211730|Carolis disease|Caroli's disease| +E0211735|carotodynia|carotidynia| +E0211738|carphology|carphologia| +E0211739|Golgi Mazzoni corpuscle|Golgi-Mazzoni corpuscle| +E0211751|Pacchionian granulation|pacchionian granulation| +E0211762|cat-eye syndrome|cat eye syndrome| +E0211764|cat-scratch fever|cat scratch fever| +E0211773|parieto-occipital fissure|parietooccipital fissure| +E0211792|piriform area|pyriform area| +E0211798|mamillary body|mammillary body| +E0211804|palaeocerebellum|paleocerebellum| +E0211810|olivocerebellar fibre|olivocerebellar fiber| +E0211810|olivo-cerebellar fiber|olivocerebellar fiber| +E0211810|olivo-cerebellar fibre|olivocerebellar fiber| +E0211818|lachrymal nerve|lacrimal nerve| +E0211835|auriculo-temporal nerve|auriculotemporal nerve| +E0211852|intercosto-brachial nerve|intercostobrachial nerve| +E0211855|ilio-inguinal nerve|ilioinguinal nerve| +E0211859|kelosomus|celosomus| +E0211866|haemorrhoidal nerve|hemorrhoidal nerve| +E0211924|zonular fibre|zonular fiber| +E0211931|lachrymal caruncle|lacrimal caruncle| +E0211933|lachrymal fold|lacrimal fold| +E0211948|cerebro-hepato-renal syndrome|cerebrohepatorenal syndrome| +E0211948|cerebro-hepatorenal syndrome|cerebrohepatorenal syndrome| +E0211949|extraperitoneal caesarean section|extraperitoneal cesarean section| +E0211949|extraperitoneal cesarian section|extraperitoneal cesarean section| +E0211949|extraperitoneal caesarian section|extraperitoneal cesarean section| +E0211960|chilitis glandularis|cheilitis glandularis| +E0211961|cheilo-gnatho-palato-schisis|cheilognathopalatoschisis| +E0211961|cheilo-gnatho-palatoschisis|cheilognathopalatoschisis| +E0211964|cheilo-gnatho-uranoschisis|cheilognathouranoschisis| +E0211964|cheilo-gnathouranoschisis|cheilognathouranoschisis| +E0211966|chilosis|cheilosis| +E0211996|chief-cell adenoma|chief cell adenoma| +E0212008|gynaecoid pelvis|gynecoid pelvis| +E0212017|chloriodised oil|chloriodized oil| +E0212065|selenium sulphide|selenium sulfide| +E0212083|hypouricaemia|hypouricemia| +E0212086|hyperproteinaemia|hyperproteinemia| +E0212087|urobilinogenaemia|urobilinogenemia| +E0212091|wristdrop|wrist drop| +E0212099|Christ-Siemens Touraine syndrome|Christ-Siemens-Touraine syndrome| +E0212101|anal eroticism|anal erotism| +E0212103|Hermann W. Siemens|Hermann Werner Siemens| +E0212103|Hermann Siemens|Hermann Werner Siemens| +E0212112|chromidrosis|chromhidrosis| +E0212134|Clostridium chauvaei|Clostridium chauvoei| +E0212144|Cyclops|cyclops| +E0212156|irideraemia|irideremia| +E0212179|Congo-Crimean haemorrhagic fever|Congo-Crimean hemorrhagic fever| +E0212228|double outlet right ventricle|double-outlet right ventricle| +E0212236|Crimean-Congo haemorrhagic fever|Crimean-Congo hemorrhagic fever| +E0212249|Curtius syndrome|Curtius' syndrome| +E0212249|Curtius's syndrome|Curtius' syndrome| +E0212253|claw hand|clawhand| +E0212257|claw foot|clawfoot| +E0212270|normal pressure hydrocephalus|normal-pressure hydrocephalus| +E0212284|Dejerine Roussy syndrome|Dejerine-Roussy syndrome| +E0212287|haemorrhagic ascites|hemorrhagic ascites| +E0212295|superficial punctate ceratitis|superficial punctate keratitis| +E0212330|adenomatous goitre|adenomatous goiter| +E0212340|benign haemangioendothelioma|benign hemangioendothelioma| +E0212344|binasal hemianopsia|binasal hemianopia| +E0212346|bitemporal hemianopsia|bitemporal hemianopia| +E0212353|active hyperaemia|active hyperemia| +E0212362|anaemic infarct|anemic infarct| +E0212390|tropical phagedaenic ulcer|tropical phagedenic ulcer| +E0212397|phagedaenic|phagedenic| +E0212398|Swiss cheese hyperplasia|Swiss-cheese hyperplasia| +E0212407|Q-fever|Q fever| +E0212411|dengue haemorrhagic fever|dengue hemorrhagic fever| +E0212414|jaagsiekte|jaagziekte| +E0212414|jagziekte|jaagziekte| +E0212423|pharyngo-conjunctival fever|pharyngoconjunctival fever| +E0212423|pharyngo conjunctival fever|pharyngoconjunctival fever| +E0212429|multifocal progressive leucoencephalopathy|multifocal progressive leukoencephalopathy| +E0212431|oesophagojejunoplasty|esophagojejunoplasty| +E0212434|haemorrhagic smallpox|hemorrhagic smallpox| +E0212441|ventriculo-peritoneal shunt|ventriculoperitoneal shunt| +E0212452|cheloidal blastomycosis|keloidal blastomycosis| +E0212474|milkers' node|milker's node| +E0212480|visceral leishmaniosis|visceral leishmaniasis| +E0212491|globoid leucodystrophy|globoid leukodystrophy| +E0212502|hypercalcaemia syndrome|hypercalcemia syndrome| +E0212504|histinaemia|histidinemia| +E0212504|histidinaemia|histidinemia| +E0212505|methylmalonicaciduria|methylmalonic aciduria| +E0212506|Lesch Nyhan syndrome|Lesch-Nyhan syndrome| +E0212512|Launois's syndrome|Launois' syndrome| +E0212512|Launois syndrome|Launois' syndrome| +E0212520|Sheehans Syndrome|Sheehan's syndrome| +E0212522|Dubin Johnson syndrome|Dubin-Johnson syndrome| +E0212523|ovarian remnant syndrome|ovarian-remnant syndrome| +E0212527|Gianotti Crosti syndrome|Gianotti-Crosti syndrome| +E0212530|tropical anhidrotic aesthenia|tropical anhidrotic asthenia| +E0212544|San Filippo's syndrome|Sanfilippo's syndrome| +E0212544|Sanfilippo syndrome|Sanfilippo's syndrome| +E0212544|San Filippo syndrome|Sanfilippo's syndrome| +E0212546|generalised morphea|generalized morphea| +E0212552|Job syndrome|Job's syndrome| +E0212554|periodic neutropaenia|periodic neutropenia| +E0212555|Kostmann syndrome|Kostmann's syndrome| +E0212556|parahaemophilia|parahemophilia| +E0212557|haemophilia B|hemophilia B| +E0212558|Kasabach Merritt syndrome|Kasabach-Merritt syndrome| +E0212565|foetal face syndrome|fetal face syndrome| +E0212584|neonatal tyrosinaemia|neonatal tyrosinemia| +E0212588|cri-du-chat syndrome|cri du chat syndrome| +E0212595|hyperprolinaemia|hyperprolinemia| +E0212598|hydroxyprolinaemia|hydroxyprolinemia| +E0212599|short bowel syndrome|short-bowel syndrome| +E0212600|hyperlysinaemia|hyperlysinemia| +E0212605|stiff heart syndrome|"stiff heart" syndrome| +E0212607|citrullinaemia|citrullinemia| +E0212608|glutathionaemia|glutathionemia| +E0212624|hyper-beta-alaninaemia|hyper-beta-alaninemia| +E0212627|hypervalinaemia|hypervalinemia| +E0212629|subacute myelo-optico-neuropathy|subacute myelo-opticoneuropathy| +E0212629|subacute myeloopticoneuropathy|subacute myelo-opticoneuropathy| +E0212630|Frey syndrome|Frey's syndrome| +E0212634|methylmalic acidaemia|methylmalonic acidemia| +E0212655|locked-in syndrome|"locked-in" syndrome| +E0212657|galactorrhoea-amenorrhoea syndrome|galactorrhea-amenorrhea syndrome| +E0212662|Kluver Bucy syndrome|Kluver-Bucy syndrome| +E0212666|diffuse toxic goitre|diffuse toxic goiter| +E0212677|pia arachnoid|pia-arachnoid| +E0212695|Meigs's syndrome|Meigs' syndrome| +E0212695|Meigs syndrome|Meigs' syndrome| +E0212696|testicular feminisation syndrome|testicular feminization syndrome| +E0212740|Morgagni Stewart Morel syndrome|Morgagni-Stewart-Morel syndrome| +E0212761|posttraumatic osteoporosis|post-traumatic osteoporosis| +E0212815|alpha thalassemia|alpha-thalassemia| +E0212815|alpha-thalassaemia|alpha-thalassemia| +E0212815|alpha thalassaemia|alpha-thalassemia| +E0212832|delta thalassemia|delta-thalassemia| +E0212832|delta-thalassaemia|delta-thalassemia| +E0212832|delta thalassaemia|delta-thalassemia| +E0212833|thalassanaemia major|thalassanemia major| +E0212834|thalassanaemia minor|thalassanemia minor| +E0212837|alpha thalassanemia|alpha-thalassanemia| +E0212837|alpha-thalassanaemia|alpha-thalassanemia| +E0212837|alpha thalassanaemia|alpha-thalassanemia| +E0212838|beta thalassanemia|beta-thalassanemia| +E0212838|beta-thalassanaemia|beta-thalassanemia| +E0212838|beta thalassanaemia|beta-thalassanemia| +E0212838|betathalassemia|beta-thalassanemia| +E0212838|betathalassaemia|beta-thalassanemia| +E0212840|delta thalassanemia|delta-thalassanemia| +E0212840|delta-thalassanaemia|delta-thalassanemia| +E0212840|delta thalassanaemia|delta-thalassanemia| +E0212843|delta beta thalassemia|delta beta-thalassemia| +E0212843|delta beta-thalassaemia|delta beta-thalassemia| +E0212843|delta beta thalassaemia|delta beta-thalassemia| +E0212843|delta-beta thalassemia|delta beta-thalassemia| +E0212843|delta-beta thalassaemia|delta beta-thalassemia| +E0212845|delta beta thalassanemia|delta beta-thalassanemia| +E0212845|delta beta-thalassanaemia|delta beta-thalassanemia| +E0212845|delta beta thalassanaemia|delta beta-thalassanemia| +E0212854|sclero-corneal junction|sclerocorneal junction| +E0212859|meridional fibre|meridional fiber| +E0212864|paroxysmal cold haemoglobinuria|paroxysmal cold hemoglobinuria| +E0212866|march haemoglobinuria|march hemoglobinuria| +E0212868|haemolytic-uraemic syndrome|hemolytic-uremic syndrome| +E0212868|hemolytic uremic syndrome|hemolytic-uremic syndrome| +E0212868|haemolytic uraemic syndrome|hemolytic-uremic syndrome| +E0212874|lazy leucocyte syndrome|lazy leukocyte syndrome| +E0212879|cyclic neutropaenia|cyclic neutropenia| +E0212881|familial benign chronic neutropaenia|familial benign chronic neutropenia| +E0212884|chronic hypoplastic neutropaenia|chronic hypoplastic neutropenia| +E0212888|hyperheparinaemia|hyperheparinemia| +E0212890|hyperheparinaemic|hyperheparinemic| +E0212900|haemangioma-thrombocytopenia syndrome|hemangioma-thrombocytopenia syndrome| +E0212901|X-linked infantile agammaglobulinaemia|X-linked infantile agammaglobulinemia| +E0212902|transient hypogammaglobulinaemia|transient hypogammaglobulinemia| +E0212908|hereditary angioneurotic oedema|hereditary angioneurotic edema| +E0212908|hereditary angio-neurotic edema|hereditary angioneurotic edema| +E0212908|hereditary angio-neurotic oedema|hereditary angioneurotic edema| +E0212909|haemolytic disease|hemolytic disease| +E0212912|neonatal neutropaenia|neonatal neutropenia| +E0212916|cryofibrinogenaemia|cryofibrinogenemia| +E0212918|generalised anaphylaxis|generalized anaphylaxis| +E0212932|Seckel syndrome|Seckel's syndrome| +E0212951|Sjogren Larsson syndrome|Sjogren-Larsson syndrome| +E0212960|prune belly syndrome|prune-belly syndrome| +E0212963|heterophilic leucocyte|heterophilic leukocyte| +E0212965|megacaryoblast|megakaryoblast| +E0212971|John M. Opitz|John Marius Opitz| +E0212971|John Opitz|John Marius Opitz| +E0212972|ectrodactyly ectodermal dysplasia clefting syndrome|ectrodactyly-ectodermal dysplasia-clefting syndrome| +E0212973|hypoglossia hypodactyly syndrome|hypoglossia-hypodactyly syndrome| +E0212974|haemolymph node|hemolymph node| +E0212997|Ellis-Van Creveld syndrome|Ellis-van Creveld syndrome| +E0212997|Ellis van Creveld syndrome|Ellis-van Creveld syndrome| +E0212997|Ellis Van Creveld syndrome|Ellis-van Creveld syndrome| +E0213000|Simon Van Creveld|Simon van Creveld| +E0213001|Van Creveld|van Creveld| +E0213010|foetal hydantoin syndrome|fetal hydantoin syndrome| +E0213013|Klippel Feil syndrome|Klippel-Feil syndrome| +E0213015|Laurence Moon Biedl syndrome|Laurence-Moon-Biedl syndrome| +E0213021|Williams' syndrome|Williams syndrome| +E0213025|retrocaecal lymph node|retrocecal lymph node| +E0213025|retro-cecal lymph node|retrocecal lymph node| +E0213025|retro-caecal lymph node|retrocecal lymph node| +E0213032|neuro-cutaneous syndrome|neurocutaneous syndrome| +E0213033|McCune Albright syndrome|McCune-Albright syndrome| +E0213043|Klinefelter syndrome|Klinefelter's syndrome| +E0213060|costo-phrenic angle|costophrenic angle| +E0213066|duodeno-jejunal fold|duodenojejunal fold| +E0213075|lieno-renal ligament|lienorenal ligament| +E0213106|post-cholecystectomy syndrome|postcholecystectomy syndrome| +E0213125|Langerhans's granule|Langerhans' granule| +E0213149|proctodaeum|proctodeum| +E0213173|Goodpasture syndrome|Goodpasture's syndrome| +E0213173|Goodpastures syndrome|Goodpasture's syndrome| +E0213177|right sided heart failure|right-sided heart failure| +E0213177|right-sided heart-failure|right-sided heart failure| +E0213179|left sided heart failure|left-sided heart failure| +E0213179|left-sided heart-failure|left-sided heart failure| +E0213181|Pel Ebstein fever|Pel-Ebstein fever| +E0213185|high-output heart failure|high output heart failure| +E0213185|high-output heart-failure|high output heart failure| +E0213185|high output heart-failure|high output heart failure| +E0213203|hand shoulder syndrome|hand-shoulder syndrome| +E0213210|post-myocardial infarction syndrome|postmyocardial infarction syndrome| +E0213214|Adson's manoeuvre|Adson's maneuver| +E0213227|Hamman Rich syndrome|Hamman-Rich syndrome| +E0213259|immotile cilia syndrome|immotile-cilia syndrome| +E0213261|Swyer James syndrome|Swyer-James syndrome| +E0213285|Allis's sign|Allis' sign| +E0213298|Thomas's sign|Thomas' sign| +E0213312|Homans's sign|Homans' sign| +E0213314|Nothnagel syndrome|Nothnagel's syndrome| +E0213317|Parinaud syndrome|Parinaud's syndrome| +E0213333|Holmes Adie syndrome|Holmes-Adie syndrome| +E0213342|rubrospinal-cerebellar peduncle syndrome|rubrospinal cerebellar peduncle syndrome| +E0213360|tabo paresis|taboparesis| +E0213364|initial apnoea|initial apnea| +E0213365|sleep apnoea syndrome|sleep apnea syndrome| +E0213366|late apnoea|late apnea| +E0213369|deglutition apnoea|deglutition apnea| +E0213370|Kearns-Sayer syndrome|Kearns-Sayre syndrome| +E0213371|traumatic apnoea|traumatic apnea| +E0213375|normovolaemia|normovolemia| +E0213389|battered child syndrome|battered-child syndrome| +E0213399|low tension glaucoma|low-tension glaucoma| +E0213404|Van Der Hoeve's syndrome|van der Hoeve's syndrome| +E0213404|Van der Hoeve's syndrome|van der Hoeve's syndrome| +E0213406|gram negative bacterium|gram-negative bacterium| +E0213409|water hammer pulse|water-hammer pulse| +E0213418|right to left shunt|right-to-left shunt| +E0213443|dyssebacia|dyssebacea| +E0213463|distoclusion|disto-occlusion| +E0213466|mesioclusion|mesio-occlusion| +E0213473|hypergastrinaemia|hypergastrinemia| +E0213474|Hemophilus suis|Haemophilus suis| +E0213476|Hemophilus haemolyticus|Haemophilus haemolyticus| +E0213478|Hemophilus parainfluenzae|Haemophilus parainfluenzae| +E0213485|over-hydration|overhydration| +E0213485|over hydration|overhydration| +E0213486|Hemophilus parasuis|Haemophilus parasuis| +E0213487|Hemophilus aphrophilus|Haemophilus aphrophilus| +E0213489|Hemophilus aegyptius|Haemophilus aegyptius| +E0213490|Hemophilus vaginalis|Haemophilus vaginalis| +E0213491|Hemophilus paraphrophilus|Haemophilus paraphrophilus| +E0213491|Haemophilus parophrophilus|Haemophilus paraphrophilus| +E0213491|Hemophilus parophrophilus|Haemophilus paraphrophilus| +E0213495|hydraemia|hydremia| +E0213510|beta 2 microglobulin|beta2-microglobulin| +E0213510|beta-2 microglobulin|beta2-microglobulin| +E0213510|beta-2-microglobulin|beta2-microglobulin| +E0213515|beta lipoprotein|beta-lipoprotein| +E0213515|betalipoprotein|beta-lipoprotein| +E0213538|beta keto reductase|beta-keto-reductase| +E0213568|Nocardia otitidiscaviarum|Nocardia otitidis-caviarum| +E0213568|Nocardia otitidis caviarum|Nocardia otitidis-caviarum| +E0213578|isovaleryl CoA dehydrogenase|isovaleryl-CoA dehydrogenase| +E0213604|sulphite oxidase|sulfite oxidase| +E0213608|Pseudomonas maltiphilia|Pseudomonas maltophilia| +E0213632|dopamine beta-mono-oxygenase|dopamine beta-monooxygenase| +E0213632|dopamine-beta-monooxygenase|dopamine beta-monooxygenase| +E0213632|dopamine-beta-mono-oxygenase|dopamine beta-monooxygenase| +E0213632|dopamine beta monooxygenase|dopamine beta-monooxygenase| +E0213632|dopamine beta mono-oxygenase|dopamine beta-monooxygenase| +E0213633|dopamine beta hydroxylase|dopamine beta-hydroxylase| +E0213639|ribonucleoside-diphosphate reductase|ribonucleoside diphosphate reductase| +E0213646|lecithin cholesterol acyltransferase|lecithin-cholesterol acyltransferase| +E0213649|gammaglutamyl transferase|gamma-glutamyltransferase| +E0213649|gamma-glutamyl transferase|gamma-glutamyltransferase| +E0213649|gamma glutamyl transferase|gamma-glutamyltransferase| +E0213649|gamma glutamyltransferase|gamma-glutamyltransferase| +E0213651|purine-nucleoside phosphorylase|purine nucleoside phosphorylase| +E0213654|thiamine pyridinylase|thiamin pyridinylase| +E0213667|RNA directed DNA polymerase|RNA-directed DNA polymerase| +E0213676|DNA directed DNA polymerase|DNA-directed DNA polymerase| +E0213687|UDP glucose pyrophosphorylase|UDPglucose pyrophosphorylase| +E0213701|monkeypoxvirus|monkeypox virus| +E0213704|non-A non-B hepatitis virus|non-A, non-B hepatitis virus| +E0213704|non A, non B hepatitis virus|non-A, non-B hepatitis virus| +E0213711|RNA directed RNA polymerase|RNA-directed RNA polymerase| +E0213728|aliesterase|ali-esterase| +E0213741|steryl sulphatase|steryl sulfatase| +E0213741|sterylsulfatase|steryl sulfatase| +E0213741|steryl-sulfatase|steryl sulfatase| +E0213741|steryl-sulphatase|steryl sulfatase| +E0213741|sterylsulphatase|steryl sulfatase| +E0213742|chondroitinsulphatase|chondroitinsulfatase| +E0213743|cerebroside sulphatase|cerebroside sulfatase| +E0213754|alpha glucosidase|alpha-glucosidase| +E0213758|glucosyl ceramidase|glucosylceramidase| +E0213779|glycine rich beta glycoprotein|glycine-rich beta glycoprotein| +E0213779|glycine-rich beta-glycoprotein|glycine-rich beta glycoprotein| +E0213779|glycine rich beta-glycoprotein|glycine-rich beta glycoprotein| +E0213797|fumaryl acetoacetase|fumarylacetoacetase| +E0213804|hydroxymethylglutaryl CoA lyase|hydroxymethylglutaryl-CoA lyase| +E0213804|hydroxymethylglutaryl-coA lyase|hydroxymethylglutaryl-CoA lyase| +E0213804|hydroxymethylglutaryl coA lyase|hydroxymethylglutaryl-CoA lyase| +E0213822|methylmalonyl CoA racemase|methylmalonyl-CoA racemase| +E0213835|methylmalonyl CoA mutase|methylmalonyl-CoA mutase| +E0213855|physiologic amenorrhoea|physiologic amenorrhea| +E0213856|cryptomenorrhoea|cryptomenorrhea| +E0213858|primary dysmenorrhoea|primary dysmenorrhea| +E0213859|secondary dysmenorrhoea|secondary dysmenorrhea| +E0213860|mechanical dysmenorrhoea|mechanical dysmenorrhea| +E0213861|obstructive dysmenorrhoea|obstructive dysmenorrhea| +E0213864|xenomaenia|xenomenia| +E0213873|induced labour|induced labor| +E0213874|missed labour|missed labor| +E0213878|Braxton Hicks's sign|Braxton Hicks' sign| +E0213879|Braxton-Hicks contraction|Braxton Hicks contraction| +E0213879|Braxton Hicks' contraction|Braxton Hicks contraction| +E0213879|Braxton-Hicks' contraction|Braxton Hicks contraction| +E0213885|foetal souffle|fetal souffle| +E0213887|hydrorrhoea gravidarum|hydrorrhea gravidarum| +E0213910|palikinesia|palicinesia| +E0213927|systematised delusion|systematized delusion| +E0213939|hysterical anaesthesia|hysterical anesthesia| +E0213952|synaesthesia algica|synesthesia algica| +E0213978|knee-jerk reflex|knee jerk reflex| +E0213980|jaw-jerk reflex|jaw jerk reflex| +E0213991|dyserethesia|dyserethism| +E0213992|tactile anaesthesia|tactile anesthesia| +E0213993|doll's-eye reflex|doll's eye reflex| +E0213994|thermal anaesthesia|thermal anesthesia| +E0213995|akinaesthesia|akinesthesia| +E0213996|gargalaesthesia|gargalesthesia| +E0213997|gargalanaesthesia|gargalanesthesia| +E0214020|stimulus generalisation|stimulus generalization| +E0214022|left-handedness|left handedness| +E0214022|lefthandedness|left handedness| +E0214033|doll's-eye sign|doll's eye sign| +E0214034|non-rapid-eye-momement sleep|non-rapid eye movement sleep| +E0214034|nonrapid eye movement sleep|non-rapid eye movement sleep| +E0214037|slow-wave sleep|slow wave sleep| +E0214038|synchronised sleep|synchronized sleep| +E0214041|rapid-eye-movement sleep|rapid eye movement sleep| +E0214044|desynchronised sleep|desynchronized sleep| +E0214046|fast-wave sleep|fast wave sleep| +E0214049|sleep talking|sleeptalking| +E0214049|sleep-talking|sleeptalking| +E0214054|aphemaesthesia|aphemesthesia| +E0214066|fingeragnosia|finger agnosia| +E0214068|body image agnosia|body-image agnosia| +E0214078|limb kinetic apraxia|limb-kinetic apraxia| +E0214097|uraemic convulsion|uremic convulsion| +E0214100|hypoliquorrhoea|hypoliquorrhea| +E0214102|follicle-stimulating hormone-releasing factor|follicle stimulating hormone releasing factor| +E0214102|follicle-stimulating hormone releasing factor|follicle stimulating hormone releasing factor| +E0214103|LHRF|LH-RF| +E0214105|thyrotrophin releasing factor|thyrotropin releasing factor| +E0214105|thyrotropin-releasing factor|thyrotropin releasing factor| +E0214105|thyrotrophin-releasing factor|thyrotropin releasing factor| +E0214106|gonadotropin-releasing factor|gonadotropin releasing factor| +E0214107|prolactin-inhibiting factor|prolactin inhibiting factor| +E0214112|human menopausal gonadotrophin|human menopausal gonadotropin| +E0214120|vitamin B 1|vitamin B1| +E0214120|vitamin B-1|vitamin B1| +E0214132|localised Shwartzman reaction|localized Shwartzman reaction| +E0214133|generalised Shwartzman reaction|generalized Shwartzman reaction| +E0214143|antigen binding site|antigen-binding site| +E0214149|T-antigen|T antigen| +E0214168|anti-mitochondrial antibody|antimitochondrial antibody| +E0214170|copro-antibody|coproantibody| +E0214180|Entameba coli|Entamoeba coli| +E0214181|Entameba gingivalis|Entamoeba gingivalis| +E0214197|beta-lysin|beta lysin| +E0214198|skin-reactive factor|skin reactive factor| +E0214200|osteoclast-activating factor|osteoclast activating factor| +E0214208|migration-inhibiting factor|migration inhibiting factor| +E0214210|interferon beta|interferon-beta| +E0214213|lymphocyte-activating factor|lymphocyte activating factor| +E0214228|hydrazine sensitive factor|hydrazine-sensitive factor| +E0214230|tumor angiogenesis factor|tumor-angiogenesis factor| +E0214230|tumour-angiogenesis factor|tumor-angiogenesis factor| +E0214230|tumour angiogenesis factor|tumor-angiogenesis factor| +E0214243|Tenia saginata|Taenia saginata| +E0214244|Tenia confusa|Taenia confusa| +E0214245|Tenia africana|Taenia africana| +E0214251|reduced haemoglobin|reduced hemoglobin| +E0214255|verdohaemoglobin|verdohemoglobin| +E0214256|haemoglobin Chesapeake|hemoglobin Chesapeake| +E0214258|haemoglobin Seattle|hemoglobin Seattle| +E0214259|haemoglobin Yakima|hemoglobin Yakima| +E0214260|haemoglobin Rainier|hemoglobin Rainier| +E0214277|haemoglobin Gun Hill|hemoglobin Gun Hill| +E0214311|sulphurated lime solution|sulfurated lime solution| +E0214327|lodscore|lod score| +E0214334|R-factor|R factor| +E0214350|petroleum aether|petroleum ether| +E0214379|methylisobutylketone|methyl isobutyl ketone| +E0214379|methylisobutyl ketone|methyl isobutyl ketone| +E0214393|exudative neurodermitis|exudative neurodermatitis| +E0214396|disseminated neurodermitis|disseminated neurodermatitis| +E0214402|seborrhoeic eczema|seborrheic eczema| +E0214403|sulphoethylmethane|sulfonethylmethane| +E0214404|seborrhoea sicca|seborrhea sicca| +E0214406|seborrhoea adiposa|seborrhea adiposa| +E0214407|seborrhoea oleosa|seborrhea oleosa| +E0214424|Stevens Johnson syndrome|Stevens-Johnson syndrome| +E0214460|localised pustular psoriasis|localized pustular psoriasis| +E0214463|seborrhoeic psoriasis|seborrheic psoriasis| +E0214465|sulphadiazine silver|sulfadiazine silver| +E0214485|lichen plano-pilaris|lichen planopilaris| +E0214498|povidone-iodine|povidone iodine| +E0214506|para-nitrosulphathiazole|para-nitrosulfathiazole| +E0214506|paranitrosulfathiazole|para-nitrosulfathiazole| +E0214506|paranitrosulphathiazole|para-nitrosulfathiazole| +E0214512|phthalylsulphacetamide|phthalylsulfacetamide| +E0214515|phthalylsulphonazole|phthalylsulfonazole| +E0214525|localised scleroderma|localized scleroderma| +E0214527|glucosulphone sodium|glucosulfone sodium| +E0214559|levamfetamine|levamphetamine| +E0214574|uridrosis|urhidrosis| +E0214585|potassium sulphocyanate|potassium sulfocyanate| +E0214606|hang nail|hangnail| +E0214623|leuconychia|leukonychia| +E0214626|onychogryphosis|onychogryposis| +E0214633|indigocarmine|indigo carmine| +E0214635|indigotindisulphonate sodium|indigotindisulfonate sodium| +E0214635|indigotin disulphonate sodium|indigotindisulfonate sodium| +E0214635|indigotin disulfonate sodium|indigotindisulfonate sodium| +E0214657|polyamine methylene resin|polyamine-methylene resin| +E0214660|tumoural calcinosis|tumoral calcinosis| +E0214673|doctyl sodium sulphosuccinate|dioctyl sodium sulfosuccinate| +E0214674|CR(E)ST syndrome|CREST syndrome| +E0214677|ipomoea|ipomea| +E0214692|atlanto-axial subluxation|atlantoaxial subluxation| +E0214695|scapulo-costal syndrome|scapulocostal syndrome| +E0214702|copper sulphate|copper sulfate| +E0214703|cupric sulphate|cupric sulfate| +E0214709|antihaemophilic human plasma|antihemophilic human plasma| +E0214710|antihaemophilic|antihemophilic| +E0214729|malarial haemoglobinuria|malarial hemoglobinuria| +E0214730|haemoglobinuric fever|hemoglobinuric fever| +E0214736|bovine babesiasis|bovine babesiosis| +E0214737|red water fever|red-water fever| +E0214737|redwater fever|red-water fever| +E0214741|equine babesiasis|equine babesiosis| +E0214742|canine babesiasis|canine babesiosis| +E0214751|dilute phosphoric acid|diluted phosphoric acid| +E0214764|diffuse cutaneous leishmaniosis|diffuse cutaneous leishmaniasis| +E0214766|leukovorin calcium|leucovorin calcium| +E0214782|potassium guaiacolsulphonate|potassium guaiacolsulfonate| +E0214790|heart lung machine|heart-lung machine| +E0214799|gluten free diet|gluten-free diet| +E0214804|heat-cramp|heat cramp| +E0214807|protein bound iodine|protein-bound iodine| +E0214808|verminous aneurism|verminous aneurysm| +E0214837|semi-prone position|semiprone position| +E0214838|Sims's position|Sims' position| +E0214843|dorso-sacral position|dorsosacral position| +E0214849|writer's cramp|writers' cramp| +E0214849|writers cramp|writers' cramp| +E0214863|glove anaesthesia|glove anesthesia| +E0214884|fat soluble vitamin|fat-soluble vitamin| +E0214885|water soluble vitamin|water-soluble vitamin| +E0214886|AV|A-V| +E0214904|alpha ketoglutarate glyoxylate carboligase|alpha-ketoglutarate glyoxylate carboligase| +E0214928|lysine-ketoglutarate reductase|lysine ketoglutarate reductase| +E0214985|primary amenorrhoea|primary amenorrhea| +E0214986|secondary amenorrhoea|secondary amenorrhea| +E0214990|phytanic acid alpha hydroxylase|phytanic acid alpha-hydroxylase| +E0214994|coenaesthesia|cenesthesia| +E0214994|cenesthesia|cenesthesia| +E0214995|sulphoiduronate sulphatase|sulfoiduronate sulfatase| +E0214995|sulfo-iduronidate sulfatase|sulfoiduronate sulfatase| +E0214995|sulpho-iduronidate sulphatase|sulfoiduronate sulfatase| +E0215008|false labour|false labor| +E0215011|foetal asphyxia|fetal asphyxia| +E0215026|posterior cross bite|posterior crossbite| +E0215036|flutter fibrilation|flutter-fibrillation| +E0215036|flutter-fibrilation|flutter-fibrillation| +E0215036|flutter fibrillation|flutter-fibrillation| +E0215043|phantom-limb pain|phantom limb pain| +E0215066|kinaesthetic hallucination|kinesthetic hallucination| +E0215068|Gowers's sign|Gowers' sign| +E0215071|Gowers's phenomenon|Gowers' phenomenon| +E0215075|dissociated anaesthesia|dissociated anesthesia| +E0215076|topaesthesia|topesthesia| +E0215078|graphaesthesia|graphesthesia| +E0215090|pseudogeusaesthesia|pseudogeusesthesia| +E0215092|colour taste|color taste| +E0215096|taste-blindness|taste blindness| +E0215100|akynesis|akinesis| +E0215103|erythropia|erythropsia| +E0215104|dysdiadokokinesia|dysdiadochokinesia| +E0215104|dysdiadochokinesis|dysdiadochokinesia| +E0215104|dysdiadokokinesis|dysdiadochokinesia| +E0215118|end position nystagmus|end-position nystagmus| +E0215120|diadokokinesia|diadochokinesia| +E0215120|diadochokinesis|diadochokinesia| +E0215120|diadokokinesis|diadochokinesia| +E0215132|tone-deafness|tone deafness| +E0215133|tone-deaf|tone deaf| +E0215173|intra articular fracrure|intra-articular fracture| +E0215194|cochleoorbicular reflex|cochleo-orbicular reflex| +E0215202|setting sun sign|setting-sun sign| +E0215204|direct-light reflex|direct light reflex| +E0215209|cherry red spot|cherry-red spot| +E0215217|flame-shaped haemorrhage|flame-shaped hemorrhage| +E0215217|flame shaped hemorrhage|flame-shaped hemorrhage| +E0215217|flame shaped haemorrhage|flame-shaped hemorrhage| +E0215258|hydromeningocoele|hydromeningocele| +E0215260|encephalomeningocoele|encephalomeningocele| +E0215261|Hibbs's operation|Hibbs' operation| +E0215261|Hibbs operation|Hibbs' operation| +E0215262|hydrencephalocoele|hydrencephalocele| +E0215264|hydrencephalomeningocoele|hydrencephalomeningocele| +E0215298|club hand|clubhand| +E0215298|club-hand|clubhand| +E0215313|reduction mammoplasty|reduction mammaplasty| +E0215316|isolated laevocardia|isolated levocardia| +E0215329|corporeal caesarean section|corporeal cesarean section| +E0215329|corporeal cesarian section|corporeal cesarean section| +E0215329|corporeal caesarian section|corporeal cesarean section| +E0215331|Prague manoeuvre|Prague maneuver| +E0215334|transorbital leucotomy|transorbital leukotomy| +E0215352|crossed renal ectopy|crossed renal ectopia| +E0215353|nerve blocking anaesthesia|nerve blocking anesthesia| +E0215353|nerve-blocking anesthesia|nerve blocking anesthesia| +E0215353|nerve-blocking anaesthesia|nerve blocking anesthesia| +E0215355|paravertebral anaesthesia|paravertebral anesthesia| +E0215365|synchronised intermittent mandatory ventilation|synchronized intermittent mandatory ventilation| +E0215366|Heimlich manoeuvre|Heimlich maneuver| +E0215367|high assimilation pelvis|high-assimilation pelvis| +E0215370|low assimilation pelvis|low-assimilation pelvis| +E0215378|Donath Landsteiner test|Donath-Landsteiner test| +E0215390|alpha haemolysis|alpha hemolysis| +E0215391|beta haemolysis|beta hemolysis| +E0215391|beta-hemolysis|beta hemolysis| +E0215391|beta-haemolysis|beta hemolysis| +E0215392|gamma haemolysis|gamma hemolysis| +E0215392|gamma-hemolysis|gamma hemolysis| +E0215392|gamma-haemolysis|gamma hemolysis| +E0215394|Voges Proskauer test|Voges-Proskauer test| +E0215397|arylsulphatase test|arylsulfatase test| +E0215406|foetal uterus|fetal uterus| +E0215413|serum neutralisation test|serum neutralization test| +E0215414|foetus papyraceus|fetus papyraceus| +E0215416|fluorescent treponemal antibody-absorption test|fluorescent treponemal antibody absorption test| +E0215418|foetus compressus|fetus compressus| +E0215430|cell mediated lympholysis assay|cell-mediated lympholysis assay| +E0215433|Enzyme Multiplied Immunoassay Technique|Enzyme-Multiplied Immunoassay Technique| +E0215444|urine-concentration test|urine concentration test| +E0215453|faecalith|fecalith| +E0215473|short-wave diathermy|short wave diathermy| +E0215473|shortwave diathermy|short wave diathermy| +E0215475|ultrashort-wave diathermy|ultrashort wave diathermy| +E0215475|ultra-short-wave diathermy|ultrashort wave diathermy| +E0215479|stress breaker|stress-breaker| +E0215483|Rasmussen's aneurism|Rasmussen's aneurysm| +E0215491|serpentine aneurism|serpentine aneurysm| +E0215494|miliary aneurism|miliary aneurysm| +E0215496|saccular aneurism|saccular aneurysm| +E0215497|fusiform aneurism|fusiform aneurysm| +E0215500|false aneurism|false aneurysm| +E0215504|Langerhans's cell|Langerhans' cell| +E0215505|internal haemorrhoid|internal hemorrhoid| +E0215506|external haemorrhoid|external hemorrhoid| +E0215508|dermo-epidermal junction|dermoepidermal junction| +E0215520|haemoglobin cast|hemoglobin cast| +E0215530|hydrocephalus ex-vacuo|hydrocephalus ex vacuo| +E0215533|haemorrhagic cyst|hemorrhagic cyst| +E0215537|pneumatocoele|pneumatocele| +E0215538|pseudo-coarctation|pseudocoarctation| +E0215552|lymphorrhoea|lymphorrhea| +E0215554|oedema bullosum vesicae|edema bullosum vesicae| +E0215557|splinter haemorrhage|splinter hemorrhage| +E0215561|wormian bone|Wormian bone| +E0215564|phagedaenic ulcer|phagedenic ulcer| +E0215570|dendric ulcer|dendritic ulcer| +E0215573|lachrymal bone|lacrimal bone| +E0215585|micro-abscess|microabscess| +E0215595|foreign-body reaction|foreign body reaction| +E0215597|anconal process|anconeal process| +E0215630|humero-ulnar head|humeroulnar head| +E0215634|localised neurodermatitis|localized neurodermatitis| +E0215639|naevus anemicus|nevus anemicus| +E0215639|naevus anaemicus|nevus anemicus| +E0215642|fibrous placque|fibrous plaque| +E0215643|anterior synaechia|anterior synechia| +E0215644|posterior synaechia|posterior synechia| +E0215652|senile placque|senile plaque| +E0215685|haemorrhagic infarct|hemorrhagic infarct| +E0215689|hyalin membrane|hyaline membrane| +E0215747|coeliac trunk|celiac trunk| +E0215752|superior haemorrhoidal artery|superior hemorrhoidal artery| +E0215753|middle haemorrhoidal artery|middle hemorrhoidal artery| +E0215754|inferior haemorrhoidal artery|inferior hemorrhoidal artery| +E0215768|hemiazygous vein|hemiazygos vein| +E0215769|accessory hemiazygous vein|accessory hemiazygos vein| +E0215770|hemiazygous|hemiazygos| +E0215791|wire loop lesion|wire-loop lesion| +E0215798|cemento-enamel junction|cementoenamel junction| +E0215806|mongolian spot|Mongolian spot| +E0215807|gastro-esophageal sphincter|gastroesophageal sphincter| +E0215807|gastro-oesophageal sphincter|gastroesophageal sphincter| +E0215807|gastrooesophageal sphincter|gastroesophageal sphincter| +E0215808|cardio-esophageal junction|cardioesophageal junction| +E0215808|cardio-oesophageal junction|cardioesophageal junction| +E0215808|cardiooesophageal junction|cardioesophageal junction| +E0215810|Kerkring's valve|Kerckring's valve| +E0215811|Kerkring|Kerckring| +E0215839|frame-shift mutation|frameshift mutation| +E0215839|frame shift mutation|frameshift mutation| +E0215840|temperature sensitive mutation|temperature-sensitive mutation| +E0215848|fibrous long spacing collagen|fibrous long-spacing collagen| +E0215848|fibrose long-spacing collagen|fibrous long-spacing collagen| +E0215848|fibrose long spacing collagen|fibrous long-spacing collagen| +E0215855|signet ring cell|signet-ring cell| +E0215883|dermopathic lymphadenopathy|dermatopathic lymphadenopathy| +E0215899|hereditary benign intra-epithelial dyskeratosis|hereditary benign intraepithelial dyskeratosis| +E0215902|epidermal naevus|epidermal nevus| +E0215903|naevus comedonicus|nevus comedonicus| +E0215906|congenital generalised fibromatosis|congenital generalized fibromatosis| +E0215910|cirsoid aneurism|cirsoid aneurysm| +E0215913|verruga plana|verruca plana| +E0215918|leucoerythroblastosis|leukoerythroblastosis| +E0215919|secondary polycythaemia|secondary polycythemia| +E0215920|relative polycythaemia|relative polycythemia| +E0215921|stress polycythaemia|stress polycythemia| +E0215927|Howell Jolly body|Howell-Jolly body| +E0215941|corpus haemorrhagicum|corpus hemorrhagicum| +E0215946|tricho-epithelioma|trichoepithelioma| +E0215949|granulosa cell tumour|granulosa cell tumor| +E0215950|Sertoli-Leydig cell tumour|Sertoli-Leydig cell tumor| +E0215950|Sertoli Leydig cell tumor|Sertoli-Leydig cell tumor| +E0215950|Sertoli Leydig cell tumour|Sertoli-Leydig cell tumor| +E0215951|hilar cell tumour|hilar cell tumor| +E0215953|Leydig cell tumour|Leydig cell tumor| +E0215957|fibrose histiocytoma|fibrous histiocytoma| +E0215964|venous haemangioma|venous hemangioma| +E0215965|malignant haemangioendothelioma|malignant hemangioendothelioma| +E0215967|haemolymphangioma|hemolymphangioma| +E0215968|giant cell tumour|giant cell tumor| +E0215973|melanotic neuroectodermal tumour|melanotic neuroectodermal tumor| +E0215977|granular cell tumour|granular cell tumor| +E0215979|lymphosarcoma cell leucemia|lymphosarcoma cell leukemia| +E0215979|lymphosarcoma cell leukaemia|lymphosarcoma cell leukemia| +E0215979|lymphosarcoma cell leucaemia|lymphosarcoma cell leukemia| +E0215980|eosinophilic leucemia|eosinophilic leukemia| +E0215980|eosinophilic leukaemia|eosinophilic leukemia| +E0215980|eosinophilic leucaemia|eosinophilic leukemia| +E0215982|counter-immunoelectrophoresis|counter immunoelectrophoresis| +E0215982|counterimmunoelectrophoresis|counter immunoelectrophoresis| +E0215983|STS|S.T.S.| +E0216001|stiff man syndrome|stiff-man syndrome| +E0216001|stiffman syndrome|stiff-man syndrome| +E0216002|sudanophilic leucodystrophy|sudanophilic leukodystrophy| +E0216029|Hemophilus pertussis|Haemophilus pertussis| +E0216044|T strain mycoplasma|T-strain mycoplasma| +E0216061|horsefly|horse fly| +E0216067|tongueworm|tongue worm| +E0216079|thymus leucemia antigen|thymus leukemia antigen| +E0216079|thymus leukaemia antigen|thymus leukemia antigen| +E0216079|thymus leucaemia antigen|thymus leukemia antigen| +E0216080|toluidine blue, O|toluidine blue O| +E0216080|Toluidine Blue O|toluidine blue O| +E0216080|Toluidine Blue, O|toluidine blue O| +E0216081|Toluidine Blue|toluidine blue| +E0216083|antihaemophilic globulin F|antihemophilic globulin F| +E0216084|high-fiber diet|high fiber diet| +E0216084|high fibre diet|high fiber diet| +E0216084|high-fibre diet|high fiber diet| +E0216087|antihaemolytic factor|antihemolytic factor| +E0216088|heparan sulphate sulphatase|heparan sulfate sulfatase| +E0216089|lactosylceramidase|lactosyl ceramidase| +E0216091|GOT|Got| +E0216093|low birth-weight infant|low birth weight infant| +E0216093|low-birth-weight infant|low birth weight infant| +E0216094|antihaemophilic globulin|antihemophilic globulin| +E0216096|total circulating haemoglobin|total circulating hemoglobin| +E0216101|catheterised bladder|catheterized bladder| +E0216108|rhesus factor isoimmunisation|rhesus factor isoimmunization| +E0216109|intermittent catheterisation protocol|intermittent catheterization protocol| +E0216110|leucotactic factor|leukotactic factor| +E0216132|hydromyelomeningocoele|hydromyelomeningocele| +E0216133|hydrocephalocoele|hydrocephalocele| +E0216136|lobster claw deformity|lobster-claw deformity| +E0216166|retroflection|retroflexion| +E0216167|lateroflection|lateroflexion| +E0216168|compound aneurism|compound aneurysm| +E0216169|tubular aneurism|tubular aneurysm| +E0216174|theca lutein cyst|theca-lutein cyst| +E0216178|passive hyperaemia|passive hyperemia| +E0216182|purpura haemorrhagica|purpura hemorrhagica| +E0216194|melon seed body|melon-seed body| +E0216224|hyalinisation|hyalinization| +E0216226|hyalinise|hyalinize| +E0216254|heart failure cell|heart-failure cell| +E0216270|cap|cap.| +E0216290|Papillon Lefevre syndrome|Papillon-Lefevre syndrome| +E0216307|naevus elasticus|nevus elasticus| +E0216308|naevus flammeus|nevus flammeus| +E0216311|epithelial naevus|epithelial nevus| +E0216313|naevus unius lateris|nevus unius lateris| +E0216315|naevus araneus|nevus araneus| +E0216318|Buschke-Lowenstein tumour|Buschke-Lowenstein tumor| +E0216339|Brooke's tumour|Brooke's tumor| +E0216342|turban tumour|turban tumor| +E0216347|Warthin's tumour|Warthin's tumor| +E0216349|Sertoli cell tumour|Sertoli cell tumor| +E0216351|lipoid cell tumour|lipoid cell tumor| +E0216352|phaeochromoblastoma|pheochromoblastoma| +E0216353|achromic naevus|achromic nevus| +E0216355|dermal naevus|dermal nevus| +E0216359|foetal fat cell lipoma|fetal fat cell lipoma| +E0216365|haemangioma simplex|hemangioma simplex| +E0216366|haemagglutinating activity|hemagglutinating activity| +E0216368|Ewing's tumour|Ewing's tumor| +E0216371|Rathke's pouch tumour|Rathke's pouch tumor| +E0216372|retinal anlage tumour|retinal anlage tumor| +E0216378|T cell lymphoma|T-cell lymphoma| +E0216382|stem cell leucemia|stem cell leukemia| +E0216382|stem cell leukaemia|stem cell leukemia| +E0216382|stem cell leucaemia|stem cell leukemia| +E0216383|aleukaemic myelosis|aleukemic myelosis| +E0216383|aleucemic myelosis|aleukemic myelosis| +E0216383|aleucaemic myelosis|aleukemic myelosis| +E0216384|histiocytic leucemia|histiocytic leukemia| +E0216384|histiocytic leukaemia|histiocytic leukemia| +E0216384|histiocytic leucaemia|histiocytic leukemia| +E0216439|torcular herophili|torcular Herophili| +E0216453|tenia mesocolica|taenia mesocolica| +E0216497|gastro-esophageal junction|gastroesophageal junction| +E0216497|gastrooesophageal junction|gastroesophageal junction| +E0216497|gastro-oesophageal junction|gastroesophageal junction| +E0216500|tenia omentalis|taenia omentalis| +E0216501|tenia libera|taenia libera| +E0216538|post-menopausal osteoporosis|postmenopausal osteoporosis| +E0216544|silver-fork deformity|silver fork deformity| +E0216585|zinc-fume fever|zinc fume fever| +E0216587|teflon shakes|Teflon shakes| +E0216615|acute congestive heart-failure|acute congestive heart failure| +E0216623|Lown Ganong Levine syndrome|Lown-Ganong-Levine syndrome| +E0216634|leucocytoclastic vasculitis|leukocytoclastic vasculitis| +E0216639|capillary haemorrhage|capillary hemorrhage| +E0216642|prolapsed haemorrhoid|prolapsed hemorrhoid| +E0216643|strangulated haemorrhoid|strangulated hemorrhoid| +E0216644|phlegmasia caerulea dolens|phlegmasia cerulea dolens| +E0216653|lymphoedema praecox|lymphedema praecox| +E0216656|De Lange|de Lange| +E0216661|facio-digito-genital syndrome|faciodigitogenital syndrome| +E0216664|fragile-X syndrome|fragile X syndrome| +E0216672|pancytopenia dysmelia syndrome|pancytopenia-dysmelia syndrome| +E0216722|thymic parathyroid aplasia|thymic-parathyroid aplasia| +E0216730|brachyphalangy|brachyphalangia| +E0216738|radial club hand|radial clubhand| +E0216738|radial club-hand|radial clubhand| +E0216740|ulnar club hand|ulnar clubhand| +E0216740|ulnar club-hand|ulnar clubhand| +E0216745|lobster claw hand|lobster-claw hand| +E0216750|congenital spondylisthesis|congenital spondylolisthesis| +E0216759|pelvis justominor|pelvis justo minor| +E0216761|funnel shaped pelvis|funnel-shaped pelvis| +E0216796|Mongolian macula|mongolian macula| +E0216814|peg shaped tooth|peg-shaped tooth| +E0216821|anterior cross bite|anterior crossbite| +E0216822|cross bite|crossbite| +E0216849|epiphysial syndrome|epiphyseal syndrome| +E0216859|synaechia vulvae|synechia vulvae| +E0216873|encephalocoel|encephalocoele| +E0216879|hydromyelocoele|hydromyelocele| +E0216882|jaw winking syndrome|jaw-winking syndrome| +E0216894|calcified foetus|calcified fetus| +E0216895|mummified foetus|mummified fetus| +E0216896|harlequin foetus|harlequin fetus| +E0216954|heterologous chimaera|heterologous chimera| +E0216955|homologous chimaera|homologous chimera| +E0216956|isologous chimaera|isologous chimera| +E0216976|irregular dentine|irregular dentin| +E0216988|drop-jaw|drop jaw| +E0216988|dropjaw|drop jaw| +E0216997|ptyalorrhoea|ptyalorrhea| +E0217009|blacktongue|black tongue| +E0217014|gastro-oesophageal reflux disease|gastroesophageal reflux disease| +E0217014|gastro-esophageal reflux disease|gastroesophageal reflux disease| +E0217015|cardio-chalasia|cardiochalasia| +E0217022|oesophagism|esophagism| +E0217024|Barrett's oesophagus|Barrett's esophagus| +E0217030|LDA|L.D.A.| +E0217045|secretory diarrhoea|secretory diarrhea| +E0217047|coeliac crisis|celiac crisis| +E0217050|idiopathic steatorrhoea|idiopathic steatorrhea| +E0217051|coeliac sprue|celiac sprue| +E0217052|coeliac infantilism|celiac infantilism| +E0217053|protein losing enteropathy|protein-losing enteropathy| +E0217067|chronic nonsuppurative destructive cholangeitis|chronic nonsuppurative destructive cholangitis| +E0217067|chronic non-suppurative destructive cholangitis|chronic nonsuppurative destructive cholangitis| +E0217067|chronic non-suppurative destructive cholangeitis|chronic nonsuppurative destructive cholangitis| +E0217068|portal pyaemia|portal pyemia| +E0217069|portal systemic encephalopathy|portal-systemic encephalopathy| +E0217073|strawberry gall bladder|strawberry gallbladder| +E0217075|primary sclerosing cholangeitis|primary sclerosing cholangitis| +E0217078|leishmaniasis|leishmaniosis| +E0217085|pheohyphomycosis|phaeohyphomycosis| +E0217087|life-long obesity|lifelong obesity| +E0217087|life long obesity|lifelong obesity| +E0217090|hyperplastic hypertrophic obesity|hyperplastic-hypertrophic obesity| +E0217092|adult onset obesity|adult-onset obesity| +E0217094|Korean haemorrhagic fever|Korean hemorrhagic fever| +E0217097|hepatic haemosiderosis|hepatic hemosiderosis| +E0217098|steely hair syndrome|steely-hair syndrome| +E0217101|lymphoid leucosis|lymphoid leukosis| +E0217119|onyong-nyong fever|O'nyong-nyong fever| +E0217132|myo-adenylate deaminase deficiency|myoadenylate deaminase deficiency| +E0217142|gall sickness|gallsickness| +E0217147|tropical canine pancytopaenia|tropical canine pancytopenia| +E0217148|acid maltase deficiency|acid-maltase deficiency| +E0217156|fructosaemia|fructosemia| +E0217169|sucrase isomaltase deficiency|sucrase-isomaltase deficiency| +E0217173|framboesia|frambesioma| +E0217173|framboesioma|frambesioma| +E0217176|acute necrotising ulcerative gingivitis|acute necrotizing ulcerative gingivitis| +E0217185|pulmonary tularaemia|pulmonary tularemia| +E0217187|oropharyngeal tularaemia|oropharyngeal tularemia| +E0217188|typhoidal tularaemia|typhoidal tularemia| +E0217189|oculaglandular tularaemia|oculoglandular tularemia| +E0217190|familial hypobetalipoproteinaemia|familial hypobetalipoproteinemia| +E0217191|glandular tularaemia|glandular tularemia| +E0217192|ulceroglandular tularaemia|ulceroglandular tularemia| +E0217196|familial high density lipoprotein deficiency|familial high-density lipoprotein deficiency| +E0217197|deerfly fever|deer fly fever| +E0217203|papulonecrotic tuberculide|papulonecrotic tuberculid| +E0217203|papulo-necrotic tuberculid|papulonecrotic tuberculid| +E0217203|papulo-necrotic tuberculide|papulonecrotic tuberculid| +E0217204|familial hyperbetalipoproteinaemia|familial hyperbetalipoproteinemia| +E0217205|LDL receptor disorder|LDL-receptor disorder| +E0217207|familial combined hyperlipidaemia|familial combined hyperlipidemia| +E0217208|familial dysbetalipoproteinaemia|familial dysbetalipoproteinemia| +E0217209|floating beta disease|floating-beta disease| +E0217212|beta-sitosterolaemia|beta-sitosterolemia| +E0217212|beta sitosterolemia|beta-sitosterolemia| +E0217212|beta sitosterolaemia|beta-sitosterolemia| +E0217215|chronic idiopathetic xanthomatosis|chronic idiopathic xanthomatosis| +E0217216|Hurler Scheie syndrome|Hurler-Scheie syndrome| +E0217222|N-acetylgalactosamine-4-sulphatase deficiency|N-acetylgalactosamine-4-sulfatase deficiency| +E0217225|arylsulphatase B deficiency|arylsulfatase B deficiency| +E0217226|viscerotropic leishmaniosis|viscerotropic leishmaniasis| +E0217230|beta glucaronidase deficiency|beta-glucuronidase deficiency| +E0217236|galactosyl ceramide lipidosis|galactosylceramide lipidosis| +E0217237|Krabbe's leucodystrophy|Krabbe's leukodystrophy| +E0217243|metachromatic leucoencephaly|metachromatic leukoencephaly| +E0217244|leucoencephaly|leukoencephaly| +E0217245|mucosulphatidosis|mucosulfatidosis| +E0217256|X linked ichthyosis|X-linked ichthyosis| +E0217258|familial nonhaemolytic jaundice|familial nonhemolytic jaundice| +E0217259|nonhaemolytic jaundice|nonhemolytic jaundice| +E0217270|haematoporphyrinuria|hematoporphyrinuria| +E0217274|brittle-bone syndrome|brittle bone syndrome| +E0217275|Eddowes's syndrome|Eddowes' syndrome| +E0217275|Eddowes syndrome|Eddowes' syndrome| +E0217283|generalised epidermolysis bullosa simplex|generalized epidermolysis bullosa simplex| +E0217284|localised epidermolysis bullosa simplex|localized epidermolysis bullosa simplex| +E0217299|congenital idiopathic hyperphosphatasaemia|chronic congenital idiopathic hyperphosphatasemia| +E0217304|hyperphosphatasaemia tarda|hyperphosphatasemia tarda| +E0217306|Van Buchem|van Buchem| +E0217307|acatalasaemia|acatalasemia| +E0217317|tyrosinase positive oculocutaneous albinism|tyrosinase-positive oculocutaneous albinism| +E0217329|oculocerebral hypopigmentation syndrome|oculocerebral-hypopigmentation syndrome| +E0217346|leucoderma colli|leukoderma colli| +E0217349|staphylococcal scalded-skin syndrome|staphylococcal scalded skin syndrome| +E0217355|septicaemic plague|septicemic plague| +E0217375|gamma-glutamyltranspeptidase deficiency|gamma-glutamyl transpeptidase deficiency| +E0217375|gammaglutamyl transpeptidase deficiency|gamma-glutamyl transpeptidase deficiency| +E0217375|gamma-glutamyl-transpeptidase deficiency|gamma-glutamyl transpeptidase deficiency| +E0217375|gamma glutamyl transpeptidase deficiency|gamma-glutamyl transpeptidase deficiency| +E0217377|sheath-rot|sheath rot| +E0217378|hyperhydroxyprolinaemia|hyperhydroxyprolinemia| +E0217383|type I congenital hyperammonaemia|type I congenital hyperammonemia| +E0217387|leptospirosis icterohemorrhagica|leptospirosis icterohaemorrhagica| +E0217395|gonococcaemia|gonococcemia| +E0217401|argininaemia|argininemia| +E0217402|hyperargininaemia|hyperargininemia| +E0217406|hypersarcosinaemia|hypersarcosinemia| +E0217412|valinaemia|valinemia| +E0217426|essential haematuria|essential hematuria| +E0217427|prerenal azotaemia|prerenal azotemia| +E0217444|salpingocoele|salpingocele| +E0217446|haemometra|hemometra| +E0217448|oedema neonatorum|edema neonatorum| +E0217452|leucokraurosis|leukokraurosis| +E0217455|clitorimegaly|clitoromegaly| +E0217476|eclamptic toxaemia|eclamptic toxemia| +E0217480|puerperal septicaemia|puerperal septicemia| +E0217495|obsessive compulsive personality disorder|obsessive-compulsive personality disorder| +E0217500|passive-aggressive personality disorder|passive aggressive personality disorder| +E0217509|Lambert Eaton syndrome|Lambert-Eaton syndrome| +E0217510|limb girdle muscular dystrophy|limb-girdle muscular dystrophy| +E0217514|phaco-anaphylactic endophthalmitis|phacoanaphylactic endophthalmitis| +E0217514|phakoanaphylactic endophthalmitis|phacoanaphylactic endophthalmitis| +E0217514|phako-anaphylactic endophthalmitis|phacoanaphylactic endophthalmitis| +E0217518|leukokoria|leukocoria| +E0217518|leucocoria|leukocoria| +E0217518|leucokoria|leukocoria| +E0217520|sleep-terror disorder|sleep terror disorder| +E0217526|Gelineau syndrome|Gelineau's syndrome| +E0217530|Iwanow's cyst|Iwanoff's cyst| +E0217530|Ivanoff's cyst|Iwanoff's cyst| +E0217530|Ivanov's cyst|Iwanoff's cyst| +E0217532|generalised anxiety disorder|generalized anxiety disorder| +E0217544|abasia-astasia|abasia astasia| +E0217550|intermittent angle closure glaucoma|intermittent angle-closure glaucoma| +E0217551|acute angle closure glaucoma|acute angle-closure glaucoma| +E0217553|chronic angle closure glaucoma|chronic angle-closure glaucoma| +E0217563|Vessius's ring|Vossius' ring| +E0217567|wendigo|windigo| +E0217572|crossed hemianopsia|crossed hemianopia| +E0217585|Nm|Nm.| +E0217585|n.m.|Nm.| +E0217585|nm.|Nm.| +E0217586|nm|nm.| +E0217587|hypoglycaemic encephalopathy|hypoglycemic encephalopathy| +E0217591|Reye syndrome|Reye's syndrome| +E0217591|Reyes' syndrome|Reye's syndrome| +E0217591|Reyes syndrome|Reye's syndrome| +E0217592|cerebral ataxy|cerebral ataxia| +E0217594|subacute nectrotising encephalomyelopathy|subacute necrotizing encephalomyelopathy| +E0217598|adherent leucoma|adherent leukoma| +E0217608|olivo-ponto-cerebellar degeneration|olivopontocerebellar degeneration| +E0217608|olivo ponto cerebellar degeneration|olivopontocerebellar degeneration| +E0217619|chromodacryorrhoea|chromodacryorrhea| +E0217658|paralysing vertigo|paralyzing vertigo| +E0217668|dysacousis|dysacusis| +E0217668|dysacousia|dysacusis| +E0217669|auditory dysaesthesia|auditory dysesthesia| +E0217674|cortico-striatal-spinal degeneration|corticostriatal-spinal degeneration| +E0217674|cortico-striatal spinal degeneration|corticostriatal-spinal degeneration| +E0217704|Barraquer-Simons's syndrome|Barraquer-Simons' syndrome| +E0217713|factitious hypoglycaemia|factitious hypoglycemia| +E0217716|fasting hypoglycaemia|fasting hypoglycemia| +E0217717|reactive hypoglycaemia|reactive hypoglycemia| +E0217719|ketotic hypoglycaemia|ketotic hypoglycemia| +E0217722|leucine-induced hypoglycaemia|leucine-induced hypoglycemia| +E0217722|leucine induced hypoglycemia|leucine-induced hypoglycemia| +E0217722|leucine induced hypoglycaemia|leucine-induced hypoglycemia| +E0217724|mixed hypoglycaemia|mixed hypoglycemia| +E0217732|lingual goitre|lingual goiter| +E0217736|familial hypocalciuric hypercalcaemia|familial hypocalciuric hypercalcemia| +E0217739|Blackfan-Diamond anaemia|Blackfan-Diamond anemia| +E0217746|polycythaemia hypertonica|polycythemia hypertonica| +E0217747|benign polycythaemia|benign polycythemia| +E0217748|spurious polycythaemia|spurious polycythemia| +E0217759|X-linked agammaglobulinaemia|X-linked agammaglobulinemia| +E0217759|X linked agammaglobulinemia|X-linked agammaglobulinemia| +E0217759|X linked agammaglobulinaemia|X-linked agammaglobulinemia| +E0217761|common variable agammaglobulinaemia|common variable agammaglobulinemia| +E0217762|hereditary angio-oedema|hereditary angioedema| +E0217762|hereditary angio-edema|hereditary angioedema| +E0217762|hereditary angiooedema|hereditary angioedema| +E0217767|congenital afibrinogenaemia|congenital afibrinogenemia| +E0217782|carbon disulphide poisoning|carbon disulfide poisoning| +E0217788|ackee poisoning|akee poisoning| +E0217789|ackee|akee| +E0217820|haemorrhagic fever|hemorrhagic fever| +E0217825|ursacholic acid|ursocholic acid| +E0217831|blastic leukaemia|blastic leukemia| +E0217831|blastic leucaemia|blastic leukemia| +E0217831|blastic leucemia|blastic leukemia| +E0217831|blast leukemia|blastic leukemia| +E0217831|blast leukaemia|blastic leukemia| +E0217831|blast leucaemia|blastic leukemia| +E0217831|blast leucemia|blastic leukemia| +E0217861|trinitrobenzenesulphonic acid|trinitrobenzenesulfonic acid| +E0217899|sulphoglycolithocholic acid|sulfoglycolithocholic acid| +E0217900|sulpholithocholic acid|sulfolithocholic acid| +E0217957|iothalamic acid|iotalamic acid| +E0217959|ioxithalamic acid|ioxitalamic acid| +E0217961|haemoblastic leukaemia|hemoblastic leukemia| +E0217961|haemoblastic leucaemia|hemoblastic leukemia| +E0217961|hemoblastic leucemia|hemoblastic leukemia| +E0217964|hemocytoblastic leucemia|hemocytoblastic leukemia| +E0217964|haemocytoblastic leukaemia|hemocytoblastic leukemia| +E0217964|haemocytoblastic leucaemia|hemocytoblastic leukemia| +E0217967|iso-chorismic acid|isochorismic acid| +E0217972|isohaematinic acid|isohematinic acid| +E0218006|lignosulphuric acid|lignosulfuric acid| +E0218025|post-laminectomy kyphosis|postlaminectomy kyphosis| +E0218027|post-laminectomy syndrome|postlaminectomy syndrome| +E0218042|moduretic|moduretic| +E0218046|pseudocele|pseudocoele| +E0218050|mono-methylarsonic acid|monomethylarsonic acid| +E0218051|mono-oleylphosphatidic acid|monooleylphosphtidic acid| +E0218093|perfluoro-octanoic acid|perfluorooctanoic acid| +E0218096|perfluorosulphonic acid|perfluorosulfonic acid| +E0218106|petroselenic acid|petroselinic acid| +E0218273|lateralise|lateralize| +E0218274|Hongkong|Hong Kong| +E0218280|foetoscope|fetoscope| +E0218281|freeze-fracturing|freeze fracturing| +E0218282|free-graft|free graft| +E0218283|free-graft|free graft| +E0218286|haemorrhoid|hemorrhoid| +E0218287|haemorrhoids|hemorrhoids| +E0218288|iminoacid|imino acid| +E0218294|acetylise|acetylize| +E0218297|brainstem|brain-stem| +E0218297|brain stem|brain-stem| +E0218309|photolyse|photolyze| +E0218310|plasticise|plasticize| +E0218311|privatise|privatize| +E0218312|reanalyse|reanalyze| +E0218314|recatheterise|recatheterize| +E0218323|temephos|temefos| +E0218329|permeabilise|permeabilize| +E0218330|permeablisation|permeabilization| +E0218336|sintrom|synthrom| +E0218340|postischaemic|postischemic| +E0218378|akrosin|acrosin| +E0218392|platelet-derived growth factor b|platelet-derived growth factor B| +E0218393|alloimmunisation|alloimmunization| +E0218396|depolarisation|depolarization| +E0218397|desynchronisation|desynchronization| +E0218400|epmerisation|epimerization| +E0218407|melanisation|melanization| +E0218408|minimisation|minimization| +E0218409|oligomerisation|oligomerization| +E0218411|pressurisation|pressurization| +E0218426|radiosensitise|radiosensitize| +E0218426|radio-sensitize|radiosensitize| +E0218427|randomise|randomize| +E0218429|reoxidise|reoxidize| +E0218448|artefactually|artifactually| +E0218472|aetiologically|etiologically| +E0218512|sulphanilic acid|sulfanilic acid| +E0218591|digitisation|digitization| +E0219227|burr hole|burr-hole| +E0219230|coloured|colored| +E0219293|manoeuvring|maneuvering| +E0219300|moulding|molding| +E0219315|partizan|partisan| +E0219328|pre-set|preset| +E0219330|psyche|psych| +E0219339|repellant|repellent| +E0219373|poverty-stricken|poverty stricken| +E0219374|grief stricken|grief-stricken| +E0219375|panic stricken|panic-stricken| +E0219379|sunburned|sunburnt| +E0219405|C-band|C band| +E0219430|psychodelic|psychedelic| +E0219451|over-learning|overlearning| +E0219487|logopaedics|logopedics| +E0219501|radio-diagnostics|radiodiagnostics| +E0219503|semeiotic|semiotic| +E0219510|anidrotic|anhidrotic| +E0219635|sulphoconjugation|sulfoconjugation| +E0219635|sulfo-conjugation|sulfoconjugation| +E0219635|sulpho-conjugation|sulfoconjugation| +E0219638|colocalise|colocalize| +E0219639|tenibleness|tenableness| +E0219657|s-shaped|S-shaped| +E0219665|spleep inducing|sleep-inducing| +E0219671|enteric coated|enteric-coated| +E0219700|anaesthetized|anaesthetised| +E0219700|anesthetised|anaesthetised| +E0219700|anesthetized|anaesthetised| +E0219701|unanaesthetized|unanaesthetised| +E0219701|unanesthetised|unanaesthetised| +E0219701|unanesthetized|unanaesthetised| +E0219701|un-anaesthetised|unanaesthetised| +E0219701|un-anaesthetized|unanaesthetised| +E0219701|un-anesthetised|unanaesthetised| +E0219701|un-anesthetized|unanaesthetised| +E0219732|Epicurean|epicurean| +E0219744|idyl|idyll| +E0219793|Philistine|philistine| +E0219794|Philistine|philistine| +E0219797|tory|Tory| +E0219803|borstal|Borstal| +E0219806|Exchequer|exchequer| +E0219815|Armistice|armistice| +E0219879|caddis-fly|caddis fly| +E0219879|caddisfly|caddis fly| +E0219879|caddice fly|caddis fly| +E0219890|case-book|casebook| +E0219900|cob-web|cobweb| +E0219924|demi-lune|demilune| +E0220018|hepatisation|hepatization| +E0220028|hookup|hook-up| +E0220055|insusceptible|insusceptable| +E0220065|cymograph|kymograph| +E0220075|letdown|let-down| +E0220075|let down|let-down| +E0220079|linnaean|Linnaean| +E0220088|Manchineel|manchineel| +E0220092|mellituria|melituria| +E0220112|myriopod|myriapod| +E0220125|oestrum|estrum| +E0220178|pock-mark|pockmark| +E0220179|pock-marked|pockmarked| +E0220181|polariser|polarizer| +E0220213|ring-bone|ringbone| +E0220216|saccharimeter|saccharometer| +E0220231|semeiology|semiology| +E0220236|sialogogue|sialagogue| +E0220278|super-structure|superstructure| +E0220279|tocology|tokology| +E0220280|addible|addable| +E0220281|chivvy|chivy| +E0220292|clarinettist|clarinetist| +E0220300|intraarticularly|intra-articularly| +E0220301|extraarticularly|extra-articularly| +E0220303|cliquy|cliquey| +E0220309|break-up|breakup| +E0220311|oxidizibility|oxidizability| +E0220311|oxidisability|oxidizability| +E0220312|oxidizible|oxidizable| +E0220312|oxidisable|oxidizable| +E0220324|recognisability|recognizability| +E0220325|confinable|confineable| +E0220329|small-holder|smallholder| +E0220336|corruptor|corrupter| +E0220347|curst|cursed| +E0220350|chick-pea|chickpea| +E0220350|chick pea|chickpea| +E0220352|staticly|statically| +E0220353|non-porous|nonporous| +E0220358|desecrator|desecrater| +E0220364|pre-donation|predonation| +E0220365|predonation|pre-donation| +E0220366|pre-donate|predonate| +E0220369|desolator|desolater| +E0220370|pre-stress|prestress| +E0220371|post-stress|poststress| +E0220374|non occupational|nonoccupational| +E0220374|non-occupational|nonoccupational| +E0220375|post-code|postcode| +E0220391|adjuror|adjurer| +E0220397|phycho-physically|psychophysically| +E0220399|photo-current|photocurrent| +E0220400|oil-seed|oilseed| +E0220404|intra-group|intragroup| +E0220405|extra-pituitary|extrapituitary| +E0220425|dislikeable|dislikable| +E0220440|grand-maternal|grandmaternal| +E0220441|grand-paternal|grandpaternal| +E0220443|non-aromatic|nonaromatic| +E0220444|non-aromatic|nonaromatic| +E0220448|pre-conceptional|preconceptional| +E0220451|hireable|hirable| +E0220452|includeable|includable| +E0220453|indictor|indicter| +E0220454|inflator|inflater| +E0220456|inflictor|inflicter| +E0220457|lapsable|lapsible| +E0220458|lassoo|lasso| +E0220460|minable|mineable| +E0220464|petalled|petaled| +E0220465|polyglotism|polyglottism| +E0220466|ascendible|ascendable| +E0220468|prohibiter|prohibitor| +E0220471|reviser|revisor| +E0220472|rinsible|rinsable| +E0220474|savable|saveable| +E0220475|unsavable|unsaveable| +E0220477|avertible|avertable| +E0220478|shakeable|shakable| +E0220479|unshakeable|unshakable| +E0220480|shapeable|shapable| +E0220481|skilless|skill-less| +E0220482|skillessness|skill-lessness| +E0220483|smokeable|smokable| +E0220485|supply|suppley| +E0220488|assertor|asserter| +E0220489|hulless|hull-less| +E0220492|tradeable|tradable| +E0220493|untradeable|untradable| +E0220501|chock-ful|chock-full| +E0220510|briquette|briquet| +E0220517|ionisable|ionizable| +E0220523|non native|nonnative| +E0220523|non-native|nonnative| +E0220532|non sensitive|nonsensitive| +E0220532|non-sensitive|nonsensitive| +E0220533|non uniformly|nonuniformly| +E0220533|non-uniformly|nonuniformly| +E0220534|non routine|nonroutine| +E0220534|non-routine|nonroutine| +E0220535|non woody|nonwoody| +E0220535|non-woody|nonwoody| +E0220536|non professional|nonprofessional| +E0220536|non-professional|nonprofessional| +E0220537|non mobile|nonmobile| +E0220537|non-mobile|nonmobile| +E0220538|non-exchangeable|nonexchangeable| +E0220538|non-exchangable|nonexchangeable| +E0220538|nonexchangable|nonexchangeable| +E0220540|non-academic|nonacademic| +E0220542|non-fluorescent|nonfluorescent| +E0220542|non fluorescent|nonfluorescent| +E0220543|non necessary|nonnecessary| +E0220544|non-adhesive|nonadhesive| +E0220545|non-adhesiveness|nonadhesiveness| +E0220546|non-pulmonary|nonpulmonary| +E0220547|non-acid|nonacid| +E0220548|nonaction|non-action| +E0220549|non acute|nonacute| +E0220549|non-acute|nonacute| +E0220550|non aggressive|nonaggressive| +E0220550|non-aggressive|nonaggressive| +E0220551|non-alcoholic|nonalcoholic| +E0220551|non alcoholic|nonalcoholic| +E0220552|non-alcoholic|nonalcoholic| +E0220552|non alcoholic|nonalcoholic| +E0220553|non asthmatic|nonasthmatic| +E0220553|non-asthmatic|nonasthmatic| +E0220554|non serious|nonserious| +E0220554|non-serious|nonserious| +E0220555|non asthmatic|nonasthmatic| +E0220555|non-asthmatic|nonasthmatic| +E0220556|non characteristic|noncharacteristic| +E0220556|non-characteristic|noncharacteristic| +E0220557|non circulation|noncirculation| +E0220558|non-close|nonclose| +E0220559|non closed|nonclosed| +E0220560|non communicable|noncommunicable| +E0220560|non-communicable|noncommunicable| +E0220562|non-communicable disease|noncommunicable disease| +E0220562|non communicable disease|noncommunicable disease| +E0220563|non concordant|nonconcordant| +E0220563|non-concordant|nonconcordant| +E0220564|non-concordance|nonconcordance| +E0220565|non dominant|nondominant| +E0220565|non-dominant|nondominant| +E0220566|non-consecutive|nonconsecutive| +E0220567|non-contact|noncontact| +E0220567|non contact|noncontact| +E0220568|non-life-threatening|nonlife-threatening| +E0220568|non-life threatening|nonlife-threatening| +E0220568|non life-threatening|nonlife-threatening| +E0220569|non recurrent|nonrecurrent| +E0220569|non-recurrent|nonrecurrent| +E0220570|non manual|nonmanual| +E0220570|non-manual|nonmanual| +E0220571|non-insertion|noninsertion| +E0220572|non representative|nonrepresentative| +E0220572|non-representative|nonrepresentative| +E0220573|non smoking|nonsmoking| +E0220573|non-smoking|nonsmoking| +E0220574|non vegetative|nonvegetative| +E0220574|non-vegetative|nonvegetative| +E0220575|non rejection|nonrejection| +E0220575|non-rejection|nonrejection| +E0220576|non fulfillment|nonfulfillment| +E0220579|non febrile|nonfebrile| +E0220579|non-febrile|nonfebrile| +E0220580|non evident|nonevident| +E0220580|non-evident|nonevident| +E0220582|non-relative|nonrelative| +E0220582|non relative|nonrelative| +E0220583|non controlled|noncontrolled| +E0220583|non-controlled|noncontrolled| +E0220584|non existence|nonexistence| +E0220584|non-existence|nonexistence| +E0220585|non homogeneous|nonhomogeneous| +E0220585|non-homogeneous|nonhomogeneous| +E0220586|non-homogeneity|nonhomogeneity| +E0220586|non homogeneity|nonhomogeneity| +E0220587|non desire|nondesire| +E0220587|non-desire|nondesire| +E0220588|non-using|nonusing| +E0220589|non-exposure|nonexposure| +E0220590|non recipient|nonrecipient| +E0220590|non-recipient|nonrecipient| +E0220604|k|K| +E0220613|R-S|RS| +E0220620|coed|co-ed| +E0220633|e-mail|E-mail| +E0220633|email|E-mail| +E0220634|email|e-mail| +E0220634|E-mail|e-mail| +E0220639|Scotch-douche|Scotch douche| +E0220650|laminogram|laminagram| +E0220658|periodic acid Schiff|periodic acid-Schiff| +E0220658|Periodic Acid Schiff|periodic acid-Schiff| +E0220659|periodic acid Schiff|periodic acid-Schiff| +E0220659|Periodic Acid Schiff|periodic acid-Schiff| +E0220662|out of date|out-of-date| +E0220663|on duty|on-duty| +E0220664|off duty|off-duty| +E0220666|electro-physical|electrophysical| +E0220673|pre-study|prestudy| +E0220674|pre-study|prestudy| +E0220675|ear muff|earmuff| +E0220675|ear-muff|earmuff| +E0220676|roll-over|rollover| +E0220676|roll over|rollover| +E0220677|anti-retroviral|antiretroviral| +E0220678|pre-therapy|pretherapy| +E0220679|post-therapy|posttherapy| +E0220680|pre-therapy|pretherapy| +E0220681|post-therapy|posttherapy| +E0220682|micro-array|microarray| +E0220684|intra-tumorally|intratumorally| +E0220684|intratumourally|intratumorally| +E0220684|intra-tumourally|intratumorally| +E0220688|non-myeloblated|nonmyeloablated| +E0220690|non-myeloablative|nonmyeloablative| +E0220690|non-myelo-ablative|nonmyeloablative| +E0220692|anti-angiogenic|antiangiogenic| +E0220693|polyethylene-glycolated|polyethylene glycolated| +E0220695|neuro-development|neurodevelopment| +E0220696|anti-leukemia|antileukemia| +E0220696|anti-leukaemia|antileukemia| +E0220696|antileukaemia|antileukemia| +E0220711|micro-particulate|microparticulate| +E0220712|non-relapse|nonrelapse| +E0220713|non-visceral|nonviseral| +E0220714|PEGylated|pegylated| +E0220715|PEGylation|pegylation| +E0220719|deescalation|de-escalation| +E0220720|deescalate|de-escalate| +E0220724|anti-pain|antipain| +E0220737|defacto|de facto| +E0220740|zipcode|zip code| +E0220767|ante-mortem|ante mortem| +E0220767|antemortem|ante mortem| +E0220768|antemortem|ante mortem| +E0220877|end-organ|end organ| +E0220877|endorgan|end organ| +E0220878|end-artery|end artery| +E0220878|endartery|end artery| +E0220887|diazo-reaction|diazo reaction| +E0220887|diazoreaction|diazo reaction| +E0220899|cell-organ|cell organ| +E0220914|ex-officio|ex officio| +E0220920|break-even|breakeven| +E0220920|break even|breakeven| +E0220927|co-generation|cogeneration| +E0220928|co-generate|cogenerate| +E0220938|Euro|euro| +E0220939|Dinar|dinar| +E0220940|geo-thermal|geothermal| +E0220943|law-maker|lawmaker| +E0220943|law maker|lawmaker| +E0220944|lay-off|layoff| +E0220944|lay off|layoff| +E0220947|macro-economic|macroeconomic| +E0220947|macro economic|macroeconomic| +E0220949|micro-chip|microchip| +E0220950|mid-morning|midmorning| +E0220950|mid morning|midmorning| +E0220952|non-recurring|nonrecurring| +E0220952|non recurring|nonrecurring| +E0220953|non-stop|nonstop| +E0220954|off-take|offtake| +E0220955|over-capacity|overcapacity| +E0220955|over capacity|overcapacity| +E0220964|Ringgit|ringgit| +E0220965|Rupee|rupee| +E0220966|Rupiah|rupiah| +E0220973|super-computer|supercomputer| +E0220973|super computer|supercomputer| +E0220981|Yuan|yuan| +E0220987|color blind|color-blind| +E0220987|colour-blind|color-blind| +E0220987|colour blind|color-blind| +E0220987|colorblind|color-blind| +E0220987|colourblind|color-blind| +E0221083|frig|fridge| +E0221088|lunch time|lunchtime| +E0221090|tee shirt|T-shirt| +E0221091|post card|postcard| +E0221093|goal keeper|goalkeeper| +E0221115|body builder|bodybuilder| +E0221156|videodisk|videodisc| +E0221160|ink blot|inkblot| +E0221160|ink-blot|inkblot| +E0221186|stockinette|stockinet| +E0221214|tram line|tramline| +E0221240|broad leaved|broad-leaved| +E0221274|cowl|caul| +E0221277|sun lamp|sunlamp| +E0221277|sun-lamp|sunlamp| +E0221282|peri-uterine|periuterine| +E0221284|pseudo-hermaphrodite|pseudohermaphrodite| +E0221285|pre-cartilage|precartilage| +E0221287|hypno-analysis|hypnoanalysis| +E0221289|meta-psychology|metapsychology| +E0221291|macro-gametocyte|macrogametocyte| +E0221292|mirco-gametocyte|microgametocyte| +E0221295|haematogenesis|hematogenesis| +E0221298|homoiotherm|homeotherm| +E0221304|hormono-genesis|hormonogenesis| +E0221305|protozoosis|protozoiasis| +E0221323|catalyser|catalyzer| +E0221324|climato-therapy|climatotherapy| +E0221350|de-alated|dealated| +E0221350|dealate|dealated| +E0221351|de-alation|dealation| +E0221384|aestivate|estivate| +E0221397|over-populate|overpopulate| +E0221421|vermiculated|vermiculate| +E0221426|nose-blowing|nose blowing| +E0221433|ill posed|ill-posed| +E0221488|india ink|India ink| +E0221514|Skid Road|skid road| +E0221528|worm grass|wormgrass| +E0221533|Damiana|damiana| +E0221542|uva-ursi|uva ursi| +E0221546|haematosis|hematosis| +E0221550|passionflower|passion-flower| +E0221550|passion flower|passion-flower| +E0221567|Bordeaux mixture|bordeaux mixture| +E0221585|Brahminism|Brahmanism| +E0221713|finger-like|fingerlike| +E0221713|finger like|fingerlike| +E0221714|rope-like|ropelike| +E0221715|arflike|ARF-like| +E0221715|Arf-like|ARF-like| +E0221716|endocrine-like|endocrinelike| +E0221717|iodine-like|iodinelike| +E0221718|numblike|Numblike| +E0221719|numb|Numb| +E0221720|pleuropneumonialike|pleuropneumonia-like| +E0221721|rheumatoidlike|rheumatoid-like| +E0221722|viruslike|virus-like| +E0221723|sheet-like|sheetlike| +E0221724|spade-like|spadelike| +E0221724|spade like|spadelike| +E0221725|spectaclelike|spectacle-like| +E0221727|tightfisted|tight-fisted| +E0221738|gremlin|Gremlin| +E0221743|hetero-inoculation|heteroinoculation| +E0221744|auto-inoculation|autoinoculation| +E0221747|hitch-hiker|hitchhiker| +E0221765|in-phase|inphase| +E0221766|anti-phase|antiphase| +E0221779|iron-clad|ironclad| +E0221789|mal-developed|maldeveloped| +E0221794|mirco-chromosome|microchromosome| +E0221797|mid-parental|midparental| +E0221799|mis-express|misexpress| +E0221800|mis-expression|misexpression| +E0221805|multi-laminar|multilaminar| +E0221806|myo-epicardial|myoepicardial| +E0221807|nail-less|nailless| +E0221810|nervy|Nervy| +E0221814|non-adjacent|nonadjacent| +E0221815|non-canonical|noncanonical| +E0221816|non-cognate|noncognate| +E0221817|non-cognate|noncognate| +E0221818|non-ejection|nonejection| +E0221819|non-elastic|nonelastic| +E0221820|unbeknown|unbeknownst| +E0221821|unbeknown to|unbeknownst to| +E0221822|non-embryonic|nonembryonic| +E0221823|non-emotional|nonemotional| +E0221825|non-fermentable|nonfermentable| +E0221826|non-focal|nonfocal| +E0221827|non-heritable|nonheritable| +E0221828|non-inherited|noninherited| +E0221829|non-informative|noninformative| +E0221830|non-instructional|noninstructional| +E0221831|non-muscular|nonmuscular| +E0221832|non-negligible|nonnegligible| +E0221833|non-nucleated|nonnucleated| +E0221834|non-odorous|nonodorous| +E0221835|non-parental|nonparental| +E0221836|non-placental|nonplacental| +E0221837|non-repair|nonrepair| +E0221839|non-repeat|nonrepeat| +E0221840|non-repeated|nonrepeated| +E0221841|non-resistant|nonresistant| +E0221842|non-resistance|nonresistance| +E0221843|non-retinal|nonretinal| +E0221844|non-rhythmic|nonrhythmic| +E0221845|nonrhythmicity|non-rhythmicity| +E0221846|non-serous|nonserous| +E0221847|non-surface|nonsurface| +E0221848|non-translocation|nontranslocation| +E0221854|non-opposable|nonopposable| +E0221859|over-ripeness|overripeness| +E0221876|pin-cushion|pincushion| +E0221878|pitta|pita| +E0221881|precartilagenous|precartilaginous| +E0221881|pre-cartilaginous|precartilaginous| +E0221881|pre-cartilagenous|precartilaginous| +E0221884|pre-war|prewar| +E0221886|prototheria|Prototheria| +E0221897|registerable|registrable| +E0221898|re-inversion|reinversion| +E0221899|re-invert|reinvert| +E0221901|re-ligation|religation| +E0221902|re-ligate|religate| +E0221914|semi-comatose|semicomatose| +E0221922|photo-stimulable|photostimulable| +E0221927|sub-assembly|subassembly| +E0221928|sub-band|subband| +E0221929|sub-equatorial|subequatorial| +E0221930|sub-form|subform| +E0221933|sun-lit|sunlit| +E0221934|super-class|superclass| +E0221947|tri-molecular|trimolecular| +E0221948|bi-molecular|bimolecular| +E0221949|uni-molecular|unimolecular| +E0221950|tetra-molecular|tetramolecular| +E0221964|twirler|Twirler| +E0221973|under-representation|underrepresentation| +E0221974|under-represent|underrepresent| +E0221976|un-engineered|unengineered| +E0221986|up-gaze|upgaze| +E0221986|up gaze|upgaze| +E0221987|down-gaze|downgaze| +E0221987|down gaze|downgaze| +E0221988|up-sweep|upsweep| +E0222000|unbaptised|unbaptized| +E0222004|uncalled for|uncalled-for| +E0222026|non-denominational|nondenominational| +E0222042|on hand|on-hand| +E0222099|non-coerced|noncoerced| +E0222117|unspoilt|unspoiled| +E0222142|non-beverage|nonbeverage| +E0222143|non-fat|nonfat| +E0222144|non-glandular|nonglandular| +E0222146|non-projective|nonprojective| +E0222147|non-regenerative|nonregenerative| +E0222150|non-condensing|noncondensing| +E0222151|non-electric|nonelectric| +E0222152|non-electrical|nonelectrical| +E0222153|non-absorbing|nonabsorbing| +E0222155|non-accident|nonaccident| +E0222156|non-adhered|nonadhered| +E0222157|non-administration|nonadministration| +E0222159|non-antibiotic|nonantibiotic| +E0222160|non-antibiotic|nonantibiotic| +E0222161|non-argentaffin|nonargentaffin| +E0222164|non-articular|nonarticular| +E0222166|non-assertiveness|nonassertiveness| +E0222167|non-assertive|nonassertive| +E0222168|non-attending|nonattending| +E0222169|non-autogenous|nonautogenous| +E0222170|non-autoimmune|nonautoimmune| +E0222171|non-autologous|nonautologous| +E0222172|non-automated|nonautomated| +E0222173|non-biomedical|nonbiomedical| +E0222174|non-biting|nonbiting| +E0222175|non-blood|nonblood| +E0222176|non-capsid|noncapsid| +E0222177|non-chromosomal|nonchromosomal| +E0222178|non-clathrin|nonclathrin| +E0222179|non-collision|noncollision| +E0222180|non-committed|noncommitted| +E0222183|non-communicative|noncommunicative| +E0222185|non-complexed|noncomplexed| +E0222186|non-congestive|noncongestive| +E0222187|non-contrast|noncontrast| +E0222188|non-convoluted|nonconvoluted| +E0222189|non-convulsive|nonconvulsive| +E0222190|non-corporal|noncorporal| +E0222191|noncovered|non-covered| +E0222192|non-crushing|noncrushing| +E0222193|non-cytopathogenic|noncytopathogenic| +E0222194|non-degradable|nondegradable| +E0222195|non-delusional|nondelusional| +E0222196|nondescent|non-descent| +E0222197|non-developmental|nondevelopmental| +E0222198|nondirect|non-direct| +E0222199|non-directed|nondirected| +E0222200|non-disposable|nondisposable| +E0222203|nonembolic|non-embolic| +E0222204|non-enveloped|nonenveloped| +E0222205|non-enzyme|nonenzyme| +E0222206|non-erosive|nonerosive| +E0222207|non-excisional|nonexcisional| +E0222208|non-exertional|nonexertional| +E0222209|non-fermenter|nonfermenter| +E0222210|non-fetal|nonfetal| +E0222210|nonfoetal|nonfetal| +E0222210|non-foetal|nonfetal| +E0222211|non-fibrillar|nonfibrillar| +E0222212|non-filarial|nonfilarial| +E0222213|non-filling|nonfilling| +E0222215|non-fluoride|nonfluoride| +E0222216|non-gonorrheal|nongonorrheal| +E0222217|non-gravid|nongravid| +E0222218|non-hairy|nonhairy| +E0222219|non-heated|nonheated| +E0222220|non-hematic|nonhematic| +E0222222|non-histone|nonhistone| +E0222223|nonhydatidiform|non-hydatidiform mole| +E0222225|nonhydatiform|non-hydatidiform| +E0222226|non-hypertrophic|nonhypertrophic| +E0222227|non-icteric|nonicteric| +E0222228|non-implantation|nonimplantation| +E0222229|non-incisional|nonincisional| +E0222230|non-indwelling|nonindwelling| +E0222231|non-infective|noninfective| +E0222232|non-inflatable|noninflatable| +E0222233|non-injectable|noninjectable| +E0222235|non-lipid|nonlipid| +E0222236|non-mainstream|nonmainstream| +E0222237|non-megaloblastic|nonmegaloblastic| +E0222238|non-microbial|nonmicrobial| +E0222239|non-monetary|nonmonetary| +E0222240|non-motor|nonmotor| +E0222241|nonmotorised|nonmotorized| +E0222241|non-motorized|nonmotorized| +E0222241|non-motorised|nonmotorized| +E0222242|non-nutritional|nonnutritional| +E0222243|non-obliterative|nonobliterative| +E0222244|non-obstetric|nonobstetric| +E0222245|non-occlusion|nonocclusion| +E0222246|non-arenteral|nonparenteral| +E0222247|non-paroxysmal|nonparoxysmal| +E0222248|non-petroleum|nonpetroleum| +E0222249|non-photochromogenic|nonphotochromogenic| +E0222251|non-phototrophic|nonphototrophic| +E0222252|non-pigmentation|nonpigmentation| +E0222253|non-pituitary|nonpituitary| +E0222254|non-pleuritic|nonpleuritic| +E0222255|non-pneumatic|nonpneumatic| +E0222256|non-pneumonic|nonpneumonic| +E0222257|non-poliovirus|nonpoliovirus| +E0222258|non-poliovirus|nonpoliovirus| +E0222259|non-pollutant|nonpollutant| +E0222260|nonpositioning|non-positioning| +E0222261|non-pressurized|nonpressurized| +E0222261|non-pressurised|nonpressurized| +E0222262|non-problematic|nonproblematic| +E0222263|non-psychotropic|nonpsychotropic| +E0222264|non-puerperal|nonpuerperal| +E0222265|non-punitive|nonpunitive| +E0222266|non-quantitative|nonquantitative| +E0222267|non-radiation|nonradiation| +E0222268|non-reassuring|nonreassuring| +E0222269|non-redistributing|nonredistributing| +E0222270|non-refrigerated|nonrefrigerated| +E0222271|non-removable|nonremovable| +E0222272|non-repressible|nonrepressible| +E0222273|non-resorbable|nonresorbable| +E0222274|non-reversal|nonreversal| +E0222275|non-road|nonroad| +E0222276|off-road|offroad| +E0222277|on-road|onroad| +E0222278|non-rotation|nonrotation| +E0222279|non-rotational|nonrotational| +E0222280|non-ruptured|nonruptured| +E0222281|non-scarring|nonscarring| +E0222281|non scarring|nonscarring| +E0222282|non-segmental|nonsegmental| +E0222283|non-seminoma|nonseminoma| +E0222284|non-senile|nonsenile| +E0222286|nonsensitisation|nonsensitization| +E0222287|non-skeletal|nonskeletal| +E0222288|non-spectacle|nonspectacle| +E0222289|non-spindle|nonspindle| +E0222290|non-staphylococcal|nonstaphylococcal| +E0222291|non-stereotactic|nonstereotactic| +E0222292|non-sterile|nonsterile| +E0222293|non-suppressible|nonsuppressible| +E0222294|non-syphilitic|nonsyphilitic| +E0222295|non-syphilitic|nonsyphilitic| +E0222296|non-teratogenic|nonteratogenic| +E0222298|non-threatening|nonthreatening| +E0222299|non-thrombopenic|nonthrombopenic| +E0222300|non-thyroid|nonthyroid| +E0222301|non-traffic|nontraffic| +E0222302|non-transsexual|nontranssexual| +E0222303|non-triggering|nontriggering| +E0222305|non-typhoid|nontyphoid| +E0222305|non typhoid|nontyphoid| +E0222306|non-ulcer|nonulcer| +E0222307|non-ulcerative|nonulcerative| +E0222308|non-venom|nonvenom| +E0222309|non-verbally|nonverbally| +E0222310|non-vertebrate|nonvertebrate| +E0222311|non-vertebrate|nonvertebrate| +E0222312|non-water|nonwater| +E0222313|non-weightbearing|nonweightbearing| +E0222313|non-weight bearing|nonweightbearing| +E0222313|nonweight bearing|nonweightbearing| +E0222313|nonweight-bearing|nonweightbearing| +E0222313|non-weight-bearing|nonweightbearing| +E0222314|non-woven|nonwoven| +E0222319|non-judgmentally|nonjudgmentally| +E0222322|pre-menstrually|premenstrually| +E0222324|post-menstrually|postmenstrually| +E0222337|Behcet syndrome|Behcet's syndrome| +E0222337|Behcets syndrome|Behcet's syndrome| +E0222338|Curling ulcer|Curling's ulcer| +E0222338|Curlings ulcer|Curling's ulcer| +E0222339|Cushing Syndrome|Cushing's Syndrome| +E0222339|Cushings Syndrome|Cushing's Syndrome| +E0222356|daemon|demon| +E0222361|fetich|fetish| +E0222364|paperbacked|paperback| +E0222375|knowledge base|knowledgebase| +E0222380|synch|sync| +E0222381|synch|sync| +E0222383|webmaster|Webmaster| +E0222384|Website|website| +E0222384|web site|website| +E0222384|Web site|website| +E0222385|home page|homepage| +E0222392|thru|through| +E0222396|boolean|Boolean| +E0222397|collectable|collectible| +E0222398|collectable|collectible| +E0222399|cyber space|cyberspace| +E0222400|file name|filename| +E0222401|fire wall|firewall| +E0222404|hard core|hardcore| +E0222406|mail box|mailbox| +E0222413|spread sheet|spreadsheet| +E0222417|USENET|Usenet| +E0222418|Webpage|webpage| +E0222418|web page|webpage| +E0222418|Web page|webpage| +E0222420|log-in|login| +E0222422|look up|lookup| +E0222422|look-up|lookup| +E0222423|off-line|offline| +E0222424|off-line|offline| +E0222441|bolas|bola| +E0222450|Chitinase A|chitinase A| +E0222453|Chitinase C|chitinase C| +E0222463|diva|DIVA| +E0222469|extra-retinal|extraretinal| +E0222478|intra-thyroid|intrathyroid| +E0222484|knock-down|knockdown| +E0222484|knock down|knockdown| +E0222487|mark-up|markup| +E0222487|mark up|markup| +E0222488|swim-up|swimup| +E0222488|swim up|swimup| +E0222489|cock-up|cockup| +E0222491|multi-phase|multiphase| +E0222492|multi-shot|multishot| +E0222506|non-stationary|nonstationary| +E0222512|pre-contemplation|precontemplation| +E0222514|pre-patent|prepatent| +E0222515|pre-patency|prepatency| +E0222516|repellant|repellent| +E0222519|pre-storage|prestorage| +E0222520|post-storage|poststorage| +E0222521|post-storage|poststorage| +E0222522|pre-surgery|presurgery| +E0222523|pre-surgery|presurgery| +E0222527|prof|prof.| +E0222529|proto-cerebrum|protocerebrum| +E0222531|radioopacity|radiopacity| +E0222531|radio-opacity|radiopacity| +E0222536|semi-rigid|semirigid| +E0222537|semi-rigidity|semirigidity| +E0222543|water-fowl|waterfowl| +E0222543|water fowl|waterfowl| +E0222569|sub-dominant|subdominant| +E0222571|radio-biologic|radiobiologic| +E0222572|radio-label|radiolabel| +E0222572|radio label|radiolabel| +E0222573|free wheel|freewheel| +E0222574|sand-blast|sandblast| +E0222577|bubble gum|bubblegum| +E0222582|counter-adaptation|counteradaptation| +E0222583|advertizing|advertising| +E0222584|counter-advertising|counteradvertising| +E0222586|counter-aggression|counteraggression| +E0222587|counter argue|counterargue| +E0222588|counter-argument|counterargument| +E0222593|counter-charge|countercharge| +E0222593|counter charge|countercharge| +E0222596|counter-demand|counterdemand| +E0222598|counter-evidence|counterevidence| +E0222598|counter evidence|counterevidence| +E0222599|counter force|counterforce| +E0222599|counter-force|counterforce| +E0222600|counter-hypotheis|counterhypothesis| +E0222600|counter hypotheis|counterhypothesis| +E0222601|counter-image|counterimage| +E0222602|counter-influence|counterinfluence| +E0222611|counter-reaction|counterreaction| +E0222612|counter-reform|counterreform| +E0222613|counter-statement|counterstatement| +E0222615|counter-stream|counterstream| +E0222617|counter-suggestion|countersuggestion| +E0222619|counter-surveillance|countersurveillance| +E0222620|counter-tendency|countertendency| +E0222621|counter-terrorism|counterterrorism| +E0222622|counter-terrorist|counterterrorist| +E0222623|counter-threat|counterthreat| +E0222624|counter-trend|countertrend| +E0222629|over-adjustment|overadjustment| +E0222631|over-aggressive|overaggressive| +E0222634|over-alertness|overalertness| +E0222635|over-ambitious|overambitious| +E0222638|over-amplified|overamplified| +E0222640|overanalyse|overanalyze| +E0222644|over-arouse|overarousal| +E0222645|over-assessement|overassessment| +E0222649|over-broad|overbroad| +E0222650|over-careful|overcareful| +E0222653|over-cautious|overcautious| +E0222654|over-cautiousness|overcautiousness| +E0222655|over-centralization|overcentralization| +E0222657|over-classification|overclassification| +E0222661|over-complex|overcomplex| +E0222663|over-compliance|overcompliance| +E0222665|over-investigate|overinvestigate| +E0222666|over-investigation|overinvestigation| +E0222668|over-compression|overcompression| +E0222669|over-concentration|overconcentration| +E0222672|over-concern|overconcern| +E0222676|over-conservative|overconservative| +E0222677|over-construct|overconstruct| +E0222681|over-critical|overcritical| +E0222685|over-grazing|overgrazing| +E0222688|over-demanding|overdemanding| +E0222689|over-demand|overdemand| +E0222690|over-dependence|overdependence| +E0222691|over-dependent|overdependent| +E0222693|over-differentiation|overdifferentiation| +E0222694|overdramatise|overdramatize| +E0222695|overdramatisation|overdramatization| +E0222697|over-eager|overeager| +E0222697|over eager|overeager| +E0222698|over-eagerness|overeagerness| +E0222699|over-education|overeducation| +E0222702|over-elaboration|overelaboration| +E0222704|over-emotional|overemotional| +E0222706|over-energetic|overenergetic| +E0222707|over-enthusiasm|overenthusiasm| +E0222713|over-excitement|overexcitement| +E0222715|over-expectation|overexpectation| +E0222717|over-extraction|overextraction| +E0222718|over-familiar|overfamiliar| +E0222720|over-fat|overfat| +E0222722|overfertilisation|overfertilization| +E0222722|over-fertilization|overfertilization| +E0222723|overfertilise|overfertilize| +E0222727|overgeneralisation|overgeneralization| +E0222727|over-generalisation|overgeneralization| +E0222727|over-generalization|overgeneralization| +E0222728|overgeneralise|overgeneralize| +E0222728|over-generalize|overgeneralize| +E0222728|over-generalise|overgeneralize| +E0222730|over-harvest|overharvest| +E0222731|over-hasty|overhasty| +E0222732|over-hastiness|overhastiness| +E0222736|over-identification|overidentification| +E0222737|over-identify|overidentify| +E0222738|over-interpretation|overinterpretation| +E0222739|over-interpret|overinterpret| +E0222740|over-investment|overinvestment| +E0222741|over-invest|overinvest| +E0222742|over-laden|overladen| +E0222748|over-management|overmanagement| +E0222749|under-management|undermanagement| +E0222750|over-medicate|overmedicate| +E0222751|over-medication|overmedication| +E0222752|under-medicate|undermedicate| +E0222753|under-medication|undermedication| +E0222754|over-optimism|overoptimism| +E0222755|over-optimistic|overoptimistic| +E0222757|over-prescribe|overprescribe| +E0222758|over-prescription|overprescription| +E0222758|over prescription|overprescription| +E0222759|under-prescription|underprescription| +E0222759|under prescription|underprescription| +E0222766|over-promotion|overpromotion| +E0222766|over promotion|overpromotion| +E0222767|over-protect|overprotect| +E0222768|over-protection|overprotection| +E0222769|over-react|overreact| +E0222770|over-reaction|overreaction| +E0222770|over reaction|overreaction| +E0222771|under-react|underreact| +E0222774|over-regulation|overregulation| +E0222775|over-reliance|overreliance| +E0222778|over-respond|overrespond| +E0222778|over respond|overrespond| +E0222779|over-response|overresponse| +E0222779|over response|overresponse| +E0222780|over-rigid|overrigid| +E0222787|over-sophisticated|oversophisticated| +E0222788|overspecialisation|overspecialization| +E0222789|overspecialise|overspecialize| +E0222791|over-supply|oversupply| +E0222792|under-supply|undersupply| +E0222793|over-stress|overstress| +E0222794|over-stress|overstress| +E0222795|over-suspicious|oversuspicious| +E0222796|under-suspicious|undersuspicious| +E0222798|over-talkative|overtalkative| +E0222803|overutilisation|overutilization| +E0222803|over-utilisation|overutilization| +E0222803|over-utilization|overutilization| +E0222804|overutilise|overutilize| +E0222804|over-utilize|overutilize| +E0222804|over-utilise|overutilize| +E0222808|over-zealous|overzealous| +E0222811|anthelminthic|antihelminthic| +E0222811|anti-helminthic|antihelminthic| +E0222811|anthelmintic|antihelminthic| +E0222811|antihelmintic|antihelminthic| +E0222811|anti-helmintic|antihelminthic| +E0222813|anti-hormone|antihormone| +E0222821|micro-economics|microeconomics| +E0222822|pharmacogenomics|pharmacogenomics| +E0222837|summarisation|summarization| +E0222838|over-eruption|overeruption| +E0222838|over eruption|overeruption| +E0222839|over-erupt|overerupt| +E0222839|over erupt|overerupt| +E0222845|over-hydrated|overhydrated| +E0222846|over-ingestion|overingestion| +E0222847|over-ingest|overingest| +E0222848|over-sedation|oversedation| +E0222848|over sedation|oversedation| +E0222852|over-closure|overclosure| +E0222853|over-extend|overextend| +E0222854|over-extension|overextension| +E0222855|over-grafting|overgrafting| +E0222856|over-arm|overarm| +E0222857|over-accumulate|overaccumulate| +E0222858|over-accumulation|overaccumulation| +E0222859|overaged|overage| +E0222859|over-aged|overage| +E0222861|over-coat|overcoat| +E0222863|over-complete|overcomplete| +E0222864|over-determined|overdetermined| +E0222866|overdistention|overdistension| +E0222866|over-distention|overdistension| +E0222866|over-distension|overdistension| +E0222872|under-drainage|underdrainage| +E0222874|over-excitability|overexcitability| +E0222875|over-excitable|overexcitable| +E0222883|over-fatigue|overfatigue| +E0222884|over-fit|overfit| +E0222886|over-fitting|overfitting| +E0222888|over-functioning|overfunctioning| +E0222890|over-general|overgeneral| +E0222891|over-generality|overgenerality| +E0222892|over-layer|overlayer| +E0222895|over-pass|overpass| +E0222899|over-read|overread| +E0222899|over read|overread| +E0222900|over-read|overread| +E0222907|over-tension|overtension| +E0222908|over-voltage|overvoltage| +E0222911|over-wet|overwet| +E0222912|over-write|overwrite| +E0222922|Alice in wonderland syndrome|Alice in Wonderland syndrome| +E0222923|anti-apoptotic|antiapoptotic| +E0222924|anti-proliferative|antiproliferative| +E0222933|lympho-duct|lymphoduct| +E0222961|hypo-osmosis|hyposmosis| +E0222962|hyper-osmosis|hyperosmosis| +E0222967|pyarthrosis|pyoarthrosis| +E0222967|pyo-arthrosis|pyoarthrosis| +E0222973|athyreosis|athyrosis| +E0222976|biocoenosis|biocenosis| +E0222977|coenosis|cenosis| +E0222988|electroendo-osmosis|electroendosmosis| +E0222988|electro-endosmosis|electroendosmosis| +E0222991|endo-symbiosis|endosymbiosis| +E0222999|hyper-lordosis|hyperlordosis| +E0223010|pre-cancerosis|precancerosis| +E0223014|silico-anthracosis|silicoanthracosis| +E0223021|homo-bisexual|homobisexual| +E0223022|homo-bisexuality|homobisexuality| +E0223023|homo-bisexual|homobisexual| +E0223028|intra-sexual|intrasexual| +E0223029|multi-sexual|multisexual| +E0223031|non-heterosexual|nonheterosexual| +E0223031|non heterosexual|nonheterosexual| +E0223033|post-sexual|postsexual| +E0223034|socio-sexual|sociosexual| +E0223036|trans-sexually|transsexually| +E0223069|micro-rheometry|microrheometry| +E0223071|ohm-meter|ohmmeter| +E0223074|photo-densitometer|photodensitometer| +E0223083|spectro-radiometer|spectroradiometer| +E0223084|spectro-radiometry|spectroradiometry| +E0223115|bio-informatic|bioinformatic| +E0223116|sub-zone|subzone| +E0223123|pseudo-seizure|pseudoseizure| +E0223124|osmo-regulator|osmoregulator| +E0223125|pro-metaphase|prometaphase| +E0223126|plexiglas|Plexiglas| +E0223126|Plexiglass|Plexiglas| +E0223126|plexiglass|Plexiglas| +E0223131|bio-absorbable|bioabsorbable| +E0223133|sero-subtype|serosubtype| +E0223135|neuro-stimulator|neurostimulator| +E0223139|under-dosage|underdosage| +E0223147|pro-receptor|proreceptor| +E0223149|pro-biotic|probiotic| +E0223153|breathalyse|breathalyze| +E0223155|macro-aneurysm|macroaneurysm| +E0223156|meta-cognition|metacognition| +E0223157|buckminsterfullerene|Buckminsterfullerene| +E0223158|face-mask|facemask| +E0223158|face mask|facemask| +E0223159|spongio-trophoblast|spongiotrophoblast| +E0223160|pseudo-hole|pseudohole| +E0223161|water-birth|waterbirth| +E0223161|water birth|waterbirth| +E0223162|Saddlebred|saddlebred| +E0223163|American saddlebred|American Saddlebred| +E0223164|pseudo-receptor|pseudoreceptor| +E0223166|infrasound|infrasound| +E0223169|neuro-mediator|neuromediator| +E0223181|nanolitre|nanoliter| +E0223181|nano-litre|nanoliter| +E0223181|nanoliter|nanoliter| +E0223184|mouth-rinse|mouthrinse| +E0223185|radio-conjugate|radioconjugate| +E0223186|pre-teen|preteen| +E0223187|pre-teen|preteen| +E0223190|bio-resorbable|bioresorbable| +E0223194|de-clotting|declotting| +E0223196|tumourlet|tumorlet| +E0223197|hand-rail|handrail| +E0223199|tabletop|table-top| +E0223200|pre-amplifier|preamplifier| +E0223201|hand-out|handout| +E0223202|feed-lot|feedlot| +E0223203|bili-protein|biliprotein| +E0223207|neo-epitope|neoepitope| +E0223208|mega-channel|megachannel| +E0223210|wall-stent|wallstent| +E0223214|abstracter|abstractor| +E0223215|stereo-test|stereotest| +E0223216|mini-pill|minipill| +E0223217|micro-pill|micropill| +E0223220|pseudo-porphyria|pseudoporphyria| +E0223221|neuro-parsin|neuroparsin| +E0223228|poly-trauma|polytrauma| +E0223234|co-integrator|cointegrator| +E0223239|electroconisation|electroconization| +E0223239|electro-conisation|electroconization| +E0223239|electro-conization|electroconization| +E0223240|chemo-type|chemotype| +E0223243|sun-block|sunblock| +E0223243|sun block|sunblock| +E0223251|micro-haemorrhage|microhaemorrhage| +E0223251|micro-hemorrhage|microhaemorrhage| +E0223251|microhemorrhage|microhaemorrhage| +E0223254|Dopler flowire|Dopler FloWire| +E0223254|Dopler flow wire|Dopler FloWire| +E0223255|flowire|Flowire| +E0223256|imino-sugar|iminosugar| +E0223257|handle-bar|handlebar| +E0223257|handle bar|handlebar| +E0223258|listserve|listserv| +E0223259|listserver|list server| +E0223261|rottweiler|Rottweiler| +E0223262|ovolacto vegetarian|ovolacto-vegetarian| +E0223262|ovo-lacto-vegetarian|ovolacto-vegetarian| +E0223262|ovo-lacto vegetarian|ovolacto-vegetarian| +E0223263|ovolacto vegetarian|ovolacto-vegetarian| +E0223263|ovo-lacto-vegetarian|ovolacto-vegetarian| +E0223263|ovo-lacto vegetarian|ovolacto-vegetarian| +E0223264|centro-blast|centroblast| +E0223266|immuno-absorbent|immunoabsorbent| +E0223267|half-time|halftime| +E0223273|flow-rate|flowrate| +E0223273|flow rate|flowrate| +E0223278|urolume|UroLume| +E0223279|psycho-syndrome|psychosyndrome| +E0223280|micro-sample|microsample| +E0223281|crypto-chrome|cryptochrome| +E0223285|anti-termination|antitermination| +E0223288|de-fluoridation|defluoridation| +E0223290|desulphurisation|desulfurization| +E0223290|desulfurisation|desulfurization| +E0223290|desulphurization|desulfurization| +E0223291|desulphurise|desulfurize| +E0223291|desulfurise|desulfurize| +E0223291|desulphurize|desulfurize| +E0223296|semi-conduction|semiconduction| +E0223297|thermo-reception|thermoreception| +E0223298|bush-baby|bushbaby| +E0223298|bush baby|bushbaby| +E0223299|white-fly|whitefly| +E0223299|white fly|whitefly| +E0223315|prepro-somatostatin|preprosomatostatin| +E0223315|pre-pro-somatostatin|preprosomatostatin| +E0223315|pre-prosomatostatin|preprosomatostatin| +E0223317|saiko-saponin|saikosaponin| +E0223319|spring-hare|springhare| +E0223319|spring hare|springhare| +E0223325|photo-multiplier|photomultiplier| +E0223336|pseudovitamin B(12)|pseudovitamin B12| +E0223339|feto-fetal transfusion|fetofetal transfusion| +E0223340|thorough-fare|thoroughfare| +E0223341|pre-sleep|presleep| +E0223342|post-vagotomy|postvagotomy| +E0223344|post-conceptual age|postconceptual age| +E0223347|post-pancreatectomy|postpancreatectomy| +E0223348|post-pancreatectomy|postpancreatectomy| +E0223350|co-operative|cooperative| +E0223351|co-operativeness|cooperativeness| +E0223359|polyvinyl-chloride|polyvinylchloride| +E0223359|polyvinyl chloride|polyvinylchloride| +E0223361|ear-mold|earmold| +E0223362|anti-smooth muscle antibody|antismooth muscle antibody| +E0223363|day-lily|daylily| +E0223371|steinbok|steenbok| +E0223372|wigeon|widgeon| +E0223384|bullrush|bulrush| +E0223388|palmated|palmate| +E0223389|trans-personal|transpersonal| +E0223402|reebok|rhebok| +E0223415|bitter-rot|bitter rot| +E0223425|brazier|brasier| +E0223427|angio-tomography|angiotomography| +E0223431|electro-immunoassay|electroimmunoassay| +E0223439|nano-technology|nanotechnology| +E0223440|nano-technological|nanotechnological| +E0223486|fly-bane|flybane| +E0223495|child-care|childcare| +E0223495|child care|childcare| +E0223496|femto-molar|femtomolar| +E0223498|gar-pike|garpike| +E0223499|nitro-aspirin|nitroaspirin| +E0223500|nitro-flurbiprofen|nitroflurbiprofen| +E0223501|wait-list|waitlist| +E0223503|bio-terrorism|bioterrorism| +E0223511|uni-lineage|unilineage| +E0223512|bio-warfare|biowarfare| +E0223513|nucleo-base|nucleobase| +E0223515|jaguarondi|jaguarundi| +E0223518|pseudo-cocaine|pseudococaine| +E0223522|malleefowl|Mallee Fowl| +E0223524|under-employed|underemployed| +E0223524|under employed|underemployed| +E0223525|peri-menstrual|perimenstrual| +E0223534|moth-midge|mothmidge| +E0223537|picoliter|picolitre| +E0223538|picoNewton|piconewton| +E0223538|pico-newton|piconewton| +E0223540|bacterio-plankton|bacterioplankton| +E0223546|deflux|Deflux| +E0223560|binge-eating|binge eating| +E0223561|non-melanoma skin cancer|nonmelanoma skin cancer| +E0223563|trans-vaginal ultrasound|transvaginal ultrasound| +E0223576|third and fourth pharyngeal pouch syndrome|third-fourth pharyngeal pouch syndrome| +E0223580|anti-diabetic agents|antidiabetic agent| +E0223609|myelo-proliferative disorder|myeloproliferative disorder| +E0223611|sex-chromosome disorder|sex chromosome disorder| +E0223612|lympho-proliferative disorder|lymphoproliferative disorder| +E0223613|posttransplantation lympho-proliferative disorder|posttransplantation lymphoproliferative disorder| +E0223617|seatbelt|seat belt| +E0223626|tumour marker|tumor marker| +E0223631|post-mortem examination|postmortem examination| +E0223636|deep-vein thrombosis|deep vein thrombosis| +E0223641|coal workers' pneumoconiosis|coal worker's pneumoconiosis| +E0223644|cat-cry syndrome|cat cry syndrome| +E0223645|anti-phospholipid antibody syndrome|antiphospholipid antibody syndrome| +E0223653|white-coat hypertension|white coat hypertension| +E0223654|white-coat hypertensive|white coat hypertensive| +E0223658|jetlag|jet lag| +E0223658|jet-lag|jet lag| +E0223661|renal-cell cancer|renal cell cancer| +E0223664|sulpha drug|sulfa drug| +E0223674|Alagille's syndrome|Alagille syndrome| +E0223690|postremission therapy|postremission therapy| +E0223693|tumour debulking|tumor debulking| +E0223701|anti-coagulant agent|anticoagulant agent| +E0223705|anti-fungal agent|antifungal agent| +E0223734|herniated disk|herniated disc| +E0223743|anti-viral agent|antiviral agent| +E0223747|subconjunctival haemorrhage|subconjunctival hemorrhage| +E0223747|sub-conjunctival haemorrhage|subconjunctival hemorrhage| +E0223747|sub-conjunctival hemorrhage|subconjunctival hemorrhage| +E0223758|computed-tomographic colography|computed tomographic colography| +E0223790|Medigap|medigap| +E0223804|anti-fibrinolytic|antifibrinolytic| +E0223814|myotic|miotic| +E0223814|meiotic|miotic| +E0223818|grassfrog|grass frog| +E0223841|ai|ayu| +E0223844|chilli pepper|chili pepper| +E0223851|rabbitfish|rabbit fish| +E0223864|selftreatment|self-treatment| +E0223864|self treatment|self-treatment| +E0223871|bilbi|bilby| +E0223871|bielby|bilby| +E0223938|apiol|apiole| +E0223964|beggar's ticks|beggar-ticks| +E0223994|cheer pine|chir pine| +E0224011|wapata|wapatoo| +E0224011|wapato|wapatoo| +E0224011|wappato|wapatoo| +E0224027|gumi|goumi| +E0224057|plerom|plerome| +E0224063|rambotan|rambutan| +E0224063|ramboetan|rambutan| +E0224063|ramboutan|rambutan| +E0224063|rambustan|rambutan| +E0224104|tanier|tania| +E0224104|tannia|tania| +E0224104|tanyah|tania| +E0224104|tanya|tania| +E0224135|woadwax|woadwaxen| +E0224138|bi-culturalism|biculturalism| +E0224141|hypoglobulinaemia|hypoglobulinemia| +E0224144|kiwi fruit|kiwifruit| +E0224145|chapatti|chapati| +E0224152|fish bone|fishbone| +E0224168|sweet corn|sweetcorn| +E0224170|wood-rat|woodrat| +E0224170|wood rat|woodrat| +E0224171|bloodfluke|blood fluke| +E0224176|hippie|hippy| +E0224180|counter-culture|counterculture| +E0224180|counter culture|counterculture| +E0224181|counter-cultural|countercultural| +E0224183|Druse|Druze| +E0224189|Huasteca|Huasteco| +E0224189|Huastec|Huasteco| +E0224189|Huaxtec|Huasteco| +E0224195|Shoshonee|Shoshone| +E0224195|Shoshoni|Shoshone| +E0224196|Yanomamo|Yanomama| +E0224196|Yanomami|Yanomama| +E0224221|esterosis|oestrosis| +E0224232|apyrexy|apyrexia| +E0224234|bed-bound|bedbound| +E0224234|bed bound|bedbound| +E0224235|body mass|bodymass| +E0224236|cortico-dependence|corticodependence| +E0224237|corticodependant|corticodependent| +E0224237|cortico-dependent|corticodependent| +E0224237|cortico-dependant|corticodependent| +E0224242|frontload|front-load| +E0224248|multi-gravid|multigravid| +E0224249|uni-gravida|unigravida| +E0224250|secundi-gravida|secundigravida| +E0224251|non-gravida|nongravida| +E0224252|neo-angiogenesis|neoangiogenesis| +E0224253|neovascularise|neovascularize| +E0224255|neo-vascularized|neovascularized| +E0224256|normo-cellularity|normocellularity| +E0224257|play-group|playgroup| +E0224257|play group|playgroup| +E0224258|poly-substance|polysubstance| +E0224259|post-datism|postdatism| +E0224260|post-date|postdate| +E0224262|pre-shock|preshock| +E0224263|pre-shock|preshock| +E0224265|terato-zoospermia|teratozoospermia| +E0224267|under-dialysis|underdialysis| +E0224268|undervirilisation|undervirilization| +E0224268|undervirilization|undervirilization| +E0224268|under-virilisation|undervirilization| +E0224269|under-virilized|undervirilized| +E0224282|electro-osmosis|electroosmosis| +E0224285|photo-morphogenesis|photomorphogenesis| +E0224291|Langue d'oc|Languedoc| +E0224293|anti-anginal|antianginal| +E0224298|fund raising|fundraising| +E0224298|fund-raising|fundraising| +E0224300|counter-conditioning|counterconditioning| +E0224300|counter conditioning|counterconditioning| +E0224320|pre-op|preop| +E0224326|laser in-situ keratomileusis|laser in situ keratomileusis| +E0224335|elder-care|eldercare| +E0224335|elder care|eldercare| +E0224338|immuno-senescence|immunosenescence| +E0224345|shin-bone|shinbone| +E0224345|shin bone|shinbone| +E0224347|micro-orchidism|microorchidism| +E0224358|frisbee|Frisbee| +E0224361|Menomini|Menominee| +E0224363|non-refugee|nonrefugee| +E0224365|pain-free|painfree| +E0224365|pain free|painfree| +E0224367|smoke-free|smokefree| +E0224367|smoke free|smokefree| +E0224369|symptom-free|symptomfree| +E0224369|symptom free|symptomfree| +E0224370|tumor-free|tumorfree| +E0224370|tumor free|tumorfree| +E0224381|blue-cone monochromat|blue cone monochromat| +E0224382|green-cone monochromat|green cone monochromat| +E0224383|engramme|engram| +E0224393|letdown reflex|let-down reflex| +E0224393|let down reflex|let-down reflex| +E0224394|Brushfield spot|Brushfield's spot| +E0224403|thigh bone|thighbone| +E0224410|breast-bone|breastbone| +E0224410|breast bone|breastbone| +E0224415|peepul|pipal| +E0224415|peepal|pipal| +E0224418|cony|coney| +E0224421|goldfields|gold fields| +E0224423|pearl-oyster|pearl oyster| +E0224424|rosebay|rose-bay| +E0224428|teasle|teasel| +E0224428|teazel|teasel| +E0224428|teazle|teasel| +E0224432|wood-louse|wood louse| +E0224432|woodlouse|wood louse| +E0224433|shoveller|shoveler| +E0224434|northern shoveller|northern shoveler| +E0224436|bibiru|bebeeru| +E0224438|zen|Zen| +E0224449|archeocyte|archaeocyte| +E0224458|Lilliputian|lilliputian| +E0224463|signaler|signaller| +E0224471|shrew mouse|shrewmouse| +E0224471|shrew-mouse|shrewmouse| +E0224472|deer mouse|deermouse| +E0224473|wood mouse|woodmouse| +E0224474|percheron|Percheron| +E0224476|Aureusvirus|aureusvirus| +E0224477|Begomovirus|begomovirus| +E0224478|Bornavirus|bornavirus| +E0224479|Crinivirus|crinivirus| +E0224481|erythrovirus|Erythrovirus| +E0224482|Fabavirus|fabavirus| +E0224488|newsvendor|news vendor| +E0224492|restauranteur|restaurateur| +E0224495|guide-book|guidebook| +E0224495|guide book|guidebook| +E0224498|momento|memento| +E0224515|skull|scull| +E0224517|harquebus|arquebus| +E0224528|sulphydration|sulfhydration| +E0224535|nontypable|nontypeable| +E0224535|non-typeable|nontypeable| +E0224535|non-typable|nontypeable| +E0224538|rechargable|rechargeable| +E0224542|jinjili|gingelly| +E0224542|gingili|gingelly| +E0224562|ethno-pharmacology|ethnopharmacology| +E0224611|autoheamotherapy|autohemotherapy| +E0224613|haemotherapy|hemotherapy| +E0224621|post-polio syndrome|postpolio syndrome| +E0224632|bio-autographic|bioautographic| +E0224634|ethno-geographic|ethnogeographic| +E0224646|photo-lithographic|photolithographic| +E0224693|bio-microscopically|biomicroscopically| +E0224706|immuno-nephelometrically|immunonephelometrically| +E0224708|intra-specifically|intraspecifically| +E0224732|electronmicrographically|electron micrographically| +E0224751|myo-electrically|myoelectrically| +E0224754|kinaesthetically|kinesthetically| +E0224774|flash-photolytically|flash photolytically| +E0224882|electro-glottography|electroglottography| +E0224887|video-keratography|videokeratography| +E0224887|video keratography|videokeratography| +E0224894|tele-mammography|telemammography| +E0224895|alder fly|alderfly| +E0224901|mothfly|moth fly| +E0224902|mudbaby|mud baby| +E0224911|stonefly|stone fly| +E0224916|immuno-histochemic|immunohistochemic| +E0224918|semi-specific|semispecific| +E0224919|electro-phoretic|electrophorectic| +E0224920|psycho-genetic|psychogenetic| +E0224921|sero-specific|serospecific| +E0224933|ergo-spirometric|ergospirometric| +E0224941|electro-orticographical|electrocorticographical| +E0224946|auto-radiographical|autoradiographical| +E0224948|bio-ethical|bioethical| +E0224949|chemo-surgical|chemosurgical| +E0224950|cryo-surgical|cryosurgical| +E0224951|cryo-biological|cryobiological| +E0224952|pan-tropical|pantropical| +E0224954|morpho-physiological|morphophysiological| +E0224955|micro-meteorological|micrometeorological| +E0224956|ultra-microchemical|ultramicrochemical| +E0224957|psycho-biographical|psychobiographical| +E0224961|pseudo-symmetrical|pseudosymmetrical| +E0224962|micro-geographical|microgeographical| +E0224963|meta-psychological|metapsychological| +E0224965|electro-analytical|electroanalytical| +E0224966|bio-meteorological|biometeorological| +E0224967|uro-gynecological|urogynecological| +E0224967|urogynaecological|urogynecological| +E0224968|thermo-mechanical|thermomechanical| +E0224969|geo-morphological|geomorphological| +E0224970|electro-technical|electrotechnical| +E0224971|eco-physiological|ecophysiological| +E0224972|zoo-geographical|zoogeographical| +E0224973|un-physiological|unphysiological| +E0224976|spectro-chemical|spectrochemical| +E0224977|socio-historical|sociohistorical| +E0224978|radio-ecological|radioecological| +E0224980|palaeontological|paleontological| +E0224982|micro-ecological|microecological| +E0224983|immuno-genetical|immunogenetical| +E0224984|ethno-historical|ethnohistorical| +E0224987|thermo-physical|thermophysical| +E0224988|thermo-chemical|thermochemical| +E0224999|micro-spherical|microspherical| +E0225009|bio-geochemical|biogeochemical| +E0225010|bio-geochemistry|biogeochemistry| +E0225015|aero-biological|aerobiological| +E0225025|semi-empirical|semiempirical| +E0225031|nutraceutical|nutriceutical| +E0225032|nutraceutical|nutriceutical| +E0225044|bio-ecological|bioecological| +E0225045|bio-ecology|bioecology| +E0225062|semi-tropical|semitropical| +E0225065|pre-classical|preclassical| +E0225081|geo-political|geopolitical| +E0225082|geo-botanical|geobotanical| +E0225090|bio-technical|biotechnical| +E0225112|anti-radical|antiradical| +E0225124|non-lexical|nonlexical| +E0225147|pre-psychotic|prepsychotic| +E0225155|anti-psychiatry|antipsychiatry| +E0225166|non-allergic|nonallergic| +E0225189|non-thrombogenicity|nonthrombogenicity| +E0225197|non-immunogenicity|nonimmunogenicity| +E0225199|aetiopathogenicity|etiopathogenicity| +E0225200|aetiopathogenic|etiopathogenic| +E0225201|co-carcinogenicity|cocarcinogenicity| +E0225204|anti-cariogenicity|anticariogenicity| +E0225205|anti-androgenicity|antiandrogenicity| +E0225207|regio-specificity|regiospecificity| +E0225208|quasi-periodicity|quasiperiodicity| +E0225210|piezo-electricity|piezoelectricity| +E0225213|multi-specificity|multispecificity| +E0225216|mono-chorionic|monochorionic| +E0225217|hypo-echogenicity|hypoechogenicity| +E0225221|allo-antigenicity|alloantigenicity| +E0225226|poly-specificity|polyspecificity| +E0225227|photo-elasticity|photoelasticity| +E0225229|non-mutagenicity|nonmutagenicity| +E0225230|non-monotonicity|nonmonotonicity| +E0225234|diabeto-genicity|diabetogenicity| +E0225276|syngenicity|syngeneicity| +E0225280|isosmoticity|iso-osmoticity| +E0225290|allogeneicity|allogenicity| +E0225294|ego syntonicity|ego-syntonicity| +E0225294|egosyntonicity|ego-syntonicity| +E0225295|egosyntonic|ego-syntonic| +E0225295|ego syntonic|ego-syntonic| +E0225350|multi-location|multilocation| +E0225369|sub-vocal|subvocal| +E0225384|servo-motor|servomotor| +E0225393|Presidio|presidio| +E0225396|nirvana|Nirvana| +E0225397|nirvana principle|Nirvana principle| +E0225418|photo-voltaic|photovoltaic| +E0225429|photocinesis|photokinesis| +E0225434|clistogamy|cleistogamy| +E0225480|post-cholecystectomy|postcholecystectomy| +E0225483|hysterooophorectomy|hystero-oophorectomy| +E0225483|hysteroophorectomy|hystero-oophorectomy| +E0225485|hemi-pancreatectomy|hemipancreatectomy| +E0225486|hemi-vulvectomy|hemivulvectomy| +E0225489|pancreatico-splenectomy|pancreaticosplenectomy| +E0225496|cysto-urethrectomy|cystourethrectomy| +E0225501|post-gastrectomy|postgastrectomy| +E0225502|postgastrectomy|post-gastrectomy| +E0225503|post-oophorectomy|postoophorectomy| +E0225504|postoophorectomy|post-oophorectomy| +E0225511|Cretaceous|cretaceous| +E0225524|multi-pennate|multipennate| +E0225525|uni-pennate|unipennate| +E0225526|pyo-granulomatous|pyogranulomatous| +E0225527|haemangiomatous|hemangiomatous| +E0225531|ano-cutaneous|anocutaneous| +E0225534|chromo-tubation|chromotubation| +E0225537|cryo-destruction|cryodestruction| +E0225538|dys-coordination|dyscoordination| +E0225540|hypo-myelination|hypomyelination| +E0225541|neuro-navigation|neuronavigation| +E0225544|thermo-ablation|thermoablation| +E0225545|thermo-ablated|thermoablated| +E0225546|sahuaro|saguaro| +E0225546|suwarro|saguaro| +E0225566|anti-Semitism|antisemitism| +E0225566|anti-semitism|antisemitism| +E0225592|co-immunoprecipitate|coimmunoprecipitate| +E0225595|photo-incorporate|photoincorporate| +E0225599|micro-structured|microstructured| +E0225602|anti-caricatured|anticaricatured| +E0225603|anti-caricature|anticaricature| +E0225604|under-express|underexpress| +E0225607|contextualise|contextualize| +E0225608|contextualisation|contextualization| +E0225609|de-inactivate|deinactivate| +E0225615|Angelman sydrome|Angelman's syndrome| +E0225617|battered-woman syndrome|battered woman syndrome| +E0225620|Loeffler syndrome|Loeffler's syndrome| +E0225621|Marfan syndrome|Marfan's syndrome| +E0225622|Parkinson syndrome|Parkinson's syndrome| +E0225662|auto-aggregate|autoaggregate| +E0225663|venepuncture|venipuncture| +E0225666|pre-classify|preclassify| +E0225667|micro-textured|microtextured| +E0225671|megalo-urethra|megalourethra| +E0225672|pseudo-diverticulum|pseudodiverticulum| +E0225680|pseudo-angina|pseudoangina| +E0225690|micro-shock|microshock| +E0225708|tracheo-bronchomalacia|tracheobronchomalacia| +E0225712|micro-proteinuria|microproteinuria| +E0225717|pseudo-chylothorax|pseudochylothorax| +E0225726|myo-fasciitis|myofasciitis| +E0225732|hemisomatotmesis|hemisomato-tmesis| +E0225734|pseudo-ainhum|pseudoainhum| +E0225736|fibro-leiomyoma|fibroleiomyoma| +E0225738|hyposideremia|hyposideraemia| +E0225739|hyper-expansion|hyperexpansion| +E0225740|hypo-expansion|hypoexpansion| +E0225741|hypoplasminogenaemia|hypoplasminogenemia| +E0225749|pseudo-aldosteronism|pseudoaldosteronism| +E0225750|photoaging|photoageing| +E0225750|photo-ageing|photoageing| +E0225750|photo-aging|photoageing| +E0225751|photo-aged|photoaged| +E0225752|neuro-infection|neuroinfection| +E0225753|hypotriglyceridaemia|hypotriglyceridemia| +E0225758|spondylo-enchondrodysplasia|spondyloenchondrodysplasia| +E0225767|lumbo-ischialgia|lumboischialgia| +E0225768|laryngo-tracheomalacia|laryngotracheomalacia| +E0225769|pseudo-achondroplasia|pseudoachondroplasia| +E0225772|fibro-thecoma|fibrothecoma| +E0225773|must|musth| +E0225778|poly-symptomatic|polysymptomatic| +E0225780|maltoma|MALToma| +E0225783|osteo-fibrosarcoma|osteofibrosarcoma| +E0225787|neuro-myopathy|neuromyopathy| +E0225797|myoglobinaemia|myoglobinemia| +E0225801|bisalbuminaemia|bisalbuminemia| +E0225802|neck ache|neckache| +E0225806|hemi-ganglion|hemiganglion| +E0225814|lawn mower|lawnmower| +E0225814|lawn-mower|lawnmower| +E0225815|snow blower|snowblower| +E0225817|soya bean|soyabean| +E0225817|soya-bean|soyabean| +E0225819|velcro|Velcro| +E0225822|bio-thesiometer|biothesiometer| +E0225825|ear plug|earplug| +E0225825|ear-plug|earplug| +E0225826|endo-illuminator|endoilluminator| +E0225829|micro-laparoscope|microlaparoscope| +E0225832|Plastibell|PlastiBell| +E0225837|rotablator|Rotablator| +E0225840|ventimask|Ventimask| +E0225865|tai chi|Tai Chi| +E0225865|Tai Ji|Tai Chi| +E0225865|Taiji|Tai Chi| +E0225865|t'ai chi|Tai Chi| +E0225866|tai chi chuan|Tai Chi Chuan| +E0225866|Tai Ji Quan|Tai Chi Chuan| +E0225866|taijiquan|Tai Chi Chuan| +E0225866|t'ai chi chuan|Tai Chi Chuan| +E0225866|t'ai chi ch'uan|Tai Chi Chuan| +E0225866|t'ai Chi ch'uan|Tai Chi Chuan| +E0225872|haplo-diploidy|haplodiploidy| +E0225873|hypo-osmolarity|hypoosmolarity| +E0225873|hyposmolarity|hypoosmolarity| +E0225874|meta-memory|metamemory| +E0225880|sub-graph|subgraph| +E0225882|radio-chromatography|radiochromatography| +E0225884|gas chromatography|gaschromatography| +E0225885|macro-photography|macrophotography| +E0225885|macro photography|macrophotography| +E0225889|bio-autography|bioautography| +E0225899|aorto-ventriculoplasty|aortoventriculoplasty| +E0225900|capsulorrhexis|capsulorhexis| +E0225911|neuro-endoscopy|neuroendoscopy| +E0225912|qi gong|qigong| +E0225912|Qi Gong|qigong| +E0225912|Chi Kung|qigong| +E0225913|electro-cochleogram|electrocochleogram| +E0225914|uretero-calycostomy|ureterocalycostomy| +E0225934|mini-thoracotomy|minithoracotomy| +E0225944|esophago-cardiomyotomy|esophagocardiomyotomy| +E0225949|pseudo-thrombocytopenia|pseudothrombocytopenia| +E0225953|whistle-blowing|whistleblowing| +E0225955|air conditioned|air-conditioned| +E0225955|airconditioned|air-conditioned| +E0225956|trans-labyrinthine|translabyrinthine| +E0225957|trans-sphincteric|transsphincteric| +E0225960|acipenseriformes|Acipenseriformes| +E0225961|trans-umbilical|transumbilical| +E0225962|trans-pupillary|transpupillary| +E0225963|trans-ethmoidal|transethmoidal| +E0225967|oligo-articular|oligoarticular| +E0225970|non-maleficent|nonmaleficent| +E0225971|non-maleficence|nonmaleficence| +E0225972|fibro-sclerotic|fibrosclerotic| +E0225974|trans-inguinal|transinguinal| +E0225975|trans-duodenal|transduodenal| +E0225976|trans-axillary|transaxillary| +E0225977|trans-amniotic|transamniotic| +E0225978|supra-duodenal|supraduodenal| +E0225979|retro-duodenal|retroduodenal| +E0225980|post-modern|postmodern| +E0225981|post-modernism|postmodernism| +E0225982|post-modernist|postmodernist| +E0225983|post-modernist|postmodernist| +E0225984|circum-areolar|circumareolar| +E0225985|ano-vestibular|anovestibular| +E0225986|trans-vitreal|transvitreal| +E0225987|trans-sigmoid|transsigmoid| +E0225988|trans-gluteal|transgluteal| +E0225989|trans-colonic|transcolonic| +E0225991|re-fashioning|refashioning| +E0225992|recto-cloacal|rectocloacal| +E0225993|para-vascular|paravascular| +E0225994|para-sagittal|parasagittal| +E0225996|intra-coronal|intracoronal| +E0225997|infra-vesical|infravesical| +E0225999|extra-coronal|extracoronal| +E0226000|bench-mark|benchmark| +E0226001|bench-marking|benchmarking| +E0226004|trans-thecal|transthecal| +E0226005|translumbar|translumbar| +E0226006|mud-flat|mudflat| +E0226007|trans-labial|translabial| +E0226008|trans-facial|transfacial| +E0226009|right-size|rightsize| +E0226010|right-sizing|rightsizing| +E0226014|peri-adrenal|periadrenal| +E0226015|para-ovarian|paraovarian| +E0226017|intra-bursal|intrabursal| +E0226019|peri-acinar|periacinar| +E0226020|pan-lobular|panlobular| +E0226022|dorso-volar|dorsovolar| +E0226024|up-sloping|upsloping| +E0226025|up-slope|upslope| +E0226027|tri-planar|triplanar| +E0226028|rota-viral|rotaviral| +E0226029|post-aural|postaural| +E0226030|per-meatal|permeatal| +E0226032|mid-grade|midgrade| +E0226038|ponto-cerebellum|pontocerebellum| +E0226039|gastro-intestine|gastrointestine| +E0226040|viscero-cranium|viscerocranium| +E0226044|endo-arterial|endoarterial| +E0226046|endo-vesical|endovesical| +E0226047|basi-cranium|basicranium| +E0226048|trans-renal|transrenal| +E0226061|neuro-axis|neuroaxis| +E0226066|urodaeum|urodeum| +E0226080|aesthesioneuroblastoma|esthesioneuroblastoma| +E0226086|micro-biocenosis|microbiocenosis| +E0226087|radio-synthesis|radiosynthesis| +E0226088|mega-prosthesis|megaprosthesis| +E0226089|hemi-prosthesis|hemiprosthesis| +E0226090|micro-necrosis|micronecrosis| +E0226098|pre-synapse|presynapse| +E0226102|parahippocampus|parahippocampus| +E0226104|hemi-hydranencephaly|hemihydranencephaly| +E0226119|water-lily|waterlily| +E0226119|water lily|waterlily| +E0226120|uzi fly|uzifly| +E0226133|non-directiveness|nondirectiveness| +E0226138|non-invasiveness|noninvasiveness| +E0226145|over-anxiousness|overanxiousness| +E0226157|extra-vesical|extravesical| +E0226161|centredness|centeredness| +E0226162|centred|centered| +E0226190|post-testing|posttesting| +E0226264|pre-coma|precoma| +E0226265|pre-coma|precoma| +E0226269|micro-equivalent|microequivalent| +E0226270|microeq|microEq| +E0226270|micro-Eq|microEq| +E0226299|post-MI|postMI| +E0226300|post-MI|postMI| +E0226301|post-myocardial infarction|postmyocardial infarction| +E0226302|post-myocardial infarction|postmyocardial infarction| +E0226303|post-myocardial|postmyocardial| +E0226336|home-likeness|homelikeness| +E0226378|foetidness|fetidness| +E0226409|de-inactivation|deinactivation| +E0226410|hyper-oxygenation|hyperoxygenation| +E0226416|photo-incorporation|photoincorporation| +E0226418|pre-degeneration|predegeneration| +E0226419|re-acceleration|reacceleration| +E0226420|sub-saturation|subsaturation| +E0226421|super-activation|superactivation| +E0226422|under-sedate|undersedation| +E0226425|cardio-depressive|cardiodepressive| +E0226437|non-expressive|nonexpressive| +E0226439|post-occlusive|postocclusive| +E0226440|pre-occlusive|preocclusive| +E0226443|sub-occlusive|subocclusive| +E0226444|vaso-depressive|vasodepressive| +E0226446|Interceed|INTERCEED| +E0226451|ferro-electric|ferroelectric| +E0226452|body-building|bodybuilding| +E0226452|body building|bodybuilding| +E0226454|post-process|postprocess| +E0226455|second-hand|secondhand| +E0226455|second hand|secondhand| +E0226456|baby-sitter|babysitter| +E0226456|baby sitter|babysitter| +E0226460|hard-copy|hardcopy| +E0226461|soft-copy|softcopy| +E0226463|area-wide|areawide| +E0226466|greylag|graylag| +E0226468|quahaug|quahog| +E0226468|quohog|quahog| +E0226479|erodable|erodible| +E0226480|erodability|erodibility| +E0226484|extendable|extendible| +E0226485|extendability|extendibility| +E0226498|non-convertible|nonconvertible| +E0226499|non-digestible|nondigestible| +E0226501|processable|processible| +E0226502|processability|processibility| +E0226503|semi-flexible|semiflexible| +E0226513|histo-incompatibility|histoincompatibility| +E0226606|scaleability|scalability| +E0226607|scaleable|scalable| +E0226616|cutability|cuttability| +E0226618|liveable|livable| +E0226619|liveability|livability| +E0226625|upgradability|upgradeability| +E0226626|upgradable|upgradeable| +E0226627|analysability|analyzability| +E0226629|auto-oxidizability|autoxidizability| +E0226630|auto-oxidizable|autoxidizable| +E0226636|non-detectability|nondetectability| +E0226647|imagability|imageability| +E0226652|non-viability|nonviability| +E0226652|non viability|nonviability| +E0226654|radio-curability|radiocurability| +E0226664|tuneability|tunability| +E0226665|typability|typeability| +E0226679|bio-stability|biostability| +E0226695|haemocompatibility|hemocompatibility| +E0226695|hemo-compatibility|hemocompatibility| +E0226696|haemocompatible|hemocompatible| +E0226698|hyper-thermostable|hyperthermostable| +E0226699|hypo-excitability|hypoexcitability| +E0226711|multi-programmability|multiprogrammability| +E0226712|multi-programmable|multiprogrammable| +E0226713|multi-stability|multistability| +E0226714|multi-stable|multistable| +E0226715|non-comparability|noncomparability| +E0226716|non-comparable|noncomparable| +E0226718|non-compatible|noncompatible| +E0226719|non-repeatability|nonrepeatability| +E0226720|non-repeatable|nonrepeatable| +E0226721|non-stability|nonstability| +E0226722|non-stable|nonstable| +E0226723|photo-inducibility|photoinducibility| +E0226724|photo-inducible|photoinducible| +E0226725|photo-instability|photoinstability| +E0226727|photo-reversibility|photoreversibility| +E0226728|photo-reversible|photoreversible| +E0226729|polymerisability|polymerizability| +E0226730|polymerisable|polymerizable| +E0226738|re-dispersible|redispersible| +E0226765|ultra-filterable|ultrafilterable| +E0226781|deemphasise|deemphasize| +E0226781|de-emphasise|deemphasize| +E0226781|de-emphasize|deemphasize| +E0226782|de-emphasis|deemphasis| +E0226783|step size|stepsize| +E0226787|detubularise|detubularize| +E0226789|eczematised|eczematized| +E0226791|potentise|potentize| +E0226793|superficialise|superficialize| +E0226794|superficialisation|superficialization| +E0226800|endfoot|end foot| +E0226803|paleo-anthropological|paleoanthropological| +E0226810|broncho-esophagoscopy|bronchoesophagoscopy| +E0226813|mischaracterise|mischaracterize| +E0226814|mischaracterisation|mischaracterization| +E0226840|palaeo-anthropology|palaeoanthropology| +E0226846|re-esterification|reesterification| +E0226875|hypno-therapeutic|hypnotherapeutic| +E0226879|thermo-radiotherapy|thermoradiotherapy| +E0226881|stereo-photographic|stereophotographic| +E0226882|post-encephalitis|postencephalitis| +E0226885|anti-arthritis|antiarthritis| +E0226886|anti-allergenic|antiallergenic| +E0226887|anti-allergenic|antiallergenic| +E0226893|osteodentine|osteodentin| +E0226898|non-interventionist|noninterventionist| +E0226899|ultra-conservative|ultraconservative| +E0226905|ultramicro-analysis|ultramicroanalysis| +E0226905|ultra-microanalysis|ultramicroanalysis| +E0226906|ultra-centrifugal|ultracentrifugal| +E0226907|ultra-centrifugally|ultracentrifugally| +E0226908|ultra-pure|ultrapure| +E0226910|ultra-filter|ultrafilter| +E0226913|ultra-miniature|ultraminiature| +E0226914|musculo-membranous|musculomembranous| +E0226915|musculo-ligamentous|musculoligamentous| +E0226916|micro-spectroscopic|microspectroscopic| +E0226923|hetero-fermentative|heterofermentative| +E0226925|extra-thermodynamic|extrathermodynamic| +E0226930|disenrol|disenroll| +E0226930|dis-enroll|disenroll| +E0226931|dis-enrollment|disenrollment| +E0226931|disenrolment|disenrollment| +E0226985|under-produce|underproduce| +E0226986|underproduction|underproduction| +E0227029|radio-transparency|radiotransparency| +E0227030|non-discriminatory|nondiscriminatory| +E0227069|electro-antennogram|electroantennogram| +E0227072|green gram|greengram| +E0227085|hommos|hummus| +E0227091|oestral|estral| +E0227092|oestrual|estrual| +E0227096|aedoeagus|aedeagus| +E0227097|eneolithic|aeneolithic| +E0227106|hypomagnesaemic|hypomagnesemic| +E0227107|subleukaemic|subleukemic| +E0227116|clistogamous|cleistogamous| +E0227124|semi-autonomous|semiautonomous| +E0227130|non-luminescent|nonluminescent| +E0227144|Fordyce's disease|Fordyce disease| +E0227183|pleuro-pneumopathy|pleuropneumopathy| +E0227185|encepholo-myopathy|encepholomyopathy| +E0227213|discopathy|diskopathy| +E0227217|foetopathy|fetopathy| +E0227220|self examination|self-examination| +E0227223|whip-poor-will|whippoorwill| +E0227225|non-combatant|noncombatant| +E0227226|non-combatant|noncombatant| +E0227228|water-nymph|water nymph| +E0227231|sign-painter|sign painter| +E0227234|half-brother|half brother| +E0227235|guelder-rose|guelder rose| +E0227236|ylang ylang|ylang-ylang| +E0227236|ilang-ilang|ylang-ylang| +E0227242|laundrette|launderette| +E0227247|wet-nurse|wet nurse| +E0227254|shipbroker|ship broker| +E0227260|gyneplasty|gynoplasty| +E0227278|haematinuria|hematinuria| +E0227294|tongue-swallowing|tongue swallowing| +E0227303|gingelly oil|gingili oil| +E0227303|jinjili oil|gingili oil| +E0227305|land-mine|land mine| +E0227305|landmine|land mine| +E0227315|screwpost|screw post| +E0227330|mid-line|midline| +E0227400|Argentine haemorrhagic fever|Argentine hemorrhagic fever| +E0227473|hyperthrombinaemia|hyperthrombinemia| +E0227495|multiple lipoprotein-type hyperlipidaemia|multiple lipoprotein-type hyperlipidemia| +E0227513|Saint Vitus's dance|St. Vitus' dance| +E0227513|St. Vitus's dance|St. Vitus' dance| +E0227513|Saint Vitus' dance|St. Vitus' dance| +E0227575|hystero-salpingo-oophorectomy|hysterosalpingo-oophorectomy| +E0227595|pseudo-scientific|pseudoscientific| +E0227597|polygynious|polygynous| +E0227601|pre-scientific|prescientific| +E0227607|Enlive|Enlive!| +E0227608|fishcake|fish cake| +E0227610|plimsole|plimsoll| +E0227619|stand-off|standoff| +E0227639|desulphonate|desulfonate| +E0227640|desulphonation|desulfonation| +E0227661|electro-optics|electrooptics| +E0227673|renormalise|renormalize| +E0227674|renormalisation|renormalization| +E0227677|devulcanise|devulcanize| +E0227689|pyriform|piriform| +E0227698|casino|cassino| +E0227752|pot-hole|pothole| +E0227755|after-sensation|aftersensation| +E0227760|crib biting|crib-biting| +E0227761|wind-sucking|wind sucking| +E0227762|intraesophageal|intra-esophageal| +E0227767|selfchange|self-change| +E0227771|post-industrial|postindustrial| +E0227772|post-partal|postpartal| +E0227776|post-structuralist|poststructuralist| +E0227777|post-structural|poststructural| +E0227778|post-depositional|postdepositional| +E0227780|post-production|postproduction| +E0227781|post-reduction|postreduction| +E0227783|post-emergence|postemergence| +E0227785|post-embryonal|postembryonal| +E0227786|post-abdominal|postabdominal| +E0227787|post-mortally|postmortally| +E0227790|post-exchange|postexchange| +E0227790|post exchange|postexchange| +E0227791|post-exchange|postexchange| +E0227792|post-colonial|postcolonial| +E0227793|post-breeding|postbreeding| +E0227794|post-breeding|postbreeding| +E0227795|post-primary|postprimary| +E0227796|post-nuptial|postnuptial| +E0227797|post-glacial|postglacial| +E0227798|post-verbal|postverbal| +E0227802|post-entry|postentry| +E0227870|Javel water|Javelle water| +E0227872|tar-water|tar water| +E0227982|yohimbi|yohimbe| +E0227982|yohimbihi|yohimbe| +E0227989|warm-hearted|warmhearted| +E0228003|complementiser|complementizer| +E0228005|decolouriser|decolorizer| +E0228005|decolourizer|decolorizer| +E0228006|deoxidiser|deoxidizer| +E0228007|equaliser|equalizer| +E0228008|lyophiliser|lyophilizer| +E0228009|pasteuriser|pasteurizer| +E0228010|polymeriser|polymerizer| +E0228011|recogniser|recognizer| +E0228012|regulariser|regularizer| +E0228014|solubilizer|solubilizer| +E0228015|utiliser|utilizer| +E0228016|victimiser|victimizer| +E0228042|single handedly|single-handedly| +E0228042|singlehandedly|single-handedly| +E0228043|single handed|single-handed| +E0228043|singlehanded|single-handed| +E0228044|single handed|single-handed| +E0228044|singlehanded|single-handed| +E0228049|fast food|fast-food| +E0228050|fast-food|fast food| +E0228065|Widal's reaction|Widal reaction| +E0228068|Herxheimer's reaction|Herxheimer reaction| +E0228069|Jarisch-Herxheimer's reaction|Jarisch-Herxheimer reaction| +E0228069|Jarisch Herxheimer reaction|Jarisch-Herxheimer reaction| +E0228084|Kupffer cell|Kupffer's cell| +E0228090|turk's cell|turk cell| +E0228157|non practice|nonpractice| +E0228157|non-practice|nonpractice| +E0228178|dog mercury|dog's mercury| +E0228193|Toy Manchester Terrier|Toy Manchester terrier| +E0228194|Welsh terrier|Welsh Terrier| +E0228218|Pallas cat|Pallas's cat| +E0228250|kanaf|kenaf| +E0228250|kanaff|kenaf| +E0228266|hyperchromic anaemia|hyperchromic anemia| +E0228298|Social Security|social security| +E0228384|jacuzzi|Jacuzzi| +E0228386|caplet|Caplet| +E0228425|horse-eyed jack|horse-eye jack| +E0228451|Pima cotton|pima cotton| +E0228453|Pima cottonseed|pima cottonseed| +E0228485|Chlortrimeton|Chlor-Trimeton| +E0228646|non-prescription drug|nonprescription drug| +E0228648|chilli powder|chili powder| +E0228666|Seventh-Day Adventist|Seventh-Day adventist| +E0228795|native american|Native American| +E0228809|Lancefield's group|Lancefield group| +E0228815|aiwain|ajowan| +E0228838|raggee|ragi| +E0228838|raggi|ragi| +E0228838|raggy|ragi| +E0228854|St. Anthony's fire|Saint Anthony's fire| +E0228877|counter-insurgency|counterinsurgency| +E0228912|medicolegally|medicolegally| +E0228988|sub-periosteally|subperiosteally| +E0228991|non-productively|nonproductively| +E0229111|pre-conceptual|preconceptual| +E0229113|sub-antarctic|subantarctic| +E0229122|under-appreciated|underappreciated| +E0229129|under-achieve|underachieve| +E0229269|under-read|underread| +E0229277|semi-latent|semilatent| +E0229302|polyhaemoglobin|polyhemoglobin| +E0229302|poly-hemoglobin|polyhemoglobin| +E0229303|re-enactment|reenactment| +E0229304|re-enact|reenact| +E0229311|fundraiser|fund-raiser| +E0229315|well nigh|well-nigh| +E0229319|in-law|inlaw| +E0229322|nightshift|night shift| +E0229346|paint brush|paintbrush| +E0229348|river bank|riverbank| +E0229522|child-proof|childproof| +E0229523|knifefish|knife fish| +E0229524|rainbow fish|rainbowfish| +E0229553|rat-kangaroo|rat kangaroo| +E0229622|Spotted dick|Spotted Dick| +E0229661|Anna hummingbird|Anna's hummingbird| +E0229662|apostlebird|apostle bird| +E0229663|helmetbird|helmet bird| +E0229675|Arctic tern|arctic tern| +E0229773|Albian|albian| +E0229784|martian|Martian| +E0229785|martian|Martian| +E0229797|de-ice|deice| +E0229829|extra-punitive|extrapunitive| +E0229830|extra-punitiveness|extrapunitiveness| +E0229877|hypothenuse|hypotenuse| +E0229879|ear-witness|earwitness| +E0229949|non-insecticidal|noninsecticidal| +E0229959|pseudo-plasticity|pseudoplasticity| +E0229960|pseudo-plastic|pseudoplastic| +E0229974|pre-dynastic|predynastic| +E0229976|thermo-elastic|thermoelastic| +E0229981|electro-pneumatic|electropneumatic| +E0229994|non-eczematous|noneczematous| +E0229995|non-concentric|nonconcentric| +E0230049|oncosphere|onchosphere| +E0230056|exccentric|excentric| +E0230146|sub-carcinogenic|subcarcinogenic| +E0230249|non-competent|noncompetent| +E0230250|non-competence|noncompetence| +E0230251|non-current|noncurrent| +E0230252|non-government|nongovernment| +E0230253|non-pungent|nonpungent| +E0230258|non-transparent|nontransparent| +E0230259|non-transparency|nontransparency| +E0230262|semi-transparent|semitransparent| +E0230264|semi-permanent|semipermanent| +E0230265|pre-depression|predepression| +E0230271|inter-version|interversion| +E0230274|super-potent|superpotent| +E0230276|pre-existent|preexistent| +E0230277|pre-existence|preexistence| +E0230278|pre-exist|preexist| +E0230303|pseudo-science|pseudoscience| +E0230304|pre-conference|preconference| +E0230305|pre-conference|preconference| +E0230307|descendence|descendance| +E0230308|semi-circle|semicircle| +E0230312|ascendence|ascendance| +E0230324|semi-terrestrial|semiterrestrial| +E0230336|pre-industrial|preindustrial| +E0230337|peri-orificial|periorificial| +E0230338|glacio-fluvial|glaciofluvial| +E0230340|extra-familial|extrafamilial| +E0230345|non-custodial|noncustodial| +E0230352|trans-racial|transracial| +E0230358|non-harmonic|nonharmonic| +E0230379|non-trivial|nontrivial| +E0230380|non-spatial|nonspatial| +E0230386|inter-ionic|interionic| +E0230387|inter-axial|interaxial| +E0230394|anglophone|Anglophone| +E0230395|anglophone|Anglophone| +E0230396|transsonic|transonic| +E0230396|trans-sonic|transonic| +E0230415|tri-axial|triaxial| +E0230418|predial|praedial| +E0230460|praesidium|presidium| +E0230507|photo-composition|photocomposition| +E0230533|trans-oceanic|transoceanic| +E0230536|retino-tectal|retinotectal| +E0230544|non-migratory|nonmigratory| +E0230545|non-mandatory|nonmandatory| +E0230546|monoisotopic|monoisotopic| +E0230551|inter-oceanic|interoceanic| +E0230552|haplo-diploid|haplodiploid| +E0230553|haplo-diploid|haplodiploid| +E0230574|non-spectral|nonspectral| +E0230580|inter-censal|intercensal| +E0230646|mid-dorsal|middorsal| +E0230672|non-nasal|nonnasal| +E0230710|meta-linguistic|metalinguistic| +E0230714|pre-linguistic|prelinguistic| +E0230727|non-linguistic|nonlinguistic| +E0230775|neo-hippocratic|neohippocratic| +E0230786|chordomesoderm|chordamesoderm| +E0230787|chordomesodermal|chordamesodermal| +E0230789|ecto-mesoderm|ectomesoderm| +E0230790|ecto-mesodermal|ectomesodermal| +E0230791|endo-mesoderm|endomesoderm| +E0230792|endo-mesodermal|endomesodermal| +E0230793|epi-thermal|epithermal| +E0230799|hygro-thermal|hygrothermal| +E0230803|non-thermal|nonthermal| +E0230810|rhabdome|rhabdom| +E0230827|tetra-substituted|tetrasubstituted| +E0230828|semi-domesticated|semidomesticated| +E0230830|radio-sterilized|radiosterilized| +E0230831|radio-sterilization|radiosterilization| +E0230832|photo-excitation|photoexcitation| +E0230833|parallelopiped|parallelepiped| +E0230834|parallelopipedal|parallelepipedal| +E0230835|parallelopipedon|parallelepipedon| +E0230836|non-rectilinear|nonrectilinear| +E0230843|non-segregated|nonsegregated| +E0230844|non-interlaced|noninterlaced| +E0230846|iso-structural|isostructural| +E0230858|tetra-nuclear|tetranuclear| +E0230862|pre-assembled|preassembled| +E0230864|non-scheduled|nonscheduled| +E0230865|non-qualified|nonqualified| +E0230866|multi-pronged|multipronged| +E0230867|mono-nitrated|mononitrated| +E0230884|uni-nucleate|uninucleate| +E0230886|supra-linear|supralinear| +E0230887|super-linear|superlinear| +E0230888|semi-natural|seminatural| +E0230892|pre-temporal|pretemporal| +E0230893|pre-assigned|preassigned| +E0230898|Jagielonian|Jagellonian| +E0230899|Jagielo|Jagello| +E0230900|inter-sporal|intersporal| +E0230921|sub-nuclear|subnuclear| +E0230930|non-nuclear|nonnuclear| +E0230931|non-divided|nondivided| +E0230932|multi-blade|multiblade| +E0230933|multi-bladed|multibladed| +E0230934|mustached|moustached| +E0230948|New-Caledonian|New Caledonian| +E0230952|anti-larval|antilarval| +E0230954|undreamt of|undreamed of| +E0230954|undreamed-of|undreamed of| +E0230954|undreamt-of|undreamed of| +E0230968|gorgonian|Gorgonian| +E0230969|gorgonian|Gorgonian| +E0230978|neoDarwinian|neo-Darwinian| +E0230981|co-adapted|coadapted| +E0230982|cirriped|cirripede| +E0230983|cirriped|cirripede| +E0231004|longaeval|longeval| +E0231016|un-dried|undried| +E0231024|non-aged|nonaged| +E0231030|big-hearted|bighearted| +E0231031|soft-hearted|softhearted| +E0231032|tender-hearted|tenderhearted| +E0231057|socio-linguistic|sociolinguistic| +E0231068|non-cooperation|noncooperation| +E0231071|uro-gynecology|urogynecology| +E0231079|eco-physiology|ecophysiology| +E0231093|radio-ecology|radioecology| +E0231107|anti-abortion|antiabortion| +E0231108|anti-abortionist|antiabortionist| +E0231115|photo-resist|photoresist| +E0231152|Zeitgeist|zeitgeist| +E0231167|nobelist|Nobelist| +E0231192|choral|chorale| +E0231194|uni-lineal|unilineal| +E0231196|trans-disciplinary|transdisciplinary| +E0231197|micro-evolutionary|microevolutionary| +E0231198|macro-evolutionary|macroevolutionary| +E0231199|intra-disciplinary|intradisciplinary| +E0231201|photo-stationary|photostationary| +E0231202|co-evolutionary|coevolutionary| +E0231218|non-filamentous|nonfilamentous| +E0231228|intra-populational|intrapopulational| +E0231230|semi-professional|semiprofessional| +E0231233|pseudo-hexagonal|pseudohexagonal| +E0231234|non-proportional|nonproportional| +E0231238|pre-gestational|pregestational| +E0231239|poly-functional|polyfunctional| +E0231243|extra-embryonal|extraembryonal| +E0231248|trans-national|transnational| +E0231249|supra-national|supranational| +E0231250|supra-cardinal|supracardinal| +E0231256|prevocational|prevocational| +E0231259|neuro-neuronal|neuroneuronal| +E0231262|intra-personal|intrapersonal| +E0231268|co-directional|codirectional| +E0231269|bi-conditional|biconditional| +E0231270|bi-conditional|biconditional| +E0231289|di-functional|difunctional| +E0231296|sub-regional|subregional| +E0231298|pre-imaginal|preimaginal| +E0231300|non-terminal|nonterminal| +E0231301|non-rational|nonrational| +E0231302|non-personal|nonpersonal| +E0231308|annonaceous|Annonaceous| +E0231321|bi-national|binational| +E0231349|bi-zonal|bizonal| +E0231353|monaul|monal| +E0231353|moonaul|monal| +E0231353|minaul|monal| +E0231356|cardio-acceleratory|cardioacceleratory| +E0231357|non-superimposable|nonsuperimposable| +E0231360|non-sedimentable|nonsedimentable| +E0231362|broncho-dilatory|bronchodilatory| +E0231363|anti-coagulatory|anticoagulatory| +E0231369|un-explainable|unexplainable| +E0231374|non-filterable|nonfilterable| +E0231375|non-adjustable|nonadjustable| +E0231389|semi-portable|semiportable| +E0231405|agro-pastoral|agropastoral| +E0231416|micro-floral|microfloral| +E0231427|un-palpable|unpalpable| +E0231440|machineable|machinable| +E0231469|non-ignorable|nonignorable| +E0231505|hepato-pancreatic|hepatopancreatic| +E0231506|contra-indicative|contraindicative| +E0231508|flocculo-nodular|flocculonodular| +E0231509|extra-fascicular|extrafascicular| +E0231510|bio-accumulative|bioaccumulative| +E0231511|super-molecular|supermolecular| +E0231512|pro-ventricular|proventricular| +E0231513|para-follicular|parafollicular| +E0231514|gastro-vascular|gastrovascular| +E0231516|chemo-receptive|chemoreceptive| +E0231519|anti-reflective|antireflective| +E0231522|supra-cellular|supracellular| +E0231523|stereo-regular|stereoregular| +E0231524|pre-mandibular|premandibular| +E0231528|hyo-mandibular|hyomandibular| +E0231535|mono-cellular|monocellular| +E0231545|pro-vascular|provascular| +E0231548|non-circular|noncircular| +E0231559|non-aquatic|nonaquatic| +E0231576|pre-ocular|preocular| +E0231578|iso-static|isostatic| +E0231597|bio-electronic|bioelectronic| +E0231601|sub-harmonic|subharmonic| +E0231607|non-participating|nonparticipating| +E0231610|non-intoxicating|nonintoxicating| +E0231613|non-hibernating|nonhibernating| +E0231617|Shakespearian|Shakespearean| +E0231617|Shaksperean|Shakespearean| +E0231617|Shaksperian|Shakespearean| +E0231625|proboscidian|proboscidean| +E0231626|non-operating|nonoperating| +E0231627|non-explosive|nonexplosive| +E0231628|non-competing|noncompeting| +E0231634|Aristotelean|Aristotelian| +E0231642|sherlockian|Sherlockian| +E0231646|non-sporting|nonsporting| +E0231647|non-clotting|nonclotting| +E0231654|co-extensive|coextensive| +E0231655|Belarusian|Belarussian| +E0231655|Belarusan|Belarussian| +E0231656|Belarusian|Belarussian| +E0231656|Belarusan|Belarussian| +E0231659|Walachian|Wallachian| +E0231660|Walachian|Wallachian| +E0231686|Sisyphian|Sisyphean| +E0231686|sisyphean|Sisyphean| +E0231686|sisyphian|Sisyphean| +E0231688|neopiagetian|neo-Piagetian| +E0231694|nestorian|Nestorian| +E0231703|Hebridian|Hebridean| +E0231704|Hebridian|Hebridean| +E0231706|columbian|Columbian| +E0231710|Precolumbian|pre-Columbian| +E0231710|precolumbian|pre-Columbian| +E0231710|preColumbian|pre-Columbian| +E0231716|Acheulean|Acheulian| +E0231732|Carelian|Karelian| +E0231733|Carelian|Karelian| +E0231734|Carelia|Karelia| +E0231738|Neo-hegelian|Neo-Hegelian| +E0231767|utopian|Utopian| +E0231768|utopian|Utopian| +E0231775|neo-Kantian|Neo-Kantian| +E0231786|Ponto-Caspian|Pontocaspian| +E0231794|aeolian|Aeolian| +E0231795|aeolian|Aeolian| +E0231807|aeolian|eolian| +E0231825|under-perform|underperform| +E0231826|under-performance|underperformance| +E0231830|co-feature|cofeature| +E0231837|re-elect|reelect| +E0231838|re-election|reelection| +E0231847|re-cut|recut| +E0231848|re-cut|recut| +E0231850|counter-check|countercheck| +E0231851|counter-check|countercheck| +E0231853|counter-claim|counterclaim| +E0231854|counter-weight|counterweight| +E0231855|counter-weight|counterweight| +E0231856|counter-weighted|counterweighted| +E0231889|hemi-parasite|hemiparasite| +E0231908|sulphidic|sulfidic| +E0231919|sub-speciation|subspeciation| +E0231920|nannoplankton|nanoplankton| +E0231928|polycaryon|polykaryon| +E0231930|homocaryon|homokaryon| +E0231940|sub-micron|submicron| +E0231968|bureaucratise|bureaucratize| +E0231976|destigmatise|destigmatize| +E0231977|destigmatisation|destigmatization| +E0231978|denicotinise|denicotinize| +E0231985|re-actualize|reactualize| +E0231987|protocolise|protocolize| +E0232014|relativise|relativize| +E0232015|relativisation|relativization| +E0232018|maximalise|maximalize| +E0232019|maximalisation|maximalization| +E0232020|minimalise|minimalize| +E0232021|minimalisation|minimalization| +E0232024|atropinise|atropinize| +E0232025|atropinisation|atropinization| +E0232026|atropinised|atropinized| +E0232029|africanized|Africanized| +E0232033|systemise|systemize| +E0232039|platinise|platinize| +E0232040|platinisation|platinization| +E0232041|isotonise|isotonize| +E0232042|isotonisation|isotonization| +E0232045|formolised|formolized| +E0232056|robotise|robotize| +E0232057|robotisation|robotization| +E0232068|de-aerate|deaerate| +E0232090|anonymisation|anonymization| +E0232091|anteriorisation|anteriorization| +E0232092|apodisation|apodization| +E0232093|cosensitisation|cosensitization| +E0232093|co-sensitization|cosensitization| +E0232093|co-sensitisation|cosensitization| +E0232094|deenergisation|deenergization| +E0232094|de-energisation|deenergization| +E0232094|de-energization|deenergization| +E0232095|deodorisation|deodorization| +E0232096|deparaffinisation|deparaffinization| +E0232100|factorisation|factorization| +E0232101|heteromultimerisation|heteromultimerization| +E0232102|iodisation|iodization| +E0232104|moisturisation|moisturization| +E0232106|neovascularisation|neovascularization| +E0232107|peritonealisation|peritonealization| +E0232108|peroxidisation|peroxidization| +E0232109|photo-oxidization|photooxidization| +E0232109|photooxidisation|photooxidization| +E0232109|photo-oxidisation|photooxidization| +E0232112|residualisation|residualization| +E0232113|sclerotisation|sclerotization| +E0232114|signalisation|signalization| +E0232115|unionisation|unionization| +E0232116|ventralisation|ventralization| +E0232117|vitalisation|vitalization| +E0232118|tool set|toolset| +E0232119|de-select|deselect| +E0232120|de-selection|deselection| +E0232121|de-skill|deskill| +E0232122|active-site|activesite| +E0232122|active site|activesite| +E0232124|cis-acting|cisacting| +E0232125|computer-aided|computeraided| +E0232125|computer aided|computeraided| +E0232126|crosscorrelation|cross-correlation| +E0232129|key-punch|keypunch| +E0232132|buzz-word|buzz word| +E0232134|tell-tale|telltale| +E0232136|tail-pipe|tailpipe| +E0232136|tail pipe|tailpipe| +E0232137|top-soil|topsoil| +E0232137|top soil|topsoil| +E0232138|tap-root|taproot| +E0232138|tap root|taproot| +E0232140|tom cat|tomcat| +E0232141|tomcat catheter|Tomcat catheter| +E0232141|Tom-cat catheter|Tomcat catheter| +E0232141|tom-cat catheter|Tomcat catheter| +E0232144|photo-respiration|photorespiration| +E0232150|micro-morphology|micromorphology| +E0232164|non-symbiotic|nonsymbiotic| +E0232165|non-inductive|noninductive| +E0232166|non-committal|noncommittal| +E0232169|electro-optic|electrooptic| +E0232170|electro-opticly|electroopticly| +E0232177|inter-family|interfamily| +E0232189|pre-emptive|preemptive| +E0232191|inter-tidal|intertidal| +E0232240|smily|smiley| +E0232253|cross-resistance|crossresistance| +E0232253|cross resistance|crossresistance| +E0232254|cross-resistant|crossresistant| +E0232254|cross resistant|crossresistant| +E0232255|cyclin-dependent|cyclindependent| +E0232256|cytokine-induced|cytokineinduced| +E0232256|cytokine induced|cytokineinduced| +E0232257|disease-free|diseasefree| +E0232258|dominant-negative|dominantnegative| +E0232258|dominant negative|dominantnegative| +E0232259|doseresponse|doseresponse| +E0232259|dose response|doseresponse| +E0232260|dose-response|doseresponse| +E0232260|dose response|doseresponse| +E0232261|drug-induced|druginduced| +E0232261|drug induced|druginduced| +E0232262|echo-planar|echoplanar| +E0232262|echo planar|echoplanar| +E0232263|end diastolic|enddiastolic| +E0232263|end-diastolic|enddiastolic| +E0232264|end-expiratory|endexpiratory| +E0232264|end expiratory|endexpiratory| +E0232959|castor|caster| +E0232960|over-abundant|overabundant| +E0232961|anthelmintic|anthelminthic| +E0232961|antihelmintic|anthelminthic| +E0232963|haploinsufficiency|haplo-insufficiency| +E0300022|mexamine|meksamine| +E0300025|dependantly|dependently| +E0300053|syncoumar|sinkumar| +E0300053|syncumar|sinkumar| +E0300077|chow|Chow| +E0300134|adreno-leukodystrophy|adrenoleukodystrophy| +E0300134|adrenoleucodystrophy|adrenoleukodystrophy| +E0300134|adreno-leucodystrophy|adrenoleukodystrophy| +E0300137|aequorine|aequorin| +E0300143|afibrinogenaemia|afibrinogenemia| +E0300144|Maghrib|Maghreb| +E0300174|alfentanyl|alfentanil| +E0300175|alpheprol|alfeprol| +E0300181|alkyl sulfonate|alkylsulfonate| +E0300181|alkyl sulphonate|alkylsulfonate| +E0300181|alkylsulphonate|alkylsulfonate| +E0300185|allo-uridine|allouridine| +E0300192|milurit|milurite| +E0300193|allyoestrenol|allylestrenol| +E0300217|alfathesin|alfatesine| +E0300232|amoeboma|ameboma| +E0300234|amenorrhoea|amenorrhea| +E0300265|aminoxaphen|aminoxafen| +E0300280|amodiaquine|amodiachin| +E0300284|phenamine|fenamine| +E0300287|amphetamine|amfetamine| +E0300309|anaplastia|anaplasia| +E0300313|obsidan|obzidan| +E0300344|lymphoquin|lymphochin| +E0300344|lymphocin|lymphochin| +E0300363|cygnoline|cignolin| +E0300364|anthramycin|antramycin| +E0300400|Apo-A|ApoA| +E0300400|Apo A|ApoA| +E0300401|Apo-B|ApoB| +E0300401|Apo B|ApoB| +E0300402|Apo-C|ApoC| +E0300402|Apo C|ApoC| +E0300403|Apo-E|ApoE| +E0300403|Apo E|ApoE| +E0300416|archebacterium|archaeobacterium| +E0300422|arrhythmia|arrythmia| +E0300486|azospermia|azoospermia| +E0300489|back pain|backpain| +E0300500|bed rest|bedrest| +E0300502|Belorussian|Byelorussian| +E0300503|Belorussian|Byelorussian| +E0300582|biperiden|biperidene| +E0300586|Afro American|Afroamerican| +E0300586|Afro-American|Afroamerican| +E0300587|Afro American|Afroamerican| +E0300587|Afro-American|Afroamerican| +E0300594|bloodstain|blood stain| +E0300601|bottle feeding|bottlefeeding| +E0300601|bottle-feeding|bottlefeeding| +E0300624|bromocryptin|bromocriptin| +E0300633|bromuracil|bromouracil| +E0300636|brucine|bruzin| +E0300648|mappin|mappine| +E0300650|bunaphtine|bunaftine| +E0300651|bunaphtide|bunaftide| +E0300663|Myanma|Myanmar| +E0300664|Birma|Burma| +E0300694|Belarus|Byelarus| +E0300694|Belorussia|Byelarus| +E0300696|pentacin|pentacine| +E0300754|carboxymethyl cellulose|carboxymethylcellulose| +E0300782|carminomycin|carminomicin| +E0300782|karminomicin|carminomicin| +E0300782|karminomycin|carminomicin| +E0300808|cephotaxim|cefotaxim| +E0300817|ceftriaxone|ceftriaxon| +E0300819|cephuroxime|cefuroxime| +E0300835|cefacetrile|cephacetrile| +E0300837|cephaloglycin|cefaloglycin| +E0300837|cephaloglycine|cefaloglycin| +E0300841|cephaloridine|cefaloridine| +E0300841|cephaloridin|cefaloridine| +E0300866|cheilitis|chelitis| +E0300866|chilitis|chelitis| +E0300895|chlorphenvinphos|chlorfenvinphos| +E0300895|chlorfenvinphos|chlorfenvinphos| +E0300916|chloromercuribenzenesulphonate|chloromercuribenzenesulfonate| +E0300917|chloromercuriphenylsulphonate|chloromercuriphenylsulfonate| +E0300918|chingamin|khingamin| +E0300956|colestyramine|colestyramin| +E0301000|hare lip|harelip| +E0301017|clomifen|clomiphene| +E0301017|clomifene|clomiphene| +E0301020|chlomipramine|clomipramine| +E0301023|klofenil|clofenil| +E0301031|chlorgyline|clorgyline| +E0301031|clorgiline|clorgyline| +E0301031|clorgilin|clorgyline| +E0301055|cocoanut|coconut| +E0301066|colecin|colicine| +E0301109|cryo-fixation|cryofixation| +E0301109|cryo fixation|cryofixation| +E0301115|dermatochalazia|dermatochalasia| +E0301166|deoxy sugar|deoxysugar| +E0301195|desulphoviridin|desulfoviridin| +E0301215|dexamphetamine|dexamfetamine| +E0301220|dextro-thyroxine|dextrothyroxine| +E0301235|amidotrizoate|amidotrezoate| +E0301264|dicroceliasis|dicrocoeliasis| +E0301265|dicroceliosis|dicrocoeliosis| +E0301276|dithiocarb|ditiocarb| +E0301281|amfepramone|amfepramon| +E0301292|dimethyl suberimidate|dimethylsuberimidate| +E0301351|spondylodiskitis|spondylodiscitis| +E0301374|dithioerythreitol|dithioerythritol| +E0301433|dysgammaglobulinaemia|dysgammaglobulinemia| +E0301448|ekonazole|econazole| +E0301455|edrophonium|edroponium| +E0301481|enbucrylate|enbucrilate| +E0301504|endo-polygalacturonase|endopolygalacturonase| +E0301515|enterodes|Enterodes| +E0301522|epichlorhydrin|epichlorohydrin| +E0301598|ethoglucid|etoglucid| +E0301615|ethylestrenol|ethyloestrenol| +E0301621|etilefrin|etilefrine| +E0301626|ethimizol|etimizol| +E0301626|ethimizole|etimizol| +E0301626|ethymisole|etimizol| +E0301626|ethymizol|etimizol| +E0301626|aethimizole|etimizol| +E0301662|phelypressin|felypressin| +E0301663|octopressin|octapressin| +E0301669|fenchlorfos|fenchlorphos| +E0301671|fendilin|fendiline| +E0301687|ferriheme|ferrihaem| +E0301687|ferri-haem|ferrihaem| +E0301687|ferri-heme|ferrihaem| +E0301688|ferri-protoporphyrin|ferriprotoporphyrin| +E0301710|finger sucking|fingersucking| +E0301716|perilene|perylene| +E0301731|fenelzin|phenelzine| +E0301733|phenyl ethanol|phenylethanol| +E0301739|fenformin|phenformin| +E0301748|fenmetrazin|phenmetrazine| +E0301774|butadion|butadione| +E0301819|diplidor|dipydolor| +E0301824|choriomammotropin|choriomammotrophin| +E0301835|plateletapheresis|plateletpheresis| +E0301838|pleuro-pneumonia|pleuropneumonia| +E0301857|polyanethol sulfonate|polyanetholesulfonate| +E0301857|polyanetholsulphonate|polyanetholesulfonate| +E0301857|polyanethol sulphonate|polyanetholesulfonate| +E0301859|erythraemia|erythremia| +E0301864|polyethylenimine|polyethyleneimine| +E0301873|polymenorrhoea|polymenorrhea| +E0301883|Pellethane|pellethane| +E0301893|dysidria|dyshidria| +E0301921|Prepar|Pre-par| +E0301934|mid-trimester|midtrimester| +E0301935|mid-trimester|midtrimester| +E0301936|mid-trimester|midtrimester| +E0301945|preleucemia|preleukemia| +E0301945|preleukaemia|preleukemia| +E0301945|preleucaemia|preleukemia| +E0301948|fenilprenazone|phenylprenazone| +E0301960|privatisation|privatization| +E0301962|pro-opiocortin|proopiocortin| +E0301962|pro opiocortin|proopiocortin| +E0301975|prodigiosan|prodigiozan| +E0301988|prometazin|promethazine| +E0302010|bee bread|beebread| +E0302025|prospidine|prospidin| +E0302026|epoprostanol|epoprostenol| +E0302032|protionamide|prothionamide| +E0302050|pseudo-hypoparathyroidism|pseudohypoparathyroidism| +E0302054|pseudo-pseudohypoparathyroidism|pseudopseudohypoparathyroidism| +E0302054|pseudopseudo-hypoparathyroidism|pseudopseudohypoparathyroidism| +E0302054|pseudo-pseudo-hypoparathyroidism|pseudopseudohypoparathyroidism| +E0302056|psilocybin|psilocybine| +E0302130|racketball|racquetball| +E0302135|radio-assay|radioassay| +E0302200|rifamycin|rifomycin| +E0302201|remantadine|rimantadine| +E0302201|riamantadine|rimantadine| +E0302208|robenzidine|robenzidene| +E0302215|Roumania|Romania| +E0302215|Rumania|Romania| +E0302266|Schizo-saccharomyces|Schizosaccharomyces| +E0302275|sea lion|sealion| +E0302284|selegyline|selegiline| +E0302325|skate board|skateboard| +E0302326|skate board|skateboard| +E0302374|spiramycin|spiramycine| +E0302377|veroshpiron|verospirone| +E0302380|spleno-megaly|splenomegaly| +E0302447|sulphachlorpyridazine|sulfachloropyridazine| +E0302453|sulformetoxin|sulformetoxine| +E0302457|sulphametopyrazine|sulfametopyrazine| +E0302464|sulphametoxidine|sulfametoxidine| +E0302465|sulphamethoxydiazine|sulfametoxydiazine| +E0302471|sulfamethoxypyridazine|sulphamethoxypyridazine| +E0302476|sulphapyridine|sulphapyridin| +E0302476|sulfapyridin|sulphapyridin| +E0302476|sulfapyridine|sulphapyridin| +E0302480|norsulfazol|norsulfazole| +E0302485|sulphasomidine|sulfaisodimidine| +E0302489|bromosulphophthalein|bromosulfophthalein| +E0302522|fusariotoxin|fusaritoxin| +E0302526|Tadjikistan|Tajikistan| +E0302526|Tadzhikistan|Tajikistan| +E0302532|ankle bone|anklebone| +E0302538|taufon|tauphon| +E0302581|tetraphenyl borate|tetraphenylborate| +E0302642|thioacetamid|thiacetamid| +E0302642|thioacetamide|thiacetamid| +E0302668|tiorphan|thiorphan| +E0302675|thiosulphate|thiosulfate| +E0302684|thrombocythaemia|thrombocythemia| +E0302702|wryneck|wry neck| +E0302710|toyokamycin|toyocamycin| +E0302719|trans-activator|transactivator| +E0302737|trimetoquinol|trimethoquinol| +E0302752|chlorofos|chlorophos| +E0302811|trimethaphan|trimetaphan| +E0302815|centrin|centran| +E0302860|tularaemia|tularemia| +E0302865|tree shrew|treeshrew| +E0302883|up-regulation|upregulation| +E0302947|weight loss|weightloss| +E0302958|bouba|buba| +E0302970|zolasepam|zolazepam| +E0303097|adenylylsulfatase|adenylylsulphatase| +E0303277|ametryn|ametryne| +E0303353|amylin-amide|amylinamide| +E0303377|anhydro-tetrodotoxin|anhydrotetrodotoxin| +E0303455|aquomethaemoglobin|aquomethemoglobin| +E0303512|asialo-oligosaccharide|asialooligosaccharide| +E0303513|asialo-orosomucoid|asialoorosomucoid| +E0303514|asialo-ovomucoid|asialoovomucoid| +E0303639|bacterio-opsin|bacterioopsin| +E0303646|bactokulicide|bactoculicide| +E0303725|benzenesulphohydrazide|benzenesulfohydrazide| +E0303726|benzenesulphonamide|benzenesulfonamide| +E0303844|bis-tris|bistris| +E0303850|bitoksybacillin|bitoxibacillin| +E0304113|carboxymethyl cellulase|carboxymethylcellulase| +E0304676|metopon|metaupon| +E0304717|isopropyl acetone|isopropylacetone| +E0304877|monofurfurylidene acetone|monofurfurylideneacetone| +E0304888|mono-octanoin|monooctanoin| +E0304889|mono-olein|monoolein| +E0304911|motropine|motropin| +E0304914|moxesterol|moxestrol| +E0304914|moxestrel|moxestrol| +E0305255|octoxinol|octoxynol| +E0305531|penta-acetyldigitoxin|pentaacetyldigitoxin| +E0305532|penta-acetylgitoxin|pentaacetylgitoxin| +E0305533|penta-ammineaquaruthenium|pentaammineaquaruthenium| +E0305534|penta-amminechlororuthenium|pentaamminechlororuthenium| +E0305560|pentoxy-resorufin|pentoxyresorufin| +E0305560|pentoxy resorufin|pentoxyresorufin| +E0305616|phallolysin|phallolysine| +E0305678|phenylsulphate|phenylsulfate| +E0305721|phospho-opsin|phosphoopsin| +E0305783|sila-hexocyclium|silahexocyclium| +E0305809|sirohaem|siroheme| +E0305830|Solco Trichovac|SolcoTrichovac| +E0305831|Solco Urovac|SolcoUrovac| +E0305878|spirobramine|spirobramin| +E0305981|sulphaclozine|sulfaclozine| +E0305994|sulphatolamide|sulfatolamide| +E0305998|sulphitocobalamin|sulfitocobalamin| +E0306005|sulfo-ciprofloxacin|sulfociprofloxacin| +E0306011|sulphophosphovanillin|sulfophosphovanillin| +E0306012|sulphoquinovose|sulfoquinovose| +E0306014|sulfotep|sulfotepp| +E0306015|sulphotrim|sulfotrim| +E0306028|super EPA|superEPA| +E0306161|terbutryn|terbutryne| +E0306161|terbutrin|terbutryne| +E0306178|tetra-acetylmelitten|tetraacetylmelitten| +E0306193|tetra-ethyltin|tetraethyltin| +E0306231|tetraphenyl phosphonium|tetraphenylphosphonium| +E0306254|theo-esberiven|theoesberiven| +E0306291|thiokol|thiokol| +E0306396|thomycide|tomicide| +E0306497|triethyl lead|triethyllead| +E0306531|trimethyl lead|trimethyllead| +E0306726|verdohaemochrome|verdohemochrome| +E0306764|vinylcyclo-octane|vinylcyclooctane| +E0306886|arrhinencephaly|arhinencephaly| +E0306892|CD-ROM|CDROM| +E0306895|data bank|databank| +E0306900|floor covering|floorcovering| +E0306918|ethmozine|ethmozin| +E0306918|etmozin|ethmozin| +E0306919|moracizine|moracizin| +E0306970|carboxymethyl-curdlan|carboxymethylcurdlan| +E0306970|carboxymethyl curdlan|carboxymethylcurdlan| +E0307049|gengkwanin|genkwanin| +E0307053|glucosulphone|glucosulfone| +E0307073|iberiatoxin|iberiotoxin| +E0307093|kijimicin|kijimycin| +E0307098|leukopyrokinin|leucopyrokinin| +E0307099|leukosulfakinin|leucosulfakinin| +E0307099|leucosulphakinin|leucosulfakinin| +E0307099|leukosulphakinin|leucosulfakinin| +E0307120|mira-gel|miragel| +E0307129|Nichrome|nichrome| +E0307194|santamarin|santamarine| +E0307212|sulphoevernan|sulfoevernan| +E0307256|load bearing|loadbearing| +E0307257|weight bearing|weightbearing| +E0307257|weight-bearing|weightbearing| +E0307258|needle sharing|needlesharing| +E0307258|needle-sharing|needlesharing| +E0307268|agrichemical|agrochemical| +E0307270|pancreatico-duodenectomy|pancreaticoduodenectomy| +E0307283|needle stick|needlestick| +E0307283|needle-stick|needlestick| +E0307325|synapto-physin|synaptophysin| +E0307331|radio-immunoscintigraphy|radioimmunoscintigraphy| +E0307331|radioimmuno-scintigraphy|radioimmunoscintigraphy| +E0307375|hypocapnaemia|hypocapnemia| +E0307408|polydipsia|polydypsia| +E0307412|drop foot|dropfoot| +E0307412|drop-foot|dropfoot| +E0307421|amiksin|amyxin| +E0307421|amixin|amyxin| +E0307445|co-dependence|codependence| +E0307446|co-dependency|codependency| +E0307455|deprenil|deprenyl| +E0307467|en-clomiphene|enclomifene| +E0307467|enclomiphene|enclomifene| +E0307467|enclomiphen|enclomifene| +E0307467|en clomiphene|enclomifene| +E0307480|phthivazide|ftivazide| +E0307486|gastrozepin|gastrotsepin| +E0307492|homeo box|homeobox| +E0307505|kidnaping|kidnapping| +E0307517|non-respondent|nonrespondent| +E0307712|alkylsulphohydrolase|alkylsulfohydrolase| +E0307848|antiffeine|antifein| +E0308063|benzhydrylsulphinylacetamide|benzhydrylsulfinylacetamide| +E0308102|bicarphen|bicarfen| +E0308121|binapakril|binapacrile| +E0308291|chetofenilbutazone|chetofenilbutazon| +E0308297|chloracyzine|chloracysine| +E0308500|cresacin|crezacin| +E0308500|crezacine|crezacin| +E0308500|krezatsin|crezacin| +E0308535|cyanomorpholino-adriamycin|cyanomorpholinoadriamycin| +E0308569|cyclo-somatostatin|cyclosomatostatin| +E0308662|deitiphorine|deitiforine| +E0308729|desacetyl rifampicin|desacetylrifampicin| +E0308762|desmetryn|desmetryne| +E0308952|dilafurane|Dilafurane| +E0309008|diminazene aceturate|diminazenaceturate| +E0309115|dual cement|dualcement| +E0309327|elokron|elocron| +E0309340|emoxypin|emoxipin| +E0309340|emoxypine|emoxipin| +E0309340|emoxipine|emoxipin| +E0309351|endo-xylanase|endoxylanase| +E0309382|epitiostanol|epithiostanol| +E0309384|ethacizine|etatsizin| +E0309384|etacizin|etatsizin| +E0309384|etatsizine|etatsizin| +E0309384|etacyzine|etatsizin| +E0309384|ethacizin|etatsizin| +E0309395|ergokrystin|ergocrystin| +E0309395|ergocristine|ergocrystin| +E0309404|erigem|erygem| +E0309450|ethirazole|ethirazol| +E0309461|ethylbenztropine|ethylbenzatropine| +E0309463|ethylbromphenvinphos|ethylbromfenvinfos| +E0309463|ethylbromphenvinfos|ethylbromfenvinfos| +E0309489|etophylline|etophyllin| +E0309518|falicain|falicaine| +E0309537|fenaminosulph|fenaminosulf| +E0309548|fenitrooxone|fenitrooxon| +E0309548|fenitro-oxon|fenitrooxon| +E0309548|fenitro-oxone|fenitrooxon| +E0309558|fenvalerate|fenvalarate| +E0309562|ferakryl|ferakril| +E0309568|ferricyanohaemoglobin|ferricyanohemoglobin| +E0309576|ferroactinolite|ferroactinolyte| +E0309629|fluorosulphonate|fluorosulfonate| +E0309652|formidacillin|foramidocillin| +E0309662|formvar|Formvar| +E0309745|ganglefene|ganglefen| +E0309777|germacrone|germacron| +E0309804|glucametacine|glucametacin| +E0309831|glutaurin|glutaurine| +E0309895|haloanizone|haloanisone| +E0309899|halo-opsin|haloopsin| +E0309928|hepatoglobine|hepatoglobin| +E0309946|hexadecanesulphonate|hexadecanesulfonate| +E0310017|hydrosulphite|hydrosulfite| +E0310037|hydroxymethylsulphonate|hydroxymethylsulfonate| +E0310063|ichtiomicin|ichthyomycin| +E0310063|ichtiomycin|ichthyomycin| +E0310063|ichthyomicin|ichthyomycin| +E0310085|immunomicin|immunomycin| +E0310094|indalone|Indalone| +E0310095|indamicin|indamycin| +E0310110|inkazan|inkasan| +E0310114|inostamicin|inostamycin| +E0310279|kemantane|kemantan| +E0310281|kenshengmycine|kensengmycin| +E0310358|leakadin|leacadin| +E0310359|lekopain|lecopain| +E0310380|leukotoxin|leucotoxin| +E0310385|Leukocell|leukocell| +E0310406|lignosulphonate|lignosulfonate| +E0310422|lipo-oligosaccharide|lipooligosaccharide| +E0310430|listrocol|listricol| +E0310491|lysosulphatide|lysosulfatide| +E0310495|maaloxon|maaloxan| +E0310501|maduramycin|maduramicin| +E0310509|magurlyt|magurlit| +E0310538|maroxepine|maroxepin| +E0310567|megosine|megasin| +E0310578|melperone|melperon| +E0310580|menphegal|menfegal| +E0310580|menphegol|menfegal| +E0310580|menfegol|menfegal| +E0310584|menogaril|menogarol| +E0310614|mesuximide|mesuximid| +E0310623|methamidophos|metamidophos| +E0310626|metamizil|metamyzil| +E0310626|methamisil|metamyzil| +E0310636|methemocyanin|methaemocyanin| +E0310644|metioprim|methioprim| +E0310665|methylbromofos|methylbromophos| +E0310666|methylbromfenvinfos|methylbromphenvinphos| +E0310666|methylbromphenvinfos|methylbromphenvinphos| +E0310666|methylbromfenvinphos|methylbromphenvinphos| +E0310672|methylcobalamine|methylcobalamin| +E0310693|methylsalazosulphapyridine|methylsalazosulfapyridine| +E0310697|methylsulphonylfluoride|methylsulfonylfluoride| +E0310782|monochlorodimedone|monochlorodimedon| +E0310811|monuron|monouron| +E0310849|midecamycin|mydecamycin| +E0310849|midekamycin|mydecamycin| +E0310852|Mylar|mylar| +E0310864|nacom|nakom| +E0310870|naphthaline|naphthalane| +E0310915|nerobolyl|nerobolil| +E0310930|nikofezon|nicophezon| +E0310971|nitrosohaem|nitrosoheme| +E0310980|nitrosylferrohaem|nitrosylferroheme| +E0310981|nitrosylhaem|nitrosylheme| +E0310983|nitrosylprotoheme|nitrosylprotohaem| +E0310992|noformicin|noformycin| +E0310995|nonflamine|nonflamin| +E0311029|norpethidin|norpethidine| +E0311043|novesin|novescine| +E0311049|novurite|novurit| +E0311065|octaethylverdohemochrome|octaethylverdohaemochrome| +E0311080|oxoline|oksolin| +E0311103|optochine|optochin| +E0311103|optoquine|optochin| +E0311108|oraza|orasa| +E0311108|orase|orasa| +E0311111|ORLON|Orlon| +E0311111|orlon|Orlon| +E0311251|paphencyl|paphencil| +E0311302|Perlon|perlon| +E0311322|fenamiphos|phenamiphos| +E0311389|diphtheria-pertussis immunisation|diphtheria-pertussis immunization| +E0311399|drug-metabolising enzyme|drug-metabolizing enzyme| +E0311409|hexamethylenebisacetamide|hexamethylene bisacetamide| +E0311416|hydroxyphenyllactic acid|hydroxyphenyl lactic acid| +E0311423|infection-associated haemophagocytic syndrome|infection-associated hemophagocytic syndrome| +E0311489|human gonadotropin releasing hormone associated peptid|human gonadotropin releasing hormone associated peptide| +E0311489|human gonadotrophin releasing hormone associated peptide|human gonadotropin releasing hormone associated peptide| +E0311489|human gonadotrophin releasing hormone associated peptid|human gonadotropin releasing hormone associated peptide| +E0311698|LRAPeptid|LRAPeptide| +E0311699|leucine-rich amelogenin peptid|leucine-rich amelogenin peptide| +E0311827|metaiodobenzylguanidine|meta-iodobenzylguanidine| +E0312074|NF IV|NFIV| +E0312124|Pekin|Peking| +E0312126|pelletise|pelletize| +E0312127|pelletisation|pelletization| +E0312128|pelletiser|pelletizer| +E0312130|pentasulfated|pentasulphated| +E0312142|photo-excited|photoexcited| +E0312148|photoisomerise|photoisomerize| +E0312149|photoisomerisation|photoisomerization| +E0312153|photo-oxidize|photooxidize| +E0312153|photooxidise|photooxidize| +E0312153|photo-oxidise|photooxidize| +E0312154|photopolymerise|photopolymerize| +E0312155|photopolymerisation|photopolymerization| +E0312168|pinealectomise|pinealectomize| +E0312174|plasticisation|plasticization| +E0312181|polysulphated|polysulfated| +E0312183|polytraumatized|polytraumatised| +E0312196|postlabelling|postlabeling| +E0312197|postlabelling|postlabeling| +E0312222|pre-embed|preembed| +E0312223|pre-establish|preestablish| +E0312224|pre-establishment|preestablishment| +E0312225|pre-expose|preexpose| +E0312235|pre-irradiate|preirradiate| +E0312236|pre-irradiation|preirradiation| +E0312263|proteolyze|proteolyse| +E0312270|purse string|pursestring| +E0312270|purse-string|pursestring| +E0312274|quantise|quantize| +E0312275|quantisation|quantization| +E0312276|radio-binding|radiobinding| +E0312278|radio-imaging|radioimaging| +E0312280|radio-immunobinding|radioimmunobinding| +E0312280|radioimmuno-binding|radioimmunobinding| +E0312281|radio-immunoimaging|radioimmunoimaging| +E0312281|radioimmuno-imaging|radioimmunoimaging| +E0312282|radioimmuno-precipitated|radioimmunoprecipitated| +E0312320|recatheterisation|recatheterization| +E0312328|recolonise|recolonize| +E0312333|reconceptualise|reconceptualize| +E0312341|recrystallisation|recrystallization| +E0312371|rehospitalise|rehospitalize| +E0312372|rehospitalisation|rehospitalization| +E0312417|unsulphated|unsulfated| +E0312482|repolarise|repolarize| +E0312483|repolarisation|repolarization| +E0312515|reutilise|reutilize| +E0312516|reutilisation|reutilization| +E0312519|revascularise|revascularize| +E0312520|revolutionalise|revolutionalize| +E0312523|ritualise|ritualize| +E0312524|ritualisation|ritualization| +E0312527|rumor|rumour| +E0312538|semi-structured|semistructured| +E0312539|sensibilise|sensibilize| +E0312544|servocontrol|servo-control| +E0312546|shoe-string|shoestring| +E0312552|siliconise|siliconize| +E0312553|siliconisation|siliconization| +E0312567|smoulder|smolder| +E0312568|smoulder|smolder| +E0312582|spiralise|spiralize| +E0312583|spiralisation|spiralization| +E0312603|subspecialise|subspecialize| +E0312604|subspecialisation|subspecialization| +E0312616|synthetise|synthetize| +E0312628|tetrasulphonated|tetrasulfonated| +E0312632|thermosensitise|thermosensitize| +E0312636|thoracotomise|thoracotomize| +E0312649|tolerise|tolerize| +E0312650|tolerisation|tolerization| +E0312654|traumatise|traumatize| +E0312655|traumatisation|traumatization| +E0312671|trisulphated|trisulfated| +E0312683|unacclimatized|unacclimatised| +E0312704|unbiassed|unbiased| +E0312718|uncatalysed|uncatalyzed| +E0312719|uncategorised|uncategorized| +E0312735|uncolonised|uncolonized| +E0312758|underemphasise|underemphasize| +E0312769|underutilise|underutilize| +E0312770|underutilisation|underutilization| +E0312835|unionise|unionize| +E0312852|unmetabolized|unmetabolised| +E0312854|unmineralised|unmineralized| +E0312865|unoxidised|unoxidized| +E0312867|unpasteurised|unpasteurized| +E0312886|unrealised|unrealized| +E0312898|unrivalled|unrivaled| +E0312908|unsensitised|unsensitized| +E0312915|unspecialised|unspecialized| +E0312916|unstabilised|unstabilized| +E0313012|nucleosidetriphosphatase|nucleoside-triphosphatase| +E0313085|phenylalanyldiiodotyrosine|phenylalanyl-diiodotyrosine| +E0313215|polyhexylcyanoacrylate|polyhexyl cyanoacrylate| +E0313307|foetal acute phase agent|fetal acute phase agent| +E0313854|cetyltrimethylammonium bromide|cetyltrimethyl-ammonium bromide| +E0314504|glucosaminyl-muramyl-dipeptide|glucosaminylmuramyl dipeptide| +E0314524|hypercalcaemic hormone|hypercalcemic hormone| +E0314564|biologic false positive|biologic false-positive| +E0314582|extracorporeal shock wave lithotripsy|extracorporeal shockwave lithotripsy| +E0314606|bromsulfalein sodium|bromsulphalein sodium| +E0314614|automated anaesthesia record keeper|automated anesthesia record keeper| +E0314660|fluorescent treponemal antibody-absorption|fluorescent treponemal antibody absorption| +E0314680|hexamethyl-phosphoric triamide|hexamethylphosphoric triamide| +E0314816|auriculo-ventricular|auriculoventricular| +E0314825|enzyme linked immunosorbent assay|enzyme-linked immunosorbent assay| +E0314825|enzyme-linked immuno-sorbent assay|enzyme-linked immunosorbent assay| +E0314825|enzyme linked immuno-sorbent assay|enzyme-linked immunosorbent assay| +E0314830|human T cell leukaemia lymphoma virus|human T cell leukemia lymphoma virus| +E0314830|human T cell leucaemia lymphoma virus|human T cell leukemia lymphoma virus| +E0314830|human T cell leucemia lymphoma virus|human T cell leukemia lymphoma virus| +E0314916|tuberculin-tested|tuberculin tested| +E0314954|diagnosis related group|diagnosis-related group| +E0314958|steroid sulphatase|steroid sulfatase| +E0314985|positive attention behaviour|positive attention behavior| +E0315030|preventive health behaviour|preventive health behavior| +E0315039|pyriform|piriform| +E0315056|high-molecular-weight kininogen|high molecular weight kininogen| +E0315071|peanut-agglutinin|peanut agglutinin| +E0315105|voltampere|volt-ampere| +E0315115|electroolfactogram|electro-olfactogram| +E0315116|extractibility|extractability| +E0315117|thermosensitisation|thermosensitization| +E0315120|non-linearity|nonlinearity| +E0315122|over-expression|overexpression| +E0315379|HibTITER|Hibtiter| +E0315489|ALEC|Alec| +E0316683|monosulphated|monosulfated| +E0316688|multibarrelled|multibarreled| +E0316688|multi-barreled|multibarreled| +E0316688|multi-barrelled|multibarreled| +E0316689|multicentred|multicentered| +E0316689|multi-centered|multicentered| +E0316689|multi-centred|multicentered| +E0316691|multicoloured|multicolored| +E0316691|multi-colored|multicolored| +E0316691|multi-coloured|multicolored| +E0316692|multi-handicapped|multihandicapped| +E0316693|multi-laminated|multilaminated| +E0316694|multi-layered|multilayered| +E0316695|multi-layering|multilayering| +E0316696|multi-lobated|multilobated| +E0316699|multi-transfused|multitransfused| +E0316703|myristylated|myristoylated| +E0316705|necrotise|necrotize| +E0316706|necrotisation|necrotization| +E0316708|neovascularizing|neovascularising| +E0316716|noise-making|noisemaking| +E0316717|noise-making|noisemaking| +E0316720|non-affected|nonaffected| +E0316725|nonanaesthetised|nonanesthetized| +E0316725|non-anesthetized|nonanesthetized| +E0316725|non-anaesthetised|nonanesthetized| +E0316726|nonasulfated|nonasulphated| +E0316731|non-calcified|noncalcified| +E0316732|non-caseating|noncaseating| +E0316735|non-communicating|noncommunicating| +E0316744|non-demented|nondemented| +E0316747|nondepolarised|nondepolarized| +E0316747|non-depolarized|nondepolarized| +E0316747|non-depolarised|nondepolarized| +E0316748|nondepolarising|nondepolarizing| +E0316748|non-depolarizing|nondepolarizing| +E0316748|non-depolarising|nondepolarizing| +E0316749|non depressed|nondepressed| +E0316749|non-depressed|nondepressed| +E0316756|nonenergised|nonenergized| +E0316756|non-energized|nonenergized| +E0316756|non-energised|nonenergized| +E0316758|non-exposed|nonexposed| +E0316764|non-functioning|nonfunctioning| +E0316772|nonheparinised|nonheparinized| +E0316772|non-heparinized|nonheparinized| +E0316772|non-heparinised|nonheparinized| +E0316773|nonhospitalised|nonhospitalized| +E0316773|non-hospitalized|nonhospitalized| +E0316773|non-hospitalised|nonhospitalized| +E0316774|nonhydrolysed|nonhydrolyzed| +E0316774|non-hydrolyzed|nonhydrolyzed| +E0316774|non-hydrolysed|nonhydrolyzed| +E0316776|non-imaging|nonimaging| +E0316777|nonimmunised|nonimmunized| +E0316777|non-immunized|nonimmunized| +E0316777|non-immunised|nonimmunized| +E0316779|non-implanted|nonimplanted| +E0316784|non-infiltrating|noninfiltrating| +E0316791|non ionized|nonionized| +E0316791|non-ionized|nonionized| +E0316793|nonkeratinised|nonkeratinized| +E0316793|non-keratinized|nonkeratinized| +E0316793|non-keratinised|nonkeratinized| +E0316794|nonkeratinising|nonkeratinizing| +E0316794|non-keratinizing|nonkeratinizing| +E0316794|non-keratinising|nonkeratinizing| +E0316795|nonlabelled|nonlabeled| +E0316795|non-labeled|nonlabeled| +E0316795|non-labelled|nonlabeled| +E0316800|nonmetabolised|nonmetabolized| +E0316800|non-metabolized|nonmetabolized| +E0316800|non-metabolised|nonmetabolized| +E0316806|nonopsonised|nonopsonized| +E0316806|non-opsonized|nonopsonized| +E0316806|non-opsonised|nonopsonized| +E0316809|non-penetrating|nonpenetrating| +E0316813|non-pigmented|nonpigmented| +E0316815|nonpolarised|nonpolarized| +E0316815|non-polarized|nonpolarized| +E0316815|non-polarised|nonpolarized| +E0316816|non-polyadenylated|nonpolyadenylated| +E0316819|non producing|nonproducing| +E0316819|non-producing|nonproducing| +E0316826|non-refluxing|nonrefluxing| +E0316835|non-secreting|nonsecreting| +E0316838|nonsensitised|nonsensitized| +E0316838|non-sensitized|nonsensitized| +E0316838|non-sensitised|nonsensitized| +E0316841|nonspecialised|nonspecialized| +E0316841|non-specialized|nonspecialized| +E0316841|non-specialised|nonspecialized| +E0316843|nonsplenectomised|nonsplenectomized| +E0316843|non-splenectomized|nonsplenectomized| +E0316843|non-splenectomised|nonsplenectomized| +E0316844|nonstandardised|nonstandardized| +E0316844|non-standardized|nonstandardized| +E0316844|non-standardised|nonstandardized| +E0316845|non-stimulated|nonstimulated| +E0316848|nonsulphated|nonsulfated| +E0316848|non-sulfated|nonsulfated| +E0316848|non-sulphated|nonsulfated| +E0316853|non-sustained|nonsustained| +E0316855|non teaching|nonteaching| +E0316855|non-teaching|nonteaching| +E0316862|non treated|nontreated| +E0316862|non-treated|nontreated| +E0316867|non-vaccinated|nonvaccinated| +E0316868|non-vaccination|nonvaccination| +E0316869|nonvascularised|nonvascularized| +E0316869|non-vascularized|nonvascularized| +E0316869|non-vascularised|nonvascularized| +E0316873|non-working|nonworking| +E0316879|estrogenized|oestrogenized| +E0316879|oestrogenised|oestrogenized| +E0316879|estrogenised|oestrogenized| +E0316880|oligomerise|oligomerize| +E0316882|operationalise|operationalize| +E0316883|operationalisation|operationalization| +E0316884|orchidectomise|orchidectomize| +E0316891|orthokeratinised|orthokeratinized| +E0316895|osteotomise|osteotomize| +E0316915|over-represent|overrepresent| +E0316953|antileukemic|antileukaemic| +E0316953|antileucemic|antileukaemic| +E0316953|antileucaemic|antileukaemic| +E0316965|dysalbuminemic|dysalbuminaemic| +E0316969|euprolactinaemic|euprolactinemic| +E0316974|hepta-carboxylic|heptacarboxylic| +E0316976|hydroxyeicosapentenoic|hydroxyeicosapentaenoic| +E0316978|hypergammaglobulinaemic|hypergammaglobulinemic| +E0316982|hypoprolactinaemic|hypoprolactinemic| +E0316984|hypoprothrombinaemic|hypoprothrombinemic| +E0316985|intra-cytoplasmatic|intracytoplasmatic| +E0316998|non symptomatic|nonsymptomatic| +E0316998|non-symptomatic|nonsymptomatic| +E0317008|sulfosalicylic|sulphosalicylic| +E0317013|ursacholic|ursocholic| +E0317016|acanthamebic|acanthamoebic| +E0317017|acatalasaemic|acatalasemic| +E0317019|aminoethanesulphonic|aminoethanesulfonic| +E0317026|bilio-enteric|bilioenteric| +E0317036|duodeno-pancreatic|duodenopancreatic| +E0317047|haematuric|hematuric| +E0317052|hyperlipemic|hyperlipaemic| +E0317089|vestibulo-collic|vestibulocollic| +E0317096|antihemolytic|antihaemolytic| +E0317106|cerebello-thalamic|cerebellothalamic| +E0317179|trisulphonic|trisulfonic| +E0317185|anti-alcoholic|antialcoholic| +E0317231|hypernatremic|hypernatraemic| +E0317233|hypoalbuminemic|hypoalbuminaemic| +E0317238|immunoelectron microscopic|immunoelectronmicroscopic| +E0317238|immuno-electron microscopic|immunoelectronmicroscopic| +E0317249|micro-morphologic|micromorphologic| +E0317298|aminopropanesulphonic|aminopropanesulfonic| +E0317322|dysglobulinaemic|dysglobulinemic| +E0317323|dysmenorrheic|dysmenorrhoeic| +E0317329|heptanesulphonic|heptanesulfonic| +E0317341|hypergastrinemic|hypergastrinaemic| +E0317343|hyperuricemic|hyperuricaemic| +E0317345|hypoproteinemic|hypoproteinaemic| +E0317349|insulinemic|insulinaemic| +E0317381|radio-enzymic|radioenzymic| +E0317382|radio-immunoelectrophoretic|radioimmunoelectrophoretic| +E0317382|radioimmuno-electrophoretic|radioimmunoelectrophoretic| +E0317396|uretero-colic|ureterocolic| +E0317451|entero-colic|enterocolic| +E0317460|gastro-colonic|gastrocolonic| +E0317476|hypermagnesemic|hypermagnesaemic| +E0317486|mechano-electric|mechanoelectric| +E0317597|dysgammaglobulinaemic|dysgammaglobulinemic| +E0317623|hyperphosphatemic|hyperphosphataemic| +E0317626|hypouricemic|hypouricaemic| +E0317636|macroglobulinaemic|macroglobulinemic| +E0317701|tetrasulphonic|tetrasulfonic| +E0317707|toluenesulfonic|toluenesulphonic| +E0317804|diazobenzenesulphonic|diazobenzenesulfonic| +E0317817|dimethyl arsenic|dimethylarsenic| +E0317817|dimethylarsinic|dimethylarsenic| +E0317817|dimethyl arsinic|dimethylarsenic| +E0317842|fibrinemic|fibrinaemic| +E0317853|guanidinoethanesulfonic|guanidinoethanesulphonic| +E0317854|hemoglobinolytic|haemoglobinolytic| +E0317855|hemolymphatic|haemolymphatic| +E0317856|haemocytic|hemocytic| +E0317861|hexanesulphonic|hexanesulfonic| +E0317895|isothiocyanatobenzenesulphonic|isothiocyanatobenzenesulfonic| +E0317904|lympholeukaemic|lympholeukemic| +E0317904|lympholeucemic|lympholeukemic| +E0317904|lympholeucaemic|lympholeukemic| +E0317905|lymphopenic|lymphopaenic| +E0317908|meningo-encephalic|meningoencephalic| +E0317910|mercaptoethanesulfonic|mercaptoethanesulphonic| +E0317928|naphthylaminesulphonic|naphthylaminesulfonic| +E0317951|oxoethanesulphonic|oxoethanesulfonic| +E0318026|vinylsulphonic|vinylsulfonic| +E0318031|neuropaediatric|neuropediatric| +E0318034|lactonisation|lactonization| +E0318036|microhaemagglutination|microhemagglutination| +E0318040|postembolisation|postembolization| +E0318041|structuralisation|structuralization| +E0318043|trimerisation|trimerization| +E0318063|allosensitisation|allosensitization| +E0318070|desulphuration|desulfuration| +E0318072|enolisation|enolization| +E0318080|humanisation|humanization| +E0318082|microvascularisation|microvascularization| +E0318089|aromatisation|aromatization| +E0318092|cationisation|cationization| +E0318099|departmentalisation|departmentalization| +E0318100|departmentalise|departmentalize| +E0318110|parameterisation|parameterization| +E0318111|parameterise|parameterize| +E0318113|prioritisation|prioritization| +E0318115|resocialisation|resocialization| +E0318116|resocialise|resocialize| +E0318122|cryo-section|cryosection| +E0318122|cryo section|cryosection| +E0318134|bilateralisation|bilateralization| +E0318136|cellularisation|cellularization| +E0318139|compactisation|compactization| +E0318140|customisation|customization| +E0318147|precurarisation|precurarization| +E0318148|re-precipitation|reprecipitation| +E0318149|supersensitisation|supersensitization| +E0318150|thermostabilisation|thermostabilization| +E0318151|topoisomerisation|topoisomerization| +E0318158|cicatrization|cicatrisation| +E0318161|demasculinisation|demasculinization| +E0318162|demasculinise|demasculinize| +E0318165|dextro-transposition|dextrotransposition| +E0318166|digitalization|digitalisation| +E0318167|digitilise|digitilize| +E0318172|micellisation|micellization| +E0318185|subcategorisation|subcategorization| +E0318186|subcategorise|subcategorize| +E0318187|temporisation|temporization| +E0318188|thromboembolisation|thromboembolization| +E0318191|coloration|colouration| +E0318208|photodimerisation|photodimerization| +E0318214|asynchronisation|asynchronization| +E0318217|bureaucratisation|bureaucratization| +E0318218|chimerisation|chimerization| +E0318222|decriminalisation|decriminalization| +E0318223|defunctionalisation|defunctionalization| +E0318224|depoliticisation|depoliticization| +E0318225|depoliticise|depoliticize| +E0318231|dorsalisation|dorsalization| +E0318232|dorsalise|dorsalize| +E0318234|haemoadsorption|hemoadsorption| +E0318244|skeletonisation|skeletonization| +E0318245|skeletonise|skeletonize| +E0318252|Americanisation|Americanization| +E0318253|Americanise|Americanize| +E0318267|leucoagglutination|leukoagglutination| +E0318268|microcrystallisation|microcrystallization| +E0318271|neurosensitisation|neurosensitization| +E0318276|pressurise|pressurize| +E0318281|thermocauterisation|thermocauterization| +E0318282|thermocauterise|thermocauterize| +E0318284|xenohybridisation|xenohybridization| +E0318287|academisation|academization| +E0318289|alphabetisation|alphabetization| +E0318290|alphabetise|alphabetize| +E0318291|anodisation|anodization| +E0318292|anodise|anodize| +E0318293|autopolymerisation|autopolymerization| +E0318294|bicompartmentalisation|bicompartmentalization| +E0318295|bicompartmentalise|bicompartmentalize| +E0318297|colorisation|colorization| +E0318297|colourization|colorization| +E0318297|colourisation|colorization| +E0318298|colourize|colorize| +E0318298|colorise|colorize| +E0318298|coulorise|colorize| +E0318303|decolouration|decoloration| +E0318308|federalisation|federalization| +E0318309|federalise|federalize| +E0318310|finalisation|finalization| +E0318312|glucuronisation|glucuronization| +E0318313|glucoronise|glucoronize| +E0318314|haploidisation|haploidization| +E0318315|haploidise|haploidize| +E0318317|impersonalisation|impersonalization| +E0318318|impersonalise|impersonalize| +E0318320|monosulphation|monosulfation| +E0318322|motorisation|motorization| +E0318323|neuroimmunisation|neuroimmunization| +E0318326|radiolocalisation|radiolocalization| +E0318326|radio-localization|radiolocalization| +E0318327|romanticisation|romanticization| +E0318328|saponisation|saponization| +E0318329|scrutinisation|scrutinization| +E0318330|sexualisation|sexualization| +E0318331|sexualise|sexualize| +E0318334|thermoradiosensitisation|thermoradiosensitization| +E0318336|xanthomatisation|xanthomatization| +E0318339|re-occlusion|reocclusion| +E0318349|post-transfusion|posttransfusion| +E0318350|post-transfusion|posttransfusion| +E0318351|post-transfusion|posttransfusion| +E0318353|post-lesion|postlesion| +E0318354|post-lesion|postlesion| +E0318400|haemotransfusion|hemotransfusion| +E0318404|post-admission|postadmission| +E0318405|post-admission|postadmission| +E0318412|autohaemotransfusion|autohemotransfusion| +E0318418|radioimmuno-diffusion|radioimmunodiffusion| +E0318418|radio-immuno-diffusion|radioimmunodiffusion| +E0318418|radio-immunodiffusion|radioimmunodiffusion| +E0318426|re-assort|reassort| +E0318427|over-treatment|overtreatment| +E0318428|over-treat|overtreat| +E0318555|spondyl-arthrosis|spondylarthrosis| +E0318563|leucopoiesis|leukopoiesis| +E0318599|erythroleucosis|erythroleukosis| +E0318602|haematoemesis|hematoemesis| +E0318603|haematophagocytosis|hematophagocytosis| +E0318604|haemobartonellosis|hemobartonellosis| +E0318627|medalist|medallist| +E0318671|ethylmalonic-adipicaciduria|ethylmalonic-adipic aciduria| +E0318743|cycloxilic acid|cicloxilic acid| +E0318809|indole acrylic acid|indoleacrylic acid| +E0318810|indole acrylic glycine|indoleacrylic glycine| +E0318818|bromoethanesulphonic acid|bromoethanesulfonic acid| +E0318847|beta nitropropionic acid|beta-nitropropionic acid| +E0318849|thiazolidinecarboxylic acid|thiazolidine carboxylic acid| +E0318853|para-benzylaminesulphonic acid|para-benzylaminesulfonic acid| +E0318869|beta hydroxyvaleric acid|beta-hydroxyvaleric acid| +E0318905|beta naphthoxyacetic acid|beta-naphthoxyacetic acid| +E0318909|octanesulphonic acid|octanesulfonic acid| +E0318914|beta ureidopropionic acid|beta-ureidopropionic acid| +E0318916|aminobenzenesulphonic acid|aminobenzenesulfonic acid| +E0318917|para-aminobenzenesulphonic acid|para-aminobenzenesulfonic acid| +E0318995|mercaptoethanesulfonic acid|mercaptoethanesulphonic acid| +E0319009|oxoethanesulphonic acid|oxoethanesulfonic acid| +E0319059|leukaemia virus|leukemia virus| +E0319059|leucemia virus|leukemia virus| +E0319059|leucaemia virus|leukemia virus| +E0319084|three-fold|threefold| +E0319085|three-fold|threefold| +E0319111|KJ|kj| +E0319141|isoquinolinesulphonyl|isoquinolinesulfonyl| +E0319142|immunocyto-chemically|immunocytochemically| +E0319142|immuno-cytochemically|immunocytochemically| +E0319148|non-responder|nonresponder| +E0319154|haemodynamically|hemodynamically| +E0319168|post-injection|postinjection| +E0319173|non-verbal|nonverbal| +E0319173|non verbal|nonverbal| +E0319175|venous haematocrit|venous hematocrit| +E0319187|endothelium derived relaxing factor|endothelium-derived relaxing factor| +E0319205|non-mammalian|nonmammalian| +E0319209|subsp.|subsp| +E0319211|Machado Joseph disease|Machado-Joseph disease| +E0319229|plaque neutralisation|plaque neutralization| +E0319229|placque neutralization|plaque neutralization| +E0319229|placque neutralisation|plaque neutralization| +E0319253|knock-out|knockout| +E0319253|knock out|knockout| +E0319286|anti-tubercular|antitubercular| +E0319287|anti-proliferative|antiproliferative| +E0319296|over-production|overproduction| +E0319297|over-produce|overproduce| +E0319301|anti-cardiolipin|anticardiolipin| +E0319302|anti-cardiolipin antibody|anticardiolipin antibody| +E0319323|multi-meric|multimeric| +E0319346|oestradiol-binding protein|estradiol-binding protein| +E0319362|reinforced manoeuvre|reinforced maneuver| +E0319363|manoeuvre|maneuver| +E0319385|spectro-photometrically|spectrophotometrically| +E0319391|intra-fallopian|intrafallopian| +E0319402|meter|metre| +E0319405|bio-electrical|bioelectrical| +E0319431|rectal morphine sulphate|rectal morphine sulfate| +E0319456|intra-individual|intraindividual| +E0319459|long-standing|longstanding| +E0319471|rostro-caudal|rostrocaudal| +E0319492|ferrihaemoprotein|ferrihemoprotein| +E0319501|heamagglutinin neuraminidase|hemagglutinin neuraminidase| +E0319521|read-only memory|read only memory| +E0319543|phenol sulfotransferase|phenolsulfotransferase| +E0319543|phenol sulphotransferase|phenolsulfotransferase| +E0319543|phenolsulphotransferase|phenolsulfotransferase| +E0319575|co-stimulate|costimulate| +E0319576|co-stimulation|costimulation| +E0319593|gastrin-releasing peptid|gastrin-releasing peptide| +E0319595|vitreo-retinopathy|vitreoretinopathy| +E0319607|ultra-sonically|ultrasonically| +E0319622|organo-typic|organotypic| +E0319631|non-palpable|nonpalpable| +E0319634|radio-protective|radioprotective| +E0319634|radio protective|radioprotective| +E0319643|semi-quantitatively|semiquantitatively| +E0319644|euthanise|euthanize| +E0319652|non-transgenic|nontransgenic| +E0319658|pro-arrhythmic|proarrhythmic| +E0319661|hydrolysable|hydrolyzable| +E0319673|pro-inflammatory|proinflammatory| +E0319691|life span|lifespan| +E0319709|neurogenic bladder disfunction|neurogenic bladder dysfunction| +E0319732|bucco-linguo-masticatory|buccolinguomasticatory| +E0319772|ascites tumour fluid|ascites tumor fluid| +E0319807|work site|worksite| +E0319816|non-collagenous|noncollagenous| +E0319885|naso-tracheal|nasotracheal| +E0319887|post-conceptional|postconceptional| +E0319890|co-immunoprecipitation|coimmunoprecipitation| +E0319891|nontumourous|nontumorous| +E0319891|non-tumorous|nontumorous| +E0319891|non-tumourous|nontumorous| +E0319910|pancreatico-biliary|pancreaticobiliary| +E0319911|non conservative|nonconservative| +E0319911|non-conservative|nonconservative| +E0319914|case load|caseload| +E0319928|immuno-active|immunoactive| +E0319946|neurosecretory disfunction|neurosecretory dysfunction| +E0319966|central tumour registry|central tumor registry| +E0319991|behavioural disorder|behavioral disorder| +E0320017|germfree|germ-free| +E0320019|post-anesthesia|postanesthesia| +E0320019|postanaesthesia|postanesthesia| +E0320019|post-anaesthesia|postanesthesia| +E0320020|post-anesthesia|postanesthesia| +E0320020|postanaesthesia|postanesthesia| +E0320020|post-anaesthesia|postanesthesia| +E0320023|anti-tuberculosis|antituberculosis| +E0320026|inter-quartile|interquartile| +E0320043|tumour doubling time|tumor doubling time| +E0320046|rat basophilic leukaemia|rat basophilic leukemia| +E0320046|rat basophilic leucemia|rat basophilic leukemia| +E0320046|rat basophilic leucaemia|rat basophilic leukemia| +E0320051|post-surgery|postsurgery| +E0320052|post-surgery|postsurgery| +E0320053|infra-inguinal|infrainguinal| +E0320064|inter-aural|interaural| +E0320071|multi-layer|multilayer| +E0320094|oro-tracheal|orotracheal| +E0320101|sulphoximine|sulfoximine| +E0320162|tumour-bearing animal|tumor-bearing animal| +E0320190|non classical|nonclassical| +E0320190|non-classical|nonclassical| +E0320194|Pima|pima| +E0320201|hepato-protective|hepatoprotective| +E0320272|phenix|phoenix| +E0320274|pick-up|pickup| +E0320275|pick-up|pickup| +E0320302|pigmy|pygmy| +E0320310|radio-chemical|radiochemical| +E0320331|screw worm|screwworm| +E0320331|screw-worm|screwworm| +E0320332|SCUBA|scuba| +E0320333|SCUBA|scuba| +E0320368|stand-by|standby| +E0320369|stand-by|standby| +E0320374|step-mother|stepmother| +E0320432|welked|whelked| +E0320451|king bird|kingbird| +E0320486|lodge-pole|lodgepole| +E0320497|mackintosh|macintosh| +E0320535|midrange|mid-range| +E0320536|mid-term|midterm| +E0320537|mid-winter|midwinter| +E0320545|monolog|monologue| +E0320569|myna|mynah| +E0320670|pixy|pixie| +E0320683|pollack|pollock| +E0320684|pollack|pollock| +E0320699|post-war|postwar| +E0320720|prothonotary|protonotary| +E0320745|radio-carbon|radiocarbon| +E0320750|rat-tail|rattail| +E0320751|razor-back|razorback| +E0320754|red bird|redbird| +E0320791|run-down|rundown| +E0320791|run down|rundown| +E0320792|run-down|rundown| +E0320792|run down|rundown| +E0320795|Sabra|sabra| +E0320803|sand-hill|sandhill| +E0320859|side-arm|sidearm| +E0320860|side-arm|sidearm| +E0320862|side-wall|sidewall| +E0320869|Shiva|Siva| +E0320915|Sputnik|sputnik| +E0320955|swallow-tail|swallowtail| +E0321028|trade-off|tradeoff| +E0321028|trade off|tradeoff| +E0321045|czar|tsar| +E0321101|walk-out|walkout| +E0321152|musk ox|muskox| +E0321162|salt bush|saltbush| +E0321199|ileo-anal|ileoanal| +E0321203|sino-nasal|sinonasal| +E0321226|normo-albuminuric|normoalbuminuric| +E0321236|protein-energy malnutrition|protein energy malnutrition| +E0321255|non-epithelial|nonepithelial| +E0321265|radio-chemotherapy|radiochemotherapy| +E0321278|cortico-medullary|corticomedullary| +E0321311|partial splenic embolisation|partial splenic embolization| +E0321315|Parkinsonian side effect|parkinsonian side effect| +E0321320|cysteine-string protein|cysteine string protein| +E0321329|brush-border membrane vesicle|brush border membrane vesicle| +E0321335|pre-discharge|predischarge| +E0321336|pre-discharge|predischarge| +E0321356|crown rump length|crown-rump length| +E0321368|diam.|diam| +E0321410|non-productive|nonproductive| +E0321413|intra-chromosomal|intrachromosomal| +E0321415|pin prick|pinprick| +E0321418|non-detectable|nondetectable| +E0321425|non-pulsatile|nonpulsatile| +E0321443|aerial combat manoeuvre|aerial combat maneuver| +E0321465|cysto-urethrography|cystourethrography| +E0321466|non-vascular|nonvascular| +E0321475|non-tumor|nontumor| +E0321475|nontumour|nontumor| +E0321475|non-tumour|nontumor| +E0321480|galactosyl ceramide|galactosylceramide| +E0321484|intra-subject|intrasubject| +E0321490|cross-bridge|crossbridge| +E0321536|aryl hydrocarbon hydroxylase|arylhydrocarbon hydroxylase| +E0321538|NGFr|NGFR| +E0321549|rostro-ventrolateral medulla|rostral ventrolateral medulla| +E0321566|data set|dataset| +E0321571|deacetyldiltiazem|deacetyl diltiazem| +E0321586|inflammatory pseudotumour|inflammatory pseudotumor| +E0321587|tumour|tumor| +E0321613|haematopoietic stem cell|hematopoietic stem cell| +E0321614|analogue|analog| +E0321655|palmo-mental reflex|palmomental reflex| +E0321676|nongovernmental organization|non-governmental organization| +E0321676|non-governmental organisation|non-governmental organization| +E0321676|nongovernmental organisation|non-governmental organization| +E0321737|loco-regional anaesthesia|loco-regional anesthesia| +E0321741|health care|healthcare| +E0321760|tumoural|tumoral| +E0321790|non-drinker|nondrinker| +E0321803|health care worker|healthcare worker| +E0321806|posttransplant lympho-proliferative disorder|posttransplant lymphoproliferative disorder| +E0321806|post-transplant lymphoproliferative disorder|posttransplant lymphoproliferative disorder| +E0321836|acid fast bacillus|acid-fast bacillus| +E0321894|nonsyncytium-inducing|non-syncytium-inducing| +E0321913|alpha|alfa| +E0321914|semi-annual|semiannual| +E0321924|tool kit|toolkit| +E0321925|anti-apoptotic|antiapoptotic| +E0321951|pharmaco-economic|pharmacoeconomic| +E0322031|extra-intracranial bypass|extraintracranial bypass| +E0322032|EC/IC bypass|EC-IC bypass| +E0322060|vesico-ureteric|vesicoureteric| +E0322061|vs|vs.| +E0322061|v.|vs.| +E0322071|tricolour|tricolor| +E0322080|copper containing amine oxidase|copper-containing amine oxidase| +E0322085|an-isotropic|anisotropic| +E0322114|crico-esophageal|cricopharyngeal| +E0322125|eosinophilous leukaemia|eosinophilous leukemia| +E0322125|eosinophilous leucemia|eosinophilous leukemia| +E0322125|eosinophilous leucaemia|eosinophilous leukemia| +E0322153|side-chain cleaving cholesterol mono-oxygenase|side-chain cleaving cholesterol monooxygenase| +E0322173|bi-ischiadic|bi-ischiatic| +E0322197|Rokitansky-Kuster-Hauser syndrome|Mayer-Rokitansky-Kuster-Hauser syndrome| +E0322212|Bartter's syndrome|Bartter syndrome| +E0330019|anaesthetic|anesthetic| +E0330025|epithelise|epithelize| +E0330026|epithelisation|epithelization| +E0330028|prodrug|pro-drug| +E0330029|necrotising glomerulonephritis|necrotizing glomerulonephritis| +E0330031|haemorrheological|hemorrheological| +E0330037|above-mentioned|abovementioned| +E0330037|above mentioned|abovementioned| +E0330043|abdominoperineal|abdomino-perineal| +E0330044|abdominothoracic|abdomino-thoracic| +E0330046|abdominocaval|abdomino-caval| +E0330099|arterio-arterial|arterioarterial| +E0330110|automatisation|automatization| +E0330111|automatise|automatize| +E0330135|Amerindian|amerindian| +E0330141|aminosulphide|aminosulfide| +E0330147|angio-invasion|angioinvasion| +E0330148|angio-lymphatic|angiolymphatic| +E0330149|angina-like|anginalike| +E0330180|band-like|bandlike| +E0330188|bench mark|benchmark| +E0330198|bio-analytical|bioanalytical| +E0330242|chemosensitiser|chemosensitizer| +E0330244|cheek lift|cheeklift| +E0330254|co-assemble|coassemble| +E0330264|co-transmitter|cotransmitter| +E0330265|counter-measure|countermeasure| +E0330267|cross-linguistic|crosslinguistic| +E0330331|co-application|coapplication| +E0330334|coloniser|colonizer| +E0330342|co-presence|copresence| +E0330343|co-processor|coprocessor| +E0330344|co-repressor|corepressor| +E0330345|co-residence|coresidence| +E0330346|co-regulate|coregulate| +E0330347|co-planarity|coplanarity| +E0330350|co-secretion|cosecretion| +E0330351|co-suppression|cosuppression| +E0330352|co-solvent|cosolvent| +E0330357|cranio-encephalic|cranioencephalic| +E0330363|co-variable|covariable| +E0330364|co-variable|covariable| +E0330366|counter-receptor|counterreceptor| +E0330415|hyper-mutation|hypermutation| +E0330418|hyper-responder|hyperresponder| +E0330423|hypersynchronisation|hypersynchronization| +E0330425|hypnotisable|hypnotizable| +E0330434|hypo-echogenic|hypoechogenic| +E0330444|immuno-activity|immunoactivity| +E0330458|immunodisregulatory|immunodysregulatory| +E0330459|immunoelectron microscopy|immunoelectronmicroscopy| +E0330459|immuno-electron microscopy|immunoelectronmicroscopy| +E0330484|infra-clinical|infraclinical| +E0330488|infra-pyramidal|infrapyramidal| +E0330519|morpho-syntactic|morphosyntactic| +E0330539|multilabelled|multilabeled| +E0330541|multimerisation|multimerization| +E0330546|multi-specific|multispecific| +E0330549|multi-site|multisite| +E0330559|myelo-ablative|myeloablative| +E0330571|naso-temporal|nasotemporal| +E0330580|neurobehaviour|neurobehavior| +E0330600|non active|nonactive| +E0330600|non-active|nonactive| +E0330606|nonaneurismal|nonaneurysmal| +E0330612|non aqueous|nonaqueous| +E0330612|non-aqueous|nonaqueous| +E0330617|non-attachment|nonattachment| +E0330629|non-bleeding|nonbleeding| +E0330629|non bleeding|nonbleeding| +E0330636|non-complementing|noncomplementing| +E0330637|non cognitive|noncognitive| +E0330637|non-cognitive|noncognitive| +E0330641|non-coated|noncoated| +E0330647|non-cooperative|noncooperative| +E0330652|non cerebral|noncerebral| +E0330652|non-cerebral|noncerebral| +E0330654|non continuous|noncontinuous| +E0330654|non-continuous|noncontinuous| +E0330657|non-coronary|noncoronary| +E0330662|non cumulative|noncumulative| +E0330662|non-cumulative|noncumulative| +E0330663|non critical|noncritical| +E0330663|non-critical|noncritical| +E0330664|non-chelating|nonchelating| +E0330676|non-disjunctional|nondisjunctional| +E0330683|nondiffusible|nondiffusable| +E0330683|non-diffusible|nondiffusable| +E0330683|non-diffusable|nondiffusable| +E0330687|wine-making|winemaking| +E0330690|word-like|wordlike| +E0330695|whistle-blower|whistleblower| +E0330701|water ski|waterski| +E0330741|unsterilised|unsterilized| +E0330752|unrecognisable|unrecognizable| +E0330786|under-prescribe|underprescribe| +E0330787|under-sedate|undersedate| +E0330790|undigestible|undigestable| +E0330847|air crew|aircrew| +E0330848|air leak|airleak| +E0330905|alveolo-arterial|alveoloarterial| +E0330920|amoeba-like|amoebalike| +E0331011|cysto-prostatectomy|cystoprostatectomy| +E0331021|black currant|blackcurrant| +E0331057|centiMorgan|centimorgan| +E0331059|centro-median|centromedian| +E0331063|cerebro-hepato-renal|cerebrohepatorenal| +E0331064|cell-type|celltype| +E0331064|cell type|celltype| +E0331077|choledochocoele|choledochocele| +E0331086|chondro-ectodermal|chondroectodermal| +E0331087|choledocho-choledochostomy|choledochocholedochostomy| +E0331107|expressable|expressible| +E0331151|middle-sized|middlesized| +E0331164|milk shake|milkshake| +E0331173|modeller|modeler| +E0331178|non-arteritic|nonarteritic| +E0331187|non-endocrine|nonendocrine| +E0331199|non-genital|nongenital| +E0331208|enterohaemorrhagic|enterohemorrhagic| +E0331208|entero-hemorrhagic|enterohemorrhagic| +E0331208|entero-haemorrhagic|enterohemorrhagic| +E0331211|epicentre|epicenter| +E0331228|fertilisability|fertilizability| +E0331229|fertilisable|fertilizable| +E0331232|fibro-proliferative|fibroproliferative| +E0331255|granuloma-like|granulomalike| +E0331268|heteromultimerise|heteromultimerize| +E0331284|heterodimerise|heterodimerize| +E0331285|heterodimerisation|heterodimerization| +E0331334|whole-body|wholebody| +E0331334|whole body|wholebody| +E0331336|wash-in|washin| +E0331395|under-determined|underdetermined| +E0331400|under foot|underfoot| +E0331431|diphenyl ether|diphenylether| +E0331486|co-inheritance|coinheritance| +E0331487|co-inherit|coinherit| +E0331498|mosquitofish|mosquito fish| +E0331499|afirinogenemia|afirinogenaemia| +E0331536|ventro-postero-lateral|ventroposterolateral| +E0331541|ventriculo-infundibular fold|ventriculoinfundibular fold| +E0331543|Synanceja verrucosa|Synanceia verrucosa| +E0331561|ventralise|ventralize| +E0331598|uncross-linked|uncrosslinked| +E0331610|uncanceled|uncancelled| +E0331622|typable|typeable| +E0331623|tumorcell|tumor cell| +E0331623|tumour cell|tumor cell| +E0331623|tumourcell|tumor cell| +E0331645|trifluoromethanesulphonate|trifluoromethanesulfonate| +E0331689|toxico-genetic|toxicogenetic| +E0331705|thoraco-lumbosacral|thoracolumbosacral| +E0331705|thoraco-lumbo-sacral|thoracolumbosacral| +E0331737|vestibulocerebellar|vestibulo-cerebellar| +E0331742|vertebrobasilar|vertebro-basilar| +E0331742|vertebro basilar|vertebro-basilar| +E0331743|verrucolichenoid|verruco-lichenoid| +E0331744|verrucopapillary|verruco-papillary| +E0331757|ureteroenteric|uretero-enteric| +E0331758|ureteroileal|uretero-ileal| +E0331761|ureterovaginal|uretero-vaginal| +E0331762|ureterovesical|uretero-vesical| +E0331784|tubularise|tubularize| +E0331815|tubuloductal|tubulo-ductal| +E0331817|tuberomammillary|tubero-mammillary| +E0331818|tuberoinfundibular|tubero-infundibular| +E0331819|tuberohypophysial|tubero-hypophysial| +E0331820|tuberoeruptive|tubero-eruptive| +E0331821|tuberothalamic|tubero-thalamic| +E0331822|tuberculid|tuberculide| +E0331868|tricosa-arabinoside|tricosaarabinoside| +E0331869|tricho-thiodystrophy|trichothiodystrophy| +E0331887|transcrotal|transscrotal| +E0331888|transcaphoid|transscaphoid| +E0331889|transuccinylase|transsuccinylase| +E0331891|transinusoidal|transsinusoidal| +E0331892|transylvian|transsylvian| +E0331896|transtadially|transstadially| +E0331897|transphenoid|transsphenoid| +E0331922|transcleral|transscleral| +E0331964|system-wide|systemwide| +E0332010|synapto-genesis|synaptogenesis| +E0332031|sulphoconjugate|sulfoconjugate| +E0332031|sulfo-conjugate|sulfoconjugate| +E0332031|sulpho-conjugate|sulfoconjugate| +E0332032|sulphophenylxanthine|sulfophenylxanthine| +E0332033|sulphoglucuronide|sulfoglucuronide| +E0332061|subcompartmentalisation|subcompartmentalization| +E0332062|subcompartmentalise|subcompartmentalize| +E0332068|suboesophageal|subesophageal| +E0332073|straight-forwardly|straightforwardly| +E0332073|straight forwardly|straightforwardly| +E0332079|stilbenedisulphonate|stilbenedisulfonate| +E0332079|stilbene disulfonate|stilbenedisulfonate| +E0332079|stilbene disulphonate|stilbenedisulfonate| +E0332095|undersulphated|undersulfated| +E0332109|Paullinia cupana|Paulinia cupana| +E0332115|time scale|timescale| +E0332147|Clostridium thermosaccarolyticum|Clostridium thermosaccharolyticum| +E0332153|tetraploidisation|tetraploidization| +E0332163|tetramerise|tetramerize| +E0332165|tetramerisation|tetramerization| +E0332174|thermalise|thermalize| +E0332176|tetra-alkylammonium|tetraalkylammonium| +E0332179|tetra-azamacrocyclic|tetraazamacrocyclic| +E0332185|sulphoglucosamine|sulfoglucosamine| +E0332186|sulpholobal|sulfolobal| +E0332189|stroke-like|strokelike| +E0332204|sledge-hammer|sledgehammer| +E0332207|slit-like|slitlike| +E0332208|socio-emotional|socioemotional| +E0332215|septo-hippocampal|septohippocampal| +E0332219|tetra-amine|tetraamine| +E0332229|thin section|thinsection| +E0332247|Bartonella taylori|Bartonella taylorii| +E0332283|tarso-conjunctival|tarsoconjunctival| +E0332320|susceptible|susceptable| +E0332336|sulfobenzoate|sulphobenzoate| +E0332337|sulfon|sulphon| +E0332338|diaminodiphenyl sulfon|diaminodiphenyl sulphon| +E0332345|super-activate|superactivate| +E0332347|sun ray|sunray| +E0332349|sulfuration|sulphuration| +E0332351|sulforhodamin|sulphorhodamin| +E0332352|sulfamonomethoxine|sulphamonomethoxine| +E0332354|sulphosuccinimido|sulfosuccinimido| +E0332356|synapto-dendritic|synaptodendritic| +E0332358|synaptoneogenesis|synapto-neogenesis| +E0332362|sulfonamido|sulphonamido| +E0332374|sulfenic|sulphenic| +E0332375|sulfenic acid|sulphenic acid| +E0332377|sub-range|subrange| +E0332385|sub-phase|subphase| +E0332388|sub-national|subnational| +E0332418|silk moth|silkmoth| +E0332443|somatiser|somatizer| +E0332451|spill-over|spillover| +E0332451|spill over|spillover| +E0332464|spondyl-arthropathy|spondylarthropathy| +E0332472|spot-like|spotlike| +E0332473|Tenia solium|Taenia solium| +E0332477|amino-oxy|aminooxy| +E0332489|Bacillus amyloliquifaciens|Bacillus amyloliquefaciens| +E0332492|anatomicofunctional|anatomico-functional| +E0332493|anatomicopathological|anatomico-pathological| +E0332494|anatomicohistological|anatomico-histological| +E0332495|anatomicoechocardiographic|anatomico-echocardiographic| +E0332496|anatomicoclinical|anatomico-clinical| +E0332497|anatomicosurgical|anatomico-surgical| +E0332498|anatomicoradiological|anatomico-radiological| +E0332499|anatomicomorphological|anatomico-morphological| +E0332504|anoestrous|anestrous| +E0332508|angio-edema|angio-oedema| +E0332508|angiooedema|angio-oedema| +E0332508|angioedema|angio-oedema| +E0332513|angstrum|angstrom| +E0332521|annualise|annualize| +E0332524|anonymise|anonymize| +E0332530|anteriorise|anteriorize| +E0332549|antileucocyte|antileukocyte| +E0332565|anti-vitamin K|antivitamin K| +E0332566|antrobulbar|antro-bulbar| +E0332567|antroduodenoplasty|antro-duodenoplasty| +E0332568|antropyloric|antro-pyloric| +E0332571|antropyloroduodenal|antro-pyloro-duodenal| +E0332571|antro-pyloroduodenal|antro-pyloro-duodenal| +E0332574|any more|anymore| +E0332575|any time|anytime| +E0332612|archeal|archaeal| +E0332640|aromatisable|aromatizable| +E0332680|atriofemoral|atrio-femoral| +E0332681|atrioventricular|atrio-ventricular| +E0332703|autocatalyse|autocatalyze| +E0332711|auto-inflation|autoinflation| +E0332720|auto-transfuse|autotransfuse| +E0332754|bacille Calmette-Guerin|bacille Calmette Guerin| +E0332760|back school|backschool| +E0332790|bed size|bedsize| +E0332813|benzylaminesulphonic|benzylaminesulfonic| +E0332838|bi-institutional|biinstitutional| +E0332847|norbinaltorphamine|nor-binaltorphamine| +E0332879|blastocoele|blastocoel| +E0332895|change-over|changeover| +E0332914|cranio-caudal|craniocaudal| +E0332927|decision maker|decisionmaker| +E0332946|brachiobasilic|brachio-basilic| +E0332947|brachiocephalic|brachio-cephalic| +E0332948|brachioaxillary|brachio-axillary| +E0332949|brachioradial|brachio-radial| +E0332950|brachioradialis|brachio-radialis| +E0332951|brachioradialis muscle|brachio-radialis muscle| +E0332953|brachiothoracic|brachio-thoracic| +E0332986|bulbomedullary|bulbo-medullary| +E0332987|bulbo urethral|bulbo-urethral| +E0332988|bulbospinal|bulbo-spinal| +E0332989|bulbocavernous|bulbo-cavernous| +E0332990|bulboprostatic|bulbo-prostatic| +E0332991|bulbomembranous|bulbo-membranous| +E0333034|comradery|camaraderie| +E0333066|hemangiosis carcinomatosa|haemangiosis carcinomatosa| +E0333091|cavo-caval|cavocaval| +E0333094|cdk|CDK| +E0333094|Cdk|CDK| +E0333103|cerebrovascular|cerebro-vascular| +E0333104|cerebrospinal|cerebro-spinal| +E0333105|cerebrocostomandibular|cerebro-costo-mandibular| +E0333107|cerebromuscular dystrophy|cerebro-muscular dystrophy| +E0333109|cervicovaginal|cervico-vaginal| +E0333110|cervicofundal|cervico-fundal| +E0333118|cervicofacial|cervico-facial| +E0333127|chemoprotectant|chemo-protectant| +E0333128|chemo-sensitisation|chemo-sensitization| +E0333128|chemosensitization|chemo-sensitization| +E0333128|chemosensitisation|chemo-sensitization| +E0333129|chemosensitize|chemo-sensitize| +E0333129|chemo-sensitise|chemo-sensitize| +E0333129|chemosensitise|chemo-sensitize| +E0333130|chemo-endocrine|chemoendocrine| +E0333131|chemo-organotroph|chemoorganotroph| +E0333132|chemo-prevent|chemoprevent| +E0333151|chitolipo-oligosaccharide|chitolipooligosaccharide| +E0333163|co-calibrate|cocalibrate| +E0333165|co-colonization|cocolonization| +E0333166|co-colonize|cocolonize| +E0333170|co-enrich|coenrich| +E0333171|co-enrichment|coenrichment| +E0333172|co-exposure|coexposure| +E0333173|co-expose|coexpose| +E0333174|commonalty|commonality| +E0333183|cono-truncal|conotruncal| +E0333185|co-oxidative|cooxidative| +E0333186|co-register|coregister| +E0333187|co-registration|coregistration| +E0333188|co-pathogen|copathogen| +E0333189|co-rear|corear| +E0333192|cortico-striatal|corticostriatal| +E0333202|diacyl phosphatidylcholine|diacylphosphatidylcholine| +E0333202|diacyl phosphatidyl choline|diacylphosphatidylcholine| +E0333242|extraanatomic|extra-anatomic| +E0333244|Salmonella cholerae-suis|Salmonella choleraesuis| +E0333279|claw toe|clawtoe| +E0333286|co-active|coactive| +E0333287|co-active|coactive| +E0333288|co-activity|coactivity| +E0333289|co-agonist|coagonist| +E0333295|co-circulate|cocirculate| +E0333296|co-circulation|cocirculation| +E0333297|co-crystallize|cocrystallize| +E0333298|co-crystallization|cocrystallization| +E0333299|co-electroporation|coelectroporation| +E0333306|coimmobilise|coimmobilize| +E0333306|co-immobilize|coimmobilize| +E0333306|co-immobilise|coimmobilize| +E0333307|coimmobilisation|coimmobilization| +E0333307|co-immobilization|coimmobilization| +E0333307|co-immobilisation|coimmobilization| +E0333312|collateralisation|collateralization| +E0333313|collateralise|collateralize| +E0333320|columnisation|columnization| +E0333349|co-oximetry|cooximetry| +E0333353|co-protease|coprotease| +E0333354|co-release|corelease| +E0333355|co-release|corelease| +E0333368|co-promote|copromote| +E0333369|co-promotion|copromotion| +E0333372|coracohumeral|coraco-humeral| +E0333373|coracoclavicular|coraco-clavicular| +E0333375|corneoscleral|corneo-scleral| +E0333376|corneoconjunctival|corneo-conjunctival| +E0333377|corneoretinal|corneo-retinal| +E0333383|cortico-cancellous|corticocancellous| +E0333384|cortico-motoneuron|corticomotoneuron| +E0333388|cosolubilise|cosolubilize| +E0333388|co-solubilize|cosolubilize| +E0333388|co-solubilise|cosolubilize| +E0333389|cosolubilisation|cosolubilization| +E0333389|co-solubilization|cosolubilization| +E0333389|co-solubilisation|cosolubilization| +E0333391|co-store|costore| +E0333396|co-twin|cotwin| +E0333402|cowage|cowhage| +E0333420|cross-peak|crosspeak| +E0333446|cyclise|cyclize| +E0333463|cyto-adhere|cytoadhere| +E0333464|cyto-adherence|cytoadherence| +E0333467|cyto-histology|cytohistology| +E0333487|de-adenylate|deadenylate| +E0333516|de-energize|deenergize| +E0333516|deenergise|deenergize| +E0333516|de-energise|deenergize| +E0333517|de-epithelialize|deepithelialize| +E0333517|deepithelialise|deepithelialize| +E0333517|de-epithelialise|deepithelialize| +E0333519|defaecography|defecography| +E0333528|defunctionalise|defunctionalize| +E0333537|Lactobacillus delbruecki|Lactobacillus delbrueckii| +E0333569|deparaffinise|deparaffinize| +E0333579|depsi-peptide|depsipeptide| +E0333580|derivatisation|derivatization| +E0333580|derivitisation|derivatization| +E0333580|derivitization|derivatization| +E0333588|desalinise|desalinize| +E0333589|desalinisation|desalinization| +E0333590|desepidermisation|desepidermization| +E0333612|diacylglyceryl|diacyglycerol| +E0333618|diabetes-like|diabeteslike| +E0333675|dihexanoyl phosphatidylcholine|dihexanoyl-phosphatidylcholine| +E0333683|dihydro-orotate dehydrogenase|dihydroorotate dehydrogenase| +E0333699|di-isopropylaminoethyl|diisopropylaminoethyl| +E0333700|di-isocyanoalkene|diisocyanoalkene| +E0333702|di-iodothyropropionic|diiodothyropropionic| +E0333703|di-iodothyropropionic acid|diiodothyropropionic acid| +E0333704|di-isopropylphosphorofluoridate|diisopropylphosphorofluoridate| +E0333705|di-isothiocyanatodihydrostilbene|diisothiocyanatodihydrostilbene| +E0333706|di-isothiocyanostilbene|diisothiocyanostilbene| +E0333721|dimethanesulphonate|dimethanesulfonate| +E0333732|dimethyl lysine|dimethyllysine| +E0333764|macrothrombocytopaenia|macrothrombocytopenia| +E0333771|mechano-electrical|mechanoelectrical| +E0333772|mechano-enzyme|mechanoenzyme| +E0333777|medicalisation|medicalization| +E0333779|medicalise|medicalize| +E0333781|maternofoetal|maternofetal| +E0333788|mesio-temporal|mesiotemporal| +E0333791|meta-analytical|metaanalytical| +E0333808|micellise|micellize| +E0333844|endo-pyelotomy|endopyelotomy| +E0333847|epaulet|epaulette| +E0333848|entero-endocrine|enteroendocrine| +E0333849|erythaematode|erythematode| +E0333858|face lift|facelift| +E0333858|face-lift|facelift| +E0333859|feeble-mindedness|feeblemindedness| +E0333860|feeble-minded|feebleminded| +E0333872|flavohaemoglobin|flavohemoglobin| +E0333880|distearoyl-phosphatidylcholine|distearoyl phosphatidylcholine| +E0333906|Anas platyrynchos|Anas platyrhynchos| +E0333914|ductopaenic|ductopenic| +E0333917|Strongylocentrotus drobachiensis|Strongylocentrotus droebachiensis| +E0333923|disbalanced|dysbalanced| +E0333924|disbalance|dysbalance| +E0333928|disexecutive|dysexecutive| +E0333929|disfunctioning|dysfunctioning| +E0333930|disglycemic|dysglycemic| +E0333930|dysglycaemic|dysglycemic| +E0333930|disglycaemic|dysglycemic| +E0333933|dyslipidaemic|dyslipidemic| +E0333933|dislipidemic|dyslipidemic| +E0333933|dislipidaemic|dyslipidemic| +E0333934|dysmature|dismature| +E0333938|dissynchronous|dyssynchronous| +E0333970|embolo-therapy|embolotherapy| +E0333971|embryofetotoxic|embryofeto-toxic| +E0333972|embryofetotoxicity|embryofeto-toxicity| +E0333982|discretise|discretize| +E0333990|endosulfan|endosulphan| +E0333998|enterectomise|enterectomize| +E0334002|enzymo-immunoassay|enzymoimmunoassay| +E0334020|equi-active|equiactive| +E0334039|aesthetically|esthetically| +E0334084|Enterococcus fecium|Enterococcus faecium| +E0334084|Enterococcus facium|Enterococcus faecium| +E0334118|fibro-elastoma|fibroelastoma| +E0334130|fire-fighter|firefighter| +E0334141|fistulise|fistulize| +E0334143|flash-lamp|flashlamp| +E0334147|Streptomyces flavipersicus|Streptomyces flavopersicus| +E0334152|flexibilise|flexibilize| +E0334153|flexibilisation|flexibilization| +E0334157|fluorobenzenesulphonamide|fluorobenzenesulfonamide| +E0334194|fronto-ethmoid|frontoethmoid| +E0334199|fruit fly|fruitfly| +E0334199|fruit-fly|fruitfly| +E0334209|beta funaltrexamine|beta-funaltrexamine| +E0334220|galatorrhoea|galatorrhea| +E0334252|geranyl-geranylate|geranylgeranylate| +E0334273|Clethrionomys glariolus|Clethrionomys glareolus| +E0334284|gluco-oligosaccharide|glucooligosaccharide| +E0334296|glyceryl trioleate|glyceroltrioleate| +E0334313|Gecko gecko|Gecko gekko| +E0334313|Gekko gekko|Gecko gekko| +E0334336|gradeable|gradable| +E0334351|grenz zone|Grenz zone| +E0334373|gynaecophoric|gynecophoric| +E0334374|gynaecophoric canal|gynecophoric canal| +E0334378|haemangiopericytomatous|hemangiopericytomatous| +E0334379|haemocoel|hemocoel| +E0334380|haemolysin|hemolysin| +E0334382|half-maximally|halfmaximally| +E0334398|hand-held|handheld| +E0334398|hand held|handheld| +E0334405|harmonisation|harmonization| +E0334413|Helicobacter heilmannii|Helicobacter heilmanii| +E0334416|haematolymphoid|hematolymphoid| +E0334417|haematon|hematon| +E0334418|haematopathologic|hematopathologic| +E0334419|haematopoeitic|hematopoeitic| +E0334420|haematopoetically|hematopoetically| +E0334421|haematotoxicity|hematotoxicity| +E0334426|hemi-diaphragm|hemidiaphragm| +E0334428|hemidisk|hemidisc| +E0334430|hemi-leaflet|hemileaflet| +E0334432|hemiparaesthesia|hemiparesthesia| +E0334433|hard-packed|hardpacked| +E0334440|haemocytometry|hemocytometry| +E0334441|haemodynamical|hemodynamical| +E0334442|haemoglobulin|hemoglobulin| +E0334445|haemoparasite|hemoparasite| +E0334446|haemopoietin|hemopoietin| +E0334452|hepatico-jejunostomy|hepaticojejunostomy| +E0334461|judgemental|judgmental| +E0334483|intra-individually|intraindividually| +E0334493|intracaecal|intracecal| +E0334497|intra-epidermally|intraepidermally| +E0334501|intrafoetal|intrafetal| +E0334502|intra-epithelially|intraepithelially| +E0334503|intra-alveolar|intraalveolar| +E0334510|lattice-like|latticelike| +E0334512|leaf-hopper|leafhopper| +E0334515|lipo-soluble|liposoluble| +E0334518|long-lasting|longlasting| +E0334538|misrecognise|misrecognize| +E0334558|hypercortisolaemia|hypercortisolemia| +E0334569|hyperhomocysteinaemia|hyperhomocysteinemia| +E0334570|hyperhomocysteinaemic|hyperhomocysteinemic| +E0334578|hyperkalaemic|hyperkalemic| +E0334579|hyperleucocytic|hyperleukocytic| +E0334582|hyper-methylate|hypermethylate| +E0334590|hepato-toxin|hepatotoxin| +E0334593|hepta-acetate|heptaacetate| +E0334611|hetero-atom|heteroatom| +E0334622|inositol hexasulphate|inositol hexasulfate| +E0334624|hind leg|hindleg| +E0334635|holochord|holocord| +E0334636|holo-receptor|holoreceptor| +E0334642|homocysteinaemia|homocysteinemia| +E0334650|grow-out|growout| +E0334657|homo-ionic|homoionic| +E0334738|leucocytospermia|leukocytospermia| +E0334739|leucodepletion|leukodepletion| +E0334745|logopaedic|logopedic| +E0334746|lumbo-pelvic|lumbopelvic| +E0334781|midoesophagus|midesophagus| +E0334787|mislocalise|mislocalize| +E0334788|mislocalisation|mislocalization| +E0334793|mono-exponential|monoexponential| +E0334799|hypo-osmolar|hypoosmolar| +E0334802|hyporetinaemia|hyporetinemia| +E0334812|infero-apical|inferoapical| +E0334813|infero-medially|inferomedially| +E0334815|infero-temporal|inferotemporal| +E0334817|ingroup|in-group| +E0334842|intra-nigral|intranigral| +E0334862|let-up|letup| +E0334870|stemloop|stemloop| +E0334874|stabilisation|stabilization| +E0334875|stabilise|stabilize| +E0334883|side-chain|sidechain| +E0334895|sharability|shareability| +E0334896|sharable|shareable| +E0334927|reticulo-nodular|reticulonodular| +E0334940|resterilisable|resterilizable| +E0334941|resterilisability|resterilizability| +E0334942|reorganisational|reorganizational| +E0334966|follow-back|followback| +E0335000|no-flow|noflow| +E0335048|disulphonic acid|disulfonic acid| +E0335097|foodservice|food service| +E0335098|frontotemporal|fronto-temporal| +E0335101|frontoorbital|fronto-orbital| +E0335102|frontoparietal|fronto-parietal| +E0335103|frontocentral|fronto-central| +E0335109|gamma herpes virus|gammaherpesvirus| +E0335122|hydroxymethyglutaryl-coenzyme A reductase|hydroxymethyglutaryl coenzyme A reductase| +E0335122|hydroxymethyglutaryl coenzyme A-reductase|hydroxymethyglutaryl coenzyme A reductase| +E0335122|hydroxymethyglutaryl-coenzyme A-reductase|hydroxymethyglutaryl coenzyme A reductase| +E0335138|hypoprebetalipoproteinaemia|hypoprebetalipoproteinemia| +E0335140|hypothalamo-pituitary|hypothalamopituitary| +E0335193|infra-community|infracommunity| +E0335194|infra-limbic|infralimbic| +E0335195|infra-subspecific|infrasubspecific| +E0335221|intercordal|interchordal| +E0335228|inter-equipment|interequipment| +E0335229|inter-domain|interdomain| +E0335233|inter-fertile|interfertile| +E0335240|interleucocyte|interleukocyte| +E0335249|intermoult|intermolt| +E0335250|intermoult|intermolt| +E0335275|intertumour|intertumor| +E0335276|inter-twin|intertwin| +E0335282|hypotransferrinaemic|hypotransferrinemic| +E0335297|irido-ciliary|iridociliary| +E0335322|non-expanding|nonexpanding| +E0335348|isopentenyl-diphosphate|isopentenyl diphosphate| +E0335377|caryorhexis|karyorhexis| +E0335444|micro-prolactinoma|macroprolactinoma| +E0335484|intra-assay|intraassay| +E0335508|Bacillus thuringiensis ssp. israelensis|Bacillus thuringiensis subsp. israelensis| +E0335517|juxta-uterine|juxtauterine| +E0335521|lactamisation|lactamization| +E0335526|muconate lactonising enzyme|muconate lactonizing enzyme| +E0335528|lactonise|lactonize| +E0335531|stratum lacunosum moleculare|stratum lacunosum-moleculare| +E0335538|mobilisable|mobilizable| +E0335550|non-effective|noneffective| +E0335553|non fatty|nonfatty| +E0335553|non-fatty|nonfatty| +E0335554|non-fenestrated|nonfenestrated| +E0335555|non fermentative|nonfermentative| +E0335555|non-fermentative|nonfermentative| +E0335557|non-fluent|nonfluent| +E0335562|nonhypercalcaemic|nonhypercalcemic| +E0335601|methyl-thioadenosine phosphorylase|methylthioadenosine phosphorylase| +E0335623|beta naphthylamide|beta-naphthylamide| +E0335646|beta naphthylisothiocyanate|beta-naphthylisothiocyanate| +E0335802|myo-intimal|myointimal| +E0335811|mytomycin|mytomicin| +E0335812|mytomycin C|mytomicin C| +E0335817|beta naltrexol|beta-naltrexol| +E0335863|pincer-like|pincerlike| +E0335864|photo-therapeutic|phototherapeutic| +E0335878|photohaemolysis|photohemolysis| +E0335886|photo-oxidative|photooxidative| +E0335887|photosensitizer|photosensitiser| +E0335897|pharmaco-epidemiologist|pharmacoepidemiologist| +E0335899|petaloid-like|petaloidlike| +E0335905|imidazo-pyridine|imidazo pyridine| +E0335905|imidazopyridine|imidazo pyridine| +E0335912|immunohistochemical|immuno-histochemical| +E0335912|immunohisto chemical|immuno-histochemical| +E0335912|immunohisto-chemical|immuno-histochemical| +E0335914|immunohistochemistry|immuno-histochemistry| +E0335914|immunohisto-chemistry|immuno-histochemistry| +E0335914|immunohisto chemistry|immuno-histochemistry| +E0335915|immunoregulatory|immuno-regulatory| +E0335929|Kass|kass| +E0335932|tetramethylrhodamine isothiocyanate|tetramethylrhodamine isothio-cyanate| +E0336686|non-arthritogenic|nonarthritogenic| +E0336687|non-disease|nondisease| +E0336688|non-endometriosis|nonendometriosis| +E0336695|nitty-gritty|nitty gritty| +E0336697|non-equilibrium|nonequilibrium| +E0336698|non-excitable|nonexcitable| +E0336700|non-excitability|nonexcitability| +E0336701|non-exercise|nonexercise| +E0336702|non-exercising|nonexercising| +E0336703|non-extraction|nonextraction| +E0336704|non-familiar|nonfamiliar| +E0336705|non-familiarity|nonfamiliarity| +E0336706|non-farm|nonfarm| +E0336707|non-ferritin iron|nonferritin iron| +E0336708|non-ferritin|nonferritin| +E0336709|non-filtered|nonfiltered| +E0336713|non-fortuitous|nonfortuitous| +E0336714|non-globular|nonglobular| +E0336716|non-gated|nongated| +E0336718|non-fusioned|nonfusioned| +E0336719|non-governmental|nongovernmental| +E0336721|non-hybrid|nonhybrid| +E0336722|non-immunosuppressive|nonimmunosuppressive| +E0336723|non-industrial|nonindustrial| +E0336724|non typical|nontypical| +E0336724|non-typical|nontypical| +E0336725|non-urgent|nonurgent| +E0336726|non-urgency|nonurgency| +E0336727|non-ulcerating|nonulcerating| +E0336728|non-treponemal|nontreponemal| +E0336732|Mycobacterium leprae murium|Mycobacterium lepraemurium| +E0336754|leucomalacia|leukomalacia| +E0336765|life-support|life support| +E0336767|libidinisation|libidinization| +E0336787|benzenesulphonic acid|benzenesulfonic acid| +E0336855|Rickettsia aeschlimanni|Rickettsia aeschlimannii| +E0336856|Rickettsia siberica|Rickettsia sibirica| +E0336866|ideogram|idiogram| +E0336904|Bacillus megatherium|Bacillus megaterium| +E0336906|mega-ureter|megaureter| +E0336923|Methanosarcina mazeii|Methanosarcina mazei| +E0336925|medialisation|medialization| +E0336926|medialise|medialize| +E0336971|infra-structural|infrastructural| +E0336972|infraareolar|infra-areolar| +E0336984|methyl imidazolium|methylimidazolium| +E0336984|methyl-imidazolium|methylimidazolium| +E0336986|non-occupationally|nonoccupationally| +E0336988|non-operable|nonoperable| +E0336989|non-operability|nonoperability| +E0336990|non-odontogenic|nonodontogenic| +E0336991|non-nucleolar|nonnucleolar| +E0336992|non-neurological|nonneurological| +E0336993|non-neutralizing|nonneutralizing| +E0336994|non-nitrous|nonnitrous| +E0336995|non-nutrient|nonnutrient| +E0336996|non-nutrient|nonnutrient| +E0336997|non-meningitis|nonmeningitis| +E0336998|non-mentholated|nonmentholated| +E0336999|nonmetabolisable|nonmetabolizable| +E0336999|non-metabolizable|nonmetabolizable| +E0336999|non-metabolisable|nonmetabolizable| +E0337000|non-metaplastic|nonmetaplastic| +E0337001|non-military|nonmilitary| +E0337002|non-mitochondrial|nonmitochondrial| +E0337003|non-monogamous|nonmonogamous| +E0337004|non-modifiable|nonmodifiable| +E0337005|non-modifiability|nonmodifiability| +E0337006|non-marginal|nonmarginal| +E0337007|non-lung|nonlung| +E0337019|neuroleptanaesthesia|neuroleptanesthesia| +E0337031|nicotinised|nicotinized| +E0337032|nonnicotinized|non-nicotinized| +E0337032|non-nicotinised|non-nicotinized| +E0337032|nonnicotinised|non-nicotinized| +E0337035|nitro-anilide|nitroanilide| +E0337036|nitro-aromatic|nitroaromatic| +E0337037|nitro-aromatic|nitroaromatic| +E0337039|non-generalist|nongeneralist| +E0337040|non-generalist|nongeneralist| +E0337041|non-fractured|nonfractured| +E0337042|non-fulminant|nonfulminant| +E0337043|non-flow|nonflow| +E0337044|non-glucidic|nonglucidic| +E0337045|non-graded|nongraded| +E0337046|non-head|nonhead| +E0337047|non-healed|nonhealed| +E0337049|nonhaemorrhaged|nonhemorrhaged| +E0337049|non-hemorrhaged|nonhemorrhaged| +E0337049|non-haemorrhaged|nonhemorrhaged| +E0337050|non-high|nonhigh| +E0337051|non-homology|nonhomology| +E0337052|non-hormone|nonhormone| +E0337053|non-host|nonhost| +E0337054|non-hyperfunctional|nonhyperfunctional| +E0337055|non-hypertension|nonhypertension| +E0337056|non-hypertensive|nonhypertensive| +E0337057|non-hypertensive|nonhypertensive| +E0337058|non-iatrogenic|noniatrogenic| +E0337060|non-illness|nonillness| +E0337061|non-incorporated|nonincorporated| +E0337062|non-inducibility|noninducibility| +E0337063|non-inducible|noninducible| +E0337064|non-inducing|noninducing| +E0337065|non-infarction|noninfarction| +E0337066|non-inhibited|noninhibited| +E0337067|non-inhibition|noninhibition| +E0337068|non-injured|noninjured| +E0337069|non-instructed|noninstructed| +E0337070|non-intercalative|nonintercalative| +E0337071|non-interleaved|noninterleaved| +E0337072|noninternalised|noninternalized| +E0337072|non-internalized|noninternalized| +E0337072|non-internalised|noninternalized| +E0337073|non-intubated|nonintubated| +E0337074|non-isometric|nonisometric| +E0337075|non-isotope|nonisotope| +E0337076|non-jaundiced|nonjaundiced| +E0337077|non-labor|nonlabor| +E0337078|non-lacunar|nonlacunar| +E0337079|non-laminar|nonlaminar| +E0337080|non-lipidated|nonlipidated| +E0337081|non-listerial|nonlisterial| +E0337082|non-linkage|nonlinkage| +E0337083|non-lesional|nonlesional| +E0337084|non-malnourished|nonmalnourished| +E0337085|non-major|nonmajor| +E0337086|non-major|nonmajor| +E0337087|non-manipulated|nonmanipulated| +E0337088|non-mover|nonmover| +E0337089|non-maximal|nonmaximal| +E0337090|non-mucinous|nonmucinous| +E0337091|non-micromanipulated|nonmicromanipulated| +E0337092|non-mutilating|nonmutilating| +E0337093|non-negative|nonnegative| +E0337094|non natural|nonnatural| +E0337094|non-natural|nonnatural| +E0337095|non-neural|nonneural| +E0337096|non-opioid|nonopioid| +E0337097|non-opioid|nonopioid| +E0337098|non-opposed|nonopposed| +E0337099|non-osteoporotic|nonosteoporotic| +E0337100|non-overexpressed|nonoverexpressed| +E0337101|non-palindromic|nonpalindromic| +E0337102|non-neuroleptic|nonneuroleptic| +E0337104|non-negotiated|nonnegotiated| +E0337105|non-optimal|nonoptimal| +E0337106|non-ossifying|nonossifying| +E0337107|non-molar|nonmolar| +E0337108|non-myoinvasive|nonmyoinvasive| +E0337108|non-myo-invasive|nonmyoinvasive| +E0337109|non-pelvic|nonpelvic| +E0337110|non-peptidic|nonpeptidic| +E0337111|non-perforated|nonperforated| +E0337112|non-perforation|nonperforation| +E0337113|non-periodic|nonperiodic| +E0337114|non-permeable|nonpermeable| +E0337115|non-permeability|nonpermeability| +E0337116|non-participant|nonparticipant| +E0337117|non-papillary|nonpapillary| +E0337118|non-primary|nonprimary| +E0337119|non-recognition|nonrecognition| +E0337120|non-recovered|nonrecovered| +E0337121|non-protective|nonprotective| +E0337122|non-recidivism|nonrecidivism| +E0337123|non-rearranged|nonrearranged| +E0337124|non-referred|nonreferred| +E0337125|non-rejecting|nonrejecting| +E0337126|non-regulation|nonregulation| +E0337127|non-psychiatrist|nonpsychiatrist| +E0337128|non-rejector|nonrejector| +E0337129|non-reproductive|nonreproductive| +E0337130|non-randomly|nonrandomly| +E0337131|non-researcher|nonresearcher| +E0337134|nonleukaemogenic|nonleukemogenic| +E0337134|non-leukemogenic|nonleukemogenic| +E0337134|non-leukaemogenic|nonleukemogenic| +E0337135|non-locality|nonlocality| +E0337136|non-localized|nonlocalized| +E0337136|nonlocalised|nonlocalized| +E0337136|non-localised|nonlocalized| +E0337137|non-lymphopenic|nonlymphopenic| +E0337138|non-melanoma|nonmelanoma| +E0337139|non-motoneuron|nonmotoneuron| +E0337140|non-murine|nonmurine| +E0337141|non-myristoylated|nonmyristoylated| +E0337142|non-occluding|nonoccluding| +E0337143|non-optimized|nonoptimized| +E0337143|nonoptimised|nonoptimized| +E0337143|non-optimised|nonoptimized| +E0337144|non-oxidized|nonoxidized| +E0337144|nonoxidised|nonoxidized| +E0337144|non-oxidised|nonoxidized| +E0337145|non-paced|nonpaced| +E0337146|non-parasite|nonparasite| +E0337147|non-personnel|nonpersonnel| +E0337148|non-pancreatitic|nonpancreatitic| +E0337149|non-parametolic|nonparametolic| +E0337150|non-partisan|nonpartisan| +E0337151|non-partisan|nonpartisan| +E0337152|non-pathogen|nonpathogen| +E0337153|non-phenotyped|nonphenotyped| +E0337154|non-phosphorylatable|nonphosphorylatable| +E0337155|non-pilocytic|nonpilocytic| +E0337156|non-piperidine|nonpiperidine| +E0337157|non-plant|nonplant| +E0337158|non-plasmatic|nonplasmatic| +E0337159|non-plasminogen|nonplasminogen| +E0337160|non-porcelainized|nonporcelainized| +E0337160|nonporcelainised|nonporcelainized| +E0337160|non-porcelainised|nonporcelainized| +E0337161|non-powdered|nonpowdered| +E0337162|non-preservated|nonpreservated| +E0337164|non-precipitating|nonprecipitating| +E0337165|non-priming|nonpriming| +E0337166|non-processive|nonprocessive| +E0337167|non-progressive|nonprogressive| +E0337168|non-progressive|nonprogressive| +E0337169|non-prolonged|nonprolonged| +E0337170|non-purging|nonpurging| +E0337171|non-radical|nonradical| +E0337172|non-radiolabeled|nonradiolabeled| +E0337173|non-reducible|nonreducible| +E0337174|non-reducibility|nonreducibility| +E0337175|non-reiterated|nonreiterated| +E0337176|non-reperfused|nonreperfused| +E0337177|non-replicative|nonreplicative| +E0337178|non-resectable|nonresectable| +E0337179|non-resectability|nonresectability| +E0337180|non-resective|nonresective| +E0337181|non-resolving|nonresolving| +E0337182|non-rigid|nonrigid| +E0337183|non-respiratory|nonrespiratory| +E0337184|non-restrictive|nonrestrictive| +E0337185|non-rhabdomyosarcomatous|nonrhabdomyosarcomatous| +E0337186|non-reversible|nonreversible| +E0337188|non-secreted|nonsecreted| +E0337189|non-secretor|nonsecretor| +E0337190|non-sedating|nonsedating| +E0337191|non-skilled|nonskilled| +E0337192|non-seeded|nonseeded| +E0337193|non-sexually|nonsexually| +E0337194|nonserotypable|nonserotypeable| +E0337194|non-serotypeable|nonserotypeable| +E0337194|non-serotypable|nonserotypeable| +E0337195|non-protocol|nonprotocol| +E0337196|non-rachitic|nonrachitic| +E0337200|methyl-serotonin|methylserotonin| +E0337200|methyl serotonin|methylserotonin| +E0337201|methyl-succinate|methylsuccinate| +E0337203|methyl-thioadenosine|methylthioadenosine| +E0337211|micro-texture|microtexture| +E0337214|micro-trauma|microtrauma| +E0337221|micro-well|microwell| +E0337223|mimetise|mimetize| +E0337236|mono-adduct|monoadduct| +E0337237|mono-alkylated|monoalkylated| +E0337238|mono-arabinosylated|monoarabinosylated| +E0337240|mono-liganded|monoliganded| +E0337288|Salmonella typhi-murium|Salmonella typhimurium| +E0337288|Salmonella typhi murium|Salmonella typhimurium| +E0337290|multi-fraction|multifraction| +E0337291|multi-function|multifunction| +E0337292|multi-function|multifunction| +E0337293|multi-coil|multicoil| +E0337294|multi-gate|multigate| +E0337295|multi-group|multigroup| +E0337296|multi-group|multigroup| +E0337297|multi-helix|multihelix| +E0337298|multi-institution|multiinstitution| +E0337299|multi-institution|multiinstitution| +E0337300|multi-joint|multijoint| +E0337301|multi-joint|multijoint| +E0337302|multi-lesion|multilesion| +E0337303|multi-lesion|multilesion| +E0337306|multi-process|multiprocess| +E0337307|multi-process|multiprocess| +E0337311|multi-residue|multiresidue| +E0337312|multi-residue|multiresidue| +E0337313|multi-scale|multiscale| +E0337314|multi-slice|multislice| +E0337315|multi-slice|multislice| +E0337316|multi-test|multitest| +E0337317|multi-test|multitest| +E0337318|multi-state|multistate| +E0337319|multi-state|multistate| +E0337320|multi-tendoned|multitendoned| +E0337321|multi-ubiquitin|multiubiquitin| +E0337322|multi-vaccination|multivaccination| +E0337323|multi-variant|multivariant| +E0337324|multi-variant|multivariant| +E0337325|multi-wave-length|multiwavelength| +E0337325|multi-wavelength|multiwavelength| +E0337332|over-achiever|overachiever| +E0337334|musculovenous|musculo-venous| +E0337337|musculoarticular|musculo-articular| +E0337355|non-pregnancy|nonpregnancy| +E0337356|non-prostate|nonprostate| +E0337357|non-reward|nonreward| +E0337358|non-rodent|nonrodent| +E0337359|non-rotavirus|nonrotavirus| +E0337360|non-salicylate|nonsalicylate| +E0337361|non-scalp|nonscalp| +E0337362|non-seizure|nonseizure| +E0337363|non-sensory|nonsensory| +E0337364|non-sibling|nonsibling| +E0337365|non-simultaneously|nonsimultaneously| +E0337366|non-soap|nonsoap| +E0337367|non-sonority|nonsonority| +E0337368|non-specificity|nonspecificity| +E0337369|non-speech|nonspeech| +E0337370|non-spinal|nonspinal| +E0337371|non-stabilized|nonstabilized| +E0337371|nonstabilised|nonstabilized| +E0337371|non-stabilised|nonstabilized| +E0337372|non-standard|nonstandard| +E0337373|non-starved|nonstarved| +E0337374|non statistical|nonstatistical| +E0337374|non-statistical|nonstatistical| +E0337375|non-stereotyped|nonstereotyped| +E0337376|non-stimulatory|nonstimulatory| +E0337377|non-straining|nonstraining| +E0337378|non-strenuous|nonstrenuous| +E0337379|non-stringent|nonstringent| +E0337380|non-subcutaneous|nonsubcutaneous| +E0337381|non-supplemented|nonsupplemented| +E0337382|non-suppressor|nonsuppressor| +E0337383|non-susceptible|nonsusceptible| +E0337384|non-susceptibility|nonsusceptibility| +E0337385|non-syncopal|nonsyncopal| +E0337386|non-templated|nontemplated| +E0337387|non-surgery|nonsurgery| +E0337388|non-textual|nontextual| +E0337389|non-syndromic|nonsyndromic| +E0337390|non-target|nontarget| +E0337391|non-toxicity|nontoxicity| +E0337392|non-thermogenic|nonthermogenic| +E0337393|non-tertiary|nontertiary| +E0337394|non-thyroidal|nonthyroidal| +E0337395|non-transduced|nontransduced| +E0337396|non-transmural|nontransmural| +E0337397|non-twinned|nontwinned| +E0337398|non-transplanted|nontransplanted| +E0337400|non-transferable|nontransferable| +E0337402|non-vectorial|nonvectorial| +E0337403|non-vegetarian|nonvegetarian| +E0337404|non-vegetarian|nonvegetarian| +E0337405|non-vertebral|nonvertebral| +E0337406|non-renewable|nonrenewable| +E0337407|non-wounded|nonwounded| +E0337408|non-word|nonword| +E0337409|nonvitrectomised|nonvitrectomized| +E0337409|non-vitrectomized|nonvitrectomized| +E0337409|non-vitrectomised|nonvitrectomized| +E0337427|occipitoaxial|occipito-axial| +E0337447|octavo-lateral|octavolateral| +E0337450|oculo-dermal|oculodermal| +E0337451|oculo-pharyngeal|oculopharyngeal| +E0337452|oculo-vestibular|oculovestibular| +E0337456|oligo-arabinoside|oligoarabinoside| +E0337457|oligo-asthenozoospermia|oligoasthenozoospermia| +E0337459|oligo-adenosine|oligoadenosine| +E0337463|oligo-dendroblast|oligodendroblast| +E0337464|oligo-clonality|oligoclonality| +E0337466|olecranisation|olecranization| +E0337467|oligo-amine|oligoamine| +E0337474|oligo-astrocytoma|oligoastrocytoma| +E0337475|oligo-deoxynucleoside|oligodeoxynucleoside| +E0337481|Streptomyces olivochromogenus|Streptomyces olivochromogenes| +E0337493|mono-oleoylglycerol|monooleoylglycerol| +E0337496|multi-organism|multiorganism| +E0337497|multi-organelle|multiorganelle| +E0337502|onco-antigen|oncoantigen| +E0337504|onco-retroviral|oncoretroviral| +E0337509|morpholinylmercaptobenzothiazole|morpholinyl mercaptobenzothiazole| +E0337510|mercaptoethane sulphonate|mercaptoethane sulfonate| +E0337512|methyl methanethiolsulphonate|methyl methanethiolsulfonate| +E0337518|non-gangrenous|nongangrenous| +E0337520|oligo-probe|oligoprobe| +E0337543|organo-mercurial|organomercurial| +E0337559|Eupelmus vuilleti|Eupelmus vuilletti| +E0337563|oro-anal|oroanal| +E0337565|orthologue|ortholog| +E0337572|over-consumption|overconsumption| +E0337573|over-consume|overconsume| +E0337579|out-compete|outcompete| +E0337580|out-group|outgroup| +E0337580|out group|outgroup| +E0337581|out-pace|outpace| +E0337584|over-associate|overassociate| +E0337585|over-association|overassociation| +E0337586|over-eater|overeater| +E0337587|over-committed|overcommitted| +E0337588|over-detect|overdetect| +E0337589|over-detection|overdetection| +E0337590|over-dominance|overdominance| +E0337591|over-elongation|overelongation| +E0337592|over-elongate|overelongate| +E0337593|over-insertion|overinsertion| +E0337594|over-insert|overinsert| +E0337595|over-learn|overlearn| +E0337596|over-report|overreport| +E0337597|over-referral|overreferral| +E0337598|over-refer|overrefer| +E0337600|over-protectiveness|overprotectiveness| +E0337601|over-protective|overprotective| +E0337601|over protective|overprotective| +E0337602|over-sensitivity|oversensitivity| +E0337603|over-sensitive|oversensitive| +E0337604|over-proliferate|overproliferate| +E0337605|over-proliferation|overproliferation| +E0337606|over-ground|overground| +E0337607|over-ground|overground| +E0337608|over-simplistic|oversimplistic| +E0337609|over-transcription|overtranscription| +E0337610|over-transcribe|overtranscribe| +E0337611|over-predict|overpredict| +E0337612|over-prediction|overprediction| +E0337614|over-glycosylated|overglycosylated| +E0337615|over-methylation|overmethylation| +E0337616|over-pressure|overpressure| +E0337617|over-secretion|oversecretion| +E0337618|over-secrete|oversecrete| +E0337619|over-sew|oversew| +E0337620|over-sew|oversew| +E0337621|over-stage|overstage| +E0337622|over-stretch|overstretch| +E0337623|over-stretch|overstretch| +E0337624|over-synthesize|oversynthesize| +E0337624|oversynthesise|oversynthesize| +E0337624|over-synthesise|oversynthesize| +E0337625|over-synthesis|oversynthesis| +E0337626|over-wrap|overwrap| +E0337627|over-wrap|overwrap| +E0337651|pan-cardiac|pancardiac| +E0337653|pan-colonic|pancolonic| +E0337657|palatogingival|palato-gingival| +E0337658|otopalatodigital|oto-palato-digital| +E0337659|pan-malabsorption|panmalabsorption| +E0337661|paraarterially|para-arterially| +E0337674|methylmethane sulphonate|methylmethane sulfonate| +E0337675|methylmethane thiosulphonate|methylmethane thiosulfonate| +E0337676|ethylmethane sulphonate|ethylmethane sulfonate| +E0337676|ethylmethanesulfonate|ethylmethane sulfonate| +E0337676|ethylmethanesulphonate|ethylmethane sulfonate| +E0337676|ethyl methanesulfonate|ethylmethane sulfonate| +E0337676|ethyl methanesulphonate|ethylmethane sulfonate| +E0337678|mis-tune|mistune| +E0337679|mis-fold|misfold| +E0337680|mis-fold|misfold| +E0337689|uridine diphosphate glucuronosyl transferase|uridine diphosphate glucuronosyltransferase| +E0337693|pantoyl-lactone|pantoyl lactone| +E0337702|phospho-compound|phosphocompound| +E0337705|non-university|nonuniversity| +E0337706|non-threshold|nonthreshold| +E0337711|para-colic|paracolic| +E0337712|para-cortical|paracortical| +E0337713|para-crystal|paracrystal| +E0337716|ice fish|icefish| +E0337716|ice-fish|icefish| +E0337721|mid-graft|midgraft| +E0337728|mid-piece|midpiece| +E0337729|mid-flexion|midflexion| +E0337730|mid-hindbrain|midhindbrain| +E0337731|mid-leg|midleg| +E0337732|mid-life|midlife| +E0337733|mid-molecule|midmolecule| +E0337734|mid-sporulation|midsporulation| +E0337735|mid-systole|midsystole| +E0337736|mid-tibial|midtibial| +E0337737|mid-wall|midwall| +E0337738|mid-zone|midzone| +E0337741|mono-cortical|monocortical| +E0337744|multimerise|multimerize| +E0337745|multi-negative|multinegative| +E0337748|non-vaccinate|nonvaccinate| +E0337749|non-silicate|nonsilicate| +E0337750|non-sterol|nonsterol| +E0337751|non-taxon|nontaxon| +E0337752|non-teratogen|nonteratogen| +E0337753|non-transgenic|nontransgenic| +E0337754|non-transplant|nontransplant| +E0337755|non-urea|nonurea| +E0337756|non-valgus|nonvalgus| +E0337757|non-vertex|nonvertex| +E0337772|Vibrio parahemolyticus|Vibrio parahaemolyticus| +E0337779|paralogue|paralog| +E0337795|pepsinise|pepsinize| +E0337819|peri-acetabular|periacetabular| +E0337820|peri-airway|periairway| +E0337821|peri-aneurysm|perianeurysm| +E0337822|peri-appendageal|periappendageal| +E0337828|peri-ellipsoidal|periellipsoidal| +E0337848|pre-aerosol|preaerosol| +E0337859|pre-arrest|prearrest| +E0337860|pre-arrest|prearrest| +E0337861|pre-assembly|preassembly| +E0337862|pre-associated|preassociated| +E0337863|pre-attentively|preattentively| +E0337871|pre-obese|preobese| +E0337872|nucleus praepositus hypoglossi|nucleus prepositus hypoglossi| +E0337873|praepositus hypoglossi|prepositus hypoglossi| +E0337897|phospho-intermediate|phosphointermediate| +E0337899|phosphoadenylyl sulfate|phosphoadenylyl sulphate| +E0337900|phospho-anhydride|phosphoanhydride| +E0337901|phospho-enzyme|phosphoenzyme| +E0337904|phospho-inositidase|phosphoinositidase| +E0337905|phospho-isoform|phosphoisoform| +E0337917|photo-adduct|photoadduct| +E0337949|platinised|platinized| +E0337969|pharmaco-resistant|pharmacoresistant| +E0337976|Treponema socranskyi|Treponema socranskii| +E0337985|peritumoural|peritumoral| +E0337994|alpha phenylglycidate|alpha-phenylglycidate| +E0338003|photo-insertion|photoinsertion| +E0338042|papillotubular|papillo-tubular| +E0338043|papillorenal|papillo-renal| +E0338050|osmol|osmole| +E0338051|oralpharyngeal|oral-pharyngeal| +E0338052|permeabiliser|permeabilizer| +E0338065|orthophenylphenate|ortho-phenylphenate| +E0338066|sodium orthophenylphenate|sodium ortho-phenylphenate| +E0338070|phyllodes tumour|phyllodes tumor| +E0338103|plate-like|platelike| +E0338126|policy-making|policymaking| +E0338127|polarisability|polarizability| +E0338128|polarisable|polarizable| +E0338133|well posedness|well-posedness| +E0338134|ill posedness|ill-posedness| +E0338135|polyhaematoporphyrin|polyhematoporphyrin| +E0338152|protectible|protectable| +E0338155|prostatectomise|prostatectomize| +E0338159|sublocalise|sublocalize| +E0338160|sublocalisation|sublocalization| +E0338229|caecectomised|cecectomized| +E0338231|septo-temporal|septotemporal| +E0338247|semi-group|semigroup| +E0338258|secretagogue|secretagog| +E0338266|Vipera russellii|Vipera russelli| +E0338271|sclerotise|sclerotize| +E0338275|skeptic|sceptic| +E0338283|Schwannian|schwannian| +E0338301|sand-pit|sandpit| +E0338301|sand pit|sandpit| +E0338312|runon|run-on| +E0338319|rostro-dorsal|rostrodorsal| +E0338346|robotised|robotized| +E0338349|ristocetincofactor|ristocetin cofactor| +E0338352|Rhodesian Ridgeback|Rhodesian ridgeback| +E0338354|over-ridingly|overridingly| +E0338389|rhino-conjunctivitis|rhinoconjunctivitis| +E0338405|retro-urethral|retrourethral| +E0338413|retro-orbital|retroorbital| +E0338416|retro-infusion|retroinfusion| +E0338420|retro-element|retroelement| +E0338448|re-slice|reslice| +E0338451|re-stenose|restenose| +E0338454|re-obliteration|reobliteration| +E0338455|re-obliterate|reobliterate| +E0338458|relocalisation|relocalization| +E0338459|relocalise|relocalize| +E0338466|re-internalization|reinternalization| +E0338466|reinternalisation|reinternalization| +E0338466|re-internalisation|reinternalization| +E0338467|re-internalize|reinternalize| +E0338467|reinternalise|reinternalize| +E0338467|re-internalise|reinternalize| +E0338468|re-enter|reenter| +E0338469|re-emerge|reemerge| +E0338470|re-emergence|reemergence| +E0338471|radio-protector|radioprotector| +E0338483|residualise|residualize| +E0338484|resensitisation|resensitization| +E0338485|resensitise|resensitize| +E0338486|resulphate|resulfate| +E0338489|resistable|resistible| +E0338490|re-score|rescore| +E0338491|re-rupture|rerupture| +E0338496|reperitonealisation|reperitonealization| +E0338497|reperitonealise|reperitonealize| +E0338501|re-occlude|reocclude| +E0338502|reno-ureteral|renoureteral| +E0338515|re-invent|reinvent| +E0338516|re-invention|reinvention| +E0338517|re-inflation|reinflation| +E0338518|re-inflate|reinflate| +E0338519|re-extraction|reextraction| +E0338520|re-extract|reextract| +E0338522|re-interview|reinterview| +E0338523|re-engineer|reengineer| +E0338526|recategorise|recategorize| +E0338527|recategorisation|recategorization| +E0338533|reendothelialise|reendothelialize| +E0338533|re-endothelialize|reendothelialize| +E0338533|re-endothelialise|reendothelialize| +E0338534|re-endothelialization|reendothelialization| +E0338534|reendothelialisation|reendothelialization| +E0338534|re-endothelialisation|reendothelialization| +E0338537|re-excision|reexcision| +E0338538|re-excise|reexcise| +E0338539|re-elevation|reelevation| +E0338540|re-elevate|reelevate| +E0338543|re-irradiation|reirradiation| +E0338544|re-irradiate|reirradiate| +E0338545|re-esterify|reesterify| +E0338547|reepithelialise|reepithelialize| +E0338547|re-epithelialize|reepithelialize| +E0338547|re-epithelialise|reepithelialize| +E0338554|re-equilibration|reequilibration| +E0338555|re-equilibrate|reequilibrate| +E0338557|reconstructible|reconstructable| +E0338558|reconstructability|reconstructability| +E0338559|re-amplify|reamplify| +E0338560|re-amplification|reamplification| +E0338567|re-arterialize|rearterialize| +E0338567|rearterialise|rearterialize| +E0338567|re-arterialise|rearterialize| +E0338568|rearterialisation|rearterialization| +E0338568|re-arterialization|rearterialization| +E0338568|re-arterialisation|rearterialization| +E0338573|re-approximate|reapproximate| +E0338574|re-approximation|reapproximation| +E0338575|re-angioplasty|reangioplasty| +E0338576|re-afferent|reafferent| +E0338587|radio-immunoassayable|radioimmunoassayable| +E0338587|radioimmuno-assayable|radioimmunoassayable| +E0338587|radio-immuno-assayable|radioimmunoassayable| +E0338588|radio-immunotherapeutic|radioimmunotherapeutic| +E0338589|radio-lucency|radiolucency| +E0338589|radio lucent|radiolucency| +E0338590|radio-tracer|radiotracer| +E0338590|radio tracer|radiotracer| +E0338591|rainforest|rain forest| +E0338593|radio-sequencing|radiosequencing| +E0338593|radio sequencing|radiosequencing| +E0338595|radio-phosphorus|radiophosphorus| +E0338596|radio-responsiveness|radioresponsiveness| +E0338597|radio-responsive|radioresponsive| +E0338598|radio-metal|radiometal| +E0338600|radio-contrast|radiocontrast| +E0338603|radio-aerosol|radioaerosol| +E0338604|radio-aerosol|radioaerosol| +E0338616|post-acquisition|postacquisition| +E0338617|post-agonist|postagonist| +E0338618|post-ablation|postablation| +E0338619|post-ablation|postablation| +E0338620|post-acute|postacute| +E0338621|post-amenorrheic|postamenorrheic| +E0338622|post-angiography|postangiography| +E0338623|post-angiography|postangiography| +E0338624|post-anoxia|postanoxia| +E0338625|post-anoxia|postanoxia| +E0338626|post-arrest|postarrest| +E0338627|post-assessment|postassessment| +E0338628|post-biomedical|postbiomedical| +E0338629|post-bolus|postbolus| +E0338631|post-capsomeric|postcapsomeric| +E0338632|post-catheterization|postcatheterization| +E0338633|post-catheterization|postcatheterization| +E0338633|postcatheterisation|postcatheterization| +E0338633|post-catheterisation|postcatheterization| +E0338635|post-chemotherapy|postchemotherapy| +E0338636|post-cleaning|postcleaning| +E0338638|post-coitus|postcoitus| +E0338639|post-coitus|postcoitus| +E0338699|path-length|pathlength| +E0338699|path length|pathlength| +E0338702|pharyngo-esophagogram|pharyngoesophagogram| +E0338702|pharyngo-oesophagogram|pharyngoesophagogram| +E0338704|line-shape|lineshape| +E0338704|line shape|lineshape| +E0338705|line-width|linewidth| +E0338705|line width|linewidth| +E0338709|livebirth|live birth| +E0338709|live-birth|live birth| +E0338710|log-normal|lognormal| +E0338713|chondrospinal|chondro-spinal| +E0338714|chondromucosal|chondro-mucosal| +E0338716|choriodecidual|chorio-decidual| +E0338725|cohoe|coho| +E0338745|cyanomorpholinodaunomycin|cyanomorpholino-daunomycin| +E0338753|edg|Edg| +E0338755|fibroodontoma|fibro-odontoma| +E0338758|fibromuscular|fibro-muscular| +E0338759|fibroatelectatic|fibro-atelectatic| +E0338760|fibromucinous|fibro-mucinous| +E0338762|DoD|DOD| +E0338770|gastroarterial|gastro-arterial| +E0338771|gastroulcerogenic|gastro-ulcerogenic| +E0338776|Agcistrodon halys brevicaudus|Agkistrodon halys brevicaudus| +E0338779|haploinsufficient|haplo-insufficient| +E0338780|haploidentification|haplo-identification| +E0338782|hand-surgery|handsurgery| +E0338782|hand surgery|handsurgery| +E0338783|hippocamponeocortical|hippocampo-neocortical| +E0338784|hippocampocortical|hippocampo-cortical| +E0338787|hippocampoparietal|hippocampo-parietal| +E0338788|postero-anterior|posteroanterior| +E0338789|posteroperipheral|postero-peripheral| +E0338790|posteroanteriorly|postero-anteriorly| +E0338792|Abercrombie's syndrome|Abercrombie syndrome| +E0338811|Collectotrichum dematium|Colletotrichum dematium| +E0338826|acquired hypogammaglobulinaemia|acquired hypogammaglobulinemia| +E0338865|antithyroid antibody|anti-thyroid antibody| +E0338902|bakers' itch|baker's itch| +E0338942|amebic abscess|amoebic abscess| +E0338943|amoeboid movement|ameboid movement| +E0338973|blast cell leukaemia|blast cell leukemia| +E0338973|blast cell leucemia|blast cell leukemia| +E0338973|blast cell leucaemia|blast cell leukemia| +E0338981|breath analyser|breath analyzer| +E0338996|chainsaw|chain saw| +E0338996|chain-saw|chain saw| +E0338998|child-bed fever|childbed fever| +E0338999|child labour|child labor| +E0339039|alpha-haemolysis|alpha-hemolysis| +E0339055|archaeocortex|archeocortex| +E0339061|area praetectalis|area pretectalis| +E0339087|wool picking|wool-picking| +E0339120|utero-ovarian ligament|uteroovarian ligament| +E0339159|temporomandibular disfunction syndrome|temporomandibular dysfunction syndrome| +E0339161|sweetpotato|sweet potato| +E0339196|arrhinia|arhinia| +E0339215|arterial haemorrhage|arterial hemorrhage| +E0339291|basophilic leucocyte|basophilic leukocyte| +E0339294|Battle sign|Battle's sign| +E0339322|bleeding heart pigeon|bleeding-heart pigeon| +E0339327|blue green alga|blue-green alga| +E0339331|body colour|body color| +E0339340|branched chain ketoaciduria|branched-chain ketoaciduria| +E0339342|brain aneurism|brain aneurysm| +E0339352|case-control study|case control study| +E0339352|casecontrol study|case control study| +E0339388|bird breeders' lung|bird breeder's lung| +E0339404|brachiocephalic ischaemia|brachiocephalic ischemia| +E0339413|Brodmann area|Brodmann's area| +E0339428|brass founders' fever|brass-founders' fever| +E0339429|brass-founders' ague|brass founders' ague| +E0339461|cheesemaker|cheese maker| +E0339461|cheese-maker|cheese maker| +E0339470|crico-esophageal tendon|cricoesophageal tendon| +E0339487|deckhand|deck hand| +E0339517|cephalocoele|cephalocele| +E0339531|chloranaemia|chloranemia| +E0339583|extra-uterine pregnancy|extrauterine pregnancy| +E0339586|eye blink|eyeblink| +E0339587|beta-aminoisobutyricaciduria|beta aminoisobutyricaciduria| +E0339612|choledochogastrostomy|choledocho-gastrostomy| +E0339619|coal miner's lung|coal miners' lung| +E0339621|clasp knife rigidity|clasp-knife rigidity| +E0339655|chondrodystrophia foetalis calcificans|chondrodystrophia fetalis calcificans| +E0339669|Clostridium hemolyticum|Clostridium haemolyticum| +E0339670|Clouston syndrome|Clouston's syndrome| +E0339688|congenital nonhaemolytic jaundice|congenital nonhemolytic jaundice| +E0339707|dropfoot gait|drop foot gait| +E0339707|drop-foot gait|drop foot gait| +E0339713|colo-colic|colocolic| +E0339716|nonbullous congenital ichthyosiform erythroderma|non-bullous congenital ichthyosiform erythroderma| +E0339728|congenital sucrose isomaltose malabsorption|congenital sucrose-isomaltose malabsorption| +E0339756|cross-arm flap|cross arm flap| +E0339757|crown-heel length|crown heel length| +E0339770|dietary amenorrhoea|dietary amenorrhea| +E0339772|dorsal external arcuate fibre|dorsal external arcuate fiber| +E0339774|dose rate|dose-rate| +E0339775|drop shaped|drop-shaped| +E0339776|drug induced lupus|drug-induced lupus| +E0339797|carbamoyl phosphate synthetase deficiency|carbamoyl-phosphate synthetase deficiency| +E0339799|cis trans test|cis-trans test| +E0339810|Creutzfeldt Jakob syndrome|Creutzfeldt-Jakob syndrome| +E0339816|cross immunity|cross-immunity| +E0339825|cutaneous T cell lymphoma|cutaneous T-cell lymphoma| +E0339839|de Morgan's spot|De Morgan's spot| +E0339840|cytotoxic T-cell|cytotoxic T cell| +E0339844|Debre-Semelaigne's syndrome|Debre-Semelaigne syndrome| +E0339853|De Sanctis-Cacchione syndrome|DeSanctis-Cacchione syndrome| +E0339853|De Sanctis Cacchione syndrome|DeSanctis-Cacchione syndrome| +E0339853|de Sanctis-Cacchione syndrome|DeSanctis-Cacchione syndrome| +E0339853|de Sanctis Cacchione syndrome|DeSanctis-Cacchione syndrome| +E0339889|deaf mute|deaf-mute| +E0339898|Dejerine Lichtheim phenomenon|Dejerine-Lichtheim phenomenon| +E0339916|Duncan syndrome|Duncan's syndrome| +E0339917|dumdum fever|dum-dum fever| +E0339917|dum dum fever|dum-dum fever| +E0339920|Dupre syndrome|Dupre's syndrome| +E0339925|dysponderal amenorrhoea|dysponderal amenorrhea| +E0339940|familial non-haemolytic jaundice|familial non-hemolytic jaundice| +E0339944|foetal acoustic stimulation test|fetal acoustic stimulation test| +E0339946|fibre cell|fiber cell| +E0339950|film strip|filmstrip| +E0339961|embryonal tumour|embryonal tumor| +E0339966|emprosthotonus|emprosthotonos| +E0339968|Entameba hartmanni|Entamoeba hartmanni| +E0339968|Entamoeba hartmannii|Entamoeba hartmanni| +E0339968|Entameba hartmannii|Entamoeba hartmanni| +E0339969|Entameba polecki|Entamoeba polecki| +E0339975|enterokinesia|enterocinesia| +E0339979|ectodermosis erosiva pluri-orificialis|ectodermosis erosiva pluriorificialis| +E0339986|eosinophilia myalgia syndrome|eosinophilia-myalgia syndrome| +E0340024|viral haemagglutination|viral hemagglutination| +E0340041|excavatio rectouterina|excavatio recto-uterina| +E0340042|excavatio vesicouterina|excavatio vesico-uterina| +E0340065|faecaloma|fecaloma| +E0340070|fer-de-lance|fer de lance| +E0340153|oesophago-oesophagostomy|esophago-esophagostomy| +E0340157|foreign-body giant cell|foreign body giant cell| +E0340168|frost anaesthesia|frost anesthesia| +E0340203|gastro-pancreatic reflex|gastropancreatic reflex| +E0340204|gastro-esophagostomy|gastroesophagostomy| +E0340204|gastro-oesophagostomy|gastroesophagostomy| +E0340205|gastro-intestinal digestion|gastrointestinal digestion| +E0340223|glassblower|glass blower| +E0340230|globulo-maxillary cyst|globulomaxillary cyst| +E0340237|glosso-epiglottic fold|glossoepiglottic fold| +E0340238|glucagon-stimulation test|glucagon stimulation test| +E0340249|Gower's manoeuvre|Gower's maneuver| +E0340260|Gorlin Psaume syndrome|Gorlin-Psaume syndrome| +E0340278|grey syndrome|gray syndrome| +E0340304|gyrus occipitotemporalis lateralis|gyrus occipito-temporalis lateralis| +E0340311|habenulo-interpeduncular tract|habenulointerpeduncular tract| +E0340314|Haemaphysalis leporispalustris|Haemaphysalis leporis-palustris| +E0340363|haemagglutination inhibition test|hemagglutination inhibition test| +E0340370|haemocytophagia|hemocytophagia| +E0340372|haemorrhagic dengue|hemorrhagic dengue| +E0340373|Henle's fibre layer|Henle's fiber layer| +E0340374|hereditary opalescent dentine|hereditary opalescent dentin| +E0340375|hepatic amoebiasis|hepatic amebiasis| +E0340393|high chair|highchair| +E0340394|high protein diet|high-protein diet| +E0340412|home brew|home-brew| +E0340431|hydrogen-ion concentration|hydrogen ion concentration| +E0340456|ice box|icebox| +E0340465|immune hydrops foetalis|immune hydrops fetalis| +E0340495|ink blot test|inkblot test| +E0340527|hawkmoth|hawk moth| +E0340541|intraarticular sternocostal ligament|intra-articular sternocostal ligament| +E0340545|intrapartum haemorrhage|intrapartum hemorrhage| +E0340553|ischaemic bowel disease|ischemic bowel disease| +E0340567|jack-knife seizure|jackknife seizure| +E0340567|jack knife seizure|jackknife seizure| +E0340572|jackrabbit|jack rabbit| +E0340593|ketosis resistant diabetes|ketosis-resistant diabetes| +E0340647|laser Doppler velocimetry|laser-Doppler velocimetry| +E0340656|Laurence Moon syndrome|Laurence-Moon syndrome| +E0340659|LeFort osteotomy|Le Fort osteotomy| +E0340659|Lefort osteotomy|Le Fort osteotomy| +E0340661|leather-bottle stomach|leather bottle stomach| +E0340666|left gastro-omental artery|left gastroomental artery| +E0340688|leukotome|leucotome| +E0340689|leucocytoclastic angiitis|leukocytoclastic angiitis| +E0340699|lipline|lip line| +E0340738|low calorie diet|low-calorie diet| +E0340742|Long Evans rat|Long-Evans rat| +E0340768|well-differentiated lymphocytic lymphoma|well differentiated lymphocytic lymphoma| +E0340773|mail-order|mail order| +E0340775|mal de Meleda|mal de meleda| +E0340780|manic depressive disorder|manic-depressive disorder| +E0340781|manic depressive reaction|manic-depressive reaction| +E0340785|massive haemorrhage|massive hemorrhage| +E0340811|megalokaryocyte|megalocaryocyte| +E0340813|megalophthalmos|megalophthalmus| +E0340818|mento-anterior position|mentoanterior position| +E0340823|metachromatic leucoencephalopathy|metachromatic leukoencephalopathy| +E0340835|microscopic haematuria|microscopic hematuria| +E0340837|Microsporon langeroni|Microsporon langeronii| +E0340860|nail biting|nail-biting| +E0340862|nasoalveolar cyst|naso-alveolar cyst| +E0340863|naso-palatine duct cyst|nasopalatine duct cyst| +E0340868|necrotising cellulitis|necrotizing cellulitis| +E0340869|necrotising scleritis|necrotizing scleritis| +E0340907|nonimmune hydrops fetalis|non-immune hydrops fetalis| +E0340907|non-immune hydrops foetalis|non-immune hydrops fetalis| +E0340907|nonimmune hydrops foetalis|non-immune hydrops fetalis| +E0340908|non-rachitic bow leg|non-rachitic bowleg| +E0340908|nonrachitic bowleg|non-rachitic bowleg| +E0340908|nonrachitic bow leg|non-rachitic bowleg| +E0340909|nonthrombocytopenic purpura|non-thrombocytopenic purpura| +E0340910|nonvenereal syphilis|non-venereal syphilis| +E0340912|non-member|nonmember| +E0340913|non-parametric statistics|nonparametric statistics| +E0340913|non parametric statistics|nonparametric statistics| +E0340914|non-striated muscle|nonstriated muscle| +E0340915|nontoxic goitre|nontoxic goiter| +E0340915|non-toxic goiter|nontoxic goiter| +E0340915|non-toxic goitre|nontoxic goiter| +E0340956|metaanalysis|meta-analysis| +E0340956|meta analysis|meta-analysis| +E0340957|metal-fume fever|metal fume fever| +E0340959|metropathia haemorrhagica|metropathia hemorrhagica| +E0340972|mixed hyperlipidaemia|mixed hyperlipidemia| +E0340984|multi-gravida|multigravida| +E0341040|neuronal ceroid lipofuscinosis|neuronal ceroid-lipofuscinosis| +E0341078|nucleus subceruleus|nucleus subcaeruleus| +E0341094|nutritional amenorrhoea|nutritional amenorrhea| +E0341098|nursemaid's elbow|nursemaids' elbow| +E0341099|nutcracker oesophagus|nutcracker esophagus| +E0341103|oculodento-osseous dysplasia|oculo-dento-osseous dysplasia| +E0341103|oculodentoosseous dysplasia|oculo-dento-osseous dysplasia| +E0341107|olfactory anaesthesia|olfactory anesthesia| +E0341111|omelet|omelette| +E0341113|openbite|open bite| +E0341113|open-bite|open bite| +E0341121|orange-flower water|orange flower water| +E0341130|oroticaciduria|orotic aciduria| +E0341205|pigeon-breeders' lung|pigeon breeders' lung| +E0341205|pigeon breeder's lung|pigeon breeders' lung| +E0341205|pigeon-breeder's lung|pigeon breeders' lung| +E0341205|pigeon breeders lung|pigeon breeders' lung| +E0341205|pigeon-breeders lung|pigeon breeders' lung| +E0341233|port-wine naevus|port-wine nevus| +E0341235|post traumatic stress disorder|post-traumatic stress disorder| +E0341236|postage-stamp|postage stamp| +E0341238|posterior atlanto-occipital membrane|posterior atlantooccipital membrane| +E0341244|myeloid granulocytic leukaemia|myeloid granulocytic leukemia| +E0341244|myeloid granulocytic leucemia|myeloid granulocytic leukemia| +E0341244|myeloid granulocytic leucaemia|myeloid granulocytic leukemia| +E0341280|pipefitter|pipe fitter| +E0341302|premenopausal amenorrhoea|premenopausal amenorrhea| +E0341325|prostatorrhoea|prostatorrhea| +E0341328|pseudohaematuria|pseudohematuria| +E0341350|relative amenorrhoea|relative amenorrhea| +E0341371|sail maker|sailmaker| +E0341412|Pediococcus urinae-equi|Pediococcus urinaeequi| +E0341443|precuneus|praecuneus| +E0341465|punch drunk encephalopathy|punchdrunk encephalopathy| +E0341469|quadrantanopia|quadrant anopia| +E0341506|port wine nevus|portwine nevus| +E0341506|portwine naevus|portwine nevus| +E0341506|port wine naevus|portwine nevus| +E0341508|post-infectious encephalitis|postinfectious encephalitis| +E0341510|posthemiplegic chorea|post-hemiplegic chorea| +E0341512|post-perfusion syndrome|postperfusion syndrome| +E0341513|post-sphenoidal bone|postsphenoidal bone| +E0341514|post-stenotic dilatation|poststenotic dilatation| +E0341515|post-transfusion hepatitis|posttransfusion hepatitis| +E0341517|pre-excitation syndrome|preexcitation syndrome| +E0341524|male Turner's syndrome|male Turner syndrome| +E0341525|Mauriac's syndrome|Mauriac syndrome| +E0341528|Mohs surgery|Mohs' surgery| +E0341528|Mohs's surgery|Mohs' surgery| +E0341560|uretero-vesical junction|ureterovesical junction| +E0341564|unconjugated hyperbilirubinaemia|unconjugated hyperbilirubinemia| +E0341575|trainsickness|train sickness| +E0341586|tractus spino-cerebellaris dorsalis|tractus spinocerebellaris dorsalis| +E0341587|tractus spino-cerebellaris ventralis|tractus spinocerebellaris ventralis| +E0341643|tuberculin type hypersensitivity|tuberculin-type hypersensitivity| +E0341649|zoril|zorilla| +E0341649|zorille|zorilla| +E0341649|zorillo|zorilla| +E0341651|Zieve's syndrome|Zieve syndrome| +E0341695|vasa previa|vasa praevia| +E0341726|haw finch|hawfinch| +E0341731|acute tubulointerstitial nephritis|acute tubulo-interstitial nephritis| +E0341737|lymphoedema tarda|lymphedema tarda| +E0341762|naevus spilus|nevus spilus| +E0341766|three day fever|three-day fever| +E0341767|three day measles|three-day measles| +E0341778|systematic desensitisation|systematic desensitization| +E0341781|surf board|surfboard| +E0341790|swimmer's itch|swimmers' itch| +E0341810|sleep-walking disorder|sleepwalking disorder| +E0341810|sleep walking disorder|sleepwalking disorder| +E0341815|spasmodic dysmenorrhoea|spasmodic dysmenorrhea| +E0341843|sulphur granule|sulfur granule| +E0341850|shoulder-blade|shoulder blade| +E0341850|shoulderblade|shoulder blade| +E0341854|semi-conscious|semiconscious| +E0341855|self view|self-view| +E0341860|seesaw nystagmus|see-saw nystagmus| +E0341860|see saw nystagmus|see-saw nystagmus| +E0341861|scrivener's palsy|scriveners' palsy| +E0341866|Moebius syndrome|Mobius syndrome| +E0341866|Mobius' syndrome|Mobius syndrome| +E0341874|oesophago-intestinal|esophago-intestinal| +E0341874|esophagointestinal|esophago-intestinal| +E0341874|oesophagointestinal|esophago-intestinal| +E0341895|Ornythonyssus sylviarum|Ornithonyssus sylviarum| +E0341915|Parry Romberg syndrome|Parry-Romberg syndrome| +E0341933|pharyngo-esophageal diverticulum|pharyngoesophageal diverticulum| +E0341933|pharyngo-oesophageal diverticulum|pharyngoesophageal diverticulum| +E0341936|pinkeye|pink eye| +E0341943|pleuropneumonia like organism|pleuropneumonia-like organism| +E0341955|pleurothotonus|pleurothotonos| +E0341961|low renin hypertension|low-renin hypertension| +E0341966|oral leukoplakia|oral leucoplakia| +E0341967|Oddi's sphincter|Oddis sphincter| +E0341988|positive end-expiratory pressure|positive end expiratory pressure| +E0342008|pure red-cell aplasia|pure red cell aplasia| +E0342013|rectocolonoscopy|recto-colonoscopy| +E0342014|rectosigmoid colon|recto-sigmoid colon| +E0342015|recto-appendiceal fistula|rectoappendiceal fistula| +E0342020|Amarantus reflexus|Amaranthus reflexus| +E0342021|Amarantus retroflexus|Amaranthus retroflexus| +E0342043|ventral external arcuate fibre|ventral external arcuate fiber| +E0342044|transverse pontine fibre|transverse pontine fiber| +E0342046|Fiessinger-Leroy-Reiter's syndrome|Fiessinger-Leroy-Reiter syndrome| +E0342046|Fiessinger Leroy Reiter syndrome|Fiessinger-Leroy-Reiter syndrome| +E0342052|hypoxanthine-guanine phosphoribosyltransferase deficiency|hypoxanthine guanine phosphoribosyltransferase deficiency| +E0342068|right gastro-omental artery|right gastroomental artery| +E0342083|sandflea|sand flea| +E0342091|schizoaffective schizophrenia|schizo-affective schizophrenia| +E0342094|seabass|sea bass| +E0342108|sign writer|signwriter| +E0342110|silo-fillers' lung|silo-filler's lung| +E0342110|silo filler's lung|silo-filler's lung| +E0342110|silo fillers' lung|silo-filler's lung| +E0342168|Rendu Osler Weber syndrome|Rendu-Osler-Weber syndrome| +E0342172|Reidel struma|Riedel's struma| +E0342187|Mees' line|Mee's line| +E0342187|Mees line|Mee's line| +E0342189|mean cell haemoglobin concentration|mean cell hemoglobin concentration| +E0342207|ring form|ring-form| +E0342207|ringform|ring-form| +E0342232|Romano Ward syndrome|Romano-Ward syndrome| +E0342233|Rosenthal's syndrome|Rosenthal syndrome| +E0342255|Salmonella abortus-ovis|Salmonella abortusovis| +E0342259|Salmonella typhi-suis|Salmonella typhisuis| +E0342296|self psychology|self-psychology| +E0342317|schistocoelia|schistocelia| +E0342324|scleroedema neonatorum|scleredema neonatorum| +E0342462|seven day fever|seven-day fever| +E0342496|stiff-person syndrome|stiff person syndrome| +E0342508|Tenia antarctica|Taenia antarctica| +E0342510|Tenia brachysoma|Taenia brachysoma| +E0342511|Tenia crassiceps|Taenia crassiceps| +E0342514|Tenia krabbei|Taenia krabbei| +E0342515|Tenia ovis|Taenia ovis| +E0342522|warthog|wart hog| +E0342531|seborrhoeic wart|seborrheic wart| +E0342538|Vogt Koyanagi Harada Syndrome|Vogt-Koyanagi-Harada syndrome| +E0342586|strawberry haemangioma|strawberry hemangioma| +E0342652|tumour lysis syndrome|tumor lysis syndrome| +E0342654|Treacher Collins Franceschetti syndrome|Treacher Collins-Franceschetti syndrome| +E0342660|X-linked hypogammaglobulinaemia|X-linked hypogammaglobulinemia| +E0342666|Sturge Kalischer Weber syndrome|Sturge-Kalischer-Weber syndrome| +E0342674|neuro-ectodermal hamartoma|neuroectodermal hamartoma| +E0342677|humourousness|humorousness| +E0342687|five day fever|five-day fever| +E0342688|race course|racecourse| +E0342694|pyo-carious|pyocarious| +E0342695|pyo-septic|pyoseptic| +E0342696|pyo-necrotic|pyonecrotic| +E0342699|pyo-destructive|pyodestructive| +E0342703|haemorrhagic fibrinogenolysis|hemorrhagic fibrinogenolysis| +E0342720|tea-taster's cough|tea-tasters' cough| +E0342720|tea tasters' cough|tea-tasters' cough| +E0342720|tea taster's cough|tea-tasters' cough| +E0342722|tea-taster's disease|tea-tasters' disease| +E0342722|tea tasters' disease|tea-tasters' disease| +E0342722|tea taster's disease|tea-tasters' disease| +E0342760|tunafish|tuna fish| +E0342780|vitello-intestinal duct|vitellointestinal duct| +E0342783|voicebox|voice box| +E0342800|spur cell anaemia|spur cell anemia| +E0342832|supra-occipital bone|supraoccipital bone| +E0342836|squirrel fish|squirrelfish| +E0342877|subacute sclerosing leucoencephalopathy|subacute sclerosing leukoencephalopathy| +E0342896|sulcus parieto-occipitalis|sulcus parietooccipitalis| +E0342903|superior sulcus tumour|superior sulcus tumor| +E0342911|Tenia balaniceps|Taenia balaniceps| +E0342912|Tenia cervi|Taenia cervi| +E0342915|Tenia hydatigena|Taenia hydatigena| +E0342916|Tenia marginata|Taenia marginata| +E0342918|Tenia serrata|Taenia serrata| +E0342933|thalamo-olivary tract|thalamoolivary tract| +E0342978|writer's spasm|writers' spasm| +E0342986|wood-carver|wood carver| +E0343031|synagog|synagogue| +E0343067|tractus spino-cerebellaris anterior|tractus spinocerebellaris anterior| +E0343068|tractus spino-cerebellaris posterior|tractus spinocerebellaris posterior| +E0343072|transhiatal|trans-hiatal| +E0343079|Trantas's dot|Trantas' dot| +E0343085|trench foot|trenchfoot| +E0343089|Treponema paraluis-cuniculi|Treponema paraluiscuniculi| +E0343159|vaginal haematocele|vaginal hematocele| +E0343159|vaginal haematocoele|vaginal hematocele| +E0343190|venous haemorrhage|venous hemorrhage| +E0343192|Tapia syndrome|Tapia's syndrome| +E0343238|vesico-ureteric reflux|vesicoureteric reflux| +E0343241|virusaemia|virusemia| +E0343249|viral haemorrhagic fever|viral hemorrhagic fever| +E0343294|acromio-clavicular joint|acromioclavicular joint| +E0343315|Olea europea|Olea europaea| +E0343326|Vitex agnus-castus|Vitex agnus castus| +E0343331|Xyphias gladius|Xiphias gladius| +E0343364|dart board|dartboard| +E0343373|foot rest|footrest| +E0343390|non-residential|nonresidential| +E0343391|non-prescribed|nonprescribed| +E0343392|non-visual|nonvisual| +E0343393|non-nutritive|nonnutritive| +E0343394|non-domestic|nondomestic| +E0343395|non-commissioned|noncommissioned| +E0343396|non-facial|nonfacial| +E0343397|non-striated|nonstriated| +E0343398|non-urban|nonurban| +E0343411|semi-skilled|semiskilled| +E0343443|anankastic|anancastic| +E0343444|air field|airfield| +E0343446|bird-like|birdlike| +E0343463|amygdalohippocampal|amygdalo-hippocampal| +E0343464|amygdalosubicular|amygdalo-subicular| +E0343473|arthro-osteitis|arthroosteitis| +E0343474|arthro-series|arthroseries| +E0343475|atlantoaxoid|atlanto-axoid| +E0343486|Minthostachys verticillata|Mynthostachys verticillata| +E0343581|chess board|chessboard| +E0343602|Cestrum parquii|Cestrum parqui| +E0343614|church yard|churchyard| +E0343668|co-dominance|codominance| +E0343734|deer fly|deerfly| +E0343741|deicer|de-icer| +E0343818|Nematodirus fillicollis|Nematodirus filicollis| +E0343851|eye shade|eyeshade| +E0343860|fibrogastroscopic|fibro-gastroscopic| +E0343903|Polyodon spatula|Polyodon spathula| +E0343916|Glycyphagus destructor|Glyciphagus destructor| +E0344016|Achillea millefolium|Achillaea millefolium| +E0344044|Kerckring's fold|Kerkring's fold| +E0344066|latero-dorsal|laterodorsal| +E0344084|linguoalveolar|linguo-alveolar| +E0344111|Marseille|Marseilles| +E0344114|mento-posterior|mentoposterior| +E0344124|Tenia pisiformis|Taenia pisiformis| +E0344161|nucleus praeopticus medianus|nucleus preopticus medianus| +E0344177|Amaranthus viridis|Amaranthus viridus| +E0344179|Hibiscus sabdariffa|Hibiscus sabdarifa| +E0344189|myelo-optico-neuropathy|myeloopticoneuropathy| +E0344218|Bothrops schlegeli|Bothrops schlegelii| +E0344241|Knemidocoptes jamaicensis|Knemidokoptes jamaicensis| +E0344241|Cnemidocoptes jamaicensis|Knemidokoptes jamaicensis| +E0344242|Knemidocoptes mutans|Knemidokoptes mutans| +E0344242|Cnemidocoptes mutans|Knemidokoptes mutans| +E0344249|multi-axial|multiaxial| +E0344262|vesiculo-deferentography|vesiculodeferentography| +E0344263|orbito-frontal|orbitofrontal| +E0344538|sodium sulphacetamide|sodium sulfacetamide| +E0344575|Ajaja ajaja|Ajaia ajaja| +E0344650|galvanisers' poisoning|galvanizers' poisoning| +E0344651|zinc poisoning tremor|zinc-poisoning tremor| +E0344671|oculo-cardiac|oculocardiac| +E0344713|non-slip|nonslip| +E0344719|over-expansion|overexpansion| +E0344722|palmo-plantar|palmoplantar| +E0344724|palmodigital|palmo-digital| +E0344760|Labrus bergylta|Labrus berggylta| +E0344789|vibro-acoustic|vibroacoustic| +E0344790|vestibulo-spinal|vestibulospinal| +E0344799|nucleus praeopticus magnocellularis|nucleus praeopticus magnocellularis| +E0344800|ventro-posterior|ventroposterior| +E0344802|ventroposteromedial|ventro-postero-medial| +E0344803|ventrocranial|ventro-cranial| +E0344804|ventrocaudal|ventro-caudal| +E0344921|trichorhinophalangeal|tricho-rhino-phalangeal| +E0344922|folliculosebaceous|folliculo-sebaceous| +E0344928|toxicopharmacological|toxico-pharmacological| +E0344930|toxicometabolic|toxico-metabolic| +E0344931|toxiconutritional|toxico-nutritional| +E0344932|toxicobiological|toxico-biological| +E0344933|toxicoseptic|toxico-septic| +E0344934|toxicopathogenesis|toxico-pathogenesis| +E0344950|toxicokinetics|toxico-kinetics| +E0344987|Coregonus artedi|Coregonus artedii| +E0344993|longhead char|longhead charr| +E0345011|masto-retrosigmoid|mastoretrosigmoid| +E0345012|mastolymphocytic|masto-lymphocytic| +E0345029|aerodiameter|aero-diameter| +E0345038|atriobiventricular|atrio-biventricular| +E0345045|basoapical|baso-apical| +E0345048|biliodigestive|bilio-digestive| +E0345084|encephalo-cranial|encephalocranial| +E0345087|facio-cranial|faciocranial| +E0345089|faun-tail|faun tail| +E0345093|oesophago-aortal|esophago-aortal| +E0345094|esophago-visceral|esophagovisceral| +E0345094|oesophagovisceral|esophagovisceral| +E0345094|oesophago-visceral|esophagovisceral| +E0345095|esophago-vertebral|esophagovertebral| +E0345095|oesophagovertebral|esophagovertebral| +E0345095|oesophago-vertebral|esophagovertebral| +E0345096|esophago-mediastinal|esophagomediastinal| +E0345096|oesophagomediastinal|esophagomediastinal| +E0345096|oesophago-mediastinal|esophagomediastinal| +E0345101|gingivo-periodontal|gingivoperiodontal| +E0345102|gingivo-buccal|gingivobuccal| +E0345104|gingivo-periosteoplasty|gingivoperiosteoplasty| +E0345105|gingivo-periodontitis|gingivoperiodontitis| +E0345106|cerebro-placental|cerebroplacental| +E0345109|cysto-cystoplasty|cystocystoplasty| +E0345148|iridocorneal|irido-corneal| +E0345149|irido-retinochoroidal|iridoretinochoroidal| +E0345150|iridozonular|irido-zonular| +E0345196|kerato-dermal|keratodermal| +E0345198|labio-palatal|labiopalatal| +E0345199|labio-scrotal|labioscrotal| +E0345200|lacto-ovo vegetarian|lacto-ovo-vegetarian| +E0345202|lacto-bacillary|lactobacillary| +E0345208|mento-collical|mentocollical| +E0345209|M.I.T.|MIT| +E0345219|sino-auricular|sinoauricular| +E0345258|nevomelanocytic|nevo-melanocytic| +E0345267|Entameba chattoni|Entamoeba chattoni| +E0345270|Iodamoeba butschlii|Iodamoeba buetschlii| +E0345270|Iodoamoeba butschlii|Iodamoeba buetschlii| +E0345270|Iodoamoeba buetschlii|Iodamoeba buetschlii| +E0345283|osteo-meningeal|osteomeningeal| +E0345284|osteo-muscular|osteomuscular| +E0345325|Flavibacterium psychrophilum|Flavobacterium psychrophilum| +E0345342|roto-torsional|rototorsional| +E0345343|roto-vibrational|rotovibrational| +E0345344|rotorod|roto-rod| +E0345374|clock face|clockface| +E0345390|Saint-John's-wort|Saint John's wort| +E0345390|St. John's wort|Saint John's wort| +E0345390|St.-John's wort|Saint John's wort| +E0345390|St.-John's-wort|Saint John's wort| +E0345390|St. Johnswort|Saint John's wort| +E0345428|housebuilder|house builder| +E0345433|Tenia hyaenae|Taenia hyaenae| +E0345454|glucuronidase invitro test|glucuronidase in vitro test| +E0345466|leuko-araiosis|leukoaraiosis| +E0345466|leucoaraiosis|leukoaraiosis| +E0345466|leuco-araiosis|leukoaraiosis| +E0345499|rifle bird|riflebird| +E0345540|Rauwolfia serpentina|Rauvolfia serpentina| +E0345587|sheep shearer|sheepshearer| +E0345587|sheep-shearer|sheepshearer| +E0345600|sialo-glycolipid receptor|sialoglycolipid receptor| +E0345614|silver-gray rockfish|silvergray rockfish| +E0345625|Satureia boliviana|Satureja boliviana| +E0345678|Hemophilus somnus|Haemophilus somnus| +E0345731|sunn-hemp|sunn hemp| +E0345734|grey-rumped swiftlet|gray-rumped swiftlet| +E0345741|trophoblastic pseudotumor|trophoblastic pseudotumour| +E0345742|tachy-fibrillation|tachyfibrillation| +E0345829|thromboocclusive|thrombo-occlusive| +E0345830|thromboaspiration|thrombo-aspiration| +E0345831|thromboobliteration|thrombo-obliteration| +E0345838|Salmonella sankt-georg|Salmonella sanktgeorg| +E0345839|Salmonella tel-hashomer|Salmonella telhashomer| +E0345840|Salmonella tel-el-kebir|Salmonella telelkebir| +E0345875|wool-sorter|woolsorter| +E0345875|wool sorter|woolsorter| +E0345937|folliculitis cheloidalis nuchae|folliculitis keloidalis nuchae| +E0345939|sunn-hemp mosaic virus|sunn hemp mosaic virus| +E0345942|sunn-hemp mosaic tobamovirus|sunn hemp mosaic tobamovirus| +E0345965|spondylo-epiphyseal|spondyloepiphyseal| +E0345971|interpremolar distance|inter-premolar distance| +E0345974|pancreato-protective|pancreatoprotective| +E0345975|pulmono-protective|pulmonoprotective| +E0345976|pulmonoarterial|pulmono-arterial| +E0345977|pulmono-oesophageal|pulmono-esophageal| +E0345977|pulmonoesophageal|pulmono-esophageal| +E0345978|venovenous bypass|veno-venous bypass| +E0345996|ileoanal anastomosis|ileo-anal anastomosis| +E0345997|ileoileocolic|ileo-ileocolic| +E0345997|ileo-ileo-colic|ileo-ileocolic| +E0345998|colocolic anastomosis|colo-colic anastomosis| +E0345999|coloileocolonic|coloileo-colonic| +E0346000|coloileocolonic junction|coloileo-colonic junction| +E0346019|oxoalcohol|oxo-alcohol| +E0346036|quasimolecular|quasi-molecular| +E0346038|quasidirect|quasi-direct| +E0346039|quasipalindromic|quasi-palindromic| +E0346044|non carrier|noncarrier| +E0346044|non-carrier|noncarrier| +E0346060|lumbosacrocoxal|lumbo-sacro-coxal| +E0346066|sclero-choroid|sclerochoroid| +E0346067|sclero-choroidal|sclerochoroidal| +E0346068|sclero-trabeculectomy|sclerotrabeculectomy| +E0346069|sclero-embolisation|sclero-embolization| +E0346071|sclero-uveotumorectomy|sclerouveotumorectomy| +E0346072|sclero-corneomalacia|sclerocorneomalacia| +E0346076|telobox|telo-box| +E0346077|Schizo-saccharomyces pombe|Schizosaccharomyces pombe| +E0346089|trucut needle|tru-cut needle| +E0346129|Knemidokoptes laevis|Knemidocoptes laevis| +E0346129|Cnemidocoptes laevis|Knemidocoptes laevis| +E0346130|Knemidokoptes|Knemidocoptes| +E0346130|Cnemidocoptes|Knemidocoptes| +E0346135|urethrocolonic|urethro-colonic| +E0346136|urethrosigmoid|urethro-sigmoid| +E0346137|urethrosigmoid anastomosis|urethro-sigmoid anastomosis| +E0346159|unisite|uni-site| +E0346166|Helly's solution|Helly solution| +E0346221|Hemophilus agni|Haemophilus agni| +E0346229|alcelaphine herpesvirus-1|alcelaphine herpesvirus 1| +E0346230|ovine herpesvirus-2|ovine herpesvirus 2| +E0346249|amygdalohippocampal epilepsy|amygdalo-hippocampal epilepsy| +E0346250|anancastic personality disorder|anankastic personality disorder| +E0346254|foetus anideus|fetus anideus| +E0346308|foetal cranioclasis|fetal cranioclasis| +E0346309|foetal basiotripsy|fetal basiotripsy| +E0346310|foetal craniotomy|fetal craniotomy| +E0346322|Beal's auriculo-osteodysplasia syndrome|Beal's auriculoosteodysplasia syndrome| +E0346454|Salmonella new-brunswick|Salmonella newbrunswick| +E0346463|Entameba bubalis|Entamoeba bubalis| +E0346557|cockade naevus|cockade nevus| +E0346559|genetic co-dominance|genetic codominance| +E0346613|Amadina fasciata|Amadena fasciata| +E0346614|cut-throat finch|cutthroat finch| +E0346636|human botfly|human bot fly| +E0346636|human bot-fly|human bot fly| +E0346650|grey triggerfish|gray triggerfish| +E0346709|rabbit-foot-clover|rabbit foot clover| +E0346742|generalized haematopoietic hypoplasia|generalized hematopoietic hypoplasia| +E0346759|grey silky flycatcher|gray silky flycatcher| +E0346884|epicranial subaponeurotic haemorrhage|epicranial subaponeurotic hemorrhage| +E0346912|sulcus fimbrio-dentatus|sulcus fimbriodentatus| +E0346925|iridocorneal dysgenesis|irido-corneal dysgenesis| +E0346928|Knemidocoptes jamaicensis Turk|Knemidokoptes jamaicensis Turk| +E0346928|Cnemidocoptes jamaicensis Turk|Knemidokoptes jamaicensis Turk| +E0346930|Tomistoma schlegelii|Tomistoma schlegeli| +E0346982|cerebro-macular dystrophy|cerebromacular dystrophy| +E0346991|Hurter's spade-foot toad|Hurter's spadefoot toad| +E0346999|Van Buchem disease|van Buchem disease| +E0347017|chronic fibroedematous gingivitis|chronic fibro-edematous gingivitis| +E0347070|Tragelaphus angasii|Tragelaphus angasi| +E0347088|bell-clapper|bell clapper| +E0347090|bell-clapper deformity|bell clapper deformity| +E0347096|Leptosylla|Leptopsylla| +E0347180|direct mento-posterior position|direct mentoposterior position| +E0347181|right mento-posterior position|right mentoposterior position| +E0347182|left mento-posterior position|left mentoposterior position| +E0347184|extra-embryonic mesoblast|extraembryonic mesoblast| +E0347256|Pacinian tumour|Pacinian tumor| +E0347298|Ornythonyssus|Ornithonyssus| +E0347313|post-traumatic periosteoma|posttraumatic periosteoma| +E0347384|lodgepole pine|lodge-pole pine| +E0347406|jequirity bean|jequirty bean| +E0347531|oesophageal muscularis propria|esophageal muscularis propria| +E0347555|criss-cross prickleback|crisscross prickleback| +E0347576|horse-biting louse|horse biting louse| +E0347578|Entameba intestinalis|Entamoeba intestinalis| +E0347579|Entameba equi|Entamoeba equi| +E0347582|horse-bot fly|horse bot fly| +E0347582|horse botfly|horse bot fly| +E0347606|Greenland musk ox|Greenland muskox| +E0347617|nailfold haemorrhage|nailfold hemorrhage| +E0347642|noncommissioned officer|non-commissioned officer| +E0347644|non-nutritive sweetener|nonnutritive sweetener| +E0347647|non-jury trial|nonjury trial| +E0347651|non-slip surface|nonslip surface| +E0347652|non-urban society|nonurban society| +E0347653|non-visual photoreceptor|nonvisual photoreceptor| +E0347654|non-visual photosensitivity|nonvisual photosensitivity| +E0347658|supersqueeze oesophagus|supersqueeze esophagus| +E0347675|sulfur polypore|sulphur polypore| +E0347690|ventriculoauricular shunt|ventriculo-auricular shunt| +E0347691|vestibulo-spinal tract|vestibulospinal tract| +E0347692|fetal vibro-acoustic stimulation test|fetal vibroacoustic stimulation test| +E0347781|Israel's shunt hyperbilirubinaemia|Israel's shunt hyperbilirubinemia| +E0347791|oculodentodigital syndrome|oculo-dento-digital syndrome| +E0347791|oculo-dentodigital syndrome|oculo-dento-digital syndrome| +E0347791|oculodento-digital syndrome|oculo-dento-digital syndrome| +E0347805|French angel fish|French angelfish| +E0347808|grey potoo|gray potoo| +E0347849|Rossi syndrome|Rossi's syndrome| +E0347851|Guerin Stern syndrome|Guerin-Stern syndrome| +E0347852|myodystrophia foetalis deformans|myodystrophia fetalis deformans| +E0347853|pterygo-arthromyodysplasia syndrome|pterygoarthromyodysplasia syndrome| +E0347957|sulphacetamide allergy|sulfacetamide allergy| +E0347958|ophthalmic sodium sulphacetamide|ophthalmic sodium sulfacetamide| +E0347959|topical sodium sulphacetamide|topical sodium sulfacetamide| +E0347980|syringomyelia-anaesthesia syndrome|syringomyelia-anesthesia syndrome| +E0347982|self-stimulative behaviour|self-stimulative behavior| +E0347985|temporooccipital fasciculus|temporo-occipital fasciculus| +E0348029|desulphurisation treater|desulphurization treater| +E0348036|sulphur-breasted toucan|sulfur-breasted toucan| +E0348053|mega-unit|megaunit| +E0348100|non-vibratory|nonvibratory| +E0348105|pilliferous|piliferous| +E0348120|rat-bite|ratbite| +E0348120|rat bite|ratbite| +E0348122|re-box|rebox| +E0348167|zygomatico-auricular|zygomaticoauricular| +E0348178|mechanochemical|mechano-chemical| +E0348179|mechanoenergetic|mechano-energetic| +E0348266|thiosulfuric|thiosulphuric| +E0348303|long-tail|longtail| +E0348304|long-tailed|longtailed| +E0348316|mento-transverse|mentotransverse| +E0348317|methel|metel| +E0348482|Accipiter cooperii|Accipiter cooperi| +E0348485|sulfphocarbamide|sulfocarbamide| +E0348505|Callistemon citrinis|Callistemon citrinus| +E0348568|pneumocoele|pneumocele| +E0348596|Trichoderma longibrachiatum|Trichoderma longibrachyatum| +E0348646|Phyllotis darwinii|Phyllotis darwini| +E0348730|grey-backed tern|gray-backed tern| +E0348812|Xyphias|Xiphias| +E0348821|ventro-laterally|ventrolaterally| +E0348822|proximodistal|proximo-distal| +E0348834|pufferfish|puffer fish| +E0349006|Salm. arizonae|S. arizonae| +E0349040|L. bergylta|L. berggylta| +E0349369|Iodamoeba|Iodoamoeba| +E0349370|E. hartmannii|E. hartmanni| +E0349397|non-glucosuric|nonglucosuric| +E0349398|non-food|nonfood| +E0349399|non-sister|nonsister| +E0349402|oculo-auriculo-vertebral|oculoauriculovertebral| +E0349402|oculo-auriculovertebral|oculoauriculovertebral| +E0349402|oculo-auricolo-vertebral|oculoauriculovertebral| +E0349402|oculoauricolovertebral|oculoauriculovertebral| +E0349402|oculo-auricolovertebral|oculoauriculovertebral| +E0349403|oculo-dento-digital|oculodentodigital| +E0349403|oculodento-digital|oculodentodigital| +E0349403|oculo-dentodigital|oculodentodigital| +E0349405|oculodento-osseous|oculo-dento-osseous| +E0349405|oculodentoosseous|oculo-dento-osseous| +E0349407|tricho-oculodermovertebral|tricho-oculo-dermo-vertebral| +E0349408|oculo-mandibular|oculomandibular| +E0349409|meningo-oculofacial|meningo-oculo-facial| +E0349422|Probosciger|Probosiger| +E0349425|pleuro-esophageal|pleuroesophageal| +E0349425|pleuro-oesophageal|pleuroesophageal| +E0349425|pleurooesophageal|pleuroesophageal| +E0349426|biliopleurobronchial|bilio-pleuro-bronchial| +E0349436|pharyngo-conjunctival|pharyngoconjunctival| +E0349450|velo-cardio-facial|velocardiofacial| +E0349452|ventriculo-infundibular|ventriculoinfundibular| +E0349453|ventriculoauricular|ventriculo-auricular| +E0349459|red whiskered|red-whiskered| +E0349460|white whiskered|white-whiskered| +E0349466|telerehabilitation|tele-rehabilitation| +E0349475|mesiopalatal|mesio-palatal| +E0349476|mesiodistally|mesio-distally| +E0349478|morphomolecular|morpho-molecular| +E0349479|morphogenotype|morpho-genotype| +E0349480|chemo-architecture|chemoarchitecture| +E0349481|myelolymphatic|myelo-lymphatic| +E0349484|ophthalmosphygmographic|ophthalmo-sphygmographic| +E0349485|ophthalmobrachial|ophthalmo-brachial| +E0349488|onychopachydermoperiostitis|onycho-pachydermo-periostitis| +E0349495|epididymotesticular tuberculosis|epididymo-testicular tuberculosis| +E0349499|waterhorse|water-horse| +E0349511|villagisation|villagization| +E0349513|vice-admiral|vice admiral| +E0349576|trap door|trapdoor| +E0349595|triallist|trialist| +E0349623|terpolymerisation|terpolymerization| +E0349651|tectonise|tectonize| +E0349652|tectonisation|tectonization| +E0349662|rideable|ridable| +E0349663|rideability|ridability| +E0349677|rhematise|rhematize| +E0349678|rhematisation|rhematization| +E0349690|resole|resol| +E0349749|nodulise|nodulize| +E0349750|nodulisation|nodulization| +E0349763|orangerie|orangery| +E0349770|orchella|orchilla| +E0349771|organisable|organizable| +E0349772|organisability|organizability| +E0350160|grey-rumped|gray-rumped| +E0350204|Erwinia stewartii|Erwinia stuartii| +E0350262|periaquaductal|periacqueductal| +E0350307|post-infectious|postinfectious| +E0350345|Van Bogaert|van Bogaert| +E0350354|post-laminectomy|postlaminectomy| +E0350371|Bancroftian|bancroftian| +E0350396|haemorenal|hemorenal| +E0350528|Pacchionian|pacchionian| +E0350530|intra-occipital|intraoccipital| +E0350651|olivo-cerebellar|olivocerebellar| +E0350688|white-spotted|whitespotted| +E0350698|immuno-electron|immunoelectron| +E0350705|gastro-omental|gastroomental| +E0350708|extra-intracranial|extraintracranial| +E0350709|extra-intracranial artery bypass|extraintracranial artery bypass| +E0350841|Zygadenus|Zigadenus| +E0350869|Scatophaga|Scathophaga| +E0351136|reticular fibre|reticular fiber| +E0351142|antihaemorrhagic factor|antihemorrhagic factor| +E0351193|Vitamin-A acid|Vitamin A acid| +E0351221|Viscogel|Visco-gel| +E0351223|sternoxiphoid|sterno-xiphoid| +E0351230|anti-idiotype antibody|antiidiotype antibody| +E0351236|haemoglobin S|hemoglobin S| +E0351251|haemoglobin F|hemoglobin F| +E0351266|albinism I|albinism 1| +E0351277|beta-adrenergic receptor|beta adrenergic receptor| +E0351285|Ojibway|Ojibwa| +E0351292|Bence Jones proteinuria|Bence-Jones proteinuria| +E0351319|iron sulphate|iron sulfate| +E0351391|bacterial haemolysin|bacterial hemolysin| +E0351410|haemoglobin C|hemoglobin C| +E0351416|transcatheter arterial chemoembolisation|transcatheter arterial chemoembolization| +E0351448|zinc oxide-eugenol dental cement|zinc oxide eugenol dental cement| +E0351470|neutralising antibody|neutralizing antibody| +E0351486|transverse fibre|transverse fiber| +E0351490|cholera entero-toxin|cholera enterotoxin| +E0351491|cytochrome c1|cytochrome C1| +E0351491|cytochrome c-1|cytochrome C1| +E0351505|triamcinolonehexacetonide|triamcinolone hexacetonide| +E0351560|palmitoyl thioglycollate|palmitoyl thioglycolate| +E0351595|haemoglobin E|hemoglobin E| +E0351609|sodium sulfite|sodium sulphite| +E0351613|allyl isothiocyanate|allylisothiocyanate| +E0351634|haemoglobin D|hemoglobin D| +E0351636|prolylhydroxylase|prolyl hydroxylase| +E0351637|haemoglobin H|hemoglobin H| +E0351719|haemagglutinating virus|hemagglutinating virus| +E0351733|deoxygenated haemoglobin|deoxygenated hemoglobin| +E0351787|Trichophyton schoenleinii|Trichophyton schonleinii| +E0351831|lysylhydroxylase|lysyl hydroxylase| +E0351837|ma-huang|ma huang| +E0351837|mahuang|ma huang| +E0351840|postestablishment|post-establishment| +E0351950|problematisation|problematization| +E0351951|problematise|problematize| +E0352330|aortomitral|aorto-mitral| +E0352523|Cryptotermes dudlyi|Cryptotermes dudleyi| +E0352530|tubuloglandular|tubulo-glandular| +E0352531|tubulofollicular|tubulo-follicular| +E0352533|cervicosacral|cervico-sacral| +E0352534|cervicocraniofacial|cervico-craniofacial| +E0352609|Calamagrostis epigeios|Calamagrostis epigejos| +E0352837|Spondias cytherea|Spondias citherea| +E0353183|Cryptochiton stellerii|Cryptochiton stelleri| +E0353378|Latrodectus mactans tredecimguttatus|Latrodectus mactans tredecemguttatus| +E0353483|Loligo forbesi|Loligo forbesii| +E0353882|Acremonium potronii|Acremonium potroni| +E0353888|Acremonium roseo-griseum|Acremonium roseogriseum| +E0353889|Cephalosporium roseo-griseum|Cephalosporium roseogriseum| +E0354074|allo-erotism|alloerotism| +E0354078|cost-effective|cost effective| +E0354078|costeffective|cost effective| +E0354081|normolipaemic|normolipemic| +E0354082|Roussy Levy syndrome|Roussy-Levy syndrome| +E0354083|Chiari Frommel syndrome|Chiari-Frommel syndrome| +E0354092|North|north| +E0354094|anaesthetic|anesthetic| +E0354097|Swiss type agammaglobulinaemia|Swiss type agammaglobulinemia| +E0354097|Swiss-type agammaglobulinemia|Swiss type agammaglobulinemia| +E0354097|Swiss-type agammaglobulinaemia|Swiss type agammaglobulinemia| +E0354098|non-pharmacological|nonpharmacological| +E0354100|hyphaemia|hyphemia| +E0354103|dermagraphic|dermographic| +E0354110|alkalisation|alkalization| +E0354117|haemotropic|hemotropic| +E0354117|hemotrophic|hemotropic| +E0354117|haemotrophic|hemotropic| +E0354121|sarcosine dithiocarbamate|sarcosinedithiocarbamate| +E0354127|rivinian|Rivinian| +E0354132|semeiological|semiological| +E0354177|Rauvolfia|Rauwolfia| +E0354211|Spirochaete|Spirochaeta| +E0354497|LymphoSCAN|Lymphoscan| +E0354515|human antimouse antibody|human anti-mouse antibody| +E0354530|anti-angiogenesis|antiangiogenesis| +E0354531|multi-lineage|multilineage| +E0354532|imageable|imageable| +E0354540|nonoligodendroglial|non-oligodendroglial| +E0354543|non-alcoholic steatohepatitis|nonalcoholic steatohepatitis| +E0354547|post-remission|postremission| +E0354548|post-remission|postremission| +E0354550|non-secretory|nonsecretory| +E0354553|neuro-immune|neuroimmune| +E0354564|socio-economically|socioeconomically| +E0354572|non-drug|nondrug| +E0354587|video-fluoroscopy|videofluoroscopy| +E0354596|semi-annually|semiannually| +E0354603|pre-consolidation|preconsolidation| +E0354604|non-directive|nondirective| +E0354605|non-constitutional|nonconstitutional| +E0354610|non-social|nonsocial| +E0354628|wrist band|wristband| +E0354628|wrist-band|wristband| +E0354631|unco-operativeness|uncooperativeness| +E0354657|pre-adolescence|preadolescence| +E0354679|non-exudative|nonexudative| +E0354681|non-rapid|nonrapid| +E0354694|Tarheel|tarheel| +E0354702|pro-atrial|proatrial| +E0354704|post-cricoid|postcricoid| +E0354705|post-heparin|postheparin| +E0354717|hydroxyindole acetic|hydroxyindolacetic| +E0354717|hydroxy-indoleacetic|hydroxyindolacetic| +E0354720|hematocytopaenia|hematocytopenia| +E0354722|oligo-ovulation|oligoovulation| +E0354733|keto-acid|ketoacid| +E0354736|iso-effect|isoeffect| +E0354737|intra-site|intrasite| +E0354739|inter-arch|interarch| +E0354770|battle ground|battleground| +E0354772|apple sauce|applesauce| +E0354788|birch wood|birchwood| +E0354793|antioxidant response element|antioxidant-response element| +E0354794|androgen response element|androgen-response element| +E0354795|anti-vaccinia|antivaccinia| +E0354799|sun bed|sunbed| +E0354812|check-out|checkout| +E0354851|non-bone|nonbone| +E0354859|uncorrectible|uncorrectable| +E0354869|tumourectomy|tumorectomy| +E0354887|tumour necrosis factor receptor|tumor necrosis factor receptor| +E0354901|Anderson Fabry disease|Anderson-Fabry disease| +E0354902|chemo-sensory protein|chemosensory protein| +E0354904|chemo-selectivity|chemoselectivity| +E0354938|age related macular degeneration|age-related macular degeneration| +E0354971|trans-muconic acid|transmuconic acid| +E0354972|trans-muconic|transmuconic| +E0354975|rehab.|rehab| +E0354977|pre-ejection period index|preejection period index| +E0354985|low-density lipoprotein cholesterol|low density lipoprotein cholesterol| +E0354990|high frequency oscillatory ventilation|high-frequency oscillatory ventilation| +E0354993|granulocyte colony stimulating factor|granulocyte colony-stimulating factor| +E0355027|autologous stem cell transplantation|autologous stem-cell transplantation| +E0355031|antibody dependent cellular phagocytosis|antibody-dependent cellular phagocytosis| +E0355040|split thickness skin graft|split-thickness skin graft| +E0355056|Pancoast tumour|Pancoast tumor| +E0355095|non-familial|nonfamilial| +E0355108|tru-cut biopsy|trucut biopsy| +E0355109|clinicopathological|clinico-pathological| +E0355111|sinocranial|sino-cranial| +E0355116|Omenn's syndrome|Omenn syndrome| +E0355128|C-GAS|CGAS| +E0355134|high dose methylprednisolone|high-dose methylprednisolone| +E0355145|histo-enzymic|histoenzymic| +E0355172|pharmaco-refractory|pharmacorefractory| +E0355173|pharmaco-penile|pharmacopenile| +E0355174|pharmaco-toxicological|pharmacotoxicological| +E0355201|esophagobronchogenic|esophago-bronchogenic| +E0355202|esophagopericardial|esophago-pericardial| +E0355203|esophagopulmonary|esophago-pulmonary| +E0355203|oesophago-pulmonary|esophago-pulmonary| +E0355203|oesophagopulmonary|esophago-pulmonary| +E0355204|hydrops foetalis syndrome|hydrops fetalis syndrome| +E0355207|Devic syndrome|Devic's syndrome| +E0355215|proconvulsive|pro-convulsive| +E0355241|cortico-basal|corticobasal| +E0355253|cross sectional|cross-sectional| +E0355273|amphotericin-A|amphotericin A| +E0355301|inflammatory myofibroblastic tumour|inflammatory myofibroblastic tumor| +E0355308|Askin's tumour|Askin's tumor| +E0355309|Askin tumour|Askin tumor| +E0355342|non-melanomatous|nonmelanomatous| +E0355383|anti-seizure|antiseizure| +E0355388|chronic myelomonocytic leukaemia|chronic myelomonocytic leukemia| +E0355388|chronic myelomonocytic leucemia|chronic myelomonocytic leukemia| +E0355388|chronic myelomonocytic leucaemia|chronic myelomonocytic leukemia| +E0355392|chimaerical|chimerical| +E0355402|cafe-au-lait|cafe au lait| +E0355403|cafe-au-lait macule|cafe au lait macule| +E0355405|venoarteriolar|veno-arteriolar| +E0355419|non-bullous|nonbullous| +E0355423|lympho-cutaneous|lymphocutaneous| +E0355437|pain killer|painkiller| +E0355443|non-black|nonblack| +E0355455|abacavir sulphate|abacavir sulfate| +E0355464|deaza-aminopterin|deazaaminopterin| +E0355477|melan-a|melan-A| +E0355478|melan-b|melan-B| +E0355479|melan-c|melan-C| +E0355480|non-decreasing|nondecreasing| +E0355516|pro-apoptotic|proapoptotic| +E0355533|Daunoxome|DaunoXome| +E0355598|breathalyzer|Breathalyzer| +E0355598|breathalyser|Breathalyzer| +E0355618|switch-back|switchback| +E0355623|supra-threshold|suprathreshold| +E0355635|pre-molded|premolded| +E0355638|guard cell protoplast|guard-cell protoplast| +E0355642|human antihuman antibody|human anti-human antibody| +E0355651|clinico-hematologic|clinicohematologic| +E0355652|clinico-radiologic|clinicoradiologic| +E0355656|ratable|rateable| +E0355666|sulfatoxymelatonin|sulphatoxymelatonin| +E0355677|pre-deposit|predeposit| +E0355683|nitro-tyrosine|nitrotyrosine| +E0355687|Nezelof syndrome|Nezelof's syndrome| +E0355695|non-reactivity|nonreactivity| +E0355705|vestibulovegetative|vestibulo-vegetative| +E0355717|posteriotemporal|posterio-temporal| +E0355718|posterioanterior|posterio-anterior| +E0355719|posteriosuperior|posterio-superior| +E0355720|posteriolateral|posterio-lateral| +E0355721|posteriointerior|posterio-interior| +E0355722|posteriocortical|posterio-cortical| +E0355723|posteriomedial|posterio-medial| +E0355724|posteriophrenic|posterio-phrenic| +E0355739|French-Canadian|French Canadian| +E0355740|French-Canadian|French Canadian| +E0355745|hyperpipecolic acidaemia|hyperpipecolic acidemia| +E0355746|hyperpipecolataemia|hyperpipecolatemia| +E0355791|sociopsychological|socio-psychological| +E0355794|cerviconuchal|cervico-nuchal| +E0355795|cervicoisthmic|cervico-isthmic| +E0355796|cervicoisthmic pregnancy|cervico-isthmic pregnancy| +E0355797|cervicosternotomic|cervico-sternotomic| +E0355827|quasitripodal|quasi-tripodal| +E0355828|quasiperiodic|quasi-periodic| +E0355830|quasinative|quasi-native| +E0355840|corticoperipheral|cortico-peripheral| +E0355841|corticovenous|cortico-venous| +E0355843|corticorubrospinal|cortico-rubrospinal| +E0355844|corticoadrenal|cortico-adrenal| +E0355845|corticothalamostriatal|cortico-thalamostriatal| +E0355846|corticocerebellar|cortico-cerebellar| +E0355852|fluoromethemoglobin|fluoro-methemoglobin| +E0355854|fluoroclomiphene|fluoro-clomiphene| +E0355855|fluoronorchloroepibatidine|fluoro-norchloroepibatidine| +E0355856|fluoronorhydroxymetronidazole|fluoro-norhydroxymetronidazole| +E0355857|Fluoro-Red|fluoro-red| +E0355858|Fluoro-Green|fluoro-green| +E0355859|Fluoro-Ruby|fluoro-ruby| +E0355863|para-aminohippurate|paraaminohippurate| +E0355863|para-amino-hippurate|paraaminohippurate| +E0355871|subfactor|sub-factor| +E0355872|type A behaviour pattern|type A behavior pattern| +E0355875|non-veteran|nonveteran| +E0355878|omnidirectional|omni-directional| +E0355882|nonrevealed|non-revealed| +E0355884|mucoregulatory|muco-regulatory| +E0355885|mucoelastic|muco-elastic| +E0355887|nonweight-related|non-weight-related| +E0355889|nontumor-associated|non-tumor-associated| +E0355889|non-tumour-associated|non-tumor-associated| +E0355889|nontumour-associated|non-tumor-associated| +E0355892|crossdisciplinary|cross-disciplinary| +E0355903|Bechterev disease|Bechterew disease| +E0355903|Bekhterew disease|Bechterew disease| +E0355903|Bekhterev disease|Bechterew disease| +E0355909|aceclidin|aceclidine| +E0355915|Cushing syndrome|Cushing's syndrome| +E0355942|esthetic|aesthetic| +E0355949|amenorrhoeic|amenorrheic| +E0355960|chorioid|choroid| +E0355969|argyrophile|argyrophil| +E0356079|aetiological|etiological| +E0356095|haematolytic|hematolytic| +E0356100|iliac|ileac| +E0356103|leucolytic|leukolytic| +E0356130|somaethesis|somesthesis| +E0356131|Jugoslavian|Yugoslavian| +E0356132|Jugoslavian|Yugoslavian| +E0356147|tachy-systolic|tachysystolic| +E0356184|semeiologic|semiologic| +E0356210|aesthesiometrical|esthesiometrical| +E0356214|kinaesthesiometrical|kinesthesiometrical| +E0356220|non-parasitical|nonparasitical| +E0356227|immunohaematological|immunohematological| +E0356241|episcopalian|Episcopalian| +E0356242|episcopalian|Episcopalian| +E0356250|piezo electrical|piezoelectrical| +E0356253|radio-immunologic|radioimmunologic| +E0356253|radio immunologic|radioimmunologic| +E0356256|non-immunological|nonimmunological| +E0356262|anesthaesiologic|anesthesiologic| +E0356287|neuro-otological|neurotological| +E0356288|non-cyclical|noncyclical| +E0356291|non-metrical|nonmetrical| +E0356303|histo-cytological|histocytological| +E0356314|acid- and alcohol-fast bacillus|acid and alcohol-fast bacillus| +E0356329|aorto-bifemoral graft|aortobifemoral graft| +E0356345|acute ischaemic optic neuropathy|acute ischemic optic neuropathy| +E0356347|autoimmune neonatal thrombocytopaenia|autoimmune neonatal thrombocytopenia| +E0356358|bowel disfunction|bowel dysfunction| +E0356366|common acute lymphoblastic leukaemia|common acute lymphoblastic leukemia| +E0356366|common acute lymphoblastic leucemia|common acute lymphoblastic leukemia| +E0356366|common acute lymphoblastic leucaemia|common acute lymphoblastic leukemia| +E0356378|antibody dependent cell cytotoxicity|antibody-dependent cell cytotoxicity| +E0356379|acantholytic dyskeratotic epidermal naevus|acantholytic dyskeratotic epidermal nevus| +E0356382|aldosterone-stimulating factor|aldosterone stimulating factor| +E0356401|pelvi-ureteric obstruction|pelviureteric obstruction| +E0356404|post-vagotomy diarrhoea|post-vagotomy diarrhea| +E0356416|right occipito-posterior position|right occipitoposterior position| +E0356420|right sacro-posterior position|right sacroposterior position| +E0356452|semiskimmed|semi-skimmed| +E0356453|semiskimmed milk|semi-skimmed milk| +E0356454|semiskimmed milk powder|semi-skimmed milk powder| +E0356477|acute myelomonocytic leukaemia|acute myelomonocytic leukemia| +E0356477|acute myelomonocytic leucemia|acute myelomonocytic leukemia| +E0356477|acute myelomonocytic leucaemia|acute myelomonocytic leukemia| +E0356482|aorto-pulmonary window|aortopulmonary window| +E0356484|alcohol-related birth defect|alcohol related birth defect| +E0356580|micro-technique|microtechnique| +E0356627|pillow case|pillowcase| +E0356664|in-turned|inturned| +E0356723|non-physical|nonphysical| +E0356766|non-volatile|nonvolatile| +E0356787|finger stall|fingerstall| +E0356795|yeast-like|yeastlike| +E0356861|boat builder|boatbuilder| +E0356879|non-occurrence|nonoccurrence| +E0356883|fish hook|fishhook| +E0356926|eye shield|eyeshield| +E0356950|re-manipulation|remanipulation| +E0356951|re-manipulate|remanipulate| +E0356988|Engraulis encrasicholus|Engraulis encrasicolus| +E0356990|dress-making|dressmaking| +E0357001|hydrotropic|hydratropic| +E0357002|hydrotropic acid|hydratropic acid| +E0357100|organo-mercury|organomercury| +E0357143|paper hanger|paperhanger| +E0357149|non-ferrous|nonferrous| +E0357152|organo-arsenic|organoarsenic| +E0357375|paraaminobenzoic|para-aminobenzoic| +E0357421|saviour|savior| +E0357431|non-skid|nonskid| +E0357448|over-exercise|overexercise| +E0357468|dispituitarism|dyspituitarism| +E0357477|non-relaxation|nonrelaxation| +E0357500|non-metallic|nonmetallic| +E0357501|log-rolling|logrolling| +E0357543|acetonyl acetone|acetonylacetone| +E0357551|non-pharmaceutical|nonpharmaceutical| +E0357581|Arapahoe|Arapaho| +E0357617|non-thoracic|nonthoracic| +E0357640|semi-soft|semisoft| +E0357651|satanism|Satanism| +E0357652|pre-cut|precut| +E0357672|in-shoe|inshoe| +E0357725|snow-slide|snowslide| +E0357733|house-owner|houseowner| +E0357733|house owner|houseowner| +E0357737|coleader|co-leader| +E0357740|wraparound|wrap-around| +E0357745|preapproval|pre-approval| +E0357746|preapprove|pre-approve| +E0357752|high-top|hightop| +E0357755|re-try|retry| +E0357761|conveyor|conveyer| +E0357766|blow-torch|blowtorch| +E0357766|blow torch|blowtorch| +E0357771|post-lenticular|postlenticular| +E0357773|lamppost|lamp-post| +E0357773|lamp post|lamp-post| +E0357777|presbyterianism|Presbyterianism| +E0357792|non-glare|nonglare| +E0357809|cedar wood|cedarwood| +E0357867|wash cloth|washcloth| +E0358015|Parmesan|parmesan| +E0358186|non-proprietary|nonproprietary| +E0358188|African grey parrot|African gray parrot| +E0358235|pattern-maker|patternmaker| +E0358235|pattern maker|patternmaker| +E0358244|wind-blown|windblown| +E0358307|benzylcyanide|benzyl cyanide| +E0358312|ammonium sulfide|ammonium sulphide| +E0358493|Athapascan|Athabascan| +E0358494|Athapascan|Athabascan| +E0358550|Cheviot|cheviot| +E0358566|Hazara haemorrhagic fever|Hazara hemorrhagic fever| +E0358648|neurine|neurin| +E0358652|monoamino-carboxy-dihydro-borane|monoaminocarboxydihydroborane| +E0358659|fumaryldithranol|fumaryl dithranol| +E0358674|string-like|stringlike| +E0358722|pilsener|pilsner| +E0358837|croceine|crocein| +E0358842|hyper-oxygenate|hyperoxygenate| +E0358873|stellite|Stellite| +E0358982|Cephalophus maxwellii|Cephalophus maxwelli| +E0358983|Cephalophus silvicultor|Cephalophus sylvicultor| +E0359275|Jacquard|jacquard| +E0359301|champak|champac| +E0359305|loggats|loggets| +E0359318|assignor|assigner| +E0359320|temporalise|temporalize| +E0359333|labialise|labialize| +E0359334|labialisation|labialization| +E0359362|worm-like|wormlike| +E0359367|polygamise|polygamize| +E0359385|harbourless|harborless| +E0359424|Faroese|Faeroese| +E0359425|Faroese|Faeroese| +E0359434|panier|pannier| +E0359474|demonise|demonize| +E0359475|demonisation|demonization| +E0359480|non-powered|nonpowered| +E0359559|Ross' violet touraco|Ross's violet touraco| +E0359560|Hartlaub's turaco|Hartlaub's touraco| +E0359560|Hartlaub's turacou|Hartlaub's touraco| +E0359567|Anabaptism|anabaptism| +E0359578|Papiamentu|Papiamento| +E0359648|Fuchou|Foochow| +E0359648|Fuzhou|Foochow| +E0359703|river bed|riverbed| +E0359719|Mohave Desert|Mojave Desert| +E0359776|autohaemolysis|autohemolysis| +E0359820|church-goer|churchgoer| +E0359821|church-going|churchgoing| +E0359826|co-education|coeducation| +E0359827|co-educationally|coeducationally| +E0359880|evil-doer|evildoer| +E0359883|fault-finder|faultfinder| +E0359917|humourless|humorless| +E0359918|humourlessness|humorlessness| +E0359945|marvellousness|marvelousness| +E0360016|brunet|brunette| +E0360017|brunet|brunette| +E0360020|bunco|bunko| +E0360033|calif|caliph| +E0360085|crossrefer|cross-refer| +E0360086|cross-hatch|crosshatch| +E0360087|cross-hatch|crosshatch| +E0360167|hair-splitter|hairsplitter| +E0360168|hair-splitting|hairsplitting| +E0360169|guild hall|guildhall| +E0360231|Karma|karma| +E0360281|mouldiness|moldiness| +E0360334|pedlar|peddler| +E0360353|Pharisee|pharisee| +E0360366|pole vault|pole-vault| +E0360437|mammonism|Mammonism| +E0360438|mammon|Mammon| +E0360450|Praetorian|praetorian| +E0360491|sizeableness|sizableness| +E0360493|sizeably|sizably| +E0360545|torch bearer|torchbearer| +E0360751|predacious|predaceous| +E0360752|predaciousness|predaceousness| +E0360765|co-authorship|coauthorship| +E0360766|co-author|coauthor| +E0360767|co-author|coauthor| +E0360798|doggie|doggy| +E0360806|play time|playtime| +E0360810|musicalisation|musicalization| +E0360811|musicalise|musicalize| +E0360850|ropey|ropy| +E0360854|theologise|theologize| +E0360855|theologiser|theologizer| +E0361022|intervenor|intervener| +E0361046|Turcoman|Turkoman| +E0361047|Turcoman|Turkoman| +E0361073|frowzy|frowsy| +E0361382|polypnoea|polypnea| +E0361984|caper-bush|caper bush| +E0361984|caperbush|caper bush| +E0361987|cantharos|kantharos| +E0361988|carabidan|carabid| +E0361998|carpinchoe|carpincho| +E0362002|alder carr forest|Alder carr forest| +E0362003|carragheen|carrageen| +E0362004|casemaker|case-maker| +E0362006|case-making clothes moth|casemaking clothes moth| +E0362019|van Cauter|Van Cauter| +E0362025|cerato-glossus|ceratoglossus| +E0362027|cebadilla|cevadilla| +E0362039|methylchavicol|methyl chavicol| +E0362045|Sidalcea malviflora|Sidalcea malvaeflora| +E0362052|chichling|chickling| +E0362056|chincapin|chinquapin| +E0362060|Escontria quiotilla|Escontria chiotilla| +E0362061|Myrtillocactus quiotilla|Myrtillocactus chiotilla| +E0362065|cheiroped|cheiropod| +E0362065|chiropod|cheiropod| +E0362066|Chit|CHIT| +E0362067|CHIT|chit| +E0362162|cole-seed|coleseed| +E0362177|Salvia Miltiorrhiza Composita|Salvia miltiorrhiza composita| +E0362177|salvia miltiorrhiza composita|Salvia miltiorrhiza composita| +E0362183|Ginkgo Biloba Composita|ginkgo biloba composita| +E0362195|cone-nose|conenose| +E0362213|coral-root|coralroot| +E0362244|cowtail sting-ray|cowtail stingray| +E0362245|cow-tail|cowtail| +E0362246|crab-eater seal|crabeater seal| +E0362251|crab-eater|crabeater| +E0362287|cranio-vertebral|craniovertebral| +E0362288|Cranio-vertebral joint|Craniovertebral joint| +E0362299|cric|CRIC| +E0362307|crook-neck|crookneck| +E0362309|crook-neck squash|crookneck squash| +E0362310|cross-bow|crossbow| +E0362342|cuckoo-pint|cuckoopint| +E0362359|cunjeboi|cunjevoi| +E0362359|cunjeboy|cunjevoi| +E0362367|Curr|curr| +E0362393|DAH|dah| +E0362402|Damask rose|damask rose| +E0362404|Damask violet|damask violet| +E0362405|Damask|damask| +E0362410|damsel-fly|damselfly| +E0362452|Dang|dang| +E0362462|dasheen mosaic virus|Dasheen mosaic virus| +E0362517|dewberry|dew-berry| +E0362525|DhaK|dhaK| +E0362525|DHAK|dhaK| +E0362528|Palas|palas| +E0362528|pulas|palas| +E0362531|Dharma|dharma| +E0362532|Dharmakaya|dharmakaya| +E0362533|Dharmasastra|dharmasastra| +E0362534|Dharmasutra|dharmasutra| +E0362555|Diagnostic Interview for Borderlines|diagnostic interview for borderlines| +E0362574|Didymus|didymus| +E0362708|Cuscuta europea|Cuscuta europaea| +E0362726|Dong|dong| +E0362729|dingdong|ding-dong| +E0362730|dingdong|ding-dong| +E0362732|dingdong|ding-dong| +E0362752|Doree|doree| +E0362752|dory|doree| +E0362754|dorea|doria| +E0362760|Streptomyces albidiflavus|Streptomyces albidoflavus| +E0362764|dorsale|dorsal| +E0362898|cha-cha-cha|cha-cha| +E0362899|cha-cha-cha|cha-cha| +E0362948|DIB|dib| +E0362950|DICH|dich| +E0362953|dipropinyl|dipropargyl| +E0362957|re-accelerate|reaccelerate| +E0362964|reacclimatise|reacclimatize| +E0362965|reacclimatisation|reacclimatization| +E0362992|reascendent|reascendant| +E0362994|reascendency|reascendancy| +E0363000|re-attainment|reattainment| +E0363005|reauthorisation|reauthorization| +E0363006|reauthorise|reauthorize| +E0363042|recentralisation|recentralization| +E0363043|recentralise|recentralize| +E0363066|recolour|recolor| +E0363067|recolouration|recoloration| +E0363068|recoloured|recolored| +E0363076|reconceptualisation|reconceptualization| +E0363112|redistil|redistill| +E0363131|reeligible|re-eligible| +E0363133|reemit|re-emit| +E0363134|reemission|re-emission| +E0363135|reemployment|re-employment| +E0363136|reemploy|re-employ| +E0363137|reencounter|re-encounter| +E0363138|reencounter|re-encounter| +E0363139|reendow|re-endow| +E0363140|reendowment|re-endowment| +E0363141|reenergization|re-energization| +E0363141|re-energisation|re-energization| +E0363141|reenergisation|re-energization| +E0363142|re-energise|re-energize| +E0363142|reenergize|re-energize| +E0363142|reenergise|re-energize| +E0363145|reengrave|re-engrave| +E0363151|reenrollment|re-enrollment| +E0363151|re-enrolment|re-enrollment| +E0363151|reenrolment|re-enrollment| +E0363152|re-enrol|re-enroll| +E0363152|reenroll|re-enroll| +E0363152|reenrol|re-enroll| +E0363153|reenthrone|re-enthrone| +E0363154|reenthronement|re-enthronement| +E0363155|reequip|re-equip| +E0363156|reequipment|re-equipment| +E0363157|reerect|re-erect| +E0363158|reerection|re-erection| +E0363159|reescalate|re-escalate| +E0363160|reescalation|re-escalation| +E0363161|reestimation|re-estimation| +E0363162|reestimate|re-estimate| +E0363163|reestimate|re-estimate| +E0363164|reexperience|re-experience| +E0363165|reexperience|re-experience| +E0363166|reexport|re-export| +E0363167|reexportation|re-exportation| +E0363168|reexport|re-export| +E0363222|rehumanisation|rehumanization| +E0363223|rehumanise|rehumanize| +E0363224|rehypnotise|rehypnotize| +E0363246|reinstal|reinstall| +E0363249|reinstitutionalise|reinstitutionalize| +E0363257|rejudgment|rejudgement| +E0363270|relicence|relicense| +E0363276|reliquify|reliquefy| +E0363286|rematerialisation|rematerialization| +E0363287|rematerialise|rematerialize| +E0363303|renationalise|renationalize| +E0363304|renationalisation|renationalization| +E0363336|repopularise|repopularize| +E0363337|repopularisation|repopularization| +E0363338|repressurise|repressurize| +E0363339|repressurisation|repressurization| +E0363341|reprivatise|reprivatize| +E0363343|reprivatisation|reprivatization| +E0363361|re-site|resite| +E0363369|re-register|reregister| +E0363370|re-registration|reregistration| +E0363372|re-register|reregister| +E0363373|re-regulate|reregulate| +E0363374|re-regulation|reregulation| +E0363375|rerelease|re-release| +E0363376|rerelease|re-release| +E0363377|reremind|re-remind| +E0363378|rerepeat|re-repeat| +E0363380|rereview|re-review| +E0363381|rereview|re-review| +E0363382|rerig|re-rig| +E0363383|reroof|re-roof| +E0363743|Leukaemia cutis|Leukemia cutis| +E0363743|Leucaemia cutis|Leukemia cutis| +E0363743|Leucemia cutis|Leukemia cutis| +E0363744|leukaemid|leukemid| +E0364115|Lophura swinhoei|Lophura swinhoeii| +E0364115|Lophura swinhoii|Lophura swinhoeii| +E0364221|Malar lymphnode|Malar lymph node| +E0364271|Malethamer|malethamer| +E0364368|longsightedness|long sightedness| +E0364368|long-sightedness|long sightedness| +E0364370|long-sighted|long sighted| +E0364602|membranous dysmenorrhoea|membranous dysmenorrhea| +E0364612|meobentine sulphate|meobentine sulfate| +E0365060|naevus sebaceus of Jadassohn|nevus sebaceus of Jadassohn| +E0365063|neckar tree|nicker tree| +E0365063|nickar tree|nicker tree| +E0365073|Ito's naevus|Ito's nevus| +E0365076|Nyctanthes arbortristis|Nyctanthes arbor-tristis| +E0365649|orthophenanthroline|ortho-phenanthroline| +E0366048|penicillin g potassium|penicillin G potassium| +E0366229|Phisohex|pHisoHex| +E0366461|pitta|Pitta| +E0366503|Plauracin|plauracin| +E0366610|poldine methyl sulfate|poldine methylsulfate| +E0366610|poldine methylsulphate|poldine methylsulfate| +E0366610|poldine methyl sulphate|poldine methylsulfate| +E0366806|primary splenic neutropaenia|primary splenic neutropenia| +E0366864|pro-urokinase|prourokinase| +E0367066|pyronin B|pyronine B| +E0367067|pyronin Y|pyronine Y| +E0367068|pyronin G|pyronine G| +E0367077|Q enzyme|Q-enzyme| +E0367102|quick-beam|quickbeam| +E0367183|reed bunting|reed-bunting| +E0367227|renal aneurism|renal aneurysm| +E0367232|rescuegrass|rescue grass| +E0367251|retrospondylisthesis|retrospondylolisthesis| +E0367252|congenital retrospondylisthesis|congenital retrospondylolisthesis| +E0367253|acquired retrospondylisthesis|acquired retrospondylolisthesis| +E0367254|Rh-factor|Rh factor| +E0367401|right fibrous trigon|right fibrous trigone| +E0367738|salmon patch naevus|salmon patch nevus| +E0367998|Schizoblastosporion starkeyi-henricii|Schizoblastosporion starkeyihenricii| +E0368185|sedimentation co-efficient|sedimentation coefficient| +E0368528|Septicine|septicine| +E0369485|somatotropin release inhibiting hormone|somatotropin release-inhibiting hormone| +E0369490|soft-soap|soft soap| +E0369574|sphenoethmoidal synchondrosis|spheno-ethmoidal synchondrosis| +E0370016|splendaceous|splendacious| +E0370016|splendatious|splendacious| +E0370467|supra-orbital margin|supraorbital margin| +E0372115|acute nonlymphoblastic leukemia|acute non-lymphoblastic leukemia| +E0372115|acute non-lymphoblastic leukaemia|acute non-lymphoblastic leukemia| +E0372115|acute nonlymphoblastic leukaemia|acute non-lymphoblastic leukemia| +E0372115|acute non-lymphoblastic leucemia|acute non-lymphoblastic leukemia| +E0372115|acute nonlymphoblastic leucemia|acute non-lymphoblastic leukemia| +E0372115|acute non-lymphoblastic leucaemia|acute non-lymphoblastic leukemia| +E0372115|acute nonlymphoblastic leucaemia|acute non-lymphoblastic leukemia| +E0372198|Antipatharian|antipatharian| +E0372320|fon|Fon| +E0372491|arsb deficiency|ARSB deficiency| +E0400018|flow chart|flowchart| +E0400023|fluanxol|Fluanxol| +E0400026|flumazenil|Flumazenil| +E0400033|flumazepil|Flumazepil| +E0400037|fluridrazepam|Fluridrazepam| +E0400051|flufenazin|Flufenazin| +E0400053|flubiprofen|Flubiprofen| +E0400057|flurotyl|Flurotyl| +E0400066|formyltetra-hydrofolate|formyltetrahydrofolate| +E0400066|formyl-tetra-hydrofolate|formyltetrahydrofolate| +E0400072|lyophilisation|lyophilization| +E0400077|fructose-diphosphatase|fructosediphosphatase| +E0400077|fructose diphosphatase|fructosediphosphatase| +E0400084|urofollitrophin|Urofollitrophin| +E0400087|furagin|Furagin| +E0400088|furazidin|Furazidin| +E0400096|forunculosis|furunculosis| +E0400098|fucithalmic|Fucithalmic| +E0400105|gabbromycin|Gabbromycin| +E0400110|galactose phosphate|galactosephosphate| +E0400127|gelaspon|Gelaspon| +E0400130|geriocaine|Geriocaine| +E0400166|glucosyl ceramide|glucosylceramide| +E0400203|glycyrrhizia|glycyrrhiza| +E0400208|thioglucosoaurate|Thioglucosoaurate| +E0400214|gramaxin|Gramaxin| +E0400246|harmidine|Harmidine| +E0400261|hematoxiline|hematoxilin| +E0400267|haemobilia|hemobilia| +E0400285|heptachlor|Heptachlor| +E0400299|hemel|Hemel| +E0400299|HEMEL|Hemel| +E0400370|hymenolepiasis|hymenolepiosis| +E0400386|hyperbetalipoproteinaemia|hyperbetalipoproteinemia| +E0400387|hyperaemia|hyperemia| +E0400388|hypergammaglobulinaemia|hypergammaglobulinemia| +E0400389|hyperglycaemia|hyperglycemia| +E0400392|hyperpotassaemia|hyperpotassemia| +E0400394|dysbetalipoproteinaemia|dysbetalipoproteinemia| +E0400395|hyperprebetalipoproteinaemia|hyperprebetalipoproteinemia| +E0400396|hypernatraemia|hypernatremia| +E0400402|hyperprolactinaemia|hyperprolactinemia| +E0400406|hyperthyroxinaemia|hyperthyroxinemia| +E0400411|hypoesthaesia|hypoesthesia| +E0400412|hypobetalipoproteinaemia|hypobetalipoproteinemia| +E0400413|hypocalcaemia|hypocalcemia| +E0400419|hypokalaemia|hypokalemia| +E0400420|hypopotassaemia|hypopotassemia| +E0400421|hypolipoproteinaemia|hypolipoproteinemia| +E0400422|hypomenorrhoea|hypomenorrhea| +E0400423|hyponatraemia|hyponatremia| +E0400429|hypoproteinaemia|hypoproteinemia| +E0400430|hypoprothrombinaemia|hypoprothrombinemia| +E0400442|icthyosis|ichthyosis| +E0400447|iphosphamide|ifosfamide| +E0400448|isofosfamide|isophosphamide| +E0400470|vophaverdin|vofaverdin| +E0400470|wofaverdin|vofaverdin| +E0400511|iodamebiasis|iodamoebiasis| +E0400527|ortho-iodohippurate|orthoiodohippurate| +E0400527|ortho iodohippurate|orthoiodohippurate| +E0400532|kardiotrast|Kardiotrast| +E0400533|cardiotrast|Cardiotrast| +E0400554|iophendylate|iofendylate| +E0400586|dyflos|Dyflos| +E0400587|fluostigmine|fluorostigmine| +E0400604|methysoprinol|methisoprinol| +E0400604|metisoprinol|methisoprinol| +E0400665|ketotifene|ketotifen| +E0400665|ketotiphen|ketotifen| +E0400665|ketotiphene|ketotifen| +E0400678|Kirgizstan|Kyrgyzstan| +E0400678|Kirghizstan|Kyrgyzstan| +E0400738|leucine arylamidase|leucinarylamidase| +E0400738|leucine aryl amidase|leucinarylamidase| +E0400739|leukocytopheresis|leukocytapheresis| +E0400740|leukopheresis|leukapheresis| +E0400740|leucapheresis|leukapheresis| +E0400740|leucopheresis|leukapheresis| +E0400743|sulphatidosis|sulfatidosis| +E0400758|levo-amphetamine|levoamphetamine| +E0400758|levo amphetamine|levoamphetamine| +E0400763|laevopropoxyphene|levopropoxyphene| +E0400769|Gn-RH|GnRH| +E0400797|lipotrophin|lipotropin| +E0400813|rye grass|ryegrass| +E0400813|rye-grass|ryegrass| +E0400825|loxapine succinate|loxapinsuccinate| +E0400841|Luxemborg|Luxembourg| +E0400841|Luxemburg|Luxembourg| +E0400848|lymphocytopheresis|lymphocytapheresis| +E0400875|sulphabenzamine|sulfabenzamine| +E0400969|melittin|melitten| +E0400969|melliten|melitten| +E0400969|mellitin|melitten| +E0400977|menotrophin|menotropin| +E0400979|methyl partricin|methylpartricin| +E0400988|mepivicaine|mepivacaine| +E0400995|sarkolysine|sarkolysin| +E0401007|meta-ethics|metaethics| +E0401027|alpha-acetylmethadol|alphacetylmethadol| +E0401039|metandienone|methandienone| +E0401042|methylenesulphonate|methylenesulfonate| +E0401057|ferrihaemoglobin|ferrihemoglobin| +E0401072|methiothepine|methiothepin| +E0401092|methoxy-dimethyltryptamine|methoxydimethyltryptamine| +E0401099|methyl mesilate|methylmesilate| +E0401103|methylparathion|methyl parathion| +E0401107|alpha-methyldopa|alphamethyldopa| +E0401107|alpha methyldopa|alphamethyldopa| +E0401134|Methylmonadaceae|Methylomonadaceae| +E0401138|Metipred|metipred| +E0401147|Alkiron|alkiron| +E0401180|peroxysome|peroxisome| +E0401193|micro-manipulation|micromanipulation| +E0401202|midodrin|midodrine| +E0401207|leucaenine|leucenine| +E0401208|leucaenol|leucenol| +E0401214|miokamycin|miocamycine| +E0401214|myocamicin|miocamycine| +E0401215|Mirex|mirex| +E0401229|Moldavia|Moldova| +E0401231|molsidomin|molsidomine| +E0401266|prolyl-leucyl-glycinamide|prolylleucylglycinamide| +E0401266|prolyl leucyl glycinamide|prolylleucylglycinamide| +E0401272|keratan sulfaturia|keratansulfaturia| +E0401272|keratan sulphaturia|keratansulfaturia| +E0401272|keratansulphaturia|keratansulfaturia| +E0401291|myohaemoglobinuria|myohemoglobinuria| +E0401321|naphthalenesulphonate|naphthalenesulfonate| +E0401344|mud puppy|mudpuppy| +E0401349|neomalthusianism|Neomalthusianism| +E0401382|nicarbazine|nicarbazin| +E0401405|korinfar|Korinfar| +E0401414|metilmercadon|methylmercadone| +E0401421|nicethamide|nizethamid| +E0401448|nitromiphene|nitromifene| +E0401449|nitroparaffine|nitroparaffin| +E0401460|nitroxynil|nitroxinil| +E0401468|nomifensin|nomifensine| +E0401472|nonachlazin|nonachlazine| +E0401472|nonakhlazin|nonachlazine| +E0402590|cephaeline|cephaelin| +E0402717|cholenzym|cholenzyme| +E0402719|choline-sulfatase|cholinesulfatase| +E0402719|choline sulfatase|cholinesulfatase| +E0402719|cholinesulphatase|cholinesulfatase| +E0402719|choline-sulphatase|cholinesulfatase| +E0402719|choline sulphatase|cholinesulfatase| +E0402722|cholyl-glycyl-tyrosine|cholylglycyltyrosine| +E0402874|Combipres|combipres| +E0402993|cyano-met-myoglobin|cyanometmyoglobin| +E0403028|cyclomunin|cyclomunine| +E0403043|cycloprovera|CycloProvera| +E0403070|cysteinyl-glycine|cysteinylglycine| +E0403101|dansyl chloride|dansylchloride| +E0403105|dansyl-galactoside|dansylgalactoside| +E0403113|deptomycin|daptomycin| +E0403154|deglyco-bleomycin|deglycobleomycin| +E0403157|dehydro-sanol-tri|dehydrosanoltri| +E0403157|dehydro sanol tri|dehydrosanoltri| +E0403193|dimethyl vinylbutonate|demethylvinylbutonate| +E0403212|deoxyhaemerythrin|deoxyhemerythrin| +E0403213|deoxyhaemocyanin|deoxyhemocyanin| +E0403270|desmethyl ofloxacin|desmethylofloxacin| +E0403279|desulphoredoxin|desulforedoxin| +E0403280|desulphatohirudin|desulfatohirudin| +E0403288|deuterohaeme|deuteroheme| +E0403407|diethyl mercury|diethylmercury| +E0403409|diethylphenyl-phosphine|diethylphenylphosphine| +E0403429|difurfurylidene acetone|difurfurylideneacetone| +E0403485|diiodosulphophenylisothiocyanate|diiodosulfophenylisothiocyanate| +E0403580|diphenyl diselenide|diphenyldiselenide| +E0403626|disulphanilamide|disulfanilamide| +E0403774|eMix|EMix| +E0403786|endo-exonuclease|endoexonuclease| +E0403858|erythrotrophin|erythrotropin| +E0403871|etaphedrine|etafedrine| +E0403898|ethoxy-precocene|ethoxyprecocene| +E0403946|eupatoriopicrin|eupatoriopicrine| +E0403952|everninomicin|everninomycin| +E0404004|fencamfamin|fencamfamine| +E0404034|fenretinimide|fenretinide| +E0404052|ferri-exochelin|ferriexochelin| +E0404082|flakumin|flacumin| +E0404130|fluoro-gold|fluorogold| +E0404139|fluorphlogopite|fluorophlogopite| +E0404143|fluoxidine|fluoxydine| +E0404195|Frumil|frumil| +E0404201|fucolipide|fucolipid| +E0404205|fucosylglycolipide|fucosylglycolipid| +E0404240|fusafungine|fusafungin| +E0404248|gabaculin|gabaculine| +E0404262|galactosyl hydroxylysine|galactosylhydroxylysine| +E0404283|gastrotrophin|gastrotropin| +E0404310|geranyl acetone|geranylacetone| +E0404312|geranyl-geranyl-acetone|geranylgeranylacetone| +E0404345|globotetraosyl ceramide|globotetraosylceramide| +E0404352|glucitol-lysine|glucitollysine| +E0404363|glucosyl urea|glucosylurea| +E0404383|glyceroglucolipide|glyceroglucolipid| +E0404400|glycosyl-phosphatidylinositol|glycosylphosphatidylinositol| +E0404400|glycosyl phosphatidylinositol|glycosylphosphatidylinositol| +E0404400|glycosylphosphatidyl inositol|glycosylphosphatidylinositol| +E0404400|glycosyl phosphatidyl inositol|glycosylphosphatidylinositol| +E0404443|grisin|grisein| +E0404443|grizin|grisein| +E0404514|haemichrome|hemichrome| +E0404541|hesperitin|hesperetin| +E0404650|hydrolink|HydroLink| +E0404678|hydroxymethyl methacrylate|hydroxymethylmethacrylate| +E0404684|hydroxypropyl cellulose|hydroxypropylcellulose| +E0404702|cyanosulphoxylate|cyanosulfoxylate| +E0404727|imanin|imanine| +E0404730|imidazo-pyrazole|imidazopyrazole| +E0404752|imuvert|ImuVert| +E0404795|insulinotrophin|insulinotropin| +E0404853|iridoid glucoside|iridoidglucoside| +E0404891|iso-imperatorin|isoimperatorin| +E0404898|iso-luminol|isoluminol| +E0404909|iso-metronidazole|isometronidazole| +E0404926|isopropylmethanesulphonate|isopropylmethanesulfonate| +E0404926|isopropyl methanesulphonate|isopropylmethanesulfonate| +E0404926|isopropyl methanesulfonate|isopropylmethanesulfonate| +E0404966|jing song ling|jingsongling| +E0405018|konjak|konjac| +E0405019|konjac mannan|konjak mannan| +E0405019|konjac-mannan|konjak mannan| +E0405019|konjak-mannan|konjak mannan| +E0405049|levodosin|laevodosin| +E0405096|leukocyanidin|leucocyanidin| +E0405097|leukoegresin|leucoegresin| +E0405098|leukokininase|leucokininase| +E0405099|leukomyosuppressin|leucomyosuppressin| +E0405101|leucyl-leucine|leucylleucine| +E0405103|leukemomycin|leukaemomycin| +E0405105|leucokininogen|leukokininogen| +E0405106|leucoregulin|leukoregulin| +E0405107|leucosialin|leukosialin| +E0405108|leucotrophin|leukotrophin| +E0405108|leukotropin|leukotrophin| +E0405108|leucotropin|leukotrophin| +E0405114|laevocabastine|levocabastine| +E0405115|laevomecol|levomecol| +E0405116|laevophacetoperane|levophacetoperane| +E0405117|laevoristatin|levoristatin| +E0405243|lysinopril|lisinopril| +E0405247|lyso-amidase|lysoamidase| +E0405255|lyso-phosphatidyl ethanolamine|lysophosphatidylethanolamine| +E0405255|lysophosphatidyl ethanolamine|lysophosphatidylethanolamine| +E0405287|maleyl acetate|maleylacetate| +E0405288|maleyl-albumin|maleylalbumin| +E0405317|mannosulphan|mannosulfan| +E0405318|mannosyl retinyl phosphate|mannosylretinylphosphate| +E0405321|mannozime|mannozym| +E0405381|meizo-thrombin|meizothrombin| +E0405432|mesulphen|mesulfen| +E0405497|polysulphoethylaspartamide|polysulfoethylaspartamide| +E0405525|poly-pyrimidine tract-binding protein|polypyrimidine tract-binding protein| +E0405566|pro-dermorphin|prodermorphin| +E0405579|promin|Promin| +E0405587|propanesulphonate|propanesulfonate| +E0405601|pro-pressophysin|propressophysin| +E0405606|propylenedimethanesulphonate|propylenedimethanesulfonate| +E0405623|pro-temp|protemp| +E0405630|protohaemochrome|protohemochrome| +E0405633|protrophin|protropin| +E0405681|pyridoxal oxime|pyridoxaloxime| +E0405689|pyrogallolsulphonephthalein|pyrogallolsulfonephthalein| +E0405777|respivax|respivaks| +E0405788|retro-thiorphan|retrothiorphan| +E0405812|rifabutine|rifabutin| +E0405825|riodoksol|riodoxol| +E0405829|ritosulphan|ritosulfan| +E0405900|sayfos|sayphos| +E0405900|saiphos|sayphos| +E0406018|solila nova|solilanova| +E0406019|soliusulphon|soliusulfon| +E0406022|solufiline|soluphylline| +E0406061|spy dust|spydust| +E0406094|sulphotransferase I|sulfotransferase I| +E0406099|sulphotransferase II|sulfotransferase II| +E0406101|sulphotransferase III|sulfotransferase III| +E0406127|sulfentanyl|sulfentanil| +E0406127|sulphentanil|sulfentanil| +E0406127|sulphentanyl|sulfentanil| +E0406131|sulphacarbamide|sulfacarbamide| +E0406132|sulphallate|sulfallate| +E0406133|sulphamethylphenazole|sulfamethylphenazole| +E0406134|sulphametrol|sulfametrol| +E0406135|sulphamidine|sulfamidine| +E0406136|sulphamidochrysoidin|sulfamidochrysoidin| +E0406137|sulphamoyldapsone|sulfamoyldapsone| +E0406138|sulphanilylsulphanilamide|sulfanilylsulfanilamide| +E0406139|sulphanol|sulfanol| +E0406140|sulphasan|sulfasan| +E0406142|sulphenazone|sulfenazone| +E0406143|sulphene|sulfene| +E0406144|sulphiram|sulfiram| +E0406145|sulphochlorantine|sulfochlorantine| +E0406146|sulphoglycopeptide|sulfoglycopeptide| +E0406147|sulpholithoglycocholine|sulfolithoglycocholine| +E0406148|sulphonol|sulfonol| +E0406149|sulphonolipid|sulfonolipid| +E0406150|sulphosuccinimidobiotin|sulfosuccinimidobiotin| +E0406151|sulphotyrosine|sulfotyrosine| +E0406155|sulphetrone|sulfetrone| +E0406158|sulusulphone|sulusulfone| +E0406227|tumour-associated fetal antigen|tumor-associated fetal antigen| +E0406227|tumour-associated foetal antigen|tumor-associated fetal antigen| +E0406227|tumor-associated foetal antigen|tumor-associated fetal antigen| +E0406263|tumour-associated transplantation antigen|tumor-associated transplantation antigen| +E0406286|t-BHQ|TBHQ| +E0406302|transitional cell carcinoma|transitional-cell carcinoma| +E0406355|tetraethylpyrophosphate|tetraethyl pyrophosphate| +E0406356|teprenone|teprenon| +E0406387|tetanohaemolysin|tetanohemolysin| +E0406397|tetraethyl-pyrazine|tetraethylpyrazine| +E0406418|tetramethylenedisulfotetramine|tetramethylenedisulphotetramine| +E0406429|tetraprenyl acetone|tetraprenylacetone| +E0406493|thiaminepropyldisulphide|thiaminepropyldisulfide| +E0406493|thiamine propyl disulfide|thiaminepropyldisulfide| +E0406493|thiamine propyl disulphide|thiaminepropyldisulfide| +E0406493|thiamine propyldisulphide|thiaminepropyldisulfide| +E0406493|thiamine propyldisulfide|thiaminepropyldisulfide| +E0406497|thiazolsulphone|thiazolsulfone| +E0406511|thioldisulphide|thioldisulfide| +E0406533|tetrahydropteroylpentaglutamate|tetrahydropteroyl pentaglutamate| +E0406542|thymolsulphonphthalein|thymolsulfonphthalein| +E0406571|TimeLine|timeline| +E0406571|time line|timeline| +E0406605|tumour-cell migratory inhibition factor|tumor-cell migratory inhibition factor| +E0406620|tetramethylthiuram monosulphide|tetramethylthiuram monosulfide| +E0406664|tetrapropylenebenzyl sulphonate|tetrapropylenebenzyl sulfonate| +E0406666|tetraphenylporphine sulphonate|tetraphenylporphine sulfonate| +E0406668|tetraphenyltetrazolium|tetraphenyl tetrazolium| +E0406670|triphenyl tin fluoride|triphenyltin fluoride| +E0406884|urosulphan|urosulfan| +E0406885|urothion|urothione| +E0407015|varicella zoster immune globulin|varicella-zoster immune globulin| +E0407101|zorubicine|zorubicin| +E0407102|zosterine|zosterin| +E0407114|back rub|backrub| +E0407128|hydrorachis|hydrorhachis| +E0407133|scleropericeratitis|scleroperikeratitis| +E0407166|abzym|abzyme| +E0407190|air bag|airbag| +E0407201|geranyl-geranylation|geranylgeranylation| +E0407251|viridenomycin|viridinomycin| +E0407265|procainamide ethobromide|procaine amide ethobromide| +E0407297|ciliary neuronotropic factor|ciliary neuronotrophic factor| +E0407299|sulphoraphane|sulforaphane| +E0407300|sulphorafan|sulforafan| +E0407312|desoxyadenosyltransferase|deoxyadenosyltransferase| +E0407323|glycosulphatase|glycosulfatase| +E0407347|desoxynucleotidase|deoxynucleotidase| +E0407354|dansyl-leucine|dansylleucine| +E0407408|methylenedioxybenzene|methylene dioxybenzene| +E0407437|carboxymethyl chitin|carboxymethylchitin| +E0407453|erysulphoxide|erysulfoxide| +E0407454|erysulphone|erysulfone| +E0407591|sulphimidazole|sulfimidazole| +E0407620|heparin-binding neurotropic factor|heparin-binding neurotrophic factor| +E0407624|zabiciprilat|zabiciprilate| +E0407626|aphiG|AphiG| +E0407642|perfluoro-octane|perfluorooctane| +E0407650|haemoferritin|hemoferritin| +E0407673|ethyldeshydroxy-sparsomycin|ethyldeshydroxysparsomycin| +E0407690|sunphenone|sunphenon| +E0407709|methanethiosulphonate|methanethiosulfonate| +E0407762|dimethylsulphoniopropionate|dimethylsulfoniopropionate| +E0407787|norditropin|Norditropin| +E0407787|norditrophin|Norditropin| +E0407806|farnesyl transferase|farnesyltransferase| +E0407890|desoxymethyspergualin|deoxymethyspergualin| +E0407896|perfluorooctane sulphonic acid|perfluorooctane sulfonic acid| +E0407980|hyaena|hyena| +E0408027|anaesthesimeter|anesthesimeter| +E0408071|bed rail|bedrail| +E0408265|aesthesiometer|esthesiometer| +E0408266|aesthesiometric|esthesiometric| +E0408267|aesthesiometrically|esthesiometrically| +E0408276|foetascope|fetascope| +E0408277|foetascopic|fetascopic| +E0408278|foetascopically|fetascopically| +E0408280|haemoconcentrator|hemoconcentrator| +E0408283|haemotachometer|hemotachometer| +E0408287|fluorimetric|fluorometric| +E0408294|fundoscope|funduscope| +E0408323|haemacytometer|hemacytometer| +E0408324|haemacytometric|hemacytometric| +E0408325|haemacytometrically|hemacytometrically| +E0408326|haematofluorometer|hematofluorometer| +E0408327|haematofluorometric|hematofluorometric| +E0408328|haematofluorometrically|hematofluorometrically| +E0408329|haemoglobinometer|hemoglobinometer| +E0408330|haemoglobinometric|hemoglobinometric| +E0408331|haemoglobinometrically|hemoglobinometrically| +E0408332|haemodetoxifier|hemodetoxifier| +E0408333|haemoximeter|hemoximeter| +E0408337|haemoximetric|hemoximetric| +E0408339|immobiliser|immobilizer| +E0408352|kinaesthesiometer|kinesthesiometer| +E0408353|kinaesthesiometric|kinesthesiometric| +E0408354|kinaesthesiometrically|kinesthesiometrically| +E0408384|micropipet|micropipette| +E0408438|ophthalmoleucoscope|ophthalmoleukoscope| +E0408439|ophthalmoleucoscopic|ophthalmoleukoscopic| +E0408440|ophthalmoleucoscopically|ophthalmoleukoscopically| +E0408556|pipettor|pipetter| +E0408679|synchroniser|synchronizer| +E0408809|pharyngo-laryngectomy|pharyngolaryngectomy| +E0408831|uvulo-palato-pharyngoplasty|uvulopalatopharyngoplasty| +E0408834|oesophagorrhaphy|esophagorrhaphy| +E0408839|oesophagogastropexy|esophagogastropexy| +E0408869|pancreatico-cysto-gastrostomy|pancreaticocystogastrostomy| +E0408880|uretero-calicostomy|ureterocalicostomy| +E0408913|cryoleukotomy|cryoleucotomy| +E0408938|icce|ICCE| +E0408953|haemorrhagometry|hemorrhagometry| +E0408958|hyperbasaemia|hyperbasemia| +E0408968|orthopantomogram|orthopantogram| +E0408993|montmorillonite|montmorrillonite| +E0408998|Endo R|ENDOR| +E0408998|endo R|ENDOR| +E0409004|antihyperuricaemic|antihyperuricemic| +E0409005|antihyperuricaemic|antihyperuricemic| +E0409008|Madura|Madoera| +E0409052|pre-menopause|premenopause| +E0409054|peri-menopausal|perimenopausal| +E0409055|post-menopause|postmenopause| +E0409068|caulimo-virus|caulimovirus| +E0409069|como-virus|comovirus| +E0409079|Haemachatus|Hemachatus| +E0409121|enoxaparine|enoxaparin| +E0409130|haemorheology|hemorheology| +E0409130|hemorrheology|hemorheology| +E0409130|haemorrheology|hemorheology| +E0409158|capripox virus|capripoxvirus| +E0409159|leporipox virus|leporipoxvirus| +E0409173|neurotheceoma|neurothekeoma| +E0409173|neurothecoma|neurothekeoma| +E0409177|dimethylbusulphan|dimethylbusulfan| +E0409204|ethoxysclerol|aethoxysclerol| +E0409229|polysulphated glycosaminoglycan|polysulfated glycosaminoglycan| +E0409239|O-ATP|oATP| +E0409240|oligophosphoglyceroyl-ATP|oligophosphoglycerol-ATP| +E0409274|phosphoadenylylsulphatase|phosphoadenylylsulfatase| +E0409298|desethyloxybutynin|deethyloxybutynin| +E0409346|lactosorb|LactoSorb| +E0409383|Fresubin|fresubin| +E0409496|colorectal-associated growth factor|colorectum-associated growth factor| +E0409526|oncoscint|OncoScint| +E0409568|laevopraid|levopraid| +E0409569|laevosulpiride|levosulpiride| +E0409582|neupogen|Neupogen| +E0409626|arachidonyl ethanolamide|arachidonylethanolamide| +E0409649|cerato-ulmin|ceratoulmin| +E0409659|butenyl isothiocyanate|butenylisothiocyanate| +E0409692|phthalocyaninetetrasulphonate|phthalocyaninetetrasulfonate| +E0409719|beta-cellulin|betacellulin| +E0409719|beta cellulin|betacellulin| +E0409735|dehydroleukodin|dehydroleucodin| +E0409736|dehydroleukodine|dehydroleucodine| +E0409776|gonadotrophin surge-attenuating factor|gonadotropin surge-attenuating factor| +E0409905|Molgramostim|molgramostim| +E0409923|immunocorticotrophin|immunocorticotropin| +E0410027|hyperhistidinaemia|hyperhistidinemia| +E0410041|hydrocalix|hydrocalyx| +E0410045|bed wetting|bedwetting| +E0410045|bed-wetting|bedwetting| +E0410065|haemodialyzate|hemodialyzate| +E0410065|hemodialysate|hemodialyzate| +E0410065|haemodialysate|hemodialyzate| +E0410095|aegobronchophony|egobronchophony| +E0410117|hidromiosis|hidromeiosis| +E0410118|goose-flesh|gooseflesh| +E0410118|goose flesh|gooseflesh| +E0410124|atopomenorrhoea|atopomenorrhea| +E0410133|absent-mindedness|absentmindedness| +E0410135|absent-minded|absentminded| +E0410165|pre-syncope|presyncope| +E0410166|palinaesthesia|palinesthesia| +E0410168|aphememaesthesia|aphememesthesia| +E0410189|dopy|dopey| +E0410234|lactalbumen hydrolysate|lactalbumin hydrolysate| +E0410234|lactalbumine hydrolysate|lactalbumin hydrolysate| +E0410241|microhaematuria|microhematuria| +E0410244|hyperdefaecation|hyperdefecation| +E0410245|hyperdefaecate|hyperdefecate| +E0410252|macro-orchidism|macroorchidism| +E0410258|hypogeusaesthesia|hypogeusesthesia| +E0410273|dyslipidaemia|dyslipidemia| +E0410276|ion exchange chromatography|ion-exchange chromatography| +E0410312|Auto-PEEP|AutoPEEP| +E0410312|Auto PEEP|AutoPEEP| +E0410312|autoPEEP|AutoPEEP| +E0410312|auto-PEEP|AutoPEEP| +E0410312|auto PEEP|AutoPEEP| +E0410316|disease-modifying anti-rheumatic drug|disease-modifying antirheumatic drug| +E0410367|dimethylsulphide|dimethylsulfide| +E0410394|skelaxin|Skelaxin| +E0410395|Batrafen|batrafen| +E0410412|phloroglucindimethylaether|phloroglucindimethylether| +E0410424|deoxyfructosylserotonin|desoxyfructosylserotonin| +E0410445|AICAR transformylase|AICARTFase| +E0410446|aminoimidazolecarboxamide ribonucleotide transformylase|aminoimidazole carboxamide ribonucleotide transformylase| +E0410471|epithalamin|epithalamine| +E0410517|Leustatin|leustatin| +E0410544|Accupril|accupril| +E0410642|isorhyncophylline|isorhynchophylline| +E0410649|Maxaquin|maxaquin| +E0410689|neutrexin|NeuTrexin| +E0410745|diheptyl diselenide|diheptyldiselenide| +E0410749|sulphenosine|sulfenosine| +E0410781|enterohaemolysin|enterohemolysin| +E0410842|NF-AT protein|NFAT protein| +E0410845|vinleukinol|vinleucinol| +E0410863|diaspirin-cross-linked haemoglobin|diaspirin-cross-linked hemoglobin| +E0410865|AAPF-CMK|AAPFcmk| +E0410905|caltrophin|caltropin| +E0410956|valaciclovir|valacyclovir| +E0410961|trypsin carboxypeptidase peptid inhibitor|trypsin carboxypeptidase peptide inhibitor| +E0410982|foetal lung cytostatic protein|fetal lung cytostatic protein| +E0411000|pig leucocyte cysteine proteinase inhibitor|pig leukocyte cysteine proteinase inhibitor| +E0411050|thymolymphotrophin|thymolymphotropin| +E0411135|Replens|replens| +E0411220|epiphyzan|epiphysan| +E0411220|epifizan|epiphysan| +E0411220|epifisan|epiphysan| +E0411220|epiphisan|epiphysan| +E0411230|tumour-derived adhesion factor|tumor-derived adhesion factor| +E0411245|decarboxyethoxyloratadine|descarboxyethoxyloratadine| +E0411273|flavohaemoprotein|flavohemoprotein| +E0411337|Rejuvex|rejuvex| +E0411355|dansyl proline|dansylproline| +E0411368|Titer Max|TiterMax| +E0411377|trimethylsilyl methanol|trimethylsilylmethanol| +E0411383|poly(tetramethylene oxide)|polytetramethylene oxide| +E0411445|urinaid|UrinAid| +E0411931|Cumopyran|cumopyran| +E0411932|Cumopyrin|cumopyrin| +E0412642|bio-control|biocontrol| +E0412657|laevofloxacin|levofloxacin| +E0412660|festschrift|Festschrift| +E0412668|leucostasis|leukostasis| +E0412675|moulting|molting| +E0412681|shiatsu|Shiatsu| +E0412681|Shiatzu|Shiatsu| +E0412681|shiatzu|Shiatsu| +E0412683|no observed effect level|no-observed-effect level| +E0412685|no observed adverse effect level|no-observed-adverse-effect level| +E0412697|diazobenzenesulphonate|diazobenzenesulfonate| +E0412699|estrogynedron|oestrogynaedron| +E0412701|pyridoxinyl glyoxylate|pyridoxinylglyoxylate| +E0412706|perfluoroctylbromide|perfluorooctylbromide| +E0412706|perfluorooctyl bromide|perfluorooctylbromide| +E0412712|dimethyl terephthalate|dimethylterephthalate| +E0412713|methyl cellosolve|methylcellosolve| +E0412714|methyl isothiocyanate|methylisothiocyanate| +E0412720|glyceryl monooleate|glycerylmonooleate| +E0412721|imidazolidinyl urea|imidazolidinylurea| +E0412725|bromophenacyl bromide|bromophenacylbromide| +E0412731|ethyl chloroformate|ethylchloroformate| +E0412732|cumyl hydroperoxide|cumylhydroperoxide| +E0412737|methyl isocyanate|methylisocyanate| +E0412738|nitrosyl hemoglobin|nitrosylhemoglobin| +E0412738|nitrosylhaemoglobin|nitrosylhemoglobin| +E0412738|nitrosyl haemoglobin|nitrosylhemoglobin| +E0412739|PL-AC|PLAC| +E0412743|phenyl diguanide|phenyldiguanide| +E0412750|ethyl carbitol|ethylcarbitol| +E0412752|dioleyl phosphate|dioleylphosphate| +E0412757|diethyl sulfate|diethylsulfate| +E0412757|diethylsulphate|diethylsulfate| +E0412757|diethyl sulphate|diethylsulfate| +E0412771|retinyl phosphate|retinylphosphate| +E0412774|phenacyl bromide|phenacylbromide| +E0412776|divinyl sulfide|divinylsulfide| +E0412776|divinylsulphide|divinylsulfide| +E0412776|divinyl sulphide|divinylsulfide| +E0412780|PNP-GalNAc|pNPGalNAc| +E0412782|PNP-GlcNAc|pNPGlcNAc| +E0412784|pirimiphos methyl|pirimiphosmethyl| +E0412786|carboxymethyl dextran|carboxymethyldextran| +E0412787|diethyl maleate|diethylmaleate| +E0412788|ethyl acetimidate|ethylacetimidate| +E0412803|ro-neet|roneet| +E0412805|oxycobalt myoglobin|oxycobaltmyoglobin| +E0412807|acetyl adenylate|acetyladenylate| +E0412808|ethylbutyl thiourea|ethylbutylthiourea| +E0412811|dihydro-DIDS|dihydroDIDS| +E0412813|octyl glucoside|octylglucoside| +E0412816|creatine amidinohydrolase|creatineamidinohydrolase| +E0412817|goniopora toxin|gonioporatoxin| +E0412822|Azeptin|azeptin| +E0412825|dimethyldisulphide|dimethyldisulfide| +E0412825|dimethyl disulfide|dimethyldisulfide| +E0412825|dimethyl disulphide|dimethyldisulfide| +E0412831|perioglas|PerioGlas| +E0412835|sulfhydryloxidase|sulphydryloxidase| +E0412835|sulphydryl oxidase|sulphydryloxidase| +E0412835|sulfhydryl oxidase|sulphydryloxidase| +E0412836|acetyl ethyl tetramethyl tetralin|acetylethyltetramethyltetralin| +E0412836|acetyl ethyltetramethyltetralin|acetylethyltetramethyltetralin| +E0412842|apo J|apoJ| +E0412845|apo D|apoD| +E0412854|dibutyl phenylphosphate|dibutylphenylphosphate| +E0412863|Olbetam|olbetam| +E0412864|hexamethylene glycol|hexamethyleneglycol| +E0412867|dansyl hydrazine|dansylhydrazine| +E0412871|lauryl sulfate|laurylsulfate| +E0412871|laurylsulphate|laurylsulfate| +E0412871|lauryl sulphate|laurylsulfate| +E0412872|co-amoxiclav|coamoxiclav| +E0412873|presomatotrophin|presomatotropin| +E0412880|methoxy pectin|methoxypectin| +E0412892|leukodelphinidin|leucodelphinidin| +E0412893|leukoefdin|leucoefdin| +E0412894|leukoephdine|leucoephdine| +E0412895|leucoephdin|leukoephdin| +E0412901|fructose lysine|fructoselysine| +E0412903|fructose glycine|fructoseglycine| +E0412906|Se-HCAT|SeHCAT| +E0412917|indoxyl phosphate|indoxylphosphate| +E0412918|mannosyl phosphatidylinositol|mannosylphosphatidylinositol| +E0412920|lauryldimethyl betaine|lauryldimethylbetaine| +E0412924|benzyl thiocyanate|benzylthiocyanate| +E0412940|VMO-I|VMOI| +E0412945|ascorbyl monostearate|ascorbylmonostearate| +E0412950|mutan synthetase|mutansynthetase| +E0412956|phosphoglycerol transferase|phosphoglyceroltransferase| +E0412959|dicumyl peroxide|dicumylperoxide| +E0412978|5,9-diMe-DBC|DiMeDBC| +E0412982|fapyade|FapyAde| +E0412992|vero toxin|verotoxin| +E0412996|SC RNA|SCRNA| +E0413001|pentaglycosyl ceramide|pentaglycosylceramide| +E0413004|pro-ANF|proANF| +E0413009|LPLRF-amide|LPLRFamide| +E0413011|F-ara-AMP|FaraAMP| +E0413019|PV-IZT|PVIZT| +E0413023|desoxybouvardin|deoxybouvardin| +E0413024|beta-seron|betaseron| +E0413026|monocytoangiotrophin|monocytoangiotropin| +E0413030|aluminum tetrasulphophthalocyanine|aluminum tetrasulfophthalocyanine| +E0413031|aluminum trisulphonatophthalocyanine|aluminum trisulfonatophthalocyanine| +E0413037|cyclopentenyl cytosine|cyclopentenylcytosine| +E0413040|hexahydro-sila-diphenidol|hexahydrosiladiphenidol| +E0413040|hexahydrosiladifenidol|hexahydrosiladiphenidol| +E0413040|hexahydro-sila-difenidol|hexahydrosiladiphenidol| +E0413041|docosahexenoylcarnitine|docosahexaenoylcarnitine| +E0413045|Lamictal|lamictal| +E0413046|Lamiktal|lamiktal| +E0413056|polyisobutyl cyanoacrylate|polyisobutylcyanoacrylate| +E0413057|acetyl acetonate|acetylacetonate| +E0413058|desacetyl cephapirin|desacetylcephapirin| +E0413060|NF-III|NFIII| +E0413062|emodin anthrone|emodinanthrone| +E0413067|pro-GnRH|proGnRH| +E0413068|pro-gonadotrophin-releasing hormone|pro-gonadotropin-releasing hormone| +E0413073|methyl hesperidin|methylhesperidin| +E0413075|ethyl maltol|ethylmaltol| +E0413076|prepro-neurotensin|preproneurotensin| +E0413083|isophorone diamine|isophoronediamine| +E0413084|propylene chlorohydrin|propylenechlorohydrin| +E0413094|cyclohexyl methylphosphonofluoridate|cyclohexylmethylphosphonofluoridate| +E0413096|benzyl selenocyanate|benzylselenocyanate| +E0413106|phosphatidylinositol dimannoside|phosphatidylinositoldimannoside| +E0413106|phosphatidyl inositol dimannoside|phosphatidylinositoldimannoside| +E0413144|dansyllyso-PAF|dansyllysoPAF| +E0413148|monobenzyl toluene|monobenzyltoluene| +E0413170|hexahydro-diphenidol|hexahydrodiphenidol| +E0413170|hexahydrodifenidol|hexahydrodiphenidol| +E0413170|hexahydro-difenidol|hexahydrodiphenidol| +E0413219|benzoylglycyl phenyllactate|benzoylglycylphenyllactate| +E0413230|pyrene glyoxal|pyreneglyoxal| +E0413231|alpha-SSR|SSRalpha| +E0413234|NetOPC|Net-OPC| +E0413239|topa quinone|topaquinone| +E0413258|hnRNP-I|hnRNPI| +E0413283|Helio Progress|Helioprogress| +E0413283|helioprogress|Helioprogress| +E0413283|Helio progress|Helioprogress| +E0413288|PPAR-beta|PPARbeta| +E0413291|dimethyl mercury|dimethylmercury| +E0413292|rufloxacin sulfoxide|rufloxacinsulfoxide| +E0413292|rufloxacinsulphoxide|rufloxacinsulfoxide| +E0413292|rufloxacin sulphoxide|rufloxacinsulfoxide| +E0413299|H-B-VAX|HBVax| +E0413299|HB-VAX|HBVax| +E0413307|triphenyl bismuth|triphenylbismuth| +E0413310|monomaleimido gold|monomaleimidogold| +E0413321|gonadotrophin surge-inhibiting factor|gonadotropin surge-inhibiting factor| +E0413335|beta-TrCP|betaTrCP| +E0413337|alpha-TTP|alphaTTP| +E0413365|pro-HGF|proHGF| +E0413367|undecylsulphate|undecylsulfate| +E0413367|undecyl sulfate|undecylsulfate| +E0413367|undecyl sulphate|undecylsulfate| +E0413378|diisopropylsulphate|diisopropylsulfate| +E0413378|diisopropyl sulfate|diisopropylsulfate| +E0413378|diisopropyl sulphate|diisopropylsulfate| +E0413379|zeta PKC|zetaPKC| +E0413384|tosyl chymotrypsin|tosylchymotrypsin| +E0413480|butanethiosulphonate|butanethiosulfonate| +E0413488|RPTP-sigma|RPTPsigma| +E0413501|cholyl-glycylamido-fluorescein|cholylglycylamidofluorescein| +E0413542|trimethyl carotenoporphyrin|trimethylcarotenoporphyrin| +E0413543|trimethoxy carotenoporphyrin|trimethoxycarotenoporphyrin| +E0413546|hexadecyl phosphoserine|hexadecylphosphoserine| +E0413559|poly(decamethylene) oxide|polydecamethylene oxide| +E0413563|poly(octamethylene oxide)|polyoctamethylene oxide| +E0413576|arylsulphate sulphotransferase|arylsulfate sulfotransferase| +E0413629|XLalpha(s)|XLalphas| +E0413639|retarDENT|RetarDENT| +E0413684|vinyl ethyl methacrylate|vinylethylmethacrylate| +E0413685|rapicide|RapiCide| +E0413741|desulphofuscidin|desulfofuscidin| +E0413742|desulphorubidin|desulforubidin| +E0413773|reClot|ReClot| +E0413794|glucosyl sphingosine|glucosylsphingosine| +E0413820|lumenHance|LumenHance| +E0413820|lumenhance|LumenHance| +E0413844|haemocytin|hemocytin| +E0413906|farnesyl thiotriazole|farnesylthiotriazole| +E0413981|methanethiosulphonate ethylammonium|methanethiosulfonate ethylammonium| +E0413983|fertiLight|FertiLight| +E0413983|fertilight|FertiLight| +E0413989|sulphinemycin|sulfinemycin| +E0413999|desoxytrehalose|deoxytrehalose| +E0414005|saizen|Saizen| +E0414910|pentosan polysulphate sodium|pentosan polysulfate sodium| +E0414925|Stepa|STEPA| +E0414959|Orbenin-DC|Orbenin D.C.| +E0414972|Depo-Medrone|depo-medrone| +E0414981|Fumar|fumar| +E0415048|meclocycline sulphosalicylate|meclocycline sulfosalicylate| +E0415055|phentolamine methanesulphonate|phentolamine methanesulfonate| +E0415087|indinavir sulphate|indinavir sulfate| +E0415106|sulphacetamide sodium|sulfacetamide sodium| +E0415678|Darvon N|Darvon-N| +E0415847|depressurise|depressurize| +E0415848|depressurisation|depressurization| +E0415853|desensitised|desensitized| +E0415855|desulphate|desulfate| +E0415856|desynchronise|desynchronize| +E0415892|Louis A. Duhring|Louis Adolphus Duhring| +E0415892|Louis Duhring|Louis Adolphus Duhring| +E0415897|editorialise|editorialize| +E0415898|editorialisation|editorialization| +E0415899|editorialiser|editorializer| +E0415907|electrodialyse|electrodialyze| +E0415910|electro-ejaculation|electroejaculation| +E0415917|epimerise|epimerize| +E0415919|epoxidise|epoxidize| +E0415920|epoxidisation|epoxidization| +E0415928|euthanatise|euthanatize| +E0415930|fantasise|fantasize| +E0415931|feminise|feminize| +E0415932|fictionalise|fictionalize| +E0415933|fictionalisation|fictionalization| +E0415935|firefighting|fire fighting| +E0415946|focalise|focalize| +E0415947|focalisation|focalization| +E0415951|formalinise|formalinize| +E0415952|formalinisation|formalinization| +E0415955|ganglionectomise|ganglionectomize| +E0415957|gastrectomise|gastrectomize| +E0415961|glomectomise|glomectomize| +E0415967|haemoagglutinate|hemoagglutinate| +E0415968|haemoagglutination|hemoagglutination| +E0415969|hemodialyse|hemodialyze| +E0415969|haemodialyse|hemodialyze| +E0415969|haemodialyze|hemodialyze| +E0415970|haemodilute|hemodilute| +E0415978|hemispherectomise|hemispherectomize| +E0415979|haemoperfuse|hemoperfuse| +E0415991|hypersensitise|hypersensitize| +E0415992|hypersensitisation|hypersensitization| +E0415997|hypertransfusable|hypertransfusible| +E0416003|hypomineralise|hypomineralize| +E0416004|hypomineralisable|hypomineralizable| +E0416005|hypomineraliser|hypomineralizer| +E0416009|impacter|impactor| +E0416011|initialise|initialize| +E0416012|initialisation|initialization| +E0416013|insolubilise|insolubilize| +E0416014|insolubilisation|insolubilization| +E0416026|interiorise|interiorize| +E0416027|interiorisation|interiorization| +E0416030|isoimmunise|isoimmunize| +E0416031|isomerise|isomerize| +E0416035|jejunectomise|jejunectomize| +E0416040|labyrinthectomise|labyrinthectomize| +E0416041|laminectomise|laminectomize| +E0416044|laparotomise|laparotomize| +E0416049|life-saving|lifesaving| +E0416050|life-saving|lifesaving| +E0416052|lipectomise|lipectomize| +E0416055|lobectomise|lobectomize| +E0416058|lymphadenectomise|lymphadenectomize| +E0416059|lypophilise|lypophilize| +E0416060|lypophilisation|lypophilization| +E0416061|lypophiliser|lypophilizer| +E0416076|mastectomise|mastectomize| +E0416077|medullectomise|medullectomize| +E0416078|melanise|melanize| +E0416089|microcomputerise|microcomputerize| +E0416090|microcomputerisation|microcomputerization| +E0416091|microcomputerisable|microcomputerizable| +E0416105|midsized|midsize| +E0416124|moisturise|moisturize| +E0416125|moisturiser|moisturizer| +E0416141|functionalise|functionalize| +E0416142|functionalisation|functionalization| +E0416147|aetiopathogenesis|etiopathogenesis| +E0416149|haemopoiesis|hemopoiesis| +E0416158|pre-dialysis|predialysis| +E0416181|radio-immunoelectrophoresis|radioimmunoelectrophoresis| +E0416181|radio-immuno-electrophoresis|radioimmunoelectrophoresis| +E0416181|radioimmuno-electrophoresis|radioimmunoelectrophoresis| +E0416210|haemophagocytosis|hemophagocytosis| +E0416234|semisynthesise|semisynthesize| +E0416252|haemoblastosis|hemoblastosis| +E0416277|non-ionic|nonionic| +E0416278|strategical|strategic| +E0416305|entero-hepatic|enterohepatic| +E0416307|aminolaevulinic|aminolevulinic| +E0416311|socio-demographically|sociodemographically| +E0416322|bacteraemic|bacteremic| +E0416322|bacteriemic|bacteremic| +E0416326|hyperinsulinaemic|hyperinsulinemic| +E0416333|radio-enzymatic|radioenzymatic| +E0416334|radio-enzymatically|radioenzymatically| +E0416344|non pathogenic|nonpathogenic| +E0416344|non-pathogenic|nonpathogenic| +E0416357|non-metastatic|nonmetastatic| +E0416367|nontumourigenic|nontumorigenic| +E0416368|radio-autographic|radioautographic| +E0416369|non-diagnostic|nondiagnostic| +E0416372|aetiopathogenetic|etiopathogenetic| +E0416379|duodeno-gastric|duodenogastric| +E0416380|erythroleukaemic|erythroleukemic| +E0416381|hypoxaemic|hypoxemic| +E0416398|preischaemic|preischemic| +E0416404|hypertriglyceridaemic|hypertriglyceridemic| +E0416405|piezo electric|piezoelectric| +E0416405|piezo-electric|piezoelectric| +E0416414|non-pharmacologically|nonpharmacologically| +E0416416|anti-androgenic|antiandrogenic| +E0416421|non-allergic|nonallergic| +E0416423|non-atopic|nonatopic| +E0416424|radio-immunological|radioimmunological| +E0416424|radio immunological|radioimmunological| +E0416437|voltametric|voltammetric| +E0416452|hepato-splenic|hepatosplenic| +E0416466|non-immunologic|nonimmunologic| +E0416501|endotoxaemic|endotoxemic| +E0416516|haemophagocytic|hemophagocytic| +E0416522|non-hematologic|nonhematologic| +E0416522|non-haematologic|nonhematologic| +E0416522|nonhaematologic|nonhematologic| +E0416523|nonhaematologically|nonhematologically| +E0416527|non-ketotic|nonketotic| +E0416528|haemorheologic|hemorheologic| +E0416529|haemorheologically|hemorheologically| +E0416536|hydroperoxy eicosatetraenoic|hydroperoxyeicosatetraenoic| +E0416538|non-cirrhotic|noncirrhotic| +E0416548|nonhaemorrhagic|nonhemorrhagic| +E0416564|non-immunogenic|nonimmunogenic| +E0416565|non-mutagenic|nonmutagenic| +E0416569|allo-antigenic|alloantigenic| +E0416570|diarrhoeic|diarrheic| +E0416571|hypergonadotrophic|hypergonadotropic| +E0416578|hyponatraemic|hyponatremic| +E0416585|hyposmotic|hypoosmotic| +E0416598|nonhaemolytic|nonhemolytic| +E0416598|non-hemolytic|nonhemolytic| +E0416598|non-haemolytic|nonhemolytic| +E0416600|anesthaesiological|anesthesiological| +E0416601|anesthaesiologically|anesthesiologically| +E0416604|ethanesulphonic|ethanesulfonic| +E0416606|methyl mercuric|methylmercuric| +E0416609|amphotrophic|amphotropic| +E0416619|nonhaematopoietic|nonhematopoietic| +E0416623|polycythaemic|polycythemic| +E0416638|abdomino-pelvic|abdominopelvic| +E0416647|euvolaemic|euvolemic| +E0416664|non hepatic|nonhepatic| +E0416664|non-hepatic|nonhepatic| +E0416668|thrombasthaenic|thrombasthenic| +E0416674|microfluorimetric|microfluorometric| +E0416678|non-isotopic|nonisotopic| +E0416679|photo-elastic|photoelastic| +E0416699|hyperlipoproteinaemic|hyperlipoproteinemic| +E0416721|nonleukaemic|nonleukemic| +E0416721|non-leukemic|nonleukemic| +E0416721|non-leukaemic|nonleukemic| +E0416722|non-monotonic|nonmonotonic| +E0416727|hypogonadotropic|hypogonadotrophic| +E0416730|non genetic|nongenetic| +E0416730|non-genetic|nongenetic| +E0416732|normoprolactinaemic|normoprolactinemic| +E0416739|foetotoxic|fetotoxic| +E0416740|foetotoxicity|fetotoxicity| +E0416744|non-cardiogenic|noncardiogenic| +E0416749|propanesulphonic|propanesulfonic| +E0416752|trinitrobenzenesulphonic|trinitrobenzenesulfonic| +E0416753|analbuminaemic|analbuminemic| +E0416756|cyto-fluorimetric|cytofluorimetric| +E0416775|radio-diagnostic|radiodiagnostic| +E0416791|non-pancreatic|nonpancreatic| +E0416805|anti-orthostatic|antiorthostatic| +E0416810|histo-enzymatic|histoenzymatic| +E0416814|keto-isocaproic|ketoisocaproic| +E0416832|intraamniotic|intra-amniotic| +E0416832|intra-amnionic|intra-amniotic| +E0416832|intraamnionic|intra-amniotic| +E0416833|intraamniotically|intra-amniotically| +E0416833|intra-amnionically|intra-amniotically| +E0416833|intraamnionically|intra-amniotically| +E0416857|extra-cytoplasmic|extracytoplasmic| +E0416859|gastro-enteropancreatic|gastroenteropancreatic| +E0416859|gastro-entero-pancreatic|gastroenteropancreatic| +E0416873|paedodontic|pedodontic| +E0416878|retro-hepatic|retrohepatic| +E0416881|trifluoromethanesulphonic|trifluoromethanesulfonic| +E0416887|galactosaemic|galactosemic| +E0416890|hyperammonaemic|hyperammonemic| +E0416891|hyperbilirubinaemic|hyperbilirubinemic| +E0416897|nonuraemic|nonuremic| +E0416903|radio-immunometric|radioimmunometric| +E0416903|radio immunometric|radioimmunometric| +E0416908|aorto-enteric|aortoenteric| +E0416933|calcaemic|calcemic| +E0416952|normolipidaemic|normolipidemic| +E0416964|Ayurvedic|ayurvedic| +E0416966|bilio-pancreatic|biliopancreatic| +E0416971|entero-pancreatic|enteropancreatic| +E0416976|non-rheumatic|nonrheumatic| +E0416978|opto-electronic|optoelectronic| +E0416979|opto-electronically|optoelectronically| +E0416982|piperazineethanesulphonic|piperazineethanesulfonic| +E0416984|regio-specific|regiospecific| +E0416986|thrombohaemorrhagic|thrombohemorrhagic| +E0417011|non-stenotic|nonstenotic| +E0417011|non stenotic|nonstenotic| +E0417012|non-thrombogenic|nonthrombogenic| +E0417037|infra-hepatic|infrahepatic| +E0417039|microfilaraemic|microfilaremic| +E0417042|non parasitic|nonparasitic| +E0417042|non-parasitic|nonparasitic| +E0417050|postischaemically|postischemically| +E0417056|subanaesthetic|subanesthetic| +E0417075|dismyelopoietic|dysmyelopoietic| +E0417080|hypoinsulinaemic|hypoinsulinemic| +E0417091|nonbacteraemic|nonbacteremic| +E0417092|non-epileptic|nonepileptic| +E0417102|agammaglobulinaemic|agammaglobulinemic| +E0417112|haemodialytic|hemodialytic| +E0417118|lipaemic|lipemic| +E0417139|chloromercuriphenylsulphonic|chloromercuriphenylsulfonic| +E0417145|extra-thymic|extrathymic| +E0417158|immunohaematologic|immunohematologic| +E0417162|nonanaemic|nonanemic| +E0417162|non-anemic|nonanemic| +E0417162|non-anaemic|nonanemic| +E0417162|non anemic|nonanemic| +E0417162|non anaemic|nonanemic| +E0417166|oligomenorrhoeic|oligomenorrheic| +E0417173|radio-telemetric|radiotelemetric| +E0417204|granulo-monocytic|granulomonocytic| +E0417209|hypolipaemic|hypolipemic| +E0417210|lymphohaematopoietic|lymphohematopoietic| +E0417215|neuro-otologic|neurotologic| +E0417216|non cyclic|noncyclic| +E0417216|non-cyclic|noncyclic| +E0417218|non-narcotic|nonnarcotic| +E0417219|non-spherocytic|nonspherocytic| +E0417247|clinico-radiological|clinicoradiological| +E0417250|dimethyl maleic|dimethylmaleic| +E0417254|haemorrheologic|hemorrheologic| +E0417255|haemorrheologically|hemorrheologically| +E0417259|hypogammaglobulinaemic|hypogammaglobulinemic| +E0417268|methoxy mandelic|methoxymandelic| +E0417279|non-metric|nonmetric| +E0417313|chloromercuribenzenesulphonic|chloromercuribenzenesulfonic| +E0417369|bio-mimetic|biomimetic| +E0417372|cholesterolaemic|cholesterolemic| +E0417387|hypo-allergenic|hypoallergenic| +E0417388|hypotriglyceridaemic|hypotriglyceridemic| +E0417393|jejuno-gastric|jejunogastric| +E0417394|lymphohaemopoietic|lymphohemopoietic| +E0417397|naphthalenesulphonic|naphthalenesulfonic| +E0417402|papulo-necrotic|papulonecrotic| +E0417427|benzenesulphonic|benzenesulfonic| +E0417429|bromo-cyclic|bromocyclic| +E0417429|bromo cyclic|bromocyclic| +E0417443|isovolaemic|isovolemic| +E0417455|non-therapeutic|nontherapeutic| +E0417457|paraproteinaemic|paraproteinemic| +E0417473|afibrinogenaemic|afibrinogenemic| +E0417496|glomerulo-nephritic|glomerulonephritic| +E0417503|hyperphenylalaninaemic|hyperphenylalaninemic| +E0417524|anaesthesist|anesthesist| +E0417529|marxist|Marxist| +E0417530|marxist|Marxist| +E0417537|leninist|Leninist| +E0417538|leninist|Leninist| +E0417559|post-injection|postinjection| +E0417560|sulphation|sulfation| +E0417570|immunolocalisation|immunolocalization| +E0417571|immunolocalise|immunolocalize| +E0417574|aromatise|aromatize| +E0417575|arborisation|arborization| +E0417576|arborise|arborize| +E0417577|colocalisation|colocalization| +E0417578|haemosorption|hemosorption| +E0417584|radiosensitisation|radiosensitization| +E0417584|radio-sensitization|radiosensitization| +E0417605|post-transplantation|posttransplantation| +E0417606|radio-protection|radioprotection| +E0417606|radio protection|radioprotection| +E0417616|alloimmunise|alloimmunize| +E0417630|Orthopantomograph|orthopantomograph| +E0417642|mid-gestation|midgestation| +E0417643|mid-gestation|midgestation| +E0417654|immunoneutralisation|immunoneutralization| +E0417655|immunoneutralise|immunoneutralize| +E0417661|pre-ejection|preejection| +E0417662|regionalisation|regionalization| +E0417663|regionalise|regionalize| +E0417672|reepithelialisation|reepithelialization| +E0417672|re-epithelialization|reepithelialization| +E0417672|re-epithelialisation|reepithelialization| +E0417680|over-stimulation|overstimulation| +E0417688|polyploidisation|polyploidization| +E0417689|decidualisation|decidualization| +E0417690|decidualise|decidualize| +E0417691|re-exploration|reexploration| +E0417692|re-explore|reexplore| +E0417714|postimmunisation|postimmunization| +E0417718|chemoembolisation|chemoembolization| +E0417734|labilisation|labilization| +E0417735|labilise|labilize| +E0417738|actualisation|actualization| +E0417739|actualise|actualize| +E0417764|dispensarisation|dispensarization| +E0417765|dispensarise|dispensarize| +E0417781|copolymerisation|copolymerization| +E0417782|copolymerise|copolymerize| +E0417791|crossreact|cross-react| +E0417792|crossreactive|cross-reactive| +E0417793|crossreactivity|cross-reactivity| +E0417793|cross reactivity|cross-reactivity| +E0417811|microembolisation|microembolization| +E0417812|microembolise|microembolize| +E0417825|non-prescription|nonprescription| +E0417826|recolonisation|recolonization| +E0417833|haemocoagulation|hemocoagulation| +E0417834|haemocoagulate|hemocoagulate| +E0417839|postfertilisation|postfertilization| +E0417850|formalisation|formalization| +E0417861|verbalisation|verbalization| +E0417862|circularisation|circularization| +E0417864|desulphation|desulfation| +E0417882|curarisation|curarization| +E0417883|curarise|curarize| +E0417889|microcatheterisation|microcatheterization| +E0417890|microcatheterise|microcatheterize| +E0417895|autoimmunisation|autoimmunization| +E0417896|autoimmunise|autoimmunize| +E0417899|capillarisation|capillarization| +E0417910|malignisation|malignization| +E0417911|malignise|malignize| +E0417914|radiolocalise|radiolocalize| +E0417919|spinalisation|spinalization| +E0417923|cardio-acceleration|cardioacceleration| +E0417933|mm Hg|mmHg| +E0417948|BMAX|Bmax| +E0417961|tumour growth|tumor growth| +E0417963|toxic goitre|toxic goiter| +E0417973|acad|Acad| +E0417974|Natl Acad Sci|Natl. Acad. Sci.| +E0417981|radio-pharmaceutical|radiopharmaceutical| +E0417996|in vitro fertilisation|in vitro fertilization| +E0418035|receptor operated channel|receptor-operated channel| +E0418037|Apr.|Apr| +E0418042|amoebic prevalence rate|amebic prevalence rate| +E0418049|evening primrose oil|evening primrose-oil| +E0418051|inservice|in-service| +E0418059|non significant|nonsignificant| +E0418059|non-significant|nonsignificant| +E0418070|opiate analgaesia|opiate analgesia| +E0418074|methyl-arginine|methylarginine| +E0418078|coeruleus|caeruleus| +E0418078|ceruleus|caeruleus| +E0418079|coeruleus|caeruleus| +E0418079|ceruleus|caeruleus| +E0418080|locus coeruleus|locus caeruleus| +E0418080|locus ceruleus|locus caeruleus| +E0418084|automated physiological profile|automated physiologic profile| +E0418111|post-transplant|posttransplant| +E0418112|post-transplant|posttransplant| +E0418128|myo-metrial|myometrial| +E0418135|tmax|Tmax| +E0418140|co-transport|cotransport| +E0418141|co-transporter|cotransporter| +E0418152|NOE|nOe| +E0418171|RecA|recA| +E0418171|Rec A|recA| +E0418182|Tx|tx| +E0418182|T|tx| +E0418183|T|Tx| +E0418209|PX|Px| +E0418230|respiratory centre|respiratory center| +E0418260|muco-ciliary|mucociliary| +E0418262|fine needle aspiration|fine-needle aspiration| +E0418262|fineneedle aspiration|fine-needle aspiration| +E0418264|Dx|dx| +E0418298|carnitine palmitoyltransferase|carnitine palmityl transferase| +E0418308|down-regulate|downregulate| +E0418308|down regulate|downregulate| +E0418309|down-regulation|downregulation| +E0418309|down regulation|downregulation| +E0418333|Caco 2 cell|Caco-2 cell| +E0418338|anti-retroviral|antiretroviral| +E0418346|non-obese|nonobese| +E0418347|immunolabelling|immunolabeling| +E0418348|TD|td| +E0418363|tumour dose|tumor dose| +E0418372|non-peptide|nonpeptide| +E0418375|PCC|pcc| +E0418384|poison control center|Poison Control Center| +E0418422|leucocytosis-inducing factor|leukocytosis-inducing factor| +E0418423|leucocyte inhibitory factor|leukocyte inhibitory factor| +E0418424|leukaemia-inhibiting factor|leukemia-inhibiting factor| +E0418424|leucemia-inhibiting factor|leukemia-inhibiting factor| +E0418424|leucaemia-inhibiting factor|leukemia-inhibiting factor| +E0418440|breast tumour|breast tumor| +E0418441|brain tumour|brain tumor| +E0418444|bladder tumour|bladder tumor| +E0418446|oxy|OXY| +E0418449|madin-darby canine kidney cell|Madin-Darby canine kidney cell| +E0418492|radio-chemically|radiochemically| +E0418495|sRBC|SRBC| +E0418509|RG|Rg| +E0418514|anti-double-stranded DNA|anti-dsDNA| +E0418560|spatio-temporal|spatiotemporal| +E0418569|non-rebreathing|nonrebreathing| +E0418579|inter-rater|interrater| +E0418605|post-transplantation|posttransplantation| +E0418614|SSB|ssb| +E0418616|DNA-SSB|DNA-ssb| +E0418632|non uniform|nonuniform| +E0418632|non-uniform|nonuniform| +E0418637|pancreas after kidney transplant|pancreas-after-kidney transplant| +E0418643|thiobarbituric acid-reactive substance|thiobarbituric acid reactive substance| +E0418656|Chlamydomonas reinhardti|Chlamydomonas reinhardtii| +E0418665|radio-actively|radioactively| +E0418678|total hydroxylapatite|total hydroxyapatite| +E0418680|Treponema haemagglutination|Treponema hemagglutination| +E0418691|morpho-functional|morphofunctional| +E0418693|post-exercise|postexercise| +E0418694|post-exercise|postexercise| +E0418697|in-center haemodialysis|in-center hemodialysis| +E0418732|peptidyl-prolyl isomerase|peptidylprolyl isomerase| +E0418732|peptidyl prolyl isomerase|peptidylprolyl isomerase| +E0418739|obsessive-compulsive disorder|obsessive compulsive disorder| +E0418745|Nissl-stain|Nissl stain| +E0418746|Nissl-stain|Nissl stain| +E0418762|Methylococcus capsulatus (Bath)|Methylococcus capsulatus Bath| +E0418766|acetoxymethylester|acetoxymethyl ester| +E0418769|pfu|PFU| +E0418770|pock forming unit|pock-forming unit| +E0418771|plaque forming unit|plaque-forming unit| +E0418780|Haemoglobin Hopkins-II|Hemoglobin Hopkins-II| +E0418782|Haemoglobin Hopkins-I|Hemoglobin Hopkins-I| +E0418826|paediatric nurse practitioner|pediatric nurse practitioner| +E0418830|Haemophilus influenzae type B|Haemophilus influenzae type b| +E0418893|parvo-cellular|parvocellular| +E0418894|MacIntosh|Macintosh| +E0418898|r-HuEPO|rHuEPO| +E0418926|circum-sporozoite|circumsporozoite| +E0418929|cryo electron microscopy|cryoelectron microscopy| +E0418929|cryo-electron microscopy|cryoelectron microscopy| +E0418930|cryo-electron micrograph|cryoelectron micrograph| +E0418930|cryo electron micrograph|cryoelectron micrograph| +E0418931|cryo-microscopy|cryomicroscopy| +E0418931|cryo microscopy|cryomicroscopy| +E0418932|cryo-transmission electron microscopy|cryotransmission electron microscopy| +E0418932|cryo transmission electron microscopy|cryotransmission electron microscopy| +E0418933|cryo-section|cryosection| +E0418933|cryo section|cryosection| +E0418938|t-butyl hydroperoxide|t-butylhydroperoxide| +E0418941|chemo-radiotherapy|chemoradiotherapy| +E0418974|CCR protein|ccr protein| +E0418975|cold circadian rhythm-RNA binding protein|cold-circadian rhythm-RNA binding protein| +E0418982|buthionine sulphoximine|buthionine sulfoximine| +E0419018|cranio-maxillo-facial|cranio-maxillofacial| +E0419018|craniomaxillofacial|cranio-maxillofacial| +E0419022|craniorachischisis|cranio-rachischisis| +E0419031|non-muscle|nonmuscle| +E0419044|VV|vv| +E0419048|tumour glycoprotein assay|tumor glycoprotein assay| +E0419050|total gonadotrophin activity|total gonadotropin activity| +E0419062|hepato-coeliac|hepato-celiac| +E0419066|endothelial-leucocyte adhesion molecule|endothelial-leukocyte adhesion molecule| +E0419068|endothelial-leucocyte adhesion molecule-1|endothelial-leukocyte adhesion molecule-1| +E0419075|ecto-domain|ectodomain| +E0419124|oestradiol cyclopentane propionate|estradiol cyclopentane propionate| +E0419132|sub-domain|subdomain| +E0419133|FMRF-amide|FMRFamide| +E0419135|FMRFamide-like|FMRFamidelike| +E0419136|phenylalanyl-methionyl-arginyl-phenylalaninamide-like|phenylalanyl-methionyl-arginyl-phenylalaninamidelike| +E0419153|heminested|hemi-nested| +E0419154|hemi-epiphyseal|hemiepiphyseal| +E0419155|hemiatrophy|hemi-atrophy| +E0419156|hemimethylated|hemi-methylated| +E0419162|hemipelvis|hemi-pelvis| +E0419167|non-responsive|nonresponsive| +E0419204|femorofemoral|femoro-femoral| +E0419209|diisopropylfluorophosphate|diisopropyl fluorophosphate| +E0419216|semi-thin|semithin| +E0419228|anti-dromically|antidromically| +E0419233|haemophagocytic lymphohistiocytosis|hemophagocytic lymphohistiocytosis| +E0419236|postpill-amenorrhea|postpill amenorrhea| +E0419236|post-pill amenorrhea|postpill amenorrhea| +E0419236|postpill amenorrhoea|postpill amenorrhea| +E0419236|postpill-amenorrhoea|postpill amenorrhea| +E0419236|post-pill amenorrhoea|postpill amenorrhea| +E0419237|postpartum amenorrhoea|postpartum amenorrhea| +E0419241|post-pill|postpill| +E0419242|post-pill|postpill| +E0419254|mono-exponential|monoexponential| +E0419256|Salmonella heidelburg|Salmonella heidelberg| +E0419257|QoL|QOL| +E0419267|haemagglutinating encephalomyelitis virus|hemagglutinating encephalomyelitis virus| +E0419287|Meth-A|Meth A| +E0419292|bio-available|bioavailable| +E0419303|pentosephosphate pathway|pentose phosphate pathway| +E0419321|holoenzyme|holo-enzyme| +E0419331|holo human chorionic gonadotrophin|holo human chorionic gonadotropin| +E0419350|high tech|high-tech| +E0419350|hi tech|high-tech| +E0419350|hi-tech|high-tech| +E0419351|low tech|low-tech| +E0419356|nonimmunological contact urticaria|nonimmunologic contact urticaria| +E0419367|Kenner-foecal medium|Kenner-fecal medium| +E0419368|KF|Kf| +E0419375|GPIb|GpIb| +E0419377|Frisian|Friesian| +E0419378|Frisian|Friesian| +E0419420|non-stimulating|nonstimulating| +E0419428|nortryptyline|nortriptyline| +E0419435|ALD|Ald| +E0419442|membrane impermeant|membrane-impermeant| +E0419443|membrane impermeance|membrane-impermeance| +E0419456|ileorectal|ileo-rectal| +E0419470|thiol-ester|thiolester| +E0419471|thiol-ester|thiolester| +E0419477|high molecular mass kininogen|high-molecular-mass kininogen| +E0419479|heel to knee|heel-to-knee| +E0419480|heel to knee|heel-to-knee| +E0419481|hand-to-knee|hand to knee| +E0419482|hand-to-knee|hand to knee| +E0419483|heat killed|heat-killed| +E0419484|non-existent|nonexistent| +E0419485|non-lymphoid|nonlymphoid| +E0419494|inter-generational|intergenerational| +E0419507|extra-cardiac|extracardiac| +E0419509|international normalised ratio|international normalized ratio| +E0419510|cranio-mandibular|craniomandibular| +E0419513|enterochromaffinlike|enterochromaffin-like| +E0419521|pre-dialysis|predialysis| +E0419524|post-contrast|postcontrast| +E0419525|post-contrast|postcontrast| +E0419540|oxygen carbon sulphide|oxygen carbon sulfide| +E0419547|constitutional aplastic anaemia|constitutional aplastic anemia| +E0419552|carotid audio-frequency analysis|carotid audiofrequency analysis| +E0419552|carotid audio frequency analysis|carotid audiofrequency analysis| +E0419560|moderate aplastic anaemia|moderate aplastic anemia| +E0419569|PrV|PRV| +E0419572|motor-evoked potential|motor evoked potential| +E0419593|nonspecific aortic arteritis|nonspecific aortoarteritis| +E0419598|naphthalene acetic acid|naphthaleneacetic acid| +E0419602|non-isotopically|nonisotopically| +E0419609|principal neutralising determinant|principal neutralizing determinant| +E0419638|acid detergent fibre|acid detergent fiber| +E0419639|actin depolymerising factor|actin depolymerizing factor| +E0419648|naevocellular naevus|nevocellular nevus| +E0419650|low-molecular-weight|low molecular weight| +E0419659|TID|tid| +E0419668|vasoocclusion|vaso-occlusion| +E0419672|vasoocclusive|vaso-occlusive| +E0419680|dorsovegetal|dorso-vegetal| +E0419681|dorsotemporal|dorso-temporal| +E0419682|dorsolateral|dorso-lateral| +E0419683|dorsoventral|dorso-ventral| +E0419684|dorsocaudal|dorso-caudal| +E0419690|dorsoventrally|dorso-ventrally| +E0419692|co-treatment|cotreatment| +E0419693|co-treat|cotreat| +E0419714|non-parenchymal|nonparenchymal| +E0419719|haematopoietic progenitor transplant|hematopoietic progenitor transplant| +E0419720|hypothromboplastinaemia|hypothromboplastinemia| +E0419722|house-tree-person test|House-Tree-Person test| +E0419725|mono-functional|monofunctional| +E0419773|soret region|Soret region| +E0419796|non-seminomatous|nonseminomatous| +E0419810|breath-holding|breathholding| +E0419827|para-spinal|paraspinal| +E0419847|automated computerised axial tomography|automated computerized axial tomography| +E0419849|Bjork-Shiley convexoconcave valve|Bjork-Shiley convexo-concave valve| +E0419849|Bjork-Shiley convexo concave valve|Bjork-Shiley convexo-concave valve| +E0419851|non-fucosylated|nonfucosylated| +E0419854|tracheo-oesophageal|tracheo-esophageal| +E0419854|tracheoesophageal|tracheo-esophageal| +E0419854|tracheooesophageal|tracheo-esophageal| +E0419855|tracheo-oesophageal fistula|tracheo-esophageal fistula| +E0419863|lysine-vasopressin|lysine vasopressin| +E0419871|foeto-maternal|feto-maternal| +E0419871|fetomaternal|feto-maternal| +E0419871|foetomaternal|feto-maternal| +E0419872|foeto-foetal|feto-fetal| +E0419873|foeto-placental|feto-placental| +E0419873|fetoplacental|feto-placental| +E0419873|foetoplacental|feto-placental| +E0419874|alpha feto-protein|alpha feto protein| +E0419874|alpha-feto-protein|alpha feto protein| +E0419874|alpha foeto protein|alpha feto protein| +E0419874|alpha foeto-protein|alpha feto protein| +E0419874|alpha-foeto-protein|alpha feto protein| +E0419874|alpha fetoprotein|alpha feto protein| +E0419874|alpha-fetoprotein|alpha feto protein| +E0419874|alpha foetoprotein|alpha feto protein| +E0419874|alpha-foetoprotein|alpha feto protein| +E0419876|maternal serum alpha foeto-protein|maternal serum alpha feto-protein| +E0419876|maternal serum alpha feto protein|maternal serum alpha feto-protein| +E0419876|maternal serum alpha foeto protein|maternal serum alpha feto-protein| +E0419876|maternal serum alpha-feto-protein|maternal serum alpha feto-protein| +E0419876|maternal serum alpha-foeto-protein|maternal serum alpha feto-protein| +E0419877|non-receptor|nonreceptor| +E0419880|tubulointerstitial nephritis|tubulo-interstitial nephritis| +E0419881|tubulo-interstitial nephropathy|tubulointerstitial nephropathy| +E0419882|tubulo-vesicular|tubulovesicular| +E0419883|tubulo-papillary|tubulopapillary| +E0419884|tubulovillous|tubulo-villous| +E0419885|tubulofilamentous|tubulo-filamentous| +E0419886|tubuloglomerular|tubulo-glomerular| +E0419918|auto-regressive|autoregressive| +E0419920|dysplasminogenaemia|dysplasminogenemia| +E0419938|histostructurally|histo-structurally| +E0419939|histomorphometry|histo-morphometry| +E0419942|pregnancy induced hypertension|pregnancy-induced hypertension| +E0419944|periventricular-intraventricular haemorrhage|periventricular-intraventricular hemorrhage| +E0419947|wild-type|wildtype| +E0419947|wild type|wildtype| +E0419948|wild type|wildtype| +E0419965|high molecular weight|high-molecular-weight| +E0419974|oro-coecal|oro-cecal| +E0419974|orocecal|oro-cecal| +E0419974|orocoecal|oro-cecal| +E0419974|orocaecal|oro-cecal| +E0419974|oro-caecal|oro-cecal| +E0419976|orofacial|oro-facial| +E0419977|oropharynx|oro-pharynx| +E0419979|oro-oesophageal|oro-esophageal| +E0419980|orofaciodigital syndrome|oro-facio-digital syndrome| +E0419986|haemopoietic histocompatibility|hemopoietic histocompatibility| +E0419993|haemorrhagic hypotension|hemorrhagic hypotension| +E0419995|hepatic haemangioma|hepatic hemangioma| +E0419996|haemophagocytic histiocytosis|hemophagocytic histiocytosis| +E0419996|hematophagic histiocytosis|hemophagocytic histiocytosis| +E0419996|haematophagic histiocytosis|hemophagocytic histiocytosis| +E0419998|haemodialysis hypotension|hemodialysis hypotension| +E0419999|hereditary haemochromatosis|hereditary hemochromatosis| +E0420000|hypergastrinaemic hyperchlorhydria|hypergastrinemic hyperchlorhydria| +E0420004|healthy haemophiliac|healthy hemophiliac| +E0420009|Hamburger and Hamilton's stage|Hamburger and Hamilton stage| +E0420023|tec kinase|Tec kinase| +E0420028|cardiac pulmonary oedema|cardiac pulmonary edema| +E0420047|non-target|nontarget| +E0420051|micro-environmental|microenvironmental| +E0420061|beta fructofuranosidase|beta-fructofuranosidase| +E0420067|centromeric desoxyribonucleic acid|centromeric deoxyribonucleic acid| +E0420075|mucosal oesophageal cancer|mucosal esophageal cancer| +E0420077|conceptual metabolisable energy|conceptual metabolizable energy| +E0420090|transcatheter arterial embolisation|transcatheter arterial embolization| +E0420091|transarterial embolisation|transarterial embolization| +E0420107|cross sectionally|cross-sectionally| +E0420128|landrace|Landrace| +E0420131|single-particle tracking|single particle tracking| +E0420141|anti-phosphotyrosine|antiphosphotyrosine| +E0420143|HIV coinfected|HIV-coinfected| +E0420150|waist/hip ratio|waist-hip ratio| +E0420151|waist to hip ratio|waist-to-hip ratio| +E0420170|lower oesophageal contractility|lower esophageal contractility| +E0420173|micromole|micromol| +E0420173|micro-mole|micromol| +E0420175|very-low-birth-weight infant|very low birth weight infant| +E0420175|very low birthweight infant|very low birth weight infant| +E0420175|very-low-birthweight infant|very low birth weight infant| +E0420180|capillary refill time|capillary refilling time| +E0420182|cortisone-resistant thymocyte|cortisone resistant thymocyte| +E0420185|computerised renal tomography|computerized renal tomography| +E0420189|cathode ray tube|cathode-ray tube| +E0420191|CRT|Crt| +E0420207|ventriculoperitoneal|ventriculo-peritoneal| +E0420209|ventriculocoronary|ventriculo-coronary| +E0420212|ventriculovenous|ventriculo-venous| +E0420216|histo-cytologic|histocytologic| +E0420217|histo-cytologically|histocytologically| +E0420223|NAChR|nAChR| +E0420228|post-exercise ischemia|postexercise ischemia| +E0420228|postexercise ischaemia|postexercise ischemia| +E0420228|post-exercise ischaemia|postexercise ischemia| +E0420232|shar-pei|shar pei| +E0420235|abnormal illness behaviour|abnormal illness behavior| +E0420239|AIB|Aib| +E0420251|McAB|McAb| +E0420251|MCAB|McAb| +E0420258|self-organising map|self-organizing map| +E0420262|haemoglobinuric bilious fever|hemoglobinuric bilious fever| +E0420283|foetal heart rate|fetal heart rate| +E0420296|non-pharmacologic|nonpharmacologic| +E0420315|antigen-neutralising capacity|antigen-neutralizing capacity| +E0420316|acid neutralisation capacity|acid neutralization capacity| +E0420333|dehydroepiandrosterone sulphate|dehydroepiandrosterone sulfate| +E0420334|isoquinolinesulphonamide|isoquinolinesulfonamide| +E0420356|Masson's tumour|Masson's tumor| +E0420365|phenyl-tert-butylnitrone|phenyl-tert-butyl nitrone| +E0420396|radio-resistance|radioresistance| +E0420396|radio resistance|radioresistance| +E0420402|extended release|extended-release| +E0420405|pre-initiation|preinitiation| +E0420417|inter-chain|interchain| +E0420428|colour dilution alopecia|color dilution alopecia| +E0420429|congenital dyserythropoietic anaemia|congenital dyserythropoietic anemia| +E0420433|certified dental assistant|Certified Dental Assistant| +E0420440|cardio-protection|cardioprotection| +E0420447|M. avium intracellulare|M. avium-intracellulare| +E0420459|acid citrate dextrose|acid-citrate-dextrose| +E0420483|intra-membrane|intramembrane| +E0420488|sub-dermal|subdermal| +E0420494|meningo-basal|mediobasal| +E0420504|cystoid macular oedema|cystoid macular edema| +E0420517|hydrolysability|hydrolyzability| +E0420518|nonhydrolyzable|non-hydrolyzable| +E0420518|non-hydrolysable|non-hydrolyzable| +E0420518|nonhydrolysable|non-hydrolyzable| +E0420522|pre-immune|preimmune| +E0420526|non-desmosomal|nondesmosomal| +E0420558|rate pressure product|rate-pressure product| +E0420562|visuo-motor|visuomotor| +E0420571|afro|Afro| +E0420572|afro|Afro| +E0420589|Alma-Ata|Alma Ata| +E0420640|barb|Barb| +E0420641|barb|Barb| +E0420696|Capitol|capitol| +E0420700|carboxy terminus|carboxy-terminus| +E0420701|care taker|caretaker| +E0420701|care-taker|caretaker| +E0420731|CPU|cpu| +E0420742|cummin|cumin| +E0420750|Democrat|democrat| +E0420768|ear-drum|eardrum| +E0420768|ear drum|eardrum| +E0420785|Roux en Y|Roux-en-Y| +E0420828|flyer|flier| +E0420831|to and fro|to-and-fro| +E0420847|generalised estimating equation|generalized estimating equation| +E0420855|Grebe's syndrome|Grebe syndrome| +E0420870|sulphur hexafluoride|sulfur hexafluoride| +E0420881|infraoccluded|infra-occluded| +E0420908|Leghorn|leghorn| +E0420920|human herpes virus|human herpesvirus| +E0420920|human herpes-virus|human herpesvirus| +E0420921|HHV8|HHV-8| +E0420922|human herpesvirus 8|human herpes virus 8| +E0420922|human herpes-virus 8|human herpes virus 8| +E0420924|Kaposi's-sarcoma-associated herpesvirus|Kaposi's sarcoma-associated herpesvirus| +E0420924|Kaposi's sarcoma-associated herpes virus|Kaposi's sarcoma-associated herpesvirus| +E0420924|Kaposi's-sarcoma-associated herpes-virus|Kaposi's sarcoma-associated herpesvirus| +E0420924|Kaposi's sarcoma-associated herpes-virus|Kaposi's sarcoma-associated herpesvirus| +E0420926|HCQ|hcq| +E0420933|combined familial hyperlipidaemia|combined familial hyperlipidemia| +E0420936|Cfh|cfh| +E0420959|AIDS dementia complex|AIDS-dementia complex| +E0420984|food-borne intoxication|foodborne intoxication| +E0420985|food-borne disease|foodborne disease| +E0420996|soluble tumour necrosis factor receptor|soluble tumor necrosis factor receptor| +E0421004|microm|microM| +E0421012|dox|Dox| +E0421027|soluble tumour necrosis factor|soluble tumor necrosis factor| +E0421031|DNL|dnl| +E0421035|disseminated necrotising leukoencephalopathy|disseminated necrotizing leukoencephalopathy| +E0421035|disseminated necrotising leucoencephalopathy|disseminated necrotizing leukoencephalopathy| +E0421036|tumor-draining lymph node lymphocyte|tumor-draining lymphnode lymphocyte| +E0421036|tumour-draining lymphnode lymphocyte|tumor-draining lymphnode lymphocyte| +E0421036|tumour-draining lymph node lymphocyte|tumor-draining lymphnode lymphocyte| +E0421038|hepatic de novo lipogenesis|de novo hepatic lipogenesis| +E0421049|multi-drug resistant|multidrug resistant| +E0421050|multi-drug resistance|multidrug resistance| +E0421057|ovine corticotropin-releasing hormone|ovine corticotropin releasing hormone| +E0421070|VX|Vx| +E0421145|homoiothermal|homeothermal| +E0421145|homothermal|homeothermal| +E0421196|hyperestrinaemia|hyperestrinemia| +E0421200|hydromorphon|Hydromorphon| +E0421205|previa|praevia| +E0421210|puromycin N-acetyltransferase gene|puromycin acetyltransferase gene| +E0421210|puromycin N-acetyl transferase gene|puromycin acetyltransferase gene| +E0421211|puromycin N-acetyltransferase|puromycin acetyltransferase| +E0421211|puromycin N-acetyl transferase|puromycin acetyltransferase| +E0421216|hypoferraemic|hypoferremic| +E0421219|oestrous|estruous| +E0421234|pileated|piliated| +E0421238|skim milk|skim-milk| +E0421238|skimmilk|skim-milk| +E0421248|intra vitam|intravitam| +E0421248|intra-vitam|intravitam| +E0421251|humourism|humorism| +E0421257|MORT-1|Mort-1| +E0421260|pre-bereavement|prebereavement| +E0421261|pre-bereavement|prebereavement| +E0421278|haemorrhagic colitis|hemorrhagic colitis| +E0421279|haemoglobin concentration|hemoglobin concentration| +E0421286|non-small cell carcinoma|non-small-cell carcinoma| +E0421290|histo-pathological|histopathological| +E0421301|hypercholesteraemia|hypercholesteremia| +E0421302|hypercholesteraemic|hypercholesteremic| +E0421303|hyperferricaemia|hyperferricemia| +E0421305|hypocholesteraemia|hypocholesteremia| +E0421306|hypocholesteraemic|hypocholesteremic| +E0421318|idiopathetic steatorrhoea|idiopathetic steatorrhea| +E0421353|lateralis grey column|lateralis gray column| +E0421357|legitimise|legitimize| +E0421358|legitimisation|legitimization| +E0421360|leucocytal|leukocytal| +E0421361|laevorotary|levorotary| +E0421382|mastich|mastiche| +E0421382|mastic|mastiche| +E0421416|morpho-metrical|morphometrical| +E0421422|myo-electrical|myoelectrical| +E0421432|nephraemia|nephremia| +E0421487|otacariasis|otocariasis| +E0421489|out of doors|out-of-doors| +E0421498|pancreotropic|pancreatropic| +E0421528|pharmaco-kinetic|pharmacokinetic| +E0421535|phloridzinise|phloridzinize| +E0421542|physiological amenorrhoea|physiological amenorrhea| +E0421582|pykno-epilepsy|pyknoepilepsy| +E0421582|pykno epilepsy|pyknoepilepsy| +E0421592|chinacrine|chinacrin| +E0421686|mitre|miter| +E0421690|postimmunisation|postimmunization| +E0421695|problem-solving information|problem solving information| +E0421702|diasone|Diasone| +E0421714|Leukonostoc|Leuconostoc| +E0421735|transmittible|transmittable| +E0421740|tri-chromatic|trichromatic| +E0421759|variolisation|variolization| +E0421762|vesico-colic|vesicocolic| +E0421776|somaesthetic|somesthetic| +E0421798|subarachnoidal haemorrhage|subarachnoidal hemorrhage| +E0421855|A-1|A1| +E0421870|mesmerisation|mesmerization| +E0421876|cross-reaction|crossreaction| +E0421876|cross reaction|crossreaction| +E0421882|crepe|crape| +E0421883|fistula-in-ano|fistula in ano| +E0421887|Dioctophyme renale|Dioctophyma renale| +E0421888|Dioctophyme|Dioctophyma| +E0421896|dexter|Dexter| +E0421912|non-emergency|nonemergency| +E0421914|Kirghiz Republic|Kirgiz Republic| +E0421917|Quillaia saponaria|Quillaja saponaria| +E0421918|Quillaja saponaria molina|Quillaja saponaria Molina| +E0421918|Quillaia saponaria Molina|Quillaja saponaria Molina| +E0421977|adreno-genital|adrenogenital| +E0421978|adreno-receptor|adrenoreceptor| +E0421979|alpha-adreno-receptor|alpha-adrenoreceptor| +E0421979|alpha adrenoreceptor|alpha-adrenoreceptor| +E0421979|alpha adreno-receptor|alpha-adrenoreceptor| +E0421980|beta-adreno-receptor|beta-adrenoreceptor| +E0421980|beta adrenoreceptor|beta-adrenoreceptor| +E0421980|beta adreno-receptor|beta-adrenoreceptor| +E0421981|adreno-renal|adrenorenal| +E0421982|adreno-gonadal|adrenogonadal| +E0422052|acetylphenyl-hydrazine|acetylphenyl hydrazine| +E0422086|Actinobacillus actinomycetem-comitans|Actinobacillus actinomycetem comitans| +E0422086|Actinobacillus actinomycetemcomitans|Actinobacillus actinomycetem comitans| +E0422087|A. actinomycetem-comitans|A. actinomycetem comitans| +E0422087|A. actinomycetemcomitans|A. actinomycetem comitans| +E0422116|adeno associated|adeno-associated| +E0422116|adenoassociated|adeno-associated| +E0422131|adenylyl cyclase|adenylylcyclase| +E0422135|Adk|AdK| +E0422135|ADK|AdK| +E0422144|adult-like|adultlike| +E0422146|A. aegypti|Ae. aegypti| +E0422151|age-mate|agemate| +E0422151|age mate|agemate| +E0422154|air gun|airgun| +E0422160|angel fish|angelfish| +E0422161|anti-gay|antigay| +E0422162|upper aerodigestive tract|upper aero-digestive tract| +E0422162|upper aero digestive tract|upper aero-digestive tract| +E0422163|aero-allergen|aeroallergen| +E0422171|etiopathogenetically|aetiopathogenetically| +E0422173|afterhyperpolarising|afterhyperpolarizing| +E0422222|Al-Ain|Al Ain| +E0422235|Streptomyces albigriseolus|Streptomyces albogriseolus| +E0422243|Aldo|ALDO| +E0422500|beta lysine mutase|beta-lysine mutase| +E0422558|amino-terminal|aminoterminal| +E0422585|ameboflagellate|amoeboflagellate| +E0422595|AMU|amu| +E0422601|amygdalo-hippocampus|amygdalohippocampus| +E0422602|amygdalo-cortical|amygdalocortical| +E0422603|amygdalo-hippocampectomy|amygdalohippocampectomy| +E0422604|amygdalo-hypothalamic|amygdalohypothalamic| +E0422621|anatomo-biological|anatomobiological| +E0422637|anergise|anergize| +E0422639|aneuploidisation|aneuploidization| +E0422663|anhydro ara C|anhydro-ara-C| +E0422701|anilinonaphthalene sulphonate|anilinonaphthalene sulfonate| +E0422718|annuloaortic ectasia|annulo-aortic ectasia| +E0422718|annulo aortic ectasia|annulo-aortic ectasia| +E0422719|annulo ventricular|annulo-ventricular| +E0422719|annuloventricular|annulo-ventricular| +E0422737|antennocerebral|antenno-cerebral| +E0422738|antennocerebral tract|antenno-cerebral tract| +E0422739|anterio-posterior|anterioposterior| +E0422741|antero-posteriorly|anteroposteriorly| +E0422742|antero-inferiorly|anteroinferiorly| +E0422743|antero-superiorly|anterosuperiorly| +E0422764|anti-adhesion|antiadhesion| +E0422765|anti-aggregatory|antiaggregatory| +E0422766|anti-algal|antialgal| +E0422767|anti-allodynic|antiallodynic| +E0422768|anti-arterial|antiarterial| +E0422769|anti-asthma|antiasthma| +E0422772|anti-calcitonin|anticalcitonin| +E0422773|anti-capsular|anticapsular| +E0422774|anti-cardiolipid|anticardiolipid| +E0422776|anti-cellular|anticellular| +E0422778|anti-cortisol|anticortisol| +E0422779|anti-cryptosporidial|anticryptosporidial| +E0422780|anti-dermatophyte|antidermatophyte| +E0422781|anti-dopamine|antidopamine| +E0422783|anti-elastase|antielastase| +E0422784|anti-elastase|antielastase| +E0422785|anti-endomysium|antiendomysium| +E0422786|anti-envelope|antienvelope| +E0422787|antiFactor|antifactor| +E0422787|anti-factor|antifactor| +E0422788|antiFactor Xa|antifactor Xa| +E0422788|anti-factor Xa|antifactor Xa| +E0422789|anti-factor IIa|antifactor IIa| +E0422789|antiFactor IIa|antifactor IIa| +E0422790|anti-factor VIII|antifactor VIII| +E0422790|antiFactor VIII|antifactor VIII| +E0422791|anti-factor VII|antifactor VII| +E0422791|antiFactor VII|antifactor VII| +E0422792|anti-factor V|antifactor V| +E0422792|antiFactor V|antifactor V| +E0422793|anti-factor IX|antifactor IX| +E0422793|antiFactor IX|antifactor IX| +E0422794|anti-fertility|antifertility| +E0422796|anti-flagellar|antiflagellar| +E0422797|antigenise|antigenize| +E0422798|antigenisation|antigenization| +E0422799|anti-genomic|antigenomic| +E0422800|anti-gliadin|antigliadin| +E0422801|anti-glucagon|antiglucagon| +E0422802|anti-glucagon|antiglucagon| +E0422803|anti-glycan|antiglycan| +E0422804|anti-gonadotropin|antigonadotropin| +E0422804|antigonadotrophin|antigonadotropin| +E0422804|anti-gonadotrophin|antigonadotropin| +E0422805|anti-gonadotropin|antigonadotropin| +E0422805|antigonadotrophin|antigonadotropin| +E0422805|anti-gonadotrophin|antigonadotropin| +E0422806|anti-gonadotropin releasing hormone|antigonadotropin releasing hormone| +E0422806|antigonadotrophin releasing hormone|antigonadotropin releasing hormone| +E0422806|anti-gonadotrophin releasing hormone|antigonadotropin releasing hormone| +E0422808|antihaemagglutinin|antihemagglutinin| +E0422808|anti-hemagglutinin|antihemagglutinin| +E0422808|anti-haemagglutinin|antihemagglutinin| +E0422809|anti-herpesviral|antiherpesviral| +E0422810|anti-histone|antihistone| +E0422811|anti-histone|antihistone| +E0422812|anti-influenza|antiinfluenza| +E0422813|antiinvasion|anti-invasion| +E0422814|antiischaemic|antiischemic| +E0422814|anti-ischemic|antiischemic| +E0422814|anti-ischaemic|antiischemic| +E0422815|anti-junction|antijunction| +E0422816|antilegionella|anti-legionella| +E0422816|anti-Legionella|anti-legionella| +E0422817|antileucoproteinase|antileukoproteinase| +E0422819|skin-derived antileucoproteinase|skin-derived antileukoproteinase| +E0422825|acute leukaemia protocol|acute leukemia protocol| +E0422825|acute leucemia protocol|acute leukemia protocol| +E0422825|acute leucaemia protocol|acute leukemia protocol| +E0422826|anti-ligand|antiligand| +E0422827|anti-lipopolysaccharide|antilipopolysaccharide| +E0422828|anti-lymphocyte|antilymphocyte| +E0422829|anti-lymphocyte|antilymphocyte| +E0422830|anti-mesometrial|antimesometrial| +E0422831|anti-microsomal|antimicrosomal| +E0422832|anti-migraine|antimigraine| +E0422833|anti-mitochondrial|antimitochondrial| +E0422834|anti-moesin|antimoesin| +E0422835|anti-murine|antimurine| +E0422837|antinitrotyrosine|anti-nitrotyrosine| +E0422838|anti-obsessional|antiobsessional| +E0422839|anti-oncogenic|antioncogenic| +E0422840|anti-osteoporotic|antiosteoporotic| +E0422841|anti-parent|antiparent| +E0422842|anti-pericentrin|antipericentrin| +E0422843|anti-peroxidase|antiperoxidase| +E0422844|anti-phosphatidic|antiphosphatidic| +E0422845|anti-phosphatidic acid|antiphosphatidic acid| +E0422846|anti-phosphatidylserine|antiphosphatidylserine| +E0422847|anti-platelet|antiplatelet| +E0422848|anti-Pneumocystis|antipneumocystis| +E0422849|anti-porcine|antiporcine| +E0422850|anti-progestin|antiprogestin| +E0422851|anti-promotional|antipromotional| +E0422852|anti-rabbit|antirabbit| +E0422853|anti-rat|antirat| +E0422854|anti-recombinant|antirecombinant| +E0422855|anti-renal|antirenal| +E0422856|anti-resorptive|antiresorptive| +E0422857|anti-ribosomal|antiribosomal| +E0422858|anti-rotational|antirotational| +E0422859|anti-shivering|antishivering| +E0422861|anti-succinic|antisuccinic| +E0422863|anti-therapeutic|antitherapeutic| +E0422864|anti-thrombolytic|antithrombolytic| +E0422865|anti-tobacco|antitobacco| +E0422866|anti-topoisomerase|antitopoisomerase| +E0422867|anti-tremor|antitremor| +E0422868|anti-vertigo|antivertigo| +E0422870|antro-duodenal|antroduodenal| +E0422870|antro duodenal|antroduodenal| +E0422878|aorto-popliteal|aortopopliteal| +E0422879|aortocoeliac|aortoceliac| +E0422879|aorto-celiac|aortoceliac| +E0422879|aorto-coeliac|aortoceliac| +E0422880|aorto-bifemoral|aortobifemoral| +E0422881|aorto-ilio-femoral|aortoiliofemoral| +E0422883|aorto-renal|aortorenal| +E0422884|aorto-ventricular|aortoventricular| +E0422889|aphidborne|aphid-borne| +E0422890|apico-posterior|apicoposterior| +E0422893|apodioldehydrase|apodiol dehydratase| +E0422895|apolipophorin-I|apolipophorin I| +E0422896|apolipophorin-II|apolipophorin II| +E0422897|apolipophorin-III|apolipophorin III| +E0422898|apo-obelin|apoobelin| +E0422944|archaeologically|archeologically| +E0422966|Arnt|ARNT| +E0422972|arterio-jugular|arteriojugular| +E0422973|arterio-enteric|arterioenteric| +E0422974|arterio-lymphatic|arteriolymphatic| +E0422975|arterio-occlusive|arterioocclusive| +E0422977|artero-venous|arterovenous| +E0422978|artero-arterial|arteroarterial| +E0422979|arterylike|artery-like| +E0422982|artefactual|artifactual| +E0422990|AANAT|AA-NAT| +E0423045|athero-occlusive|atheroocclusive| +E0423046|athero-thrombosis|atherothrombosis| +E0423047|athero-thrombogenesis|atherothrombogenesis| +E0423048|athero-thrombogenic|atherothrombogenic| +E0423051|atlantoaxial|atlanto-axial| +E0423054|atlanto-axial ankylosis|atlantoaxial ankylosis| +E0423055|atlantooccipital ankylosis|atlanto-occipital ankylosis| +E0423056|atlantooccipital instability|atlanto-occipital instability| +E0423057|atlantooccipital malformation|atlanto-occipital malformation| +E0423060|all-trans-retinoic acid|all-trans retinoic acid| +E0423135|Solidago virgaurea|Solidago virga-aurea| +E0423162|auto-epitope|autoepitope| +E0423169|auto-immunological|autoimmunological| +E0423170|auto-immunologic|autoimmunologic| +E0423171|auto-inhibitory|autoinhibitory| +E0423173|autopolymerising|autopolymerizing| +E0423174|autopolymerised|autopolymerized| +E0423181|autosensitise|autosensitize| +E0423182|autosensitisation|autosensitization| +E0423192|avascularised|avascularized| +E0423231|axo-axonal|axoaxonal| +E0423232|axo-spinous|axospinous| +E0423235|axonin 1|axonin-1| +E0423236|axonin 2|axonin-2| +E0423248|post kala-azar|post-kala-azar| +E0423258|AZI|azi| +E0423357|bancroftian filarial chylocoele|bancroftian filarial chylocele| +E0423375|baro-sensitive|barosensitive| +E0423376|baro-sensitivity|barosensitivity| +E0423401|bis-diazotised benzidine|bis-diazotized benzidine| +E0423415|behaviourist|behaviorist| +E0423492|tBuBHQ|t-BuBHQ| +E0423586|beta blocker|betablocker| +E0423589|TGFbeta|TGF-beta| +E0423590|transforming growth factor beta|transforming growth factor-beta| +E0423592|beta glucanase|beta-glucanase| +E0423593|beta glucoside|beta-glucoside| +E0423613|Diamond-Blackfan anaemia|Diamond-Blackfan anemia| +E0423616|dolichos biflorus lectin|Dolichos biflorus lectin| +E0423629|bilio-bronchial|biliobronchial| +E0423637|bio-accumulator|bioaccumulator| +E0423638|bio-tolerant|biotolerant| +E0423640|bio-impedance analysis|bioimpedance analysis| +E0423641|bio-inert|bioinert| +E0423642|bio-adhesive|bioadhesive| +E0423643|bio-adhesive|bioadhesive| +E0423644|bio-antioxidant|bioantioxidant| +E0423645|bio-antioxidant|bioantioxidant| +E0423646|biochanin-A|biochanin A| +E0423648|bio-clinical|bioclinical| +E0423657|bio-indicator|bioindicator| +E0423658|bio-isosteric|bioisosteric| +E0423663|bio-magnetic|biomagnetic| +E0423667|bio-monitor|biomonitor| +E0423668|bio-monitor|biomonitor| +E0423673|bio-reduction|bioreduction| +E0423681|biosynthesise|biosynthesize| +E0423684|bio-therapy|biotherapy| +E0423704|fructose-bisphosphate aldolase|fructose biphosphate aldolase| +E0423725|ribulose biphosphate carboxylase|ribulosebiphosphate carboxylase| +E0423753|glucose-bisphosphatase|glucose bisphosphatase| +E0423804|blood-brain barrier|bloodbrain barrier| +E0423804|blood brain barrier|bloodbrain barrier| +E0423804|blood/brain barrier|bloodbrain barrier| +E0423835|live-born|liveborn| +E0423851|brachy-radiotherapy|brachyradiotherapy| +E0423852|brachy-teletherapy|brachyteletherapy| +E0423856|brachy-turricephaly|brachyturricephaly| +E0423870|Leishmania brasiliensis peruviana|Leishmania braziliensis peruviana| +E0423872|Leishmania brasiliensis guyanensis|Leishmania braziliensis guyanensis| +E0423880|breast milk|breastmilk| +E0423882|breath-hold|breathhold| +E0423882|breath hold|breathhold| +E0423904|bric-a-brac|bric a brac| +E0423960|beta bromopropionate|beta-bromopropionate| +E0423968|bromouridine-triphosphate|bromouridine triphosphate| +E0423976|bronchiolo-alveolar|bronchioloalveolar| +E0423977|bronchiolo-alveolar carcinoma|bronchioloalveolar carcinoma| +E0423978|broncho-constrictive|bronchoconstrictive| +E0423980|broncho-fiberscopy|bronchofiberscopy| +E0423982|broncho-pneumopathy|bronchopneumopathy| +E0424029|myringitis bullosa haemorrhagica|myringitis bullosa hemorrhagica| +E0424030|angina bullosa hemorrhagica|angina bullosa haemorrhagica| +E0424033|Rickettsia burneti|Rickettsia burnetii| +E0424086|butilate|butylate| +E0424087|alpha-naphtyl butylate esterase|alpha-naphthyl butylate esterase| +E0424087|alpha-naphtyl butilate esterase|alpha-naphthyl butylate esterase| +E0424087|alpha-naphthyl butilate esterase|alpha-naphthyl butylate esterase| +E0424096|hyoscinbutylbromide|hyoscine butylbromide| +E0424144|Eschscholzia californica|Eschscholtzia californica| +E0424177|Vibrio campbellii|Vibrio campbelli| +E0424178|V. campbellii|V. campbelli| +E0424187|cancerisation|cancerization| +E0424188|cancerise|cancerize| +E0424225|capillarise|capillarize| +E0424244|Histoplasma capsulatum Ag|Histoplasma capsulatum ag| +E0424244|Histoplasma capsulatum AG|Histoplasma capsulatum ag| +E0424246|Histoplasma capsulatum AB|Histoplasma capsulatum ab| +E0424258|carbamoyl-phosphate synthase|carbamoylphosphate synthase| +E0424320|amine carboxyborane|amine-carboxyborane| +E0424329|protein carboxy methylase|protein carboxymethylase| +E0424330|protein carboxyl methyltransferase|protein carboxylmethyltransferase| +E0424355|cardiohaemodynamic|cardiohemodynamic| +E0424355|cardio-hemodynamic|cardiohemodynamic| +E0424355|cardio-haemodynamic|cardiohemodynamic| +E0424407|alpha casomorphin|alpha-casomorphin| +E0424417|catalise|catalize| +E0424422|catheterisable|catheterizable| +E0424423|Amarantus caudatus|Amaranthus caudatus| +E0424434|cavo-atrial|cavoatrial| +E0424436|cavo-pulmonary|cavopulmonary| +E0424444|cecropin 1|cecropin-1| +E0424445|cecropin 2|cecropin-2| +E0424446|coele|cele| +E0424448|beta cellobioside|beta-cellobioside| +E0424449|beta tigogenin cellobioside|beta-tigogenin cellobioside| +E0424461|cellulo-adipose|celluloadipose| +E0424463|cellulo-cutaneous flap|cellulocutaneous flap| +E0424464|cellulo-vascular|cellulovascular| +E0424465|cellulo-lymphadenectomy|cellulolymphadenectomy| +E0424477|centro-medial|centromedial| +E0424486|ceramo-metallic|ceramometallic| +E0424497|cerebro-cortical|cerebrocortical| +E0424500|cerebro-ventricular|cerebroventricular| +E0424504|macula caerulea|macula cerulea| +E0424506|cervico-cephalic|cervicocephalic| +E0424507|cervico-mediastinal|cervicomediastinal| +E0424517|continuous filtration leucapheresis|continuous filtration leukapheresis| +E0424518|continuous flow leukapheresis|continuous flow leucapheresis| +E0424519|central-field loss|central field loss| +E0424526|channellike|channel-like| +E0424537|chemo-enzymatic|chemoenzymatic| +E0424539|chemo-mechanical|chemomechanical| +E0424556|Chitinase B|chitinase B| +E0424559|chito-oligosaccharide|chitooligosaccharide| +E0424560|chitooligomer|chito-oligomer| +E0424572|beta chlorolactic acid|beta-chlorolactic acid| +E0424580|dibutylchloro(chloromethyl)-stannane|dibutylchloro(chloromethyl)stannane| +E0424627|cholangio-pancreatographic|cholangiopancreatographic| +E0424630|cholecystectomise|cholecystectomize| +E0424657|chroniser|chronizer| +E0424663|chymotrypsin-like|chymotrypsinlike| +E0424739|city-wide|citywide| +E0424747|clearcut|clear-cut| +E0424748|clearcut|clear-cut| +E0424749|clearcut|clear-cut| +E0424753|clinico-histopathologic|clinicohistopathologic| +E0424754|clinicopathogenic|clinico-pathogenic| +E0424755|clinicopathomorphological|clinico-pathomorphological| +E0424766|co-adjuvant|coadjuvant| +E0424767|co-adjuvant|coadjuvant| +E0424770|coal mining|coalmining| +E0424771|co-apply|coapply| +E0424774|co-assembly|coassembly| +E0424776|roller-coaster|roller coaster| +E0424784|co-cluster|cocluster| +E0424785|co-crystal|cocrystal| +E0424786|codevelopment|co-development| +E0424788|co-educational|coeducational| +E0424789|co-electroporate|coelectroporate| +E0424792|co-encapsidation|coencapsidation| +E0424793|co-encapsidate|coencapsidate| +E0424800|co-extraction|coextraction| +E0424801|co-extract|coextract| +E0424814|Staphylococcus cohnii subsp urealyticus|Staphylococcus cohnii subsp. urealyticus| +E0424818|co-hybridization|cohybridization| +E0424818|cohybridisation|cohybridization| +E0424818|co-hybridisation|cohybridization| +E0424819|cohybridise|cohybridize| +E0424819|co-hybridise|cohybridize| +E0424819|co-hybridize|cohybridize| +E0424824|co-ingestion|coingestion| +E0424825|co-ingest|coingest| +E0424826|co-inoculation|coinoculation| +E0424827|co-inoculate|coinoculate| +E0424828|co-investigator|coinvestigator| +E0424837|cardio-oesophageal relaxation|cardio-esophageal relaxation| +E0424837|cardioesophageal relaxation|cardio-esophageal relaxation| +E0424837|cardiooesophageal relaxation|cardio-esophageal relaxation| +E0424838|cardio-respiratory arrest|cardiorespiratory arrest| +E0424839|velo-cardio-facial syndrome|velocardiofacial syndrome| +E0424839|velo-cardiofacial syndrome|velocardiofacial syndrome| +E0424841|two celled|two-celled| +E0424842|single celled|single-celled| +E0424843|multi-celled|multicelled| +E0424845|giant celled|giant-celled| +E0424847|one celled|one-celled| +E0424848|small celled|small-celled| +E0424849|clear celled|clear-celled| +E0424850|spindle celled|spindle-celled| +E0424851|four celled|four-celled| +E0424852|centro-parietal|centroparietal| +E0424853|centro-parietally|centroparietally| +E0424854|centro-temporal|centrotemporal| +E0424855|centro-temporally|centrotemporally| +E0424857|centro-symmetric|centrosymmetric| +E0424858|centro-symmetrical|centrosymmetrical| +E0424859|centro-symmetrically|centrosymmetrically| +E0424880|colo-anal|coloanal| +E0424881|colo-colonic|colocolonic| +E0424885|colono-ileoscopy|colonoileoscopy| +E0424892|co-management|comanagement| +E0424893|co-manage|comanage| +E0424904|conc.|conc| +E0424905|conc.|conc| +E0424960|haematoporphyria congenita|hematoporphyria congenita| +E0424976|conodipine-M|conodipine M| +E0424979|cono-ventricular|conoventricular| +E0424997|cont.|cont| +E0424998|cont.|cont| +E0425015|contra-luminal|contraluminal| +E0425016|contra-lesional|contralesional| +E0425017|contra-inflammatory|contrainflammatory| +E0425020|co-oxidation|cooxidation| +E0425021|co-oxidize|cooxidize| +E0425021|cooxidise|cooxidize| +E0425021|co-oxidise|cooxidize| +E0425022|co-partition|copartition| +E0425023|co-perfuse|coperfuse| +E0425026|co-planar|coplanar| +E0425034|copro-antigen|coproantigen| +E0425035|copro-culture|coproculture| +E0425038|copro eosinophil cationic protein|copro-eosinophil cationic protein| +E0425039|copro'gen|COPRO'gen| +E0425040|co-production|coproduction| +E0425041|co-produce|coproduce| +E0425042|copyback|copy-back| +E0425045|ECorL|EcorL| +E0425047|cord-like|cordlike| +E0425048|co-receptor|coreceptor| +E0425049|co-regulator|coregulator| +E0425053|co-resistant|coresistant| +E0425054|co-resistance|coresistance| +E0425065|colonisation factor antigen|colonization factor antigen| +E0425076|cortico-cortical|corticocortical| +E0425078|adrenal corticosteroid poisoning|adrenal cortico-steroid poisoning| +E0425079|thalamocorticothalamic loop|thalamo-cortico-thalamic loop| +E0425080|thalamocorticothalamic|thalamo-cortico-thalamic| +E0425081|corticothalamocortical loop|cortico-thalamo-cortical loop| +E0425082|corticothalamocortical|cortico-thalamo-cortical| +E0425083|cortico-subcortical|corticosubcortical| +E0425084|cortico-motoneuronal|corticomotoneuronal| +E0425086|corticotubular|cortico-tubular| +E0425087|cortico-motor|corticomotor| +E0425088|cortico-hippocampal|corticohippocampal| +E0425090|cortico-sensitive|corticosensitive| +E0425091|cortico-sensitivity|corticosensitivity| +E0425092|cortico-therapy|corticotherapy| +E0425093|cortico-therapeutic|corticotherapeutic| +E0425106|co-secrete|cosecrete| +E0425108|co-sponsor|cosponsor| +E0425109|co-sponsor|cosponsor| +E0425110|co-sponsorship|cosponsorship| +E0425113|co-substrate|cosubstrate| +E0425114|co-synthesize|cosynthesize| +E0425114|cosynthesise|cosynthesize| +E0425114|co-synthesise|cosynthesize| +E0425115|co-transfer|cotransfer| +E0425116|co-transfer|cotransfer| +E0425119|co-transport|cotransport| +E0425130|counter-productive|counterproductive| +E0425131|counter-productivity|counterproductivity| +E0425132|counter-selectable|counterselectable| +E0425133|counter-transport|countertransport| +E0425134|counter-transport|countertransport| +E0425145|coxsackie endocarditis|Coxsackie endocarditis| +E0425146|Coxsackie virus A|Coxsackievirus A| +E0425146|coxsackievirus A|Coxsackievirus A| +E0425146|coxsackie virus A|Coxsackievirus A| +E0425147|coxsackie A9|Coxsackie A9| +E0425148|Coxsackie A21|coxsackie A21| +E0425149|Coxsackie A21 virus|coxsackie A21 virus| +E0425150|Coxsackie virus B|Coxsackievirus B| +E0425150|coxsackie virus B|Coxsackievirus B| +E0425150|coxsackievirus B|Coxsackievirus B| +E0425151|coxsackie B1|Coxsackie B1| +E0425152|enterovirus coxsackie B1|enterovirus Coxsackie B1| +E0425153|coxsackie myocarditis|Coxsackie myocarditis| +E0425154|coxsackie B2 virus|Coxsackie B2 virus| +E0425155|coxsackie B2|Coxsackie B2| +E0425156|Coxsackievirus B3|Coxsackie virus B3| +E0425156|coxsackie virus B3|Coxsackie virus B3| +E0425156|coxsackievirus B3|Coxsackie virus B3| +E0425157|coxsackie B3|Coxsackie B3| +E0425158|coxsackie B3 virus|Coxsackie B3 virus| +E0425159|Coxsackie virus B4|Coxsackievirus B4| +E0425159|coxsackievirus B4|Coxsackievirus B4| +E0425159|coxsackie virus B4|Coxsackievirus B4| +E0425160|coxsackie B4 virus|Coxsackie B4 virus| +E0425161|coxsackie B4|Coxsackie B4| +E0425162|coxsackie B5 virus|Coxsackie B5 virus| +E0425163|Coxsackie virus B5|Coxsackievirus B5| +E0425163|coxsackievirus B5|Coxsackievirus B5| +E0425163|coxsackie virus B5|Coxsackievirus B5| +E0425164|coxsackie B5|Coxsackie B5| +E0425165|coxsackie B6|Coxsackie B6| +E0425166|coxsackie B6 virus|Coxsackie B6 virus| +E0425167|Coxsackie virus B6|Coxsackievirus B6| +E0425167|coxsackievirus B6|Coxsackievirus B6| +E0425167|coxsackie virus B6|Coxsackievirus B6| +E0425168|Coxsackie virus P2-C|Coxsackievirus P2-C| +E0425168|Coxsackievirus P2C|Coxsackievirus P2-C| +E0425168|Coxsackie virus P2C|Coxsackievirus P2-C| +E0425168|coxsackievirus P2-C|Coxsackievirus P2-C| +E0425168|coxsackie virus P2-C|Coxsackievirus P2-C| +E0425168|coxsackievirus P2C|Coxsackievirus P2-C| +E0425168|coxsackie virus P2C|Coxsackievirus P2-C| +E0425169|Coxsackie P2C virus|Coxsackie P2-C virus| +E0425169|coxsackie P2-C virus|Coxsackie P2-C virus| +E0425169|coxsackie P2C virus|Coxsackie P2-C virus| +E0425170|coxsackie P2C|Coxsackie P2C| +E0425170|Coxsackie P2-C|Coxsackie P2C| +E0425170|coxsackie P2-C|Coxsackie P2C| +E0425171|Coxsackie virus A9|Coxsackievirus A9| +E0425171|coxsackievirus A9|Coxsackievirus A9| +E0425171|coxsackie virus A9|Coxsackievirus A9| +E0425172|Coxsackie virus A21|Coxsackievirus A21| +E0425172|coxsackievirus A21|Coxsackievirus A21| +E0425172|coxsackie virus A21|Coxsackievirus A21| +E0425173|Coxsackie virus B2|Coxsackievirus B2| +E0425173|coxsackievirus B2|Coxsackievirus B2| +E0425173|coxsackie virus B2|Coxsackievirus B2| +E0425174|coxsackie meningitis|Coxsackie meningitis| +E0425175|Coxsackie pericarditis|coxsackie pericarditis| +E0425176|coxsackie carditis|Coxsackie carditis| +E0425177|congenital Coxsackie infection|congenital coxsackie infection| +E0425178|coxsackie muscle infection|Coxsackie muscle infection| +E0425179|coxsackie viral meningitis|Coxsackie viral meningitis| +E0425180|lymphonodular Coxsackie pharyngitis|lymphonodular coxsackie pharyngitis| +E0425181|neonatal Coxsackie virus syndrome|neonatal coxsackie virus syndrome| +E0425181|neonatal coxsackievirus syndrome|neonatal coxsackie virus syndrome| +E0425181|neonatal Coxsackievirus syndrome|neonatal coxsackie virus syndrome| +E0425182|Coxsackie complement fixation test|coxsackie complement fixation test| +E0425183|coxsackie A viral meningitis|Coxsackie A viral meningitis| +E0425184|coxsackie B viral meningitis|Coxsackie B viral meningitis| +E0425185|coxsackie A24 variant virus|Coxsackie A24 variant virus| +E0425186|coxsackievirus A24 variant|Coxsackievirus A24 variant| +E0425187|coxsackievirus A24|Coxsackievirus A24| +E0425190|cranio-cervical|craniocervical| +E0425203|day-care|daycare| +E0425203|day care|daycare| +E0425299|cysteinesulphinate|cysteinesulfinate| +E0425305|pyelo-ureteritis cystica|pyloureteritis cystica| +E0425306|cysto-biliary|cystobiliary| +E0425307|cysto-jejunostomy|cystojejunostomy| +E0425308|cysto-jejunal|cystojejunal| +E0425309|micturating cysto-urethrography|micturating cystourethrography| +E0425311|voiding cysto-urethrography|voiding cystourethrography| +E0425313|cysto-urethrographic|cystourethrographic| +E0425314|cysto-ureteral|cystoureteral| +E0425315|cysto-enteric|cystoenteric| +E0425316|cysto-gastrostomy|cystogastrostomy| +E0425317|cysto-peritoneal|cystoperitoneal| +E0425318|cysto-peritoneal shunt|cystoperitoneal shunt| +E0425319|cysto-peritoneal shunting|cystoperitoneal shunting| +E0425323|cyto-matrix|cytomatrix| +E0425324|cyto-histological|cytohistological| +E0425327|cyto-reducing|cytoreducing| +E0425328|cyto-immunological|cytoimmunological| +E0425329|cyto-immunology|cytoimmunology| +E0425330|cyto-lethal|cytolethal| +E0425333|cyto-differentiating|cytodifferentiating| +E0425334|cyto-architecturally|cytoarchitecturally| +E0425348|dark-field|darkfield| +E0425349|de-adapt|deadapt| +E0425350|de-adaptation|deadaptation| +E0425351|de-adenylation|deadenylation| +E0425353|pentoxyresorufin-O-dealkylase|pentoxyresorufin O-dealkylase| +E0425353|pentoxy resorufin-O-dealkylase|pentoxyresorufin O-dealkylase| +E0425359|de-angulation|deangulation| +E0425436|cyclomaltooctaose|cyclomalto-octaose| +E0425468|cyclopentyl sulphamate|cyclopentyl sulfamate| +E0425522|dark-cell degeneration|dark cell degeneration| +E0425527|delayed-conditional-discrimination task|delayed conditional discrimination task| +E0425560|de-conditioning|deconditioning| +E0425566|deendothelialised|deendothelialized| +E0425566|de-endothelialized|deendothelialized| +E0425566|de-endothelialised|deendothelialized| +E0425567|deepithelialisation|deepithelialization| +E0425567|de-epithelialization|deepithelialization| +E0425567|de-epithelialisation|deepithelialization| +E0425568|de-etiolate|deetiolate| +E0425569|de-etiolation|deetiolation| +E0425571|defeminise|defeminize| +E0425572|defeminisation|defeminization| +E0425575|deflavo-enzyme|deflavo enzyme| +E0425598|dehospitalisation|dehospitalization| +E0425665|demucosalised|demucosalized| +E0425689|dentinoenamel junction|dentino-enamel junction| +E0425689|dentino enamel junction|dentino-enamel junction| +E0425690|dentinocemental junction|dentino-cemental junction| +E0425691|dentinocemental|dentino-cemental| +E0425692|dentinoenamel|dentino-enamel| +E0425692|dentino enamel|dentino-enamel| +E0425693|dentinopulpal|dentino-pulpal| +E0425768|beta thioguanine deoxyriboside|beta-thioguanine deoxyriboside| +E0425769|beta-TGdR|beta TGdR| +E0425784|dephospho CoA|dephospho-CoA| +E0425791|PHA-depolymerase|PHA depolymerase| +E0425793|PHB depolymerase|PHB-depolymerase| +E0425805|depression-like|depressionlike| +E0425818|dermatorespiratory|dermato-respiratory| +E0425819|dermato-physiological|dermatophysiological| +E0425820|dermato-pathology|dermatopathology| +E0425821|dermo-chondro-corneal dystrophy|dermochondrocorneal dystrophy| +E0425822|tricho-oculodermovertebral syndrome|tricho-oculo-dermo-vertebral syndrome| +E0425823|dermo-epidermal|dermoepidermal| +E0425824|dermo-plastic|dermoplastic| +E0425825|dermo-hypodermal|dermohypodermal| +E0425853|desmethoxy derivative|desmethoxy-derivative| +E0425858|desmocollin 1|desmocollin I| +E0425859|desmocollin 2|desmocollin II| +E0425860|desmocollin 3|desmocollin III| +E0425861|desmoglein I|desmoglein 1| +E0425862|desmoglein II|desmoglein 2| +E0425882|destablisation|destablization| +E0425883|destablise|destablize| +E0425884|desulphurate|desulfurate| +E0425893|dual-energy x-ray absorptiometry|dual energy x-ray absorptiometry| +E0425896|DGA|dGA| +E0425896|dga|dGA| +E0425901|deglycosylated ricin A chain|deglycosylated ricin A-chain| +E0425911|dialysed iron|dialyzed iron| +E0425919|scleroedema diabeticorum|scleredema diabeticorum| +E0425934|diacyl phosphatidylglycerol|diacylphosphatidylglycerol| +E0425970|trans-diamminedichloro-platinum|trans-diamminedichloroplatinum| +E0425970|trans-diamminedichloro platinum|trans-diamminedichloroplatinum| +E0425991|diarachidoyl phosphatidylcholine|diarachidoylphosphatidylcholine| +E0426005|preventive dental behaviour|preventive dental behavior| +E0426029|diffusor|diffuser| +E0426032|digitizer|digitiser| +E0426052|directacting|direct-acting| +E0426052|direct acting|direct-acting| +E0426059|disco-vertebral|discovertebral| +E0426066|dislipidemia|dislipidaemia| +E0426097|diarylsulphonylurea|diarylsulfonylurea| +E0426135|diazonaphthalenedisulphonic acid|diazonaphthalenedisulfonic acid| +E0426249|tripotassium dicitrato bismuthate|tripotassium-dicitrato bismuthate| +E0426254|didodecylphosphate|didodecyl phosphate| +E0426290|methyl diethylthiocarbamate sulphoxide|methyl diethylthiocarbamate sulfoxide| +E0426297|methylene dimethane sulfonate|methylene dimethanesulfonate| +E0426297|methylene dimethanesulphonate|methylene dimethanesulfonate| +E0426297|methylene dimethane sulphonate|methylene dimethanesulfonate| +E0426301|DGlc-DAG|DGlcDAG| +E0426305|dihomogamma linolenic acid|dihomogamma-linolenic acid| +E0426471|dihydroxyboryl cellulose|dihydroxyboryl-cellulose| +E0426510|diisopropyl fluorophosphatase|diisopropyl-fluorophosphatase| +E0426510|di-isopropyl fluorophosphatase|diisopropyl-fluorophosphatase| +E0426510|di-isopropyl-fluorophosphatase|diisopropyl-fluorophosphatase| +E0426511|diisopropyl phosphorofluoridase|di-isopropyl phosphorofluoridase| +E0426548|extra-dimensional shift|extradimensional shift| +E0426550|ethane dimethane sulphonate|ethane dimethane sulfonate| +E0426552|energy dispersive spectrometry|energy-dispersive spectrometry| +E0426554|oedema disease|edema disease| +E0426602|dimethyl arsinic acid|dimethylarsinic acid| +E0426602|dimethylarsenic acid|dimethylarsinic acid| +E0426602|dimethyl arsenic acid|dimethylarsinic acid| +E0426713|di-oleoylglycerol|dioleoylglycerol| +E0426744|dipeptidylpeptidase|dipeptidyl peptidase| +E0426749|dipeptidyl-peptidase IV|dipeptidyl peptidase IV| +E0426750|DPP-IV|DPP IV| +E0426751|dipeptidyl-amino-peptidase I|dipeptidyl aminopeptidase I| +E0426753|peptidyl-dipeptidase A|peptidyl dipeptidase A| +E0426754|peptidyl-dipeptidase B|peptidyl dipeptidase B| +E0426757|dipeptidyl amino-peptidase IV|dipeptidyl aminopeptidase IV| +E0426763|dipeptidyl-amino-peptidase II|dipeptidyl aminopeptidase II| +E0426764|dipeptidyl-amino-peptidase III|dipeptidyl aminopeptidase III| +E0426834|nucleoside-diphosphosugar|nucleoside diphosphosugar| +E0426849|diethylstilboestrol dipropionate|diethylstilbestrol dipropionate| +E0426851|oestradiol dipropionate|estradiol dipropionate| +E0426854|stilboestrol dipropionate|stilbestrol dipropionate| +E0426874|disialo-transferrin|disialotransferrin| +E0426881|distal-most|distalmost| +E0426888|disulphated|disulfated| +E0426914|double-sex|doublesex| +E0426928|downregulated in adenoma|downregulated-in-adenoma| +E0426929|dialysis related amyloidosis|dialysis-related amyloidosis| +E0426930|dopamine receptor antagonist|dopamine-receptor antagonist| +E0426946|dlg|Dlg| +E0426946|DLG|Dlg| +E0426950|dolicho-ectatic|dolichoectatic| +E0426959|diphenyleneiodonium|diphenylene iodonium| +E0426998|expandibility|expandability| +E0427011|farm worker|farmworker| +E0427026|detrusor sphincter dyssynergia|detrusor-sphincter dyssynergia| +E0427035|DSX|dsx| +E0427036|Hemophilus ducreyi|Haemophilus ducreyi| +E0427059|diffusion weighted|diffusion-weighted| +E0427061|deionised water|deionized water| +E0427070|dyn A|dyn-A| +E0427071|dynorphin A|dynorphin-A| +E0427072|dyn B|dyn-B| +E0427073|dynorphin B|dynorphin-B| +E0427076|dysembryoplastic neuroepithelial tumour|dysembryoplastic neuroepithelial tumor| +E0427079|DNT|dnt| +E0427108|ecogeography|eco-geography| +E0427109|eco-epidemiological|ecoepidemiological| +E0427110|eco-epidemiology|ecoepidemiology| +E0427111|Eco RI|EcoRI| +E0427111|Eco-RI|EcoRI| +E0427113|Eco RV|EcoRV| +E0427115|eco-toxicology|ecotoxicology| +E0427116|ecto-apyrase|ectoapyrase| +E0427117|ecto-ATPase|ectoATPase| +E0427122|ecto-nucleotidase|ectonucleotidase| +E0427123|ecto-protein kinase|ectoprotein kinase| +E0427124|ecto-protein|ectoprotein| +E0427127|ecto-protease|ectoprotease| +E0427130|oedemic|edemic| +E0427140|echogenic foetal lung|echogenic fetal lung| +E0427141|early foetal loss|early fetal loss| +E0427145|egr-1|Egr-1| +E0427145|EGR-1|Egr-1| +E0427148|egr-2|Egr-2| +E0427148|EGR-2|Egr-2| +E0427150|egr-3|Egr-3| +E0427150|EGR-3|Egr-3| +E0427162|eigen analysis|eigenanalysis| +E0427163|eigen-value|eigenvalue| +E0427163|eigen value|eigenvalue| +E0427170|electro-clinical|electroclinical| +E0427172|electro-fulguration|electrofulguration| +E0427174|electro-gustometry|electrogustometry| +E0427175|electro-inject|electroinject| +E0427176|electro-injection|electroinjection| +E0427177|electro-mobility shift assay|electromobility shift assay| +E0427179|electro-myographical|electromyographical| +E0427180|electron-dense|electrondense| +E0427181|electron-density|electrondensity| +E0427182|electron-lucent|electronlucent| +E0427183|electron-lucency|electronlucency| +E0427185|electro-optical|electrooptical| +E0427186|electropermeabilised|electropermeabilized| +E0427231|Neisseria elongata subsp. elongata|Neisseria elongata subsp elongata| +E0427231|Neisseria elongata ssp. elongata|Neisseria elongata subsp elongata| +E0427231|Neisseria elongata ss. elongata|Neisseria elongata subsp elongata| +E0427233|Neisseria elongata subsp. glycolytica|Neisseria elongata subsp glycolytica| +E0427233|Neisseria elongata ssp. glycolytica|Neisseria elongata subsp glycolytica| +E0427233|Neisseria elongata ss. glycolytica|Neisseria elongata subsp glycolytica| +E0427236|Neisseria elongata subsp. nitroreducens|Neisseria elongata subsp nitroreducens| +E0427236|Neisseria elongata ssp. nitroreducens|Neisseria elongata subsp nitroreducens| +E0427236|Neisseria elongata ss. nitroreducens|Neisseria elongata subsp nitroreducens| +E0427274|extra-mammary Paget's disease|extramammary Paget's disease| +E0427277|estramustine-phosphate|estramustine phosphate| +E0427277|estramustinphosphate|estramustine phosphate| +E0427290|emv|Emv| +E0427292|ecotropic murine leukaemia virus|ecotropic murine leukemia virus| +E0427292|ecotropic murine leucemia virus|ecotropic murine leukemia virus| +E0427292|ecotropic murine leucaemia virus|ecotropic murine leukemia virus| +E0427298|encephalo-cranio-cutaneous lipomatosis|encephalocraniocutaneous lipomatosis| +E0427299|endo-anal|endoanal| +E0427300|endo-cavitary|endocavitary| +E0427301|endocrino-metabolic|endocrinometabolic| +E0427302|endocrino-therapy|endocrinotherapy| +E0427303|neuro-endocrino-immunological|neuroendocrinoimmunological| +E0427306|endo-loop|endoloop| +E0427317|endo-urological|endourological| +E0427318|endo-urology|endourology| +E0427337|entero-invasive|enteroinvasive| +E0427338|entero-invasiveness|enteroinvasiveness| +E0427349|epi-aortic|epiaortic| +E0427364|epimetaphysial|epimetaphyseal| +E0427374|epithelio-mesenchymal|epitheliomesenchymal| +E0427375|epithelio-reticular|epithelioreticular| +E0427376|epitheliostromal|epithelio-stromal| +E0427398|equianaesthetic|equianesthetic| +E0427398|equi-anesthetic|equianesthetic| +E0427398|equi-anaesthetic|equianesthetic| +E0427401|Hemophilus equigenitalis|Haemophilus equigenitalis| +E0427421|erythemato-papular|erythematopapular| +E0427422|erythemato-squamous|erythematosquamous| +E0427423|erythemato-bullous|erythematobullous| +E0427424|erythemato-telangiectatic|erythematotelangiectatic| +E0427425|erythemato-telangiectatic rosacea|erythematotelangiectatic rosacea| +E0427440|erythro-megakaryocytic|erythromegakaryocytic| +E0427444|oesophagocardia|esophagocardia| +E0427444|esophago-cardia|esophagocardia| +E0427444|oesophago-cardia|esophagocardia| +E0427445|esophago-pleural|esophagopleural| +E0427445|oesophagopleural|esophagopleural| +E0427445|oesophago-pleural|esophagopleural| +E0427446|esophago-pleural fistula|esophagopleural fistula| +E0427446|oesophagopleural fistula|esophagopleural fistula| +E0427446|oesophago-pleural fistula|esophagopleural fistula| +E0427515|ethicolegal|ethico-legal| +E0427518|ethno-cultural|ethnocultural| +E0427971|first-hand|firsthand| +E0427972|first-hand|firsthand| +E0428020|cross-clamp|crossclamp| +E0428021|cross-clamp|crossclamp| +E0428022|cross-head|crosshead| +E0428023|cross-protect|crossprotect| +E0428024|cross-reactively|crossreactively| +E0428027|cryo-electron microscope|cryoelectron microscope| +E0428028|cryo-electron microscopic|cryoelectron microscopic| +E0428029|cryo-fix|cryofix| +E0428032|cryo-thin section|cryothin section| +E0428033|cryo-ultrathin section|cryoultrathin section| +E0428038|cranioorbital|cranio-orbital| +E0428039|cranio-ventral|cranioventral| +E0428040|craniocervical-mandibular|cranio-cervical-mandibular| +E0428070|CST|Cst| +E0428075|ctk|Ctk| +E0428082|alpha-difluoromethyl ornithine|alpha-difluoromethylornithine| +E0428099|dry-powder inhaler|dry powder inhaler| +E0428100|dry-powder inhalation|dry powder inhalation| +E0428101|despentapeptide-insulin|despentapeptide insulin| +E0428109|fibro-intimal|fibrointimal| +E0428116|eco-colour-Doppler|eco-color-Doppler| +E0428116|eco color-Doppler|eco-color-Doppler| +E0428116|eco colour-Doppler|eco-color-Doppler| +E0428117|ECO-Doppler|eco-Doppler| +E0428130|fluorescent labeled antibody|fluorescent-labeled antibody| +E0428144|fleur-de-lys|fleur-de-lis| +E0428144|fleur de lis|fleur-de-lis| +E0428144|fleur de lys|fleur-de-lis| +E0428145|fleur de lis abdominoplasty|fleur de lys abdominoplasty| +E0428145|fleur-de-lys abdominoplasty|fleur de lys abdominoplasty| +E0428145|fleur-de-lis abdominoplasty|fleur de lys abdominoplasty| +E0428156|flu-like|flulike| +E0428160|fluoro-immunoenzymatic|fluoroimmunoenzymatic| +E0428171|fish oil concentrate|fish-oil concentrate| +E0428214|frame-shifting|frameshifting| +E0428219|fronto-cortical|frontocortical| +E0428220|fronto-parallel|frontoparallel| +E0428228|FTZ|Ftz| +E0428228|ftz|Ftz| +E0428230|FTZ-F1|Ftz-F1| +E0428265|A. funestus|An. funestus| +E0428298|Fz|fz| +E0428300|foetal zone|fetal zone| +E0428309|galactosyl sulphatide|galactosyl sulfatide| +E0428316|globoid cell leucodystrophy|globoid cell leukodystrophy| +E0428323|galectin 1|galectin-1| +E0428323|galectin I|galectin-1| +E0428323|galectin-I|galectin-1| +E0428325|galectin 2|galectin-2| +E0428325|galectin-II|galectin-2| +E0428325|galectin II|galectin-2| +E0428326|galectin 3|galectin-3| +E0428327|galectin 4|galectin-4| +E0428328|galectin 5|galectin-5| +E0428329|galectin 6|galectin-6| +E0428330|galectin 7|galectin-7| +E0428331|galectin 8|galectin-8| +E0428332|galectin 9|galectin-9| +E0428346|haemoglobin G gammaglobin|hemoglobin G gammaglobin| +E0428358|ganglio-series|ganglioseries| +E0428360|gas-less|gasless| +E0428363|gastrinaemia|gastrinemia| +E0428366|gate-keeping|gatekeeping| +E0428367|gate-keeping|gatekeeping| +E0428368|Gax|gax| +E0428369|GAX-collagen|GAX collagen| +E0428441|Gitelman's syndrome|Gitelman syndrome| +E0428464|globalisation|globalization| +E0428465|globalise|globalize| +E0428471|glucopaenia|glucopenia| +E0428484|gamma GTP|gammaGTP| +E0428503|glyceryl trierucate|glyceroltrierucate| +E0428507|Pseudomonas syringae pv glycinea|Pseudomonas syringae pv. glycinea| +E0428529|G protein-coupled receptor|G-protein-coupled receptor| +E0428531|gamma-glutamyl phosphate reductase|gamma-glutamylphosphate reductase| +E0428535|general practise residency|general practice residency| +E0428548|grand multipara|grandmultipara| +E0428558|granulo-filamentous|granulofilamentous| +E0428559|granulo-fibrillar|granulofibrillar| +E0428560|granulo-macrophagic|granulomacrophagic| +E0428572|gray-scale|grayscale| +E0428572|greyscale|grayscale| +E0428572|grey-scale|grayscale| +E0428573|gray-scale|grayscale| +E0428573|greyscale|grayscale| +E0428573|grey-scale|grayscale| +E0428585|grasp and release test|Grasp and Release Test| +E0428591|GRX|Grx| +E0428591|grx|Grx| +E0428601|gamma GT|gamma-GT| +E0428605|alpha-GT|alpha-gt| +E0428606|guanidinoethanesulphonate|guanidinoethanesulfonate| +E0428631|gynecologically|gynaecologically| +E0428632|gynaecologic|gynecologic| +E0428634|agarose-haematin|agarose-hematin| +E0428635|haematin-sepharose|hematin-sepharose| +E0428636|haematinic acid|hematinic acid| +E0428637|beta-haematin|beta-hematin| +E0428638|hematopathy|haematopathy| +E0428639|pyridine hemochromogen|pyridine haemochromogen| +E0428640|hemogregarine|haemogregarine| +E0428673|hand-sewn|handsewn| +E0428686|hardmetal|hard metal| +E0428699|heparin-binding domain|heparin binding domain| +E0428701|hypophosphataemic bone disease|hypophosphatemic bone disease| +E0428703|hBD-2|HBD-2| +E0428705|hBD-1|HBD-1| +E0428710|heat-shock|heatshock| +E0428710|head shock|heatshock| +E0428722|haematologically|hematologically| +E0428723|haematolymphopoietic|hematolymphopoietic| +E0428724|haematopathology|hematopathology| +E0428725|haematopoietically|hematopoietically| +E0428726|haematoxilineosin|hematoxilineosin| +E0428726|hematoxilin-eosin|hematoxilineosin| +E0428726|haematoxilin-eosin|hematoxilineosin| +E0428727|hemi-arthroplasty|hemiarthroplasty| +E0428728|hemi-channel|hemichannel| +E0428732|hemi-field|hemifield| +E0428734|hemi-liver|hemiliver| +E0428736|hemimethylation|hemi-methylation| +E0428737|hemi-protonation|hemiprotonation| +E0428738|hemi-protonated|hemiprotonated| +E0428739|hemi-space|hemispace| +E0428741|hemi-syndrome|hemisyndrome| +E0428742|haemoaccess|hemoaccess| +E0428743|haemocytometer|hemocytometer| +E0428744|haemoglobinless|hemoglobinless| +E0428745|haemolytically|hemolytically| +E0428746|haemopathy|hemopathy| +E0428747|haemoregulatory|hemoregulatory| +E0428748|haemostatically|hemostatically| +E0428749|haemotoxicity|hemotoxicity| +E0428750|haemotoxic|hemotoxic| +E0428762|heparin therapy|heparintherapy| +E0428768|portahepatis node|porta hepatis node| +E0428770|hepato-carcinogenesis|hepatocarcinogenesis| +E0428771|hepato-duodenal|hepatoduodenal| +E0428772|hepato-erythropoietic porphyria|hepatoerythropoietic porphyria| +E0428773|hepato-pancreas|hepatopancreas| +E0428793|Artemisia herba-alba|Artemisia herba alba| +E0428811|heregulin beta 1|heregulin beta1| +E0428812|alpha-heregulin|alpha heregulin| +E0428813|heregulin alpha|heregulin-alpha| +E0428814|heregulin-beta 2|heregulin-beta2| +E0428814|heregulin beta2|heregulin-beta2| +E0428814|heregulin beta 2|heregulin-beta2| +E0428816|alpha heregulin receptor|alpha-heregulin receptor| +E0428828|heterochromatinisation|heterochromatinization| +E0428829|heterochromatinised|heterochromatinized| +E0428883|health hazard appraisal|Health Hazard Appraisal| +E0428884|hereditary haemolytic anaemia|hereditary hemolytic anemia| +E0428925|histiocytoid haemangioma|histiocytoid hemangioma| +E0428927|histo-autoradiographical|histoautoradiographical| +E0428937|Hly|hly| +E0428938|adenylate cyclase-haemolysin|adenylate cyclase-hemolysin| +E0428954|depolymerised holothurian glycosaminoglycan|depolymerized holothurian glycosaminoglycan| +E0428960|homoiothermy|homeothermy| +E0428964|homocysteinaemic|homocysteinemic| +E0428965|homodimerisation|homodimerization| +E0428966|homodimerise|homodimerize| +E0428985|hormono-therapy|hormonotherapy| +E0428988|housedust mite|housedust-mite| +E0428988|house dust mite|housedust-mite| +E0429005|hyperglycaemic hyperosmolar syndrome|hyperglycemic hyperosmolar syndrome| +E0429007|hereditary haemolytic syndrome|hereditary hemolytic syndrome| +E0429009|hyperinsulinism-hyperammonaemia syndrome|hyperinsulinism-hyperammonemia syndrome| +E0429014|Hy|hy| +E0429039|Aeromonas hydrophila subsp. anaerogenes|Aeromonas hydrophila subsp anaerogenes| +E0429041|Aeromonas hydrophila subsp. hydrophila|Aeromonas hydrophila subsp hydrophila| +E0429043|Aeromonas hydrophila subsp. proteolytica|Aeromonas hydrophila subsp proteolytica| +E0429077|alpha-hydroxyketone|alpha hydroxyketone| +E0429118|Staphylococcus hyicus subsp. chromogenes|Staphylococcus hyicus subsp chromogenes| +E0429128|hyperamino aciduria|hyperamino-aciduria| +E0429128|hyperaminoaciduria|hyperamino-aciduria| +E0429132|hypercitrullinaemia|hypercitrullinemia| +E0429147|hyper-induction|hyperinduction| +E0429148|hyper-induce|hyperinduce| +E0429149|HyperPP|hyperPP| +E0429150|hyperkalaemic distal renal tubular acidosis|hyperkalemic distal renal tubular acidosis| +E0429151|hyperlactataemia|hyperlactatemia| +E0429152|hyperleucocytotic|hyperleukocytotic| +E0429153|hyper-locomotion|hyperlocomotion| +E0429155|hyper-mutability|hypermutability| +E0429156|hyper-mutable|hypermutable| +E0429163|hyper-recombination|hyperrecombination| +E0429164|hyper-reninism|hyperreninism| +E0429171|hyperthermo-chemo-radiotherapy|hyperthermochemoradiotherapy| +E0429172|haeme-controlled repressor|heme-controlled repressor| +E0429173|host cell reactivation|host-cell reactivation| +E0429180|hypertriacylglycerolaemia|hypertriacylglycerolemia| +E0429183|hypnotisability|hypnotizability| +E0429195|hypoglutaminaemia|hypoglutaminemia| +E0429197|hypo-osmolality|hypoosmolality| +E0429198|hypo-phosphorylate|hypophosphorylate| +E0429199|hypo-phosphorylation|hypophosphorylation| +E0429213|hypotestosteronaemia|hypotestosteronemia| +E0429215|hypoxicischaemic|hypoxicischemic| +E0429215|hypoxic-ischaemic|hypoxicischemic| +E0429215|hypoxic-ischemic|hypoxicischemic| +E0429215|hypoxic ischaemic|hypoxicischemic| +E0429215|hypoxic ischemic|hypoxicischemic| +E0429234|icterohaemorrhagiae|Icterohaemorrhagiae| +E0429235|Leptospira interrogans serovar icterohemorrhagiae|Leptospira interrogans serovar icterohaemorrhagiae| +E0429236|Leptospira icterohemorrhagiae|Leptospira icterohaemorrhagiae| +E0429248|ileo-colonic|ileocolonic| +E0429249|ileo-ileal|ileoileal| +E0429250|ileo-sigmoidocolic|ileosigmoidocolic| +E0429251|ileo-vaginal|ileovaginal| +E0429252|ileo-jejunitis|ileojejunitis| +E0429253|ileo-ureteral|ileoureteral| +E0429254|ileo-psoas|ileopsoas| +E0429260|ilio-pubic|iliopubic| +E0429293|enzyme-linked immuno-adsorbent assay|enzyme-linked immunoadsorbent assay| +E0429293|enzyme linked immunoadsorbent assay|enzyme-linked immunoadsorbent assay| +E0429293|enzyme linked immuno-adsorbent assay|enzyme-linked immunoadsorbent assay| +E0429295|immuno-analysis|immunoanalysis| +E0429297|immuno-biology|immunobiology| +E0429298|immuno-chemiluminescence|immunochemiluminescence| +E0429299|immuno-chemiluminescent|immunochemiluminescent| +E0429300|immuno-competition|immunocompetition| +E0429301|immuno-cytofluorescent|immunocytofluorescent| +E0429302|immuno-cytofluorescence|immunocytofluorescence| +E0429305|immuno-enzymetric|immunoenzymetric| +E0429306|immuno-expression|immunoexpression| +E0429310|immunohaemotherapy|immunohemotherapy| +E0429311|immuno-incompetence|immunoincompetence| +E0429312|immuno-intervention|immunointervention| +E0429315|immuno-parameter|immunoparameter| +E0429316|immuno-peptide|immunopeptide| +E0429318|immuno-positivity|immunopositivity| +E0429320|immuno-recessive|immunorecessive| +E0429321|immuno-response|immunoresponse| +E0429323|immuno-suppressor|immunosuppressor| +E0429324|immuno-target|immunotarget| +E0429327|immuno-virological|immunovirological| +E0429336|Asclepias incarnata ssp incarnata|Asclepias incarnata ssp. incarnata| +E0429343|inclass|in-class| +E0429344|inclass|in-class| +E0429348|indentor|indenter| +E0429362|Opuntia ficus-indica|Opuntia ficus indica| +E0429363|O. ficus-indica|O. ficus indica| +E0429371|INDO|indo| +E0429371|Indo|indo| +E0429372|indo 1|indo-1| +E0429373|Indoeuropean|Indo-European| +E0429374|Indoasian|Indo-Asian| +E0429375|Indoasian|Indo-Asian| +E0429405|infectability|infectibility| +E0429410|infero-posteriorly|inferoposteriorly| +E0429411|infero-laterally|inferolaterally| +E0429412|infero-medial|inferomedial| +E0429413|infero-frontal|inferofrontal| +E0429414|infero-superior|inferosuperior| +E0429415|infero-temporally|inferotemporally| +E0429416|infero-nasal|inferonasal| +E0429422|in-folding|infolding| +E0429425|infra-cardiac|infracardiac| +E0429433|ingroup|in-group| +E0429461|inter-animal|interanimal| +E0429463|inter-bacterial|interbacterial| +E0429465|inter-birth interval|interbirth interval| +E0429468|inter-center|intercenter| +E0429470|inter-comparison|intercomparison| +E0429473|intercosto-bronchial|intercostobronchial| +E0429474|intercosto-brachial|intercostobrachial| +E0429475|intercosto-facial|intercostofacial| +E0429483|acne associated arthritis|acne-associated arthritis| +E0429484|acquired aplastic anaemia|acquired aplastic anemia| +E0429487|gluten free|gluten-free| +E0429488|HL60 cell|HL-60 cell| +E0429496|sodium polystyrene sulfphonate|sodium polystyrene sulfonate| +E0429518|beta-lipotrophic pituitary hormone|beta-lipotropic pituitary hormone| +E0429520|beta melanocyte stimulating hormone|beta melanocyte-stimulating hormone| +E0429521|beta calcitonin gene-related peptide|beta-calcitonin gene-related peptide| +E0429522|beta hydroxyacyl CoA dehydrogenase|beta-hydroxyacyl CoA dehydrogenase| +E0429525|Bicillin|bicillin| +E0429543|bornylpyrophosphate cyclase|bornyl pyrophosphate cyclase| +E0429544|bornylpyrophosphate synthetase|bornyl pyrophosphate synthetase| +E0429545|bornylpyrophosphate synthase|bornyl pyrophosphate synthase| +E0429550|Henoch-Schoenlein purpura|Henoch-Schonlein purpura| +E0429550|Henoch Schoenlein purpura|Henoch-Schonlein purpura| +E0429550|Henoch Schonlein purpura|Henoch-Schonlein purpura| +E0429552|Henoch-Schoenlein nephritis|Henoch-Schonlein nephritis| +E0429552|Henoch Schonlein nephritis|Henoch-Schonlein nephritis| +E0429552|Henoch Schoenlein nephritis|Henoch-Schonlein nephritis| +E0429554|Von Hippel-Lindau syndrome|von Hippel-Lindau syndrome| +E0429557|cyclic AMP dependent protein kinase|cyclic AMP-dependent protein kinase| +E0429558|adenosine cyclic monophosphate dependent protein kinase|adenosine cyclic monophosphate-dependent protein kinase| +E0429559|cyclic AMP phosphodiesterase inhibitor|cyclic AMP-phosphodiesterase inhibitor| +E0429566|desoxycholate citrate agar|desoxycholate-citrate agar| +E0429594|AIDS associated Kaposi's sarcoma|AIDS-associated Kaposi's sarcoma| +E0429598|dauno rubidomycine|dauno-rubidomycine| +E0429599|acute lymphocytic leukaemia|acute lymphocytic leukemia| +E0429599|acute lymphocytic leucemia|acute lymphocytic leukemia| +E0429599|acute lymphocytic leucaemia|acute lymphocytic leukemia| +E0429601|serum beta-2-microglobulin|serum beta 2-microglobulin| +E0429601|serum beta-2 microglobulin|serum beta 2-microglobulin| +E0429601|serum beta 2 microglobulin|serum beta 2-microglobulin| +E0429612|moi|MOI| +E0429618|oak wood|oakwood| +E0429645|Oct|Oct.| +E0429648|Arbeitsgemeinschaft Schweizerischer Frauenkliniken|Arbeitsgemeinschaft schweizerischer Frauenkliniken| +E0429659|thromboplastin-activation test|thromboplastin activation test| +E0429661|trans-axial tomography|transaxial tomography| +E0429663|tumour activity test|tumor activity test| +E0429688|Crohns disease|Crohn's disease| +E0429697|caesarean delivery|cesarean delivery| +E0429697|cesarian delivery|cesarean delivery| +E0429697|caesarian delivery|cesarean delivery| +E0429710|inter-cultural|intercultural| +E0429711|inter-cuspal|intercuspal| +E0429716|inter-electrode|interelectrode| +E0429717|inter-episode|interepisode| +E0429718|inter-esterified|interesterified| +E0429719|inter-eye|intereye| +E0429722|inter-filament|interfilament| +E0429723|inter-fraction|interfraction| +E0429724|inter-fraction interval|interfraction interval| +E0429727|involved field irradiation|involved-field irradiation| +E0429731|inter-hospital|interhospital| +E0429732|inter-laminar|interlaminar| +E0429733|inter-library|interlibrary| +E0429734|inter-loop|interloop| +E0429735|inter-meal|intermeal| +E0429741|inter-modal|intermodal| +E0429761|alpha internexin|alpha-internexin| +E0429762|beta internexin|beta-internexin| +E0429763|inter-nucleotide|internucleotide| +E0429767|inter-organ|interorgan| +E0429772|inter-pregnancy|interpregnancy| +E0429793|Acanthameba polyphaga|Acanthamoeba polyphaga| +E0429803|acephalochiria|acephalocheiria| +E0429819|"whistling face"|whistling face| +E0429873|acoustic neurilemmoma|acoustic neurilemoma| +E0429876|acquired immunodeficiency syndrome|acquired immuno-deficiency syndrome| +E0429887|bovine leucosis|bovine leukosis| +E0429912|adenine phosphoribosyl transferase deficiency|adenine phosphoribosyltransferase deficiency| +E0429913|adhaesio interthalamica|adhesio interthalamica| +E0429915|advanced oesophageal cancer|advanced esophageal cancer| +E0429920|asymptomatic oesophageal carcinoma|asymptomatic esophageal carcinoma| +E0429938|American leishmaniosis|American leishmaniasis| +E0429941|anaesthesia dolorosa|anesthesia dolorosa| +E0429965|aerootitis media|aero-otitis media| +E0429977|aleukia haemorrhagica|aleukia hemorrhagica| +E0429997|Atractaspis bibroni|Atractaspis bibronii| +E0430016|Bacteroides melaninogenicus subsp asaccharolyticus|Bacteroides melaninogenicus subsp. asaccharolyticus| +E0430017|Bacteroides melaninogenicus ss asaccharolyticus|Bacteroides melaninogenicus ss. asaccharolyticus| +E0430020|Bacteroides melaninogenicus subsp melaninogenicus|Bacteroides melaninogenicus subsp. melaninogenicus| +E0430021|Bacteroides melaninogenicus ss melaninogenicus|Bacteroides melaninogenicus ss. melaninogenicus| +E0430037|Bacteroides fragilis subsp distasonis|Bacteroides fragilis subsp. distasonis| +E0430038|Bacteroides fragilis ss distasonis|Bacteroides fragilis ss. distasonis| +E0430043|cabinet maker|cabinetmaker| +E0430050|carboxyhaemoglobinaemia|carboxyhemoglobinemia| +E0430054|cervico-thoracic ganglion|cervicothoracic ganglion| +E0430055|chamber maid|chambermaid| +E0430066|coal-miner|coal miner| +E0430070|collarbone|collar bone| +E0430070|collar-bone|collar bone| +E0430091|alpha streptococcus|alpha-streptococcus| +E0430092|alpha Streptococcus|alpha-Streptococcus| +E0430095|alveolo-dental membrane|alveolodental membrane| +E0430101|aminoacid analyzer|amino acid analyzer| +E0430110|anaemia neonatorum|anemia neonatorum| +E0430118|anterior atlanto-occipital membrane|anterior atlantooccipital membrane| +E0430126|anterior superior pancreatico-duodenal artery|anterior superior pancreaticoduodenal artery| +E0430127|antero-septal myocardial infarction|anteroseptal myocardial infarction| +E0430129|antigen presenting cell|antigen-presenting cell| +E0430141|archeocerebellum|archaeocerebellum| +E0430171|antinucleolar antibody|anti-nucleolar antibody| +E0430177|Argyll Robertson sign|Argyll-Robertson sign| +E0430180|Arnold Chiari deformity|Arnold-Chiari deformity| +E0430208|auriculoventricular dissociation|auriculo-ventricular dissociation| +E0430209|auto-erythrocyte sensitisation|auto-erythrocyte sensitization| +E0430209|autoerythrocyte sensitization|auto-erythrocyte sensitization| +E0430209|autoerythrocyte sensitisation|auto-erythrocyte sensitization| +E0430210|atrio-ventricular nodal artery|atrioventricular nodal artery| +E0430211|balloon fish|balloonfish| +E0430220|Babinski reflex|Babinski's reflex| +E0430222|basiphilic cell|basophilic cell| +E0430226|Berger's paraesthesia|Berger's paresthesia| +E0430237|brown tail moth|brown-tail moth| +E0430254|castor oil plant|castor-oil plant| +E0430269|charley horse|charleyhorse| +E0430271|chile con carne|chili con carne| +E0430279|APT test|apt test| +E0430285|articulatio sacroiliaca|articulatio sacro-iliaca| +E0430331|basi-occipital bone|basioccipital bone| +E0430333|basi-sphenoid bone|basisphenoid bone| +E0430334|Bassen Kornzweig syndrome|Bassen-Kornzweig syndrome| +E0430338|Bender Gestalt test|Bender-Gestalt test| +E0430341|Bernard-Horner syndrome|Bernard Horner syndrome| +E0430349|beta streptococcus|beta-streptococcus| +E0430350|beta-Streptococcus|beta Streptococcus| +E0430389|bitter-sweet|bittersweet| +E0430391|black-dot ringworm|black dot ringworm| +E0430400|blue-bloater|blue bloater| +E0430401|block anaesthesia|block anesthesia| +E0430403|blood gas analyser|blood gas analyzer| +E0430452|Bruton's agammaglobulinaemia|Bruton's agammaglobulinemia| +E0430454|bubonocoele|bubonocele| +E0430461|Brenner's tumour|Brenner's tumor| +E0430476|clear air turbulence|clear-air turbulence| +E0430477|CAT|C.A.T.| +E0430478|computer-assisted tomography|computer assisted tomography| +E0430489|Campylobacter fetus subsp. fetus|Campylobacter fetus subsp fetus| +E0430497|Canavan-Van Bogaert-Bertrand disease|Canavan-van Bogaert-Bertrand disease| +E0430499|cancerphobia|cancer phobia| +E0430512|carbohydrate induced hyperlipemia|carbohydrate-induced hyperlipemia| +E0430512|carbohydrate-induced hyperlipaemia|carbohydrate-induced hyperlipemia| +E0430512|carbohydrate induced hyperlipaemia|carbohydrate-induced hyperlipemia| +E0430513|cardio-esophageal sphincter|cardioesophageal sphincter| +E0430513|cardiooesophageal sphincter|cardioesophageal sphincter| +E0430513|cardio-oesophageal sphincter|cardioesophageal sphincter| +E0430531|cation exchange capacity|cation-exchange capacity| +E0430585|cerebello-medullary cistern|cerebellomedullary cistern| +E0430586|cerebello-spinal tract|cerebellospinal tract| +E0430588|cerebro-atrophic hyperammonemia|cerebroatrophic hyperammonemia| +E0430588|cerebroatrophic hyperammonaemia|cerebroatrophic hyperammonemia| +E0430588|cerebro-atrophic hyperammonaemia|cerebroatrophic hyperammonemia| +E0430589|cerebro-atrophic|cerebroatrophic| +E0430590|cerebro-retinal angiomatosis|cerebroretinal angiomatosis| +E0430591|cerebro-retinal|cerebroretinal| +E0430596|chairfast|chair-fast| +E0430596|chair fast|chair-fast| +E0430604|chemo-autotroph|chemoautotroph| +E0430610|child rearing|child-rearing| +E0430610|childrearing|child-rearing| +E0430611|child rearing|child-rearing| +E0430611|childrearing|child-rearing| +E0430620|cholecysto-gastric fistula|cholecystogastric fistula| +E0430621|choledochointestinal|choledocho-intestinal| +E0430622|choledocho-jejunal|choledochojejunal| +E0430623|choledochohepatic|choledocho-hepatic| +E0430624|choledochocholedochal|choledocho-choledochal| +E0430625|choledocho-enteric|choledochoenteric| +E0430626|choledocho-duodenal|choledochoduodenal| +E0430627|choledocho-vesical|choledochovesical| +E0430628|choledocho-pancreatography|choledochopancreatography| +E0430629|choledochopancreatic|choledocho-pancreatic| +E0430630|choledochoureteral|choledocho-ureteral| +E0430642|chronic progressive non-hereditary chorea|chronic progressive nonhereditary chorea| +E0430673|cis-trans isomerisation|cis-trans isomerization| +E0430677|Claude Bernard Horner syndrome|Claude Bernard-Horner syndrome| +E0430689|club house|clubhouse| +E0430690|co-agglutinate|coagglutinate| +E0430693|sting-ray|stingray| +E0430694|coachwhip sting-ray|coachwhip stingray| +E0430695|coastguard|coast guard| +E0430695|Coast Guard|coast guard| +E0430695|Coastguard|coast guard| +E0430742|drain-pipe|drainpipe| +E0430742|drain pipe|drainpipe| +E0430758|eosinophilic leucocyte|eosinophilic leukocyte| +E0430766|encephalo-facial angiomatosis|encephalofacial angiomatosis| +E0430784|collateral hyperaemia|collateral hyperemia| +E0430810|congenital familial nonhemolytic jaundice|congenital familial non-hemolytic jaundice| +E0430810|congenital familial non-haemolytic jaundice|congenital familial non-hemolytic jaundice| +E0430810|congenital familial nonhaemolytic jaundice|congenital familial non-hemolytic jaundice| +E0430811|congenital hydrocoele|congenital hydrocele| +E0430814|congestive dysmenorrhoea|congestive dysmenorrhea| +E0430816|conjugated hyper-bilirubinemia|conjugated hyperbilirubinemia| +E0430816|conjugated hyperbilirubinaemia|conjugated hyperbilirubinemia| +E0430816|conjugated hyper-bilirubinaemia|conjugated hyperbilirubinemia| +E0430823|convoluted T cell lymphoma|convoluted T-cell lymphoma| +E0430831|co-parent|coparent| +E0430838|corn-cockle poisoning|corn cockle poisoning| +E0430838|corncockle poisoning|corn cockle poisoning| +E0430840|corneo-scleral junction|corneoscleral junction| +E0430857|cortico-bulbar tract|corticobulbar tract| +E0430859|Corynebacterium hemolyticum|Corynebacterium haemolyticum| +E0430866|cotton-wool exudate|cotton wool exudate| +E0430868|cotton-wool spots|cotton wool spots| +E0430870|cow-parsnip|cow parsnip| +E0430873|craniocoele|craniocele| +E0430883|crico-arytenoid muscle|cricoarytenoid muscle| +E0430891|cross dress|cross-dress| +E0430892|cross leg flap|cross-leg flap| +E0430893|cross leg|cross-leg| +E0430894|cross-over trial|crossover trial| +E0430903|cryanaesthesia|cryanesthesia| +E0430919|cusk eel|cusk-eel| +E0430943|cystourethrocoele|cystourethrocele| +E0430946|CY-VA-DIC|CYVADIC| +E0430969|Dianetics|dianetics| +E0430992|duodeno-enterostomy|duodenoenterostomy| +E0431013|dehaematisation|dehematization| +E0431016|dentato-thalamic fiber|dentatothalamic fiber| +E0431016|dentatothalamic fibre|dentatothalamic fiber| +E0431016|dentato-thalamic fibre|dentatothalamic fiber| +E0431023|detrusor hyper-reflexia|detrusor hyperreflexia| +E0431048|dog's-bane|dogbane| +E0431048|dog bane|dogbane| +E0431057|dose-effect curve|dose effect curve| +E0431058|dose-response curve|dose response curve| +E0431071|duodeno-jejunal|duodenojejunal| +E0431073|duodeno-ileal|duodenoileal| +E0431074|duodeno-vesical|duodenovesical| +E0431075|duodeno-gastric reflux|duodenogastric reflux| +E0431076|duodeno-gastro-oesophageal reflux|duodeno-gastro-esophageal reflux| +E0431076|duodeno-gastroesophageal reflux|duodeno-gastro-esophageal reflux| +E0431078|duodeno-renal|duodenorenal| +E0431079|duodeno-cecal|duodenocecal| +E0431079|duodeno-coecal|duodenocecal| +E0431079|duodenocoecal|duodenocecal| +E0431080|duodeno-caval fistula|duodenocaval fistula| +E0431081|duodeno-caval|duodenocaval| +E0431082|duodeno-pyloric|duodenopyloric| +E0431083|duodeno-jejunum|duodenojejunum| +E0431084|duodeno-intestinal|duodenointestinal| +E0431087|dysplastic naevus syndrome|dysplastic nevus syndrome| +E0431091|Ebola haemorrhagic fever|Ebola hemorrhagic fever| +E0431112|epiphysial fracture|epiphyseal fracture| +E0431129|extra chromosomal inheritance|extrachromosomal inheritance| +E0431129|extra-chromosomal inheritance|extrachromosomal inheritance| +E0431132|dyschesia|dyschezia| +E0431149|emotionally-focused therapy|emotionally focused therapy| +E0431152|earth fixed target|earth-fixed target| +E0431155|Eisenia fetida|Eisenia foetida| +E0431167|epilepsy monitoring unit|epilepsy-monitoring unit| +E0431171|endocrine exophthalmus|endocrine exophthalmos| +E0431186|episthotonus|episthotonos| +E0431187|epizootic aptha|epizootic aphtha| +E0431195|esophagosalivary reflex|esophago-salivary reflex| +E0431195|oesophago-salivary reflex|esophago-salivary reflex| +E0431195|oesophagosalivary reflex|esophago-salivary reflex| +E0431196|essential thrombocytopaenia|essential thrombocytopenia| +E0431208|eye colour|eye color| +E0431209|F.U.O.|FUO| +E0431211|facioscapulohumeral muscular dystrophy|facio-scapulo-humeral muscular dystrophy| +E0431212|foetal alcohol effect|fetal alcohol effect| +E0431219|familial fat-induced hyperlipemia|familial fat induced hyperlipemia| +E0431219|familial fat induced hyperlipaemia|familial fat induced hyperlipemia| +E0431219|familial fat-induced hyperlipaemia|familial fat induced hyperlipemia| +E0431220|familial hyperlipaemia|familial hyperlipemia| +E0431244|femoro-popliteal bypass|femoropopliteal bypass| +E0431246|foetal hydrops|fetal hydrops| +E0431247|fibroid tumour|fibroid tumor| +E0431265|Favre Racouchot syndrome|Favre-Racouchot syndrome| +E0431279|fer de lance virus|fer-de-lance virus| +E0431286|fibrinopaenia|fibrinopenia| +E0431318|fly agaric|fly-agaric| +E0431323|folliculitis cheloidalis|folliculitis keloidalis| +E0431328|foot path|footpath| +E0431359|free floating|free-floating| +E0431359|freefloating|free-floating| +E0431369|fronto-parietal suture|frontoparietal suture| +E0431374|funnel-web spider|funnel web spider| +E0431383|game-keeper|gamekeeper| +E0431384|game-keeper's thumb|gamekeeper's thumb| +E0431385|gamma-chain disease|gamma chain disease| +E0431405|gastro-epiploic artery|gastroepiploic artery| +E0431406|gastro-intestinal allergy|gastrointestinal allergy| +E0431407|gastrointestinal tularaemia|gastrointestinal tularemia| +E0431407|gastro-intestinal tularemia|gastrointestinal tularemia| +E0431407|gastro-intestinal tularaemia|gastrointestinal tularemia| +E0431412|gel-filtration chromatography|gelfiltration chromatography| +E0431412|gel filtration chromatography|gelfiltration chromatography| +E0431414|generalised elastolysis|generalized elastolysis| +E0431415|generalised marginal gingivitis|generalized marginal gingivitis| +E0431423|gestalt psychology|Gestalt psychology| +E0431432|Glasgow coma scale|Glasgow Coma Scale| +E0431438|glomerulo-tubular|glomerulotubular| +E0431439|glomerulo-sclerotic|glomerulosclerotic| +E0431440|glomerulo-vascular|glomerulovascular| +E0431449|glucosyl ceramide lipidosis|glucosylceramide lipidosis| +E0431458|golden rain tree|goldenrain tree| +E0431466|grave digger|gravedigger| +E0431466|grave-digger|gravedigger| +E0431468|gray cheeked thrush|gray-cheeked thrush| +E0431474|ground hog|groundhog| +E0431492|Grawitz's tumour|Grawitz's tumor| +E0431509|gustatory anaesthesia|gustatory anesthesia| +E0431511|Gyn|GYN| +E0431511|gyn|GYN| +E0431512|Gyn|GYN| +E0431512|gyn|GYN| +E0431536|H. leporis-palustris|H. leporispalustris| +E0431542|hair-brush|hairbrush| +E0431542|hair brush|hairbrush| +E0431543|hemophilus|haemophilus| +E0431546|half-beak|halfbeak| +E0431548|Hallermann Streiff syndrome|Hallermann-Streiff syndrome| +E0431553|hand print|handprint| +E0431559|harbour seal|harbor seal| +E0431560|hard bodied tick|hard-bodied tick| +E0431562|Harding Passey melanoma|Harding-Passey melanoma| +E0431573|head first|headfirst| +E0431573|head-first|headfirst| +E0431582|heel spur|heelspur| +E0431587|haemangioblastomatosis|hemangioblastomatosis| +E0431588|haemomediastinum|hemomediastinum| +E0431589|haemopericardium|hemopericardium| +E0431590|haematotympanum|hematotympanum| +E0431591|haematoperitoneum|hematoperitoneum| +E0431593|haemocholecyst|hemocholecyst| +E0431594|haemoflagellate|hemoflagellate| +E0431595|haemoflagellate|hemoflagellate| +E0431596|haemoglobin test|hemoglobin test| +E0431597|haemoplastic|hemoplastic| +E0431598|haemogenic|hemogenic| +E0431599|haemoptoic|hemoptoic| +E0431600|haemospasia|hemospasia| +E0431601|Henoch-Schoenlein syndrome|Henoch-Schonlein syndrome| +E0431601|Henoch Schonlein syndrome|Henoch-Schonlein syndrome| +E0431601|Henoch Schoenlein syndrome|Henoch-Schonlein syndrome| +E0431603|hepato-splanchnic|hepatosplanchnic| +E0431604|hepato-cellularity|hepatocellularity| +E0431605|hepatoneurologic|hepato-neurologic| +E0431606|hepatointestinal|hepato-intestinal| +E0431607|hepatogastroenterologist|hepato-gastroenterologist| +E0431608|hepatogastroenterology|hepato-gastroenterology| +E0431609|hepato-gastrointestinal|hepatogastrointestinal| +E0431610|hepato-protection|hepatoprotection| +E0431626|heterologous ensemination|heterologous insemination| +E0431632|hexose-monophosphate shunt|hexosemonophosphate shunt| +E0431632|hexose monophosphate shunt|hexosemonophosphate shunt| +E0431636|high-calorie diet|high calorie diet| +E0431637|high-fat diet|high fat diet| +E0431641|hipbone|hip bone| +E0431666|human leucocyte antigen typing|human leukocyte antigen typing| +E0431669|hornfly|horn fly| +E0431669|horn-fly|horn fly| +E0431670|horse chestnut|horse-chestnut| +E0431670|horsechestnut|horse-chestnut| +E0431674|Horton syndrome|Horton's syndrome| +E0431700|hypoglycaemic shock|hypoglycemic shock| +E0431701|hypophyseal dwarf|hypophysial dwarf| +E0431705|hypothalamic amenorrhoea|hypothalamic amenorrhea| +E0431706|ice-pack|ice pack| +E0431707|icthyosis vulgaris|ichthyosis vulgaris| +E0431709|ileo-cecal junction|ileocecal junction| +E0431709|ileocoecal junction|ileocecal junction| +E0431709|ileo-coecal junction|ileocecal junction| +E0431709|ileocaecal junction|ileocecal junction| +E0431709|ileo-caecal junction|ileocecal junction| +E0431711|idiopathic hypercalcaemia|idiopathic hypercalcemia| +E0431732|idio-ventricular rhythm|idioventricular rhythm| +E0431734|ilio-lumbar ligament|iliolumbar ligament| +E0431735|ilio-pectineal line|iliopectineal line| +E0431736|imam|Imam| +E0431738|immuno-deficiency disorder|immunodeficiency disorder| +E0431763|infantile beri-beri|infantile beriberi| +E0431764|infected aneurism|infected aneurysm| +E0431766|inferior hypophyseal artery|inferior hypophysial artery| +E0431770|infiltration anaesthesia|infiltration anesthesia| +E0431774|in-growing toenail|ingrowing toenail| +E0431778|inn keeper|innkeeper| +E0431778|inn-keeper|innkeeper| +E0431781|insufflation anaesthesia|insufflation anesthesia| +E0431787|inter-alveolar septum|interalveolar septum| +E0431788|inter-atrial groove|interatrial groove| +E0431801|inter-ureteric fold|interureteric fold| +E0431805|intra-abdominal pressure|intraabdominal pressure| +E0431806|intra-cerebellar nucleus|intracerebellar nucleus| +E0431807|intracranial aerocoele|intracranial aerocele| +E0431807|intra-cranial aerocele|intracranial aerocele| +E0431807|intra-cranial aerocoele|intracranial aerocele| +E0431808|intra-cutaneous injection|intracutaneous injection| +E0431809|intramedullary haemorrhage|intramedullary hemorrhage| +E0431810|intrapulpal anaesthesia|intrapulpal anesthesia| +E0431811|intra-uterine contraception|intrauterine contraception| +E0431842|jaw winking|jaw-winking| +E0431845|jet injection|jet-injection| +E0431850|Jaffe Lichtenstein syndrome|Jaffe-Lichtenstein syndrome| +E0431850|Jaffe Lichtenstein's syndrome|Jaffe-Lichtenstein syndrome| +E0431850|Jaffe-Lichtenstein's syndrome|Jaffe-Lichtenstein syndrome| +E0431854|Kallmann syndrome|Kallmann's syndrome| +E0431856|keratinising cyst|keratinizing cyst| +E0431862|keto acid decarboxylase deficiency|ketoacid decarboxylase deficiency| +E0431863|ketosis prone diabetes|ketosis-prone diabetes| +E0431875|Klein Waardenburg syndrome|Klein-Waardenburg syndrome| +E0431877|Kolmogorov Smirnov test|Kolmogorov-Smirnov test| +E0431878|Krukenberg's tumour|Krukenberg's tumor| +E0431883|Klippel Trenaunay syndrome|Klippel-Trenaunay syndrome| +E0431890|jack-o'-lantern|jack-o-lantern| +E0431891|infralow|infra-low| +E0431892|infraHisian|infra-Hisian| +E0431892|infra-hisian|infra-Hisian| +E0431892|infrahisian|infra-Hisian| +E0431893|infra-hisian block|infra-Hisian block| +E0431893|infraHisian block|infra-Hisian block| +E0431893|infrahisian block|infra-Hisian block| +E0431894|infra-human|infrahuman| +E0431895|mossy fibre|mossy fiber| +E0431896|infraaortic|infra-aortic| +E0431897|infra-therapeutic|infratherapeutic| +E0431898|infra-thoracic|infrathoracic| +E0431899|infraauricular|infra-auricular| +E0431900|infra-sellar|infrasellar| +E0431901|infra-popliteal|infrapopliteal| +E0431902|infra-red optometer|infrared optometer| +E0431903|infra-red spectroscopy|infrared spectroscopy| +E0431904|infra-red spectrometry|infrared spectrometry| +E0431905|near infrared spectroscopy|near-infrared spectroscopy| +E0431905|near-infra-red spectroscopy|near-infrared spectroscopy| +E0431905|near infra-red spectroscopy|near-infrared spectroscopy| +E0431907|gamete intra-fallopian transfer|gamete intrafallopian transfer| +E0431909|intra-cytoplasmatic sperm injection|intracytoplasmatic sperm injection| +E0431911|intraacinar|intra-acinar| +E0431912|intraventral tegmental area|intra-ventral tegmental area| +E0431914|intra-sleep|intrasleep| +E0431915|intra-sleep awakening|intrasleep awakening| +E0431916|intraobserver|intra-observer| +E0431917|intrainvestigator|intra-investigator| +E0431918|intraabdominally|intra-abdominally| +E0431920|IV|iv| +E0431924|juxtaarterial|juxta-arterial| +E0431925|juxta-osseous|juxtaosseous| +E0431926|juxtadural|juxta-dural| +E0431927|juxta-epithelial|juxtaepithelial| +E0431928|juxta-pleural|juxtapleural| +E0431929|juxta-centromeric|juxtacentromeric| +E0431930|juxtaalveolar|juxta-alveolar| +E0431932|Garcinia cola|Garcinia kola| +E0431941|Koplik's spot|Koplik spot| +E0431942|Korsakoff syndrome|Korsakoff's syndrome| +E0431942|Korsakov's syndrome|Korsakoff's syndrome| +E0431942|Korsakov syndrome|Korsakoff's syndrome| +E0431943|Kras|KRAS| +E0431943|K-ras|KRAS| +E0431944|Krebs cycle|Krebs' cycle| +E0431944|Krebs's cycle|Krebs' cycle| +E0431946|Kyoto Wistar rat|Kyoto-Wistar rat| +E0431949|L.E. cell|LE cell| +E0431954|lactosylceramidosis|lactosyl ceramidosis| +E0431965|Landouzy Dejerine dystrophy|Landouzy-Dejerine dystrophy| +E0431968|Langerhans cell granulomatosis|Langerhans-cell granulomatosis| +E0431974|Lasegue's sign|Lasegue sign| +E0431991|left gastro-pancreatic fold|left gastropancreatic fold| +E0431992|gastro-pancreatic|gastropancreatic| +E0432017|Leptosylla segnis|Leptopsylla segnis| +E0432023|Leptospira interrogans serogroup Australis|Leptospira interrogans, serogroup Australis| +E0432024|L. interrogans serogroup Australis|L. interrogans, serogroup Australis| +E0432025|Leptospira interrogans serogroup Bataviae|Leptospira interrogans, serogroup Bataviae| +E0432026|L. interrogans serogroup Bataviae|L. interrogans, serogroup Bataviae| +E0432027|Leptospira interrogans serogroup Grippotyphosa|Leptospira interrogans, serogroup Grippotyphosa| +E0432028|L. interrogans serogroup Grippotyphosa|L. interrogans, serogroup Grippotyphosa| +E0432029|Leptospira interrogans serogroup Icterohemorrhagiae|Leptospira interrogans, serogroup Icterohaemorrhagiae| +E0432030|L. interrogans serogroup Icterohaemorrhagiae|L. interrogans, serogroup Icterohaemorrhagiae| +E0432031|Leptospira interrogans serogroup Pyrogenes|Leptospira interrogans, serogroup Pyrogenes| +E0432032|L. interrogans serogroup Pyrogenes|L. interrogans, serogroup Pyrogenes| +E0432035|Leuconostoc mesenteroides ssp. dextranicum|Leuconostoc mesenteroides subsp. dextranicum| +E0432038|leucorrhagia|leukorrhagia| +E0432039|Lichtheim sign|Lichtheim's sign| +E0432045|lieno-renal shunt|lienorenal shunt| +E0432046|lieno-mesenteric|lienomesenteric| +E0432047|lieno-portal|lienoportal| +E0432070|Lignac Fanconi syndrome|Lignac-Fanconi syndrome| +E0432079|linear morphoea|linear morphea| +E0432081|linguo-apically|linguoapically| +E0432082|bucco-linguo-facial|buccolinguofacial| +E0432083|bucco-linguo-facial apraxia|buccolinguofacial apraxia| +E0432085|bucco-linguo-masticatory dyskinesia|buccolinguomasticatory dyskinesia| +E0432086|bucco-linguo-masticatory syndrome|buccolinguomasticatory syndrome| +E0432087|linguolabial|linguo-labial| +E0432088|linguo-buccal|linguobuccal| +E0432089|linguo-pharyngeal|linguopharyngeal| +E0432090|linguo-intrusive|linguointrusive| +E0432091|linguo-statistical|linguostatistical| +E0432093|linguo-facial|linguofacial| +E0432094|linguohypoglossal|linguo-hypoglossal| +E0432095|linguo-mandibular|linguomandibular| +E0432097|linguo-palatal|linguopalatal| +E0432098|linguo-version|linguoversion| +E0432101|long-term memory|long term memory| +E0432102|low-purine diet|low purine diet| +E0432103|low-residue diet|low residue diet| +E0432111|lipaemia retinalis|lipemia retinalis| +E0432112|leukaemic retinitis|leukemic retinitis| +E0432112|leucemic retinitis|leukemic retinitis| +E0432112|leucaemic retinitis|leukemic retinitis| +E0432137|Lovset's manoeuvre|Lovset's maneuver| +E0432138|lower segment caesarean section|lower segment cesarean section| +E0432138|lower segment cesarian section|lower segment cesarean section| +E0432138|lower segment caesarian section|lower segment cesarean section| +E0432148|Lu. umbratilis|L. umbratilis| +E0432151|Lyell syndrome|Lyell's syndrome| +E0432157|lymphogenous leukaemia|lymphogenous leukemia| +E0432157|lymphogenous leucemia|lymphogenous leukemia| +E0432157|lymphogenous leucaemia|lymphogenous leukemia| +E0432159|lympho-reticular system|lymphoreticular system| +E0432184|maxillo-mandibular fixation|maxillomandibular fixation| +E0432188|mixed anxiety depressive disorder|mixed anxiety-depressive disorder| +E0432189|multiple acyl-CoA-dehydrogenase deficiency|multiple acyl-CoA dehydrogenase deficiency| +E0432193|myoadenylate deaminase|myo-adenylate deaminase| +E0432195|main en griffe|main-en-griffe| +E0432208|manubrio-sternal|manubriosternal| +E0432209|manubrio-sternal joint|manubriosternal joint| +E0432210|marasmic-kwashiorkor|marasmic kwashiorkor| +E0432213|Marchiafava Bignami syndrome|Marchiafava-Bignami syndrome| +E0432216|Maroteaux Lamy syndrome|Maroteaux-Lamy syndrome| +E0432218|matzoh|matzo| +E0432236|Mediterranean anaemia|Mediterranean anemia| +E0432239|megacystis megaureter syndrome|megacystis-megaureter syndrome| +E0432252|mento-posterior position|mentoposterior position| +E0432262|metaphysial dysostosis|metaphyseal dysostosis| +E0432264|Metis|metis| +E0432276|mid-axilla|midaxilla| +E0432277|mid-axillary line|midaxillary line| +E0432280|milk-leg|milk leg| +E0432284|miners' elbow|miner's elbow| +E0432287|mis-sense mutation|missense mutation| +E0432290|mixed haemorrhoid|mixed hemorrhoid| +E0432291|mixed leucocyte reaction|mixed leukocyte reaction| +E0432300|mono-factorial|monofactorial| +E0432302|monophthalmos|monophthalmus| +E0432310|moon-face|moonface| +E0432310|moon face|moonface| +E0432311|Morgan|morgan| +E0432315|Morquio Ullrich syndrome|Morquio-Ullrich syndrome| +E0432329|mu chain disease|mu-chain disease| +E0432332|mud bath|mud-bath| +E0432332|mudbath|mud-bath| +E0432338|multiple sulphatase deficiency|multiple sulfatase deficiency| +E0432344|muscularisation|muscularization| +E0432372|myo-endothelial|myoendothelial| +E0432373|myo-tendinous|myotendinous| +E0432380|naegleriosis|naegleriasis| +E0432387|naso-alveolar|nasoalveolar| +E0432388|naso-tracheal intubation|nasotracheal intubation| +E0432390|naso-intestinal|nasointestinal| +E0432391|nasoocular|naso-ocular| +E0432392|naso-oesophageal|naso-esophageal| +E0432392|nasoesophageal|naso-esophageal| +E0432392|nasooesophageal|naso-esophageal| +E0432393|blepharonasofacial|blepharo-naso-facial| +E0432394|naso-sinusal|nasosinusal| +E0432395|nasosinus|naso-sinus| +E0432397|naso-respiratory|nasorespiratory| +E0432398|naso-genal|nasogenal| +E0432399|naso-endoscopy|nasoendoscopy| +E0432401|naso-jejunal|nasojejunal| +E0432402|nasooccipital axis|naso-occipital axis| +E0432403|nasooccipital|naso-occipital| +E0432404|naso-ethmoidal|nasoethmoidal| +E0432405|nasoethmoidorbital|naso-ethmoid-orbital| +E0432406|nasoethmoid|naso-ethmoid| +E0432407|naso-biliary|nasobiliary| +E0432409|native born|native-born| +E0432412|necrotising arteritis|necrotizing arteritis| +E0432413|necrotising erysipelas|necrotizing erysipelas| +E0432439|Netherton syndrome|Netherton's syndrome| +E0432447|neuroepithelial tumour|neuroepithelial tumor| +E0432447|neuro-epithelial tumor|neuroepithelial tumor| +E0432447|neuro-epithelial tumour|neuroepithelial tumor| +E0432469|N. otitidiscaviarum|N. otitidis-caviarum| +E0432469|N. otitidis caviarum|N. otitidis-caviarum| +E0432473|non-involution|noninvolution| +E0432474|nonvibratory tinnitus|non-vibratory tinnitus| +E0432475|non-accredited|nonaccredited| +E0432476|non-comitant|noncomitant| +E0432477|non-comitant strabismus|noncomitant strabismus| +E0432478|non-diagnosis|nondiagnosis| +E0432479|Nonne Milroy Meige syndrome|Nonne-Milroy-Meige syndrome| +E0432480|non-profit|nonprofit| +E0432481|non-profit|nonprofit| +E0432482|non-staphylococcal scalded skin syndrome|nonstaphylococcal scalded skin syndrome| +E0432482|nonstaphylococcal scalded-skin syndrome|nonstaphylococcal scalded skin syndrome| +E0432482|non-staphylococcal scalded-skin syndrome|nonstaphylococcal scalded skin syndrome| +E0432483|non-thrombocytopenic|nonthrombocytopenic| +E0432553|Bitot spot|Bitot's spot| +E0432554|Di Guglielmo's syndrome|Di Guglielmo syndrome| +E0432554|DiGuglielmo syndrome|Di Guglielmo syndrome| +E0432554|DiGuglielmo's syndrome|Di Guglielmo syndrome| +E0432555|Gartner cyst|Gartner's cyst| +E0432556|Gasser syndrome|Gasser's syndrome| +E0432565|oil-tanker|oil tanker| +E0432573|OCA|OCa| +E0432575|occipito-anterior position|occipitoanterior position| +E0432588|oculo-pupillary reflex|oculopupillary reflex| +E0432600|organism identification number|Organism Identification Number| +E0432604|old age|old-age| +E0432611|SIS oncogene|sis oncogene| +E0432618|open loop|open-loop| +E0432626|orocecal transit time|orocoecal transit time| +E0432626|orocaecal transit time|orocoecal transit time| +E0432626|oro-coecal transit time|orocoecal transit time| +E0432626|oro-cecal transit time|orocoecal transit time| +E0432626|oro-caecal transit time|orocoecal transit time| +E0432627|oroocular|oro-ocular| +E0432628|oro-dental|orodental| +E0432630|orocaudal|oro-caudal| +E0432631|oral hairy leucoplakia|oral hairy leukoplakia| +E0432635|orbital pseudotumour|orbital pseudotumor| +E0432635|orbital pseudo-tumor|orbital pseudotumor| +E0432635|orbital pseudo-tumour|orbital pseudotumor| +E0432645|Ornythonyssus bacoti|Ornithonyssus bacoti| +E0432647|oro-tracheal intubation|orotracheal intubation| +E0432650|orthopaedic surgery|orthopedic surgery| +E0432672|over-generosity|overgenerosity| +E0432673|over-generous|overgenerous| +E0432674|over-shirt|overshirt| +E0432682|Ps|P s| +E0432683|Ps.|Ps| +E0432688|post-inertia dyskinesia|postinertia dyskinesia| +E0432695|Pajot's manoeuvre|Pajot's maneuver| +E0432707|pancreatico-jejunal|pancreaticojejunal| +E0432725|para-sagittal plane|parasagittal plane| +E0432730|para-vertebral line|paravertebral line| +E0432731|parietooccipital suture|parieto-occipital suture| +E0432752|pure tone threshold|pure-tone threshold| +E0432755|passionfruit|passion fruit| +E0432756|passion fruit woodiness virus|passionfruit woodiness virus| +E0432762|Paterson Brown Kelly syndrome|Paterson-Brown-Kelly syndrome| +E0432767|peak-flow meter|peak flow meter| +E0432775|paediatric dentistry|pediatric dentistry| +E0432784|psoralen ultraviolet A therapy|psoralen-ultraviolet A therapy| +E0432797|perianal haematoma|perianal hematoma| +E0432811|phaco-antigenic|phacoantigenic| +E0432811|phakoantigenic|phacoantigenic| +E0432811|phako-antigenic|phacoantigenic| +E0432812|phaco-antigenic uveitis|phacoantigenic uveitis| +E0432812|phakoantigenic uveitis|phacoantigenic uveitis| +E0432812|phako-antigenic uveitis|phacoantigenic uveitis| +E0432815|pharmaco-therapeutics|pharmacotherapeutics| +E0432818|pharyngo-tonsillar|pharyngotonsillar| +E0432819|pharyngo-upper oesophageal sphincter|pharyngo-upper esophageal sphincter| +E0432821|pharyngocutan|pharyngo-cutan| +E0432822|pharyngocutaneous|pharyngo-cutaneous| +E0432823|pharyngo-esophagoplasty|pharyngoesophagoplasty| +E0432823|pharyngo-oesophagoplasty|pharyngoesophagoplasty| +E0432839|photo-luminescence|photoluminescence| +E0432842|photo-protection|photoprotection| +E0432860|pietism|Pietism| +E0432862|pigeon-chest|pigeon chest| +E0432899|port wine stain|port-wine stain| +E0432899|portwine stain|port-wine stain| +E0432903|pleuro-pneumonectomy|pleuropneumonectomy| +E0432904|pleuro-amniotic|pleuroamniotic| +E0432905|pleuro-parenchymal|pleuroparenchymal| +E0432949|polyradiculo-neuropathy|polyradiculoneuropathy| +E0432959|post gastrectomy syndrome|post-gastrectomy syndrome| +E0432960|post pericardiotomy syndrome|post-pericardiotomy syndrome| +E0432961|postvaccinal encephalomyelitis|post-vaccinal encephalomyelitis| +E0432961|post vaccinal encephalomyelitis|post-vaccinal encephalomyelitis| +E0432962|postconcussional syndrome|post-concussional syndrome| +E0432962|post concussional syndrome|post-concussional syndrome| +E0432963|posttraumatic brain syndrome|post-traumatic brain syndrome| +E0432963|post traumatic brain syndrome|post-traumatic brain syndrome| +E0432964|post-basic stare|postbasic stare| +E0432967|posterior fontanel|posterior fontanelle| +E0432972|post-hypnotic amnesia|posthypnotic amnesia| +E0432973|post-mature labor|postmature labor| +E0432974|post-natal development|postnatal development| +E0432975|post-spinal headache|postspinal headache| +E0432976|post-thrombotic syndrome|postthrombotic syndrome| +E0432977|post-traumatic amnesia|posttraumatic amnesia| +E0432979|pre-maxillary bone|premaxillary bone| +E0432980|pre-motor area|premotor area| +E0432981|pre-occipital incisure|preoccipital incisure| +E0432983|pre-psychotic schizophrenia|prepsychotic schizophrenia| +E0432985|pre-sacral nerve|presacral nerve| +E0432989|pre-vascular|prevascular| +E0432991|primary extra-pulmonary coccidioidomycosis|primary extrapulmonary coccidioidomycosis| +E0432997|procaryotic cell|prokaryotic cell| +E0433003|propionic acidaemia|propionic acidemia| +E0433029|Prader Willi syndrome|Prader-Willi syndrome| +E0433030|Prausnitz Kustner test|Prausnitz-Kustner test| +E0433036|pre-diabetes|prediabetes| +E0433037|pre-fab|prefab| +E0433038|pre-fab|prefab| +E0433051|procto-colectomy|proctocolectomy| +E0433052|procto-sigmoidoscopy|proctosigmoidoscopy| +E0433053|procto-colitis|proctocolitis| +E0433071|pseudo-cowpox virus|pseudocowpox virus| +E0433071|pseudo cowpox virus|pseudocowpox virus| +E0433075|pseudo-croup|pseudocroup| +E0433084|psycho-physic|psychophysic| +E0433090|racemose aneurism|racemose aneurysm| +E0433093|rabbit papilloma virus|rabbit papillomavirus| +E0433101|pseudo-athetosis|pseudoathetosis| +E0433102|pseudo-exophoria|pseudoexophoria| +E0433103|pseudo-hypothyroidism|pseudohypothyroidism| +E0433105|pseudo-osteomalacic pelvis|pseudoosteomalacic pelvis| +E0433116|pulmo-diaphragmatic ligament|pulmodiaphragmatic ligament| +E0433117|pulmo-renal|pulmorenal| +E0433118|pulmo-renal syndrome|pulmorenal syndrome| +E0433119|cardio-pulmo-cerebral resuscitation|cardiopulmocerebral resuscitation| +E0433120|pulmo-cardiac|pulmocardiac| +E0433121|pulmo-cardiac syndrome|pulmocardiac syndrome| +E0433122|pulmo-mediastinal|pulmomediastinal| +E0433125|pure line|pureline| +E0433125|pure-line|pureline| +E0433126|pure line|pureline| +E0433126|pure-line|pureline| +E0433128|pyelo-caliceal|pyelocaliceal| +E0433128|pyelocalyceal|pyelocaliceal| +E0433128|pyelo-calyceal|pyelocaliceal| +E0433129|pyelo-ureterostomy|pyeloureterostomy| +E0433130|pyelo-ureteral|pyeloureteral| +E0433131|pyelo-ureteral junction|pyeloureteral junction| +E0433134|pyloro-antral|pyloroantral| +E0433135|gastro-pyloro-duodenal|gastropyloroduodenal| +E0433136|pyloro-bulbar|pylorobulbar| +E0433137|pyloro-duodenal|pyloroduodenal| +E0433138|pyoovarium|pyo-ovarium| +E0433143|R AW|RAW| +E0433145|radio-cardiography|radiocardiography| +E0433146|radioreceptorassay|radioreceptor assay| +E0433157|reaction formation|reaction-formation| +E0433171|redbug|red bug| +E0433178|Refsum syndrome|Refsum's syndrome| +E0433187|recent event memory|recent-event memory| +E0433194|renal haemorrhage|renal hemorrhage| +E0433196|reno-jejunal|renojejunal| +E0433197|renoaortic|reno-aortic| +E0433198|renoaortic ratio|reno-aortic ratio| +E0433199|renoprotective|reno-protective| +E0433230|right atrio-ventricular valve|right atrioventricular valve| +E0433231|right gastro-pancreatic fold|right gastropancreatic fold| +E0433232|retro-vector|retrovector| +E0433233|retro-aldol|retroaldol| +E0433234|retro-esophageal recess|retroesophageal recess| +E0433234|retrooesophageal recess|retroesophageal recess| +E0433234|retro-oesophageal recess|retroesophageal recess| +E0433235|left retro-esophageal recess|left retroesophageal recess| +E0433235|left retrooesophageal recess|left retroesophageal recess| +E0433235|left retro-oesophageal recess|left retroesophageal recess| +E0433236|retro-esophageal aortic arch|retroesophageal aortic arch| +E0433236|retrooesophageal aortic arch|retroesophageal aortic arch| +E0433236|retro-oesophageal aortic arch|retroesophageal aortic arch| +E0433237|retro-esophageal carotid artery|retroesophageal carotid artery| +E0433237|retrooesophageal carotid artery|retroesophageal carotid artery| +E0433237|retro-oesophageal carotid artery|retroesophageal carotid artery| +E0433238|retro-esophageal pulmonary artery|retroesophageal pulmonary artery| +E0433238|retrooesophageal pulmonary artery|retroesophageal pulmonary artery| +E0433238|retro-oesophageal pulmonary artery|retroesophageal pulmonary artery| +E0433239|retro-esophageal subclavian artery|retroesophageal subclavian artery| +E0433239|retrooesophageal subclavian artery|retroesophageal subclavian artery| +E0433239|retro-oesophageal subclavian artery|retroesophageal subclavian artery| +E0433240|right retro-esophageal recess|right retroesophageal recess| +E0433240|right retrooesophageal recess|right retroesophageal recess| +E0433240|right retro-oesophageal recess|right retroesophageal recess| +E0433241|retroinverso|retro-inverso| +E0433242|retroaortic|retro-aortic| +E0433243|retroaortic lymph node|retro-aortic lymph node| +E0433244|retroaortic node|retro-aortic node| +E0433245|retroendocytose|retro-endocytose| +E0433246|retroendocytosis|retro-endocytosis| +E0433247|retroodontoid|retro-odontoid| +E0433248|retro-reflective|retroreflective| +E0433249|retrobinding|retro-binding| +E0433250|retro-grade pyelography|retrograde pyelography| +E0433253|rod and frame test|rod-and-frame test| +E0433256|rhino-sinusal|rhinosinusal| +E0433257|chronic rhino-sinusitis|chronic rhinosinusitis| +E0433258|allergic rhino-sinusitis|allergic rhinosinusitis| +E0433262|tricho-rhino-phalangeal syndrome type I|trichorhinophalangeal syndrome type I| +E0433263|tricho-rhino-phalangeal syndrome type II|trichorhinophalangeal syndrome type II| +E0433264|tricho-rhino-phalangeal syndrome type III|trichorhinophalangeal syndrome type III| +E0433266|rhinoorbitalcerebral|rhino-orbital-cerebral| +E0433267|rhinoorbitalcerebral mucormycosis|rhino-orbital-cerebral mucormycosis| +E0433268|rhinoorbital mucormycosis|rhino-orbital mucormycosis| +E0433269|rhinoorbital|rhino-orbital| +E0433277|retro-rectal space|retrorectal space| +E0433286|roller-skate|roller skate| +E0433287|roller skate|roller-skate| +E0433292|Rose-Waaler test|Rose Waaler test| +E0433304|sacro-anterior position|sacroanterior position| +E0433305|sacro-coccygeal teratoma|sacrococcygeal teratoma| +E0433308|saddle back tamarin|saddle-back tamarin| +E0433308|saddleback tamarin|saddle-back tamarin| +E0433314|Salmonella abortus-equi|Salmonella abortusequi| +E0433315|S. abortus-equi|S. abortusequi| +E0433327|sandburr|sandbur| +E0433328|Sandifer syndrome|Sandifer's syndrome| +E0433344|service connected disability|service-connected disability| +E0433345|spino-cerebellar degeneration|spinocerebellar degeneration| +E0433346|sub-acute coronary disease|subacute coronary disease| +E0433352|Schilling's leukaemia|Schilling's leukemia| +E0433352|Schilling's leucemia|Schilling's leukemia| +E0433352|Schilling's leucaemia|Schilling's leukemia| +E0433355|schizo-affective disorder|schizoaffective disorder| +E0433355|schizo affective disorder|schizoaffective disorder| +E0433366|sea-cow|sea cow| +E0433366|seacow|sea cow| +E0433372|seasnake|sea snake| +E0433372|sea-snake|sea snake| +E0433374|sea blue histiocyte|sea-blue histiocyte| +E0433376|sodium dodecyl sulfate-polyacrylamide gel electrophoresis|sodium dodecyl sulphate-polyacrylamide gel electrophoresis| +E0433377|SDS PAGE|SDS-PAGE| +E0433378|sodium dodecylsulphate-PAGE|sodium dodecyl sulphate-PAGE| +E0433378|sodium dodecyl sulfate-PAGE|sodium dodecyl sulphate-PAGE| +E0433378|sodium dodecylsulfate-PAGE|sodium dodecyl sulphate-PAGE| +E0433380|SDS polyacrylamide gel electrophoresis|SDS-polyacrylamide gel electrophoresis| +E0433382|secondary chemo-prophylaxis|secondary chemoprophylaxis| +E0433384|secondary haemorrhage|secondary hemorrhage| +E0433390|self-fertilise|self-fertilize| +E0433390|self fertilize|self-fertilize| +E0433390|self fertilise|self-fertilize| +E0433391|self incrimination|self-incrimination| +E0433392|self tolerance|self-tolerance| +E0433393|self tolerant|self-tolerant| +E0433394|selfcare|self-care| +E0433394|self care|self-care| +E0433395|self doubt|self-doubt| +E0433397|self perception|self-perception| +E0433398|semi-consciousness|semiconsciousness| +E0433400|semi-oval center|semioval center| +E0433415|serum therapy|serumtherapy| +E0433424|shake-down|shakedown| +E0433431|shin-oak|shin oak| +E0433435|shock lung syndrome|shock-lung syndrome| +E0433438|short-gut syndrome|short gut syndrome| +E0433439|short-increment sensitivity index test|short increment sensitivity index test| +E0433441|short sightedness|short-sightedness| +E0433441|shortsightedness|short-sightedness| +E0433442|short sighted|short-sighted| +E0433442|shortsighted|short-sighted| +E0433443|short-wave therapy|short wave therapy| +E0433443|shortwave therapy|short wave therapy| +E0433445|shut in|shut-in| +E0433446|shut in|shut-in| +E0433450|sideropaenia|sideropenia| +E0433458|singers nodule|singer's nodule| +E0433458|singers' nodule|singer's nodule| +E0433488|soft bodied tick|soft-bodied tick| +E0433523|split-tail|splittail| +E0433524|spongiform leucodystrophy|spongiform leukodystrophy| +E0433527|hepatosplenorenal|hepato-spleno-renal| +E0433528|porto-spleno-renal|portosplenorenal| +E0433529|splenosystemic|spleno-systemic| +E0433530|splenopeptide|spleno-peptide| +E0433532|spleno-gonadal fusion|splenogonadal fusion| +E0433533|spleno-caval|splenocaval| +E0433534|spleno-caval shunt|splenocaval shunt| +E0433535|spleno-portal|splenoportal| +E0433537|spleno-pancreatectomy|splenopancreatectomy| +E0433538|spleno-mesenteric|splenomesenteric| +E0433577|leukoderma acquisitum centrifugum|leucoderma acquisitum centrifugum| +E0433579|long arm cast|long-arm cast| +E0433580|low amplitude contraction|low-amplitude contraction| +E0433581|lung adeno-carcinoma cell|lung adenocarcinoma cell| +E0433587|acro-lentiginous melanoma|acrolentiginous melanoma| +E0433588|acro-lentiginous|acrolentiginous| +E0433590|acrorenal syndrome|acro-renal syndrome| +E0433591|acro-renal|acrorenal| +E0433614|ankle foot orthosis|ankle-foot orthosis| +E0433635|acute haematogenous osteomyelitis|acute hematogenous osteomyelitis| +E0433638|anterior ischaemic optic neuropathy|anterior ischemic optic neuropathy| +E0433656|Amarantus albus|Amaranthus albus| +E0433676|Allan Herndon Dudley syndrome|Allan-Herndon-Dudley syndrome| +E0433680|Mont-Amba|Mont Amba| +E0433708|angio magnetic resonance imaging|angio-magnetic resonance imaging| +E0433708|angiomagnetic resonance imaging|angio-magnetic resonance imaging| +E0433709|angio MRI|angio-MRI| +E0433710|angio computed tomography|angio-computed tomography| +E0433711|angio CT|angio-CT| +E0433714|vibratory angioedema|vibratory angio-edema| +E0433714|vibratory angio-oedema|vibratory angio-edema| +E0433714|vibratory angiooedema|vibratory angio-edema| +E0433715|adult angio-sarcoma|adult angiosarcoma| +E0433716|angio-edema-urticaria|angioedema-urticaria| +E0433716|angiooedema-urticaria|angioedema-urticaria| +E0433716|angio-oedema-urticaria|angioedema-urticaria| +E0433718|angio-follicular lymphoid hyperplasia|angiofollicular lymphoid hyperplasia| +E0433719|benign angio-follicular hyperplasia|benign angiofollicular hyperplasia| +E0433720|angio-follicular hyperplasia|angiofollicular hyperplasia| +E0433721|angio-follicular lymph node hyperplasia|angiofollicular lymph node hyperplasia| +E0433722|angioeccrine hamartoma|angio-eccrine hamartoma| +E0433723|angio-tumoural|angio-tumoral| +E0433723|angiotumoral|angio-tumoral| +E0433723|angiotumoural|angio-tumoral| +E0433724|anti-tumoural|anti-tumoral| +E0433724|antitumoral|anti-tumoral| +E0433724|antitumoural|anti-tumoral| +E0433725|angiosurgical|angio-surgical| +E0433726|angiosurgically|angio-surgically| +E0433727|angio-endothelial|angioendothelial| +E0433728|angio magnetic resonance|angio-magnetic resonance| +E0433728|angiomagnetic resonance|angio-magnetic resonance| +E0433758|bread-board|breadboard| +E0433758|bread board|breadboard| +E0433773|antero-septal infarction|anteroseptal infarction| +E0433775|anti-clockwise|anticlockwise| +E0433776|anti-clockwise|anticlockwise| +E0433777|anti-mongolism|antimongolism| +E0433780|antro-choanal|antrochoanal| +E0433791|cutaneous appendicovesicostomy|cutaneous appendico-vesicostomy| +E0433792|appendico-vesicostomy|appendicovesicostomy| +E0433793|appendico-duodenostomy|appendicoduodenostomy| +E0433794|appendico-umbilical|appendicoumbilical| +E0433795|appendico-vesical fistula|appendicovesical fistula| +E0433796|appendico-vesical|appendicovesical| +E0433807|clearing-house|clearinghouse| +E0433807|clearing house|clearinghouse| +E0433808|cloak room|cloakroom| +E0433815|cow bird|cowbird| +E0433820|dock master|dockmaster| +E0433824|fin-less|finless| +E0433838|appendicocecal|appendico-cecal| +E0433838|appendico-caecal|appendico-cecal| +E0433838|appendicocaecal|appendico-cecal| +E0433838|appendico-coecal|appendico-cecal| +E0433838|appendicocoecal|appendico-cecal| +E0433839|appendicoileal fistula|appendico-ileal fistula| +E0433840|appendicoileal|appendico-ileal| +E0433841|appendicocutaneous fistula|appendico-cutaneous fistula| +E0433842|appendicocutaneous|appendico-cutaneous| +E0433866|arterioarterial fistula|arterio-arterial fistula| +E0433867|arterio-venous fistula thrombosis|arteriovenous fistula thrombosis| +E0433905|Henck Assman disease|Henck-Assman disease| +E0433941|balano-cavernous|balanocavernous| +E0433953|Barth's syndrome|Barth syndrome| +E0433981|basi-sphenoid|basisphenoid| +E0433985|red berried elder|red-berried elder| +E0433998|bio-morphological|biomorphological| +E0433999|bio-inorganic|bioinorganic| +E0434000|bio-inorganic chemistry|bioinorganic chemistry| +E0434001|bio-politics|biopolitics| +E0434002|bio-persistence|biopersistence| +E0434003|bioorganic|bio-organic| +E0434004|bio-safety|biosafety| +E0434005|bio-electrical impedance analysis|bioelectrical impedance analysis| +E0434006|bio-adhesion|bioadhesion| +E0434007|bio heat equation|bio-heat equation| +E0434008|bio heat transfer equation|bio-heat transfer equation| +E0434009|bio-bank|biobank| +E0434010|bio-synthetic|biosynthetic| +E0434011|bio-electrical impedance|bioelectrical impedance| +E0434012|bio-electric impedance|bioelectric impedance| +E0434013|bio-oxidation|biooxidation| +E0434014|bio-oxidize|biooxidize| +E0434014|bio-oxidise|biooxidize| +E0434014|biooxidise|biooxidize| +E0434015|biooptical|bio-optical| +E0434040|blackfin sea-robin|blackfin searobin| +E0434040|blackfin sea robin|blackfin searobin| +E0434045|blacktail pike conger|blacktail pike-conger| +E0434050|Blacky Pictures Test|Blacky pictures test| +E0434053|blepharo-kerato-conjunctivitis|blepharokeratoconjunctivitis| +E0434054|blepharo-coloboma|blepharocoloboma| +E0434065|Bobo Dioulasso|Bobo-Dioulasso| +E0434075|two colored bolete|two-colored bolete| +E0434084|branchio-otorenal|branchio-oto-renal| +E0434084|branchiootorenal|branchio-oto-renal| +E0434091|bott|bot| +E0434092|borderline ovarian tumour|borderline ovarian tumor| +E0434095|virgin's bower|virgin's-bower| +E0434103|brady tachy syndrome|brady-tachy syndrome| +E0434104|tachy brady syndrome|tachy-brady syndrome| +E0434107|brady-tachyarrhythmia|bradytachyarrhythmia| +E0434108|brady-tachycardia syndrome|bradytachycardia syndrome| +E0434108|brady tachycardia syndrome|bradytachycardia syndrome| +E0434119|red sided broadbill|red-sided broadbill| +E0434121|broncho-fiberoptic|bronchofiberoptic| +E0434122|broncho-esophageal fistula|bronchoesophageal fistula| +E0434122|broncho-oesophageal fistula|bronchoesophageal fistula| +E0434122|bronchooesophageal fistula|bronchoesophageal fistula| +E0434123|broncho-pulmonic|bronchopulmonic| +E0434124|broncho-biliary fistula|bronchobiliary fistula| +E0434125|bronchoobstructive syndrome|broncho-obstructive syndrome| +E0434126|bronchoobstructive|broncho-obstructive| +E0434127|bronchoobstruction|broncho-obstruction| +E0434146|red eared bulbul|red-eared bulbul| +E0434147|red vented bulbul|red-vented bulbul| +E0434148|white eared bulbul|white-eared bulbul| +E0434149|red whiskered bulbul|red-whiskered bulbul| +E0434151|white cheeked bulbul|white-cheeked bulbul| +E0434159|bustard pigeon|bustard-pigeon| +E0434180|cardiac accelerator center|cardiac-accelerator center| +E0434183|complement activating capacity|complement-activating capacity| +E0434184|chronic atropic candidosis|chronic atrophic candidosis| +E0434186|Clinical Advisory Committee|clinical advisory committee| +E0434193|haemoglobin Caen|hemoglobin Caen| +E0434198|cajuput tree|cajeput tree| +E0434199|cajuput oil|cajeput oil| +E0434204|calcitonin gene related peptide|calcitonin gene-related peptide| +E0434231|purple cappy lory|purple-cappy lory| +E0434232|carboxyterminal|carboxy-terminal| +E0434232|carboxy terminal|carboxy-terminal| +E0434233|carboxy-tetrahydrocannabinol|carboxy tetrahydrocannabinol| +E0434234|carboxyphosphate|carboxy phosphate| +E0434234|carboxy-phosphate|carboxy phosphate| +E0434236|carboxy seminaphthorhodafluor|carboxy-seminaphthorhodafluor| +E0434252|concave casqued hornbill|concave-casqued hornbill| +E0434253|casque headed iguana|casque-headed iguana| +E0434254|tree frog|treefrog| +E0434254|tree-frog|treefrog| +E0434255|casque-headed tree-frog|casque-headed treefrog| +E0434255|casque-headed tree frog|casque-headed treefrog| +E0434255|casque headed treefrog|casque-headed treefrog| +E0434255|casque headed tree-frog|casque-headed treefrog| +E0434255|casque headed tree frog|casque-headed treefrog| +E0434268|cell conditioned medium|cell-conditioned medium| +E0434269|beta CCM|beta-CCM| +E0434273|cranio-cervical malformation|craniocervical malformation| +E0434276|ileocaecocolonic|ileocecocolonic| +E0434276|ileocoecocolonic|ileocecocolonic| +E0434276|ileo-ceco-colonic|ileocecocolonic| +E0434276|ileo-caeco-colonic|ileocecocolonic| +E0434276|ileo-coeco-colonic|ileocecocolonic| +E0434277|ceco-rectal|cecorectal| +E0434277|caecorectal|cecorectal| +E0434277|caeco-rectal|cecorectal| +E0434277|coecorectal|cecorectal| +E0434277|coeco-rectal|cecorectal| +E0434278|cecorectal anastomosis|ceco-rectal anastomosis| +E0434278|caeco-rectal anastomosis|ceco-rectal anastomosis| +E0434278|caecorectal anastomosis|ceco-rectal anastomosis| +E0434278|coeco-rectal anastomosis|ceco-rectal anastomosis| +E0434278|coecorectal anastomosis|ceco-rectal anastomosis| +E0434279|ceco-cystoplasty|cecocystoplasty| +E0434279|caecocystoplasty|cecocystoplasty| +E0434279|caeco-cystoplasty|cecocystoplasty| +E0434279|coecocystoplasty|cecocystoplasty| +E0434279|coeco-cystoplasty|cecocystoplasty| +E0434280|ceco-colonic|cecocolonic| +E0434280|caecocolonic|cecocolonic| +E0434280|caeco-colonic|cecocolonic| +E0434280|coecocolonic|cecocolonic| +E0434280|coeco-colonic|cecocolonic| +E0434281|cecoileal|ceco-ileal| +E0434281|caeco-ileal|ceco-ileal| +E0434281|caecoileal|ceco-ileal| +E0434281|coeco-ileal|ceco-ileal| +E0434281|coecoileal|ceco-ileal| +E0434282|ileo-ceco-colic|ileocecocolic| +E0434282|ileocaecocolic|ileocecocolic| +E0434282|ileo-caeco-colic|ileocecocolic| +E0434282|ileocoecocolic|ileocecocolic| +E0434282|ileo-coeco-colic|ileocecocolic| +E0434283|ileo-ceco-rectal|ileocecorectal| +E0434283|ileocaecorectal|ileocecorectal| +E0434283|ileo-caeco-rectal|ileocecorectal| +E0434283|ileocoecorectal|ileocecorectal| +E0434283|ileo-coeco-rectal|ileocecorectal| +E0434284|caeco-proctostomy|caecoproctostomy| +E0434284|cecoproctostomy|caecoproctostomy| +E0434284|ceco-proctostomy|caecoproctostomy| +E0434284|coecoproctostomy|caecoproctostomy| +E0434284|coeco-proctostomy|caecoproctostomy| +E0434285|cecoappendicular|ceco-appendicular| +E0434285|caeco-appendicular|ceco-appendicular| +E0434285|caecoappendicular|ceco-appendicular| +E0434285|coeco-appendicular|ceco-appendicular| +E0434285|coecoappendicular|ceco-appendicular| +E0434286|ceco-ureterocele|cecoureterocele| +E0434286|caecoureterocele|cecoureterocele| +E0434286|caeco-ureterocele|cecoureterocele| +E0434286|coecoureterocele|cecoureterocele| +E0434286|coeco-ureterocele|cecoureterocele| +E0434289|cementodentinal junction|cemento-dentinal junction| +E0434291|centri-acinar|centriacinar| +E0434292|centri-nuclear|centrinuclear| +E0434293|centri-filtration|centrifiltration| +E0434300|craniocerebellocardiac syndrome|cranio-cerebello-cardiac syndrome| +E0434302|craniocerebellocardiac dysplasia|cranio-cerebello-cardiac dysplasia| +E0434303|cerebellobrainstem|cerebello-brainstem| +E0434304|cerebello-cortical|cerebellocortical| +E0434305|cerebellothalamocortical|cerebello-thalamo-cortical| +E0434311|cervico-humeral|cervicohumeral| +E0434312|constant-frequency train|constant frequency train| +E0434317|Erdheim Chester disease|Erdheim-Chester disease| +E0434320|child-bed|childbed| +E0434321|Ch'ing|Ching| +E0434322|black chinned tilapia|black-chinned tilapia| +E0434323|black chinned hummingbird|black-chinned hummingbird| +E0434324|leaf chinned bat|leaf-chinned bat| +E0434325|black chinned yuhina|black-chinned yuhina| +E0434328|cholangio-pancreaticography|cholangiopancreaticography| +E0434329|cholangio-pancreatogram|cholangiopancreatogram| +E0434330|percutaneous transhepatic cholangio drainage|percutaneous transhepatic cholangio-drainage| +E0434331|choledochogastric|choledocho-gastric| +E0434333|choledocho-enteric anastomosis|choledochoenteric anastomosis| +E0434334|choledochoenteric fistula|choledocho-enteric fistula| +E0434335|choledocho-pancreatic duct|choledochopancreatic duct| +E0434336|choledocho-vesical fistula|choledochovesical fistula| +E0434342|chondro-protective|chondroprotective| +E0434344|chondro-osteoplastic|chondroosteoplastic| +E0434346|chondro-hexasaccharide|chondrohexasaccharide| +E0434347|chondro-inductive|chondroinductive| +E0434373|circummaxillary|circum-maxillary| +E0434374|circumapical|circum-apical| +E0434375|circum-tropical|circumtropical| +E0434376|circum-pennate|circumpennate| +E0434378|circum-aortic|circumaortic| +E0434381|circum-spinal|circumspinal| +E0434406|chronic mesenteric ischaemia|chronic mesenteric ischemia| +E0434409|cell mediated immune|cell-mediated immune| +E0434414|sputter-coater|sputter coater| +E0434469|blue crowned conure|blue-crowned conure| +E0434472|green cheeked conure|green-cheeked conure| +E0434474|red fronted conure|red-fronted conure| +E0434476|cuffed oro-pharyngeal airway|cuffed oropharyngeal airway| +E0434492|cortico-limbic|corticolimbic| +E0434494|cortico-caudate|corticocaudate| +E0434495|Cooperative Osteosarcoma Study|cooperative osteosarcoma study| +E0434506|treecreeper|tree-creeper| +E0434506|tree creeper|tree-creeper| +E0434507|trumpet-creeper|trumpet creeper| +E0434512|short-toed tree-creeper|short-toed tree creeper| +E0434512|short-toed treecreeper|short-toed tree creeper| +E0434512|short toed tree creeper|short-toed tree creeper| +E0434512|short toed tree-creeper|short-toed tree creeper| +E0434512|short toed treecreeper|short-toed tree creeper| +E0434527|white winged crossbill|white-winged crossbill| +E0434535|chondroitin sulphate C|chondroitin sulfate C| +E0434544|cortico-striato-cerebellar|corticostriatocerebellar| +E0434558|Culver's root|Culver's-root| +E0434606|DAO|DAo| +E0434631|deepwater|deep-water| +E0434631|deep water|deep-water| +E0434646|de luxe|deluxe| +E0434651|Tenia dentata|Taenia dentata| +E0434652|fissura fimbrio-dentata|fissura fimbriodentata| +E0434659|dentomandibular|dento-mandibular| +E0434661|dentoenamel|dento-enamel| +E0434662|dentoenamel junction|dento-enamel junction| +E0434663|dento-maxillary|dentomaxillary| +E0434666|trichodentoosseous syndrome|tricho-dento-osseous syndrome| +E0434669|dermatoallergological|dermato-allergological| +E0434670|dermatoallergic|dermato-allergic| +E0434671|dermatomyopathy|dermato-myopathy| +E0434674|dermato-mucosal|dermatomucosal| +E0434675|dermatohistopathological|dermato-histopathological| +E0434679|dermato-venereological|dermatovenereological| +E0434681|dermo-hypodermic|dermohypodermic| +E0434682|dermomuscular|dermo-muscular| +E0434691|dextro enantiomer|dextro-enantiomer| +E0434695|D-TGA|d-TGA| +E0434695|dTGA|d-TGA| +E0434695|DGTA|d-TGA| +E0434696|dextro-isomer|dextroisomer| +E0434696|dextro isomer|dextroisomer| +E0434700|dextrobenzetimide|dextro-benzetimide| +E0434702|dextropropoxyphene hydrochloride|dextro-propoxyphene hydrochloride| +E0434704|d-amphetamine sulfate|d-amphetamine sulphate| +E0434729|direct occipito-posterior position|direct occipitoposterior position| +E0434755|duodeno-gastral reflux|duodenogastral reflux| +E0434756|duodeno-gastral|duodenogastral| +E0434757|duodenocholedochal|duodeno-choledochal| +E0434758|duodeno-duodenal|duodenoduodenal| +E0434759|duodeno-esophageal|duodenoesophageal| +E0434759|duodeno-oesophageal|duodenoesophageal| +E0434760|duodeno-esophageal reflux|duodenoesophageal reflux| +E0434760|duodeno-oesophageal reflux|duodenoesophageal reflux| +E0434763|dorso-ventral muscle|dorsoventral muscle| +E0434767|oculo-mandibular dyscephaly|oculomandibular dyscephaly| +E0434769|earpit deafness syndrome|earpit-deafness syndrome| +E0434770|deafness earpits syndrome|deafness-earpits syndrome| +E0434770|deafness-earpit syndrome|deafness-earpits syndrome| +E0434770|deafness earpit syndrome|deafness-earpits syndrome| +E0434789|extradural haematoma|extradural hematoma| +E0434814|endo-phagocytic|endophagocytic| +E0434815|endo-cellulase|endocellulase| +E0434821|entero-cutaneous fistula|enterocutaneous fistula| +E0434822|entero-vesical fistula|enterovesical fistula| +E0434823|enterohaemorrhagic Escherichia coli|enterohemorrhagic Escherichia coli| +E0434823|entero-hemorrhagic Escherichia coli|enterohemorrhagic Escherichia coli| +E0434823|entero-haemorrhagic Escherichia coli|enterohemorrhagic Escherichia coli| +E0434825|entero-mammary|enteromammary| +E0434826|entero-mesenteric|enteromesenteric| +E0434828|epauletted fruit bat|epauleted fruit bat| +E0434847|ethinyl oestriol|ethinyl estriol| +E0434848|ethinyl estradiol glucuronide|ethinylestradiol glucuronide| +E0434848|ethinyloestradiol glucuronide|ethinylestradiol glucuronide| +E0434848|ethinyl oestradiol glucuronide|ethinylestradiol glucuronide| +E0434849|ethinyl estradiol sulfate|ethinylestradiol sulfate| +E0434849|ethinylestradiol sulphate|ethinylestradiol sulfate| +E0434849|ethinyl estradiol sulphate|ethinylestradiol sulfate| +E0434849|ethinyloestradiol sulfate|ethinylestradiol sulfate| +E0434849|ethinyl oestradiol sulfate|ethinylestradiol sulfate| +E0434849|ethinyloestradiol sulphate|ethinylestradiol sulfate| +E0434849|ethinyl oestradiol sulphate|ethinylestradiol sulfate| +E0434849|ethynylestradiol sulfate|ethinylestradiol sulfate| +E0434849|ethynyloestradiol sulfate|ethinylestradiol sulfate| +E0434849|ethynyl estradiol sulfate|ethinylestradiol sulfate| +E0434849|ethynyl oestradiol sulfate|ethinylestradiol sulfate| +E0434849|ethynylestradiol sulphate|ethinylestradiol sulfate| +E0434849|ethynyloestradiol sulphate|ethinylestradiol sulfate| +E0434849|ethynyl estradiol sulphate|ethinylestradiol sulfate| +E0434849|ethynyl oestradiol sulphate|ethinylestradiol sulfate| +E0434850|ethinylestradiol sulfonate|ethinyl estradiol sulfonate| +E0434850|ethinyl estradiol sulphonate|ethinyl estradiol sulfonate| +E0434850|ethinylestradiol sulphonate|ethinyl estradiol sulfonate| +E0434850|ethinyl oestradiol sulfonate|ethinyl estradiol sulfonate| +E0434850|ethinyloestradiol sulfonate|ethinyl estradiol sulfonate| +E0434850|ethinyl oestradiol sulphonate|ethinyl estradiol sulfonate| +E0434850|ethinyloestradiol sulphonate|ethinyl estradiol sulfonate| +E0434851|ethinyl oestradiol-ethynodiol|ethinyl estradiol-ethynodiol| +E0434851|ethinylestradiol-ethynodiol|ethinyl estradiol-ethynodiol| +E0434851|ethinyloestradiol-ethynodiol|ethinyl estradiol-ethynodiol| +E0434852|ethinylestradiol-levonorgestrel|ethinyl estradiol-levonorgestrel| +E0434852|ethinyl oestradiol-levonorgestrel|ethinyl estradiol-levonorgestrel| +E0434852|ethinyloestradiol-levonorgestrel|ethinyl estradiol-levonorgestrel| +E0434906|faden operation|Faden operation| +E0434907|Cuppers' faden operation|Cuppers' Faden operation| +E0434907|Cuppers Faden operation|Cuppers' Faden operation| +E0434907|Cuppers faden operation|Cuppers' Faden operation| +E0434922|Ferrier Stone syndrome|Ferrier-Stone syndrome| +E0434932|fibro-caseous|fibrocaseous| +E0434937|white-spotted filefish|whitespotted filefish| +E0434937|white spotted filefish|whitespotted filefish| +E0434938|orange-spotted filefish|orangespotted filefish| +E0434938|orange spotted filefish|orangespotted filefish| +E0434951|farmers' lung disease|farmer's lung disease| +E0434968|fundus oriented perimetry|fundus-oriented perimetry| +E0434970|focal organising pneumonia|focal organizing pneumonia| +E0435012|Galla Rhois|Galla rhois| +E0435021|red-eye gaper|redeye gaper| +E0435021|red eye gaper|redeye gaper| +E0435041|oesophagogastroduodenal|esophagogastroduodenal| +E0435041|esophago-gastro-duodenal|esophagogastroduodenal| +E0435041|oesophago-gastro-duodenal|esophagogastroduodenal| +E0435041|esophago-gastroduodenal|esophagogastroduodenal| +E0435041|oesophago-gastroduodenal|esophagogastroduodenal| +E0435042|gastro-urology|gastrourology| +E0435043|gastro-gastric|gastrogastric| +E0435047|hunter gatherer|hunter-gatherer| +E0435056|split gilled mushroom|split-gilled mushroom| +E0435058|gastro-intestinal transit|gastrointestinal transit| +E0435063|glass-house|glasshouse| +E0435064|glass-house worker|glasshouse worker| +E0435069|glucosyl diacylglycerol|glucosyldiacylglycerol| +E0435077|diacyl glyceryl ether|diacylglyceryl ether| +E0435081|glomerulo-tubulo-nephritis|glomerulotubulonephritis| +E0435081|glomerulo-tubulonephritis|glomerulotubulonephritis| +E0435083|glycerylmonostearate|glyceryl monostearate| +E0435088|glycerylmethacrylate|glyceryl methacrylate| +E0435098|Glyciphagus|Glycyphagus| +E0435111|notch-tongue goby|notchtongue goby| +E0435111|notch tongue goby|notchtongue goby| +E0435140|goodie|goody| +E0435148|great tailed grackle|great-tailed grackle| +E0435149|boat tailed grackle|boat-tailed grackle| +E0435152|grannie|granny| +E0435153|Granny-Smith apple|Granny Smith apple| +E0435154|granny-bashing|granny bashing| +E0435158|gray headed greenlet|gray-headed greenlet| +E0435158|grey-headed greenlet|gray-headed greenlet| +E0435158|grey headed greenlet|gray-headed greenlet| +E0435159|tawny crowned greenlet|tawny-crowned greenlet| +E0435191|guard-rail|guardrail| +E0435191|guard rail|guardrail| +E0435192|guerilla|guerrilla| +E0435193|guerilla|guerrilla| +E0435201|gumbo limbo virus|gumbo-limbo virus| +E0435220|hepatic artery embolisation|hepatic artery embolization| +E0435221|hepatic arterial embolisation|hepatic arterial embolization| +E0435222|hydro-alcoholic extract|hydroalcoholic extract| +E0435240|Hakim syndome|Hakim's syndome| +E0435262|mad hatter's disease|Mad Hatter's disease| +E0435263|Salmonella new-haw|Salmonella newhaw| +E0435269|Juberg Hayward syndrome|Juberg-Hayward syndrome| +E0435304|haemato-lacrimal barrier|hemato-lacrimal barrier| +E0435305|haemato-lacrimal|hemato-lacrimal| +E0435306|haemato-immunological|hemato-immunological| +E0435307|haematological|hematological| +E0435308|hemato-pneumothorax|hematopneumothorax| +E0435308|haematopneumothorax|hematopneumothorax| +E0435308|haemato-pneumothorax|hematopneumothorax| +E0435309|hematooncology|hemato-oncology| +E0435309|haemato-oncology|hemato-oncology| +E0435309|haematooncology|hemato-oncology| +E0435310|hematooncological|hemato-oncological| +E0435310|haemato-oncological|hemato-oncological| +E0435310|haematooncological|hemato-oncological| +E0435311|hematooncologic|hemato-oncologic| +E0435311|haemato-oncologic|hemato-oncologic| +E0435311|haematooncologic|hemato-oncologic| +E0435312|hemi-cortex|hemicortex| +E0435314|heminested polymerase chain reaction|hemi-nested polymerase chain reaction| +E0435315|heminested PCR|hemi-nested PCR| +E0435318|hemiparkinsonian|hemi-parkinsonian| +E0435319|hemiparkinsonism|hemi-parkinsonism| +E0435320|hemiinattention|hemi-inattention| +E0435321|hemi-parasitic|hemiparasitic| +E0435324|haemofuscin|hemofuscin| +E0435325|hepatico-antrostomy|hepaticoantrostomy| +E0435327|hepatico-jejunal|hepaticojejunal| +E0435329|spino-cerebellar heredoataxia|spinocerebellar heredoataxia| +E0435350|Hilding syndrome|Hilding's syndrome| +E0435359|holm-oak|holm oak| +E0435365|cloven hoofed|cloven-hoofed| +E0435377|ground-hornbill|ground hornbill| +E0435379|silvery cheeked hornbill|silvery-cheeked hornbill| +E0435380|white crested hornbill|white-crested hornbill| +E0435381|Blyth's wreath billed hornbill|Blyth's wreath-billed hornbill| +E0435382|red billed dwarf hornbill|red-billed dwarf hornbill| +E0435394|half value layer|half-value layer| +E0435398|hydrorrhoea|hydrorrhea| +E0435399|hydrorrhoea uterinum|hydrorrhea uterinum| +E0435416|iatro-mechanics|iatromechanics| +E0435418|iatro-chemistry|iatrochemistry| +E0435419|iatro-chemist|iatrochemist| +E0435420|Ichthyophthirius multifilis|Ichthyophthirius multifiliis| +E0435435|enzyme-linked immunofiltration assay|enzyme-linked immuno-filtration assay| +E0435435|enzyme linked immuno-filtration assay|enzyme-linked immuno-filtration assay| +E0435435|enzyme linked immunofiltration assay|enzyme-linked immuno-filtration assay| +E0435437|immuno-filtration|immunofiltration| +E0435445|improvisational theatre|improvisational theater| +E0435448|infra-clinic|infraclinic| +E0435450|infraocclusion|infra-occlusion| +E0435451|infra-order|infraorder| +E0435454|infraphysiological|infra-physiological| +E0435503|Shi'ite|Shiite| +E0435509|pheasant tailed jacana|pheasant-tailed jacana| +E0435514|long tailed jaeger|long-tailed jaeger| +E0435532|scrub jay|scrub-jay| +E0435533|western scrub jay|western scrub-jay| +E0435534|Florida scrub jay|Florida scrub-jay| +E0435538|pinon jay|pinyon jay| +E0435541|white crested jay thrush|white-crested jay thrush| +E0435542|bluejay|blue jay| +E0435554|jolthead porgee|jolthead porgy| +E0435564|kafir|kaffir| +E0435564|Kaffir|kaffir| +E0435564|Kafir|kaffir| +E0435565|Kaffir lily|kaffir lily| +E0435565|kafir lily|kaffir lily| +E0435565|Kafir lily|kaffir lily| +E0435566|Kaffir pox|kaffir pox| +E0435566|kafir pox|kaffir pox| +E0435566|Kafir pox|kaffir pox| +E0435567|red fronted kakariki|red-fronted kakariki| +E0435569|Karakul|karakul| +E0435571|karakul sheep|Karakul sheep| +E0435596|Kindler's syndrome|Kindler syndrome| +E0435605|Kleeblattschadel|kleeblattschadel| +E0435606|Kleeblattschadel deformity|kleeblattschadel deformity| +E0435613|knee osteo-arthritis|knee osteoarthritis| +E0435629|Lact|lact| +E0435637|fiber lapper|fibre lapper| +E0435641|C. lari|Camp. lari| +E0435642|laryngo-tracheo-bronchial|laryngotracheobronchial| +E0435642|laryngo-tracheobronchial|laryngotracheobronchial| +E0435643|laryngo-pharyngo-esophagectomy|laryngo-pharyngo-oesophagectomy| +E0435643|laryngopharyngooesophagectomy|laryngo-pharyngo-oesophagectomy| +E0435643|laryngopharyngoesophagectomy|laryngo-pharyngo-oesophagectomy| +E0435644|laryngo-bronchoscopy|laryngobronchoscopy| +E0435647|laterocentral|latero-central| +E0435648|latero-frontal|laterofrontal| +E0435649|latero-medial|lateromedial| +E0435650|latero-tracheal|laterotracheal| +E0435651|latero-cervical|laterocervical| +E0435652|latero-lateral|laterolateral| +E0435654|school leaver|school-leaver| +E0435688|linotype|Linotype| +E0435689|lipochitin oligosaccharide|lipo-chitin oligosaccharide| +E0435689|lipochitin-oligosaccharide|lipo-chitin oligosaccharide| +E0435691|lipochitooligosaccharide|lipo-chitooligosaccharide| +E0435691|lipochito-oligosaccharide|lipo-chitooligosaccharide| +E0435692|lipo-proteic|lipoproteic| +E0435693|lipo-solubility|liposolubility| +E0435697|lipomyohaemangioma|lipomyohemangioma| +E0435700|leucocyte migration technique|leukocyte migration technique| +E0435702|leucocyte migration test|leukocyte migration test| +E0435707|Salmonella loma-linda|Salmonella lomalinda| +E0435721|longfin sand dab|longfin sanddab| +E0435730|longfin scorpion fish|longfin scorpionfish| +E0435760|lumbo-sacral orthosis|lumbosacral orthosis| +E0435761|left salpingooophorectomy|left salpingo-oophorectomy| +E0435766|lateral spino-thalamic tract|lateral spinothalamic tract| +E0435767|life sustaining treatment|life-sustaining treatment| +E0435774|left sacro-transverse|left sacrotransverse| +E0435781|lumbo-peritoneal shunt|lumboperitoneal shunt| +E0435782|lumbo-peritoneal|lumboperitoneal| +E0435783|lumbo-sciatic syndrome|lumbosciatic syndrome| +E0435784|lumbo-sciatic|lumbosciatic| +E0435785|thoracolumbosacral orthosis|thoraco-lumbo-sacral orthosis| +E0435785|thoraco-lumbosacral orthosis|thoraco-lumbo-sacral orthosis| +E0435788|lumbo-aortic|lumboaortic| +E0435789|rodent lung worm|rodent lungworm| +E0435790|lung worm|lungworm| +E0435791|fox lung worm|fox lungworm| +E0435792|lookup table|look-up table| +E0435792|look up table|look-up table| +E0435851|mask-like facies|masklike facies| +E0435852|mask-like|masklike| +E0435881|area preoptica medialis|area praeoptica medialis| +E0435882|area praeopticus medialis|area preopticus medialis| +E0435885|medio-ventral|medioventral| +E0435886|medio-ventral nucleus|medioventral nucleus| +E0435889|megacystis microcolon hypoperistalsis syndrome|megacystis-microcolon-hypoperistalsis syndrome| +E0435890|megaureter megacystis hydronephrosis syndrome|megaureter-megacystis-hydronephrosis syndrome| +E0435891|megacystis microcolon intestinal hypoperistalsis syndrome|megacystis-microcolon-intestinal hypoperistalsis syndrome| +E0435907|nonglucosuric mellituria|nonglucosuric melituria| +E0435907|non-glucosuric melituria|nonglucosuric melituria| +E0435907|non-glucosuric mellituria|nonglucosuric melituria| +E0435912|meningo-eruptive syndrome|meningoeruptive syndrome| +E0435913|early-summer meningo-encephalitis|early-summer meningoencephalitis| +E0435913|early summer meningoencephalitis|early-summer meningoencephalitis| +E0435913|early summer meningo-encephalitis|early-summer meningoencephalitis| +E0435915|meningo-oculofacial angiomatosis|meningo-oculo-facial angiomatosis| +E0435916|meningo-cerebral|meningocerebral| +E0435919|merl|merle| +E0435930|meso-rectal|mesorectal| +E0435931|meso-rectal node|mesorectal node| +E0435932|meso-rectal lymph node|mesorectal lymph node| +E0435933|total meso-rectal excision|total mesorectal excision| +E0435934|metacentre balance technique|metacenter balance technique| +E0435945|micro-pore|micropore| +E0435946|micro-pore filter|micropore filter| +E0435949|mid-facial|midfacial| +E0435973|Mobius sequence|Moebius sequence| +E0435974|Mobius|Moebius| +E0435975|Mobius congenital oculofacial paralysis|Moebius congenital oculofacial paralysis| +E0435976|Mobius' anomalad|Moebius' anomalad| +E0435976|Moebius anomalad|Moebius' anomalad| +E0435976|Mobius anomalad|Moebius' anomalad| +E0435988|MON|Mon| +E0436000|mu opioid receptor|mu-opioid receptor| +E0436002|morpho-cytochemical|morphocytochemical| +E0436003|morpho-pathologic|morphopathologic| +E0436004|morpho-pathological|morphopathological| +E0436005|morpho-structural|morphostructural| +E0436006|morphoecological|morpho-ecological| +E0436007|morpho-histochemical|morphohistochemical| +E0436008|morpho-quantitative|morphoquantitative| +E0436023|muco-muscular|mucomuscular| +E0436025|muco-adhesive|mucoadhesive| +E0436026|muco-purulence|mucopurulence| +E0436027|oculo-muco-cutaneous syndrome|oculomucocutaneous syndrome| +E0436027|oculo-mucocutaneous syndrome|oculomucocutaneous syndrome| +E0436028|oculomucocutaneous bullous dermatosis|oculo-muco-cutaneous bullous dermatosis| +E0436028|oculo-mucocutaneous bullous dermatosis|oculo-muco-cutaneous bullous dermatosis| +E0436029|oculomucocutaneous|oculo-muco-cutaneous| +E0436029|oculo-mucocutaneous|oculo-muco-cutaneous| +E0436037|multi-core disease|multicore disease| +E0436038|multicore congenital myopathy|multi-core congenital myopathy| +E0436039|multi-core myopathy|multicore myopathy| +E0436040|multi-core|multicore| +E0436041|maxillary multi-segmental osteotomy|maxillary multisegmental osteotomy| +E0436042|multi-segmental|multisegmental| +E0436045|Haemophilus influenza-murium|Haemophilus influenzae-murium| +E0436045|Hemophilus influenzae-murium|Haemophilus influenzae-murium| +E0436047|S. typhi-murium|S. typhimurium| +E0436047|S. typhi murium|S. typhimurium| +E0436047|Salm. typhimurium|S. typhimurium| +E0436047|Salm. typhi-murium|S. typhimurium| +E0436047|Salm. typhi murium|S. typhimurium| +E0436054|muscovy duck|Muscovy duck| +E0436059|myelo-erythroid|myeloerythroid| +E0436062|adreno-myelo-leukodystrophy|adrenomyeloleukodystrophy| +E0436062|adrenomyeloleucodystrophy|adrenomyeloleukodystrophy| +E0436062|adreno-myelo-leucodystrophy|adrenomyeloleukodystrophy| +E0436064|myelolymphoproliferative|myelo-lymphoproliferative| +E0436066|subacute myelooptic neuropathy|subacute myelo-optic neuropathy| +E0436085|haemoglobin Nancy|hemoglobin Nancy| +E0436110|near-point|nearpoint| +E0436110|near point|nearpoint| +E0436111|negative end expiratory pressure|negative end-expiratory pressure| +E0436127|Salmonella nessziona|Salmonella ness-ziona| +E0436129|non-epileptic seizure|nonepileptic seizure| +E0436131|non-equilibrium steady state|nonequilibrium steady state| +E0436137|news reader|newsreader| +E0436153|egg nog|eggnog| +E0436162|nonalcohol dependent|nonalcohol-dependent| +E0436162|non-alcohol-dependent|nonalcohol-dependent| +E0436162|non-alcohol dependent|nonalcohol-dependent| +E0436163|non-alcohol-related|nonalcohol-related| +E0436163|nonalcohol related|nonalcohol-related| +E0436163|non-alcohol related|nonalcohol-related| +E0436164|non-biological|nonbiological| +E0436165|non contiguous|noncontiguous| +E0436165|non-contiguous|noncontiguous| +E0436166|non-exclusive|nonexclusive| +E0436167|non-exclusivity|nonexclusivity| +E0436168|non-food|nonfood| +E0436169|nonfood-deprived|non-food-deprived| +E0436170|nonfood-related|non-food-related| +E0436171|non-material|nonmaterial| +E0436172|non-pecuniary|nonpecuniary| +E0436173|non-religious|nonreligious| +E0436174|non-segmented|nonsegmented| +E0436175|non-segmented basophil|nonsegmented basophil| +E0436176|non-segmented eosinophil|nonsegmented eosinophil| +E0436177|non-segmented negative-strand RNA virus|nonsegmented negative-strand RNA virus| +E0436179|non-sister chromatid|nonsister chromatid| +E0436180|non-sister|nonsister| +E0436181|non-stress|nonstress| +E0436182|non-sympathetic|nonsympathetic| +E0436183|non use|nonuse| +E0436183|non-use|nonuse| +E0436184|non-vital tooth|nonvital tooth| +E0436185|non-vital|nonvital| +E0436186|non-vitality|nonvitality| +E0436199|Strychnos nuxvomica|Strychnos nux-vomica| +E0436201|oasthouse disease|oast-house disease| +E0436201|oast house disease|oast-house disease| +E0436208|oat-cell cancer|oat cell cancer| +E0436208|oatcell cancer|oat cell cancer| +E0436209|oat-cell carcinoma syndrome|oat cell carcinoma syndrome| +E0436209|oatcell carcinoma syndrome|oat cell carcinoma syndrome| +E0436228|orthopaedic examination|orthopedic examination| +E0436241|Orthopedic Nursing Certificate|Orthopaedic Nursing Certificate| +E0436244|onco-fetal protein|oncofetal protein| +E0436244|oncofoetal protein|oncofetal protein| +E0436244|onco-foetal protein|oncofetal protein| +E0436245|onco-fetal antigen|oncofetal antigen| +E0436245|oncofoetal antigen|oncofetal antigen| +E0436245|onco-foetal antigen|oncofetal antigen| +E0436246|onco-surgery|oncosurgery| +E0436247|onco-surgical|oncosurgical| +E0436248|onco-developmental antigen|oncodevelopmental antigen| +E0436249|onco-developmental protein|oncodevelopmental protein| +E0436250|onco-developmental|oncodevelopmental| +E0436251|oncohaematology|oncohematology| +E0436251|onco-haematology|oncohematology| +E0436251|onco-hematology|oncohematology| +E0436252|oncohaematological|oncohematological| +E0436252|onco-haematological|oncohematological| +E0436252|onco-hematological|oncohematological| +E0436253|onco-suppressor gene|oncosuppressor gene| +E0436254|onco-retrovirus|oncoretrovirus| +E0436255|hereditary onychoosteodysplasia|hereditary onycho-osteodysplasia| +E0436257|psoriatic onychopachydermoperiostitis|psoriatic onycho-pachydermo-periostitis| +E0436259|psoriatic onychoperiostitis|psoriatic onycho-periostitis| +E0436271|ophthalmo-surgery|ophthalmosurgery| +E0436272|ophthalmo-surgical|ophthalmosurgical| +E0436274|ophthalmoneurologic|ophthalmo-neurologic| +E0436277|angiospastic ophthalmo-auricular syndrome|angiospastic ophthalmoauricular syndrome| +E0436296|orchido-epididymitis|orchidoepididymitis| +E0436298|oromaxillo-facial|oromaxillofacial| +E0436298|oro-maxillo-facial|oromaxillofacial| +E0436299|oro-fecal|orofecal| +E0436299|orofaecal|orofecal| +E0436299|oro-faecal|orofecal| +E0436300|oro-antral fistula|oroantral fistula| +E0436301|oro-antral|oroantral| +E0436303|digito-oro-facial syndrome|digito-orofacial syndrome| +E0436309|oestrogen replacement therapy|estrogen replacement therapy| +E0436311|oesophageal radionuclide transit|esophageal radionuclide transit| +E0436315|vapour pressure osmometry|vapor pressure osmometry| +E0436345|body packer syndrome|body-packer syndrome| +E0436346|body packer|body-packer| +E0436349|post-antibiotic effect|postantibiotic effect| +E0436366|palatogingival groove|palato-gingival groove| +E0436368|otopalatodigital syndrome|oto-palato-digital syndrome| +E0436369|otopalatodigital syndrome type II|oto-palato-digital syndrome type II| +E0436370|otopalatodigital syndrome type I|oto-palato-digital syndrome type I| +E0436372|palato-oesophageal|palato-esophageal| +E0436373|palato-oesophageal incoordination|palato-esophageal incoordination| +E0436404|green rumped parrotlet|green-rumped parrotlet| +E0436413|van Patten|Van Patten| +E0436424|Pediatric Evaluation of Disability Inventory|Paediatric Evaluation of Disability Inventory| +E0436429|primary-effusion lymphoma|primary effusion lymphoma| +E0436433|pel|Pel| +E0436456|peritoneoanal resection|peritoneo-anal resection| +E0436457|peritoneoserosal surface|peritoneo-serosal surface| +E0436458|peritoneoserosal|peritoneo-serosal| +E0436459|peritoneo-vaginal|peritoneovaginal| +E0436460|peritoneocaval shunt|peritoneo-caval shunt| +E0436461|peritoneocaval|peritoneo-caval| +E0436462|peri-ureteric|periureteric| +E0436463|postenucleation socket syndrome|post-enucleation socket syndrome| +E0436467|pseudo-epileptic seizure|pseudoepileptic seizure| +E0436468|pseudo-exfoliative syndrome|pseudoexfoliative syndrome| +E0436469|pre-epiglottic space|preepiglottic space| +E0436470|polyethylene sulphonate|polyethylene sulfonate| +E0436471|photo-electron spectroscopy|photoelectron spectroscopy| +E0436486|pressure equalisation|pressure equalization| +E0436494|phako|phaco| +E0436495|phako|phaco| +E0436496|phakoexeresis|phako-exeresis| +E0436497|pseudo-phakoanaphylactic endophthalmitis|pseudo-phako-anaphylactic endophthalmitis| +E0436497|pseudo-phaco-anaphylactic endophthalmitis|pseudo-phako-anaphylactic endophthalmitis| +E0436497|pseudo-phacoanaphylactic endophthalmitis|pseudo-phako-anaphylactic endophthalmitis| +E0436498|phaco-anaphylactic|phako-anaphylactic| +E0436498|phakoanaphylactic|phako-anaphylactic| +E0436498|phacoanaphylactic|phako-anaphylactic| +E0436500|phaco-trabeculectomy|phacotrabeculectomy| +E0436501|phaco-chop|phaco chop| +E0436503|pharyngo-tympanic|pharyngotympanic| +E0436504|pharyngocutaneous fistula|pharyngo-cutaneous fistula| +E0436513|photo-electron|photoelectron| +E0436514|X-ray photo-electron spectroscopy|X-ray photoelectron spectroscopy| +E0436514|X ray photoelectron spectroscopy|X-ray photoelectron spectroscopy| +E0436514|X ray photo-electron spectroscopy|X-ray photoelectron spectroscopy| +E0436514|x-ray photoelectron spectroscopy|X-ray photoelectron spectroscopy| +E0436514|x-ray photo-electron spectroscopy|X-ray photoelectron spectroscopy| +E0436514|xray photoelectron spectroscopy|X-ray photoelectron spectroscopy| +E0436514|xray photo-electron spectroscopy|X-ray photoelectron spectroscopy| +E0436515|x-ray photoemission spectroscopy|X-ray photoemission spectroscopy| +E0436515|X ray photoemission spectroscopy|X-ray photoemission spectroscopy| +E0436515|x ray photoemission spectroscopy|X-ray photoemission spectroscopy| +E0436515|xray photoemission spectroscopy|X-ray photoemission spectroscopy| +E0436517|photo-electron microscopy|photoelectron microscopy| +E0436518|photo-electron spectrometry|photoelectron spectrometry| +E0436530|pidgin English|Pidgin English| +E0436531|pietist|Pietist| +E0436532|pietist|Pietist| +E0436541|PILO|Pilo| +E0436541|pilo|Pilo| +E0436543|pilosebaceous naevoid disorder|pilosebaceous nevoid disorder| +E0436543|pilo-sebaceous nevoid disorder|pilosebaceous nevoid disorder| +E0436543|pilo-sebaceous naevoid disorder|pilosebaceous nevoid disorder| +E0436551|pincer-nail deformity|pincer nail deformity| +E0436552|pincer nail|pincer-nail| +E0436559|pipe-stem fibrosis|pipestem fibrosis| +E0436560|pipe stem portal cirrhosis|pipestem portal cirrhosis| +E0436560|pipe-stem portal cirrhosis|pipestem portal cirrhosis| +E0436561|pipe-stem capillary|pipestem capillary| +E0436561|pipe stem capillary|pipestem capillary| +E0436566|ant pipit|ant-pipit| +E0436567|southern ant pipit|southern ant-pipit| +E0436573|pleurothoracic|pleuro-thoracic| +E0436574|pleurophrenic|pleuro-phrenic| +E0436575|pleurohepatic|pleuro-hepatic| +E0436577|biliopleurobronchial fistula|bilio-pleuro-bronchial fistula| +E0436578|pleuroamniotic shunt|pleuro-amniotic shunt| +E0436579|pleuro-parietal|pleuroparietal| +E0436589|pneumo-allergen|pneumoallergen| +E0436590|pneumo-phtisiology|pneumophtisiology| +E0436591|pneumo-hydraulic|pneumohydraulic| +E0436592|pneumoorbitus|pneumo-orbitus| +E0436605|tube-nose poacher|tubenose poacher| +E0436612|blue spotted poacher|bluespotted poacher| +E0436619|silver polisher's lung disease|silver polishers' lung disease| +E0436620|air powder polisher|air-powder polisher| +E0436655|NRPo|NRPO| +E0436656|NRPc|NRPC| +E0436674|postero-inferior|posteroinferior| +E0436675|ventral postero-inferior nucleus|ventral posteroinferior nucleus| +E0436676|postero-inferior cerebellar artery|posteroinferior cerebellar artery| +E0436677|post-infective|postinfective| +E0436678|post-menstrual|postmenstrual| +E0436679|post-menstrual endometrium|postmenstrual endometrium| +E0436680|post-parturient|postparturient| +E0436683|postparturient haemoglobinuria|postparturient hemoglobinuria| +E0436683|post-parturient hemoglobinuria|postparturient hemoglobinuria| +E0436683|post-parturient haemoglobinuria|postparturient hemoglobinuria| +E0436694|pre-adult|preadult| +E0436695|pre-cerebellar nucleus|precerebellar nucleus| +E0436696|pre-cerebellar|precerebellar| +E0436701|pre-logical|prelogical| +E0436704|pre-occipital|preoccipital| +E0436705|pre-prostatic|preprostatic| +E0436706|pre-prostatic urethra|preprostatic urethra| +E0436707|pre-prostatic vein|preprostatic vein| +E0436708|pre-rolandic gyrus|prerolandic gyrus| +E0436709|pre-rolandic artery|prerolandic artery| +E0436710|pre-rolandic|prerolandic| +E0436716|lumbo-sacral prespondylolisthesis|lumbosacral prespondylolisthesis| +E0436717|pre-sternal|presternal| +E0436718|pre-sternal ciliated cyst|presternal ciliated cyst| +E0436722|PRN|prn| +E0436723|PRN|prn| +E0436724|PRN|Prn| +E0436725|postrotatory nystagmus|post-rotatory nystagmus| +E0436727|plaque reduction neutralisation|plaque reduction neutralization| +E0436784|white whiskered puffbird|white-whiskered puffbird| +E0436787|Lhb|LHb| +E0436809|puppet-like|puppetlike| +E0436810|puppet-like syndrome|puppetlike syndrome| +E0436820|postero-ventral pallidotomy|posteroventral pallidotomy| +E0436825|pyelo-ureteric|pyeloureteric| +E0436890|radio-contrast medium|radiocontrast medium| +E0436895|ring closing metathesis|ring-closing metathesis| +E0436898|pinon|pinyon| +E0436899|pinyon juniper|pinyon-juniper| +E0436899|pinon-juniper|pinyon-juniper| +E0436899|pinon juniper|pinyon-juniper| +E0436900|pinon pine|pinyon pine| +E0436901|pinon mouse|pinyon mouse| +E0436902|pinon nut|pinyon nut| +E0436911|Dahl salt resistant rat|Dahl salt-resistant rat| +E0436914|Daily Symptom Report|daily symptom report| +E0436919|dissimilatory sulphite reductase|dissimilatory sulfite reductase| +E0436920|dsr|Dsr| +E0436920|DSR|Dsr| +E0436921|red-back spider|redback spider| +E0436921|red back spider|redback spider| +E0436922|Australian red-back spider|Australian redback spider| +E0436922|Australian red back spider|Australian redback spider| +E0436923|red backed spider|red-backed spider| +E0436924|red-back vole|redback vole| +E0436924|red back vole|redback vole| +E0436925|red backed salamander|red-backed salamander| +E0436926|redback salamander|red-back salamander| +E0436926|red back salamander|red-back salamander| +E0436934|red-tail monkey|redtail monkey| +E0436941|redtail gerbil|red-tail gerbil| +E0436942|red-water|redwater| +E0436949|hyperrefringence|hyper-refringence| +E0436969|placque remover|plaque remover| +E0436980|reticulo-endothelial disorder|reticuloendothelial disorder| +E0436981|reticulo-linear|reticulolinear| +E0436982|reticulorumen|reticulo-rumen| +E0436983|reticulo-thalamic|reticulothalamic| +E0436984|reticulo-cortical|reticulocortical| +E0436995|retro-tracheal|retrotracheal| +E0436996|rhabdo-sphincter|rhabdosphincter| +E0436998|North Rhine Westphalia|North Rhine-Westphalia| +E0437023|Rivermead Motor Assessment|Rivermead motor assessment| +E0437030|retromolar trigon|retromolar trigone| +E0437042|cocoa bean roaster|cocoa-bean roaster| +E0437045|five bearded rockling|five-bearded rockling| +E0437077|rowan berry|rowanberry| +E0437084|reference strand-mediated conformation analysis|reference strand mediated conformation analysis| +E0437084|reference-strand mediated conformation analysis|reference strand mediated conformation analysis| +E0437106|Rutter behaviour questionnaire|Rutter behavior questionnaire| +E0437108|Rutter Parent Questionnaire|Rutter parent questionnaire| +E0437109|Rutter Teacher Questionnaire|Rutter teacher questionnaire| +E0437149|sake|saki| +E0437152|haemoglobin Saki|hemoglobin Saki| +E0437156|SALP|sALP| +E0437161|salpingouterostomy|salpingo-uterostomy| +E0437162|chronic salpingooophoritis|chronic salpingo-oophoritis| +E0437163|acute salpingooophoritis|acute salpingo-oophoritis| +E0437172|sand box|sandbox| +E0437208|Sargassum triggerfish|sargassum triggerfish| +E0437209|Q-SART|QSART| +E0437214|sino-atrial reentrant tachycardia|sinoatrial reentrant tachycardia| +E0437228|scapho-lunate|scapholunate| +E0437229|scapho-lunate advanced collapse|scapholunate advanced collapse| +E0437231|scapho-lunate dissociation|scapholunate dissociation| +E0437232|scapho-lunate ligament|scapholunate ligament| +E0437233|scapho-lunate joint|scapholunate joint| +E0437254|schizoparanoid|schizo-paranoid| +E0437264|Scilla siberica|Scilla sibirica| +E0437267|Scilla non-scripta|Scilla nonscripta| +E0437285|white faced scops owl|white-faced scops owl| +E0437291|pot scourer pleurodesis|pot-scourer pleurodesis| +E0437295|black necked screamer|black-necked screamer| +E0437302|single-donor platelet|single donor platelet| +E0437303|short day photoperiod|short-day photoperiod| +E0437324|semi-voluntary|semivoluntary| +E0437328|septooptic dysplasia|septo-optic dysplasia| +E0437330|septopreoptic|septo-preoptic| +E0437337|sero-fibrinous|serofibrinous| +E0437349|single fibre electromyography|single fiber electromyography| +E0437350|single fibre EMG|single fiber EMG| +E0437362|serum derived hyaluronan associated protein|serum-derived hyaluronan-associated protein| +E0437364|slow hyperpolarizing after-potential|slow hyperpolarizing afterpotential| +E0437364|slow hyperpolarising afterpotential|slow hyperpolarizing afterpotential| +E0437364|slow hyperpolarising after-potential|slow hyperpolarizing afterpotential| +E0437384|Self-Harm Inventory|self-harm inventory| +E0437392|SHI|shi| +E0437446|Russula queleti|Russula queletii| +E0437456|strong-ion difference|strong ion difference| +E0437457|surface induced dissociation|surface-induced dissociation| +E0437458|Schimke immunoosseous dysplasia|Schimke immuno-osseous dysplasia| +E0437479|sputter-initiated resonance ionisation spectroscopy|sputter-initiated resonance ionization spectroscopy| +E0437494|Arctic skua|arctic skua| +E0437496|antarctic skua|Antarctic skua| +E0437542|polka dot snailfish|polka-dot snailfish| +E0437555|grey snapper|gray snapper| +E0437577|white-spotted soapfish|whitespotted soapfish| +E0437587|spiny-cheek soldierfish|spinycheek soldierfish| +E0437587|spiny cheek soldierfish|spinycheek soldierfish| +E0437590|big-eye soldierfish|bigeye soldierfish| +E0437590|big eye soldierfish|bigeye soldierfish| +E0437603|spade-foot toad|spadefoot toad| +E0437604|North American spade-foot toad|North American spadefoot toad| +E0437606|Eastern spade-foot toad|Eastern spadefoot toad| +E0437608|European spade-foot toad|European spadefoot toad| +E0437610|Couch's spade-foot toad|Couch's spadefoot toad| +E0437611|Western spade-foot toad|Western spadefoot toad| +E0437611|western spadefoot toad|Western spadefoot toad| +E0437611|western spade-foot toad|Western spadefoot toad| +E0437624|Spemann organiser|Spemann organizer| +E0437625|Spemann's organiser|Spemann's organizer| +E0437626|single photon emission tomography|single-photon emission tomography| +E0437633|blue-gold goby|bluegold goby| +E0437646|paprika splitter's lung|paprika splitters' lung| +E0437654|vineyard sprayer's lung|vineyard sprayers' lung| +E0437661|Spurling manoevre|Spurling maneuver| +E0437673|Japanese angelshark|Japanese angel shark| +E0437676|clouded angelshark|clouded angel shark| +E0437687|sulphamethoxazole-trimethoprim|sulfamethoxazole-trimethoprim| +E0437689|sickle thalassaemia|sickle thalassemia| +E0437709|st|St| +E0437710|st|St| +E0437719|Warthin Starry stain|Warthin-Starry stain| +E0437720|Warthin Starry staining|Warthin-Starry staining| +E0437734|Scatophaga stercoraria|Scathophaga stercoraria| +E0437738|Stim|stim| +E0437755|endolymphatic stromal miosis|endolymphatic stromal myosis| +E0437756|stromal miosis|stromal myosis| +E0437758|structuralise|structuralize| +E0437759|poststructuralism|post-structuralism| +E0437770|sub-trigonal|subtrigonal| +E0437778|sulphadimidine|sulfadimidine| +E0437779|sulfo-MBS|sulpho-MBS| +E0437781|sulphoiduronidate sulphatase deficiency|sulfoiduronidate sulfatase deficiency| +E0437781|sulfo-iduronidate sulfatase deficiency|sulfoiduronidate sulfatase deficiency| +E0437781|sulpho-iduronidate sulphatase deficiency|sulfoiduronidate sulfatase deficiency| +E0437799|nevus lipomatodes cutaneous superficialis|naevus lipomatodes cutaneous superficialis| +E0437801|naevus lipomatosus cutaneus superficialis|nevus lipomatosus cutaneus superficialis| +E0437804|oesophagitis dissecans superficialis|esophagitis dissecans superficialis| +E0437845|syr.|syr| +E0437851|tail light|taillight| +E0437855|smear-taker|smear taker| +E0437856|risk taker|risk-taker| +E0437875|tea factory cough|tea-factory cough| +E0437876|tea-taster|tea taster| +E0437877|tea makers' asthma|tea-makers' asthma| +E0437877|tea-maker's asthma|tea-makers' asthma| +E0437877|tea maker's asthma|tea-makers' asthma| +E0437879|healthcare team|health care team| +E0437892|lesser hedgehog-tenrec|lesser hedgehog tenrec| +E0437893|hedgehog-tenrec|hedgehog tenrec| +E0437926|transhiatal esophagectomy|transhiatal oesophagectomy| +E0437926|trans-hiatal oesophagectomy|transhiatal oesophagectomy| +E0437926|trans-hiatal esophagectomy|transhiatal oesophagectomy| +E0437936|Bernard Soulier thrombopathy|Bernard-Soulier thrombopathy| +E0437937|tic polonga|ticpolonga| +E0437959|tumour node metastasis|tumor node metastasis| +E0437980|blue tongued skink|blue-tongued skink| +E0437981|blue tongued lizard|blue-tongued lizard| +E0437982|long tongued bat|long-tongued bat| +E0437983|long tongued bee|long-tongued bee| +E0437997|tracheo-bronchoplasty|tracheobronchoplasty| +E0437998|tracheo-gastric fistula|tracheogastric fistula| +E0437999|tracheo-gastric|tracheogastric| +E0438000|tracheoinnominate artery|tracheo-innominate artery| +E0438001|tracheoinnominate|tracheo-innominate| +E0438003|tracheoinnominate fistula|tracheo-innominate fistula| +E0438010|photomechanical transferrer|photo-mechanical transferrer| +E0438016|tubulo-reticular inclusion|tubuloreticular inclusion| +E0438030|tricorn|tricorne| +E0438065|grey-winged trumpeter|gray-winged trumpeter| +E0438077|tummy ache|tummy-ache| +E0438086|time-weighted average|time weighted average| +E0438087|T wave alternans|T-wave alternans| +E0438089|tongue-twister|tongue twister| +E0438099|unilateral latero-thoracic exanthem|unilateral laterothoracic exanthem| +E0438141|under-cast padding|undercast padding| +E0438171|unsystematised|unsystematized| +E0438179|ureterocecal|ureterocaecal| +E0438179|uretero-caecal|ureterocaecal| +E0438179|uretero-cecal|ureterocaecal| +E0438180|uretero-colic anastomosis|ureterocolic anastomosis| +E0438181|uretero-intestinal anastomosis|ureterointestinal anastomosis| +E0438183|uretero-cutaneous|ureterocutaneous| +E0438184|ureterovulvar|uretero-vulvar| +E0438185|ureterouterine fistula|uretero-uterine fistula| +E0438186|ureterocutaneostomy|uretero-cutaneostomy| +E0438187|uretero-pyelic|ureteropyelic| +E0438205|vasoocclusive crisis|vaso-occlusive crisis| +E0438208|vasoobliterative|vaso-obliterative| +E0438211|visual electrically-evoked potential|visual electrically evoked potential| +E0438218|ventro-caudal thalamic peduncle|ventrocaudal thalamic peduncle| +E0438220|vertebrobasilar artery syndrome|vertebro-basilar artery syndrome| +E0438220|vertebro basilar artery syndrome|vertebro-basilar artery syndrome| +E0438221|vertebrobasilar ischemia|vertebro-basilar ischemia| +E0438221|vertebro basilar ischemia|vertebro-basilar ischemia| +E0438221|vertebro-basilar ischaemia|vertebro-basilar ischemia| +E0438221|vertebrobasilar ischaemia|vertebro-basilar ischemia| +E0438221|vertebro basilar ischaemia|vertebro-basilar ischemia| +E0438222|vertebrooccipital anastomosis|vertebro-occipital anastomosis| +E0438223|vertebrooccipital|vertebro-occipital| +E0438228|vesico-cecal|vesicocecal| +E0438228|vesicocoecal|vesicocecal| +E0438228|vesico-coecal|vesicocecal| +E0438228|vesicocaecal|vesicocecal| +E0438228|vesico-caecal|vesicocecal| +E0438229|vesicoileal|vesico-ileal| +E0438230|vesicosigmoidocolic|vesico-sigmoidocolic| +E0438231|vesicocutaneous|vesico-cutaneous| +E0438232|vesicointestinal fistula|vesico-intestinal fistula| +E0438233|vesico-enteric fistula|vesicoenteric fistula| +E0438235|vesico-amniotic|vesicoamniotic| +E0438236|vesico-amniotic shunt|vesicoamniotic shunt| +E0438246|Lagostimus maximus maximus|Lagostomus maximus maximus| +E0438247|Lagostimus maximus|Lagostomus maximus| +E0438271|grey wagtail|gray wagtail| +E0438283|bay breasted warbler|bay-breasted warbler| +E0438284|black capped warbler|black-capped warbler| +E0438285|blue winged warbler|blue-winged warbler| +E0438286|chestnut sided warbler|chestnut-sided warbler| +E0438290|yellow rumped warbler|yellow-rumped warbler| +E0438299|orange crowned warbler|orange-crowned warbler| +E0438322|wobbler's syndrome|wobbler syndrome| +E0438347|Yo|YO| +E0438353|Zoon's balano-posthitis|Zoon's balanoposthitis| +E0438388|familial lecithin-cholesterol acyltransferase deficiency|familial lecithin cholesterol acyltransferase deficiency| +E0438392|angio-cellular|angiocellular| +E0438404|anaesthesia circuit|anesthesia circuit| +E0438413|under-achiever|underachiever| +E0438451|alveolointerstitial|alveolo-interstitial| +E0438452|alveolo-buccal|alveolobuccal| +E0438460|foetus acardius amorphus|fetus acardius amorphus| +E0438461|foetus amorphus|fetus amorphus| +E0438466|amygdalo-striatal|amygdalostriatal| +E0438469|amygdalo-thalamic|amygdalothalamic| +E0438471|amygdalo-periacqueductal grey pathway|amygdalo-periacqueductal gray pathway| +E0438473|phosphate activated glutaminase|phosphate-activated glutaminase| +E0438475|periaqueductal grey matter|periaqueductal gray matter| +E0438476|periaquaductal grey|periaquaductal gray| +E0438476|periaqueductal grey|periaquaductal gray| +E0438476|periaqueductal gray|periaquaductal gray| +E0438478|pregnancy associated glycoprotein|pregnancy-associated glycoprotein| +E0438479|amygdalo-periacqueductal grey matter|amygdalo-periacqueductal gray matter| +E0438480|amygdalo-periacqueductal grey|amygdalo-periacqueductal gray| +E0438501|anti-foaming agent|antifoaming agent| +E0438502|anti-foaming|antifoaming| +E0438504|anti-vitamin|antivitamin| +E0438505|apico-basal|apicobasal| +E0438506|apicoanteroseptal region|apico-anteroseptal region| +E0438507|apicoanteroseptal|apico-anteroseptal| +E0438508|apico-lateral|apicolateral| +E0438509|apicoaortic|apico-aortic| +E0438519|Alpine swift|alpine swift| +E0438531|anti-thyroid drug|antithyroid drug| +E0438533|articulo-trochanteric distance|articulotrochanteric distance| +E0438534|articulo-pedicular|articulopedicular| +E0438535|articulo-visceral|articulovisceral| +E0438555|auriculo-parietal|auriculoparietal| +E0438556|auriculo-vertical|auriculovertical| +E0438563|bacterio-clinical|bacterioclinical| +E0438564|bacterio-therapy|bacteriotherapy| +E0438571|baro-denervated|barodenervated| +E0438572|baro-afferent|baroafferent| +E0438573|baro-afferent|baroafferent| +E0438574|baro-regulation|baroregulation| +E0438575|baro-regulated|baroregulated| +E0438576|baro-volutrauma|barovolutrauma| +E0438581|battledoor|battledore| +E0438603|Betalin|betalin| +E0438617|bonassus|bonasus| +E0438626|brachio-facial|brachiofacial| +E0438628|broncho|bronco| +E0438634|boulle|buhl| +E0438637|Caco 2|Caco-2| +E0438639|caddice|caddis| +E0438640|caddice worm|caddis worm| +E0438641|cajeput|cajuput| +E0438654|small headed|small-headed| +E0438659|carcinofoetal|carcinofetal| +E0438659|carcino-fetal|carcinofetal| +E0438659|carcino-foetal|carcinofetal| +E0438681|A. cataphylla|Ae. cataphylla| +E0438703|cephalo-auricular sulcus|cephaloauricular sulcus| +E0438704|cephalo-auricular|cephaloauricular| +E0438705|cephalo-skeletal dysplasia|cephaloskeletal dysplasia| +E0438706|cephalo-skeletal|cephaloskeletal| +E0438708|cephalo-rachidian|cephalorachidian| +E0438716|Arctic char|arctic char| +E0438716|arctic charr|arctic char| +E0438716|Arctic charr|arctic char| +E0438717|cheilo-palatoschisis|cheilopalatoschisis| +E0438719|cheilo-rhinoplastic|cheilorhinoplastic| +E0438751|cicer milk vetch|cicer milkvetch| +E0438752|milk vetch|milkvetch| +E0438753|timber milk vetch|timber milkvetch| +E0438778|COE|CoE| +E0438807|cono-truncus|conotruncus| +E0438819|corn stalk|cornstalk| +E0438825|sterno-costo-clavicular|sternocostoclavicular| +E0438826|retrocostoxyphoid hernia|retro-costo-xyphoid hernia| +E0438827|retrocostoxyphoid|retro-costo-xyphoid| +E0438832|creat.|creat| +E0438832|CREAT|creat| +E0438834|crisscross|criss-cross| +E0438835|crystallisable|crystallizable| +E0438836|crystallisability|crystallizability| +E0438837|crystallisable fragment|crystallizable fragment| +E0438843|cut-throat|cutthroat| +E0438844|cut-throat|cutthroat| +E0438849|Da Costa|DaCosta| +E0438860|Deca|DECA| +E0438862|deca-histidine|decahistidine| +E0438863|deca-saccharide|decasaccharide| +E0438864|decolour|decolor| +E0438873|degeneratio hyaloideoretinalis hereditaria|degeneratio hyaloideo-retinalis hereditaria| +E0438882|Collectotrichum|Colletotrichum| +E0438883|demiembryo|demi-embryo| +E0438884|demi-span|demispan| +E0438887|demimorula|demi-morula| +E0438888|demipointe|demi-pointe| +E0438896|disulphiram-ethanol reaction|disulfiram-ethanol reaction| +E0438896|disulfiram ethanol reaction|disulfiram-ethanol reaction| +E0438896|disulphiram ethanol reaction|disulfiram-ethanol reaction| +E0438897|dual-energy radiography|dual energy radiography| +E0438943|dog tooth|dogtooth| +E0438946|dorso-sacral|dorsosacral| +E0438962|dismaturity|dysmaturity| +E0438966|extra-cytoplasmic function|extracytoplasmic function| +E0438969|extended-care facility|extended care facility| +E0438973|oedema factor|edema factor| +E0438986|embryo-foetal|embryo-fetal| +E0438986|embryofetal|embryo-fetal| +E0438986|embryofoetal|embryo-fetal| +E0438987|extended field radiotherapy|extended-field radiotherapy| +E0438988|extended field|extended-field| +E0438989|extra-fine|extrafine| +E0438989|extra fine|extrafine| +E0439003|enolether|enol ether| +E0439010|epauletted|epauleted| +E0439047|Eschscholzia|Eschscholtzia| +E0439048|ethinyl oestradiol hemihydrate|ethinyl estradiol hemihydrate| +E0439048|ethinylestradiol hemihydrate|ethinyl estradiol hemihydrate| +E0439048|ethinyloestradiol hemihydrate|ethinyl estradiol hemihydrate| +E0439050|ethynyl|ethinyl| +E0439061|acute generalised exanthematous pustulosis|acute generalized exanthematous pustulosis| +E0439062|advanced glycosylation end product|advanced glycosylation end-product| +E0439077|field amplified sample stacking|field-amplified sample stacking| +E0439078|field amplified|field-amplified| +E0439083|faun tail nevus|faun-tail nevus| +E0439083|faun-tail naevus|faun-tail nevus| +E0439083|faun tail naevus|faun-tail nevus| +E0439084|ferri-form|ferriform| +E0439085|ferri-transferrin|ferritransferrin| +E0439086|ferri-pyoverdin|ferripyoverdin| +E0439087|ferri-reduction|ferrireduction| +E0439088|ferri-reductase|ferrireductase| +E0439120|forklike|fork-like| +E0439133|frog-like|froglike| +E0439134|faecal urobilinogen|fecal urobilinogen| +E0439135|foetal urobilinogen|fetal urobilinogen| +E0439140|galactooligosaccharide|galacto-oligosaccharide| +E0439154|ganglio-bronchial fistula|gangliobronchial fistula| +E0439155|ganglio-bronchial|gangliobronchial| +E0439156|ganglio-thalamic|gangliothalamic| +E0439157|garrapata|garapata| +E0439166|geranylpyrophosphate|geranyl pyrophosphate| +E0439167|geranyldiphosphate|geranyl diphosphate| +E0439168|geranyldiphosphate synthase|geranyl diphosphate synthase| +E0439258|haematoporphyria|hematoporphyria| +E0439266|hepta-chlorinated|heptachlorinated| +E0439271|hexose-monophosphate|hexosemonophosphate| +E0439271|hexose monophosphate|hexosemonophosphate| +E0439273|high intensity sprint training|high-intensity sprint training| +E0439275|Hist|hist| +E0439277|Van't Hoff enthalpy|van't Hoff enthalpy| +E0439278|Van't Hoff plot|van't Hoff plot| +E0439294|hydraemic|hydremic| +E0439295|hydroiodic|hydriodic| +E0439356|inter-territorial|interterritorial| +E0439357|inter-tropical|intertropical| +E0439400|Kerkring fold|Kerckring fold| +E0439405|Knemidokoptes pilae|Knemidocoptes pilae| +E0439405|Cnemidocoptes pilae|Knemidocoptes pilae| +E0439406|Knemidocoptes gallinae|Knemidokoptes gallinae| +E0439406|Cnemidocoptes gallinae|Knemidokoptes gallinae| +E0439411|Kung|!Kung| +E0439475|A. farauti Laveran|An. farauti Laveran| +E0439500|lipolymphedema|lipo-lymphedema| +E0439500|lipo-lymphoedema|lipo-lymphedema| +E0439500|lipolymphoedema|lipo-lymphedema| +E0439501|lipo-polypeptide|lipopolypeptide| +E0439502|lipo-chito-oligosaccharidic|lipo-chitooligosaccharidic| +E0439503|lipo-amino acid|lipoamino acid| +E0439504|lipo-amino|lipoamino| +E0439506|lipo-decapeptide|lipodecapeptide| +E0439509|liq.|liq| +E0439510|liq.|liq| +E0439522|B-cell acute lymphoblastic leukaemia|B-cell acute lymphoblastic leukemia| +E0439522|B-cell acute lymphoblastic leucemia|B-cell acute lymphoblastic leukemia| +E0439522|B-cell acute lymphoblastic leucaemia|B-cell acute lymphoblastic leukemia| +E0439524|chloroethyleneoxide|chloroethylene oxide| +E0439525|mixed-cell leucemia|mixed-cell leukemia| +E0439525|mixed-cell leukaemia|mixed-cell leukemia| +E0439525|mixed-cell leucaemia|mixed-cell leukemia| +E0439525|mixed cell leucemia|mixed-cell leukemia| +E0439525|mixed cell leukaemia|mixed-cell leukemia| +E0439525|mixed cell leucaemia|mixed-cell leukemia| +E0439525|mixed cell leukemia|mixed-cell leukemia| +E0439527|vincaalkaloid|vinca alkaloid| +E0439527|vinca-alkaloid|vinca alkaloid| +E0439530|chlormadinon acetate|chlormadinone acetate| +E0439531|calcium-magnesium acetate|calcium magnesium acetate| +E0439533|cost minimisation analysis|cost minimization analysis| +E0439534|oestradiol cypionate|estradiol cypionate| +E0439542|anti-rabies serum|antirabies serum| +E0439544|beta nicotyrine|beta-nicotyrine| +E0439545|SSA antigen|SS-A antigen| +E0439554|hypoplastic acute leukaemia|hypoplastic acute leukemia| +E0439554|hypoplastic acute leucemia|hypoplastic acute leukemia| +E0439554|hypoplastic acute leucaemia|hypoplastic acute leukemia| +E0439558|endotracheal anaesthesia|endotracheal anesthesia| +E0439558|endo-tracheal anesthesia|endotracheal anesthesia| +E0439558|endo-tracheal anaesthesia|endotracheal anesthesia| +E0439575|anti-mineralocorticoid|antimineralocorticoid| +E0439576|anti-mineralocorticoid|antimineralocorticoid| +E0439579|thanatos|Thanatos| +E0439587|Bouin solution|Bouin's solution| +E0439594|ethyloleate|ethyl oleate| +E0439598|atlantooccipital membrane|atlanto-occipital membrane| +E0439602|methyl malonyl-coenzyme A epimerase|methylmalonyl-coenzyme A epimerase| +E0439603|methyl malonyl-CoA epimerase|methylmalonyl-CoA epimerase| +E0439604|epsilon aminocaproic acid|epsilon-aminocaproic acid| +E0439617|t&a|T&A| +E0439638|clindamicin phosphate|clindamycin phosphate| +E0439639|alphaadrenergic receptor|alpha-adrenergic receptor| +E0439639|alpha adrenergic receptor|alpha-adrenergic receptor| +E0439642|mepivicaine hydrochloride|mepivacaine hydrochloride| +E0439647|padimate O|padimate-O| +E0439649|interleukin 2|interleukin-2| +E0439655|terminal deoxyribonucleotidyltransferase|terminal deoxyribonucleotidyl transferase| +E0439662|slow reacting substance|slow-reacting substance| +E0439664|pre-excite|preexcite| +E0439665|ventricular preexcitation|ventricular pre-excitation| +E0439666|ligand gated channel|ligand-gated channel| +E0439667|ligand gated ion channel|ligand-gated ion channel| +E0439668|ligand gated|ligand-gated| +E0439672|hypoxanthine phosphoribosyl transferase|hypoxanthine phosphoribosyltransferase| +E0439683|periodic acid-Schiff stain|periodic acid Schiff stain| +E0439685|MEGal|MeGal| +E0439685|MEGAL|MeGal| +E0439689|oestradiol enanthate|estradiol enanthate| +E0439695|flax seed oil|flaxseed oil| +E0439709|D-D|D-d| +E0439711|hepatitis B immuneglobulin|hepatitis B immune globulin| +E0439714|interleukin 3|interleukin-3| +E0439720|supra-scapular notch|suprascapular notch| +E0439747|S-wave|S wave| +E0439747|s wave|S wave| +E0439747|s-wave|S wave| +E0439759|Hipp|HIPP| +E0439759|hipp|HIPP| +E0439762|Hipp|HIPP| +E0439762|hipp|HIPP| +E0439763|hilar perforant path associated cell|hilar perforant path-associated cell| +E0439817|ortho-cresol|orthocresol| +E0439820|glass-ionomer cement|glass ionomer cement| +E0439822|autooxidation|auto-oxidation| +E0439823|autooxidization|auto-oxidization| +E0439823|auto-oxidisation|auto-oxidization| +E0439823|autooxidisation|auto-oxidization| +E0439830|abdominal peritonaeum|abdominal peritoneum| +E0439839|phenyl propanolamine hydrochloride|phenylpropanolamine hydrochloride| +E0439840|cortisol-binding globulin|cortisol binding globulin| +E0439844|psycho-social development|psychosocial development| +E0439851|eardrop|ear drop| +E0439853|5fluorouracil|5-fluorouracil| +E0439853|5 fluorouracil|5-fluorouracil| +E0439854|eosin-B|eosin B| +E0439855|Wilm tumour|Wilm tumor| +E0439870|alpha naphthol|alpha-naphthol| +E0439882|procaine amide hydrochloride|procainamide hydrochloride| +E0439903|gelatine sponge|gelatin sponge| +E0439906|low density lipoprotein receptor|low-density lipoprotein receptor| +E0439910|Histoplasma capsulatum var duboisii|Histoplasma capsulatum var. duboisii| +E0439911|H. capsulatum var duboisii|H. capsulatum var. duboisii| +E0439916|single cell liquid cytotoxic assay|single-cell liquid cytotoxic assay| +E0439920|swine leucocyte antigen|swine leukocyte antigen| +E0439941|self-realisation|self-realization| +E0439959|sucrose octa-acetate|sucrose octaacetate| +E0439959|sucrose octa acetate|sucrose octaacetate| +E0439966|peri-apical curettage|periapical curettage| +E0439981|penta-erythritol triacrylate|pentaerythritol triacrylate| +E0439985|B cell antigen receptor|B-cell antigen receptor| +E0439987|graft vs host reaction|graft-vs-host reaction| +E0439987|graft-vs.-host reaction|graft-vs-host reaction| +E0439988|methylanthranilate|methyl anthranilate| +E0439989|anti-D antibody|anti-d antibody| +E0439989|anti d antibody|anti-d antibody| +E0439989|anti D antibody|anti-d antibody| +E0439990|phenylisocyanate|phenyl isocyanate| +E0439992|interleukin 1|interleukin-1| +E0439999|T cell antigen receptor|T-cell antigen receptor| +E0440003|alkalinise|alkalinize| +E0440005|cholesterol sulphatase|cholesterol sulfatase| +E0440017|alphaketoglutarate dehydrogenase|alpha-ketoglutarate dehydrogenase| +E0440018|prostaglandin endoperoxide synthase|prostaglandin-endoperoxide synthase| +E0440020|Tyrode solution|Tyrode's solution| +E0440034|manganese sulphate|manganese sulfate| +E0440036|Locke solution|Locke's solution| +E0440039|contact-lens-induced acute red eye|contact lens-induced acute red eye| +E0440039|contact lens induced acute red eye|contact lens-induced acute red eye| +E0440046|burst-forming unit-erythroid|burst-forming unit erythroid| +E0440046|burst forming unit erythroid|burst-forming unit erythroid| +E0440046|burst forming unit-erythroid|burst-forming unit erythroid| +E0440047|BFU E|BFU-E| +E0440051|haemoglobin A2|hemoglobin A2| +E0440057|Anglo Scandinavian Cardiac Outcomes Trial|Anglo-Scandinavian Cardiac Outcomes Trial| +E0440060|self worth|self-worth| +E0440061|mullerian-inhibiting substance|mullerian inhibiting substance| +E0440077|menadione sodium bisulphite|menadione sodium bisulfite| +E0440081|axillo-femoral bypass|axillofemoral bypass| +E0440086|potassium sparing diuretic|potassium-sparing diuretic| +E0440120|Dejerine Sottas syndrome|Dejerine-Sottas syndrome| +E0440141|atracurium besilate|atracurium besylate| +E0440145|Ziehl Neelsen stain|Ziehl-Neelsen stain| +E0440157|sodium potassium pump|sodium-potassium pump| +E0440162|minor tranquiliser|minor tranquilizer| +E0440162|minor tranquillizer|minor tranquilizer| +E0440162|minor tranquilliser|minor tranquilizer| +E0440180|combined hyperlipidaemia|combined hyperlipidemia| +E0440187|formate hydrogen lyase|formate hydrogenlyase| +E0440187|formate-hydrogenlyase|formate hydrogenlyase| +E0440187|formate-hydrogen lyase|formate hydrogenlyase| +E0440189|oestradiol valerate|estradiol valerate| +E0440195|albuterol sulphate|albuterol sulfate| +E0440200|group specific component|group-specific component| +E0440201|organo-metallic compound|organometallic compound| +E0440204|haematopoietic growth factor|hematopoietic growth factor| +E0440214|generalised pustular psoriasis|generalized pustular psoriasis| +E0440217|salicylazosulphapyridine|salicylazosulfapyridine| +E0440241|p value|p-value| +E0440243|Shigatoxin|Shiga toxin| +E0440243|shigatoxin|Shiga toxin| +E0440243|shiga toxin|Shiga toxin| +E0440244|Shiga Kruse disease|Shiga-Kruse disease| +E0440246|SurA|surA| +E0440254|self antigen|self-antigen| +E0440262|dopa oxidase|dopaoxidase| +E0440262|dopa-oxidase|dopaoxidase| +E0440262|DOPA oxidase|dopaoxidase| +E0440262|DOPA-oxidase|dopaoxidase| +E0440269|haemoglobin M|hemoglobin M| +E0440271|Fc-receptor|Fc receptor| +E0440280|angiotensin I converting enzyme|angiotensin I-converting enzyme| +E0440296|I-a antigen|Ia antigen| +E0440296|IA antigen|Ia antigen| +E0440296|I-A antigen|Ia antigen| +E0440298|alpha-helix|alpha helix| +E0440305|Tenia mustela|Taenia mustela| +E0440307|bis chloronitrosourea|bis-chloronitrosourea| +E0440307|bischloronitrosourea|bis-chloronitrosourea| +E0440329|Porteus Maze test|Porteus Maze Test| +E0440338|Student's t-test|Student's t test| +E0440338|Students t test|Student's t test| +E0440338|Students t-test|Student's t test| +E0440338|Students' t test|Student's t test| +E0440338|Students' t-test|Student's t test| +E0440339|Student t-test|Student t test| +E0440369|Herpestes edwardsi|Herpestes edwardsii| +E0440383|fowl pox vaccine|fowlpox vaccine| +E0440385|selfunderstanding|self-understanding| +E0440393|DNA directed RNA polymerase|DNA-directed RNA polymerase| +E0440394|Burow solution|Burow's solution| +E0440401|H2 antigen|H-2 antigen| +E0440401|H 2 antigen|H-2 antigen| +E0440411|Shetland sheep dog|Shetland sheepdog| +E0440412|shetland wool|Shetland wool| +E0440414|benzyl penicillin potassium|benzylpenicillin potassium| +E0440429|black spotted topminnow|blackspotted topminnow| +E0440484|papulo-squamous dermatosis|papulosquamous dermatosis| +E0440485|papulo-nodular|papulonodular| +E0440486|papulo-nodule|papulonodule| +E0440487|papulo-pustular acne|papulopustular acne| +E0440488|papulo erythroderma|papuloerythroderma| +E0440488|papulo-erythroderma|papuloerythroderma| +E0440489|Ofuji's papulo-erythroderma|Ofuji's papuloerythroderma| +E0440490|Ofuji papulo-erythroderma|Ofuji papuloerythroderma| +E0440512|blacktailed prairie dog|black-tailed prairie dog| +E0440544|highly glucose tolerant beta-glucosidase|highly glucose-tolerant beta-glucosidase| +E0440544|highly glucose tolerant beta glucosidase|highly glucose-tolerant beta-glucosidase| +E0440577|habenulointerpeduncular|habenulo-interpeduncular| +E0440651|Hyacinthoides non-scripta|Hyacinthoides nonscripta| +E0440682|haemangiosis|hemangiosis| +E0440690|Wagner Unverricht syndrome|Wagner-Unverricht syndrome| +E0440723|pv.|pv| +E0440748|post-vasectomy|postvasectomy| +E0440749|post-voiding|postvoiding| +E0440750|post-voiding|postvoiding| +E0440751|post-vasectomy|postvasectomy| +E0440795|bare necked umbrellabird|bare-necked umbrellabird| +E0440808|olivo-cerebellar pathway|olivocerebellar pathway| +E0440809|olivo-cerebellar atrophy|olivocerebellar atrophy| +E0440810|olivo-cerebellar tract|olivocerebellar tract| +E0440825|isohaematinic|isohematinic| +E0440911|Mcardle disease|McArdle disease| +E0440921|Carybdea rastoni|Carybdea rastonii| +E0440956|Thiry Vella loop|Thiry-Vella loop| +E0440963|witch's butter|witches' butter| +E0440963|witches butter|witches' butter| +E0441028|Kuf|KUf| +E0441028|kUF|KUf| +E0441089|cemento-dentinal|cementodentinal| +E0441135|Buthus martensi Karsch|Buthus martensii Karsch| +E0441136|Buthus martensi|Buthus martensii| +E0441145|grey whale|gray whale| +E0441186|Piedraia hortae|Piedraia hortai| +E0441187|P. hortae|P. hortai| +E0441266|dioleoylphosphatidylserine|dioleoyl phosphatidylserine| +E0441288|sociomedical|socio-medical| +E0441331|non-suppressible insulin-like activity|nonsuppressible insulin-like activity| +E0441441|Encephalartos friderici guilielmi|Encephalartos friderici-guilielmi| +E0441449|Schiller Duval body|Schiller-Duval body| +E0441464|polybutylcyanoacrylate|polybutyl cyanoacrylate| +E0441478|seborrhoea faciei|seborrhea faciei| +E0441491|alkyl ammonium|alkylammonium| +E0441492|alkyl ammonium amidobenzoate|alkylammonium amidobenzoate| +E0441493|alkyl ammonium chloride|alkylammonium chloride| +E0441494|alkyl ammonium salt|alkylammonium salt| +E0441500|Aeromonas salmonicida ss. salmonicida|Aeromonas salmonicida subsp. salmonicida| +E0441501|A. salmonicida ss. salmonicida|A. salmonicida subsp. salmonicida| +E0441503|Aeromonas salmonicida ss. achromogenes|Aeromonas salmonicida subsp. achromogenes| +E0441504|A. salmonicida ss. achromogenes|A. salmonicida subsp. achromogenes| +E0441506|Aeromonas salmonicida ss. masoucida|Aeromonas salmonicida subsp. masoucida| +E0441507|A. salmonicida ss. masoucida|A. salmonicida subsp. masoucida| +E0441509|Aeromonas salmonicida ss. smithia|Aeromonas salmonicida subsp. smithia| +E0441510|A. salmonicida ss. smithia|A. salmonicida subsp. smithia| +E0441543|Spiegler-Fendt pseudo-lymphoma|Spiegler-Fendt pseudolymphoma| +E0441543|Spiegler-Fendt pseudo lymphoma|Spiegler-Fendt pseudolymphoma| +E0441566|Banti's syndrome|Banti syndrome| +E0441585|Br. hyodysenteriae|B. hyodysenteriae| +E0441628|Microsporum cookeii|Microsporum cookei| +E0441637|vitello-intestinal|vitellointestinal| +E0441638|vitello-intestinal band|vitellointestinal band| +E0441639|vitello-intestinal structure|vitellointestinal structure| +E0441642|myoinositol pentakisphosphate|myo-inositol pentakisphosphate| +E0441650|oculoauriculovertebral spectrum|oculo-auriculo-vertebral spectrum| +E0441650|oculo-auriculovertebral spectrum|oculo-auriculo-vertebral spectrum| +E0441664|Osler Weber Rendu syndrome|Osler-Weber-Rendu syndrome| +E0441665|Osler Rendu Weber syndrome|Osler-Rendu-Weber syndrome| +E0441666|Osler Rendu Weber disease|Osler-Rendu-Weber disease| +E0441667|Rendu Osler disease|Rendu-Osler disease| +E0441670|Hunter McAlpine syndrome|Hunter-McAlpine syndrome| +E0441735|Posner Schlossman syndrome|Posner-Schlossman syndrome| +E0441738|Terrien Viel syndrome|Terrien-Viel syndrome| +E0441749|Bassen Kornzweig disease|Bassen-Kornzweig disease| +E0441754|A.s. stramineus|A. s. stramineus| +E0441756|A.s. macconnelli|A. s. macconnelli| +E0441844|jack fruit|jackfruit| +E0441885|ioxithalamic|ioxitalamic| +E0441935|fascio-cutan|fasciocutan| +E0441966|benzyl methanethiolsulphonate|benzyl methanethiolsulfonate| +E0441994|X-ray energy spectrometry|x-ray energy spectrometry| +E0441994|xray energy spectrometry|x-ray energy spectrometry| +E0441994|Xray energy spectrometry|x-ray energy spectrometry| +E0441994|x ray energy spectrometry|x-ray energy spectrometry| +E0441994|X ray energy spectrometry|x-ray energy spectrometry| +E0441995|X-ray energy spectroscopy|x-ray energy spectroscopy| +E0441995|xray energy spectroscopy|x-ray energy spectroscopy| +E0441995|Xray energy spectroscopy|x-ray energy spectroscopy| +E0441995|x ray energy spectroscopy|x-ray energy spectroscopy| +E0441995|X ray energy spectroscopy|x-ray energy spectroscopy| +E0441996|x-ray emission spectroscopy|X-ray emission spectroscopy| +E0441996|Xray emission spectroscopy|X-ray emission spectroscopy| +E0441996|xray emission spectroscopy|X-ray emission spectroscopy| +E0441996|X ray emission spectroscopy|X-ray emission spectroscopy| +E0441996|x ray emission spectroscopy|X-ray emission spectroscopy| +E0441998|xenooestrogen|xenoestrogen| +E0441998|xeno-oestrogen|xenoestrogen| +E0442003|dimethialium propyldisulphide|dimethialium propyldisulfide| +E0442074|three-line basslet|threeline basslet| +E0442074|three line basslet|threeline basslet| +E0442197|jequirty|jequirity| +E0442220|aralia saponin|aralia-saponin| +E0442238|anti-pernicious|antipernicious| +E0442281|Valsalva maneuver|Valsalva manoeuvre| +E0442283|Valsalva leak point pressure|Valsalva leak-point pressure| +E0442285|extra-dimensional|extradimensional| +E0442308|paraaortic|para-aortic| +E0442308|paraortic|para-aortic| +E0442347|Bothriechis schlegeli|Bothriechis schlegelii| +E0442348|Marchi positive body|Marchi-positive body| +E0442457|Eimeria ninakolyakimovae|Eimeria ninakohlyakimovae| +E0442472|glucocorticoid responsive unit|glucocorticoid-responsive unit| +E0442491|fluorometrical|fluorimetrical| +E0442496|hydroencephalocoele|hydroencephalocele| +E0442500|lower|lour| +E0442502|demyelinization|demyelinisation| +E0442504|human T cell leukemia virus IV|human T-cell leukemia virus IV| +E0442504|human T-cell leukaemia virus IV|human T-cell leukemia virus IV| +E0442504|human T-cell leucaemia virus IV|human T-cell leukemia virus IV| +E0442504|human T cell leukaemia virus IV|human T-cell leukemia virus IV| +E0442504|human T cell leucaemia virus IV|human T-cell leukemia virus IV| +E0442504|human T-cell leucemia virus IV|human T-cell leukemia virus IV| +E0442504|human T cell leucemia virus IV|human T-cell leukemia virus IV| +E0442506|cross-match|crossmatch| +E0442506|cross match|crossmatch| +E0442516|gamma-glutamyltranspeptidase|gammaglutamyl transpeptidase| +E0442516|gamma-glutamyl-transpeptidase|gammaglutamyl transpeptidase| +E0442516|gamma glutamyl transpeptidase|gammaglutamyl transpeptidase| +E0442516|gamma-glutamyl transpeptidase|gammaglutamyl transpeptidase| +E0442519|mastermind|master-mind| +E0442524|Creutzfeldt Jakob disease|Creutzfeldt-Jakob disease| +E0442527|haematotropic|hematotropic| +E0442531|Adams Stokes syndrome|Adams-Stokes syndrome| +E0442532|rivinian foramen|Rivinian foramen| +E0442534|nonhaematological|nonhematological| +E0442534|non-hematological|nonhematological| +E0442534|non-haematological|nonhematological| +E0442549|anti-epilepticum|antiepilepticum| +E0442603|Amarantus spinosus|Amaranthus spinosus| +E0442624|trans-mesenteric|transmesenteric| +E0442695|post-inertia|postinertia| +E0442696|post-inertia|postinertia| +E0442705|dephospho form|dephospho-form| +E0442709|anti-parietal|antiparietal| +E0442710|anti-parietal cell antibody|antiparietal cell antibody| +E0442711|anti-parietal cell autoantibody|antiparietal cell autoantibody| +E0442738|Haut Ogooue|Haut-Ogooue| +E0442771|sterno-occipito-mandibular immobiliser|sterno-occipito-mandibular immobilizer| +E0442772|sternal occipital mandibular immobilisation|sternal occipital mandibular immobilization| +E0442849|Leuc. oenos|Le. oenos| +E0442849|L. oenos|Le. oenos| +E0442878|Japanese shrew mole|Japanese shrew-mole| +E0442884|shrew-mole|shrew mole| +E0442922|chelitis exfoliativa|cheilitis exfoliativa| +E0442922|chilitis exfoliativa|cheilitis exfoliativa| +E0442923|leucoedema exfoliativa|leukoedema exfoliativa| +E0443010|E. stuartii|E. stewartii| +E0443046|anti-reticulin antibody|antireticulin antibody| +E0443115|thyrotrophin receptor antibody|thyrotropin receptor antibody| +E0443189|proximo-distally|proximodistally| +E0443190|proximo-ventral|proximoventral| +E0443191|proximo-medial|proximomedial| +E0443193|linoleoylethanolamide|linoleoyl ethanolamide| +E0443203|maleylated-bovine serum albumin|maleylated bovine serum albumin| +E0443204|maleyl acetate reductase|maleylacetate reductase| +E0443205|maleyl coenzyme A|maleyl-coenzyme A| +E0443215|bistrimethylsilylacetamide|bis-trimethylsilyl-acetamide| +E0443216|bismuth-sulphite agar|bismuth-sulfite agar| +E0443216|bismuth sulfite agar|bismuth-sulfite agar| +E0443216|bismuth sulphite agar|bismuth-sulfite agar| +E0443246|mole-cricket|mole cricket| +E0443273|aklanonic acid methyl ester|aklanonic acid methylester| +E0443274|aklanonic acid methyl ester cyclase|aklanonic acid methylester cyclase| +E0443340|Echinacea purpura|Echinacea purpurea| +E0443402|nitro blue formazan|nitroblue formazan| +E0443406|Li. bostrychophila|L. bostrychophila| +E0443408|Li. entomophila|L. entomophila| +E0443410|L. brunnea|Li. brunnea| +E0443412|L. pearmani|Li. pearmani| +E0443414|L. paeta|Li. paeta| +E0443436|American plaise|American plaice| +E0443459|coon hound|coonhound| +E0443465|A. paludis|An. paludis| +E0443466|A. gambiae|An. gambiae| +E0443488|A. nili|An. nili| +E0443496|A. moucheti|An. moucheti| +E0443503|magnesium-protoporphyrin chelatase|magnesium protoporphyrin chelatase| +E0443586|humpbacked dolphin|hump-backed dolphin| +E0443586|hump backed dolphin|hump-backed dolphin| +E0443639|port-wine birthmark|portwine birthmark| +E0443639|port wine birthmark|portwine birthmark| +E0443639|port wine birth mark|portwine birthmark| +E0443639|port-wine birth mark|portwine birthmark| +E0443639|portwine birth mark|portwine birthmark| +E0443697|Buschke-Ollendorff's syndrome|Buschke-Ollendorff syndrome| +E0443793|biotinyl cyclopentadienyl manganese tricarbonyl|biotinylcyclopentadienylmanganese tricarbonyl| +E0443794|cyclopentadienyl manganese tricarbonyl|cyclopentadienylmanganese tricarbonyl| +E0443799|tricarbonyl chromium|tricarbonylchromium| +E0443864|protein tyrosine kinase|protein-tyrosine kinase| +E0443865|photo-therapeutic keratectomy|phototherapeutic keratectomy| +E0443872|anticholesterolaemic|anticholesterolemic| +E0443873|anticholesterolaemic|anticholesterolemic| +E0443876|Bruns' apraxia|Bruns apraxia| +E0443876|Bruns's apraxia|Bruns apraxia| +E0443877|Bruns gait apraxia|Bruns' gait apraxia| +E0443877|Bruns's gait apraxia|Bruns' gait apraxia| +E0443879|pseudo-osteomalacic|pseudoosteomalacic| +E0443889|non-granulomatous|nongranulomatous| +E0443899|Agcistrodon blomhoffii brevicaudus|Agkistrodon blomhoffii brevicaudus| +E0444173|Ajaja|Ajaia| +E0444211|pustulotic arthroosteitis|pustulotic arthro-osteitis| +E0444213|arthro CT|arthro-CT| +E0444215|arthro MRI|arthro-MRI| +E0444216|hereditary progressive arthroophthalmopathy|hereditary progressive arthro-ophthalmopathy| +E0444228|bighead sea-robin|bighead searobin| +E0444228|bighead sea robin|bighead searobin| +E0444231|grey flounder|gray flounder| +E0444346|nucleus tegmenti pedunculo-pontinus|nucleus tegmenti pedunculopontinus| +E0444358|barheaded goose|bar-headed goose| +E0444377|Matas test|Matas' test| +E0444380|Flavibacterium succinicans|Flavobacterium succinicans| +E0444384|Flavibacterium frigidarium|Flavobacterium frigidarium| +E0444385|Flavibacterium columnare|Flavobacterium columnare| +E0444462|Duhamel syndrome|Duhamel's syndrome| +E0444562|convexo-concave|convexoconcave| +E0444582|red tailed hawk|red-tailed hawk| +E0444585|broad winged hawk|broad-winged hawk| +E0444663|Lactobacillus saki|Lactobacillus sakei| +E0444663|Lactobacillus sake|Lactobacillus sakei| +E0444664|erythro-myeloid|erythromyeloid| +E0444665|immuno-erythromyeloid|immunoerythromyeloid| +E0444665|immuno-erythro-myeloid|immunoerythromyeloid| +E0444816|mucocele appendicis|mucocoele appendicis| +E0444841|Pelger-Huet syndrome|Pelger Huet syndrome| +E0444842|pseudo Pelger-Huet anomaly|pseudo-Pelger-Huet anomaly| +E0444861|bovine viral diarrhoea|bovine viral diarrhea| +E0444863|sulphoiduronate|sulfoiduronate| +E0444875|grey angelfish|gray angelfish| +E0444878|primary polycythaemia|primary polycythemia| +E0444879|leucoplakic|leukoplakic| +E0444885|Miescher's chelitis|Miescher's cheilitis| +E0444885|Miescher's chilitis|Miescher's cheilitis| +E0444886|Miescher's syndrome|Miescher syndrome| +E0444887|Melkersson Rosenthal Miescher syndrome|Melkersson-Rosenthal-Miescher syndrome| +E0444888|Miescher's naevus|Miescher's nevus| +E0444944|gamma-lipotrophin|gamma-lipotropin| +E0444945|lactase phlorizin hydrolase|lactase-phlorizin hydrolase| +E0444947|lipotrophic pituitary hormone|lipotropic pituitary hormone| +E0444949|gamma-lipotrophic pituitary hormone|gamma-lipotropic pituitary hormone| +E0444958|grey coral|gray coral| +E0444967|sulphaturia|sulfaturia| +E0444968|heparan sulphaturia|heparan sulfaturia| +E0444969|dermatan sulphaturia|dermatan sulfaturia| +E0444971|cavo-tricuspid|cavotricuspid| +E0444973|cavo-tricuspid isthmus|cavotricuspid isthmus| +E0444974|cavocavostomy|cavo-cavostomy| +E0444976|cavo-varus|cavovarus| +E0444977|pes cavo-varus|pes cavovarus| +E0444978|common atrio-ventricular orifice|common atrioventricular orifice| +E0444997|Shur-Clens|Shur Clens| +E0445006|Aschheim Zondek reaction|Aschheim-Zondek reaction| +E0445006|Aschheim-Zondek-reaction|Aschheim-Zondek reaction| +E0445007|Aschheim-Zondeck test|Aschheim Zondeck test| +E0445077|status thymico-lymphaticus|status thymicolymphaticus| +E0445113|Rauwolfia vomitoria|Rauvolfia vomitoria| +E0445146|dilithium triazasulphite|dilithium triazasulfite| +E0445289|Setaria faberi|Setaria faberii| +E0445369|Touton type giant cell|Touton-type giant cell| +E0445393|Pseudophryne guntheri|Pseudophryne guentheri| +E0445467|Hemophilus segnis|Haemophilus segnis| +E0445475|Hemophilus actinomycetemcomitans|Haemophilus actinomycetemcomitans| +E0445476|oro-mandibular|oromandibular| +E0445509|Gardner Wells tongs|Gardner-Wells tongs| +E0445514|tucu-tucu|tuco-tuco| +E0445569|Tropidurus torquatos|Tropidurus torquatus| +E0445572|levo-folinate|levofolinate| +E0445582|Haber syndrome|Haber's syndrome| +E0445649|antenno-maxillary|antennomaxillary| +E0445650|antenno-maxillary complex|antennomaxillary complex| +E0445651|antenno-sensory|antennosensory| +E0445653|antennosensory centre|antennosensory center| +E0445653|antenno-sensory center|antennosensory center| +E0445653|antenno-sensory centre|antennosensory center| +E0445654|antenno-glomerular tract|antennoglomerular tract| +E0445655|antenno-glomerular|antennoglomerular| +E0445682|Pacchionian body|pacchionian body| +E0445725|Ch. globosum|C. globosum| +E0445735|Marrubium globosum subsp. globosum|Marrubium globosum ssp. globosum| +E0445755|Buddleia officinalis|Buddleja officinalis| +E0445756|Buddleia cordata|Buddleja cordata| +E0445759|Buddleia|Buddleja| +E0445800|Magnus' syndrome|Magnus syndrome| +E0445800|Magnus's syndrome|Magnus syndrome| +E0445813|von Pfaundler|Pfaundler| +E0445841|yellow pine chipmunk|yellow-pine chipmunk| +E0445969|yellow collared macaw|yellow-collared macaw| +E0446006|Arthrobacter nicotinivorans|Arthrobacter nicotinovorans| +E0446010|Enterococcus fecalis|Enterococcus faecalis| +E0446046|Enterococcus sulphureus|Enterococcus sulfureus| +E0446057|E. mundtii|Ent. mundtii| +E0446059|Ent. sulphureus|Ent. sulfureus| +E0446095|pre-glottic|preglottic| +E0446271|rostro-lateral|rostrolateral| +E0446272|rostro-dorsolateral|rostrodorsolateral| +E0446272|rostro-dorso-lateral|rostrodorsolateral| +E0446283|Grawitz tumour|Grawitz tumor| +E0446296|petroselenic|petroselinic| +E0446360|preprocalcitonin gene related peptide|prepro-calcitonin gene-related peptide| +E0446361|ppCGRP|PPCGRP| +E0446363|preproghrelin|prepro-ghrelin| +E0446364|preproorexin|prepro-orexin| +E0446365|preprothyrotropin-releasing hormone|prepro-thyrotropin releasing hormone| +E0446365|prepro-thyrotropin-releasing hormone|prepro-thyrotropin releasing hormone| +E0446366|prepro-opiocortin|pre-pro-opiocortin| +E0446366|preproopiocortin|pre-pro-opiocortin| +E0446367|preproopiomelanocortin|prepro-opiomelanocortin| +E0446368|prepro GRF|prepro-GRF| +E0446371|preproCRF|prepro-CRF| +E0446372|preprodermorphin|prepro-dermorphin| +E0446373|preproEGF|prepro-EGF| +E0446374|prepro-gastrin releasing peptide|prepro-gastrin-releasing peptide| +E0446375|preproGRP|prepro-GRP| +E0446377|preproIGF|prepro-IGF| +E0446381|prepro-ricin|preproricin| +E0446382|prepro-secapin|preprosecapin| +E0446387|preproTRH|prepro-TRH| +E0446460|frontoethmoidal|fronto-ethmoidal| +E0446461|fronto-cingulate|frontocingulate| +E0446462|fronto-striatal|frontostriatal| +E0446463|frontosubcortical|fronto-subcortical| +E0446464|frontoorbital gyrus|fronto-orbital gyrus| +E0446466|frontoorbital sulcus|fronto-orbital sulcus| +E0446468|fronto-metaphyseal dysplasia|frontometaphyseal dysplasia| +E0446469|fronto-metaphyseal|frontometaphyseal| +E0446502|antialdosterone|anti-aldosterone| +E0446521|drug utilisation review|drug utilization review| +E0446522|drug-use review|drug use review| +E0446532|melilotus-saponin|melilotus saponin| +E0446581|Myoxocephalus octodecimspinosus|Myoxocephalus octodecemspinosus| +E0446616|Cucumis myriocarpus ssp. myriocarpus|Cucumis myriocarpus subsp. myriocarpus| +E0446616|Cucumis myriocarpus s.s. myriocarpus|Cucumis myriocarpus subsp. myriocarpus| +E0446618|Cucumis myriocarpus ssp. leptodermis|Cucumis myriocarpus subsp. leptodermis| +E0446618|Cucumis myriocarpus s.s. leptodermis|Cucumis myriocarpus subsp. leptodermis| +E0446655|Leishman-Donovan unit|Leishman Donovan unit| +E0446656|laevodopa use|levodopa use| +E0446681|Musa acuminata subsp. malaccensis|Musa acuminata ssp. malaccensis| +E0446682|M. acuminata subsp. malaccensis|M. acuminata ssp. malaccensis| +E0446908|left-over|leftover| +E0446909|left-over|leftover| +E0446914|M. avium ssp. brunense|M. avium subsp. brunense| +E0446968|cyto-physiological|cytophysiological| +E0446969|cyto-nuclear|cytonuclear| +E0446987|cyto-immune|cytoimmune| +E0446987|cyto immune|cytoimmune| +E0446988|cyto-immunity|cytoimmunity| +E0446988|cyto immunity|cytoimmunity| +E0446989|Cyto c|cyto c| +E0446998|Bordet Gengou medium|Bordet-Gengou medium| +E0446999|Bordet Gengou agar|Bordet-Gengou agar| +E0447000|lipidaemia retinalis|lipidemia retinalis| +E0447001|nucleus olfactoretinalis|nucleus olfacto-retinalis| +E0447002|alpha thrombin|alpha-thrombin| +E0447003|gamma thrombin|gamma-thrombin| +E0447004|diisopropylphosphorylthrombin|diisopropylphosphoryl-thrombin| +E0447004|diisopropylphosphoryl thrombin|diisopropylphosphoryl-thrombin| +E0447006|nitrothrombin|nitro-thrombin| +E0447007|pre-thrombin|prethrombin| +E0447015|acne keloidalis|acne cheloidalis| +E0447060|A. platyrynchos|A. platyrhynchos| +E0447124|pseudo-psychopathic|pseudopsychopathic| +E0447197|Treponema pectinivorum|Treponema pectinovorum| +E0447208|Turner Kieser syndrome|Turner-Kieser syndrome| +E0447209|Fong syndrome|Fong's syndrome| +E0447218|Jaccoud-arthritis|Jaccoud arthritis| +E0447223|dimethyl acrylamide|dimethylacrylamide| +E0447225|dimethyl amiloride|dimethylamiloride| +E0447248|del Rio Hortega|del Rio-Hortega| +E0447248|Del Rio-Hortega|del Rio-Hortega| +E0447248|Del Rio Hortega|del Rio-Hortega| +E0447252|Waldenstrom's hypergammaglobulinaemic purpura|Waldenstrom's hypergammaglobulinemic purpura| +E0447253|Minkowsky-Chauffard disease|Minkowski-Chauffard disease| +E0447254|Minkowski-Chauffard haemolytic anaemia|Minkowski-Chauffard hemolytic anemia| +E0447255|Chauffard Still's disease|Chauffard-Still's disease| +E0447266|Salix planifolia subsp. tyrrelli|Salix planifolia ssp. tyrrelli| +E0447267|S. planifolia subsp. tyrrelli|S. planifolia ssp. tyrrelli| +E0447346|Acinetobacter calcoaceticus ssp. anitratus|Acinetobacter calcoaceticus subsp. anitratus| +E0447347|A. calcoaceticus ssp. anitratus|A. calcoaceticus subsp. anitratus| +E0447349|Acinetobacter calcoaceticus subspecies lwoffi|Acinetobacter calcoaceticus subspecies lwoffii| +E0447350|Acinetobacter calcoaceticus ssp. lwoffii|Acinetobacter calcoaceticus subsp.lwoffii| +E0447350|Acinetobacter calcoaceticus subsp. lwoffi|Acinetobacter calcoaceticus subsp.lwoffii| +E0447350|Acinetobacter calcoaceticus ssp. lwoffi|Acinetobacter calcoaceticus subsp.lwoffii| +E0447351|Acinetobacter calcoaceticus varietas lwoffi|Acinetobacter calcoaceticus varietas lwoffii| +E0447352|Acinetobacter calcoaceticus var. lwoffi|Acinetobacter calcoaceticus var. lwoffii| +E0447353|A. calcoaceticus var. lwoffi|A. calcoaceticus var. lwoffii| +E0447354|A. calcoaceticus ssp. lwoffii|A. calcoaceticus subsp. lwoffii| +E0447354|A. calcoaceticus subsp. lwoffi|A. calcoaceticus subsp. lwoffii| +E0447354|A. calcoaceticus ssp. lwoffi|A. calcoaceticus subsp. lwoffii| +E0447355|A. lwoffii|A. lwoffi| +E0447356|taurolithocholic acid sulphate|taurolithocholic acid sulfate| +E0447396|Androctonus australis hector|Androctonus australis Hector| +E0447475|trimethoprim-sulfamethoxazole|trimethoprim-sulphamethoxazole| +E0447475|trimethoprim sulphamethoxazole|trimethoprim-sulphamethoxazole| +E0447475|trimethoprim sulfamethoxazole|trimethoprim-sulphamethoxazole| +E0447487|zinc trisulphonatophthalocyanine|zinc trisulfonatophthalocyanine| +E0447496|turaco|touraco| +E0447496|turacou|touraco| +E0447497|white-cheeked turaco|white-cheeked touraco| +E0447497|white-cheeked turacou|white-cheeked touraco| +E0447501|western grey squirrel|western gray squirrel| +E0447502|eastern grey squirrel|eastern gray squirrel| +E0447503|grey squirrel|gray squirrel| +E0447542|normoovulatory|normo-ovulatory| +E0447578|farnesyl-disphosphate farnesyltransferase|farnesyl disphosphate farnesyltransferase| +E0447685|glomerulo-capsular|glomerulocapsular| +E0447687|sutura parieto-occipitalis|sutura parietooccipitalis| +E0447705|L. icterohemorrhagiae|L. icterohaemorrhagiae| +E0447780|vpr|Vpr| +E0447781|Voges Proskauer reaction|Voges-Proskauer reaction| +E0447854|jejunojejunal|jejuno-jejunal| +E0447855|diffuse jejuno-ileitis|diffuse jejunoileitis| +E0447856|jejuno-ileum|jejunoileum| +E0447857|jejuno-esophageal|jejunoesophageal| +E0447857|jejunooesophageal|jejunoesophageal| +E0447857|jejuno-oesophageal|jejunoesophageal| +E0447858|jejuno-colic|jejunocolic| +E0447859|jejuno-colonic|jejunocolonic| +E0447860|jejuno-mesenteric|jejunomesenteric| +E0447861|jejuno-cecal|jejunocecal| +E0447861|jejunocaecal|jejunocecal| +E0447861|jejuno-caecal|jejunocecal| +E0447861|jejunocoecal|jejunocecal| +E0447861|jejuno-coecal|jejunocecal| +E0447862|jejunoileostomy bypass shunt|jejuno-ileostomy bypass shunt| +E0447885|Microbacterium arabinogalactanilyticum|Microbacterium arabinogalactanolyticum| +E0447908|black-tip reef shark|blacktip reef shark| +E0447909|black-tip shark|blacktip shark| +E0447933|black-nose shark|blacknose shark| +E0447935|big-nose shark|bignose shark| +E0447954|fine-tooth shark|finetooth shark| +E0447965|small-tail shark|smalltail shark| +E0447968|narrow-tooth shark|narrowtooth shark| +E0448015|Pimelea factor|pimelea factor| +E0448028|Ferula assafoetida|Ferula assa-foetida| +E0448041|allylalcohol|allyl alcohol| +E0448106|Merulius lachrymans|Merulius lachrimans| +E0448112|benzylchloride|benzyl chloride| +E0448144|Sorocea bomplandii|Sorocea bonplandii| +E0448292|Kaingang|Caingang| +E0448299|methylether|methyl ether| +E0448332|Salm|Salm.| +E0448336|S. blockley|Salm. blockley| +E0448337|S. enteritidis|Salm. enteritidis| +E0448339|S. isangi|Salm. isangi| +E0448340|S. reading|Salm. reading| +E0448342|S. senftenberg|Salm. senftenberg| +E0448345|S. virchow|Salm. virchow| +E0448347|S. give|Salm. give| +E0448349|S. ealing|Salm. ealing| +E0448350|S. choleraesuis|Salm. choleraesuis| +E0448351|S. dublin|Salm. dublin| +E0448352|SALM-NET|Salm-Net| +E0448563|Hibiscus rosa sinensis|Hibiscus rosasinensis| +E0448563|Hibiscus rosa-sinensis|Hibiscus rosasinensis| +E0448564|H. rosa sinensis|H. rosasinensis| +E0448564|H. rosa-sinensis|H. rosasinensis| +E0448566|H. sabdariffa|H. sabdarifa| +E0448576|alum hematoxylin|alum haematoxylin| +E0448852|Deschampsia caespitosa|Deschampsia cespitosa| +E0448870|Nonomuraea|Nonomuria| +E0448871|Nonomuraea rubra|Nonomuria rubra| +E0448872|Nonomuraea africana|Nonomuria africana| +E0448873|Nonomuraea angiospora|Nonomuria angiospora| +E0448874|Nonomuraea fastidiosa|Nonomuria fastidiosa| +E0448875|Nonomuraea ferruginea|Nonomuria ferruginea| +E0448876|Nonomuraea helvata|Nonomuria helvata| +E0448877|Nonomuraea polychroma|Nonomuria polychroma| +E0448878|Nonomuraea pusilla|Nonomuria pusilla| +E0448879|Nonomuraea recticatena|Nonomuria recticatena| +E0448880|Nonomuraea roseola|Nonomuria roseola| +E0448881|Nonomuraea roseoviolacea|Nonomuria roseoviolacea| +E0448882|Nonomuraea salmonea|Nonomuria salmonea| +E0448883|Nonomuraea spiralis|Nonomuria spiralis| +E0448884|Nonomuraea turkmeniaca|Nonomuria turkmeniaca| +E0448954|Saghalien|Sakhalin| +E0449177|Rauwolfia canescens|Rauvolfia canescens| +E0449191|Santolina rosmarinifolia ssp. canescens|Santolina rosmarinifolia subsp. canescens| +E0449193|Santolina rosmarinifolia ssp. rosmarinifolia|Santolina rosmarinifolia subsp. rosmarinifolia| +E0449231|C. hortensis|Cx. hortensis| +E0449232|Satureia|Satureja| +E0449233|Satureia hortensis|Satureja hortensis| +E0449235|Satureia wiedemanniana|Satureja wiedemanniana| +E0449236|Satureia parvifolia|Satureja parvifolia| +E0449237|Satureia montana|Satureja montana| +E0449238|Satureia kitaibelii|Satureja kitaibelii| +E0449239|Satureia douglasii|Satureja douglasii| +E0449240|Satureia obovata|Satureja obovata| +E0449241|Satureia thymbra|Satureja thymbra| +E0449242|Satureia brownei|Satureja brownei| +E0449243|Satureia gilliesii|Satureja gilliesii| +E0449281|Nymphea lotus|Nymphaea lotus| +E0449282|Nymphea|Nymphaea| +E0449283|Lotus tetra-gonolobus|Lotus tetragonolobus| +E0449286|Nymphea alba|Nymphaea alba| +E0449287|Nymphea odorata|Nymphaea odorata| +E0449332|Nymphea rudgeana|Nymphaea rudgeana| +E0449334|Nymphea caerula|Nymphaea caerula| +E0449367|phlegmatia cerula dolens|phlegmatia caerula dolens| +E0449436|Minorca|Menorca| +E0449442|Xosa|Xhosa| +E0449446|phosphorylchloride|phosphoryl chloride| +E0449452|water-strider|waterstrider| +E0449452|water strider|waterstrider| +E0449512|Pseudognaphalium viravira|Pseudognaphalium vira vira| +E0449513|P. viravira|P. vira vira| +E0449648|grey partridge|gray partridge| +E0449741|Tenia asiatica|Taenia asiatica| +E0449910|naked mole rat|naked mole-rat| +E0449911|mole rat|mole-rat| +E0450055|rectoappendiceal|recto-appendiceal| +E0450109|Paenibacillus larvae ssp. larvae|Paenibacillus larvae subsp. larvae| +E0450249|Pasteurella multocida ssp. septica|Pasteurella multocida subsp. septica| +E0450250|P. multocida ssp. septica|P. multocida subsp. septica| +E0450252|Pasteurella multocida ssp. multocida|Pasteurella multocida subsp. multocida| +E0450253|P. multocida ssp. multocida|P. multocida subsp. multocida| +E0450270|nonylphenol-ethoxylate|nonylphenol ethoxylate| +E0450270|nonyl phenol ethoxylate|nonylphenol ethoxylate| +E0450285|Calyptocephalella gayi|Caliptocephalella gayi| +E0450286|Caliptocephalella|Calyptocephalella| +E0450287|Caliptocephalella caudiverbera|Calyptocephalella caudiverbera| +E0450390|poly(tetramethylene glycol)|polytetramethylene glycol| +E0450425|post-laminectomy|postlaminectomy| +E0450503|Sudeck's syndrome|Sudeck syndrome| +E0450554|Finney's strictureplasty|Finney strictureplasty| +E0450660|post-mastoidectomy|postmastoidectomy| +E0450705|short-fin|shortfin| +E0450778|tenia tecti|taenia tecti| +E0450787|osteonaevus|osteonevus| +E0450787|osteo-nevus|osteonevus| +E0450787|osteo-naevus|osteonevus| +E0450789|para-septal|paraseptal| +E0450838|tubo-endometrial|tuboendometrial| +E0450840|nucleus praepositus|nucleus prepositus| +E0450850|A. metallicus|Ae. metallicus| +E0450892|Frei's syndrome|Frei syndrome| +E0450905|white tailed spider|white-tailed spider| +E0450944|sidero-achrestic|sideroachrestic| +E0450978|Broders' grade|Broders grade| +E0451046|alkyl sulphosuccinate|alkyl sulfosuccinate| +E0451048|dialkyl sodium sulphosuccinate|dialkyl sodium sulfosuccinate| +E0451051|hydroxyethylsulphonic|hydroxyethylsulfonic| +E0451083|Methanococcus voltaei|Methanococcus voltae| +E0451087|M. voltaei|M. voltae| +E0451159|upper oesophageal sphincter|upper esophageal sphincter| +E0451176|Oryza sativa subsp. japonica|Oryza sativa ssp. japonica| +E0451179|O. sativa subsp. japonica|O. sativa ssp. japonica| +E0451185|Magnolia sieboldii subsp. japonica|Magnolia sieboldii ssp. japonica| +E0451186|M. sieboldii subsp. japonica|M. sieboldii ssp. japonica| +E0451237|canities segmentata sideropenica|canities segmentata sideropaenica| +E0451265|irido-dental dysplasia|iridodental dysplasia| +E0451266|irido-dental|iridodental| +E0451267|irido-corneal mesodermal dysgenesis|iridocorneal mesodermal dysgenesis| +E0451269|iridotrabecular dysgenesis|irido-trabecular dysgenesis| +E0451273|iridocorneotrabecular dysgenesis|irido-corneo-trabecular dysgenesis| +E0451274|iridocorneotrabecular|irido-corneo-trabecular| +E0451303|octanesulfonic|octanesulphonic| +E0451316|California flying fish|California flyingfish| +E0451316|California flying-fish|California flyingfish| +E0451319|sharpchin flying-fish|sharpchin flyingfish| +E0451319|sharpchin flying fish|sharpchin flyingfish| +E0451322|four-wing flyingfish|fourwing flyingfish| +E0451322|fourwing flying-fish|fourwing flyingfish| +E0451322|four-wing flying-fish|fourwing flyingfish| +E0451322|fourwing flying fish|fourwing flyingfish| +E0451322|four-wing flying fish|fourwing flyingfish| +E0451324|blackwing flying-fish|blackwing flyingfish| +E0451324|blackwing flying fish|blackwing flyingfish| +E0451327|smallwing flying-fish|smallwing flyingfish| +E0451327|smallwing flying fish|smallwing flyingfish| +E0451327|small wing flyingfish|smallwing flyingfish| +E0451327|small wing flying-fish|smallwing flyingfish| +E0451327|small wing flying fish|smallwing flyingfish| +E0451330|sailfin flying-fish|sailfin flyingfish| +E0451330|sailfin flying fish|sailfin flyingfish| +E0451333|bluntnose flying-fish|bluntnose flyingfish| +E0451333|bluntnose flying fish|bluntnose flyingfish| +E0451333|blunt-nose flyingfish|bluntnose flyingfish| +E0451333|blunt-nose flying-fish|bluntnose flyingfish| +E0451333|blunt-nose flying fish|bluntnose flyingfish| +E0451334|oceanic two-wing flying-fish|oceanic two-wing flyingfish| +E0451334|oceanic two-wing flying fish|oceanic two-wing flyingfish| +E0451335|tropical two-wing flying-fish|tropical two-wing flyingfish| +E0451335|tropical two-wing flying fish|tropical two-wing flyingfish| +E0451383|tractus mamilothalamicus|tractus mamilo-thalamicus| +E0451394|tractus mamillothalamicus|tractus mamillo-thalamicus| +E0451395|tractus spino-thalamicus|tractus spinothalamicus| +E0451396|fasciculus mamillo-thalamicus|fasciculus mamillothalamicus| +E0451400|iso-chorismic|isochorismic| +E0451406|megadolichobasilar|megadolicho-basilar| +E0451406|megadolicho basilar|megadolicho-basilar| +E0451407|megadolicho-basilar anomaly|megadolichobasilar anomaly| +E0451407|megadolicho basilar anomaly|megadolichobasilar anomaly| +E0451408|megadolicho-basilar artery|megadolichobasilar artery| +E0451408|megadolicho basilar artery|megadolichobasilar artery| +E0451409|megadolicho artery|megadolicho-artery| +E0451410|megadolicho-vascular|megadolicho vascular| +E0451411|megadolicho-carotid|megadolichocarotid| +E0451412|megadolicho-carotid|megadolichocarotid| +E0451414|megadolicho-sigmoid|megadolichosigmoid| +E0451418|A. bancrofti|An. bancrofti| +E0451425|Amarantus cruentus|Amaranthus cruentus| +E0451427|Amarantus hypochondriacus|Amaranthus hypochondriacus| +E0451429|Amarantus tricolor|Amaranthus tricolor| +E0451546|Rumpel Leede sign|Rumpel-Leede sign| +E0451551|iron weed|ironweed| +E0451614|didodecyl-dimethyl ammonium bromide|didodecyl-dimethylammonium bromide| +E0451615|didodecyl disulphide|didodecyl disulfide| +E0451616|magnesium didodecyl sulphate|magnesium didodecyl sulfate| +E0451769|nucleus praetectalis|nucleus pretectalis| +E0451770|nucleus area praetectalis|nucleus area pretectalis| +E0451771|regio praetectalis|regio pretectalis| +E0451772|nucleus praetectalis principalis|nucleus pretectalis principalis| +E0451773|nucleus olivaris praetectalis|nucleus olivaris pretectalis| +E0451774|nucleus pretectalis anterior|nucleus praetectalis anterior| +E0451775|nucleus praetectalis pars ventralis|nucleus pretectalis pars ventralis| +E0451776|nucleus pretectalis olivaris|nucleus praetectalis olivaris| +E0451777|nucleus pretectalis profundus|nucleus praetectalis profundus| +E0451783|Haller cell|Haller's cell| +E0451788|sea trout|seatrout| +E0451790|spotted sea trout|spotted seatrout| +E0451831|tri-atrial|triatrial| +E0451833|chondro-myxoid|chondromyxoid| +E0451873|glycerol-dioleate|glycerol dioleate| +E0451967|Bacillus thuringiensis ssp. medellin|Bacillus thuringiensis subsp. medellin| +E0451969|B. thuringiensis ssp. israelensis|B. thuringiensis subsp. israelensis| +E0451975|Leptospira icterohaemorrhagica|Leptospira icterohemorrhagica| +E0451986|Ps. confinnis|P. confinnis| +E0451991|P. albipes|Ps. albipes| +E0451996|transuretero-ureteral|transureteroureteral| +E0452006|Perthes Jungling disease|Perthes-Jungling disease| +E0452043|Dip. reconditum|D. reconditum| +E0452046|D. dracunculoides|Dip. dracunculoides| +E0452069|Endameba histolytica|Endamoeba histolytica| +E0452144|Sneddon syndrome|Sneddon's syndrome| +E0452145|Sneddon Wilkinson syndrome|Sneddon-Wilkinson syndrome| +E0452166|diabetic bearded woman syndrome|diabetic-bearded woman syndrome| +E0452181|Deiters cell|Deiters' cell| +E0452181|Deiter's cell|Deiters' cell| +E0452187|acute lympho-nodular pharyngitis|acute lymphonodular pharyngitis| +E0452188|enteroviral lympho-nodular pharyngitis|enteroviral lymphonodular pharyngitis| +E0452189|lympho-nodular hyperplasia|lymphonodular hyperplasia| +E0452190|lympho-nodular|lymphonodular| +E0452192|lympho-nodular toxoplasmosis|lymphonodular toxoplasmosis| +E0452196|sodium polyanethol sulfonate|sodium polyanetholsulfonate| +E0452196|sodium polyanetholsulphonate|sodium polyanetholsulfonate| +E0452196|sodium polyanethol sulphonate|sodium polyanetholsulfonate| +E0452197|polyanethol sulphonic acid|polyanethol sulfonic acid| +E0452213|Vibrio faecalis|Vibrio fecalis| +E0452214|Trichomitus faecalis|Trichomitus fecalis| +E0452219|Tritrichomonas faecalis|Tritrichomonas fecalis| +E0452220|Tritrichomonas fetus|Tritrichomonas foetus| +E0452222|T. fetus|T. foetus| +E0452224|E. fecalis|E. faecalis| +E0452267|Vogt Koyanagi Harada disease|Vogt-Koyanagi-Harada disease| +E0452269|Batten Spielmeyer Vogt disease|Batten-Spielmeyer-Vogt disease| +E0452307|Martorell's syndrome|Martorell syndrome| +E0452310|Raeder Harbitz syndrome|Raeder-Harbitz syndrome| +E0452327|pseudo-lymphocytic|pseudolymphocytic| +E0452349|Pterocephalus perennis ssp. perennis|Pterocephalus perennis subsp. perennis| +E0452361|tractus spino-cerebellaris|tractus spinocerebellaris| +E0452364|Wartenberg syndrome|Wartenberg's syndrome| +E0452459|Cayler syndrome|Cayler's syndrome| +E0452460|cardio-facial|cardiofacial| +E0452481|cycloxilic|cicloxilic| +E0452484|radio-telemetering|radiotelemetering| +E0452485|radio-telemetered|radiotelemetered| +E0452518|Petasites japonicus ssp. giganteus|Petasites japonicus subsp. giganteus| +E0452541|C. venezuelensis|Cq. venezuelensis| +E0452542|C. chrysonotum|Cq. chrysonotum| +E0452561|templeted|templated| +E0452586|H. volcanii|Hf. volcanii| +E0452588|H. saccharovorum|Hf. saccharovorum| +E0452596|H. mediterranei|Hf. mediterranei| +E0452599|De Vaal syndrome|De Vaal's syndrome| +E0452625|Idotea balthica|Idotea baltica| +E0452626|I. balthica|I. baltica| +E0452646|Rhodopseudomonas sphaeroides|Rhodopseudomonas spheroides| +E0452661|Agrostis canina ssp. canina|Agrostis canina subsp. canina| +E0452662|A. canina ssp. canina|A. canina subsp. canina| +E0452664|Agrostis canina ssp. montana|Agrostis canina subsp. montana| +E0452665|A. canina ssp. montana|A. canina subsp. montana| +E0452716|cerebello-medullary|cerebellomedullary| +E0452717|cerebello-medullary fissure|cerebellomedullary fissure| +E0452718|cerebello-medullary malformation syndrome|cerebellomedullary malformation syndrome| +E0452733|valproylglycinamide|valproyl glycinamide| +E0452736|valproyl adenylic acid|valproyl-adenylic acid| +E0452768|Flavibacterium johnsoniae|Flavobacterium johnsoniae| +E0452821|Pterodon polygalaeflorus|Pterodon polygaliflorus| +E0452971|Pseudomonas doudorofii|Pseudomonas doudoroffii| +E0452999|dipropyleneglycol|dipropylene glycol| +E0453000|dipropyleneglycol diacrylate|dipropylene glycol diacrylate| +E0453001|dipropyleneglycol salicylate|dipropylene glycol salicylate| +E0453002|dipropyleneglycol methyl ether|dipropylene glycol methyl ether| +E0453005|Ornithodoros hermsii|Ornithodoros hermsi| +E0453067|ileo-jejunal transposition|ileojejunal transposition| +E0453068|ileo-jejunal|ileojejunal| +E0453233|tetraphenylporphyrin|tetraphenyl porphyrin| +E0453256|picrylsulphonic|picrylsulfonic| +E0453292|foetopathia diabetica|fetopathia diabetica| +E0453306|acetonyl coenzyme A|acetonyl-coenzyme A| +E0453308|acetonyl CoA|acetonyl-CoA| +E0453335|chloroacetyl-coenzyme A|chloroacetyl coenzyme A| +E0453336|chloroacetyl-CoA|chloroacetyl CoA| +E0453349|coenzyme A disulphide|coenzyme A disulfide| +E0453350|CoA disulphide|CoA disulfide| +E0453355|acid-thiol ligase|acid thiol ligase| +E0453356|coenzyme A persulphide|coenzyme A persulfide| +E0453357|CoA persulphide|CoA persulfide| +E0453358|coenzyme A thiosulphonate|coenzyme A thiosulfonate| +E0453359|CoA thiosulphonate|CoA thiosulfonate| +E0453364|acyl-coenzyme A transferase|acyl coenzyme A transferase| +E0453365|acyl-CoA-transferase|acyl CoA transferase| +E0453374|desulpho-coenzyme A|desulfo-coenzyme A| +E0453375|desulpho-CoA|desulfo-CoA| +E0453376|dethiaacetyl coenzyme A|dethiaacetyl-coenzyme A| +E0453377|dethiaacetyl CoA|dethiaacetyl-CoA| +E0453378|docosahexaenoyl coenzyme A|docosahexaenoyl-coenzyme A| +E0453379|docosahexaenoyl CoA|docosahexaenoyl-CoA| +E0453399|rhabdo-myosarcomatous|rhabdomyosarcomatous| +E0453471|Van Gehuchten|van Gehuchten| +E0453472|Van Gehuchten cell|van Gehuchten cell| +E0453508|Streptomyces violaceus-niger|Streptomyces violaceusniger| +E0453511|Streptomyces fradii|Streptomyces fradiae| +E0453526|gubernaculum hunteri|gubernaculum Hunteri| +E0453572|weever fish|weeverfish| +E0453573|lesser weever fish|lesser weeverfish| +E0453574|greater weever fish|greater weeverfish| +E0453621|Macrozamia riedlei|Macrozamia reidlei| +E0453649|Rhinolophus ferrumequinum|Rhinolopus ferrumequinum| +E0453680|Sapindus mukurossi|Sapindus mukorossi| +E0453682|Malassez' epithelial rest|Malassez epithelial rest| +E0453705|carboxymethyl pachyman|carboxymethylpachyman| +E0453706|carboxymethyl selenocysteine|carboxymethylselenocysteine| +E0453711|carboxymethylamylose ether|carboxymethyl amylose ether| +E0453712|hydroxamic acid carboxymethyldextran|hydroxamic acid carboxymethyl dextran| +E0453713|carboxymethyldextran hydroxamate|carboxymethyl dextran hydroxamate| +E0453724|encephalotrigeminal|encephalo-trigeminal| +E0453729|encephalo-cutaneous angiomatosis|encephalocutaneous angiomatosis| +E0453730|encephalo-facial haemangiomatosis|encephalofacial haemangiomatosis| +E0453730|encephalofacial hemangiomatosis|encephalofacial haemangiomatosis| +E0453730|encephalo-facial hemangiomatosis|encephalofacial haemangiomatosis| +E0453732|Parkes Weber syndrome|Parkes-Weber syndrome| +E0453734|Sturge Weber Krabbe syndrome|Sturge-Weber-Krabbe syndrome| +E0453735|naevoid amentia|nevoid amentia| +E0453736|cutaneo-cerebral angioma|cutaneocerebral angioma| +E0453738|cutaneo-cerebral|cutaneocerebral| +E0453742|encephalo-cranio-facial angiomatosis|encephalocraniofacial angiomatosis| +E0453751|encephalo-facial neuroangiomatosis|encephalofacial neuroangiomatosis| +E0453753|encephalo-trigeminal syndrome|encephalotrigeminal syndrome| +E0453756|Walker Warburg syndrome|Walker-Warburg syndrome| +E0453759|cerebroocular dysgenesis|cerebro-ocular dysgenesis| +E0453776|Nocardia transvaalensis|Nocardia transvalensis| +E0453813|Streptomyces griseolisporeus|Streptomyces griseolosporeus| +E0453828|black-crowned night heron|black-crowned night-heron| +E0453828|black crowned night heron|black-crowned night-heron| +E0453829|night-heron|night heron| +E0453830|yellow-crowned night heron|yellow-crowned night-heron| +E0453830|yellow crowned night heron|yellow-crowned night-heron| +E0456071|A. sinensis|An. sinensis| +E0456074|Ch. ovina|C. ovina| +E0456117|ELB|elb| +E0456138|ecgonine methylester|ecgonine methyl ester| +E0456161|butterfly fish|butterflyfish| +E0456183|event related desynchronization|event-related desynchronization| +E0456183|event-related desynchronisation|event-related desynchronization| +E0456183|event related desynchronisation|event-related desynchronization| +E0456187|event related optical signal|event-related optical signal| +E0456194|boron trifluoride-diethyl etherate|boron trifluoride diethyl etherate| +E0456207|haemangioma extensum|hemangioma extensum| +E0456212|tryptophandehydrobutyrine diketopiperazine|tryptophan-dehydrobutyrine diketopiperazine| +E0456236|ethenyl-benzene|ethenylbenzene| +E0456242|butadiene monoepoxide|butadienemonoepoxide| +E0456277|aurechinulin|aurechinuline| +E0456283|vinyl glucoside|vinyl-glucoside| +E0456302|post-factum|post factum| +E0456302|postfactum|post factum| +E0456303|post-factum|post factum| +E0456303|postfactum|post factum| +E0456305|qing-fei-tang|qingfeitang| +E0456305|qing fei tang|qingfeitang| +E0456324|Ap. fimbriatum|A. fimbriatum| +E0456338|fin-back whale|finback whale| +E0456342|fish-tail|fishtail| +E0456343|fish-tail deformity|fishtail deformity| +E0456344|fish-tail palm|fishtail palm| +E0456351|fetter bush|fetterbush| +E0456377|frangipanni|frangipani| +E0456390|fusileer|fusilier| +E0456429|geostatistical|geo-statistical| +E0456430|geo-statistics|geostatistics| +E0456431|geo-climatic|geoclimatic| +E0456439|decaprenoic ethyl ester|decaprenoic ethylester| +E0456441|gest|GEST| +E0456444|Ging|ging| +E0456445|Ging|ging| +E0456446|genomic in situ hybridisation|genomic in situ hybridization| +E0456460|goitred gazelle|goitered gazelle| +E0456461|goitred|goitered| +E0456490|greylag goose|graylag goose| +E0456585|hange-shashin-to|hange-shashinto| +E0456586|hange-kobuku-to|hange kobuku-to| +E0456602|hay field|hayfield| +E0456645|Hup|HUP| +E0456673|in-dwell|indwell| +E0456682|Miniopterus schreibersi|Miniopterus schreibersii| +E0456693|Ionone|ionone| +E0456766|KAN|kan| +E0456766|Kan|kan| +E0456777|Sch. laevigatus|S. laevigatus| +E0456798|Kismet|kismet| +E0456807|kappa opioid receptor|kappa-opioid receptor| +E0456808|KOP-receptor|KOP receptor| +E0456811|fali-kor|falicor| +E0456825|Coix lacryma-jobi|Coix lachryma-jobi| +E0456828|Coix lacryma|Coix lachryma| +E0456832|lacto-series|lactoseries| +E0456835|lactyl CoA dehydratase|lactyl-CoA dehydratase| +E0456837|lactoyl CoA dehydratase|lactoyl-CoA dehydratase| +E0456840|lactoyl coenzyme A|lactoyl-coenzyme A| +E0456841|lactoyl CoA|lactoyl-CoA| +E0456842|lactyl coenzyme A|lactyl-coenzyme A| +E0456843|lactyl CoA|lactyl-CoA| +E0456895|broadleaf|broad-leaf| +E0456895|broad leaf|broad-leaf| +E0456917|lychee|litchi| +E0456918|lychee nut|litchi nut| +E0456921|light induced thermal hysteresis|light-induced thermal hysteresis| +E0456976|Onychomys leukogaster|Onychomys leucogaster| +E0457043|MANT|mant| +E0457044|mant-ATP|MANT-ATP| +E0457045|mant-ADP|MANT-ADP| +E0457046|MANT-GDP|mant-GDP| +E0457050|Aegle marmelose|Aegle marmelos| +E0457051|A. marmelose|A. marmelos| +E0457083|mazard|mazzard| +E0457134|MOG|MoG| +E0457135|molelike|mole-like| +E0457136|Schinus aroeira|Schinus areira| +E0457150|monoamino oxidase-B|monoamino oxidase B| +E0457151|MAO B|MAO-B| +E0457151|MAOB|MAO-B| +E0457152|monoamine oxidase-B|monoamine oxidase B| +E0457153|monoamino oxidase-A|monoamino oxidase A| +E0457154|monoamine oxidase-A|monoamine oxidase A| +E0457155|MAO A|MAO-A| +E0457155|MAOA|MAO-A| +E0457170|monocle haematoma|monocle hematoma| +E0457170|monocle-hematoma|monocle hematoma| +E0457170|monocle-haematoma|monocle hematoma| +E0457189|mothlike|moth-like| +E0457190|mullen|mullein| +E0457191|multi-mammate|multimammate| +E0457195|grey mouse lemur|gray mouse lemur| +E0457205|brahminy mynah|brahminy myna| +E0457259|territrem-B|territrem B| +E0457261|napyrodiomycin|napyradiomycin| +E0457270|hydroxy dihydrofusarubin|hydroxydihydrofusarubin| +E0457272|sergeolide|sergiolide| +E0457310|Narcissus pseudo-narcissus|Narcissus pseudonarcissus| +E0457321|Rorippa nasturtium-aquaticum|Rorippa nasturtium aquaticum| +E0457334|NIG|Nig| +E0457336|nitrylchloride|nitryl chloride| +E0457349|nth|Nth| +E0457350|nonylic acid vanillyl amide|nonylic acid vanillylamide| +E0457354|nonsteroidal antiinflammatory agent|nonsteroidal anti-inflammatory agent| +E0457354|non-steroidal anti-inflammatory agent|nonsteroidal anti-inflammatory agent| +E0457354|non-steroidal antiinflammatory agent|nonsteroidal anti-inflammatory agent| +E0457355|non-ventilatory|nonventilatory| +E0457356|nonpublic|non-public| +E0457357|non-autoimmune haemolytic anaemia|non-autoimmune hemolytic anemia| +E0457357|nonautoimmune hemolytic anemia|non-autoimmune hemolytic anemia| +E0457357|nonautoimmune haemolytic anaemia|non-autoimmune hemolytic anemia| +E0457358|non-suppressibility|nonsuppressibility| +E0457359|nonchromaffin|non-chromaffin| +E0457361|noncardiogenic pulmonary edema|non-cardiogenic pulmonary edema| +E0457361|non-cardiogenic pulmonary oedema|non-cardiogenic pulmonary edema| +E0457361|noncardiogenic pulmonary oedema|non-cardiogenic pulmonary edema| +E0457362|non-carboxylated|noncarboxylated| +E0457363|nonoral|non-oral| +E0457364|non-peptide|nonpeptide| +E0457365|non-fimbrial|nonfimbrial| +E0457366|non-heme iron|nonheme iron| +E0457366|nonhaeme iron|nonheme iron| +E0457366|non-haeme iron|nonheme iron| +E0457367|Non Ovlon|Non-Ovlon| +E0457367|Nonovlon|Non-Ovlon| +E0457368|nonerythroid|non-erythroid| +E0457369|non-plasmin|nonplasmin| +E0457370|non-synovial|nonsynovial| +E0457371|nonrheumatological|non-rheumatological| +E0457372|non-cranial|noncranial| +E0457374|non-stereospecific|nonstereospecific| +E0457376|nonheating|non-heating| +E0457377|non-conductivity|nonconductivity| +E0457378|non-endoscopic|nonendoscopic| +E0457379|non-temporal|nontemporal| +E0457380|non-radiologic|nonradiologic| +E0457381|nonpitting|non-pitting| +E0457382|non-axial|nonaxial| +E0457383|nonmitral|non-mitral| +E0457384|non-tricuspid|nontricuspid| +E0457385|nonmineralized|non-mineralized| +E0457385|non-mineralised|non-mineralized| +E0457385|nonmineralised|non-mineralized| +E0457387|non-virginal|nonvirginal| +E0457388|non-incestuous|nonincestuous| +E0457389|non-erotic|nonerotic| +E0457390|nonmetallothionein|non-metallothionein| +E0457391|non-constrictive|nonconstrictive| +E0457392|nonneurologic|non-neurologic| +E0457393|nonglucose|non-glucose| +E0457394|non-persistent|nonpersistent| +E0457395|nonneuronopathic|non-neuronopathic| +E0457396|nonnephrotic|non-nephrotic| +E0457397|nonexpanded|non-expanded| +E0457398|non-goitre|non-goiter| +E0457398|nongoiter|non-goiter| +E0457398|nongoitre|non-goiter| +E0457399|non-dependence|nondependence| +E0457399|non dependence|nondependence| +E0457400|non-acceptance|nonacceptance| +E0457401|non-radiopaque|nonradiopaque| +E0457401|non radiopaque|nonradiopaque| +E0457402|non-selectivity|nonselectivity| +E0457403|non-drowsy|nondrowsy| +E0457405|noncholera|non-cholera| +E0457406|non-primate|nonprimate| +E0457407|non-primate|nonprimate| +E0457408|noncalcifying|non-calcifying| +E0457409|non-ossified|nonossified| +E0457410|non-opacity|nonopacity| +E0457411|non-involuted|noninvoluted| +E0457412|non-lipoid|nonlipoid| +E0457413|non-reflux|nonreflux| +E0457414|nonneuropathic|non-neuropathic| +E0457415|non-bulbar|nonbulbar| +E0457416|non-intestinal|nonintestinal| +E0457417|non-believer|nonbeliever| +E0457418|non-starch|nonstarch| +E0457419|non-confluent|nonconfluent| +E0457420|non-confluence|nonconfluence| +E0457421|non-facing|nonfacing| +E0457422|non-cardioselective|noncardioselective| +E0457423|non-iodinated|noniodinated| +E0457424|non-glucuronidated|nonglucuronidated| +E0457425|non-thrombolysis|nonthrombolysis| +E0457426|non-photosensitive|nonphotosensitive| +E0457427|non-situational|nonsituational| +E0457428|non-impacted|nonimpacted| +E0457429|non-microsurgical|nonmicrosurgical| +E0457430|nonconsummation|non-consummation| +E0457431|non-manipulative|nonmanipulative| +E0457432|non-symmetrical|nonsymmetrical| +E0457433|non-solvent|nonsolvent| +E0457434|non-anticoagulant|nonanticoagulant| +E0457434|non-anti-coagulant|nonanticoagulant| +E0457435|non-radioactivity|nonradioactivity| +E0457436|non-collision|noncollision| +E0457437|non-racing|nonracing| +E0457438|nonbarbiturate|non-barbiturate| +E0457439|non-opiate|nonopiate| +E0457440|non-opiate|nonopiate| +E0457441|non-optical|nonoptical| +E0457442|non-mixed|nonmixed| +E0457443|non-psychogenic|nonpsychogenic| +E0457463|O. europea|O. europaea| +E0457465|Olea europaea ssp. europaea|Olea europaea subsp. europaea| +E0457466|O. europaea ssp. europaea|O. europaea subsp. europaea| +E0457469|Olea capensis ssp. capensis|Olea capensis subsp. capensis| +E0457470|O. capensis ssp. capensis|O. capensis subsp. capensis| +E0457494|non-colicky|noncolicky| +E0457495|non-attendance|nonattendance| +E0457496|non-awareness|nonawareness| +E0457497|non-aware|nonaware| +E0457498|non-arousal|nonarousal| +E0457499|nonmotility|non-motility| +E0457500|non-ambulatory|nonambulatory| +E0457501|nonerythrodermic|non-erythrodermic| +E0457502|non-recurrence|nonrecurrence| +E0457503|non-loculated|nonloculated| +E0457504|non-circumferential|noncircumferential| +E0457504|non circumferential|noncircumferential| +E0457505|non-valved|nonvalved| +E0457506|non-tidal|nontidal| +E0457507|non-patent|nonpatent| +E0457508|non-patency|nonpatency| +E0457509|non-toxigenicity|nontoxigenicity| +E0457510|non-volumetric|nonvolumetric| +E0457515|unconjugated oestriol|unconjugated estriol| +E0457590|non-branching|nonbranching| +E0457591|nonnodal|non-nodal| +E0457592|nonnodular|non-nodular| +E0457593|non-lactose|nonlactose| +E0457595|non-sporing|nonsporing| +E0457596|non-avid|nonavid| +E0457597|non-fluency|nonfluency| +E0457598|non-contrastive|noncontrastive| +E0457599|non-formulary|nonformulary| +E0457600|non-painful|nonpainful| +E0457601|nonsterility|non-sterility| +E0457602|non-absorbability|nonabsorbability| +E0457603|non-stick|nonstick| +E0457604|non-return|nonreturn| +E0457605|non-returning|nonreturning| +E0457606|non-hydrophilic|nonhydrophilic| +E0457607|non-environmental|nonenvironmental| +E0457608|non-custom|noncustom| +E0457609|non-constrained|nonconstrained| +E0457610|non-differential|nondifferential| +E0457611|non-propagating|nonpropagating| +E0457612|non-collagen|noncollagen| +E0457613|non-latex|nonlatex| +E0457614|non-programmable|nonprogrammable| +E0457615|non-corrosive|noncorrosive| +E0457616|non-volatility|nonvolatility| +E0457617|non-impregnated|nonimpregnated| +E0457618|non-elasticity|nonelasticity| +E0457619|non-judicial|nonjudicial| +E0457620|non-tender|nontender| +E0457621|nonfatigable|non-fatigable| +E0457624|non-ribosomal|nonribosomal| +E0457625|non-addictive|nonaddictive| +E0457626|non-migrainous|nonmigrainous| +E0457627|non-serrated|nonserrated| +E0457628|non-penetrative|nonpenetrative| +E0457629|non-effectiveness|noneffectiveness| +E0457630|non-menstrual|nonmenstrual| +E0457631|non-palpability|nonpalpability| +E0457632|non-resonant|nonresonant| +E0457633|non-resonance|nonresonance| +E0457634|non-consent|nonconsent| +E0457635|non-vocal|nonvocal| +E0457636|non-systemic|nonsystemic| +E0457637|non-aspirin|nonaspirin| +E0457638|non-vented|nonvented| +E0457639|non-hinged|nonhinged| +E0457640|nonavailability|non-availability| +E0457641|nonavailable|non-available| +E0457642|non-clinic|nonclinic| +E0457643|non-cervical|noncervical| +E0457644|non-blanching|nonblanching| +E0457646|non-coherent|noncoherent| +E0457647|non-coherence|noncoherence| +E0457649|non-phenylketonuric|nonphenylketonuric| +E0457650|non-lubricated|nonlubricated| +E0457652|non-judgmental|nonjudgmental| +E0457653|non-intravenous|nonintravenous| +E0457654|non-arthroscopic|nonarthroscopic| +E0457655|non-productivity|nonproductivity| +E0457656|non-insulin dependent|non-insulin-dependent| +E0457656|noninsulin-dependent|non-insulin-dependent| +E0457656|noninsulin dependent|non-insulin-dependent| +E0457656|non insulin dependent|non-insulin-dependent| +E0457656|non insulin-dependent|non-insulin-dependent| +E0457657|nonsite-specific|non-site-specific| +E0457657|non-site specific|non-site-specific| +E0457658|non-menopausal|nonmenopausal| +E0457659|noninducer|non-inducer| +E0457660|non-thrombotic|nonthrombotic| +E0457661|non-stoichiometric|nonstoichiometric| +E0457662|non-parenchymatous|nonparenchymatous| +E0457663|non-guided|nonguided| +E0457664|non-setting|nonsetting| +E0457665|non-biodegradable|nonbiodegradable| +E0457665|non biodegradable|nonbiodegradable| +E0457666|non-biodegradability|nonbiodegradability| +E0457667|non-laser|nonlaser| +E0457668|non-electronic|nonelectronic| +E0457669|non-voluntary|nonvoluntary| +E0457678|secretary bird|secretarybird| +E0457694|Pseudomonas syringae pv tabaci|Pseudomonas syringae pv. tabaci| +E0457695|P. syringae pv tabaci|P. syringae pv. tabaci| +E0457696|P. s. pv tabaci|P. s. pv. tabaci| +E0457747|Sargassum hysterix|Sargassum hystrix| +E0457782|Streptococcus equi ssp. zooepidemicus|Streptococcus equi subsp. zooepidemicus| +E0457783|S. equi ssp. zooepidemicus|S. equi subsp. zooepidemicus| +E0457791|Pachycrepoideus vindemmiae|Pachycrepoideus vindemiae| +E0457830|RARA|RARa| +E0457834|Physaloptera preputialis|Physaloptera praeputialis| +E0457854|Verres' needle|Verres needle| +E0457854|Verres's needle|Verres needle| +E0457891|Petasites japonicus ssp. gigantea|Petasites japonicus subsp.gigantea| +E0457900|Achilles' tendon|Achilles tendon| +E0457901|Achilles' tendonitis|Achilles tendonitis| +E0457923|Von Sallmann|von Sallmann| +E0457924|Witkop-Von Sallman syndrome|Witkop-von Sallman syndrome| +E0457966|oesophagogastric fundoplasty|esophagogastric fundoplasty| +E0457971|naevus comedonicus syndrome|nevus comedonicus syndrome| +E0457972|acne nevus|acne naevus| +E0457973|acneiform naevus|acneiform nevus| +E0457974|comedo nevus|comedo naevus| +E0457975|follicular naevus|follicular nevus| +E0458053|Staphylococcus capitis ssp. ureolyticus|Staphylococcus capitis subsp. ureolyticus| +E0458054|S. capitis ssp. ureolyticus|S. capitis subsp. ureolyticus| +E0458092|achlorhydric anaemia|achlorhydric anemia| +E0458096|Faber's stage|Faber stage| +E0458102|paroxysmal choreo-athetosis|paroxysmal choreoathetosis| +E0458103|choreo-acanthocytosis|choreoacanthocytosis| +E0458104|amyotrophic choreo-acanthocytosis|amyotrophic choreoacanthocytosis| +E0458105|choreo-athetotic|choreoathetotic| +E0458106|choreo-athetosic|choreoathetosic| +E0458114|Pelecanus erythrorhynchos|Pelecanus erythrorhynchus| +E0458119|red billed hornbill|red-billed hornbill| +E0458154|Buddleia parviflora|Buddleja parviflora| +E0458155|Buddleia americana|Buddleja americana| +E0458156|Buddleia asiatica|Buddleja asiatica| +E0458157|Buddleia auriculata|Buddleja auriculata| +E0458158|Buddleia marrubifolium|Buddleja marrubifolium| +E0458159|Buddleia alternifolia|Buddleja alternifolia| +E0458160|Buddleia bullata|Buddleja bullata| +E0458161|Buddleia crispa|Buddleja crispa| +E0458162|Buddleia fallowiana|Buddleja fallowiana| +E0458163|Buddleia hemsleyana|Buddleja hemsleyana| +E0458164|Buddleia lindleyana|Buddleja lindleyana| +E0458165|Buddleia loricata|Buddleja loricata| +E0458166|Buddleia nivea|Buddleja nivea| +E0458167|Buddleia racemosa|Buddleja racemosa| +E0458168|Buddleia scordiodes|Buddleja scordiodes| +E0458169|Buddleia utahensis|Buddleja utahensis| +E0458170|Buddleia venenifera|Buddleja venenifera| +E0458171|Buddleia yunanensis|Buddleja yunanensis| +E0458172|Buddleia colvilei|Buddleja colvilei| +E0458173|Buddleia macrostachya|Buddleja macrostachya| +E0458174|Buddleia salviifolia|Buddleja salviifolia| +E0458277|angel shark|angelshark| +E0458280|dihydroxyaluminum glycinate|dihydroxy aluminum glycinate| +E0458292|Armeria filicaulis ssp. nevadensis|Armeria filicaulis subsp.nevadensis| +E0458295|A. filicaulis ssp. nevadensis|A. filicaulis subsp. nevadensis| +E0458300|Armeria villosa ssp. bernisii|Armeria villosa subsp. bernisii| +E0458301|A. villosa ssp. bernisii|A. villosa subsp. bernisii| +E0458456|cholesteryl ester hydrolase|cholesterylester hydrolase| +E0458457|hormone sensitive lipase|hormone-sensitive lipase| +E0458465|dehydroepiandrosterone sulphate sulphatase|dehydroepiandrosterone sulfate sulfatase| +E0458466|DHEA sulphatase|DHEA sulfatase| +E0458467|estrone sulphate sulphatase|estrone sulfate sulfatase| +E0458468|estrone sulphate sulphohydrolase|estrone sulfate sulfohydrolase| +E0458469|steroid sulphohydrolase|steroid sulfohydrolase| +E0458471|steryl-ester|steryl ester| +E0458472|sterylglucoside|steryl glucoside| +E0458571|curculigine|curculigin| +E0458572|curculigine B|curculigin B| +E0458573|curculigine C|curculigin C| +E0458612|mottled grey cutworm|mottled gray cutworm| +E0458649|iotalamic|iothalamic| +E0458650|meglumine iotalamate|meglumine iothalamate| +E0458651|iotalamic acid meglumine|iothalamic acid meglumine| +E0458652|iotalamic acid methylglucamine|iothalamic acid methylglucamine| +E0458653|methylglucamine iotalamate|methylglucamine iothalamate| +E0458654|sodium iotalamate|sodium iothalamate| +E0458655|iotalamate sodium|iothalamate sodium| +E0458656|nucleus praeopticus|nucleus preopticus| +E0458658|area preoptica lateralis|area praeoptica lateralis| +E0458660|nucleus preopticus lateralis|nucleus praeopticus lateralis| +E0458663|nucleus preopticus medialis|nucleus praeopticus medialis| +E0458667|nucleus periventricularis preopticus|nucleus periventricularis praeopticus| +E0458668|nucleus praeopticus periventricularis|nucleus preopticus periventricularis| +E0458669|nucleus praeopticus pars parvocellularis|nucleus preopticus pars parvocellularis| +E0458670|nucleus praeopticus pars magnocellularis|nucleus preopticus pars magnocellularis| +E0458671|recessus praeopticus|recessus preopticus| +E0458779|Sweeley Klionsky disease|Sweeley-Klionsky disease| +E0458782|Ruiter Pompen syndrome|Ruiter-Pompen syndrome| +E0458832|chisel toothed kangaroo rat|chisel-toothed kangaroo rat| +E0458946|Amarantus palmieri|Amaranthus palmieri| +E0458947|Amarantus edulis|Amaranthus edulis| +E0458948|Amarantus lividus|Amaranthus lividus| +E0458978|glucuronosyldiacylglycerol|glucuronosyl diacylglycerol| +E0458979|glucuronosyl-disulphoglucosamine glucuronidase|glucuronosyl-disulfoglucosamine glucuronidase| +E0459002|Chinese bamboo-partridge|Chinese bamboo partridge| +E0459016|Hydrogeniphaga flava|Hydrogenophaga flava| +E0459017|Hydrogeniphaga|Hydrogenophaga| +E0459018|Hydrogeniphaga pseudoflava|Hydrogenophaga pseudoflava| +E0459019|Hydrogeniphaga intermedia|Hydrogenophaga intermedia| +E0459020|Hydrogeniphaga palleronii|Hydrogenophaga palleronii| +E0459339|aurothiosulphate|aurothiosulfate| +E0459346|Flavibacterium mizutaii|Flavobacterium mizutaii| +E0459351|vasomotor acroparaesthesia|vasomotor acroparesthesia| +E0459499|inter-sphincteric|intersphincteric| +E0459502|inter-sphincteric fistula|intersphincteric fistula| +E0459531|septo-fimbrial|septofimbrial| +E0459536|cherry crowned mangabey|cherry-crowned mangabey| +E0459567|Helleborus multifidus ssp. serbicus|Helleborus multifidus subsp. serbicus| +E0459573|Sceloporus jarrovii|Sceloporus jarrovi| +E0459581|stripe-headed brush finch|stripe-headed brush-finch| +E0459583|anti-tension line|antitension line| +E0459585|Achilles' tendon lengthening|Achilles tendon lengthening| +E0459592|Alcian green|alcian green| +E0459593|Alcian yellow|alcian yellow| +E0459609|oxyprothepin decanoate|oxyprothepine decanoate| +E0459611|sulindac sulphide|sulindac sulfide| +E0459631|levomethiomeprazin|levomethiomeprazine| +E0459633|phenylsulphonyl ketenethioacetal|phenylsulfonyl ketenethioacetal| +E0459669|methyl propenyl sulphide|methyl propenyl sulfide| +E0459670|allyl methyl sulphide|allyl methyl sulfide| +E0459694|Himantura gerrardi|Himantura gerrardii| +E0459710|Cockayne Touraine disease|Cockayne-Touraine disease| +E0459716|Hallopeau Siemens disease|Hallopeau-Siemens disease| +E0459725|H-JEB|HJEB| +E0459734|traumatic oral hemorrhagic bulla|traumatic oral haemorrhagic bulla| +E0459748|generalised atrophic benign epidermolysis bullosa|generalized atrophic benign epidermolysis bullosa| +E0459750|localised dystrophic epidermolysis bullosa|localized dystrophic epidermolysis bullosa| +E0459751|localised recessive dystrophic epidermolysis bullosa|localized recessive dystrophic epidermolysis bullosa| +E0459752|generalised dystrophic epidermolysis bullosa|generalized dystrophic epidermolysis bullosa| +E0459753|generalised recessive dystrophic epidermolysis bullosa mitis|generalized recessive dystrophic epidermolysis bullosa mitis| +E0459754|localised junctional epidermolysis bullosa|localized junctional epidermolysis bullosa| +E0459755|generalised junctional epidermolysis bullosa|generalized junctional epidermolysis bullosa| +E0459774|matched field processing|matched-field processing| +E0459776|mouse foot pad|mouse footpad| +E0460071|intercosto-diaphragmatic|intercostodiaphragmatic| +E0460114|Aeromonas punctata ssp. punctata|Aeromonas punctata subsp. punctata| +E0460151|Streptomyces catenulae ssp. griseospora|Streptomyces catenulae subsp. griseospora| +E0460152|van der Woude|Van der Woude| +E0460153|von Gierke disease|Von Gierke disease| +E0460161|Calabaria reinhardti|Calabaria reinhardtii| +E0460170|parafluorophenylalanine|para-fluorophenylalanine| +E0460257|Leifsonia xyli ssp. xyli|Leifsonia xyli subsp. xyli| +E0460395|Lepiota bruneoincarnata|Lepiota brunneoincarnata| +E0460397|Peking robin|Pekin robin| +E0460421|Curtibacterium luteum|Curtobacterium luteum| +E0460422|Curtibacterium|Curtobacterium| +E0460468|yellow waterlily|yellow water lily| +E0460537|Formosan grey mullet|Formosan gray mullet| +E0460554|grass finch|grassfinch| +E0460561|mono-methylarsonic|monomethylarsonic| +E0460565|Von Frey|von Frey| +E0460566|Von Frey filament|von Frey filament| +E0460678|isobutyl methylketone|isobutyl methyl ketone| +E0460678|isobutylmethylketone|isobutyl methyl ketone| +E0460680|vanillyl acetone|vanillylacetone| +E0460684|acetone-cyanohydrin lyase|acetone cyanohydrin lyase| +E0460687|palmitoyldihydroxy-acetone-phosphate reductase|palmitoyldihydroxyacetone-phosphate reductase| +E0460695|acetone phenyl hydrazone|acetone phenylhydrazone| +E0460706|endoepidemic haemorrhagic viraemia|endoepidemic hemorrhagic viremia| +E0460707|Junin haemorrhagic fever|Junin hemorrhagic fever| +E0460719|gray bunting|grey bunting| +E0460836|glyciram|glycyram| +E0460909|sulphoacetaldehyde sulpho-lyase|sulfoacetaldehyde sulfo-lyase| +E0460910|sulphoconjugate|sulfoconjugate| +E0460910|sulfo-conjugate|sulfoconjugate| +E0460910|sulpho-conjugate|sulfoconjugate| +E0460943|Nonomuriaa dietzii|Nonomuraea dietzii| +E0460943|Nonomuraea dietziae|Nonomuraea dietzii| +E0460943|Nonomuria dietziae|Nonomuraea dietzii| +E0460944|Nonomuria longicatena|Nonomuraea longicatena| +E0460945|Nonomuria asiatica|Nonomuraea asiatica| +E0460946|Nonomuria latina|Nonomuraea latina| +E0460947|Nonomuria canadensis|Nonomuraea canadensis| +E0460948|Nonomuria terranata|Nonomuraea terranata| +E0460949|Nonomuria aurea|Nonomuraea aurea| +E0460950|Nonomuria rubescens|Nonomuraea rubescens| +E0460951|Bacillus okeni|Bacillus okenii| +E0460958|Pseudo-monas|Pseudomonas| +E0460986|Streptomyces hygroscopicus ssp. hygroscopicus|Streptomyces hygroscopicus subsp. hygroscopicus| +E0460987|S. hygroscopicus ssp. hygroscopicus|S. hygroscopicus subsp. hygroscopicus| +E0461000|naevus linearis|nevus linearis| +E0461012|naevus pigmentosus systematicus|nevus pigmentosus systematicus| +E0461016|epidermal naevus syndrome|epidermal nevus syndrome| +E0461017|Schimmelpenning Feuerstein Mims syndrome|Schimmelpenning-Feuerstein-Mims syndrome| +E0461020|linear verrucous epidermal naevus|linear verrucous epidermal nevus| +E0461022|Jadassohn naevus phakomatosis|Jadassohn nevus phakomatosis| +E0461022|Jadassohn nevus phacomatosis|Jadassohn nevus phakomatosis| +E0461022|Jadassohn naevus phacomatosis|Jadassohn nevus phakomatosis| +E0461023|linear naevus sebaceous syndrome|linear nevus sebaceous syndrome| +E0461024|linear sebaceous naevus syndrome|linear sebaceous nevus syndrome| +E0461025|nevus sebaceus linearis|naevus sebaceus linearis| +E0461026|organoid naevus syndrome|organoid nevus syndrome| +E0461027|sebaceous naevus syndrome|sebaceous nevus syndrome| +E0461039|narrow leaf mountain trumpet|narrow leaf mountaintrumpet| +E0461108|Van der Heyden|van der Heyden| +E0461134|Klippel Trenaunay disease|Klippel-Trenaunay disease| +E0461135|hemangiectatic hypertrophy|haemangiectatic hypertrophy| +E0461136|hemangiectatic|haemangiectatic| +E0461139|haemangiectasia hypertrophica|hemangiectasia hypertrophica| +E0461140|nevus vasculosus osteohypertrophicus|naevus vasculosus osteohypertrophicus| +E0461141|naevus osteohypertrophicus|nevus osteohypertrophicus| +E0461165|Staphylococcus hyicus ssp. hyicus|Staphylococcus hyicus subsp. hyicus| +E0461354|wild goose plum|wild-goose plum| +E0461454|Prototheca zopfi|Prototheca zopfii| +E0461690|lymphedematous hyperkeratosis|lymphoedematous hyperkeratosis| +E0461691|lymphedematous|lymphoedematous| +E0461692|lymphedematous papillomatosis|lymphoedematous papillomatosis| +E0461698|Staphylococcus warnerii|Staphylococcus warneri| +E0461700|Streptococcus faecalis ssp. malodoratus|Streptococcus faecalis subsp. malodoratus| +E0461702|nevus oligaemicus|naevus oligaemicus| +E0461709|etamiphylline camphorsulphonate|etamiphylline camphorsulfonate| +E0461813|Lupinus cosentinii|Lupinus cosentini| +E0461814|L. cosentinii|L. cosentini| +E0461935|naevus pigmentosus pilosus|nevus pigmentosus pilosus| +E0462052|Lupinus sulphureus|Lupinus sulfureus| +E0462091|Narcissus angustifolius ssp. transcarpathicus|Narcissus angustifolius subsp. transcarpathicus| +E0462092|N. pseudo-narcissus|N. pseudonarcissus| +E0462143|Panellus stypticus|Panellus stipticus| +E0462396|Macoma balthica|Macoma baltica| +E0462446|pterygoarthromyodysplasia congenita|pterygo-arthromyodysplasia congenita| +E0462447|pterygo-arthromyodysplasia|pterygoarthromyodysplasia| +E0462448|neuroarthromyodysplasia|neuro-arthromyodysplasia| +E0462449|myodysplasia fetalis deformans|myodysplasia foetalis deformans| +E0462450|Otto's syndrome|Otto syndrome| +E0462460|fibroosteoclasia|fibro-osteoclasia| +E0462504|Ekman's syndrome|Ekman syndrome| +E0462513|foetal osteoporosis|fetal osteoporosis| +E0462514|foetal osteopsathyrosis|fetal osteopsathyrosis| +E0462517|Vrolik syndrome|Vrolik's syndrome| +E0462677|Tenia polyacantha|Taenia polyacantha| +E0462730|Anigozanthos viridis ssp. terraspectans|Anigozanthos viridis subsp. terraspectans| +E0462757|Lagostomus|Lagostimus| +E0462789|Draco blanfordi|Draco blanfordii| +E0462872|adenosine phosphosulphate|adenosine phosphosulfate| +E0462882|adenylyl sulphate|adenylyl sulfate| +E0462882|adenylylsulfate|adenylyl sulfate| +E0462882|adenylylsulphate|adenylyl sulfate| +E0462883|phospho adenylsulfate|phosphoadenylsulfate| +E0462883|phospho-adenylsulfate|phosphoadenylsulfate| +E0462883|phosphoadenylsulphate|phosphoadenylsulfate| +E0462883|phospho adenylsulphate|phosphoadenylsulfate| +E0462883|phospho-adenylsulphate|phosphoadenylsulfate| +E0462886|adenosinephosphate deaminase|adenosine-phosphate deaminase| +E0462887|adenylylsulphate kinase|adenylylsulfate kinase| +E0462889|adenylylsulphate reductase|adenylylsulfate reductase| +E0462891|adenylyl phosphosulphate reductase|adenylyl phosphosulfate reductase| +E0462892|bile salt sulfotransferase|bile-salt sulfotransferase| +E0462892|bile-salt sulphotransferase|bile-salt sulfotransferase| +E0462892|bile salt sulphotransferase|bile-salt sulfotransferase| +E0462893|bile acid sulphotransferase|bile acid sulfotransferase| +E0462894|PAPS sulphotransferase|PAPS sulfotransferase| +E0462895|phosphoadenylylsulphate sulphotransferase|phosphoadenylylsulfate sulfotransferase| +E0462896|PAPS sulphohydrolase|PAPS sulfohydrolase| +E0462897|adenylylsulphate sulphotransferase|adenylylsulfate sulfotransferase| +E0462898|APS sulphotransferase|APS sulfotransferase| +E0462900|phosphoadenosine phosphosulphate synthetase|phosphoadenosine phosphosulfate synthetase| +E0462903|desulphoglucosinolate sulphotransferase|desulfoglucosinolate sulfotransferase| +E0462904|PAPS-desulphoglucosinolate sulphotransferase|PAPS-desulfoglucosinolate sulfotransferase| +E0462905|PAPS-DSG sulphotransferase|PAPS-DSG sulfotransferase| +E0462906|beta-methylene adenosine phosphosulphate|beta-methylene adenosine phosphosulfate| +E0462938|Timarcha monserratensis|Timarcha montserratensis| +E0463095|grey-backed sportive lemur|gray-backed sportive lemur| +E0463105|H. edwardsi|H. edwardsii| +E0463114|sodium indigotin disulphonate|sodium indigotin disulfonate| +E0463114|sodium indigotindisulfonate|sodium indigotin disulfonate| +E0463114|sodium indigotindisulphonate|sodium indigotin disulfonate| +E0463115|indigodisulphonate|indigodisulfonate| +E0463115|indigo-disulfonate|indigodisulfonate| +E0463115|indigo-disulphonate|indigodisulfonate| +E0463115|indigo disulfonate|indigodisulfonate| +E0463115|indigo disulphonate|indigodisulfonate| +E0463116|sodium indigo-disulfonate|sodium indigodisulfonate| +E0463116|sodium indigodisulphonate|sodium indigodisulfonate| +E0463116|sodium indigo-disulphonate|sodium indigodisulfonate| +E0463116|sodium indigo disulfonate|sodium indigodisulfonate| +E0463116|sodium indigo disulphonate|sodium indigodisulfonate| +E0463123|Erdheim Chester syndrome|Erdheim-Chester syndrome| +E0463124|Erdheim Gsell cystic medial necrosis|Erdheim-Gsell cystic medial necrosis| +E0463125|Erdheim Gsell cystic medionecrosis|Erdheim-Gsell cystic medionecrosis| +E0463126|Erdheim Gsell media necrosis|Erdheim-Gsell media necrosis| +E0463127|Erdheim Gsell medionecrosis|Erdheim-Gsell medionecrosis| +E0463128|Gsell Erdheim medionecrosis|Gsell-Erdheim medionecrosis| +E0463129|Gsell Erdheim medial necrosis|Gsell-Erdheim medial necrosis| +E0463130|Gsell Erdheim cystic medionecrosis|Gsell-Erdheim cystic medionecrosis| +E0463131|Gsell Erdheim cystic medial necrosis|Gsell-Erdheim cystic medial necrosis| +E0463132|Gsell Erdheim syndrome|Gsell-Erdheim syndrome| +E0463212|pony fish|ponyfish| +E0463242|Mycobacterium chelonae ssp. chelonae|Mycobacterium chelonae subsp. chelonae| +E0463259|Mycobacterium chelonae ssp. abscessus|Mycobacterium chelonae subsp. abscessus| +E0463261|Mycobacterium farcinigenes|Mycobacterium farcinogenes| +E0463263|Mycobacterium farcinogenes ssp. farcinogenes|Mycobacterium farcinogenes subsp. farcinogenes| +E0463265|Mycobacterium farcinogenes ssp. tchadense|Mycobacterium farcinogenes subsp. tchadense| +E0463268|Mycobacterium farcinogenes ssp. senegalense|Mycobacterium farcinogenes subsp. senegalense| +E0463287|Mycobacterium moriokense|Mycobacterium moriokaense| +E0463289|Mycobacterium fortuitum ssp. acetamidolyticum|Mycobacterium fortuitum subsp. acetamidolyticum| +E0463291|Mycobacterium fortuitum ssp. acetamidolytica|Mycobacterium fortuitum subsp. acetamidolytica| +E0463307|Mycobacterium fortuitum ssp. fortuitum|Mycobacterium fortuitum subsp. fortuitum| +E0463312|Mycobacterium flavum ssp. michiganense|Mycobacterium flavum subsp. michiganense| +E0463404|Mycoplasma agalactiae ssp. bovis|Mycoplasma agalactiae subsp. bovis| +E0463431|Mycoplasma corogypsi|Mycoplasma coragypsi| +E0463482|Spirochaeta aurantia ssp. aurantia|Spirochaeta aurantia subsp. aurantia| +E0463484|Spirochaeta aurantia ssp. stricta|Spirochaeta aurantia subsp. stricta| +E0463487|Spirochaeta paraluiscuniculi|Spirochaeta paraluis-cuniculi| +E0463493|Spirochaete dentium|Spirochaeta dentium| +E0463525|Actinomyces pseudonecrophorus|Actinomyces pseudo-necro-phorus| +E0463527|Actinomyces violaceus ssp. brasiliensis|Actinomyces violaceus subsp. brasiliensis| +E0463669|Actinomyces viridodiastaticus|Actinomyces virido-diastaticus| +E0463681|Actinomyces gibsoni|Actinomyces gibsonii| +E0463722|Bartonella vinsonii ssp. berkhoffii|Bartonella vinsonii subsp. berkhoffii| +E0463724|Bartonella vinsonii ssp. vinsonii|Bartonella vinsonii subsp. vinsonii| +E0463736|Entameba muris|Entamoeba muris| +E0463737|Entameba|Entamoeba| +E0463738|Entameba moshkowskii|Entamoeba moshkowskii| +E0463738|Entamoeba moshkovskii|Entamoeba moshkowskii| +E0463738|Entameba moshkovskii|Entamoeba moshkowskii| +E0463739|Entameba gallinarum|Entamoeba gallinarum| +E0463740|Entameba lagopodis|Entamoeba lagopodis| +E0463741|Entameba anatis|Entamoeba anatis| +E0463742|Entameba ovis|Entamoeba ovis| +E0463743|Entameba debliecki|Entamoeba debliecki| +E0463744|Entameba phallusae|Entamoeba phallusae| +E0463745|Entameba aulastomi|Entamoeba aulastomi| +E0463746|Entameba apis|Entamoeba apis| +E0463747|Entameba ranarum|Entamoeba ranarum| +E0463748|Entameba bovis|Entamoeba bovis| +E0463749|Entameba terrapinea|Entamoeba terrapinea| +E0463750|Entameba canibuccalis|Entamoeba canibuccalis| +E0463751|Entameba equibuccalis|Entamoeba equibuccalis| +E0463752|Entameba suis|Entamoeba suis| +E0463753|Entameba wenyoni|Entamoeba wenyoni| +E0463754|Entameba gedoelsti|Entamoeba gedoelsti| +E0463755|Entameba dispar|Entamoeba dispar| +E0463756|Entameba insolita|Entamoeba insolita| +E0463757|Entameba terrapinae|Entamoeba terrapinae| +E0463822|Eastern deer tick|eastern deer tick| +E0463824|blacklegged tick|black-legged tick| +E0463824|black legged tick|black-legged tick| +E0463831|California black legged tick|California black-legged tick| +E0463831|California blacklegged tick|California black-legged tick| +E0463832|western blacklegged tick|western black-legged tick| +E0463832|western black legged tick|western black-legged tick| +E0463873|polyoma virus muris 1|polyomavirus muris 1| +E0463874|polyoma virus muris 2|polyomavirus muris 2| +E0463949|Candida lactis-condensi|Candida lactiscondensi| +E0463950|C. lactis-condensi|C. lactiscondensi| +E0464091|Candida multis-gemmis|Candida multisgemmis| +E0464236|Datura inoxia|Datura innoxia| +E0464244|septicaemia candida|septicemia candida| +E0464277|Albinaria coerulea|Albinaria caerulea| +E0464422|yellow-back duiker|yellow-backed duiker| +E0464432|Aders' duiker|Aders's duiker| +E0464451|Peters' duiker|Peters's duiker| +E0464455|gray duiker|grey duiker| +E0464461|paeony|peony| +E0464462|Majorcan paeony|Majorcan peony| +E0464463|Chinese paeony|Chinese peony| +E0464471|tree paeony|tree peony| +E0464546|Alexandrium margalefeii|Alexandrium margalefi| +E0464556|HMG coA reductase|HMG CoA reductase| +E0464558|HMG coA synthase|HMG CoA synthase| +E0464558|HMG-CoA synthase|HMG CoA synthase| +E0464558|HMG-coA synthase|HMG CoA synthase| +E0464560|HMG CoA lyase|HMG-CoA lyase| +E0464560|HMG-coA lyase|HMG-CoA lyase| +E0464560|HMG coA lyase|HMG-CoA lyase| +E0464588|Eubacterium yurii ssp. yurii|Eubacterium yurii subsp. yurii| +E0464589|Eubacterium yurii ssp. margaretiae|Eubacterium yurii subsp. margaretiae| +E0464591|Eubacterium oxidoreducans|Eubacterium oxidoreducens| +E0464596|Eubacterium yurii ssp. schtitka|Eubacterium yurii subsp. schtitka| +E0464834|Vibrio tubiashi|Vibrio tubiashii| +E0464839|Vibrio alginolyticus ssp. iophagus|Vibrio alginolyticus subsp. iophagus| +E0464893|Schizo-saccharomyces japonicus varietas japonicus|Schizosaccharomyces japonicus varietas japonicus| +E0464894|Schizo-saccharomyces japonicus var. japonicus|Schizosaccharomyces japonicus var. japonicus| +E0464896|Schizo-saccharomyces japonicus|Schizosaccharomyces japonicus| +E0464898|Schizo-saccharomyces malidevorans|Schizosaccharomyces malidevorans| +E0464899|Schizo-saccharomyces japonicus varietas versatilis|Schizosaccharomyces japonicus varietas versatilis| +E0464900|Schizo-saccharomyces japonicus var. versatilis|Schizosaccharomyces japonicus var. versatilis| +E0464902|Schizo-saccharomyces octosporus|Schizosaccharomyces octosporus| +E0464929|Chloranthus oldhami|Chloranthus oldhamii| +E0464961|Lactobacillus casei ssp. casei|Lactobacillus casei subsp. casei| +E0464965|Lactobacillus delbrueckii ssp. lactis|Lactobacillus delbrueckii subsp. lactis| +E0464967|Lactobacillus leichmanni|Lactobacillus leichmannii| +E0464969|Lactobacillus delbrueckii ssp. bulgaricus|Lactobacillus delbrueckii subsp. bulgaricus| +E0464972|Lactobacillus salivarius ssp. salivarius|Lactobacillus salivarius subsp. salivarius| +E0464974|Lactobacillus salivarius ssp. salicinius|Lactobacillus salivarius subsp. salicinius| +E0464977|Lactobacillus casei ssp. rhamnosus|Lactobacillus casei subsp. rhamnosus| +E0464981|Lactobacillus coryniformis ssp. coryniformis|Lactobacillus coryniformis subsp. coryniformis| +E0464983|Lactobacillus coryniformis ssp. torquens|Lactobacillus coryniformis subsp. torquens| +E0464989|Lactobacillus viridescens ssp. minor|Lactobacillus viridescens subsp. minor| +E0465002|Lactobacillus casei ssp. pseudoplantarum|Lactobacillus casei subsp. pseudoplantarum| +E0465004|Lactobacillus casei ssp. tolerans|Lactobacillus casei subsp. tolerans| +E0465010|Lactobacillus yamanashiensis ssp. mali|Lactobacillus yamanashiensis subsp. mali| +E0465012|Lactobacillus yamanashiensis ssp. yamanashiensis|Lactobacillus yamanashiensis subsp. yamanashiensis| +E0465017|Lactobacillus viridescens ssp. halotolerans|Lactobacillus viridescens subsp. halotolerans| +E0465031|Lactobacillus aviarius ssp. aviarius|Lactobacillus aviarius subsp. aviarius| +E0465033|Lactobacillus aviarius ssp. araffinosus|Lactobacillus aviarius subsp. araffinosus| +E0465034|Lactobacillus acetitolerans|Lactobacillus acetotolerans| +E0465036|Lactobacillus delbrueckii ssp. delbrueckii|Lactobacillus delbrueckii subsp. delbrueckii| +E0465042|Lactococcus lactis ssp. hordniae|Lactococcus lactis subsp. hordniae| +E0465053|Lactobacillus coprophilus ssp. confusus|Lactobacillus coprophilus subsp. confusus| +E0465096|Catenuliplanes japonicus|Catenuloplanes japonicus| +E0465097|Catenuliplanes|Catenuloplanes| +E0465098|Catenuliplanes crispus|Catenuloplanes crispus| +E0465100|bird's foot trefoil|bird's-foot trefoil| +E0465100|birdsfoot trefoil|bird's-foot trefoil| +E0465120|Aspergillus bouffardii|Aspergillus boufardii| +E0465148|Aspergillus shirousamii|Aspergillus shirousami| +E0465151|Aspergillus gorakpurensis|Aspergillus gorakhpurensis| +E0465167|Aspergillus clavato-flavus|Aspergillus clavatoflavus| +E0465171|Aspergillus brunneouniseriatus|Aspergillus brunneo-uniseriatus| +E0465230|oriental coral snake|Oriental coral snake| +E0465471|Xenorhabdus nematophilus ssp. nematophilus|Xenorhabdus nematophilus subsp. nematophilus| +E0465475|Xenorhabdus nematophila ssp. nematophila|Xenorhabdus nematophila subsp. nematophila| +E0465477|Xenorhabdus nematophilus ssp. beddingii|Xenorhabdus nematophilus subsp. beddingii| +E0465479|Xenorhabdus nematophilus ssp. bovienii|Xenorhabdus nematophilus subsp. bovienii| +E0465481|Xenorhabdus nematophilus ssp. poinarii|Xenorhabdus nematophilus subsp. poinarii| +E0465484|Xenorhabdus nematophila ssp. bovienii|Xenorhabdus nematophila subsp. bovienii| +E0465487|Xenorhabdus nematophila ssp. poinarii|Xenorhabdus nematophila subsp. poinarii| +E0465489|Xenorhabdus nematophila subspecies beddingi|Xenorhabdus nematophila subspecies beddingii| +E0465490|Xenorhabdus nematophila ssp. beddingii|Xenorhabdus nematophila subsp. beddingii| +E0465490|Xenorhabdus nematophila subsp. beddingi|Xenorhabdus nematophila subsp. beddingii| +E0465490|Xenorhabdus nematophila ssp. beddingi|Xenorhabdus nematophila subsp. beddingii| +E0465534|Lipomyces kononenkoae ssp. kononenkoae|Lipomyces kononenkoae subsp. kononenkoae| +E0465635|Bathymodiolus azoricus|Bathymodiolus asoricus| +E0465653|macrophthalmus|macrophthalmos| +E0465714|Gecko|Gekko| +E0465808|Clostridium ghoni|Clostridium ghonii| +E0465831|Clostridium acidi-urici|Clostridium acidiurici| +E0465833|Clostridium barati|Clostridium baratii| +E0465849|Clostridium purinolyticum|Clostridium purinilyticum| +E0465967|Treponema pallidum ssp. pertenue|Treponema pallidum subsp. pertenue| +E0465982|Treponema pallidum ssp. pallidum|Treponema pallidum subsp. pallidum| +E0465984|Treponema pallidum ssp. endemicum|Treponema pallidum subsp. endemicum| +E0465985|Treponema socranskii ssp. buccale|Treponema socranskii subsp. buccale| +E0465987|Treponema socranskii ssp. peredis|Treponema socranskii subsp. peredis| +E0466014|Methanobacterium wolfei|Methanobacterium wolfeii| +E0466035|Prevotella tanneriae|Prevotella tannerae| +E0466047|colonic pseudoobstruction|colonic pseudo-obstruction| +E0466058|Tenia armata|Taenia armata| +E0466059|taenia choroidea|tenia choroidea| +E0466060|Tenia serialis|Taenia serialis| +E0466061|Tenia martis|Taenia martis| +E0466062|Tenia brauni|Taenia brauni| +E0466063|Tenia bubesi|Taenia bubesi| +E0466064|Tenia crocutae|Taenia crocutae| +E0466065|Tenia gongamai|Taenia gongamai| +E0466066|Tenia hlasei|Taenia hlasei| +E0466067|Tenia lycanontis|Taenia lycanontis| +E0466068|Tenia macrocystis|Taenia macrocystis| +E0466069|Tenia omissa|Taenia omissa| +E0466070|Tenia parva|Taenia parva| +E0466071|Tenia regis|Taenia regis| +E0466072|Tenia rileyi|Taenia rileyi| +E0466073|Tenia twitchelli|Taenia twitchelli| +E0466074|Tenia multiceps|Taenia multiceps| +E0466075|Tenia cellulosae|Taenia cellulosae| +E0466178|sanddab|sand dab| +E0466179|gulf sand dab|gulf sanddab| +E0466186|Pacific sand dab|Pacific sanddab| +E0466189|speckled sand dab|speckled sanddab| +E0466200|Phaseolus coccineus ssp. polyanthus|Phaseolus coccineus subsp. polyanthus| +E0466294|melanodermic leucodystrophy|melanodermic leukodystrophy| +E0466333|Streptomyces erythreus|Streptomyces erythraeus| +E0466339|Streptomyces griseus ssp. solvifaciens|Streptomyces griseus subsp. solvifaciens| +E0466343|Streptomyces annulatus|Streptomyces anulatus| +E0466356|Streptomyces fradiae ssp. fradiae|Streptomyces fradiae subsp. fradiae| +E0466369|Streptomyces phaeochromogenus|Streptomyces phaeochromogenes| +E0466369|Streptomyces pheochromogenus|Streptomyces phaeochromogenes| +E0466403|Streptomyces cellulosi|Streptomyces cellulosae| +E0466405|Streptomyces morookaensis|Streptomyces moro-okaensis| +E0466422|Streptomyces spheroides|Streptomyces sphaeroides| +E0466481|Streptomyces venezuelae ssp. roseospori|Streptomyces venezuelae subsp. roseospori| +E0466486|Streptomyces flavivirens|Streptomyces flavovirens| +E0466499|Streptomyces kentuchensis|Streptomyces kentuckensis| +E0466501|Streptomyces albisporeus|Streptomyces albosporeus| +E0466535|Streptomyces oliviverticillatus|Streptomyces olivoverticillatus| +E0466537|Streptomyces baldacci|Streptomyces baldaccii| +E0466547|Streptomyces albifaciens|Streptomyces albofaciens| +E0466548|Streptomyces albivinaceus|Streptomyces albovinaceus| +E0466549|Streptomyces aminiphilus|Streptomyces aminophilus| +E0466567|Streptomyces cuspidisporus|Streptomyces cuspidosporus| +E0466573|Streptomyces flavitricini|Streptomyces flavotricini| +E0466574|Streptomyces flaviviridis|Streptomyces flavoviridis| +E0466607|Streptomyces albiflavus|Streptomyces alboflavus| +E0466609|Streptomyces albiviridis|Streptomyces alboviridis| +E0466623|Streptomyces bobilii|Streptomyces bobili| +E0466623|Streptomyces bobiliae|Streptomyces bobili| +E0466641|Streptomyces flaveolus ssp. flaveolus|Streptomyces flaveolus subsp. flaveolus| +E0466642|Streptomyces flavidivirens|Streptomyces flavidovirens| +E0466643|Streptomyces flavigriseus|Streptomyces flavogriseus| +E0466662|Streptomyces lavendulicolor|Streptomyces lavendulocolor| +E0466670|Streptomyces massisporeus|Streptomyces massasporeus| +E0466680|Streptomyces narbonnensis|Streptomyces narbonensis| +E0466685|Streptomyces oliviviridis|Streptomyces olivoviridis| +E0466698|Streptomyces racemichromogenes|Streptomyces racemochromogenes| +E0466710|Streptomyces rubiginosihelvolus|Streptomyces rubiginosohelvolus| +E0466738|Streptomyces albilongus|Streptomyces albolongus| +E0466752|Streptomyces krestomyceticus|Streptomyces chrestomyceticus| +E0466782|Streptomyces graminifaciens|Streptomyces graminofaciens| +E0466791|Streptomyces herbariicolor|Streptomyces herbaricolor| +E0466823|Streptomyces olivireticuli|Streptomyces olivoreticuli| +E0466904|Streptomyces cangkringensis|Streptomyces cankringensis| +E0466917|Streptomyces albo-niger|Streptomyces alboniger| +E0466917|Streptomyces albiniger|Streptomyces alboniger| +E0466949|Arthrobacter sulfureus|Arthrobacter sulphureus| +E0466960|Arthrobacter oxamicetus ssp. propiophenicolus|Arthrobacter oxamicetus subsp. propiophenicolus| +E0466969|Arthrobacter atricyaneus|Arthrobacter atrocyaneus| +E0466974|Arthrobacter histidinolivorans|Arthrobacter histidinolovorans| +E0466977|Arthrobacter psychrolactiphilus|Arthrobacter psychrolactophilus| +E0467056|Symmers fibrosis|Symmers' fibrosis| +E0467057|Symmers' peri-portal fibrosis|Symmers' periportal fibrosis| +E0467057|Symmers's periportal fibrosis|Symmers' periportal fibrosis| +E0467057|Symmers's peri-portal fibrosis|Symmers' periportal fibrosis| +E0467109|Nocardia crassostreae|Nocardia crassostrae| +E0467110|Nocardia flavirosea|Nocardia flavorosea| +E0467148|Corynebacterium liquefaciens|Corynebacterium liquifaciens| +E0467185|Corynebacterium afermentans ssp. afermentans|Corynebacterium afermentans subsp. afermentans| +E0467187|Corynebacterium afermentans ssp. lipophilum|Corynebacterium afermentans subsp. lipophilum| +E0467194|Corynebacterium flaccumfaciens ssp. betae|Corynebacterium flaccumfaciens subsp. betae| +E0467197|Corynebacterium flaccumfaciens ssp. oortii|Corynebacterium flaccumfaciens subsp. oortii| +E0467199|Corynebacterium flaccumfaciens ssp. poinsettiae|Corynebacterium flaccumfaciens subsp. poinsettiae| +E0467204|Corynebacterium flaccumfaciens ssp. flaccumfaciens|Corynebacterium flaccumfaciens subsp. flaccumfaciens| +E0467233|Corynebacterium coyleae|Corynebacterium coyleiae| +E0467307|Microbacterium keratanolyticum|Microbacterium keratanilyticum| +E0467384|Nasutitermes novarum-hebridarum|Nasutitermes novarumhebridarum| +E0467393|C. corniger|Cx. corniger| +E0467401|Culex bitaeniorhynchus|Culex bitaeniorhyncus| +E0467446|Sceloporus poinsettii|Sceloporus poinsetti| +E0467455|Sceloporus couchii|Sceloporus couchi| +E0467458|Sceloporus gadovae|Sceloporus gadoviae| +E0467478|Sceloporus dugesi|Sceloporus dugesii| +E0467616|hyaloideo-capsular|hyaloideocapsular| +E0467617|hyaloideo-retinal|hyaloideoretinal| +E0467618|kalopanax-saponin|kalopanaxsaponin| +E0467618|kalopanax saponin|kalopanaxsaponin| +E0467619|kalopanax-saponin A|kalopanaxsaponin A| +E0467619|kalopanax saponin A|kalopanaxsaponin A| +E0467620|kalopanax-saponin B|kalopanaxsaponin B| +E0467620|kalopanax saponin B|kalopanaxsaponin B| +E0467621|kalopanax-saponin H|kalopanaxsaponin H| +E0467621|kalopanax saponin H|kalopanaxsaponin H| +E0467622|kalopanax-saponin I|kalopanaxsaponin I| +E0467622|kalopanax saponin I|kalopanaxsaponin I| +E0467623|kalopanax-saponin K|kalopanaxsaponin K| +E0467623|kalopanax saponin K|kalopanaxsaponin K| +E0467624|kalopanax-saponin G|kalopanaxsaponin G| +E0467624|kalopanax saponin G|kalopanaxsaponin G| +E0467625|kalopanax-saponin C|kalopanaxsaponin C| +E0467625|kalopanax saponin C|kalopanaxsaponin C| +E0467626|kalopanax-saponin F|kalopanaxsaponin F| +E0467626|kalopanax saponin F|kalopanaxsaponin F| +E0467676|Bacillus pseudotuberkulosis|Bacillus pseudotuberculosis| +E0467711|Bacillus globisporus ssp. marinus|Bacillus globisporus subsp. marinus| +E0467728|Bacillus azotiformans|Bacillus azotoformans| +E0467749|Bacillus pastorianus|Bacillus pasteurianus| +E0467772|Bacillus acidiurici|Bacillus acidi-urici| +E0467773|Bacillus azotifixans|Bacillus azotofixans| +E0467815|Bacillus duplex non liquefaciens|Bacillus duplex nonliquefaciens| +E0467820|Bacillus acidipropionici|Bacillus acidi propionici| +E0467848|Bacillus aneurinolyticus|Bacillus aneurinilyticus| +E0467856|Bacillus atriphaeus|Bacillus atrophaeus| +E0467902|Bacillus thiaminilyticus|Bacillus thiaminolyticus| +E0467929|Bacillus lynceourum|Bacillus lynceorum| +E0467931|Bacillus agaradherens|Bacillus agaradhaerens| +E0467940|Bacillus pseudalcalophilus|Bacillus pseudalcaliphilus| +E0467943|Bacillus arsenicoselenatis|Bacillus arseniciselenatis| +E0467950|Bacillus alcalophilus ssp. halodurans|Bacillus alcalophilus subsp. halodurans| +E0467981|Bacillus sphaericus ssp. fusiformis|Bacillus sphaericus subsp. fusiformis| +E0468147|pignolia nut pine|pignolia-nut pine| +E0468148|scotch pine|Scotch pine| +E0468149|scots pine|Scots pine| +E0468169|Pinus ponderosa ssp. washoensis|Pinus ponderosa subsp. washoensis| +E0468184|Mexican pinon|Mexican pinyon| +E0468242|Pinus patula ssp. tecunumanii|Pinus patula subsp. tecunumanii| +E0468248|singleleaf pinon pine|singleleaf pinyon pine| +E0468250|Parry pinon pine|Parry pinyon pine| +E0468293|heredo-degenerative|heredodegenerative| +E0468349|short tailed gymnure|short-tailed gymnure| +E0468353|cape mole rat|cape mole-rat| +E0468354|cape dune mole rat|cape dune mole-rat| +E0468355|Namaqua dune mole rat|Namaqua dune mole-rat| +E0468385|rockhopper penguin|rock-hopper penguin| +E0468394|green-band wrasse|greenband wrasse| +E0468399|yellow-cheek wrasse|yellowcheek wrasse| +E0468402|black-ear wrasse|blackear wrasse| +E0468407|three-spot wrasse|threespot wrasse| +E0468407|three spot wrasse|threespot wrasse| +E0468411|grey-head wrasse|greyhead wrasse| +E0468411|grayhead wrasse|greyhead wrasse| +E0468411|gray-head wrasse|greyhead wrasse| +E0468418|Lytechinus anamesis|Lytechinus anamesus| +E0468470|Rivulus cryptocalus|Rivulus cryptocallus| +E0468474|Rivulus roloffii|Rivulus roloffi| +E0468522|Bothrops neuwiedi|Bothrops neuweidi| +E0468753|Yunka|Yunca| +E0468858|bursa dependent lymphocyte|bursa-dependent lymphocyte| +E0468859|bursa equivalent lymphocyte|bursa-equivalent lymphocyte| +E0468865|supra-atlantal bursa|supraatlantal bursa| +E0468866|supra-atlantal|supraatlantal| +E0468871|cubito-radial bursa|cubitoradial bursa| +E0468878|Capsella bursa pastoris|Capsella bursa-pastoris| +E0468879|shepherds purse|shepherd's purse| +E0468879|shepherdspurse|shepherd's purse| +E0468906|naevus telangiectaticus|nevus telangiectaticus| +E0468912|Nocardiopsis dassonvillei ssp. dassonvillei|Nocardiopsis dassonvillei subsp. dassonvillei| +E0468914|Nocardiopsis dassonvillei ssp. prasina|Nocardiopsis dassonvillei subsp. prasina| +E0468920|Nocardiopsis albus ssp. albus|Nocardiopsis albus subsp. albus| +E0468933|Actinomadura cremea ssp. rifamycini|Actinomadura cremea subsp. rifamycini| +E0468975|Saccharothrix albidicapillata|Saccharothrix albidocapillata| +E0469014|Pseudomonas perfectimarina|Pseudomonas perfectomarina| +E0469016|Pseudomonas caryophyli|Pseudomonas caryophylii| +E0469016|Pseudomonas caryophyllii|Pseudomonas caryophylii| +E0469016|Pseudomonas caryophylli|Pseudomonas caryophylii| +E0469025|Pseudomonas fuscivaginae|Pseudomonas fuscovaginae| +E0469055|Pseudomonas coronafaciens ssp. atropurpurea|Pseudomonas coronafaciens subsp. atropurpurea| +E0469066|Pseudomonas pseudoalcaligenes ssp. citrulli|Pseudomonas pseudoalcaligenes subsp. citrulli| +E0469068|Pseudomonas pseudoalcaligenes ssp. konjaci|Pseudomonas pseudoalcaligenes subsp. konjaci| +E0469070|Pseudomonas avenae ssp. konjaci|Pseudomonas avenae subsp. konjaci| +E0469073|Pseudomonas syringae ssp. savastanoi|Pseudomonas syringae subsp. savastanoi| +E0469076|Pseudomonas syringae ssp. syringae|Pseudomonas syringae subsp. syringae| +E0469150|Hydrogeniphaga taeniospiralis|Hydrogenophaga taeniospiralis| +E0469182|Neisseria polysaccharea|Neisseria polysacchareae| +E0469191|Cladothrix albidoflava|Cladothrix albido-flava| +E0469235|Sphingomonas wittichi|Sphingomonas wittichii| +E0469390|Saccharopolyspora spinosisporotrichia|Saccharopolyspora spinosisporitrichia| +E0469393|Saccharopolyspora hirsuta ssp. taberi|Saccharopolyspora hirsuta subsp. taberi| +E0469617|occluso-distal|occlusodistal| +E0469632|purple sulphur bacterium|purple sulfur bacterium| +E0469641|gram positive bacterium|gram-positive bacterium| +E0469653|purple nonsulphur bacterium|purple nonsulfur bacterium| +E0469653|purple non-sulfur bacterium|purple nonsulfur bacterium| +E0469653|purple non-sulphur bacterium|purple nonsulfur bacterium| +E0469667|sulfur reducing bacterium|sulfur-reducing bacterium| +E0469667|sulphur-reducing bacterium|sulfur-reducing bacterium| +E0469667|sulphur reducing bacterium|sulfur-reducing bacterium| +E0469668|flesh eating bacterium|flesh-eating bacterium| +E0469730|green sulphur bacterium|green sulfur bacterium| +E0469736|sulfate-reducing bacterium|sulfate reducing bacterium| +E0469736|sulphate reducing bacterium|sulfate reducing bacterium| +E0469736|sulphate-reducing bacterium|sulfate reducing bacterium| +E0469759|Bacterium sulphuratum|Bacterium sulfuratum| +E0469770|ammonia oxidizing bacterium|ammonia-oxidizing bacterium| +E0469770|ammonia-oxidising bacterium|ammonia-oxidizing bacterium| +E0469770|ammonia oxidising bacterium|ammonia-oxidizing bacterium| +E0469771|green nonsulfur bacterium|green non-sulfur bacterium| +E0469771|green non-sulphur bacterium|green non-sulfur bacterium| +E0469771|green nonsulphur bacterium|green non-sulfur bacterium| +E0469772|oxygen reducing bacterium|oxygen-reducing bacterium| +E0469792|psychrophilic sulfate reducing bacterium|psychrophilic sulfate-reducing bacterium| +E0469792|psychrophilic sulphate-reducing bacterium|psychrophilic sulfate-reducing bacterium| +E0469792|psychrophilic sulphate reducing bacterium|psychrophilic sulfate-reducing bacterium| +E0469797|nitrogen fixing bacterium|nitrogen-fixing bacterium| +E0469798|arsenite oxidising bacterium|arsenite-oxidising bacterium| +E0469798|arsenite-oxidizing bacterium|arsenite-oxidising bacterium| +E0469798|arsenite oxidizing bacterium|arsenite-oxidising bacterium| +E0469805|butyrate producing bacterium|butyrate-producing bacterium| +E0469806|sulfur oxidizing bacterium|sulfur-oxidizing bacterium| +E0469806|sulphur oxidizing bacterium|sulfur-oxidizing bacterium| +E0469806|sulphur-oxidizing bacterium|sulfur-oxidizing bacterium| +E0469806|sulfur-oxidising bacterium|sulfur-oxidizing bacterium| +E0469806|sulfur oxidising bacterium|sulfur-oxidizing bacterium| +E0469806|sulphur oxidising bacterium|sulfur-oxidizing bacterium| +E0469806|sulphur-oxidising bacterium|sulfur-oxidizing bacterium| +E0469808|benzene decomposing bacterium|benzene-decomposing bacterium| +E0469809|humic substances degrading bacterium|humic substances-degrading bacterium| +E0469811|manganese oxidizing bacterium|manganese-oxidizing bacterium| +E0469811|manganese-oxidising bacterium|manganese-oxidizing bacterium| +E0469811|manganese oxidising bacterium|manganese-oxidizing bacterium| +E0469821|oil degrading bacterium|oil-degrading bacterium| +E0469822|cilia associated respiratory bacterium|cilia-associated respiratory bacterium| +E0469823|arsenic-resistant soil bacterium|arsenic resistant soil bacterium| +E0469824|phenanthrene metabolizing bacterium|phenanthrene-metabolizing bacterium| +E0469824|phenanthrene-metabolising bacterium|phenanthrene-metabolizing bacterium| +E0469824|phenanthrene metabolising bacterium|phenanthrene-metabolizing bacterium| +E0469909|Macruronus novazelandiae|Macruronus novaezelandiae| +E0469953|Ctenomys d'orbignyi|Ctenomys dorbignyi| +E0469978|familial cerebelloretinal angiomatosis|familial cerebello-retinal angiomatosis| +E0469980|Hippel-Lindau syndrome|Hippel Lindau syndrome| +E0469981|von Hippel Lindau tumor suppressor gene product|von Hippel-Lindau tumor suppressor gene product| +E0469981|von Hippel-Lindau tumour suppressor gene product|von Hippel-Lindau tumor suppressor gene product| +E0469981|von Hippel Lindau tumour suppressor gene product|von Hippel-Lindau tumor suppressor gene product| +E0469981|Von Hippel-Lindau tumor suppressor gene product|von Hippel-Lindau tumor suppressor gene product| +E0469981|Von Hippel Lindau tumor suppressor gene product|von Hippel-Lindau tumor suppressor gene product| +E0469981|Von Hippel-Lindau tumour suppressor gene product|von Hippel-Lindau tumor suppressor gene product| +E0469981|Von Hippel Lindau tumour suppressor gene product|von Hippel-Lindau tumor suppressor gene product| +E0469982|VHL tumour suppressor gene product|VHL tumor suppressor gene product| +E0469983|von Hippel Lindau protein|von Hippel-Lindau protein| +E0469983|Von Hippel-Lindau protein|von Hippel-Lindau protein| +E0469983|Von Hippel Lindau protein|von Hippel-Lindau protein| +E0470021|arteria gastro-omentalis sinistra|arteria gastroomentalis sinistra| +E0470022|apico-posterior segmental vein|apicoposterior segmental vein| +E0470049|left brachio-cephalic vein|left brachiocephalic vein| +E0470093|Gilia achilleifolia ssp. multicaulis|Gilia achilleifolia subsp. multicaulis| +E0470099|Gilia gilioides ssp. volcanica|Gilia gilioides subsp. volcanica| +E0470117|ethyldehydroxy-sparsomycin|ethyldehydroxysparsomycin| +E0470126|gram positive diplococcus|gram-positive diplococcus| +E0470127|gram negative diplococcus|gram-negative diplococcus| +E0470219|gastro-intestinal mucosa|gastrointestinal mucosa| +E0470223|oesophageal mucosa|esophageal mucosa| +E0470233|white folded gingivo-stomatosis|white folded gingivostomatosis| +E0470234|gingivo-stomatosis|gingivostomatosis| +E0470235|hereditary leucokeratosis|hereditary leukokeratosis| +E0470237|leucokeratosis mucosae oris|leukokeratosis mucosae oris| +E0470244|mucosa associated lymphoid tissue lymphoma|mucosa-associated lymphoid tissue lymphoma| +E0470245|mucosa associated lymphoid tissue|mucosa-associated lymphoid tissue| +E0470248|coecal mucosa|cecal mucosa| +E0470248|caecal mucosa|cecal mucosa| +E0470265|Actinobacterium meyerii|Actinobacterium meyeri| +E0470353|Epimachus albertisii|Epimachus albertisi| +E0470482|Polygonum lapathifolium ssp. tomentosum|Polygonum lapathifolium subsp. tomentosum| +E0470483|P. lapathifolium ssp. tomentosum|P. lapathifolium subsp. tomentosum| +E0470485|Polygonum lapathifolium ssp. nodosum|Polygonum lapathifolium subsp. nodosum| +E0470486|P. lapathifolium ssp. nodosum|P. lapathifolium subsp. nodosum| +E0470517|carboxy methylase|carboxymethylase| +E0470518|protein carboxyl-methylase|protein carboxylmethylase| +E0470518|protein carboxyl methylase|protein carboxylmethylase| +E0470521|protein calorie malnutrition|protein-calorie malnutrition| +E0470523|phase conjugate mirror|phase-conjugate mirror| +E0470528|polarisable continuum model|polarizable continuum model| +E0470569|Micrococcus kristiniae|Micrococcus kristinae| +E0470571|Micrococcus nishinomyaensis|Micrococcus nishinomiyaensis| +E0470612|Cocco-bacillus anaerobius perfoetens|Coccobacillus anaerobius perfoetens| +E0470614|Cocco-bacillus|Coccobacillus| +E0470617|gram positive coccobacillus|gram-positive coccobacillus| +E0470620|gram variable coccobacillus|gram-variable coccobacillus| +E0470632|Streptococcus hemolyticus|Streptococcus haemolyticus| +E0470634|Streptococcus mutans ssp. sobrinus|Streptococcus mutans subsp. sobrinus| +E0470638|Streptococcus lactis ssp. lactis|Streptococcus lactis subsp. lactis| +E0470640|Streptococcus lactis ssp. cremoris|Streptococcus lactis subsp. cremoris| +E0470654|Streptococcus mutans ssp. ferus|Streptococcus mutans subsp. ferus| +E0470657|Streptococcus salivarius ssp. salivarius|Streptococcus salivarius subsp. salivarius| +E0470659|Streptococcus salivarius ssp. thermophilus|Streptococcus salivarius subsp. thermophilus| +E0470674|Streptococcus garvieae|Streptococcus garviae| +E0470704|Staphylococcus aureus ssp. anaerobius|Staphylococcus aureus subsp. anaerobius| +E0470717|Staphylococcus sciuri ssp. lentus|Staphylococcus sciuri subsp. lentus| +E0470734|Staphylococcus schleiferi ssp. schleiferi|Staphylococcus schleiferi subsp. schleiferi| +E0470736|Staphylococcus sciuri ssp. sciuri|Staphylococcus sciuri subsp. sciuri| +E0470741|Staphylococcus cohnii ssp. urealyticum|Staphylococcus cohnii subsp. urealyticum| +E0470758|Peptococcus heliotrinreducans|Peptococcus heliotrinreducens| +E0470776|Peptostreptococcus harei|Peptostreptococcus hareii| +E0470790|sand sea trout|sand seatrout| +E0470792|silver sea trout|silver seatrout| +E0470795|differential hemocyte count|differential haemocyte count| +E0470873|Salmonella choleraesuis ssp. arizonae|Salmonella choleraesuis subsp. arizonae| +E0470893|Salmonella abortus-bovis|Salmonella abortusbovis| +E0470914|Salmonella saint-paul|Salmonella saintpaul| +E0470919|Salmonella san-diego|Salmonella sandiego| +E0470938|Salmonella bredeny|Salmonella bredeney| +E0470990|Salmonella san-juan|Salmonella sanjuan| +E0471136|Salmonella bovis-morbificans|Salmonella bovismorbificans| +E0471138|Salmonella gold-coast|Salmonella goldcoast| +E0471199|Salmonella chomedy|Salmonella chomedey| +E0471243|Salmonella new-mexico|Salmonella newmexico| +E0471353|Salmonella cuckmere|Salmonella cukmere| +E0471363|Salmonella new-rochelle|Salmonella newrochelle| +E0471444|Salmonella sankt-marx|Salmonella sanktmarx| +E0471555|Salmonella mishmar-haemek|Salmonella mishmarhaemek| +E0471669|Salmonella los-angeles|Salmonella losangeles| +E0471752|Salmonella bokanjac|Salmonella bakanjac| +E0471791|Salmonella telaviv|Salmonella tel-aviv| +E0471804|Salmonella malaysia|Salmonella maylaysia| +E0471831|Salmonella ramat-gan|Salmonella ramatgan| +E0471842|Salmonella baguirmi|Salmonella baguirimi| +E0471884|Salmonella kimberley|Salmonella kimberly| +E0472029|Salmonella mount-pleasant|Salmonella mountpleasant| +E0472061|Salmonella sainte-marie|Salmonella saintemarie| +E0472407|Salmonella cholerae-suis subspecies bongori|Salmonella choleraesuis subspecies bongori| +E0472408|Salmonella choleraesuis ssp. bongori|Salmonella choleraesuis subsp. bongori| +E0472408|Salmonella cholerae-suis subsp. bongori|Salmonella choleraesuis subsp. bongori| +E0472408|Salmonella cholerae-suis ssp. bongori|Salmonella choleraesuis subsp. bongori| +E0472410|Salmonella enterica ssp. bongori|Salmonella enterica subsp. bongori| +E0472419|burningbush|burning bush| +E0472504|Hammada articulata ssp. scoparia|Hammada articulata subsp. scoparia| +E0472571|Van Bogaert-Nijssen disease|van Bogaert-Nijssen disease| +E0472573|cerebroside sulphatase deficiency|cerebroside sulfatase deficiency| +E0472574|sulphatide lipoidosis|sulfatide lipoidosis| +E0472575|cerebroside sulfatase deficiency disease|cerebroside sulphatase deficiency disease| +E0472576|van Bogaert leukoencephalitis|Van Bogaert leukoencephalitis| +E0472576|Van Bogaert leucoencephalitis|Van Bogaert leukoencephalitis| +E0472576|van Bogaert leucoencephalitis|Van Bogaert leukoencephalitis| +E0472577|van Bogaert's leukoencephalitis|Van Bogaert's leukoencephalitis| +E0472577|Van Bogaert's leucoencephalitis|Van Bogaert's leukoencephalitis| +E0472577|van Bogaert's leucoencephalitis|Van Bogaert's leukoencephalitis| +E0472578|Van Bogaert-Scherer-Epstein syndrome|van Bogaert-Scherer-Epstein syndrome| +E0472582|Van Bogaert-Scherer-Epstein disease|van Bogaert-Scherer-Epstein disease| +E0472585|Divry-van Bogaert syndrome|Divry-Van Bogaert syndrome| +E0472585|Divry-Van Bogaert's syndrome|Divry-Van Bogaert syndrome| +E0472585|Divry-van Bogaert's syndrome|Divry-Van Bogaert syndrome| +E0472611|broom rape|broomrape| +E0472639|Pachymatisma johnstoni|Pachymatisma johnstonii| +E0472671|red-crested touraco|red-crested turaco| +E0472671|red-crested turacou|red-crested turaco| +E0472672|Johnston's touraco|Johnston's turaco| +E0472672|Johnston's turacou|Johnston's turaco| +E0472673|Schalow's touraco|Schalow's turaco| +E0472673|Schalow's turacou|Schalow's turaco| +E0472674|yellow-billed touraco|yellow-billed turaco| +E0472674|yellow-billed turacou|yellow-billed turaco| +E0472675|Livingston's touraco|Livingston's turaco| +E0472675|Livingston's turacou|Livingston's turaco| +E0472676|white-crested touraco|white-crested turaco| +E0472676|white-crested turacou|white-crested turaco| +E0472677|Fischer's touraco|Fischer's turaco| +E0472677|Fischer's turacou|Fischer's turaco| +E0472804|Montipora aquituberculata|Montipora aequituberculata| +E0472819|Synanceja|Synanceia| +E0472820|Synanceja horrida|Synanceia horrida| +E0472821|Synanceja trachynis|Synanceia trachynis| +E0473030|Oncorhynchus tschawytscha|Oncorhynchus tshawytscha| +E0473031|chinook salmon|Chinook salmon| +E0473037|incremental cost effectiveness ratio|incremental cost-effectiveness ratio| +E0473038|inducible-cAMP early repressor|inducible cAMP early repressor| +E0473039|Icer|ICER| +E0473060|M. fasicularis|M. fascicularis| +E0473063|post-vesicular|postvesicular| +E0473064|post-vesicular node|postvesicular node| +E0473078|whistling duck|whistling-duck| +E0473079|black-bellied whistling duck|black-bellied whistling-duck| +E0473079|black bellied whistling-duck|black-bellied whistling-duck| +E0473079|black bellied whistling duck|black-bellied whistling-duck| +E0473080|black-billed whistling duck|black-billed whistling-duck| +E0473080|black billed whistling-duck|black-billed whistling-duck| +E0473080|black billed whistling duck|black-billed whistling-duck| +E0473082|wandering whistling duck|wandering whistling-duck| +E0473083|black bellied tree duck|black-bellied tree duck| +E0473084|red-billed whistling duck|red-billed whistling-duck| +E0473084|red billed whistling-duck|red-billed whistling-duck| +E0473084|red billed whistling duck|red-billed whistling-duck| +E0473086|fulvous whistling duck|fulvous whistling-duck| +E0473087|plumed whistling duck|plumed whistling-duck| +E0473091|white-faced whistling duck|white-faced whistling-duck| +E0473193|Hemophilus canis|Haemophilus canis| +E0473195|Hemophilus bronchisepticus|Haemophilus bronchisepticus| +E0473196|Hemophilus bovis|Haemophilus bovis| +E0473197|Hemophilus actinomyceticomitans|Haemophilus actinomyceticomitans| +E0473198|Hemophilus pleuropneumoniae|Haemophilus pleuropneumoniae| +E0473199|Hemophilus parapertussis|Haemophilus parapertussis| +E0473200|Hemophilus parahemolyticus|Haemophilus parahaemolyticus| +E0473201|Hemophilus haemoglobinophilus|Haemophilus haemoglobinophilus| +E0473202|Hemophilus paragallinarum|Haemophilus paragallinarum| +E0473203|Hemophilus gallinarum|Haemophilus gallinarum| +E0473204|Hemophilus paraphrohaemolyticus|Haemophilus paraphrohaemolyticus| +E0473205|Hemophilus paracuniculus|Haemophilus paracuniculus| +E0473206|Hemophilus piscium|Haemophilus piscium| +E0473207|Hemophilus avium|Haemophilus avium| +E0473208|Hemophilus ovis|Haemophilus ovis| +E0473209|Hemophilus putoriorum|Haemophilus putoriorum| +E0473210|Hemophilus citreus|Haemophilus citreus| +E0473211|Hemophilus felis|Haemophilus felis| +E0473212|Hemophilus quentini|Haemophilus quentini| +E0473235|Pasterella hemolytica varietas ureae|Pasterella haemolytica varietas ureae| +E0473236|Pasterella hemolytica var. ureae|Pasterella haemolytica var. ureae| +E0473248|Pasteurella multocida ssp. gallicida|Pasteurella multocida subsp. gallicida| +E0473251|Pasteurella mairii|Pasteurella mairi| +E0473355|grey wolf|gray wolf| +E0473358|black backed jackal|black-backed jackal| +E0473365|Helicobacter fenelliae|Helicobacter fennelliae| +E0473442|rice field mouse|ricefield mouse| +E0473444|Gairdner's shrew-mouse|Gairdner's shrewmouse| +E0473444|Gairdner's shrew mouse|Gairdner's shrewmouse| +E0473445|rock loving mouse|rock-loving mouse| +E0473450|fawn colored mouse|fawn-colored mouse| +E0473460|mound building mouse|mound-building mouse| +E0473469|Sumatran shrew-like mouse|Sumatran shrewlike mouse| +E0473755|blackedge cusk eel|blackedge cusk-eel| +E0473767|fructose bisphosphatase|fructose-bisphosphatase| +E0473800|peptidylglycine-alpha-hydroxylating monooxygenase|peptidylglycine alpha-hydroxylating monooxygenase| +E0473857|Flavobacterium halmephilum|Flavobacterium halmophilum| +E0473859|Flavibacterium uliginosum|Flavobacterium uliginosum| +E0473871|Flavibacterium resinovorum|Flavobacterium resinovorum| +E0473877|Flavibacterium yabuuchiae|Flavobacterium yabuuchiae| +E0473885|Flavibacterium flevense|Flavobacterium flevense| +E0473886|Flavibacterium hydatis|Flavobacterium hydatis| +E0473887|Flavobacterium pectinivorum|Flavobacterium pectinovorum| +E0473888|Flavibacterium saccharophilum|Flavobacterium saccharophilum| +E0473889|Flavibacterium hibernum|Flavobacterium hibernum| +E0473890|Flavibacterium paraogurii|Flavobacterium paraogurii| +E0473891|Flavibacterium ogurii|Flavobacterium ogurii| +E0473893|Flavibacterium branchiophilum|Flavobacterium branchiophilum| +E0473896|Flavibacterium xanthum|Flavobacterium xanthum| +E0473897|Flavibacterium keratolyticus|Flavobacterium keratolyticus| +E0473898|Flavibacterium gastricum|Flavobacterium gastricum| +E0473899|Flavibacterium xylanivorum|Flavobacterium xylanivorum| +E0473900|Flavibacterium salegens|Flavobacterium salegens| +E0473919|aloeemodin dianthrone diglucoside|aloe-emodin dianthrone diglucoside| +E0473919|aloe emodin dianthrone diglucoside|aloe-emodin dianthrone diglucoside| +E0474308|Leuconostoc mesenteroides ssp. mesenteroides|Leuconostoc mesenteroides subsp. mesenteroides| +E0474310|Leuconostoc mesenteroides ssp. cremoris|Leuconostoc mesenteroides subsp. cremoris| +E0474325|genet|jennet| +E0474326|genette|genet| +E0474476|gobou|gobo| +E0474521|granulosa lutein cell|granulosa-lutein cell| +E0474564|Guzmania monostachya|Guzmania monostachia| +E0474640|Halesia macgregorii|Halesia macgregori| +E0474748|Heliconius clysonimus|Heliconius clysonymus| +E0474773|haemophilia C|hemophilia C| +E0475004|Hoplocephalus stephensii|Hoplocephalus stephensi| +E0475020|hoverfly|hover fly| +E0475021|flowerfly|flower fly| +E0475146|haemoglobin Icaria|hemoglobin Icaria| +E0475147|Hb-Icaria|Hb Icaria| +E0475154|inca dove|Inca dove| +E0475182|infra-temporal surface|infratemporal surface| +E0475255|juguloomohyoid lymph node|jugulo-omohyoid lymph node| +E0475256|juguloomohyoid node|jugulo-omohyoid node| +E0475258|juguloomohyoid|jugulo-omohyoid| +E0475259|jugulo-digastric lymph node|jugulodigastric lymph node| +E0475260|jugulo-digastric node|jugulodigastric node| +E0475261|jugulo-digastric|jugulodigastric| +E0475273|june grass|June grass| +E0475277|Jungermannia subalata|Jungermannia subulata| +E0475308|Klebsiella pneumoniae ssp. ozaenae|Klebsiella pneumoniae subsp. ozaenae| +E0475360|lachrymal groove|lacrimal groove| +E0475361|lachrymal hamulus|lacrimal hamulus| +E0475362|lachrymal lake|lacrimal lake| +E0475363|lachrymal margin|lacrimal margin| +E0475411|lateral fronto-basal artery|lateral frontobasal artery| +E0475427|left fibrous trigon|left fibrous trigone| +E0475453|low ionic strength saline|low-ionic-strength saline| +E0475582|meadow-rue|meadow rue| +E0475583|early meadow-rue|early meadow rue| +E0475584|yellow meadow-rue|yellow meadow rue| +E0475585|fall meadow-rue|fall meadow rue| +E0475586|tall meadow-rue|tall meadow rue| +E0475588|medial fronto-basal artery|medial frontobasal artery| +E0475593|median crico-thyroid ligament|median cricothyroid ligament| diff --git a/office/regression/000_000229.txt b/office/regression/000_000229.txt new file mode 100644 index 0000000..25cc218 --- /dev/null +++ b/office/regression/000_000229.txt @@ -0,0 +1,128 @@ +JANUARY, 1927 MONTHLY WEATHER REVIEW n +Soumgin, M. Road-communications and everfrosen of soil in U. S. S. R. Leningrad. 1926. 16 p. 23 cm. (U. S. 8. R. Peoples commissariat of ways of communication. Cent. dept. of local transport. Highway research bur.) (Internat. road exhib., Milan, Sept., 1926.) +1 sheet fi 8. 664 x 97 cm. (U. S. Hydrog. office, Pilot chart P$orth Atlanticpcean, Feb., 1927.) +Static and its relation to navigation and communications. +Streiff-Becker, R. Contribution 8, 16tude du foehn. p. 401-406. figs. 23 cm. (Archives des sci. phys. et nat., 5me p6r. v. 7, nov.-dBc., 1925.) +Trabert, Wilhelm. Meteorologia . . . traducido de la 4. a edici6n aleniana por +Vicente Inglada Om. Barcelona. 1926. 146 p. illurj. plates. 19 cm. +Wilso J. K. A e n is dew not dew? p. 19-36. illus. 23 cm. (Cor- v. 20, no. 1, Sept., 1926.) nell rural school leaflet. Ithaca. +Youn , Floyd D. &chard heating. p. 183-194. 23 cm. (Oregon state hort.. 40th annual meeting, Dec. 16-18, SOC. 17th annual report. 1925.) +RECENT PAPERS BEARING ON METEOROLOCiY +The following titles have been selected from the con- tents of the eriodicals and serials recently received in +are of papers and other comniunications bearing on +meteorology and cognate branches of science. This is not a complete index of all the journals from which it has been compiled. It shows only the articles that +appear to the compiler likely to be of particular interest in connection with the work of the Weather Bureau. +Aerologist. Chicago. v. 2. December, 1936. Lowell, W. E. Air conditioning for the printer, p. 11; +Annalen der Hydrographie und maritimen Meteorologie. Berlin. +the library o P the Weather Burem. The titles selected +22; 24. +64. Jahrgang. 19%. Bartels; J. Barometrische Messung der Hochseegeseiten. +D. 222-227. (Juni.): D. 270-273. (Juli.) Schubert, 0. v. WirkL;lgem des Reibungsunterschiedes fiber See und Land auf die Luftstromung im Bereich der Deuts- chen Bucht. p. 273-279. (Juli.) Annalef de gdographie. Paris. 96 annbe. 15 januier 1987. Le domaine du palmier-dattier e t ses exigences climatiques. p. 24-32. Archives des sciences physiques et naturelles. GenPve. 1 3 . S . No- +vembre-dbeembre 1926. Billwiller, R. Le Dimmerfohn du canton de Glaris. p. +Golaz, Charles. A propos de quelques cas de prevision r6elle +Jost, W. Chute de poussiBres sur les -4lpes. p. 355. Sttiger, A. Electricit6 volcanique. p. 353-354. [Abstract.] +Bidault de IIsle, G. +Musset, R. +244-245. +du temps. p. 354-355. [Abstract.] +Aatronomie. Paris. 41. an. Janvier 1987. La pluie de sang du 30 Octobre 1926. p. 33-34. Aviation. New York. v. 21. December 27, 1916. Air disturbances in hillv countrv. Wind tunnel tests indirat.e how pilot may make use of nitural air turbulence and what regions to avoid when flying. p. 1030-1031. [Wind-tunnel experiment of Lieut. Thoret.] .Came@ institiition. of Washington. Wash. Year book no. 25. +Douglass, A. E. Climatic cycles and tree growth. p. 35& 352. Mauchly, S. J. Control of ionium collectors used in potential- gradient registrations at the observatories of the Depart- ment of terrestrial magnetism. p. 227. Mauchly, S. J. A modified Doleralek quadrant electrometer registration of the potential gradient of the air. Sykes, Godfrey. Rain-recording instruments for isolate({ arid regions. p. 183-184. Thomson, A. Preliminary comparison of atmospheric-elec- tric otential at sea with that under closely similar insular con&tions. p. 232-233. +1986-1966. +p. 228. +Carnegie institution of Washington. Wash. Year book no; 66. +Wait, G. R. Regarding Helmans potential-gradient reeult.~ of 1906-1908. p. 234. Wait, G. R. Results of simultaneous observations u n cer- tain atmosphericelectric elements and meteorolo& ele- ments made at the Watheroo magnetic observatory in 1924. p. 234-235. Ciel et terre. Bruxelles. 42. annee. Octobr~-novembre-d&cembre +Collard, Aug. Le centenaire de la cdation de IObservatoire royal de Bruxelles (1826-28 juin-1926). p. 209-223. Egalea. Porto Alegre. 11. 11. Novembro e dezembro, 19a6. Coussirat [de] Araujo, L[uis]. Ondas de frio. p. 434-440. Engineering news-record. New York. v. 98. February 17, 1 9 n . Fletcher, L. F. Florida hurricane damage as seen by a build- +Pressure wind gages and wind gusts. Rousculp, John A. Rainfall-runoff analysis in atorm-eewer +France. Acaddmie des sciences. Cotnptes rendwr. Pa&. t . 185. +Ondes sonores et nappes de silence dene Vat- mosph6re. p. 1019-1020. +On the solar curve a8 dating the ice age, the New York moraine, and Niagara Falls through the Swedish time scale. p. 253-293. Geophysical magazine. Tokyo. v. 1 . 1986. Fujiwhara, S., & Risimura, D. Note on the arc of hwitz. +Kawano, HI. On Benndorfs self-recording electrometer. +Utumi. T. Statistical proof of Okadas law on the behaviour of cvclones and anticyclones. 2. 45-56. (Sept.). Great Britah. Meteorological ofice. eophysical memmre. Lon- +Classification of monthly charts of pressure anomaly over the northern hemisphere. +Everdingen, E. van, R. Pinkhof, M. Meteorologische fac- +1965-1 966-C ontinued . +1916. +ing official. p. 281-282. +design. p. 270-271. +p. 280-281. +89 novemhre 1926. Galbrun, H. +de Geer, Gerard. Geograjiska annaler. Stockholm. i r g . 8. H . 4. 1986. +p. 28-30. (July.) +p. 1-8. (July.) +don. no. 31. 1926. Brooks, C. E. P., & Quennell, Winifred A. +Hemel en dampkring. Den Haag. 23 jnargang. Januari 1987. +toren bij watersnood. p. 23-29. Idojbrhs. Birdapest. v. 90. 1956. Kovlcs. Tosef sz. Witterunnsperioden im winter. D. 156- 157. {September-oktober.)- - +Landwirtschaft rum Klima und der Witterung. 191. (November-december.) +188. (November-decemher.) Journal de physique et le radium. Paris. t . 7. Ddcembrsc 1916. +lumibre par Iozone entre 3,050 et 3,400 A. p. 414-416. Journal of geology. Chicago. v. 95. January-February, 1967. +Marine observer. London. 11. 4. February, 1987. +Mentor. New Iork. t i . 15. February, 1987. +Meteorological magazine. London. v . 61. January, 19.87. +SBvoly, F. Hauptsachlichste Beziehungen der ungarischen +p. 189- +Schunk, J. Fette und magere Jahre in der Vogelwelt. p. +Dutheil, Jean, & Dutheil, Madeleine. Labsorption de la +Reed, R. D. +Durst, C. S. 33-34. +Frazer, Calvin. Ground-hog clay. p. 50. +Brunt, D. Tornadoes started by an oil fire. p. 292-294. Busk, H. G. Land waterspouts. p. 289-291. Jeffreys, Harold. Climatk variation. p. 277-281. [Re- Climate through the ages.] Spence, M. T. Old fashioned winters. p. 281-286. Meteorological society of Japan. Journal. Tokyo. v. 4. Novem- +Sekime Yukio. On a design of calculator used for the observation of pilot balloon[s]. p. 284-289. [In Jap- panese.] Watanabe, Masayuki. On the seasonal variation of the die- tribution of precipitation in Japan. p. 269-284. [In Japanese.] Meteorologische Ztitschrift. Brannsehweig. Band 43. Dezember, +Albrecht, Fritz. Das Heiabandbolometer, ein Messgerlt zur Registrierung der direkten Sonnenstrahlung. p. 496-500. Albrecht, F. Versuche sur Messung der Effektivstrahlung. p. 493-494. [Abstract.] Angenheister, G. Das Problem der Schallausbreitung. p. 467-471. [Abstract.] Aufsess, Otto Frhr. v. u. z. Zusammenhiinge swieehen Sonnentiitigkeit und Luftdruckverteilung. p. 487-488. [Abetract. J +Wind and soil in the Gabilin Mesa. +The use of humidity observations a t sea. +p. 84-88. +p. +view of C. E. F; Brooks, +her, 1966. +1996. +MONTHLY WEATHER REVIEW JANUARY, 1927 +Mstcorolo . che Zcitschrift. Braunschweig. Band 43. Dazembar, +Baur, F. Dse Periodogramm des mittleren jahrlichen Luft- drucks in Budapest. p. 504-505. Defant, A. Primare und sekundare Druckwellen in der Atmos hiire. p. 475-477. [Abstract.] Ewald, &. Uber einen neuen Barographen. p. 501-502. Feige, R. Periodisch auftretende Fohne. p. 473-474. [Abstract.] Geiger, Rudolf. Bodennahe Luftschicht und Mikroklimtt. p. 480481. [Abstract.] Heidke, P. Zur Berechnung des Erfolges und der Gute voii Wettervorhersagen. p. 489-493. [Abstract.] Kassner, C. Ein Sturmwarner fur Fischer. p. 50S509. Kassner, C. uber internationale Meteorologenkongresse. p. 474-475. [Abstract.] +Kopp, . W. uber die potentielle Temperatur der Hauptiri- versionen. p. 471-473. [Abstract.] Lammert, Luise. Der abnorm warme Winter 1924/25. p. 480. [Abstract.] Lautner, P. Uber Erfahrungen bei luftelektrischen Mes- sungen auf der Zugspitze. p. 488-489. [Abstract.] Linke, F. Die Meteorologie im Dienste der Bioklimstologie. p. 466-467. [Abstract.] Mtiller, Max. Studien uber Wellen und Schwingungen. p. 478-480. [Abstract.] Myrbach, Otto. Ein Beitrag zur Frage nach kosmischen Wettereinflussen. p. 485-486. [On meteorological effect of meteor showers.] [Abstract.] Myrbach, Otto. Der Temperaturverlauf in Wien im Winter 1925/26 im Zusammenhang mit Sonnenfleckenliulmina- tionen und Mondphase. p. 486487. [Abstract.] Nesdjurow, D. Nachrrif an Paul Alfred Muller. p. 494. +1986-%1tinued. +[Abstract.] Perlewitz, P. Temperaturen an der Ostseite und Luft- stromunnen an der Nordseite winterlicher TiefdruckkorDer. p. 482-483. [Abstract.] Radakoric, M. Bericht uber die Theorie der Stermchuppen von Lindemann und Dobson. p. 441-455. Schinze, G. Die praktische Analyse der Fronten. p. 473. [Abstract.] Schmauss, A. Schulgemiisse und nichtschulgemasse Mete- orologie. p. 459-466. [Abstract.] Sedlmeyer, Karl Ad. Der Niederschlag auf der Sudseite des Ersgebirges als Funktion der Seehohe und des BBschungs- winkels. p. 505-506. Stade, H. uber eine zum Gebrauch an Polamtationen abgeanderte Form des Sonnenscheinautographen nach Campbell-Stokea. p. 500-501. StGbe, W. uber die Verarbeitung des im Flugwetterdienst anfallenden Materials. p. 483-485. [Abstract.] Stiive. Der Zusammenhang swischen der oberen und der unteren Druckwelle. p. 477-478. [Abstract.] Wigmd, A. Ladungsmessungen an natiirlichem Nebel. p. 481-482. [Abstract.] +Miner, Roy Waldo. The Bahamas in sunshine and storm. p. 688-604. [Includes description of the hurricane of July 25, 1926.1 +Dufton, A. F. Solar radiation and athermancy. p. 14. (Jam. 1.) Cave, C. J. P. Popular long-range weather forecasts. p. 52-55. (Jan. 8.) [Analysis of forecasts by Lord Dunboyne published in Daily Mail.] Forest destruction and its effects. . 37-39. (Jan. 8.) Jelstrup, Hans S. The aurora of Ectober 15, 1926, in Nor- way and sounds associated with it. p. 45-46. (Jan. 8.) Bonacina L. C. W. Polar pressures. p. 124. (Jan. 22.) Bswer, 6. Moms. Winter thunderstorms in the British islands. p. 123. (Jan. 22.) Shaw, Napier. Thermodynamic diagrams in the study of the u per air. p. 118. (Jan. 22.) Butler, k. P. Popular long-range weather forecasts. p. 164- 166; 167. (Jan. 29.) [Concerning the Daily Mail fore- +Natural hiakny. New Ymk. v. 26. November-December, 1986. +Nature. London. v. 119. 1927. +casts.] +Nature. London. v. 119. 1927-Continued. Eccles, W. H. Wireless communication and terrestrial mag- netism. p. 157. (Jan. 29.) [History of the name Heavi- side layer.] Keys, David A. The auroral green line 5577. p. 162. (Jan. 29.) G., E. Prof. A. de Quervain. p. 205-206. [Obituar ] Jeffreys, Harold. Atmospheric circulation. 194. (geb. 5.) Newnham, E. V. Tropical cyclones of the k!hic. .p. 218- +Dawson, W. Bell. Icebergs in relation to water-temperatures. 219. (Feb. 5.) [Review of work by.Visher.1 +p. 236. (Feb. 12.) +i\atiwe. Paris. 15 janviet 1987. Charcot, J.-B., & Idrac, P. Phenoinhe de depression atmos- pherique cr66 localement par un obstacle observe A lisle Jan Mayen pendant la campagne du ( Pourquoi-pas? p. 73-74. Mascart, Jean. Influence de la chaleur solaire sur les glaciers. +Talman, Charles Fitzhugh. Winds and weather a t sea. p +Kolharster, Werner. Holienstrrthlung und Heavisideschicht. +p. 81-82. +Nature magazine. Washington, D. (7. L. 9. January, 1967. +17-20. +Naturwissenschaften. Berlin. 15. Jahrgang. 4. Februar 1987. +p. 126. +Neiv York times magazine. N . Y . February 13, 1987. +p. 9; 22. +Physical society. Proceedings. London. 1 1 . 39. December 1.5, +A hydrometer employing +Die Erhaltung der Erdladung durch den Blits- +Les mouve- p. 598-604. +Royal astronomical society of Canada. Journal. Toronto. I,. 80. +Barnes, Howard T. Phenomena of the sunrise. p. 351-355. Hunter, A. F. Recent work in astronomy, and its allied sub- jects, in Canada. p. 309-321. [Including several meteoro- logical topics.] +Royal society of London. Proceedings. London. series A . v. 114. +McLennan, J. C., McLeod, J. H., & McQuarrie, W. C. An investigation into the nature and occurrence of the auroral green line x 5577 A. p. 1-22. +Hobbs, William Herbert. An explorers experience with the +Scottish geographicul magazine. Edinburgh. v. 43. January 16, +Ice ages and the geological history of climate. p. 31-40. [Review of books by Coleman and Brooks.] +Beck, X. Flugwetter. l!?~%en Walzencumulus in der Rheinebene bei Mannheim. p. 260-261. (Novbr.) Naegler, Wilhelm. Bemerkenswerte Temperatursprunge in den letzten Jahrzehnten mit besonderer Berucksichtigung slchsischer Verhlltnisse. p. 261-263. (Novbr.) Pfaff. Wodurch wird der Wettersinn des Menschen ausgelost? p. 263-264. (Novbr.) Schmtuss, A. Schulgemasse und nichtschulgemasse Meteo- rologie. p. 241-258. (Novbr.) Grosse. Die Temperaturabweichungen in den ersten 300 Monateii dieses Jahrhundrerts und ihre Ekziehungen sur Stundenhaufikeit der Windrichtungen. p. 276-281. (Dezmbr.) John, Herman. Zur Technik der Drachen rind Fessel-Ballone. p. 281-288. (Desmbr.) +Talman, C. F. Wrack and ruin follow the ice storm. +1967. +Griffiths, Ezer, R Awbery, J. H. glycerine. p. 79-84. +Wigand, A. strom. p. 65-69. +Virville, Ad[rien] Davy de, & Obaton, F[ernand]. menta douverture et de fermeture des fleura. [Relations to atmospheric conditions.] +Physikalische Zeitxhrift. Leipiig. 88. Jahrgung, no. 2. 1927. +Revue g d n h l e des sciences. Paris. ST. an. 16 riooenibre 1966. +November-December, 1926. +February, 1927. b +ScientijEc monthly. New York. v. 84. January, 1967. +Greenland glacial anticyclone. p. 71-73. +1987. Newbigin, Marion I. +Wetter. Berlin. 43. Jahrgan +.., +,. diff --git a/office/regression/000_000230.txt b/office/regression/000_000230.txt new file mode 100644 index 0000000..85aefec --- /dev/null +++ b/office/regression/000_000230.txt @@ -0,0 +1,666 @@ +DECEMBER, 1903. MONTHLY WEATHER REVIEW. 573 +for which we can also write, +4 A But P~~ = is the vertical velocity of ascent, corresponil- zXdaf,"oo +ing to a definite density x,,,, of the air, and to the correspond- +ing buoyancy appropriate to it. With this notittion we obtain +or ap1)roxiIuately - +I' = I %,, +$;. +Hence, the velocities of ascent are inversely as the Gth root +of the corresponding air pressures. +According to the preceding tlie maximuni height that an +elastic balloon can attain clepentls iiot a t all on tlie size of the +balloon, the nature of the gas with which it is filled, etc., lmt +only upon the capacity of tlie material for elastic expansion. +The great,er the volume of the elastic coveriiig can become +without bursting, so much the greater the height. The size +of the balloon is only to be considered in ho far a:, tliiit i t +must be sufficient, without being too greatly espamled. to gil e +the buoyancy necessary in order to raise the bnlloon and the +instruments. Tlie ballooiis met1 heretofore. a:, furnished by +the Continental GummifaLrik in Hanover. can easily stretcli to +double their diameter n ithout bursting. Therefore. the height +they will attain is about lS,OOO meters. +The following table will be of use in the einploynient of +india rubber balloons. The first coluinn sliows the density of +the air, the seconcl tlie altituc1e, the third the ratio ('.the fourth (I ,, +theratio , the fifth the ratio of the ventilation, or of the +('0, +mass of air flowing past the 1)alloon. +-~ - +Ikiisily +of the sir. +I . 2s +1.1!1 +1.13 +I .0 i +1.01 +0. 96 +u. 91 +U. S i +0. s2 +0. 7s +0. 74 +IJ. 711 +0. 66 +0. 6:: +0. 39 +11. 56 +0. 53 +Blti- +tlldl.. +l,, +1. 00 +I . (I' +1.04 +1. I).-, +1. O i +1. IJ3 +1.11 +1. 1 3 +1. 15 +1. l i +1. 15 +1.21 +1.24 +1. 21; +1. 2!1 +I . 31 +I . Y6 +.l t ,' l ' ,, +1.110 +1 .0 1 +1. u:: 1. I):{ +1. u4 +1. 04 +1. IJ5 +1. Ill; +1.0; +1. IJS +I . I19 +1 . 10 +I . 11 +1. I:! +1. 1:; +1. 14 +1. IS +r l ,r l a , +I . RG +1. ::!I +1.41 +1 .4 4 +1.49 +1.5; +I . G7 +1. it: +1. H i +1.91 +~~~ ~ +1 ,' , :',, +~- +I . 16 +1. IS +1. I!l +1. 211 +I . '1" +1.25 +I.!!!) +I . 3:: +1. :x +1 .ss l,!l9 , 1.41 +2.Ili 1.44 +?. IS 1.4s +2. I.-, , I . 5n +2 .z +~ +1.51 +?.2 S +~ +1.51 +0.46 +0. 44 +0. 43 +11. 41 +0. 31; +0. x:! +0. I S +10. 25 +0. "I +0. 3 1 +0. IS +0. I6 +0. 11 +0. l:j +0. 111 +0. os +Table I? s h o w that very considerable heights can be +attained with closed rubber balloons i f they can espand to +more than twice their original diaiiieter. I n practise, however, +the misfortune is often noticed t,liat the enrelopes in expand- +ing develope sinall holes tlirough which the gas rapidly +escapes. In such cases i t happens that the balloons (10 not +explode although the altitudes that they can attain under +such circuinstances are very considerable, such as 12,W)O- +13.000 meters. +However, in such cases we lose one advantage whicli Assmann +iiiore especially has pointed out, namely, that a closed l~alloon +FC +11-2 +ascends with increasing velocity and does not maintain any +position of equilibrium. The leaky balloon floats for some +time a t the highest altitude, so that the thermometers have +no proper ventilation, and then descends too slowly. On this +account, it would be well in all cases to give the balloon, by +a strong distension in the beginning, a more than sufficient +upward impulse, so that in the first place it will certainly +explode, ani1 in the second place be suficiently ventilated. +The fact that the velocity varies inversely as the 6th root of +the pressure, therefore, increases somewhat slowly, iiiakes a +great velocity in the beginning particularly desirable. +If me take the product of the vertical velocity by the density +of the air :IS the measure of the ventilation) then in the vicinity +o f the surface of the earth and a t 4 meters per second this will +lie 5 , h i t a t an altitude of 20,00() iiieters where the velocity, +nccvrcling to our table, has risen to G meters per second, the +ventilation will be 0.65. The latter figure is certainly no +longer snffic.ient to protect even well sheltered thermometers +axainst radiation. According to our esperieiice we must at- +tain a value of 1. This figure. however. requires an initial +ascensional velocity of 5.7 iueters per second. a velocity that can +easily be given to rubber balloons. For still greater maxiinurn +altitudes a still greater initial velocity must be given. For +these asceiicliag velocities, however, one intist use very sensi- +tive instruiueiits and iiot slug@ thermometers. In Stras- +burg, since the introduction of tlie closed rub1)er balloons, me +have with great success met1 the tubular thermometer, de- +scribed by me in the protocol of the Conference of the Iuter- +national Coniiuission for scieutific balloon ascensions a t Berlin. +This theriiiometer lias a sensitiveness more than suficient to +enable it to recortl properly during the above desired velocity +of ascension; it also possesses the lightness (weighing with the +clock mil protecting case 33) grams) necessary to make it +possible to rise with ruliber balloons of 1.50 meters diameter. +The further advantages possessed by the rubber 1JallOOllS +have been SO fully described by the inrentor, Dr. Assmann, in +the protocol to the abore-mentioned conference that I do not +need to go into any ftirtlier details. I will only close with the +wish that tliej- may be used frequently and with good results. +DETAILED CLOUD OBSERVATIONS. A PROGRESSIVE +PHASE IN WEATHER FORECASTING. +U! F:ev FRLULKI~ h I , l l r ,r \n i ~ 1 1 . 9 .T , dntr~l .Talluar~ S 11104 hIet?orulogicsl Obserrs- +tarn tbf ht. 1g11.lt1ua C O I I ~~~, I iprriau;i, o L o +Isobars have formed the stepping stones on which weather +forecasting has mounted to take its place among the sciences. +The dailj sur^ ey o f the atiiioslhere a d the publication of +weather iuaps hare enaldecl meteorologists to bring out these +ftiots: that tlie /i r t /)c w of (nir nentlier depends on the configu- +ration o f isobaric. lineh, but its r i i /+w s t /y on their gradient. +With these t n o lninciples to start with, a few decades hnve +sufticecl to de\ elop a iiietliocl of forecasting that lias met +with very encouraging rehults ant1 11:~s been of great value to +iuoht varied classes of interests. But. in spite of these suc- +cesses, tliere is a prevailing conviction aniong forecasters that +in the face o f great clifticulties progress. a t tlie present time, +is checked. +In spite of telrgrapliic bysteins aiid the imp material a t our +disposal twice each claj-, certain obstacleh bar our further +aclvance \thich iiiay l w siitniuecl up as follows: +1. We iiiih:, iuaiiy nn important detail in the iiiap. +I?. We are often left ignorant of tlie sudden formation or +dissolution of highs and lows. or of cliaiiges in their intensity. +3 . Tlie irregular progrebs of some isobaric systems can not be +detected on, IJr inferred from. even the most perfect niap The +initiated will hardly call for a proof of this statement. But +how are we to mend our condition Y -4 thousand stittioiifl +woiild linrcllg bring out the necessary cletail in a nap; and, +even if they did, the changes in atiuosplieric conditions would +574 MONTHLY WEATHER REVIEW. DECEMBER, 1903 +make the map unreliable for the hours which intervene be- +tween the morning and the evening report. Moreover, a +change may occur even during the short space of time that +elapses between the observations and the compilation or util- +ization of the map. Continuous teleonieteorology might offer +an eficient remedy, but that must be considered, for the pres- +ent a t least, as a scientific utopian dream. +Much diligence and eminent talent are being brought to +bear on nieteorological problems. There is great activity +everywhere; the atmosphere is sounded by menus of kites and +balloons, clrtta are collected and collated, Init the results ap- +parently answer the * how and the 6 wherefore o f the +theorist, rather than the pleading what and when o f tlie +solitary forecaster, to whom the public looks for definite iu- +formation, and who stands or falls by his personal wits. +It is fair, therefore, to say that the weather niap alone, +though an indispensable help, will not advance the science of +forecasting much beyond its present stage. We have read +everything out of the i m p which beeins contained in i t : still +we are often a t a loss, often a t fault. It will be wise, there- +fore, to look elsewhere in the hope of striking a nen trail, +which will advance 17s another step such as that taken \\hen +we began to consider the configuration of isobars. +For quite a run of years. while constantly and diligently +observing the clouils [as they come and go in their varied +forms and directions, their different colors and speecls] the ccm- +riction has firmly taken liold of me tlint they have more to +tell than we have hitherto bupposecl. I believe that a system- +atic ancl detailed study of the clouds will. to say the leabt, +advance us one more step in the science of forecasting. Poh- +sibly that step mag be iuiicli more progressive than we can c)r +dare imagine a t the present nioment. +This conviction is chiefly based on m y personal experience ; +yet it seeins that auy one who considers tlie nature of clontls +bught to come to the same conclu5ion. C~OUCZS are the iiume- +cliate product of weather conditions, not iiideecl directly over- +head, but a t some distance froin us. We have here a relation +of cause and effect. Similar causes are followed l,y siinilar +effects. The coinbination of weather elements is varied, but +any variation here will produce a corresponding change in the +effect, namely in the cloucls. I would, therefore, consider +cloucl as an index; as a hieroglyphic language of the weather, +if ,you will, written against the blue sky. I f they are unin- +telligible to 11s it is not natures fault; she never writes in +meaningless scrawls. +What attempt has thus far heen macle to decipher this +script? We have picked out ten or a dozen cloud forms and +observed these in a way. But is it reasonable to expect that +the ever changing weather in its endless variety can be de- +picted by means of 10 simple signs? Abercromby seeiiis to +me to contradict himself, when he writes within the space of +three pages the two following passages. After referring to his +catalogue of 10 cloud forms, he says: +Almost all the smaller varieties are so rare or tran4ent that for ~~r a c - +timi purposes they IJP neglected. IJllt if. un the contrary, the 1u main +words are reqtrictecl to tlie forms of cloud \\e hare (I +them * * * then tlie author can +observaticin in all lon~itucle+ and i n latitud +5 5 O bouth, that gU per cent of skies in e ~e +sufficiently accurately defined liy these 10 a +Two pages further on he remarks: +We have seen that there ih a fine-weather c.umulus, as well as cuiilulo- +nimbus, a fine-weather, as well as a dangerous cirrus, while fieecy +have not the same import in L ~n d ~i i as on the etluator. In pract good and bad forins can rarely be mistaken, hut sometimes very difficult +cases arise. Clouds. in fact, tell us by their appearance, what might l w +written in words. that more or less damp air is rising or falling under +certain conditions uf upper ancl lower wind currents: the significance +must be judged hy the siirrounding~ and antecedents, just as the zeu+e +of many words can only I J ~ judged IJY the (.ontext. ________ - +Weather, p. 118. 2 Ibld, p. 12u. +We must remark, that there is nothing so small in nature +that we mag neglect it with impunity. It may be possible +with these 10 forms to define the general appearance of 90 per +cent of skies; but 95 per cent of observers would be able to +conclude precious little about the weather conditions under +skies so vaguely described. Then the certain conditioiis, the +surroundings and antecedents, whicli are written in the clods- +these are the very things we wish to get at, and I doubt +seriously i f 10 words are sufficient to describe the great nuin- +ber of combillations furiuecl by neather factors, ~l i o s e esist- +ence must, be and is eqwebsecl in cloud lnnguage. +Cloud +language ant1 cloucl clidect seem to promise the much coveted +aid, and percliaiice this language mill be as serviceable as is +tlie incomparable barometer. +If the sky were as iutelligible to us as is t,he daily weather +niap wfth its isobars, isotlierius, wind direction, and velocity, +we could follow weather changes n itli solliething like the cer- +tainty uf a sldled pliysicinn watching the syiuptoms of his +patient toward recovery or total collapse. This knowledge, +and the facility in using it, can be acquired only with patient +and SJ steiuntic labor. We must study the letters, the words, +and phrases of clou(l language. I n the beginning. no doubt, +i t will be :L task no less arcluous than that undertaken by thobe +who fii ht decil)liere(l liieroglppliic inscriptions, but it seems +no lesh 1)roiuisiiig. +Some 1)rogress has already been iuade along these lines. +11-e have the 10 cloud forms. laid as a founclation by the in- +teriiationnl cloud cwnimittee. Blue Hill, Upsala, and several +other observatories have clone very efficient work. Still these +are isolated atteiu1)ts. and it is to l ~e feared that there are too +fern who are really interested in this iinportaiit subject, oning +to its primitive condition, niid p e r h n p to a lack of metliocl- +ical clirectiuns in its pursuit. +For these reasons I liave attelIIlJte(1 to piit the subject in the +light in which I view it, and will giie tlie clnsbification used +a t the Meteorologicd 0l)servatory of St. Igiiatius College, to- +gether with wine of our iilethocls. reseriiiig the finer tletails +for sn1,sequent articles i f the subject hliould prove interesting +to tlie readers of the RET-IEW. +PIInuy will, no doubtm, be shocked by our elaborate catalogue +of cloud varieties, but it lias nlreatly 1)een stated that the +simple, tliongh funclamental c7ivisions of the Iiiteriiational +Cloud Coininittee can do nothing to advance the science of +fiwecasting. These are a part of tlie A, 13, C! of cloud lan- +guage, and will remain so unless we progress. +Abercroin1,y lias correctly stated tlie practical object of +cloucl study when he says? +Thp fi)iinilatioii o f all modt.rn ~~l o 1 1 1 1 l i n i ~\r l i ~i l ~~ turns roniiil the rela- +tia3n o f i ~l o u d forniz to shalws o f isoLni>. +Now, there :ire more than 10 staple foriiis o f clouds, each of +nliich has its own peculiar significance. because it is the pro- +c1uc.t of a peculiar conibinatiun of weather factors, and we can +not, therefore. neglect any one of tlisiii without running the +risk of leaXing :L very seriouq gap in the s>steiuatic knowl- +eclge we are :tn.;ioub to acqnire. It will be our task to recog- +nize aiid record all staple cloud forms, together with the at- +mospheric condi tioiis that precede, acconipany, or follow them. +If I am told that cirrus preceded a certain storm, I know very +little, siiice I ha\ e many forms of cirrus in mind, and i t would +interest me to know precisely which form \vas observed in +that particular ewe, and, more than this, there are many in- +terebting, intelligible points about eT-erj- cloud that demand +recognition and interpretation. It is evident, therefore, that +cloud language ant1 cloud study can not be so siiiiple as seems +to have been taken for grantecl in a11 instructions to observers; +one will prove as coinplicatecl as the other. +Here. then. is evicleiitly an oliportunity for progress. +-_ +JVeather, 11. 122. +DECEMBER, 1903. MONTHLY WEATHER REVIEW. 575 +I n setting forth our system of species and varieties I have +added no definitions, as the names, for all preient purposes, +are suficiently self-esplanatory. It has been my endeavor to +make the classification as rational and exhaustive as possible. +Hence, principles of division were assumed, which mill coTer +the whole field, ancl are so simple and elastic that they inay +be applied to the most peculiar climate or sky. I n judging of +the cletail in classification, I would caution the reacler to re- +member that this is the particular dialect of cloud language as +it is found in ancl around C'leveland, Ohio. How it mould work +in other regions I know not, though it occurs to me that sev- +eral good exact monographs for fipecial localities could later +on easily be reduced to a universally practical system. +Dr. Hann remarks in a note to his chapter on cloucl classi- +fication :' +The inexpedience of atteinpts to clct4fy cloi I J n purely genetic and +physical prinuiples, i. e ., nitliout a iiiorpliok a1 lmsis, has lwen in- +sisted on repeatedly. +The reasons are plain. Our present linowlec1,rre of the causes +of difierent cloucl forms is too limited to establish a natural +classification. Even i f me understood the genesis of cloucl +forms, the huinaii eye and the cloud forms will always remain +the only factors on which the observer must rely for his incli- +cations of the coming weather. +What is desirecl, therefore, is an erhanstive, or, a t least. an +espansive system of cloud forms, even if it, be art,ificixl, arounil +the elements of which we mag group the results of our obser- +vations. Our classification of c.loucls will naturally follow tlie +mine laws and pass through the same stages as did the zoologi- +cal and botanical systeiiis of Liiinwus. +Gratitl diuision (p i i t nntrcrr or inntrrinl f!f +thP C Z O /d ). +Class I. Ice cloucls: Crystals. +Class 11. Watery clouds: Solid mater particles. +S'ditlitwioti i)ito-fiondi~.s (p r i w i ~i Z t ~ qf dirihti-thr e.rft~isioi/ (f /1 1 ~ +rloutl). +Family I. (The line.) Cirrus: Fiber cluucls. +Family 11. (The surface.) Stratus: Layer cloucls. +Family 111. (The solid.) +With these five elenients, obtained 11s divicling according to +nature aiid extension, we have five genera of cloucls, a division +which is exhaustive and conies very near to that of Howard. +Cumulus: Lump clouds. +TI1 f, .t? 1.6, y ' l / P rn. +1. Cirrus. +2. Cirro-stratus. +3 . Cirro-cumulus. +4. Stratus. (a) Alto-Stratus. +5. Cumdus. (0 ) Alto-c~1~dut;. +(h ) Low stratus. +(h ) Low C U I ~U ~U S . +by dorrd.-High level, 30,000 to 27,000 feet: +(2 ) Streamer. +(3 ) Plume. +(1) Wisp. +ni i r isio it i f 0 sp"c I P S (1) r iu r Qi1P-t 11 P !j ~u t w i l o ii t I t )/ e or rsttvt s i v n ) . +C'irrns. (1) Fiher. +Cirro-stratus. (5) Baacl. +(6 ) Bar. +(7 ) Patch. +(8) Veil. +(10) Ch-o-cumulus balls. +Cirro-oumulus. ( 9) Cirro-cumulus pellets. +4Lelirbuch, p. 263. [Genu. Ed.] +ITl'ater cloud-Central level, 12,000 to 15,000 feet: +Alto-stratus. (11) Gauze. +(12) Band. +(14) Cover. +(13) Patch. +Alto-c~1mulus. (15) Alto-cumulus ba11~. +(16) Alto-cumulus plates. +Iliittv- rlvutl.-Lower level, 2000 to 6000 feet: +Stratus. (17) Sheet. +(18) Cover. +Cumulus. (19) TVoolpack. +(20) Mountain. +(21) Roll-cumulus. +(22) Strato-cu1uulus. +(23) Wrack. +(21) Fog. +From the above it is apparent that clouds may be naturally +and exhaustively cliTicled into species on the principle of gen- +eral outline. There are, however. cliflerentiations of species +constituting varieties, which, though easily and generally +nrerluoked. :we of the very greatest import, since every turn +in a staple form must have a corresponding cause in the com- +bination of weather factors that produced i t ; ant1 it is here +that we depart on new lines. What others have heretofore +clesignatecl trifles, that we now take up. suspecting them to +contain the very knowledge we are after. +I)(ffwi,ttntiolts (constituting varieties) mag be observed in: +(a). The general outline. +(11). The surface. +(c). The organization. +OUTLINE. +Hooked. +Bent,. +Branched. +Pectinate. +Screwecl. +Curved. +Tangled. +SUKFhCE. ORGANIZATION. +Undulating. Flaky. +Drifted. Granulated. +Warpecl. Watery. +Rippled: Fibrous. +Banked. Lumpy. +(a) Plain. +(b ) With interfer- +ence. +Furrowed. Marbled. +Striated: +((0 Lengthwise. +(h ) L4cross. +(c ) Obliquely. +Headed: +(I / ) Forward. +(1 )) Backward. +Wispy. +Tapering. +Feathery. +Fleecy. +Fringed. +A combination of one of these adjectives with one of the +names in the list of species makes it possible to perfectly +designate ant1 register a large number of staple cloud forms. +Certain storm clouds are so independent ancl so well organ- +ized that special terms are required to fully describe them. +They exhibit peculiar rlerelopnients. which I will call processes. +1. &lamm,u. +2. Antlers. +3. Beards. +4. Trailers. +5 . Fringe. +The well-cleveloped thunclercloud shows some or all of the +-4t /op : (1 ) Beak (forward). +Eelurr,: (1 ) Ram (front). +following processes : +(2 ) Spur (rear). +(2) Ruclder (rear). +576 MONTHLY WEATHER R;EVIEW. DECEMBER, 1903 +These four, when they occur combined together, have long +Besides this classical ago suggested the name of anvil cloud. +form I may mention: +1. Cloud wedge. +2. Crescent. +3. Funnel. +4. Umbrella cloud. +Thus far I have made use of form only and have shown that +all clouds may be fully described according to a uniform prin- +ciple. But it is not the form only which has its story to t,ell; +on the contrary, form tells but half the history of the cloucl. +If we desire to derive all the information possible we must take +in the accidentals. These may be grouped under the follow- +ing heads: +1. Condition. +2. Motion. +3. Distribut,ion. +4. C!olor. +Condition: &lo tion : +3. Stable. +4. Forming. +5. Breaking up. +6. I n transforniation : +From-to. +Distribution: +1. Isolated. +2. Scattered. +:3. Flocked. +4. Aligned. +5. Radiate. +6. Continuous. +7. Coalescing. +1. +2. +3. +4. +5 . +(i . +7. +8. +Color : +1. +2. +3. +4. +5. +6. +7. +Slom. +Rapid. +Average. +Boiling. +Encl on. +Broad side on. +Aslant. +Direction w1ienc.e. +White. +Blackish. +Red. +Yellow. +Green. +Iridescent,, with. . . . +as prevailing color. +C h y . +v +The 1)rngrani of a single cloud observation will be. as followb: +We are to determine, (1) the species aiiil \ariety; (2) pro- +cesbes; (3) conditions; (4) elements of motion; (5 ) clistribu- +tion; ( 6 ) color; (7 ) configuration of isobars. +The answers to the firht six points are enterecl by means of +symboiic signs in one column of a journal, and in a coluiiln +parallel to this :we to he entered the configuration of ibobars. +together wit11 the state of the weather. Regarding the con- +figuration of isobars, it is evicleiit that most attention must be +paid to that system under whose control the ohserver happens +to be a t the time of observntion. The final alii1 crowning +work \\ill be the collating of the two columns. These mill in +the course of time show repetitions, regularly recurring mho- +ciatioils of cloucl forms and type of weather, and s~tch ~g r r l o ~ +associntions n w tlir r.rlu*f-ssio,i qf n loti, (f )zntuw: the) will form +laws for the forecaster. By such method only shall we reach +any practical results in cloud study. I n way of consolation +for those who find this method too elaborate or too difticult. I +will quote a few lines froin Clement Ley.5 +All said then. and dour. the laud of i.louds is not eutirel) oui' (i f fancy. +The art of distinguishing ant1 o f risrfril playing tlir ili4inction.s IIC- +tween the vaiieties of clout1 is not nra +which the amateur engages Iiim+t~lf f i r tlir +very cursory aciluaintance with tlir laliois o +if it is uot insiilious to say this o f C+er~uan and Aiiirricnu writer+-sati&r, +every one as to the fact that therr is also a 5c.iencr of nryhologg. na+iwut +though this scieuce may be. Hcw ('an practibe anil knuwle(lge lie most +successfully promotril ? +To this question, as put by RIr. Ley, I mould answer: By +systematic and detailed cloud olwervations; by attending to the +so-called fr(Pes. +5 Cloiidlantl. 1). 201 +I might enter into some very interesting details myself, but +since it is my object to shorn that cloud study, as a scientific +branch of meteorology, is something more thau noting one of +10 cloud forins opposite a given date, but I will close, hoping +that some of the readers of the REVIEW will interest themselves +in one of nature's most interesting languages and lend a help- +ing hand in interpreting it ani1 teaching it to others. +' +~ +__ +METHODS OF FORECASTING THE WEATHER. +A Lecture ilelivererl hp Prof. Dr J. 31 Peruter to tlie A-sociation for the Advancement of svieotilic Kuunl~dge, Vienna. .Ienuar) 14. 1903. Trm~slaterl from the Vot trage dcs Verpiue* L i i r V d w i t ~i i i ~ untiiraisseir~rlinttli~ her Keuntuisse i n Wicu .13d Jebrgang, +Hf*ft 14 +Allow me to-clay to adclress yon once again on the subject +of weather prophets, and this time to bring before you not +only one or two kinds of weather forecasting, but to give you +a more general survey of all methods a t present in use, be +they right or wrong, with or without results. I will keep +strictly to the title of this lecture and give the prominent +place to the iiiethocls of forecasting. I shall esplain them and +subject them to critical analysis, naming a t the same time the +advocates of each of the various methods; in the technical inves- +tigation, me have to do with the value of the methods anil not +that of the persons. I must, lionever, at once bring promi- +nently forward the fact that 11 e have a t present, unfortunate- +1y. no method bp wliich we can forecast the weather with ab- +solute certainty even for one day in advance, to say nothing +of longer periuds. Thib is already self-evident from the fact +that we are now able to speak of many methods of forecasting, +whereas if there were a sure ani1 infallihle method, then i t +woulcl be out of Illace to speak of the other methods to this +soc,iety for the ndvniicemeiit of scientific knowledge. +All methods of weather forecasting, not excepting those in +use by the central meteorological offices, are based upon ob- +serrecl weatlier conditions and have, therefore, an empirical +founilatioii. Many of tlieiii do not elen make the slightest +attempt to put their methods on a theoretical basis and content +themselves with setting u p &'weather rules. " Even the scien- +tific iiiethocls of profe onal meteorologists have not yet suc- +ceeded in cleclncing a theory capable of determining in advance +the clirtnges of the weather ah the effect of one or several +known causes. Only the advoc:ttes of the influence of the +moon hare veiit8ured solely by means of aprioristic theories to +l.calcnlate" the weather for long periocls in advance. +There are many widely different methods by which the va- +rious Glasses :ind kinds of weather prophets c y r y on the mark +of weather forecasting. There are those who iiiake use of the +behavior of animrls to foretell the weather; hunters who rec- +ognize the cliarncter of the apprnaching seahon from the ac- +tions of the wild animals; the observers of lirds. spiders, +crickets, ants. and other aniuials from whose conduct they +judge of the approaching weather. But in aclilition to tliis class +which utilizes living animals there is another opposing class +that prefers to inake use of the dead substances of the animal +or regetable kingdoms, such as hairs, strings of instruments, +roots and fibers of plants; by iueans of their espansions or +contractions, either with the aid of little weather houses and +figure6 or without them. they recoguize the coming weather. +Others prefer to consult stones ani1 walls as to the character +of the weather to be expected, ani1 turn rather to inorgmic +nature in order to learn froni the '*sweating" or Jryness of +these whether to espect rain c)r continued fine weather. Thus, +as you see, all the kingdoms uf nature are drawn upon to fur- +nish prognostics of the weather, and it may de1)encl upon tlie +occupations rind predilections of the various persons in- +terested in the coming weather mliether they give the +preference to one or the other. But I had almost for- +gotten to inention another class-perhaps the largest- +those who are not to be satisfied by any one of the three king- +cloms nor even by all three together, ani1 who rely only on diff --git a/office/regression/000_000284.txt b/office/regression/000_000284.txt new file mode 100644 index 0000000..fa034f2 --- /dev/null +++ b/office/regression/000_000284.txt @@ -0,0 +1,524 @@ +The Journal of Nervous and Mental Disease + +(C) 2000 Lippincott Williams & Wilkins, Inc. + +Volume 188(3), March 2000, pp 135-140 + +A Critical Time Intervention with Mentally III Homeless Men: Impact On +Psychiatric Symptoms +[Articles] + +HERMAN, DANIEL D.S.W.1; OPLER, LEWIS M.D., Ph.D.2; FELIX, ALAN M.D.3; VALENCIA, +ELIE J.D., M.A.4; WYATT, RICHARD JED M.D.5; SUSSER, EZRA M.D., Dr.PH.6 +1 New York State Psychiatric Institute and Department of Psychiatry, Columbia +University College of Physicians and Surgeons, 100 Haven Avenue, #31F, New York, +New York 10032. Send reprint requests to Dr. Herman. +2 Albert Einstein College of Medicine and New York State Office of Mental +Health. +3 Columbia Presbyterian Medical Center and Department of Psychiatry, Columbia +University College of Physicians and Surgeons. +4 Joseph L. Mailman School of Public Health, Columbia University. +5 Neuropsychiatry Branch, National Institute of Mental Health and Department of +Psychiatry, Columbia University College of Physicians and Surgeons. +6 New York State Psychiatric Institute and Joseph L. Mailman School of Public +Health, Columbia University. +This work was supported by grant MH-48041 (E. Valencia, PI) from the National +Institute of Mental Health and NIMH Research Scientist Development Award +MH-01204 and a NARSAD Young Investigator Award to Dr. Herman. + +---------------------------------------------- + +Outline + + Abstract + + Methods + + Subjects + + Intervention + + Measures + + Data Analysis + + Results + + Discussion + + Limitations + + Conclusions + + References + +Graphics + +Table 1 +Table 2 + +Abstract + +We describe the impact of a psychosocial intervention, critical time intervention +(CTI), on the cardinal symptom dimensions of schizophrenia, namely negative, +positive, and general psychopathology. Ninety-six men with schizophrenia and +other psychotic disorders who were discharged from a homeless shelter were +randomly assigned to receive either CTI or usual services only. CTI is a +time-limited intervention designed to enhance continuity of care during the +transition from institution to community. Symptom severity at baseline and at 6 +months was assessed using the Positive and Negative Syndrome Scale. Using data +on 76 subjects for whom we have complete symptom data, we assessed the impact of +CTI on change in symptoms. The results suggest that CTI was associated with a +statistically significant decrease in negative symptoms at the 6-month +follow-up, reflecting modest clinical improvement. There was no significant +effect on positive or general psychopathology symptoms. + +---------------------------------------------- + +In an earlier publication, we reported the results of a randomized clinical +trial demonstrating the effectiveness of critical time intervention (CTI) in +preventing recurrent homelessness among homeless men with schizophrenia and +other psychotic disorders (Susser et al., 1997). Here we describe the impact of +this psychosocial intervention on the cardinal symptom dimensions of schizophrenia, +namely negative, positive, and general psychopathology. + +Typically, traditional antipsychotic medications produce significant improvement +in hallucinations, delusions, and disordered thinking-so-called positive +symptoms-whereas they are relatively ineffective against the apathy, blunted +affect, and social withdrawal that characterize the negative symptom domain in +schizophrenia. Recent studies have suggested that the newer antipsychotics, in +contrast to standard or conventional antipsychotics, might treat negative and +general psychopathology symptoms in addition to positive symptoms (Beasley et +al., 1997; Chouinard et al., 1993; Marder and Meibach 1994). Although few +studies have focused specifically on the impact of psychosocial interventions on +symptom clusters in schizophrenia, a recent meta-analysis of the effectiveness +of psychosocial treatments in schizophrenia (Mojtabai et al., 1998) suggests +that such interventions, in conjunction with somatic treatment, may have a +greater effect on negative symptoms than on positive or general psychopathology +symptoms. + +Discontinuity between institutional and community treatment is a critical +problem (Dorwart and Hoover 1994; Olfson et al., 1998) that has contributed to a +range of negative outcomes among persons with severe mental illness after +institutional care. CTI is a time-limited intervention that overlaps the period +before and after discharge from the institution to the community. A key aspect +of CTI is that the post-discharge phase of the intervention is delivered by +staff who have established relationships with patients during their institutional +stay. CTI shares with long-term assertive community treatment models (Lehman et +al., 1997) a focus on stabilizing patients in the community through "in vivo" +development of independent living skills and by building effective support +networks in the community. The emphasis, however, is on maintaining continuity +of care during a critical period of transition, whereas primary responsibility +is gradually passed to the existing supports in the community. + +In our randomized clinical trial of CTI among severely mentally ill men being +discharged from a shelter to community living, we found the intervention to be +associated with a significant, lasting reduction in post-discharge homelessness. +Although CTI was designed specifically to prevent homelessness, we speculated +that it might also have a favorable impact on important clinical outcomes. In +the analyses below, we examine whether, in the context of treatment with +maintenance antipsychotic pharmacotherapy, this psychosocial intervention is +associated with differential effects on positive, negative, and general +psychopathology symptoms, respectively, over a 6-month follow-up period. + +Methods + +Subjects + +The methods of the CTI study have been described in detail in our previous +report (Susser et al., 1997). Briefly, the subjects were patients discharged +from an on-site psychiatry program in a New York City men's shelter to +community-based housing. All patients of the program had severe mental illness, +usually schizophrenia or other psychotic disorders such as bipolar disorder. The +vast majority were African-Americans and Latinos. + +The on-site program, described in detail elsewhere (Valencia et al., 1996; +Valencia et al., 1997), treated 60 to 80 men at any given time, providing +outreach and rehabilitation services and preparing them for housing in the +community. Patients who completed the on-site program had access to a broad +spectrum of supportive housing in New York City, ranging from intensively +supervised community residences to single-room-occupancy hotels with on-site +social services. Nonetheless, a significant minority of men could not or would +not be accommodated in any of these settings and were discharged to family, +friends, or miscellaneous other arrangements. + +Over a 2-year period (1991 to 1993), all 102 men who were being discharged to +housing in the New York City region were invited to participate in the clinical +trial. Ninety-six (94%) chose to participate and signed an informed consent +form. After their housing placement had been selected, these men were randomly +assigned to receive either CTI or usual services only (USO). The men in the CTI +group received 9 months of CTI plus usual services and then usual services only +for the following 9 months. The men in the USO group received usual services +only for the entire 18 months of the study. + +Complete follow-up data on homelessness-the study's primary outcome-was obtained +on the entire sample. To maximize follow-up on the primary outcome in the +context of a limited budget, symptom ratings and other measures of clinical +outcome were not collected on subjects enrolled during the latter stages of the +study. We report here on the 76 subjects (38 in CTI and 38 in USO) for whom we +have complete symptom data at baseline and at 6-month follow-up. When we +compared these 76 subjects with the remaining 20 subjects on demographic, +diagnostic, and homelessness variables, we found no significant differences +between groups. + +Intervention + +CTI has two components. The first is to strengthen the individual's long-term +ties to services, family, and friends. These supports are potentially available +in varying measures, but mentally ill individuals and those upon whom they +depend often need assistance to work with one another. The second component of +CTI is providing emotional and practical support during the critical time of +transition. During a stay in an institution such as a large shelter, an +individual may develop strong ties and become used to having many of his social +and physical needs met on-site. The return to a possibly isolated and destitute +life in the community, however welcome, can be emotionally painful. + +For each man randomly assigned to CTI, the clinical team devised a plan for the +transfer of care to other formal and informal supports. For this purpose, the +team identified one or two specific areas of potential discontinuity that were +related to the risk of homelessness for that individual, and in which intervention +was likely to be effective in preventing homelessness, for instance, medication +adherence or money management. Each man was then assigned to a "CTI worker" to +implement the plan. This worker did not need to have a professional degree but +did need to have experience working with this population and enough "street +smarts" to work in vivo with these men in the community. A psychiatrist or other +mental health professional supervised the CTI worker. + +To implement the first component of CTI, the strengthening of long-term ties, +this CTI worker provided support for both the man and those who could assist him +in the areas of treatment that were selected. This generally entailed visiting +the family home or community residence, being present at appointments, and +giving advice in crises. The CTI worker often functioned as a mediator, helping +to ensure that the man and his supports communicated until they had negotiated +workable relationships between themselves. When this approach failed, the CTI +worker could intervene directly. Occasionally, the man was transferred to +another community service. He could also be relocated to another residence where +his particular form of disturbed behavior was more likely to be tolerated. + +To implement the second component of CTI, support during a critical period, +during the first 2 weeks after discharge the CTI worker spent time with the +patient in the community observing his physical and social surroundings and +daily habits. Subsequent support was individually tailored; at one extreme some +patients needed only a few follow-up visits, whereas other patients needed +frequent visits and practical assistance for several months. + +In the USO group, the men were referred to mental health and rehabilitation +programs that were generally of high quality. Following the usual model of +discharge from an institution, the staff of the onsite shelter psychiatry +program were available to these agencies for consultation on request but did not +actively seek a role in the patient's care after discharge. The men were also +referred as needed to community agencies for substance abuse, general health, +income support, education, legal advocacy, and other services. The number and +the range of potential service agencies in New York City was greater than in +most urban areas. The connections among the various agencies in regard to the +care of an individual, however, were generally weak and unsystematized. + +The CTI and USO interventions were applied in a standardized fashion, as +specified in a manual (available from the first author). To ensure adherence to +the specified protocols, the investigators met weekly with the clinical team. +The clinical team presented cases in CTI and USO at these meetings, and in each +case presentation they specified the relation of the treatment plan to the +respective CTI or USO protocol. In this way, any departures from the intended +experimental and control treatments were detected rapidly. + +Measures + +Psychiatric Symptoms. Symptom severity was assessed using the Positive and +Negative Syndrome Scale (PANSS; Kay et al., 1992), a 30-item, 7-point severity +scale that has been widely employed in both clinical and research settings, +including a prior study of homelessness among chronically mentally ill adults +(Opler et al., 1994). The PANSS generates scale scores in three domains-positive +symptoms, negative symptoms, and general psychopathology. The positive scale is +computed by summing ratings on delusions, conceptual disorganization, hallucinatory +behavior, excitement, grandiosity, suspiciousness/persecution, and hostility. +The negative scale is computed by summing ratings on blunted affect, emotional +withdrawal, poor rapport, passive-apathetic social withdrawal, difficulty in +abstract thinking, lack of spontaneity and flow of conversation, and stereotyped +thinking. The general psychopathology scale consists of the sum of the following +16 items not included in the positive and negative scales: somatic concern, +anxiety, guilt feelings, tension, mannerisms and posturing, depression, motor +retardation, uncooperativeness, unusual thought content, disorientation, poor +attention, lack of judgment and insight, disturbance of volition, poor impulse +control, preoccupation, and active social avoidance. For each scale, lower +scores indicate less psychopathology. Symptom ratings were performed at baseline +and 6 months by trained raters blind to group assignment. Reliability for these +measures was good (alpha for baseline positive, negative, and general symptoms +were .80, .86, and .89, respectively). + +Data Analysis + +The primary purpose of the data analyses was to examine differences between the +experimental and control groups on the outcomes of interest. First, we compared +the experimental and control group means and standard deviations for each +symptom scale at baseline and 6 months. To formally assess the effect of the +intervention on psychiatric symptoms, we then performed three multivariate +regression analyses in which the dependent variable was one of the three symptom +scales measured at 6 months, the independent variable was group membership, and +the respective baseline symptom factor score was entered as a covariate. We +conducted further analyses stratifying by age group and ethnic group. The +results of these analyses were unchanged. + +Results + +Table 1 provides the demographic and diagnostic characteristics of the sample. +The sample was primarily African-American, and most men were over age 35 (median +age = 36). The majority of the sample had been homeless for over a year during +their lifetime. Schizophrenia and its related disorders (including schizoaffective +and schizophreniform) were the most frequent diagnoses. + +---------------------------------------------- + + + + TABLE 1 Descriptive Characteristics of the Sample (N = 76) + + + +---------------------------------------------- + +There were 76 cases (38 CTI and 38 USO) for whom there were complete symptom +data at base-line and at 6 months. Table 2 compares the CTI and the USO groups +on mean symptom scale scores at these two time points (all scores and mean +differences are unadjusted). On the negative symptoms scale (baseline range = 8 +to 36), the mean change in the CTI group was -2.6 compared with a mean change of ++1.0 in the USO group. On the positive symptoms scale (baseline range = 7 to +40), the mean change in the CTI group was -2.2 compared with a mean change of +-2.7 in the USO group. On the general psychopathology scale (baseline range = 19 +to 67), the mean change in the CTI group was -6.5 compared with a mean change of +-3.1 in the USO group. In the regression analyses controlling for baseline score +for the 6-month outcomes, there was a significant group effect for negative +symptoms only (F = 5.7, p = .02). + +---------------------------------------------- + + + + TABLE 2 PANSS Symptom Scores in USO and CTI Groups at Baseline and 6 +Months + + + +---------------------------------------------- + +When we confined the analysis to 57 subjects diagnosed with schizophrenia and +related disorders (schizophrenia, schizoaffective, and schizophreni-form +disorder), the pattern of results was quite similar. On the negative symptoms +scale, the mean change in the CTI group was -2.9 compared with a mean change of ++.5 in the USO group. On the positive symptoms scale, the mean change in the CTI +group was -3.1 compared with a mean change of -3.0 in the USO group. On the +general psychopathology scale, the mean change in the CTI group was -8.3 +compared with a mean change of -4.4 in the USO group. In the regression analyses +controlling for baseline score for the 6-month outcomes, there was a marginally +significant group effect (F = 3.4, p = .07) for negative symptoms only (this +larger p value reflects the reduced statistical power associated with the +smaller sample size employed in these analyses). + +Discussion + +In this study, CTI was associated with a statistically significant decrease in +negative symptoms at the 6-month follow-up, reflecting modest clinical +improvement. This is an important finding as it is one of the few studies of +which we are aware that has focused specifically on the effect of a psychosocial +intervention on negative symptoms in psychotic disorders. It is also consistent +with the conclusion of a recent meta-analysis of controlled outcome studies in +this area (Mojtabai et al., 1998). There was no significant effect on positive +or general psychopathology symptoms. We consider below several possible +explanations for the observed reduction in negative symptoms. + +Negative symptoms are frequently cited as among the most disabling aspects of +psychotic disorders and among the most resistant to treatment. Because standard +antipsychotics have been shown to have little if any impact on negative symptoms +(and none of the subjects in this study were receiving either the atypical +antipsychotic clozapine or the novel antipsychotics risperidone, olanzpine, or +quetiapine), it is unlikely that the observed reduction in negative symptoms in +the experimental group can be explained by a different pattern of medication use +in that group. Further, the lack of group differences on positive symptoms, +which are responsive to antipsychotic medications, also suggests that it is not +differences in medication use that account for the observed differences on +negative symptom scores. Nevertheless, we compared the proportion of subjects in +the experimental and control groups who reported having taken psychoactive +medications over the course of the follow-up period. At 6 months, the proportion +of experimental and control group members having taken antipsychotic medication +in the prior month were virtually identical, providing further evidence that the +treatment effect was not a function of differential rates of medication use. +Although we consider it unlikely, because we did not collect data on medication +dosing we cannot rule out the possibility that the USO group received higher +doses of standard neuroleptics and/or lower doses of antiparkinsonian medications +leading to higher levels of secondary negative symptoms (i.e., resulting from +neuroleptic medications). + +As we have reported elsewhere (Susser et al., 1997) the treatment group +experienced significantly fewer homeless nights over the follow-up period than +did the control group. Therefore, we explored whether the observed effect on +negative symptoms was mediated by the experience of homelessness. To investigate +this possibility, we performed a hierarchical regression analysis predicting +negative symptom score at 6 months in which we first entered baseline negative +symptom score and treatment condition (step 1) followed by a variable indicating +the number of homeless nights experienced during the 6-month follow-up period +(step 2). We found no increase in explanatory power associated with the addition +of the homelessness variable (F of change = .20, p = .65), indicating that +reduced homelessness did not mediate the effect of the treatment on negative +symptom score at 6 months. + +The evidence suggesting that neither medication nor homelessness accounted for +the observed reduction in negative symptoms supports the idea that the effect +can be attributed to the intervention. However, as in many experimental studies +that test a composite "package" of services such as CTI, it can be difficult to +identify the specific mechanisms through which the treatment produced the +observed effect. In this case, the primary focus of CTI was to prevent recurrent +homelessness after discharge from the shelter. How might the intervention have +directly contributed to the apparent improvement in negative symptoms? + +Several studies have suggested that the degree of prefrontal cortical dysfunction +in schizophrenia is related both to impairments in carrying out executive tasks +and to severity of negative symptoms (Andreasen et al., 1992; Opler et al., +1991; Wolkin et al., 1992). One intriguing possibility is that by encouraging +patients to focus on planning and organizing their transition from institution +to community living, CTI provides cognitive remediation, helping to reactivate +prefrontal cortical functions as they are summoned to carry out executive tasks +that were underutilized during lengthy periods of passivity and regression. In +future studies, we hope to investigate the prospect that this psychosocial +intervention may improve prefrontally mediated cognitive functions as well as +negative symptoms. + +It is also possible to offer a psychodynamic mechanism that may have contributed +to the reduction in negative symptoms. For homeless mentally ill men who +commonly have experienced multiple emotional losses during their lives, the +withdrawal, apathy, and affective blunting that comprise negative symptoms may, +in part, be a reaction to these important psychological events. CTI focuses +explicitly on issues of relationship and social support. As described above, one +of its key elements is that the strong ties that develop between patients and +treatment staff are not abruptly severed at the point of discharge but rather +are used to promote successful community reintegration through a successful +transition process. Perhaps this experience plays a role in ameliorating the +hopelessness and despair that has characterized these men's lives and, in turn, +leads to an observed lessening in negative symptoms. + +In all likelihood, no single mechanism can account for the reduction in negative +symptoms we observed in the experimental group. Rather, we suspect that this +improvement may be attributable to the synergistic effect of cognitive, +psychopharmacological, and psychodynamic mechanisms operating simultaneously. We +hope to design future studies of the CTI model in such a way as to shed further +light on this question. + +As noted above, there was no significant effect of CTI on positive or general +psychopathology symptoms. The most recent quantitative review of the research on +the role of psychosocial treatments in schizophrenia suggested that positive and +general symptoms tend to be less responsive to psychosocial interventions than +are negative symptoms (Mojtabai et al., 1998). Although the reasons for this are +not well understood, it may be that negative symptoms, particularly among +persons who have been ill for a number of years, are partly related to factors +such as social isolation and demoralization, which might be more responsive to +psychosocial interventions. + +Limitations + +There were a number of limitations to the study. First, the number of total +participants was modest. Although 96 men were randomized into the two experimental +conditions, symptom data at baseline and 6-month follow-up was available for +only 76 men. Although there appear to be no systematic differences between these +76 men and the 20 for whom data are incomplete, it is possible that this may +have affected the results to some unknown degree. Second, although the change in +negative symptoms in the full group was statistically significant at the .05 +level, the magnitude of the effect was modest. + +Third, the degree to which the observed effect on negative symptoms was a +lasting one cannot be adequately assessed since our outcome data were collected +at 6 months. However, in a subgroup of 47 subjects whose symptoms were measured +at 18 months, the trend was toward continued lower levels of negative symptoms +in the experimental group when compared with the controls (mean negative +symptoms score in CTI group = 15.3, SD = 4.8; mean negative symptoms score in +USO group = 17.6, SD = 6.5, p = .16). + +Finally, although we specified a priori that we would evaluate the effect of our +intervention on psychiatric symptoms, the intriguing finding presented here did +not conform with our original hypothesis, which predicted improvement in +negative, positive, and general psychopathology symptoms. + +Conclusions + +In an earlier paper, we reported that CTI was effective in its primary intended +outcome-reducing recurrent homelessness among severely mentally ill men after +discharge from a shelter. The present report suggests that a time-limited +intervention focused on the transitional period may also have had beneficial +effects on an important clinical outcome, namely negative symptoms, that has +stubbornly resisted the effect of treatment in many previous efforts. Because +negative symptoms are considered to play an important role with respect to the +quality of life of persons with severe mental disorders, this finding warrants +further study. Although CTI was originally designed and tested with homeless men +leaving a shelter, we believe that it may also be fruitfully applied in other +settings including psychiatric hospitals and correctional facilities. + +References + +Andreasen N, Rezai K, Alliger R, Swayze V, Flaum M, Kirchner P, Cohen G, O'Leary +D (1992) Hypofrontality in neuroleptic-naive patients and in patients with +chronic schizophrenia: Assessment with xenon 133 single-photon emission computed +tomography and the Tower of London. Arch Gen Psychiatry 49:943-958. Bibliographic +Links + +Beasley CJ, Hamilton S, Crawford A, Delva M, Tollefson G, Tran P, Blin O, Beuzen +J (1997) Olanzapine versus haloperidol: Acute phase results of the international +double-blind olanzapine trial. Eur Neuropsychopharmacol 7:125-137. Bibliographic +Links + +Carpenter W, Heinrichs D, Wagman A (1988) Deficit and nondeficit forms of +schizophrenia: the concept. Am J Psychiatry 145:578-583. Bibliographic Links + +Chouinard G, Jones B, Remington G, Bloom D, Addington D, MacEwan W, Labelle A, +Beauclair L, Arnott W (1993) A Canadian multicenter placebo-controlled study of +fixed doses of risperidone and haloperidol in the treatment of chronic +schizophrenic patients. J Clin Psychopharmacol 13:25-40. Bibliographic Links + +Dorwart RA, Hoover CW (1994) A national study of transitional hospital services +in mental health. Am J Public Health 84:1229-1234. Full Text Bibliographic Links + + +Kay S, Opler L, Fiszbein A (1992) Positive and negative syndrome scale (PANSS) +manual. Toronto: Multi-Health Systems, Inc. + +Lehman AF, Dixon LB, Kernan E, DeForge BR, Postrado LT (1997) A randomized trial +of assertive community treatment for homeless persons with severe mental +illness. Arch Gen Psychiatry 54:1038-1043. + +Marder S, Meibach R (1994) Risperidone in the treatment of schizophrenia. Am J +Psychiatry 141:825-835. + +Mojtabai R, Nicholson R, Carpenter B (1998) Role of psychosocial treatments in +management of schizophrenia: A meta-analytic review of controlled outcome +studies. Schizophr Bull 24:571-588. + +Olfson M, Mechanic D, Boyer CA, Hansell S (1998) Linking inpatients with +schizophrenia to outpatient care. Psychiatr Services 49:911-917. + +Opler L, Ramirez P, Rosenkilde C, Fiszbein A (1991) Neurocognitive features of +chronic schizophrenic inpatients. J Nerv Ment Dis 179:638-640. Bibliographic +Links + +Opler LA, Caton CL, Shrout P, Dominguez B, Kass F (1994) Symptom profiles and +homelessness in schizophrenia. J Nerv Ment Dis 182:174-177. Bibliographic Links + +Susser E, Valencia E, Conover S, Felix A, Tsai W, Wyatt R (1997) Preventing +recurrent homelessness among mentally ill men: A "critical time" intervention +after discharge from a shelter. Am J Public Health 87:256-262. Ovid Full Text +Full Text Bibliographic Links + +Valencia E, Susser E, McQuiston H (1996) Critical time points in the clinical +care of homeless mentally ill individuals. In J Vaccaro, G Clark (Eds), +Practicing psychiatry in the community: A manual (pp 259-276). Washington, DC: +American Psychiatric Press. + +Valencia E, Susser E, Torres J, Felix A, Conover S (1997) Critical time +intervention for homeless mentally ill individuals in transition from shelter to +community living. In W Breakey, J Thompson (Eds), Mentally ill and homeless: +special programs for special needs (pp 75-94). Newark, NJ: Gordon and Breach +Science Publishers. + +Wolkin A, Sanfilipo M, Wolf A, Angrist B, Brodie J, Rotrosen J (1992) Negative +symptoms and hypofrontality in chronic schizophrenia. Arch Gen Psychiatry +49:959-963. Bibliographic Links + +---------------------------------------------- +Accession Number: 00005053-200003000-00002 + + diff --git a/office/regression/000_000387.txt b/office/regression/000_000387.txt new file mode 100644 index 0000000..962737d --- /dev/null +++ b/office/regression/000_000387.txt @@ -0,0 +1 @@ +Could not execute query... \ No newline at end of file diff --git a/office/regression/000_000409.html b/office/regression/000_000409.html new file mode 100644 index 0000000..f24657c --- /dev/null +++ b/office/regression/000_000409.html @@ -0,0 +1,798 @@ + + + + +TPC NHC FELIX 1995 PRELIMINARY REPORT + + + + + + + + + + + + + + + + + + + + +
+ Hurricane + HOME + ARCHIVES + FORECASTS + IMAGERY + ABOUT TPC + RECONNAISSANCE
+ + + + + + +
+ [NCEP Logo] +
+

Preliminary Report
+ Hurricane Felix
+ 8-25 August, 1995

+

Max Mayfield and Jack Beven
+ Tropical Prediction Center
+ 19 November 1995

+
+

PRELIMINARY REPORTS
+ Hurricane Allison
+ Tropical Storm Barry
+ Tropical Storm Chantal
+ Tropical Storm Dean
+ Hurricane Erin
+ Tropical Depression Six
+ Hurricane Felix
+ Tropical Storm Gabrielle
+ Hurricane Humberto
+ Hurricane Iris
+ Tropical Storm Jerry
+ Tropical Storm Karen
+ Hurricane Luis
+ Tropical Depression Fourteen
+ Hurricane Marilyn
+ Hurricane Noel
+ Hurricane Opal
+ Tropical Storm Pablo
+ Hurricane Roxanne
+ Tropical Storm Sebastien
+ Hurricane Tanya

+


+
+ + TROPICAL PREDICTION CENTER/FELIX95 PRELIM
+
+
+
+ + [1995 Atlantic Hurricane Season] +
+
+
+

a. Synoptic History

+

A tropical wave moved off the African coast +on 6 August. Satellite imagery indicated that it quickly displayed evidence of +a circulation as it moved toward the west. The post-analysis "best +track" (Fig. 1 [94K GIF]) shows that the +disturbance became +Tropical Depression Seven about 400 n mi +west-southwest of the Cape Verde Islands at 0000 UTC 8 August +when loosely organized deep convection increased. Best track position, +central pressure and maximum one-minute sustained wind speed are listed +for every six hours in Table 1.
+
+

The depression strengthened into +Tropical Storm +Felix later on the 8th and followed a west-northwestward track at 15-20 knots for the next three days. +Based on satellite intensity estimates, Felix +reached hurricane strength at 0000 UTC 11 +August while centered about 500 n mi east-northeast of the Leeward Islands. Reports from +reconnaissance aircraft indicated rapid strengthening from the time +of the first eye penetration near 1200 UTC +on the 11th through the 12th. Maximum sustained surface winds of +120 knots are estimated +to have occurred near 1800 UTC 12 August. A well-defined +eye was visible in satellite imagery at this time.
+
+

Felix moved northwestward on 12 August, and then turned more +toward the north and started to weaken on 13 August. Two factors +likely contributed to the weakening: 1) Felix went through a +concentric eyewall +cycle, and 2) wind shear increased over the +system when Felix's upper-level anticyclone didn't remain centered +over the lower-level cyclonic circulation. Aircraft data on the +13th when Felix was centered 300 to 400 n mi south-southeast of +Bermuda indicated a large wind field with several wind maxima and +no tight center. +These characteristics would persist for much of the remainder of the storm's life.
+
+

Felix's northward turn was due to a large deep-layer trough +over the western Atlantic. The trough split as Felix approached, +with one part moving northeastward and filling and the other moving +southward to the southwest of the hurricane. The resulting +steering pattern allowed Felix to resume a general northwestward +motion by 15 August, with this motion persisting into the next day. +This track took the storm center within 65 n mi of Bermuda and +toward the North Carolina coast.
+
+

The split in the trough resulted in increased ridging over the +western Atlantic that appeared to be strong enough to drive Felix +into the eastern United States. However, a small weakness remained +between 70 and 75°W as indicated by + +Air Force +and NOAA +reconnaissance data on the 16th. Felix turned northward into the +weakness and almost stalled late on the 16th. It then moved slowly +northeastward on 17 August. A second westerly trough failed to +pick up the storm on 18-19 August, and Felix performed an +anticyclonic loop offshore as the trough bypassed the +tropical cyclone. +The hurricane accelerated northward on 20 August and +northeastward on 21 August in response to a third trough.
+
+

During 17-19 August, Felix had a 50-70 n mi wide eye on +aircraft radar and rather weak convection in satellite imagery. +Despite this, the storm maintained 65-70 knot sustained +winds and a central pressure near 970 mb. It is possible that this structure +was due to cooler, drier air entering the circulation at low and +mid levels. Felix dropped below hurricane strength on 20 August as +it moved over colder water and shearing again increased.
+
+

Felix became extratropical +about 300 n mi east-northeast of Newfoundland on 22 August. The extratropical +cyclone was tracked +across the North Atlantic between Scotland and Iceland and then toward Norway.
+
+

On a historical note, the threat of Hurricane Felix postponed +Bermuda's scheduled vote for independence. Ironically, the first +inhabitants at Bermuda were survivors of a hurricane-caused +shipwreck on the island in 1609. Their stories helped inspire +Shakespeare's writing of The Tempest.
+
+
+

b. Meteorological Statistics

+

Figures 2 and 3 (71K GIF) show the +curves of minimum central pressure and maximum one-minute wind speed, +respectively, versus time, along with the observations on which they are based. +The satellite estimates were provided by the +NESDIS +Synoptic Analysis Branch +(SAB), the NHC's Tropical Analysis and Forecast Branch +(TAFB, formerly TSAF as in figures) and the +Air Force Global Weather Central (AFGWC).
+
+

+ +U.S. Air Force Reserve aircraft +provided a total of 70 operational center fixes on Felix. The 24 +missions and approximately 280 flying hours of reconnaissance on this hurricane +are both records for an Atlantic tropical cyclone. The maximum winds of +143 knots from a flight-level of 700 mb were measured at +1254 UTC 12 August. The minimum central pressure reported by +aircraft was 930 mb at 2328 UTC 12 August, and it is likely that +the pressure was somewhat lower during the previous 10 hours when +there were no aircraft measurements. In addition to the + +Air Force Reserve reconnaissance, +two +NOAA aircraft +flew a research mission on 16 August.
+
+

During most of the 15th and 16th, the minimum central pressure +hovered between 965 and 970 mb, which would normally be consistent +with 85-100 knot surface winds. However, maximum flight-level +winds reported by reconnaissance aircraft were only 65 to 75 knots +at 850 and 700 mb. This would suggest a minimal hurricane at most. +The rawinsonde at Bermuda indicated 55 knot surface winds with +80 knots at 400 feet. Because a large component of these winds +were probably brought to the surface in strong convective bands, the +maximum sustained surface winds are estimated at 70-75 knots +during this time.
+
+

Numerous ship reports were received in the vicinity of Felix +and were helpful in defining the extent of tropical storm force +winds. Table 2 lists 81 ship reports of at least +tropical storm force winds in association with the cyclone.
+
+

Bermuda reported a minimum pressure of 988.1 mb and maximum +sustained winds of 55 knots with gusts to +70 knots at 0000 UTC 15 +August as the center of Felix passed about 65 n mi to the south- +southwest. No sustained tropical storm force winds were reported +by U.S. land stations. Wind gusts to 37 knots were +reported from the NWS office at Buxton, North Carolina at 2058 UTC 16 August and +at 0102 UTC 17 August while the hurricane was centered about 125 n mi to the east.
+
+

The eye of Felix passed over NOAA buoy 41001 +located at 34.7°N 72.6°W, about 150 n mi east of Cape Hatteras, near +1600 UTC 16 August. The buoy reported a 970.4 mb pressure at this time with +light winds. A 10-minute average wind of 53 knots and gusts to +66 knots were reported earlier by the buoy near 1200 UTC.
+
+

Rain bands associated with Hurricane Felix remained offshore of the U.S. coast.
+
+

Although the strong winds and heavy rains did not directly +affect the United States, large swells generated by Felix produced +dangerous surf conditions including some coastal flooding and rip +currents from northeastern Florida to New England. Isolated areas +of severe beach erosion occurred along the New Jersey coast, but +the most significant beach erosion occurred on the Outer Banks of +North Carolina. Highway 12 on the Outer Banks was flooded with +sand and ocean overwash at times of high tides. Beach nourishment +occurred in some coastal areas of North Carolina to the southwest +of the Outer Banks.
+
+
+

c. Casualty and Damage Statistics

+

A total of 8 deaths were confirmed in association with Felix, +3 off the North Carolina coast and 5 off the New Jersey coast. All +of these fatalities were a result of drowning.
+
+

Although there was considerable beach erosion, little +significant property damage occurred.
+
+
+

d. Forecast and Warning Critique

+

During the time when Felix was a tropical storm or hurricane, +the mean official track forecast errors were 38 (54 cases), 75 (52 +cases), 112 (50 cases), 147 (48 cases) and 227 (44 cases) n mi at +12, 24, 36, 48 and 72 hours, respectively. Although these errors +were lower than the long-term averages from the previous ten years, +there were some large individual errors including five over 500 n +mi at 72 hours. Three of these large errors occurred while Felix +was between Bermuda and North Carolina and were primarily a result +of not correctly anticipating the decrease in forward speed on 13- +15 August. The other two cases occurred while Felix was beginning +the anticyclonic loop well off the U.S. coast and resulted from not +correctly anticipating the beginning and amount of the acceleration +toward the northeast. On average, the official forecast errors +were similar to the track prediction model errors. The GFDI, BAMM +and BAMD 72-hour mean forecast errors were only slightly lower than +the official forecast errors.
+
+

Some large 72 hour intensity forecast errors (35 to 45 knots) +occurred. The intensity forecasts did not correctly indicate the +rapid strengthening on the 11th and 12th, nor the weakening +thereafter. Other relatively large underforecasts (35 to 40 knots) +resulted from incorrectly forecasting Felix to weaken along a track +that moved the hurricane inland.
+
+

Table 3 lists the coastal watches and warnings +issued during Felix. Although Felix never made landfall in the United States, +some of the official forecasts and several of the track prediction +models indicated this possibility. If Felix had continued on the +northwestward track onto the mid-Atlantic coast, considerable +damage and loss of life were possible. Given the NHC track +forecasts, time required for evacuations from coastal areas and +barrier islands, and the limitations in track forecasting, the +watches and warnings were deemed necessary and were well- +coordinated with appropriate NWS offices and the U.S. Navy.
+
+
+

Acknowledgments

+

Some information in this report was provided by NWS offices in +the watch and warning areas. Position estimates during the extratropical +stage were provided by the +Hydrological Prediction Center.
+

+
+

  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Table 1. Preliminary best track, Hurricane Felix, 8 - 25 August, 1995
Date/Time
(UTC)
PositionPressure
(mb)
Wind Speed
(kt)
Stage
Lat. (°N)Lon. (°W)
08/000014.330.8101030Trop. Depression
060014.732.5100830" "
120015.034.4100730" "
180015.536.4100535Tropical Storm
09/000015.738.3100440" "
060016.040.2100345" "
120016.241.9100145" "
180016.643.7100045" "
10/000017.045.699850" "
060017.547.499655" "
120018.049.199360" "
180018.450.899160" "
11/000018.952.498765Hurricane
060019.653.998070"
120020.455.497280"
180021.356.596590"
12/000022.157.8955100"
060022.959.0943110"
120023.660.2932115"
180024.361.0929120"
13/000025.161.6930115"
060025.961.9937105"
120026.662.3942100"
180027.462.394795"
14/000028.262.594890"
060029.062.995480"
120029.963.496280"
180030.764.196275"
15/000031.365.196275"
060031.966.296475"
120032.567.496870"
180033.168.896570"
16/000033.570.196370"
060034.071.396670"
120034.672.496870"
180034.872.797070"
17/000035.372.996865"
060035.672.997165"
120036.172.797265"
180036.572.297365"
18/000036.871.597365"
060037.170.797165"
120037.169.997065"
180036.968.997170"
19/000036.668.197070"
060036.167.897070"
120035.767.597170"
180035.467.497370"
20/000035.167.597665"
060035.067.997960Tropical Storm
120035.468.298260" "
180035.968.398560" "
21/000036.667.898660" "
060037.767.098855" "
120039.066.198950" "
180040.663.398850" "
22/000042.559.898750" "
060044.555.898650" "
120046.850.898550" "
180049.046.098550Extratropical
23/000050.840.598550"
060053.535.598550"
120056.034.098650"
180058.031.098750"
24/000059.526.098850"
060060.020.098845"
120060.014.098940"
180060.07.599035"
25/000061.51.099235"
 
12/180024.361.0929120Minimum Pressure
+


+


+

  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Table 2. Ship reports of 34 knots or higher winds associated with Hurricane + Felix.
Ship
Call Sign
Date
Mo/Da
Time
UTC
PositionWind (kt)
Dir/Speed
Pressure
(mb)
Lat°NLon°W
P3ME58/11180019.061.0360/431014.0
LAJO48/12060027.652.5230/421019.0
P3ME58/12120020.764.1320/431014.0
P3ME58/12180021.265.1300/491014.5
LADQ48/13060023.361.6220/421006.0
LADQ48/13120023.760.5210/431009.0
LAJO48/13120025.057.9140/391013.0
LAJ048/13180024.658.9140/501010.0
OYEK28/14000038.068.9020/601011.0
KRHZ8/14120029.258.8150/37999.9
Unknown8/14120031.758.0150/341013.7
ELIG98/15180035.174.7020/361010.2
WZJF8/15180035.772.7010/361008.0
Unknown8/15180037.474.4050/421012.2
LAVY48/16000035.173.0020/341003.5
WZJF8/16000037.973.2050/521001.1
Unknown8/16000038.572.4050/581010.7
Unknown8/16120039.168.7020/391013.2
Unknown8/16180038.868.1160/391014.2
Unknown8/16180039.170.7120/47-
OXME28/17000037.372.4140/471000.0
OXME28/17060037.071.8110/46997.5
P3ME58/17120033.469.3190/581015.5
ELQF68/17120035.269.2170/351008.0
OXME28/17120036.971.5120/51992.9
OXEH28/17180035.368.4170/371008.5
ELRE58/17180036.068.8180/411017.0
ELQF68/17180036.369.0180/351006.0
OXME28/17180036.871.5140/60981.0
ELPB88/17180040.561.5270/471014.6
ELRE58/18000035.668.9180/451013.5
OXME28/18000036.571.3240/45975.0
ELQF68/18000037.769.7200/50997.0
OXME28/18060036.071.2240/62984.5
XCTJ8/18060033.468.4210/361011.0
KXDB8/18060037.467.1170/351099.5
WZJF8/18060037.667.2140/451000.5
ELQF68/18060038.171.1090/52989.0
P3ME58/18120032.971.5240/391014.0
OXEH28/18120034.069.8220/341005.0
ELRE58/18120034.569.4230/451013.0
ELNG68/18120035.374.3330/34-
WMLG8/18120035.861.5200/341015.8
OXME28/18120035.971.6280/55995.0
ELQF68/18120037.672.5990/501000.0
ELJP88/18120039.255.5240/541011.0
OXEH28/18180034.270.8270/371005.0
ELRE58/18180034.370.3270/481015.0
DICA8/18180035.065.0190/401007.5
WZJF8/18180035.166.0200/431007.0
WMLG8/18180035.262.8190/371012.0
ZHEM78/18180035.267.3230/35998.0
OXME28/18180036.372.7330/341004.0
ELNG68/18180036.974.0350/411012.0
ELQF68/18180037.374.0350/501008.5
ELPB88/18180040.166.9- /641006.7
VSBT28/19120031.769.2240/36996.0
WMLG8/19120031.965.3190/361009.5
DCIA8/19120032.567.0220/371007.5
ELRE58/19120036.073.9010/401021.0
VRIM8/19120036.673.2020/501010.7
PJJU8/19120037.572.1020/371010.2
ICBA8/19120040.566.6090/451016.0
VSBT28/19180032.570.3270/37996.0
ZHEM78/19180034.069.2- /42999.5
VRIM8/19180037.272.8020/531012.1
ZHEM78/20000034.370.3- /421000.3
PJJU8/20060033.669.7320/351003.5
Unknown8/20120036.573.6070/401010.5
VSBT28/20180035.572.0320/40998.5
ELNG68/21000034.768.9270/38-
VSBT28/21000036.571.8320/35998.0
Unknown8/21120037.361.1200/351018.1
VSBT28/21120038.670.5320/351001.5
Unknown8/21180037.361.2210/441015.5
DQFS8/22000040.449.6220/351024.0
DQFS8/22120040.153.2230/471016.0
3FXW38/22120042.146.2210/451022.3
Unknown8/22120042.146.2210/451022.3
Unknown8/22120042.951.3210/351009.2
UNRK8/22120043.151.2200/431007.7
+


+


+

  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Table 3. Watch and warning summary, Hurricane Felix.
Date/Time
(UTC)
ActionLocation
12/1700Hurricane WatchBermuda
13/1500Tropical Storm WarningBermuda
14/0300Hurricane WarningBermuda
15/1200Hurricane WatchEdisto Beach, SC to Cape Henlopen, DE including Albemarle and Pamlico Sounds + and Chesapeake Bay south of Windmill Point
Hurricane Warning replaced with a + Tropical Storm WarningBermuda
15/1500Hurricane WarningNorth of Little River Inlet, SC to Chincoteague, VA including Albemarle and Pamlico Sounds and + Lower Chesapeake Bay from Windmill Point southward
15/2100Tropical Storm WarningNorth of Chincoteague, VA to Manasquan Inlet, NJ including Chesapeake Bay north of + Windmill Point and Delaware Bay
16/0600Tropical Storm Warning discontinuedBermuda
16/1200Hurricane Watch discontinuedLittle River Inlet, SC southward to Edisto Beach, SC
16/1500Hurricane Warning discontinuedSouth of New River Inlet, NC
17/0300Tropical Storm Warning replaced with a + Tropical Storm WatchChesapeake Bay north of Patuxent River
17/0900Tropical Storm Warning replaced + with a Tropical Storm WatchNorth of Cape Henlopen, DE to Manasquan Inlet, NJ including Chesapeake Bay from Patuxent River + to Windmill Point...and Delaware Bay
Tropical Storm Watch discontinuedChesapeake Bay north of Patuxent River
17/1500Hurricane Warning replaced with a + Tropical Storm Warning and Hurricane WatchCape Lookout, NC to Chincoteague, VA including Albemarle and Pamlico Sounds
Hurricane Warning replaced with a + Hurricane WatchChesapeake Bay from Windmill Point southward
Tropical Storm Watch discontinuedChesapeake Bay from Patuxent River to Windmill Point
Hurricane Warning discontinuedSouth of Cape Lookout, NC
18/0000Hurricane Watch discontinuedChesapeake Bay south of Windmill Point
18/0300All Tropical Storm Warnings discontinued 
18/0900All Hurricane and Tropical Storm Watches discontinuedalong U.S. mid-Atlantic coast
19/1030Tropical Storm WatchBermuda
20/1800Tropical Storm Watch discontinuedBermuda
+


+
+
+
Brian Maher
+Jack Beven
+
+Last updated January 2, 1999 + + + diff --git a/office/regression/000_000410.html b/office/regression/000_000410.html new file mode 100644 index 0000000..1b2b402 --- /dev/null +++ b/office/regression/000_000410.html @@ -0,0 +1,536 @@ + + + + + + + + + + + + Hurricane FELIX Advisory Archive + + + + + + + + + + + + + + + + + + + + + + + + +
Skip Navigation Links + weather.gov    +
+ + + + + + + + + + + + + +
NOAA logo - Click to go to the NOAA homepageNational Weather Service NWS logo - Click to go to the NWS homepage
National Hurricane Center
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ Local forecast by
"City, St" or "ZIP"

+ +   + +
+
+ Get Storm Info
+    Satellite | Radar
+    Aircraft Recon
+    Advisory Archive
+    Experimental
+    Mobile Products
+    E-mail Advisories
+    Audio/Podcasts
+    GIS Data | RSS XML/RSS logo
+    Help with Advisories +
+ Marine Forecasts
+    Atlantic and E Pacific
+    Forecast and
   Analysis Tools

+    Help with Marine
+
+ Hurricane Awareness
+    Be Prepared | Learn
+    Frequent Questions
+    AOML Research
+    Hurricane Hunters
+    Saffir-Simpson Scale
+    Forecasting Models
+    Eyewall Wind Profiles
+    Glossary/Acronyms
+    Storm Names
+    Breakpoints
+
+ Hurricane History
+    Seasons Archive
+    Forecast Accuracy
+    Climatology
+    Most Extreme
+
+ About the NHC
+    Mission and Vision
+    Personnel | Visitors
+    NHC Virtual Tour
+    Library
+    Joint Hurr Testbed
+    The NCEP Centers
+ + + +
+ Contact UsHelp +
+
+ FirstGov.gov is the U.S. Government's official Web portal to all Federal, state and local government Web resources and services. +
+ + + + + + +

+ + + + + + + + + + + + + +
+ + + + + + +
+ + + + + + + + + + + + + +

Hurricane FELIX Advisory Archive

+
+ + + +
Graphics Archive
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Forecast
Advisories
Public
Advisories
DiscussionsWind Speed
Probabilities

Friday August 31, 2007
+1: 2100 UTC
+
+1: 500 PM AST
+1a: 800 PM AST
+2: 1100 PM AST
+
+1: 500 PM EDT
+2: 1100 PM EDT
+
+1: 2100 UTC
+

Saturday September 1, 2007
+2: 0300 UTC
+3: 0900 UTC
+4: 1500 UTC
+5: 2100 UTC
+
+2a: 200 AM AST
+3: 500 AM AST
+3a: 800 AM AST
+4: 1100 AM AST
+4a: 200 PM AST
+5: 500 PM AST
+5a: 800 PM AST
+6: 1100 PM AST
+
+3: 500 AM EDT
+4: 1100 AM EDT
+5: 500 PM EDT
+6: 1100 PM EDT
+
+2: 0300 UTC
+3: 0900 UTC
+4: 1500 UTC
+5: 2100 UTC
+

Sunday September 2, 2007
+6: 0300 UTC
+7: 0900 UTC
+8: 1500 UTC
+9: 2100 UTC
+
+6a: 200 AM AST
+update: 330 AM AST
+7: 500 AM AST
+7a: 800 AM AST
+8: 1100 AM AST
+8a: 200 PM AST
+9: 500 PM EDT
+10: 800 PM EDT
+11: 1100 PM EDT
+
+7: 500 AM EDT
+8: 1100 AM EDT
+9: 500 PM EDT
+10: 800 PM EDT
+11: 1100 PM EDT
+
+6: 0300 UTC
+7: 0900 UTC
+8: 1500 UTC
+9: 2100 UTC
+

Monday September 3, 2007
+10: 0000 UTC
+11: 0300 UTC
+12: 0900 UTC
+13: 1500 UTC
+14: 2100 UTC
+
+11a: 200 AM EDT
+12: 500 AM EDT
+12a: 800 AM EDT
+13: 1100 AM EDT
+13a: 200 PM EDT
+14: 500 PM EDT
+14a: 800 PM EDT
+15: 1100 PM EDT
+
+12: 500 AM EDT
+13: 1100 AM EDT
+14: 500 PM EDT
+15: 1100 PM EDT
+
+10: 0000 UTC
+11: 0300 UTC
+12: 0900 UTC
+13: 1500 UTC
+14: 2100 UTC
+

Tuesday September 4, 2007
+15: 0300 UTC
+16: 0900 UTC
+17: 1500 UTC
+18: 2100 UTC
+
+15a: 200 AM EDT
+16: 500 AM EDT
+update: 640 AM AST
+16a: 800 AM EDT
+17: 1100 AM EDT
+17a: 200 PM EDT
+18: 500 PM EDT
+18a: 800 PM EDT
+19: 1000 PM CDT
+
+16: 500 AM EDT
+17: 1100 AM EDT
+18: 500 PM EDT
+19: 1000 PM CDT
+
+15: 0300 UTC
+16: 0900 UTC
+17: 1500 UTC
+18: 2100 UTC
+

Wednesday September 5, 2007
+19: 0300 UTC
+20: 0900 UTC
+
+20: 400 AM CDT
+
+20: 500 AM EDT
+
+19: 0300 UTC
+20: 0900 UTC
+
+ + + +

+
+ + + + + + + +
Quick Navigation Links:
+ NHC Active Storms  -  Atlantic and E Pacific Marine  -  Storm Archives
+ Hurricane Awareness  -  How to Prepare  -  About NHC  -  Contact Us +
+
+
+ + + + + + + + + + + + + + + + + + + + + + +

+ NOAA/ + National Weather Service
+ National Centers for Environmental Prediction
+ National Hurricane Center
+ Tropical Prediction Center
+ 11691 SW 17th Street
+ Miami, Florida 33165-2149 USA
+ nhcwebmaster@noaa.gov +
Disclaimer
+ Credits
+ Information Quality
+ Glossary
+
Privacy Policy
+ Freedom of Information Act (FOIA)
+ About Us
+ Career Opportunities
+
+ Page last modified: Friday, 02-Nov-2007 21:20:45 UTC +
+
+ + + + + + diff --git a/office/regression/000_000411.html b/office/regression/000_000411.html new file mode 100644 index 0000000..02619c2 --- /dev/null +++ b/office/regression/000_000411.html @@ -0,0 +1,134 @@ + + + + +Hurricane Felix : Natural Hazards + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+

Hurricane Felix

+  +
+Hurricane Felix +
download large image (830 KB, JPEG) + acquired September 4, 2007
+ +
+
+ +

Hurricane Felix was approaching the Central American coastline on September 4, 2007, shortly after midnight local time (06:04 UTC), when the Tropical Rainfall Measuring Mission satellite (TRMM) captured the data used to make this image. The image shows rainfall rates within the powerful storm overlaid on a visible image of the storm. Areas in which rainfall is heaviest are red, while regions of lighter rainfall are blue.

+

Rainfall can reveal features of a storm’s structure that might not otherwise be visible. In this case, a band of heavy rain circles the eye of the storm. Additional distinct rain bands spiral out from the center of the storm. The image also reveals that the heavy rain that Felix brought to Central America was concentrated in a relatively small area.

+

At the time that TRMM observed Felix, the storm was strengthening from Category 4 to Category 5 status, with sustained winds near 215 kilometers per hour (135 miles per hour), according to the National Hurricane Center. Felix developed very rapidly. The storm formed on the evening of August 31 and had grown into a hurricane by the next day. By September 2, Felix had become a rare Category 5 storm. It was the second Category 5 storm to make landfall in as many weeks.

+ + + +

Image produced by Hal Pierce (SSAI/NASA GSFC).

+ +
+
Instrument: 
TRMM
+
+ +
+
+
Image Location
Map showing image location +
+
+
Previous Image in this Event
+ Hurricane Felix + September 3, 2007 +
Hurricane Felix
+
Next Image in this Event
+ Hurricane Felix + September 4, 2007 +
Hurricane Felix
View all images of this event
+
+ + + + +
+ + + + + + + + \ No newline at end of file diff --git a/office/regression/000_000412.html b/office/regression/000_000412.html new file mode 100644 index 0000000..053d5a4 --- /dev/null +++ b/office/regression/000_000412.html @@ -0,0 +1,200 @@ + + + + +Hurricanes Henriette and Felix : Image of the Day + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+

Hurricanes Henriette and Felix

+Posted September 5, 2007 +
+Hurricanes Henriette and Felix +
download large image (8 MB, JPEG) +  
+ +
+
+ +

Within less than three hours on September 3, 2007, the Moderate Resolution Imaging Spectroradiometer (MODIS) on NASA’s Aqua satellite captured images of two separate hurricanes near Central America: Henriette off Baja California, and Felix off the coast of Nicaragua. This composite image shows the images collected in two consecutive orbits around the globe. Breaks in coverage between the orbits appear in gray.

+

At 12:30 p.m. local time (18:30 UTC) on September 3, MODIS observed Hurricane Felix heading toward Nicaragua. The following day, Felix came ashore as a Category 5 storm, with sustained winds of 260 kilometers (160 miles) per hour, according to the National Hurricane Center. Felix was the second Category 5 Atlantic storm in August; Dean pursued a more northerly track before slamming into the Yucatan on August 21. Felix was predicted to continue its westward journey over Honduras, El Salvador, Guatemala, and Mexico, causing potentially devastating floods.

+

At 2:10 p.m. local time (21:10 UTC) on September 3, MODIS observed Hurricane Henriette moving up the Pacific Coast. Henriette was the first Pacific hurricane of the season to make landfall. Storms that form in that part of the Pacific usually head west or northwest away from land. Compared to the thick, bright clouds of Hurricane Felix, Henriette’s swirling clouds appears more ragged and stretched out. Despite its greater size, Hurricane Henriette packed less of a punch than Felix; it was anticipated to travel through Mexico and the United States as a Category 1 storm.

+

Due to the large area covered by this scene, the high-resolution version of this image uses 500-meter-resolution data, not the sensor’s maximum spatial resolution (250 meters). For 250-meter-resolution images and more information on the individual storms, visit the Earth Observatory’s Natural Hazards pages on Felix and Henriette.

+

You can download a 500-meter-resolution KMZ file of the pair of hurricanes suitable for use with Google Earth.

+ + + +

Image courtesy Jeff Schmaltz, MODIS Rapid Response Team, NASA GSFC

+ +
+ +
+ +
+
+ + +
Next Image
+Increasing Tropical Rainfall +September 6, 2007 +
Increasing Tropical Rainfall
+
+ +
Previous Image
+Melting on the Greenland Ice Cap +September 4, 2007 +
Melting on the Greenland Ice Cap
+
+
Image of the Day Index
+
+ + + + +
+ + + + + + + + \ No newline at end of file diff --git a/office/regression/000_000413.html b/office/regression/000_000413.html new file mode 100644 index 0000000..4477b72 --- /dev/null +++ b/office/regression/000_000413.html @@ -0,0 +1,398 @@ + + + + Atlantic Tropical Depression FELIX + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ NOAA homeUnited States Department of Commerce
DOC home
NOAA homeNational Oceanic and Atmospheric Administration +
+ + + + +
DOC home
+ + +
+ + + + NOAA and DOC logos + + + + + + + +
+ NOAAWatch Home + +
+ + + + + + + + + + + + + + +
+ +
+
+ National Weather Warnings + + + National Watches, Warnings, and Advisories
+ + + +

+ +
Local forecasts and warnings by City, ST
+
+ +   + +
+
+

+ Visit the National Hurricane Center Website + +

+ + + + +
Hurricane Updates
+ +

+ + +
+ + + + + + +
Tropical Cyclone + No current storm in NHC Atlantic Wallet 1 +
+ + +
+ RSS FeedSubscribe to this RSS feed +

+ +
NHC Atlantic Wallet 1 - No current storm
No current storm in NHC Atlantic Wallet 1
+ +

+
+
Satellite Images
+ + + + + + + + +
+
+ + +
+
+
+
+ Your state Emergency Management Agency provides information about local preparedness plans and actions, evacuation routes, and shelter information.
+ These links will take you from this Federal web site to the websites of state Emergency Management Agencies + + +
+ + +
+
+
+ + +
+ + + + + + + + +
+ En Español +

+ +
+ + diff --git a/office/regression/000_000414.html b/office/regression/000_000414.html new file mode 100644 index 0000000..6bae491 --- /dev/null +++ b/office/regression/000_000414.html @@ -0,0 +1,58 @@ + + +HEBERT, Felix - Biographical Information + + + + + + +
+ +
+ + + + + + + + + +




+ + + + + + +
HEBERT, Felix, (1874 - 1969)

+ +Senate Years of Service: 1929-1935
Party: Republican

+ +
Library of Congress
+

HEBERT, Felix, a Senator from Rhode Island; born near St. Hyacinthe, Province of Quebec, +Canada, December 11, 1874; came to the United States when his parents returned in 1880 and +resumed their residence in the town of Coventry, R.I.; attended the public schools, the parish school of +St. Jean Baptiste, West Warwick, R.I., and La Salle Academy, Providence R.I.; employed as a +railroad freight billing clerk 1893-1896 and as a private secretary 1896-1898; deputy insurance +commissioner of Rhode Island 1898-1906; studied law; admitted to the bar in 1907 and commenced +practice in Providence, R.I.; justice of the district court of the fourth judicial district of Rhode Island +1908-1928; trustee of the Nathanael Green Homestead Association of Rhode Island 1924-1934; +member and secretary of the Providence County Courthouse Commission 1925-1934; elected as a +Republican to the United States Senate and served from March 4, 1929, to January 3, 1935; +unsuccessful candidate for reelection in 1934; Republican whip 1933-1935; chairman, Committee on +Patents (Seventy-second Congress); resumed the practice of law; member of the Republican National +Committee 1944-1952; advisory counsel to the Associated Factory Mutual Fire Insurance +Companies; died in Warwick, R.I., on December 14, 1969; interment in St. Joseph’s Cemetery, West +Warwick, R.I. +

+ + + + + + + + + diff --git a/office/regression/000_000415.html b/office/regression/000_000415.html new file mode 100644 index 0000000..cbc3cb4 --- /dev/null +++ b/office/regression/000_000415.html @@ -0,0 +1,60 @@ + + +ZOLLICOFFER, Felix Kirk (1812-1862) Bibliography + + + + + + +
+ +
+ + + + + + + + + +




+ + + + + + +
ZOLLICOFFER, Felix Kirk, 1812-1862
+
+
+ +

Extended Bibliography

+ +Myers, Raymond E. The Zollie Tree: General Felix K. Zollicoffer +and the Battle of Mill Springs. With a foreword by Robert Emmett McDowell. Louisville, +Ky.: Filson Club Press, [1964]. Revised, Introduction by Lowell H. Harrison; Essay on Filson Club +Historical Society Civil War materials by Mark V. Wetherington Louisville, Ky.: Filson Club +Historical Society, 1998.

+Parks, Edd Winfield. “Zollicoffer: Southern Whig.” Tennessee +Historical Quarterly 11 (December 1952): 346-55.

+Reid, Richard J. Death Rides the Zollie Trail. Photographs by +Lynn Reid. Olaton, Ky.: R.J. Reid, 1996.

+Stamper, James C. “Felix K. Zollicoffer: Tennessee Editorand Politician.” Tennessee Historical Quarterly 28 (Winter 1969): 356-76.

+Zollicoffer, Felix Kirk. Organization of the House. +[Washington: Printed at the Congressional Globe Office, 1855].

+———. State of political parties. Speech of Hon. F. K. Zollicoffer, of +Tennessee, in the House of Representatives of the United States, April 8, 1856. +[Washington: Printed at the American Organ, 1856].

+
+
+ + + + + + + + + diff --git a/office/regression/000_000416.html b/office/regression/000_000416.html new file mode 100644 index 0000000..55645a6 --- /dev/null +++ b/office/regression/000_000416.html @@ -0,0 +1,166 @@ + + + + +National Gallery of Art - The Prints of Félix Buhot: Impressions of City and Sea + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + +
+
+HOME
+
+ + What's New + Subscribe to Our Web Site Newsletters + Calendar of Events + Recent Acquisitions + Videos and Podcasts + About the Gallery + Looking In: Robert Frank's 'The Americans + Pride of Place: Dutch Cityscapes of the Golden Age +
Global Navigation + +Collection + Exhibitions + Planning a Visit + Programs + Online Tours + Education + Resources + Gallery Shop + Support the Gallery + NGA Kids +
+ + + + + +
+
+
+
+
+National Gallery of Art - EXHIBITIONS
+
+ + + + +

image: The Prints of Félix Buhot: Impressions of City and Sea; September 4, 2005 - February 20, 2006

+ +

This exhibition is no longer on view at the National Gallery. Please follow the links below for related online resources or visit our current exhibitions schedule.

+ +
+ + + + +
+ +

Related Resources

+

Exhibition Overview

+

Exhibition Feature
(Download Flash player)

+ +

Works by
Félix-Hilaire Buhot
in the Gallery's collection

+ +

Biography of
Félix-Hilaire Buhot

+

View Related Collection Tours
+ Prints and Drawings
+
+ French Painting of the 19th Century
+
+ American Impressionists

+

Print Study Rooms

+

Education Resource
+ Picturing France 1830–1900

+

Press Materials

+ +
+image: Félix-Hilaire Buhot, 'Hiver à Paris (Winter in Paris), 1879French + artist Félix-Hilaire Buhot (1847–1898) created impressionist + prints notable for their inventiveness in reproducing the effects + of weather, such as rain, snow, mist, and fog. The National + Gallery of Art has an outstanding collection of over one hundred + Buhot prints and drawings, many rare, from which this exhibition + is drawn. Some sixty prints and several drawings closely examine + Buhot's experimental techniques through his two most frequent + subjects: the city and the sea. His city prints depict the + grand public squares and streets of Paris and London; his seascapes + render passing tempests and foreboding skies and suggest pervasive + melancholy. Like his contemporaries, Edgar Degas and Camille + Pissarro, Buhot was interested in exploring new ways of rendering + atmospheric effects: in single prints he not only combined + different techniques, such as etching, drypoint, aquatint and + even photomechanical reproduction, but also employed different + types of inks and papers. +

+ + +
+
+
+ + + +
+ +
+ + + + \ No newline at end of file diff --git a/office/regression/000_000418.html b/office/regression/000_000418.html new file mode 100644 index 0000000..988569d --- /dev/null +++ b/office/regression/000_000418.html @@ -0,0 +1,401 @@ +NASA - +Hurricane Season 2007: Felix (Atlantic) + + + + + + + + +
Follow this link to skip to                                      the main content

Featured Images

Text Size

Hurricane Season 2007: Felix (Atlantic)
09.05.07
 
+Felix Fizzles Over Southwestern Mexico

+ +
Hurricane Felix peters out over Mexico.
Click image for enlargement.

+ +The National Hurricane Center reported that Felix was fizzling near the +southwestern coast of Mexico on Thursday, Sept. 6, 2007.

+ +At 10:00 a.m. PDT, showers and thunderstorms associated with the remnants of +Felix extended from the Gulf of Tehuantepec southward for a couple hundred +miles. The leading edge of Felix's showers and thunderstorms had crossed into +the eastern Pacific as seen in purple in this satellite image.

+ +This infrared satellite image from September 6 was created by data from the +Atmospheric Infrared Sounder (AIRS) on NASA's Aqua satellite. This AIRS image +shows the temperature of the cloud tops or the surface of the Earth in +cloud-free regions. The lowest temperatures (in purple) are associated with +high, cold cloud tops associated with the lingering showers and thunderstorms. +The infrared signal does not penetrate through clouds. Where there are no +clouds the AIRS instrument reads the infrared signal from the surface of the +Earth, revealing warmer temperatures (red). This infrared image shows some +scattered areas of strong convection (rising air and heavier rain) of the storm +(in purple) off the coast of southwestern Mexico and in Central America.

+ +Forecasters at the National Hurricane Center do not expect any tropical cyclone +formation from Felix's remnants or elsewhere in the eastern Pacific in the next +two days.

+ +Rob Gutro (From NHC reports)
+Goddard Space Flight Center
+Image credit: NASA/JPL

+ +


+ +Powerful Hurricane Felix Crosses Caribbean Before Hitting Central America

+ +As the climatological height of the Atlantic hurricane season draws near, the second +Category 5 hurricane of the year has just made landfall. Almost two weeks to the day +since Hurricane Dean, the first Category 5 storm of the season, made landfall in the +Yucatan Peninsula, Hurricane Felix came ashore on the northwest coast of Nicaragua +with sustained winds of 160 mph.

+ +
Satellite image of Hurricane Felix

+ +The Tropical Rainfall Measuring Mission (or TRMM) satellite captured this unique series +of images, which chronicle the development of Felix from an unnamed disturbance to a +powerful hurricane. Launched back in November of 1997, TRMM is armed with an array of +passive and active sensors designed to measure rainfall and its structure from space. +It has proven itself to be an excellent platform for observing tropical cyclones. The +first image was taken by TRMM at 06:10 UTC (2:10 am EDT) on the 28th of August 2007 and +shows the horizontal pattern of rain associated with a tropical disturbance located +midway between the coast of Africa and the Lesser Antilles. At this stage, there is no +evidence of a circulation. The system does not yet show any signs of organization and +is best described as a loose cluster of storms with mostly light to moderate rain (blue +and green areas, respectively) associated with a tropical easterly wave propagating away +from Africa. Rain rates in the center of the swath are from the TRMM PR, and those in +the outer swath come from the TRMM Microwave Imager (TMI). The rain rates are overlaid +on infrared (IR) data from the TRMM Visible Infrared Scanner (VIRS).

+ +
Satellite image of Hurricane Felix

+ +The second image was taken two days later at 15:45 UTC (11:45 am EDT) on the 30th. Not +unlike the first image, the disturbance still shows no signs of organization other than +that the area of associated rain is somewhat more consolidated. It would be another +full day before the disturbance developed a closed circulation, identifying it as a +tropical depression (TD #6, the sixth tropical depression of the season). At this point, +the system was already approaching the Windward Islands just 180 miles to its west. Over +the next day, TD #6 continued to organize and gather strength. By midday on September +1st, it had become a tropical storm and was given the name Felix.

+ +
Satellite image of Hurricane Felix

+ +This next image shows Felix just after being named a tropical storm. It was taken at +15:30 UTC (11:30 am EDT) on 1 September. The organization is now clearly evident with +rain bands spiraling around a central point (arcs of green and blue denoting moderate +and light intensity rain, respectively). This central point is associated with an +area of low pressure and marks the center of the storm's circulation. At the time of +this image, sustained winds were reported at 55 knots (63 mph) by the National Hurricane +Center (NHC) based on aircraft reports. At this stage, warm sea surface temperatures and +low atmospheric wind shear made conditions ideal for continued development. As a result, +Felix steadily intensified, becoming a hurricane later that same day. A deep-layer +ridge to the north of the system continued to steer the system due west. This put Felix +on track parallel to but south of that previously taken by Dean. Dean moved pretty much +due west through the northern Caribbean, while Felix moved due west through the southern +Caribbean.

+ +
Satellite image of Hurricane Felix

+ +By daybreak on the 2nd, Felix was up to Category 2 intensity with sustained winds of 85 +knots (98 mph). Felix then underwent a period of rapid deepening and quickly intensified. +By nightfall, Felix was a very powerful storm, a Category 5 storm with sustained winds of +145 knots (167 mph). This next image from TRMM was taken at 15:13 UTC (11:13 am EDT) on +the 3rd and shows Category 5 Felix as it was moving due west through the western Caribbean +in the direction of Nicaragua. The storm is very compact and tightly wound with good +banding and sharply curving rain bands. However, the storm is a little asymmetric as +evidenced by the larger amount of heavy (dark red areas) to moderate rain being north and +east of the center. In fact, Felix underwent a period of weakening after this image was +taken.

+ +
Satellite image of Hurricane Felix

+ +The final image was taken at 06:04 UTC (2:04 am EDT) on the 4th and shows Felix bearing +down on the coast of Nicaragua. Felix had regained its Category 5 status and winds were +back up to 135 knots (155 mph). The eye is very small, and the center is well-defined. +Intense rain occupies the western eye wall (dark red arc), and tightly-curved concentric +rain bands surround the center, indicating a very intense circulation. Felix is a small +storm. As such, it is can change intensity fairly quickly in response to environmental +conditions. The storm is expected to quickly weaken over land. The last great hurricane +to impact the region was Hurricane Mitch back in 1998. Mitch killed over 11,000 people +in Central America with thousands more missing mostly as a result of massive flooding.

+ +TRMM is a joint mission between NASA and the Japanese space agency JAXA.

+ +Images produced by Hal Pierce (SSAI/NASA GSFC) and captioned by Steve Lang +(SSAI/NASA GSFC).

+ +


+ +Hurricane Felix Moving Over Nicaragua, Now a 'Cat' 2

+ +
Hurricane Felix on September 4, 2007 taken by AIRS
Click image for enlargement.

+ +Felix the Cat is a cartoon character, but unlike the cartoon, Felix the "Cat 2" +or "Category 2" hurricane isn't being taken lightly. Felix is bringing +life-threatening conditions to Nicaragua and Honduras.

+ +This satellite image from NASA's QuikSCAT satellite was taken on September 4 at +11:14 UTC (7:14 a.m. EDT) and depicts the wind speeds in Hurricane Felix. The +center of Felix is indicated by the purple color, and is half over land. This +image was created when Felix was making landfall. This image depicts wind speed +in color and wind direction with small barbs. White barbs point to areas of +heavy rain. The highest wind speeds, around the eye, are shown in purple.

+ +At 2:00 p.m. EDT on Sept. 4, the center of Hurricane Felix was located inland +near latitude 14.2 north...longitude 84.5 west or about 75 miles (125 km) west +of Puerto Cabezas, Nicaragua.

+ +Felix is moving toward the west near 14 mph (22 km/hr) and this motion is +expected to continue with some decrease in forward speed during the next 24 +hours. On this track the center will continue moving over northeastern +Nicaragua for the next few hours and over Honduras later today and tonight. +Maximum sustained winds have decreased to near 100 mph (155 km/hr) with higher +gusts. Felix is a category two hurricane on the Saffir-Simpson scale. Rapid +weakening is forecast as the cyclone moves over the mountainous terrain of +Central America today and tonight. Estimated minimum central pressure is 962 +millibars.

+ +Felix is expected to produce 8 to 12 inches of rain across northern Nicaragua +and El Salvador with 10 to 15 inches over much of Honduras. Isolated maximum +amount of 25 inches are possible in mountainous areas. These rains will likely +produce life-threatening flash floods and mud slides. Forecast credit: Rob Gutro
+Goddard Space Flight Center; Image credit: NASA/JPL



+ +Category 5 Hurricane Felix Makes Landfall

+ +
Satellite image of Hurricane Felix
Click image for enlargement.

+ +The second Category 5 hurricane of the Atlantic Season made landfall early +Tuesday morning, September 4, 2007 near the Nicaragua-Honduras border.

+ +Hurricane Felix strengthened into a Category Five storm on the Saffir-Simpson +scale, in the early morning hours before hitting the area that thousands of +Miskito Indians reside. The area of landfall is rural, and the Miskitos live in +wooden shacks.

+ +NASA Eyes Rainfall in Felix

+ +The image was taken by the Tropical Rainfall Measuring Mission (or TRMM) +satellite at 6:04 UTC (2:04 a.m. EDT) on September 4, 2007 and shows the +horizontal pattern of rain intensity within Felix. Rain rates in the center of +the swath are from the TRMM Precipitation Radar, and those in the outer swath +come from the TRMM Microwave Imager (TMI). The rain rates are overlaid on +infrared data from the TRMM Visible Infrared Scanner. The deep red in this +image near the center of the storm indicate rain fall is greater than 55 +millimeters per hour (2.16 inches/hour). The eye of Felix is also visible in +this TRMM image around the area of heaviest rainfall.

+ +The National Hurricane Center noted that Felix is expected to produce 5 to 10 +inches of rain across northern Nicaragua and much of Honduras with possible +isolated maximum amounts of 20 inches. These rains will likely produce +life-threatening flash floods and mud slides.

+ +Felix Making Landfall

+ +At 8:00 a.m. EDT the eye of Hurricane Felix was located on the coast near +latitude 14.3 north and longitude 83.2 west or very near Punta Gorda, Nicaragua +about 10 miles north-northeast of Puerto Cabezas. Felix is moving toward the +west near 16 mph (26 km/hr). A continued westward motion with a gradual +decrease in forward speed is expected during the next 24 hours. On this +track...the center of Felix will be moving inland over northeastern Nicaragua +today and over Honduras later today and tonight.

+ +Earlier reports from a United States Air Force hurricane hunter aircraft and +recent satellite images indicate that the maximum Sustained winds have +increased to near 160 mph (260 km/hr) with higher gusts. Felix is a +potentially catastrophic category Five Hurricane on the Saffir-Simpson scale. +The hurricane will weaken as it moves inland over Nicaragua and Honduras today. +The estimated minimum central pressure is 935 millibars.

+ +Felix is a small and compact storm. Hurricane force winds extend outward up to +45 miles (75 km) from the center and tropical storm force winds extend outward +up to 115 miles (185 km).

+ +Storm surge flooding in excess of 18 feet above normal tide levels along with +large and dangerous battering waves are possible to the north of where the +center is making landfall.

+ +Felix has been following the same trek that Hurricane Mitch took in 1998. The +name "Mitch" was retired from the list of hurricane names, because it killed +almost 11,000 people and left 8,000 missing, mostly in Honduras and Nicaragua.

+ +For more information about how TRMM looks at rainfall, visit NASA's TRMM website: http://trmm.gsfc.nasa.gov/. TRMM is a joint mission between NASA and the +Japanese space agency JAXA.

+ +Rob Gutro
+Goddard Space Flight Center
+Image credit: Hal Pierce (SSAI/NASA GSFC)

+ +


+ +Early Images of Felix

+ +
Satellite image of Hurricane Felix

+ +NASA's Aqua satellite captured this image of Felix approaching Central America on Sept. 3, 2007.

+ +Related link:

+ ++ Higher resolution MODIS image of Felix

+ +Image credit: MODIS Rapid Response

+ +
Satellite image of Hurricane Felix
Click image for enlargement.

+ +This QuikSCAT image captured Hurricane Felix' winds on Sept. 2 at 10:24 UTC +(3:24 a.m. PDT) as it approached Central America.

+ +Image credit: NASA/JPL

+
 
 
 
\ No newline at end of file diff --git a/office/regression/000_000420.html b/office/regression/000_000420.html new file mode 100644 index 0000000..10c75e5 --- /dev/null +++ b/office/regression/000_000420.html @@ -0,0 +1,191 @@ +NASA - +Hurricane Felix + + + + + + + + +

Featured Image

Text Size

Hurricane Felix
09.05.07
+Hurricane Felix
+ +ISS015-E-25049 (3 Sept. 2007) --- This view of Hurricane Felix was taken from the Earth-oribting International Space Station by an Expedition 15 crewmember using a digital still camera equipped with a 28-70 mm lens set at 28 mm focal length on Sept. 3, 2007 at 11:38:46 GMT. The ISS was located at the nadir point of 16.9 degrees north latitude and 83.3 degrees west longitude, over the waters southwest of Grand Cayman Island. At approximately noon GMT, Hurricane Felix was near 14.2 degrees north latitude and 76.9 west longitude, about 260 miles (425 kilometers) south of Kingston Jamaica, and 425 miles (685 kilometers) east of Cabo Gracias a Dios on the Nicaragua/Honduras border, moving west at 21 miles per hour (33 kilometers per hour). The sustained winds were 165 miles per hour with higher gusts making it a category 5 on the Saffir-Simpson scale. Photo Credit: NASA + +

+ ++ View high-resolution image
+ ++ View low-resolution image + + + +


+ +Hurricane Felix + ++ View high-resolution image + +
+ ++ View low-resolution image + +




+ +ISS015-E-25044 (3 Sept. 2007) --- This view of Hurricane Felix was taken from the Earth-oribting International Space Station by an Expedition 15 crewmember using a digital still camera equipped with a 28-70 mm lens set at 28 mm focal length on Sept. 3, 2007 at 11:38:29 GMT. The ISS was located at the nadir point of 16.0 degrees north latitude and 84.0 degrees west longitude nearly over the coast of eastern Honduras when this image was taken. At approximately noon GMT, Hurricane Felix was near 14.2 degrees north latitude and 76.9 degees west longitude, about 260 miles (425 kilometers) south of Kingston Jamaica, and 425 miles (685 kilometers) east of Cabo Gracias a Dios on the Nicaragua/Honduras border, moving west at 21 miles per hour (33 kilometers per hour). The sustained winds were 165 miles per hour with higher gusts making it a category 5 on the Saffir-Simpson scale. Photo Credit: NASA + + + +


+ +Hurricane Felix + ++ View high-resolution image
+ ++ View low-resolution image + +




+ +ISS015-E-25057 (3 Sept. 2007) --- This view of Hurricane Felix was taken from the Earth-oribting International Space Station by an Expedition 15 crewmember using a digital still camera equipped with a 28-70 mm lens set at 32 mm focal length on Sept. 3, 2007 at 11:39:56 GMT. The ISS was located at the nadir point of 20.4 degrees north latitude and 80.4 degrees west longitude, over Pickle Bank, the waters between Grand Cayman Island and Cuba. At approximately noon GMT, Hurricane Felix was near 14.2 degrees north latitude and 76.9 degrees west longitude, about 260 miles (425 kilometers) south of Kingston Jamaica, and 425 miles (685 kilometers) east of Cabo Gracias a Dios on the Nicaragua/Honduras border, moving west at 21 miles per hour (33 kilometers per hour). The sustained winds were 165 miles per hour with higher gusts making it a category 5 on the Saffir-Simpson scale. Photo Credit: NASA + + +
 
\ No newline at end of file diff --git a/office/regression/000_000421.html b/office/regression/000_000421.html new file mode 100644 index 0000000..501f46c --- /dev/null +++ b/office/regression/000_000421.html @@ -0,0 +1,70 @@ + + + + + +Election 2002 Web Archive Record - Home page + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MINERVA: Mapping the Internet Electronic Resources Virtual Archive
+

Election 2002 Web Archive Record

+
Title:Home page
Alternative Title:Felix Grucci, Republican Party and Conservative Party candidate for House, New York, 1st District, 2002.
Name: +Grucci, Felix
Abstract:Web site promoting the candidacy of Felix Grucci, Republican Party and Conservative Party candidate for House, New York, 1st District, 2002. Includes candidate biography, issue position statements, campaign contact information and campaign news press releases. Site features enable visitors to volunteer and make campaign contributions.
Date Captured:August 9, 2002 - November 30, 2002
+Archived Site
Subjects:Elections--New York (State)
United States. House of Representatives--Elections
Republican Party (NY)
Third Parties
+
Language:English
Genre:Web Site
Access Condition:None
Active Site:http://www.grucci2002.com/
Collection Title:Election 2002 Web Archive
+
+ + + + + + + + + +
The Library of CongressClose window to return to search pageContact Us
  
+ + diff --git a/office/regression/000_000422.html b/office/regression/000_000422.html new file mode 100644 index 0000000..c5184d8 --- /dev/null +++ b/office/regression/000_000422.html @@ -0,0 +1,70 @@ + + + + + +Election 2002 Web Archive Record - Alvarado for Congress - Campaign 2002 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MINERVA: Mapping the Internet Electronic Resources Virtual Archive
+

Election 2002 Web Archive Record

+
Title:Alvarado for Congress - Campaign 2002
Alternative Title:Felix Alvarado, Democratic Party candidate for House, Texas, 6th District, 2002.
Name: +Alvarado, Felix
Abstract:Web site promoting the candidacy of Felix Alvarado, Democratic Party candidate for House, Texas, 6th District, 2002. Includes candidate biography, issue position statements and campaign contact information. Site features enable visitors to volunteer and make campaign contributions.
Date Captured:July 2, 2002 - November 30, 2002
+Archived Site
Subjects:Elections--Texas
United States. House of Representatives--Elections
Democratic Party (TX)
+
Language:English
Genre:Web Site
Access Condition:None
Active Site:http://www.alvarado4congress2002.com/
Collection Title:Election 2002 Web Archive
+
+ + + + + + + + + +
The Library of CongressClose window to return to search pageContact Us
  
+ + diff --git a/office/regression/000_000423.html b/office/regression/000_000423.html new file mode 100644 index 0000000..301ff67 --- /dev/null +++ b/office/regression/000_000423.html @@ -0,0 +1,191 @@ + + +DEA Fugitives, San Diego Fugitives, Arellano-Felix Hot Line + + + + + + + + + + + + + + + + + + + + + + + + +
Drug Enforcement Administration
+ + + + + + +
+ +
+Skip Navigation
+ + + + + + + + + + +
+

Press Room
+News Releases
+E-mail updates red envelope
+Speeches & Testimony
+Multi-Media Library

+

About Us
+Mission
+ Leadership
+ History
+ Organizational Chart
+ Programs & Operations
+ Wall of Honor
+ DEA Museum
+ Office Locations

+

Careers at DEA

+

Drug Information

+

Law Enforcement
+ Most Wanted
+ Major Operations
+ Threat Assessment
+ Training Programs
+ Stats & Facts
+ Additional Resources

+

Drug Prevention
+ For Young Adults
+ Additional Resources

+

Diversion + Control & Prescription Drugs
+ Registration
+ Cases Against Doctors

+

Drug Policy
+ Controlled Substances Act
+ Federal Trafficking Penalties
+ Drug Scheduling

+

Legislative Resources

+

Publications

+

Acquisitions & Contracts

+

[print + friendly page]

+

San + Diego Field Division

+

REWARDS + OFFERED FOR MEMBERS OF
+ ARELLANO-FELIX ORGANIZATION

+
+ Information sought on dangerous Mexican trafficking ring

+

SEP + 10 - In July 2003, members of the Arellano-Felix Organization (AFO) + were indicted for conducting the affairs of an illegal enterprise through + a pattern of racketeering activity (RICO), conspiracy to import and distribute + cocaine and marijuana, and money laundering. After a request by the Drug + Enforcement Administration, the U.S. Department of State issued the following + rewards for the defendants charged in the indictment who remain at large: +

+ + + + + + + + + + + + + +
Eduardo + Arellano-Felix +
up + to $5 million
+
Manuel + Aguirre-Galindo +
up + to $2 million
+
Gustavo + Rivera-Martinez +
up + to $2 million
+
+

Anyone + with information on AFO fugitives should call 1-800-720-7775 from + the United States, 011-858-277-4215 from Mexico, or email + to + afotips@usdoj.gov

+

Arellano-Felix Hot Line 1-800-720-7775 +

+

Arellano-Felix Linea Con Atencion Las 24-Horas 1-800-720-7775

+
+
Do not attempt + to apprehend these individuals.
+
+ Call the U.S. Marshals Service 24-hour number 1-877-WANTED2 (1-877-926-8332) + or the nearest DEA office with + information.
+
+ Rewards are available at the discretion of the U.S. Marshals Service.
+
+

+


+
+

Travel back to + the San Diego Field Division Fugitive List +

+
+

+ +


+
+ + + + Home + USDOJ.GOV + Privacy Policy + Contact Us + Site Map + + + + \ No newline at end of file diff --git a/office/regression/000_000424.html b/office/regression/000_000424.html new file mode 100644 index 0000000..dbeb700 --- /dev/null +++ b/office/regression/000_000424.html @@ -0,0 +1,479 @@ + + + + + + + + +Felix 2007 photo + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+

+
+
+ +
+ +
+
+ +
+
+ +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
HRD Home
+
+ + +
+
Programs +
Data Sets
+  yellow triangle bulletMission + Catalog
+  yellow triangle bulletSfc. + Wind Anal.
+  yellow triangle bulletSyn. + Surveillance
+  yellow triangle bulletRe-Anal. + Proj.
+  yellow triangle bulletBasin-Wide + Data
+  yellow triangle bulletData + Formats
+
Weather Info +
What's New +
+ Links +
+ + + + + + + + + + + + + + + + + + +
+
+ +
+ + OAR

+
+ NOAA
+Aircraft Operations Center Logo +
+ NOAA + Aircraft Operations Center
+
+
+
+
+ + + + + + + + +
+

Site + Map

+
Staff + Data + Center Contact +  Information +

Research Divisions

+
+
+ Hurricane Research
+Division +
+
+
+ +
+
+
+ + + + + +
+ +
+ + + +
+

Felix Photos

+

+Click thumbnails for full resolution picture. + + + + + + + + + + + + + + + + + + + +
+ + +
+AVI movie of lightning in the eyewall of
+Felix taken by left wing camera of N42RF

+WARNING Very large file (15 megabytes) +
+ +
+MPEG movie of lightning in the eyewall of
+Felix taken by left wing camera of N42RF

+WARNING Very large file (15 megabytes) +
+
+AVI movie of lightning in the eyewall of
+Felix taken by Dani Esteban-Fernandez (JPL)

+WARNING Very large file (410 megabytes) +
+
+ +
+MPEG movie of Felix taken by left wing camera of N42RF
+WARNING Very large file (15 megabytes) +
+ +
+MPEG movie Felix taken by down camera of N42RF
+WARNING Very large file (15 megabytes) +
+ +
+MPEG movie Felix taken by nose camera of N42RF
+WARNING Very large file (15 megabytes) + +
+
+
+onboard briefing
+taken by Dani Esteban-Fernandez (JPL) +
+
+Tom Shepherd
+taken by Dani Esteban-Fernandez (JPL) +
+
+onboard briefing
+taken by Dani Esteban-Fernandez (JPL) +
+
+Eye of Felix
+taken by Dani Esteban-Fernandez (JPL) +
+
+Eye of Felix
+taken by Dani Esteban-Fernandez (JPL) +
+
+Eye of Felix
+taken by Dani Esteban-Fernandez (JPL) +
+
+Eye of Felix
+taken by Dani Esteban-Fernandez (JPL) +
+
+Eye of Felix
+taken by Dani Esteban-Fernandez (JPL) +
+
+Eye of Felix
+taken by Dani Esteban-Fernandez (JPL) +
+
+Eye of Felix
+taken by Dani Esteban-Fernandez (JPL) +
+
+Eye of Felix
+taken by Dani Esteban-Fernandez (JPL) +
+
+Eye of Felix
+taken by Dani Esteban-Fernandez (JPL) +
+
+Eye of Felix
+taken by Dani Esteban-Fernandez (JPL) +
+
+Eye of Felix
+taken by Dani Esteban-Fernandez (JPL) +
+
+Eye of Felix
+taken by Dani Esteban-Fernandez (JPL) +
+

+Return to Felix Page
+
+
+
+ +
+
+ [Horizontal Rule] +
+
+

[OAR/DOC/NOAA Logos] + + Atlantic Oceanographic and Meteorological Laboratory Logo + [United States Department of Commerce] + [Atlantic Oceanographic and Meteorological Laboratory] + Atlantic Oceanographic and Meteorological Laboratory Logo + [National Oceanic and Atmospheric Administration] + [Office of Oceanic and Atmospheric Research] + Department of Commerce Logo + National Oceanic and Atmospheric Administration Logo + Ocean and Atmospheric Research Logo + +

+ + + + + +
  + Disclaimer | Privacy Policy
+   DOC/NOAA/AOML/
HRD
+

hrdwebmaster@aoml.noaa.gov  
+

+
+ + diff --git a/office/regression/000_000425.html b/office/regression/000_000425.html new file mode 100644 index 0000000..cdad669 --- /dev/null +++ b/office/regression/000_000425.html @@ -0,0 +1,50 @@ + + +GOES IR Atlantic Java Applet Loop + + + + +
+Hurricane IR Loop
+

+ + + +
+ + + + + + + + + +



Java must be enabled for radar loops to display. +

In Netscape:
Select: Edit -> Preferences -> Advanced
Check "Enable Java" and "Enable Javascript" +

In Internet Explorer
Select: Tools -> Internet Options -> Security tab
Select the Internet zone and set the Security level for the zone to "Medium"


You may need to restart your browser after making these changes.
+
+ +

+WebTV users click HERE! + + +

+

+Maintained by NESDIS Satellite Services Division +
GOES Webmaster
+

+
+ + + diff --git a/office/regression/000_000426.html b/office/regression/000_000426.html new file mode 100644 index 0000000..388bf06 --- /dev/null +++ b/office/regression/000_000426.html @@ -0,0 +1,811 @@ + + + +WINDandSEA: The Oceanic and Atmospheric Sciences Internet Guide - NOAA Central Library + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + (none) + + + + + + + + + + + + + + + + + + + + + + + +
NOAA Central Library
+ + + + +
 Contact Us | NOAA Libraries' Catalog | Ask-A-Librarian | A-Z Index
+ + + + + All of NOAA + + + + +
+

WINDandSEA: The Oceanic and Atmospheric Sciences Internet Guide

+ + +

WINDandSEA Index | Current Topics | The Teachers and Students Corner | NOAA Photosites | 

+ +

This Internet Guide was built in response to +the many reference questions that are posed to the library and is meant +to make Internet searching more efficient for the NOAA community, the academic +community, other government agencies concerned with oceanic and atmospheric +issues, and the general public. Presently WINDandSEA +has over 1,000 selected links to science and policy sites organized by +topic and alphabetically within topic. All of these sites have been +reviewed and annotated by NOAA Central Library and NOAA Regional Libraries staff. If you have any comments +regarding this site or wish to suggest additional sites or topics, please +send e-mail to: Library.Reference@noaa.gov

+

Note: These links lead to resources not on the NOAA Library website.

+ +

Index to WINDandSEA

+ + + + +
+ +"We are part of the earth and it is part of us.  All things are +connected. +
We did not weave the web.  We are merely strands in it. +
Whatever we do to the web, we do to ourselves." +
Chief Seattle +

+ +

+ + + + + + + + + + + + + + + + + + +
  + Last modified:    Wed, 16-Jan-2008 15:57 EST + Library.Webmaster@noaa.gov
 
Dept. of Commerce - NOAA - NESDIS - NODC
+
* External link: You will be leaving the Federal
+    Government by following an external link.
+
+
+ + +
USA.gov - The U.S. Government's Web Portal
+
+ + +
+ + diff --git a/office/regression/000_000427.html b/office/regression/000_000427.html new file mode 100644 index 0000000..cf9c8e8 --- /dev/null +++ b/office/regression/000_000427.html @@ -0,0 +1,1545 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +ARS : Felix Franca ARS : People & PlacesARS : Felix Franca + + +
+ + + + + + + + + + + + + + +
+ + + + + + + + + + + +
+ + + + + + + + + + +
+ + + + + + + + +
+ Hometop nav spacerAbout ARStop nav spacerHelptop nav spacerContact Ustop nav spacerEn Espanoltop nav spacer + +
+ +
+ + + + + + +
+ Printable VersionPrintable Version     + + E-mail this pageE-mail this page
+
+ + + + + +United States Department of Agriculture +Agricultural Research Service + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Search
+ + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 + + + + + + + + + + + + + + + + + + + +
  + + + +
  + + + +
+
+ +
+  + +  +
  + + + + + + +
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + +
+ + + + + +
+ + + + +
+ + + + + +
+ + + + Find Places
+
+ + + + + +
+ + + + Find People
+
+ + + + + +
+ + + + Find Biocontrol Expert
+
+ + + + + +
+ + + + Area Offices
+
+ + + + + +
+ + + + International
+
+ + + + + +
+ + + + Technology Transfer Offices
+
+ + + + + +
+ + + + Organization Chart
+
+ + + + + +
+ + + + + +
+ + + + + +
+
+
  + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ + +
+ + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + +
+ Felix Franca +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Office of International Research Programs + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Visiting Scientist
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + Phone: (301) 504-4556
+ + + + Fax: (301) 504-4528
+ Room 4-1193
GWCC 4-1193
+ GWCC-BLTSVL
BELTSVILLE, MD, 20705
+ + +

+ + + + + + + + + + + + + + +
+ + +

+
    
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Last Modified: 02/04/2009 +
+ + + + + + + + + + +
+ + ARS Home | + USDA.gov | + + Site Map | + + Policies and Links  + + +
+ + FOIA | + Accessibility Statement | + Privacy Policy | + Nondiscrimination Statement | + Information Quality | + USA.gov | + White House + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/office/regression/000_000428.html b/office/regression/000_000428.html new file mode 100644 index 0000000..42df23b --- /dev/null +++ b/office/regression/000_000428.html @@ -0,0 +1,2579 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +ARS : Felix N Toka Plum Island Animal Disease Center : People & PlacesARS : Felix N Toka + + +
+ + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + +
Plum Island Animal Disease Center Site Logo
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+ + + + + + + + +
+ + + + + +
+ ARS Home About Us Helptop nav spacerContact Us En Espanoltop nav spacer + +
+
+ + + + + + + +
+ Printable VersionPrintable Version     + + E-mail this pageE-mail this page
+
+ + +Agricultural Research Service +United States Department of Agriculture + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Search
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 + +
 + + +
 Advanced Search
+ +
  + + + + + + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + + + + + +
+ + + +
+ + + +
+ + + +
+
+
  + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ + + + + +
+ + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + Felix N Toka +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Plum Island Animal Disease Center + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Microbiologist
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + Phone: (631) 323-3250
+ + + + Fax: (631) 323-3006
+ 40550 ROUTE 25
+ ORIENT POINT, NY, 11944-0848
+ + +

+ + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Publications
+ Characterization of Langerhans Cells in Porcine Skin + +- (Peer Reviewed Journal) + + - (09-Jul-08) + +
+ +
+ Immune Evasion During Foot-and-Mouth Disease Virus (FMDV) Infection of Swine + +- (Review Article) + +
+ Golde, W.T., Nfon, C.K., Toka, F. Immune Evasion During Foot-and-Mouth Disease Virus (FMDV) Infection of Swine. Review Article. (2008) Vol. 225: 85-95. +
+ Suppression of Swine NK Cell Function During Acute Infection with Foot-and-Mouth Disease Virus (FMDV) + +- (Abstract) + +
+ Toka, F., Nfon, C.K., Golde, W.T. 2008. Suppression of Swine NK Cell Function During Acute Infection with Foot-and-Mouth Disease Virus (FMDV). European Study Group on the Molecular Biology of Picornaviruses. P 94 +
+ Interferon Alpha Production by Circulating Dendritic Cells is Inhibited During Acute Infection with Foot-and-Mouth Disease Virus (FMDV) + +- (Peer Reviewed Journal) + +
+ Nfon, C., Ferman Ii, G.S., Toka, F., Golde, W.T. 2008. Interferon Alpha Production by Circulating Dendritic Cells is Inhibited During Acute Infection with Foot-and-Mouth Disease Virus (FMDV). Viral Immunology. 21:68-77. +
+ Natural Killer Cells in Foot-and-Mouth Disease Virus Infection + +- (Abstract) + +
+ Toka, F., Nfon, C.K., Endsley, J., Ferman Ii, G.S., Estes, D., Golde, W.T. 2007. Natural Killer Cells in Foot-and-Mouth Disease Virus Infection. 94th Annual Meeting of The American Association of Immunologists, Inc., P 22 +
+ + +

+ +
+
    + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
 
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Last Modified: 02/04/2009 +
+ + + + + + + + + + +
+ + ARS Home | + USDA.gov | + + Site Map | + + Policies and Links  + + +
+ + FOIA | + Accessibility Statement | + Privacy Policy | + Nondiscrimination Statement | + Information Quality | + USA.gov | + White House + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/office/regression/000_000429.html b/office/regression/000_000429.html new file mode 100644 index 0000000..8eb8d04 --- /dev/null +++ b/office/regression/000_000429.html @@ -0,0 +1,71 @@ + + + +Felix Preliminary Report + + + + + + +

Hurricane Felix Preliminary Report

+ +

Excerpts courtesy of the
National Hurricane Center (NHC)
+ --Written by Max Mayfield and Jack Beven

+

+ +

+

+

+ +

Synoptic History

+A tropical wave moved off the African coast on 6 August. Satellite imagery indicated that it quickly displayed evidence of a circulation as it moved toward the west. The post-analysis "best track" shows that the disturbance became Tropical Depression Seven about 400 nmi west-southwest of the Cape Verde Islands at 0000 UTC 8 August when loosely organized deep convection increased. +

+The depression strengthened into Tropical Storm Felix later on the 8th and followed a west-northwestward track at 15-20 knots for the next three days. Based on satellite intensity estimates, Felix reached hurricane strength at 0000 UTC 11 August while centered about 500 nmi east-northeast of the Leeward Islands. Reports from reconnaissance aircraft indicated rapid strengthening from the time of the first eye penetration near 1200 UTC on the 11th through the 12th. Maximum sustained surface winds of 120 knots are estimated to have occurred near 1800 UTC 12 August. A well-defined eye was visible in satellite imagery at this time. +

+Felix moved northwestward on 12 August, and then turned more toward the north and started to weaken on 13 August. Two factors likely contributed to the weakening: 1) Felix went through a concentric eyewall cycle, and 2) wind shear increased over the system when Felix's upper-level anticyclone didn't remain centered over the lower-level cyclonic circulation. Aircraft data on the 13th when Felix was centered 300 to 400 nmi south-southeast of Bermuda indicated a large wind field with several wind maxima and no tight center. These characteristics would persist for much of the remainder of the storm's life. +

+Felix's northward turn was due to a large deep-layer trough over the western Atlantic. The trough split as Felix approached, with one part moving northeastward and filling and the other moving southward to the southwest of the hurricane. The resulting steering pattern allowed Felix to resume a general northwestward motion by 15 August, with this motion persisting into the next day. This track took the storm within 65 nmi of Bermuda and toward the North Carolina coast. +

+The split in the trough resulted in increased ridging over the western Atlantic that appeared to be strong enough to drive Felix into the eastern United States. However, a small weakness remained between and 70 and 75 degrees west as indicated by Air Force and NOAA reconnaissance data on the 16th. Felix turned northward into the weakness and almost stalled late on the 16th. It then moved slowly northeastward on 17 August. A second westerly trough failed to pick up the storm on 18-19 August, and Felix performed an anticyclonic loop offshore as the trough bypassed the tropical cyclone. The hurricane accelerated northward on 20 August and northeastward on 21 August in response to a third trough. +

+During 17-19 August, Felix had a 50-70 nmi wide eye on aircraft radar and rather weak convection in satellite imagery. Despite this, the storm maintained 65-70 knot sustained winds and a central pressure near 970 mb. It is possible that this structure was due to cooler, drier air entering the circulation at low and mid-levels. Felix dropped below hurricane strength on 20 August as it moved over colder water and shear again increased. +

+Felix became extratropical about 300 nmi east-northeast of Newfoundland on 22 August. The extratropical cyclone was tracked across the North Atlantic between Scotland and Iceland and then toward Norway. +

+On a historical note, the threat of Hurricane Felix postponed Bermuda's scheduled vote for independence. Ironically, the first inhabitants at Bermuda were survivors of a hurricane-caused shipwreck on the island in 1609. Their stories helped inspire Shakespeare's writing of the Tempest. +

+ +

+

Meteorological Statistics

+U. S. Air Force Reserve aircraft provided a total of 70 operational center fixes on Felix. The 24 missions and approximately 280 flying hours of reconnaissance on this hurricane are both records for an Atlantic tropical cyclone. The maximum winds of 143 knots from a flight-level of 700 mb were measured at 1254 UTC 12 August. The minimum central pressure was 930 mb at 2328 UTC 12 August, and it is likely that the pressure was somewhat lower during the previous 10 hours when there were no aircraft measurements. In addition to the Air Force Reserve reconnaissance, two NOAA aircraft flew a research mission on 16 August. +

+During most of the 15th and 16th, the minimum central pressure hovered between 965 and 970 mb, which would normally be consistent with 85-100 knot surface winds. However, maximum flight-level winds reported by reconnaissance aircraft were only 65-75 knots at 850 and 700 mb. This would suggest a minimal hurricane at most. The rawinsonde at Bermuda indicated 55 knot surface winds with 80 knots at 400 feet. Because a large component of these winds were probably brought to the surface in strong convective bands, the maximum sustained surface winds are estimated at 70-75 knots during this time. +

+Numerous ship reports were received in the vicinity of Felix and were helpful in defining the extent of tropical storm force winds. +

+Bermuda reported a minimum pressure of 988.1 mb and maximum sustained winds of 55 knots with gusts to 70 knots at 0000 UTC 15 August as the center of Felix passed about 65 nmi to the south-southwest. No sustained tropical storm force winds were reported by U. S. land stations. Wind gusts to 37 knots were reported from the NWS office at Buxton, North Carolina at 2058 UTC 16 August and at 0102 UTC 17 August while the hurricane was centered about 125 nmi to the east. +

+The eye of Felix passed over NOAA buoy 41001 located at 34.7N 72.6W about 150 nmi east of Cape Hatteras, near 1600 UTC 16 August. The buoy reported a 970.4 mb pressure at this time with light winds. A 10-minute average wind of 53 knots and gusts to 66 knots were reported earlier by the buoy near 1200 UTC. +

+Rain bands associated with Hurricane Felix remained offshore of the U. S. coast. +

+Although the strong winds and heavy rains did not directly affect the United State, large swells generated by Felix produced dangerous surf conditions including some coastal flooding and rip currents from northeastern Florida to New England. Isolated areas of severe beach erosion occurred along the New Jersey coast, but the most significant beach erosion occurred on the Outer Banks of North Carolina. Highway 12 on the Outer Banks was flooded with sand and ocean overwash at times of high tides. Beach nourishment occurred in some coastal areas of North Carolina to the southwest of the Outer Banks. +

+

+

Casualty and Damage Statistics

+A total of 8 deaths were confirmed in association with Felix, 3 off the North Carolina coast and 5 off the New Jersey coast. All of these fatalities were a result of drowning. +

+Although there was considerable beach erosion, little significant property damage occurred. +

+


+

Acknowledgments:

+Some information in this report was provided by NWS offices in the watch and warning areas. Position estimates during the extratropical stage were provided by the Hydrological Prediction Center. +

+ + + \ No newline at end of file diff --git a/office/regression/000_000430.html b/office/regression/000_000430.html new file mode 100644 index 0000000..65c5d38 --- /dev/null +++ b/office/regression/000_000430.html @@ -0,0 +1,174 @@ + + + + + + + +NOAA - National Oceanic and Atmospheric Administration - Dean, Felix, and Noel Retired From List of Storm Names + + + + + + + + + + + + + + + + + +

+ + + + + + + + + + +
+ + +

Dean, Felix, and Noel Retired From List of Storm Names

+

International Committee Selects Replacement Names for 2013 List

+

May 13, 2008

+
+

Hurricane Felix, a Category 5 storm, bears down on Central America.
+

+

Hurricane Felix, a Category 5 storm, bears down on Central America.

+

High resolution (Credit: NOAA)

+
+

The names Dean, Felix, and Noel, three of the most devastating storms of the 2007 Atlantic hurricane season, were retired by members of the 30th Session of the World Meteorological Organization's Regional Association IV Hurricane Committee during its annual meeting in Orlando, Fla. 

+

Members of the committee, which includes representatives from NOAA’s National Hurricane Center, can remove names associated with storms that cause significant loss of life and property. These names will not be used again because of the wide spread destruction caused by these storms.

+

The committee issues a list of potential names for tropical cyclones every six years and for 2013, Dean, Felix, and Noel have been replaced with Dorian, Fernand, and Nestor. Since tropical cyclones were first named in 1953, 70 names have been retired, the first two being Carol and Hazel in 1954.

+

Details of the newly retired 2007 named storms are shown below:

+
+

Hurricane Dean was a Category 5 storm as it hit the Mexican coast.
+

+

Hurricane Dean was a Category 5 storm as it hit the Mexican coast.

+

High resolution (Credit: NOAA)

+
+
    +
  • Dean passed between St. Lucia and Martinique on Aug. 17 on a remarkably constant heading across the Caribbean Sea, passing just south of Jamaica with Category 4 winds of 145 mph. Over the warm waters of the northwestern Caribbean Sea, Dean reached Category 5 strength of 165 mph just before landfall on Aug. 21 near Costa Maya on the Yucatan Peninsula. It weakened over land but emerged into the Bay of Campeche, strengthening to Category 2 status just before landfall the next day south of Tuxpan, Mexico. Dean is directly responsible for 32 deaths across the Caribbean, with the largest tolls in Mexico and Haiti.
  • +
+
    +
  • Felix was the second hurricane of the season to make landfall as a Category 5 hurricane, a feat never seen before in records dating back to 1851. Felix became a hurricane on Sept. 1 over the southwestern Caribbean Sea. It rapidly intensified, and Felix became a Category 5 hurricane about 400 miles southeast of Jamaica. The storm weakened to Category 3 but re-intensified to Category 5 status just before landfall on Sept. 4 at Punta Gorda, Nicaragua. Felix was responsible for 130 deaths in Nicaragua and Honduras, causing major damage in northeastern Nicaragua and inland flooding over portions of Central America. +
    +

    Hurricane Noel on November 1, 2007.
    +

    +

    Infrared satellite image of Hurricane Noel on November 1, 2007.

    +

    High resolution (Credit: NOAA)

    +
    +
  • +
+
    +
  • Noel was a slow-moving tropical storm from Oct. 25 to Oct. 31, while over the Dominican Republic, Haiti, eastern Cuba and the lower Bahamas before reaching Category 1 hurricane strength on Nov. 1 in the northwestern Bahamas. As it accelerated northeast over the western Atlantic waters near Nantucket Island, Mass., it was no longer classified as a tropical system but packed 75 mph winds as it came ashore near Yarmouth, Nova Scotia. Noel was responsible for at least 160 deaths across the Caribbean and Bahamas. The system produced hurricane force winds over portions of the northeast U.S. and Canada, producing widespread power outages. It also produced significant coastal flooding and wave action that washed out coastal roads in portions of Nova Scotia.
  • +
+

Names for the upcoming 2008 Atlantic season, which begins June 1, include Arthur, Bertha, Christobal, Dolly, Edouard, Fay, Gustav, Hanna, Ike, Josephine, Kyle, Laura, Marco, Nana, Omar, Paloma, Rene, Sally, Teddy, Vicky, and Wilfred.

+

The National Oceanic and Atmospheric Administration, an agency of the U.S. Commerce Department, is dedicated to enhancing economic security and national safety through the prediction and research of weather and climate-related events and information service delivery for transportation, and by providing environmental stewardship of our nation's coastal and marine resources. Through the emerging Global Earth Observation System of Systems (GEOSS), NOAA is working with its federal partners, more than 70 countries and the European Commission to develop a global monitoring network that is as integrated as the planet it observes, predicts and protects.

+
+ + +
+ + + + + + + + + diff --git a/office/regression/000_000431.html b/office/regression/000_000431.html new file mode 100644 index 0000000..74b9b57 --- /dev/null +++ b/office/regression/000_000431.html @@ -0,0 +1,215 @@ + + +DEA Fugitives, Los Angeles Fugitives, FELIX-GALLARDO + + + + + + + + + + + + + + + + + + + + + + + + +
Drug Enforcement Administration
+ + + + + + +
+ +
+Skip Navigation
+ + + + + + + + + + +
+

Press Room
+News Releases
+E-mail updates red envelope
+Speeches & Testimony
+Multi-Media Library

+

About Us
+Mission
+ Leadership
+ History
+ Organizational Chart
+ Programs & Operations
+ Wall of Honor
+ DEA Museum
+ Office Locations

+

Careers at DEA

+

Drug Information

+

Law Enforcement
+ Most Wanted
+ Major Operations
+ Threat Assessment
+ Training Programs
+ Stats & Facts
+ Additional Resources

+

Drug Prevention
+ For Young Adults
+ Additional Resources

+

Diversion + Control & Prescription Drugs
+ Registration
+ Cases Against Doctors

+

Drug Policy
+ Controlled Substances Act
+ Federal Trafficking Penalties
+ Drug Scheduling

+

Legislative Resources

+

Publications

+

Acquisitions & Contracts

+

Photo of Felix-GallardoDEA + Fugitive:
+ FELIX-GALLARDO, Miguel Angel
+

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NAME:FELIX-GALLARDO, Miguel Angel
FUGITIVE + NCIC#:W380443944
WANTED + FOR:

The following alleged Federal Drug Violations:

+
    +
  • KIDNAPPING AND MURDER 0F A FEDERAL AGENT
  • +
  • racketeering
  • +
  • violent crimes in aid of racketeering
  • +
  • conspiracy to commit violent crimes in aid of racketeering
  • +
  • conspiracy to kidnap a federal agent
  • +
  • aiding and abetting
  • +
  • accessory after the fact
  • +
  • possession and conspiracy to possess with intent to distribute cocaine.
  • +
JURISDICTION:Central District of California
AKA:Miguel FELIX-BELTRAN, Miguel FELIX, Miguel GALLARDO, Miguel BELTRAN, Miguel GALLARDO-FELIX, Miguel BELTRAN-FELIX, Felix BELTRAN, Miguel A. FELIX-GALLARDO, Puro FELIX-GALLARDO, Miguel DIAZ-BALTHAZAR, Miguel ALVAROZ-FERNANDEZ, Miguel ALVAROZ, Miguel FERNANDEZ, Miguel DIAZ, Puro FELIX, Puro GALLARDO, Francisco SOTO-PARRA
RACE:White, Hispanic
SEX:Male
HEIGHT:6'2"
WEIGHT:160
HAIR:Brown
EYES:Brown
YOB:1946
POB:Mexico
LAST + KNOWN ADDRESS:Unknown
NOTE:Armed and Dangerous
+
+
Do not attempt + to apprehend this individual.
+
+ Call the U.S. Marshals Service 24-hour number 1-877-WANTED2 (1-877-926-8332) + or the nearest DEA office with + information.
+
+ Rewards are available at the discretion of the U.S. Marshals Service.
+
+
+
+

Travel back to + the Los Angeles Field Division Fugitive List

+
+
+
+ + + + Home + USDOJ.GOV + Privacy Policy + Contact Us + Site Map + + + + \ No newline at end of file diff --git a/office/regression/000_000433.html b/office/regression/000_000433.html new file mode 100644 index 0000000..58103ba --- /dev/null +++ b/office/regression/000_000433.html @@ -0,0 +1,206 @@ + + + + USGS Links for 13060009 -- Rio Felix + + + + + + Link to USGS home page
+ +
+ + +
+ + + +
+Science in Your Watershed +
+Science In Your Watershed + +Home
+ +Locate Your Watershed + +Locate Watersheds
+ +USGS Links By Your Watershed + +Links By Watershed

+ +Information Discovery + +Information
+Spacer +Discovery:

+ + +Active Projects + + +Active projects
+ +Publications + + +Publications
+Databases + + +Databases
+ +Online Reports + + +Reports

+ +Data Integration + +Data Integration:
+ +Watersheds + +Watersheds
+ +Watershed Education + +Education

+ +Case Studies:
+ +Analysis + +Analysis
+ +Assessment + +Assessment
+ +Characterization + +Characterization
+ +Management + +Management

+ +GIS:
+ +GIS + +GIS
+ +GIS Education + +GIS Education
+ +GIS Software + +GIS Software

+ +Customer service + +Customer service
+ +Glossaries + +Glossaries
+ +Conferences/events + +Conferences/events

+ + + +[Know Your Watershed for HUC 13060009] +[Surf Your Watershed for HUC 13060009] +[Science in Your Watershed for HUC 13060009] +[Watershed Gateways] + +

+ +

USGS Water Resources Links for: +13060009 - Rio Felix

+

Major USGS Links

+ +

Online USGS Watershed Information For:

+

Links to Projects, Publications and Information for Region 13 - Rio Grande

+ +

+

+ + + + + + + + +
|USGS Water||Science in Your Watershed for HUC 13060009||Surf Your Watershed for HUC 13060009||Know Your Watershed for HUC 13060009||Help!|
+ +
+
+
+ + + + + + + +
U.S. Department of the Interior
+ U.S.Geological Survey
+ URL: + http://water.usgs.gov/wsc
+ Last Modified: + February 7th 2008
+ Webmaster
+ Privacy Statement + || Disclaimer + || Accessibility +
+
Take Pride in America Home Page + USAGov logo
+ + + + diff --git a/office/regression/000_000434.html b/office/regression/000_000434.html new file mode 100644 index 0000000..72071e8 --- /dev/null +++ b/office/regression/000_000434.html @@ -0,0 +1,114 @@ + + + + +Click here for Adobe Acrobat version
+ +Click here for Microsoft Word version
+
+******************************************************** 
+                      NOTICE
+********************************************************
+
+This document was converted from Microsoft Word.
+
+Content from the original version of the document such as
+headers, footers, footnotes, endnotes, graphics, and page numbers
+will not show up in this text version.
+
+All text attributes such as bold, italic, underlining, etc. from the
+original document will not show up in this text version.
+
+Features of the original document layout such as
+columns, tables, line and letter spacing, pagination, and margins
+will not be preserved in the text version.
+
+If you need the complete document, download the
+Microsoft Word or Adobe Acrobat version.
+
+*****************************************************************
+
+
+
+
+                       FEDERAL COMMUNICATIONS COMMISSION
+
+                               ENFORCEMENT BUREAU
+
+                                NORTHEAST REGION
+
+                                New York Office
+
+                               201 Varick Street
+
+                               New York, NY 10014
+
+                                January 30, 2008
+
+   Felix Leonard
+
+   Aries Communications
+
+   Brooklyn, NY
+
+                         NOTICE OF UNLICENSED OPERATION
+
+   Case Number: EB-08-NY-026
+
+   Document Number: W20083238025
+
+   The New York Office received information that an unlicensed broadcast
+   radio station on 88.5 MHz was allegedly operating in Brooklyn, NY. On
+   January 26 and January 27, 2008, an agent from this office confirmed by
+   direction finding techniques that radio signals on frequency 88.5 MHz were
+   emanating from 536 Empire Blvd., Brooklyn, NY 11225. The Commission's
+   records show that no license was issued for operation of a broadcast
+   station on 88.5 MHz at this location in Brooklyn, NY.
+
+   Radio stations must be licensed by the FCC pursuant to 47 U.S.C. S: 301.
+   The only exception to this licensing requirement is for certain
+   transmitters using or operating at a power level or mode of operation that
+   complies with the standards established in Part 15 of the Commission's
+   rules, 47 C.F.R. S:S:  15.1 et seq. The field strength of the signal on
+   frequency 88.5 MHz was measured at 6,341 microvolts per meter (uV/m) at
+   718 meters, which exceeded the maximum permitted level of 250 uV/m at 3
+   meters for non-licensed devices. Thus, this station is operating in
+   violation of 47 U.S.C. S: 301.
+
+   You are hereby warned that operation of radio transmitting equipment
+   without a valid radio station authorization constitutes a violation of the
+   Federal laws cited above and could subject the operator to severe
+   penalties, including, but not limited to, substantial monetary fines, in
+   rem arrest action against the offending radio equipment, and criminal
+   sanctions including imprisonment. (see 47 U.S.C. S:S: 401, 501, 503 and
+   510).
+
+   UNLICENSED OPERATION OF THIS RADIO STATION MUST BE DISCONTINUED
+   IMMEDIATELY.
+
+   You have ten (10) days from the date of this notice to respond with any
+   evidence that you have authority to operate granted by the FCC. Your
+   response should be sent to the address in the letterhead and reference the
+   listed case and document number. Under the Privacy Act of 1974, 5 U.S.C.
+   S: 552a(e)(3), we are informing you that the Commission's staff will use
+   all relevant material information before it to determine what, if any,
+   enforcement action is required to ensure your compliance with FCC Rules.
+   This will include any information that you disclose in your reply.
+
+   You may contact this office if you have any questions.
+
+   Daniel W. Noel
+
+   District Director
+
+   New York Office
+
+   Attachments:
+
+   Excerpts from the Communications Act of 1934, As Amended
+
+   Enforcement Bureau, "Inspection Fact Sheet", July 2003
+
+
+ + diff --git a/office/regression/000_000435.html b/office/regression/000_000435.html new file mode 100644 index 0000000..d84a5f2 --- /dev/null +++ b/office/regression/000_000435.html @@ -0,0 +1,157 @@ + + + +Tropical Floater One Visible Imagery - Satellite Services Division + + + + + + + + + + + + + +Skip Navigation Link + + + + + +
NESDIS banner image and link to NESDIS
+
Satellite Services Division banner image and link to SSD goes Imagery
+
+ + link to the NOAA Home pageLink to the National Environmental Satellite, Data, and Information Service Home Page + Default + +
+ + + + + + +
+
DOC / + NOAA / + NESDIS / + OSDPD / + SSD +
  +
+
+ + + + + + +
Link to Fire ProductsLink to OSEI PagesLink to Precipitation ProductsLink to Satellite InformationLink to Snow ProductsLink to Tropical ProductsLink to Volcano ProductsLink to Winds ProductsLink to Geographical Information System Products +  
+
+ + + + + + +
+
+
+ +
+ +

Floater - Visible Loop

+ + +

+ + + + + + + + + + + + + + +
+
+ Java must be enabled for radar loops to display.
+
+ In Netscape:
+ Select: Edit -> Preferences -> Advanced
+ Check "Enable Java" and "Enable Javascript"
+
+ In Internet Explorer
+ Select: Tools -> Internet Options -> Security tab
+ Select the Internet zone and set the Security level for the zone to "Medium"
+
+
+ You may need to restart your browser after making these changes.
+
+

+

 

+ + +

This loop intended for informational purposes only!
+For Emergency situations and/or decisions, please refer to your local Emergency Management Office.

+

General Problems with your Java Plug-in? Check here for a possible fix.
+ Notes on using Java applets in browsers
+Windows XP users: Get the latest Java Virtual Machine HERE!

+

 

+ +

 

+ + + + + + + +
Authors: Brian Hughes and Nancy Merckle

External Link Indicator Indicates a link outside the U.S. Government.

+ +
+ + + + + + + + + + + +
+ + + +
+
 
Contact Information:
+ +  
+

 

+ + diff --git a/office/regression/000_000436.html b/office/regression/000_000436.html new file mode 100644 index 0000000..4cbb64a --- /dev/null +++ b/office/regression/000_000436.html @@ -0,0 +1,29 @@ +Felix Bernstein and the First Human Marker Locus
pmc logo imageJournal ListSearchpmc logo image
Logo of geneticsJournal URL: redirect3.cgi?&&auth=0nadq2oU1xfhGjY7kwJPlDqS4KrGasRvIQmi2wkSS&reftype=publisher&artid=1205297&article-id=1205297&iid=121374&issue-id=121374&jid=301&journal-id=301&FROM=Article|Banner&TO=Publisher|Other|N%2FA&rendering-type=normal&&http://www.genetics.org/
Genetics. 1993 January; 133(1): 4–7.
PMCID: PMC1205297
Felix Bernstein and the First Human Marker Locus
J. F. Crow
Genetics Department, University of Wisconsin, Madison, Wisconsin 53706
Full Text
The Full Text of this article is available as a PDF (1.2M).
+ diff --git a/office/regression/000_000438.html b/office/regression/000_000438.html new file mode 100644 index 0000000..a2b2e08 --- /dev/null +++ b/office/regression/000_000438.html @@ -0,0 +1,893 @@ + + + + + + + + + + + + + + + + + + + + + + + ITIS Standard Report Page: Anemone oregana var. felix + + + + + + + + + + + + + + + + + + + + + + + + + + + +
The ITIS LogoThe Report banner for the ITIS Data pages
+
+ + + + + + + + +Send us your comments +ITIS Data Access Main Menu +ITIS Data Development History and Quality Indicators +Return to the ITIS Home Page +Link to Submit Data to ITIS Menu +Link to ITIS Tools + + + + + + + + + + + Go + to Print Version + + + + + + + + +

Anemone oregana var. felix + + + + +(M.E. Peck) C.L. Hitchc. +
Taxonomic Serial No.: 181864 + + + + +

+ +Download + + +Anemone oregana var. felix + + TSN 181864 + + + + + + + + + + + + +
+ + + + + +

+ + + +
 Taxonomy and + Nomenclature + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    
 Kingdom:Plantae 
 Taxonomic Rank:Variety 
 Synonym(s): + +Anemone felix +M.E. Peck
 
 Common Name(s):Felix anemone
+
 
    
  +Taxonomic Status: + + +   
 Current +Standing:accepted + + + + + + +  
    
  +Data Quality Indicators: + + +   
 Record + Credibility Rating: + verified - standards met + +  
    

+ + + + + + + + +
 Taxonomic + Hierarchy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    
 KingdomPlantae  + -- Planta, plantes, plants, Vegetal 
    SubkingdomTracheobionta  + -- vascular plants 
       DivisionMagnoliophyta  + -- angiospermes, angiosperms, flowering plants, phanrogames, plantes fleurs, plantes fruits 
          ClassMagnoliopsida  + -- dicots, dicotyldones, dicotyledons 
             SubclassMagnoliidae  + 
                OrderRanunculales  + 
                   FamilyRanunculaceae  + -- boutons d'or, buttercups 
                      GenusAnemone L. + -- anemone 
                         SpeciesAnemone oregana Gray + -- blue windflower 
                            VarietyAnemone oregana var. felix (M.E. Peck) C.L. Hitchc. -- Felix anemone 
    

+ + + + + + + + + +
 References + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    
 Expert(s):  
 Expert: +John Kartesz + 
 Notes:Biota of North America Project (BONAP), University of North Carolina  
 Reference for:Anemone oregana var. felix  
    
 Other + Source(s):  
 Source: +NODC Taxonomic Code, database (version 8.0) + 
 Acquired:1996  
 Notes:  
 Reference for:Anemone oregana var. felix  
    
 Source: +The PLANTS Database, database (version 4.0.4) + 
 Acquired:1996  
 Notes:National Plant Data Center, NRCS, USDA. Baton Rouge, LA 70874-4490 USA. http://plants.usda.gov  
 Reference for:Anemone oregana var. felix  
    
 Source: +The PLANTS Database, database (version 5.1.1) + 
 Acquired:2000  
 Notes:National Plant Data Center, NRCS, USDA. Baton Rouge, LA 70874-4490 USA. http://plants.usda.gov  
 Reference for:Anemone oregana var. felix  
    
 Publication(s):  
 Author(s)/Editor(s):  
 Publication Date:  
 Article/Chapter Title:  
 Journal/Book Name, Vol. No.:  
 Page(s):  
 Publisher:  
 Publication Place:  
 ISBN/ISSN:  
 Notes:  
 Reference for:  
    

+ + + + + + + + + + + +
 Geographic Information + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    
 Geographic + Division:North America 
    
 Jurisdiction/Origin:Continental US, Native 
 

 

  

+ + + + + + + + + +
 Comments + + + + + + + + + + + + + + + + + + +
    
 Comment:  
 

 

   + + +
+ + + + + + + + + + + + + +
+ + + + + + + + +
 Other Off-Site Resources + +    This is a new feature of ITIS + + + + + + + + + + + + + + + + + + + + +
    
  +

Additional off-site resources may be available for this taxon. + ITIS will build search links for all of the following that return results:

+
    +
  • Global Biodiversity Information Facility (GBIF) Data Portal
  • +
  • BioOne Journals
  • +
  • National Center for Biotechnology Information (NCBI) Entrez Life Sciences Search
  • +
  • Google Images
  • +
  • The National Biological Information Infrastructure (NBII)
  • +
  • Convention on International Trade in Endangered Species (CITES) of Wild Fauna and Flora Search
  • +
  • United Nations Environment Programme (UNEP) World Conservation Monitoring Centre (WCMC) Search
  • +
  • Threatened and Endangered Species (TESS) Search
  • +
  • U.S. Fish and Wildlife Service (FWS) Search
  • +
  • Ocean Biogeographic Information System (OBIS) Search
  • +
  • USDA PLANTS Database Search
  • +
  • NatureServe Explorer Search
  • +
+

Please be patient. The time it takes to return results depends + on the speed of the individual sites and may take several minutes.

+
+
 
  +
+ +
+
   +
+
+ + + + +
+ + + + + + + + + + + +
+ A gray graphic bar
Search on: + +  Any Name or TSN + +  Common Name + +  Scientific Name + +  TSN
+ + + + + +
In: +  Kingdom +   + +   + + +
+ + + + +
+ + +
+ + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
A gray bar +
Date Generated:  
+ + + + +Thu Feb 5 2009 06:15:08 MST + +
+ + + + diff --git a/office/regression/000_000439.html b/office/regression/000_000439.html new file mode 100644 index 0000000..832ccab --- /dev/null +++ b/office/regression/000_000439.html @@ -0,0 +1,202 @@ + + + +Complaint: SEC v. Felix Litvinsky and Olga S. Litvinsky + + + + + + + + + + + + + + + + +
U.S. Securities & Exchange Commission
SEC Seal + + + + + + + + + + + + + + + + + + + + + + + + + + +
Home | Previous Page
U.S. Securities and Exchange Commission
+
+ + + + + + +
+ +
+ + + +

UNITED STATES DISTRICT COURT +
SOUTHERN DISTRICT OF NEW YORK + +

+ + +

+

SECURITIES AND EXCHANGE COMMISSION, +

Plaintiff,
+

v.

+

FELIX LITVINSKY and OLGA S. LITVINSKY +

Defendants.
+


:
:
:
:
:
:
:
:
:

+ 02 Civ. _______( ) +

COMPLAINT

+ + +

Plaintiff, the United States Securities and Exchange Commission (the "Commission") alleges: + +

NATURE OF THE ACTION + +

1. This insider trading case involves the unlawful purchase by defendant Felix Litvinsky of 60 shares and 20 call options of BetzDearborn Inc. ("BetzDearborn") two days before the July 30, 1998 announcement that BetzDearborn and Hercules Incorporated ("Hercules") had signed a definitive merger agreement. Felix Litvinsky was tipped about the impending merger by his then-girlfriend and roommate, and now wife, defendant Olga Summar Litvinsky. Olga Litvinsky was employed as an administrative assistant by J.P. Morgan Securities, Inc. ("J.P. Morgan"), a registered broker-dealer based in New York, New York, which was advising BetzDearborn about the merger. Felix realized $56,239 by unlawfully acquiring BetzDearborn securities while in possession of material nonpublic information he knew, or was reckless in not knowing, was stolen from J.P. Morgan by Olga Litvinsky. + +

2. By informing Felix Litvinsky about the BetzDearborn merger with Hercules, Olga Litvinsky unlawfully misappropriated material nonpublic information from J.P. Morgan in breach of her duty to her employer. This nonpublic information was intended to be used for the business purposes of J.P. Morgan and its client, BetzDearborn, and not for personal gain. Felix Litvinsky knew, or should have known, that Olga Litvinsky had misappropriated nonpublic information in breach of her duty of trust and confidence to her employer. + +

3. By virtue of the conduct alleged above, defendants violated antifraud provisions of the federal securities laws. The Commission requests that the Court enter injunctive relief against further violations of these laws, impose a penalty on each defendant, and hold the defendants jointly and severally liable for disgorgement of all profits realized from the unlawful trading in BetzDearborn securities, plus prejudgment interest on that amount. + +

JURISDICTION AND VENUE + +

4. Defendants engaged in acts, practices, and courses of business that violate Section 10(b) of the Securities Exchange Act of 1934 (the "Exchange Act") [15 U.S.C. § 78j(b)] and Rule 10b-5 thereunder [17 C.F.R. §240.10b-5], through the means or instrumentalities of interstate commerce, the mails, or the facilities of a national securities exchange. + +

5. This Court has jurisdiction under Sections 21(e), 21A(d)(4), and 27 of the Exchange Act [15 U.S.C. §§ 78u(e), 78u-1(d)(4), and 78aa]. Certain of the defendants' transactions, acts, practices, and courses of business occurred within this District, and venue is proper pursuant to Section 27 of the Exchange Act. + +

DEFENDANTS + +

6. Olga Summar Litvinsky, age 42, resides in Fairlawn, New Jersey. From July 1997 through July 30, 1998 (and thereafter), Olga was employed by J.P. Morgan as the assistant to a managing director ("managing director"). The managing director was J.P. Morgan's relationship manager for BetzDearborn and the principal coordinator of its financial advisory services during the BetzDearborn/Hercules merger negotiations. Olga lived with her boyfriend, Felix Litvinsky, beginning in the summer 1997. They were married in August 1998. + +

7. Felix Litvinsky, age 36, resides in Fairlawn, New Jersey. During 1998, Felix was employed as a quality assurance manager by Citibank. + +

OTHER ENTITIES + +

8. BetzDearborn was a Pennsylvania corporation based in Trevose, Pennsylvania, that produced and marketed chemical treatment programs for water, wastewater, and industrial process systems. Prior to its merger with Hercules on October 15, 1998, BTL's common stock was registered with the Commission pursuant to Section 12(b) of the Exchange Act and was traded on the New York Stock Exchange. BetzDearborn call options were traded on the Pacific Stock Exchange. + +

9. Hercules Inc. is a Delaware corporation based in Wilmington, Delaware, that manufactures specialty chemical products for a variety of markets worldwide. + +

COUNT I + +

Violations of +
Section 10(b) of the Exchange Act +
[15 U.S.C. § 78j(b)] and +
Rule 10b-5 thereunder [17 C.F.R. § 240.10b-5] +
J.P. Morgan Administrative Assistant Olga Litvinsky Learns of BetzDearborn's +
Secret Merger Plans with Hercules and Tips Felix Litvinsky + +

10. From April 1998 through the July 30, 1998 merger announcement, BetzDearborn and Hercules conducted merger negotiations in secret. Olga Litvinsky's supervisor, a managing director, was responsible for coordinating all services provided by J.P. Morgan to BetzDearborn in connection with the merger with Hercules. + +

11. As the managing director's assistant, Olga Litvinsky had full access to all of his files and documents concerning BetzDearborn, including memos, agreements, drafts, calendar and his meeting schedule. Olga Litvinsky was aware of a pending merger of BetzDearborn with Hercules prior to the merger announcement on July 30, 1998. + +

12. As an employee of J.P. Morgan, Olga Litvinsky had a duty to maintain the confidentiality of information she learned during the course of her employment. The J.P. Morgan Worldwide Rules-General Standards of Conduct (1996) ("Rules") specifically prohibited an employee from disclosing any confidential client information. The Rules also required pre-approval of all personal securities transactions, prohibited trading in stock options, and applied to persons living with an employee. On February 4, 1998, Olga Litvinsky certified that she had read and understood the Rules, and that she had complied with the Rules and would comply with them in the future. + +

13. Beginning in February 1998, J.P. Morgan provided confidential advice to BetzDearborn concerning a business combination with Hercules. On June 23, 1998, J.P. Morgan signed an exclusive engagement letter with BetzDearborn, which provided that J.P. Morgan would maintain the confidentiality of BetzDearborn's merger negotiations with Hercules. + +

14. On or before July 28, 1998, in breach of her duty to her employer, Olga Litvinsky told Felix Litvinsky that BetzDearborn was going to be acquired by Hercules. This information was nonpublic and material. + +

15. On July 28, 1998, Felix Litvinsky bought BetzDearborn stock and options in two different accounts. Felix Litvinsky bought 60 shares for $36.6875 per share, for a cost of $2,201.25 (excluding commissions) in his Citibank IRA account, selling the only asset in the account, which he had owned since 1986. Felix Litvinsky realized $2,238 on the sale, and used $2,231 - or all but seven dollars, to buy BetzDearborn shares. + +

16. Also on July 28,1998, Felix Litvinsky bought 20 August 40 BetzDearborn call options at $31,25 per contract, for a cost of $625 in his discount brokerage account, which at the time had a cash balance of $710. These 20 option contracts gave Felix Litvinsky the right to acquire up to 2,000 shares of BetzDearborn common stock (100 shares per contract) at the set price, or "strike price," of $40 a share until the contracts expired on the Saturday after the third Friday in August, here Saturday, August 22, 1998. On the day these option contracts were purchased, the price of BetzDearborn's common stock closed at $34.75, which was below the strike price of $40, making these "out of the money" call options. + +

17. On July 30, 1998, after the merger announcement, Felix Litvinsky sold all of his BetzDearborn securities, realizing a profit of $56,238.75. Felix Litvinsky sold his 60 shares at $67.75 per share, for gross proceeds of $4,065. He sold his 20 August 40 option contracts at $2,750 per contract, for gross proceeds of $55,000. + +

18. Olga Litvinsky misappropriated from J.P. Morgan material nonpublic information about BetzDearborn's confidential negotiations to merge with Hercules, and tipped that information to Felix Litvinsky, in breach of the duty of trust and confidence that Olga Litvinsky owed to J.P. Morgan and under circumstances in which it was foreseeable that Felix Litvinsky would use the information himself to buy BetzDearborn securities. + +

19. Defendant Felix Litvinsky knew, or was reckless in not knowing, that the information he received from Olga Litvinsky concerning BetzDearborn's confidential plans to merge with Hercules was material, nonpublic information that had been provided in breach of Olga Litvinsky's duty of trust and confidence to her employer. + +

20. By virtue of the conduct alleged in paragraphs 1-19 herein, each defendant, directly or indirectly, in connection with trading in BTL common stock, by use of the means and instrumentalities of interstate commerce, of the mails, or of the facilities of a national securities exchange: (1) employed devices, schemes, or artifices to defraud; (2) made untrue statements of material facts, or omitted to state material facts necessary in order to make the statements made, in light of the circumstances in which they were made, not misleading; or (3) engaged in acts, practices, or transactions which operated as a fraud or deceit upon purchasers or sellers of securities or upon other persons, in connection with the purchase or sale of securities. + +

21. By reason of the foregoing acts, practices, and transactions, each defendant violated Section 10(b) of the Exchange Act [15 U.S.C. § 78j(b)] and Rule 10b-5 thereunder [17 C.F.R. § 240.10b-5]. + +

PRAYER FOR RELIEF + +

WHEREFORE, the Commission respectfully requests that this Court: + +

I. + +

Grant a Final Judgment of Permanent Injunction restraining and enjoining each defendant and their agents, servants, employees, attorneys-in-fact, and assigns and those persons in active concert or participation with them, and each of them, from violating Section 10(b) of the Exchange Act [15 U.S.C. § 78j(b)] and Rule 10b-5 thereunder [17 C.F.R. § 240.10b-5]. + +

II. + +

Order the defendants jointly and severally to disgorge illegal trading profits plus prejudgment interest thereon. + +

III. + +

Order each defendant to pay civil penalties under the Insider Trading and Securities Fraud Enforcement Act of 1988, Section 21A of the Exchange Act [15 U.S.C. § 78u-1]. + +

IV. + +

Grant such other relief as this Court may deem just and appropriate. + +

+ + + + + + + + + +
 

Respectfully submitted,

+__________________________ +
Robert B. Blackburn (RBB1545)
+__________________________ +
James A. Kidney (JK 5830) (Lead Counsel) +
William R. Baker III +
Antonia Chion +
John P. Sherry
Local counsel for Plaintiff +
Securities and Exchange Commission +
233 Broadway +
New York, New York 10279 +
(646) 428-1610
Attorneys for Plaintiff
+ Securities and Exchange Commission
+450 Fifth Street, N.W.
+Washington, D.C. 20549-0911
+ (202) 942-4797 (Kidney)
+(202) 942-9581 (Fax)
Dated: January ___, 2002
+ +

+
+
+http://www.sec.gov/litigation/complaints/complr17306.htm
+ +
+ + + + + +
Modified: 01/14/2002
+
+ + diff --git a/office/regression/000_000440.html b/office/regression/000_000440.html new file mode 100644 index 0000000..8968f00 --- /dev/null +++ b/office/regression/000_000440.html @@ -0,0 +1,315 @@ + + + + + + + +Felix Bloch, Nuclear Induction, Bloch Equations, Bloch Theorem, Bloch States + + + + + + + + + + + + + + + + + + + +
+ + +
+
+ +
+ +
+ + + + + + +
start buttonDatabase  Search  Browse  end button
+



+ +


+
+ + +

Felix Bloch, Nuclear Induction, and Bloch Equations

+ + +

+ Resources with Additional + Information + + +

Stressing "the importance both of demonstrating the neutron's + magnetic moment and of determining its magnitude", Felix Bloch + began his research on neutron physics at Stanford + [University] in early 1936. "Using mostly X-ray + and microwave equipment from the physics labs, he and Norris Bradbury + ... built [a neutron] source ... . (Bloch later pointed out that this + equipment was more important as a source of inspiration than of neutrons.) + Eventually, he extended his use of neutron sources to studies of neutron + polarisation, a link to his earlier research in ferromagnetism. +

+

+ Felix Bloch
+ + Courtesy
Stanford University Archives
+
+

+ These + studies served as a basis for a collaborative effort with Luis Alvarez + ... . In the fall of 1938, Alvarez and Bloch began working with Berkeley's + 37" cyclotron to determine the magnetic moment of the neutron. + ... By the summer of 1939 ... they were able to publish very precise + results. This experiment was, in fact, one of the first important uses + of Ernest Lawrence's cyclotron. ..

+

In 1942, [J. Robert] Oppenheimer asked Bloch to work on the Manhattan Project. + Bloch, collaborating with [Hans] Bethe, [Edward] Teller, + and [Hans] Staub, used the homemade Stanford cyclotron for the + first experimental determination of the energy distribution of neutrons + from fission. After this was completed, Bloch left for Los Alamos, + New Mexico where he worked on special theoretical problems under + Bethe's supervision. +

At a meeting of the American Physical Society in December [1945]. Bloch + met... [Edward] Purcell of + Harvard University and the two discussed their recent research. + Both recognized that the theoretical basis of their respective + projects was the same, although they had been using slightly + different techniques to achieve experimental + results. So they decided to split up the field: Bloch would + use the effect in the study of liquids; Purcell would examine + crystals. The Stanford group + gathered its first positive results in January 1946 (see Physical + Review 69, 127(L) (1946)). "

+

Bloch was recognized for his achievements when he was awarded the 1952 + Nobel Prize for Physics for the ‘development of new methods + for nuclear magnetic precision measurements and discoveries + in connection therewith'.

+

Further recognition for Bloch came in 1954 when he was asked to serve + as the first Director-General of the European Center for Nuclear + Research (CERN). + After a year in this position, he returned to Stanford where, "[d]uring + the next few years, he and Leonard Schiff, department chairman + from 1954 through 1966, built one of the leading physics teaching + and research facilities + in the world. They and the other senior members of the department + persuaded the Atomic Energy Commission to construct the huge + linear accelerator" (SLAC).

+

"As such a well-known scientist, Bloch was involved with many professional + organizations... includ[ing] the American + Academy of Arts + and Sciences, the American Philosophical Society, the National + Academy of Sciences, the Weizmann Institute of Science, and + the American Physical + Society. He was appointed an honorary member of the Swiss Physical + Society and received honorary degrees from Grenoble University, + Oxford University, + the University of Jerusalem, and the University of Zurich. + In 1965, he served as president of the American + Physical Society, + one of the largest scientific organizations in the country."

+ +
+

Top

+ +

Resources with Additional Information

+
+

Additional information about Felix Block and his work is available + in full text and on the Web.

+
+ +

Documents:

+
+ + A Quantitative Determination of the Neutron Moment in Absolute Nuclear + Magnetons; Physical Review, Vol. 57, Issue 2: 111-122, January + 15, 1940 +

Fission + Spectrum, August 18, 1943

+

A + Quantitative Determination of the Magnetic Moment of the Neutron + in Units of the Proton Moment; Physical Review, Vol. 74, + Issue 9: 1025-1045, November 1, 1948

+

A + Direct Determination of the Magnetic Moment of the Proton in Nuclear + Magnetons; Physical Review, Vol. 80, Issue 2: + 305-306, October 15, 1950

+

Theory + of Line Narrowing by Double-Frequency Irradiation; + Physical Review, Vol. 111, Issue 3: 841-853, August 1, 1958

+

Energetic + Stability of Persistent Currents in a Long Hollow Cylinder; + Physical Review, Vol. 128, Issue 4: 1697-1714, November 15, 1962

+
+
+

Additional Web Pages:

+
+

Chronology – Bloch (Felix) Papers; Online Archive of + California, Stanford University Archives

+

Bloch Equations

+

The Bloch Theorem

+

Bloch States: Not for Electrons Only

+

A Life-Saving Window on the Mind and Body: The Development of + Magnetic Resonance Imaging

+

Biographical + Memoirs V.64 (1994); National Academy of + Sciences; Felix Bloch – pages 34 - 71

+

Top

+
+



+ + + + + + + diff --git a/office/regression/000_000442.html b/office/regression/000_000442.html new file mode 100644 index 0000000..ef55185 --- /dev/null +++ b/office/regression/000_000442.html @@ -0,0 +1,494 @@ + + + + + + + +PLANTS Profile for Anemone oregana var. felix (bog anemone) | USDA PLANTS + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + +
USDA and NRCS IdentifierNRCS Logo
+ + + + + + + + + + + + + + + + + + + +
  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PLANTS Profile

+ +


Anemone oregana A. Gray var. felix (M. Peck) C.L. Hitchc.
+ bog anemone

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  
Symbol:ANORF
Group:Dicot
Family:Ranunculaceae
Duration: + + Perennial + + +
Growth Habit: + + Forb/herb + + +
Native Status:  + + + + + + + + + +
  
+



+ +
+ + + + + + + + + + + + + +
 
More Information:
+
    + +
  • Classification Report
  • + +
  • Data Source and Documentation
  • + + + + +
+
+ +
+ +
 

Synonyms:
+ Anemone oregana A. Gray var. felix (M. Peck) C.L. Hitchc.

+ + + + + + + + + + +
 ANFE3Anemone felix M. Peck
+
 
+ +

Distribution by State:
+ Anemone oregana A. Gray var. felix (M. Peck) C.L. Hitchc.

+ + + + + + + +
Distributional Map for Anemone oregana A. Gray var. felix (M. Peck) C.L. Hitchc. +
Distribution Map Legend
+ +

Anemone oregana A. Gray var. felix (M. Peck) C.L. Hitchc. distribution:
+ USA (OR, WA)

+ +

County distributions for the following U.S. states are available at PLANTS:
+ + OR, + + WA + +

+
 

Related Taxa:
+ Anemone oregana A. Gray var. felix (M. Peck) C.L. Hitchc.

+ + + + + 25 genera in Ranunculaceae, + 26 species in Anemone, + 2 varieties + in Anemone oregana A. Gray + + + + +
 

Classification:
+ Anemone oregana A. Gray var. felix (M. Peck) C.L. Hitchc.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
   
Kingdom Plantae + – Plants
Subkingdom Tracheobionta + – Vascular plants
Superdivision Spermatophyta + – Seed plants
Division Magnoliophyta + – Flowering plants
Class Magnoliopsida + – Dicotyledons
Subclass Magnoliidae +
Order Ranunculales +
Family Ranunculaceae + – Buttercup family
Genus Anemone L. + – anemone
Species Anemone oregana A. Gray + – blue windflower
Variety Anemone oregana A. Gray var. felix (M. Peck) C.L. Hitchc. + – bog anemone
+
 

Wetland Indicator Status:
+ Anemone oregana A. Gray var. felix (M. Peck) C.L. Hitchc.

+ + + + +

Anemone oregana:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Nat. Ind. Reg. 1Reg. 2Reg. 3Reg. 4Reg. 5Reg. 6Reg. 7Reg. 8Reg. 9Reg. 0Reg. AReg. CReg. H
FACU,OBLNONONONONONONONOFACUOBLNONONO
+
+ + +
 

Integrated Taxonomic Information Sytem (ITIS) :
+ Anemone oregana A. Gray var. felix (M. Peck) C.L. Hitchc.

+

ITIS Taxonomic Serial Number 181864.

+

 

+
+ +
 

 

 
Time Generated: 02/05/2009 06:05 PM MST 
+ + + + + +
 
 
+
+ +
 
+ + +
+ + diff --git a/office/regression/000_000445.html b/office/regression/000_000445.html new file mode 100644 index 0000000..4d5f557 --- /dev/null +++ b/office/regression/000_000445.html @@ -0,0 +1,248 @@ + + + + +STAR (ORA) Staff Scientists - Felix Kogan + + + + + + + + + + + +
+
+
+ only rendered in printing; banner identifies NOAA, NESDIS, and STAR organizations
+
+
+ STAR title banner
+
+ NESDIS Logo
+
+
+
+
+
+
Home  |  Sitemap  |  Contact Us  |  Careers  |  Intranet  |  Advanced + Search
+ +
+
+
+ + + + + + + + + + + +
+
+ +
+
+

Felix Kogan

+

Satellite Meteorology and Climatology Division

+

Environmental Monitoring Branch
+ Research Scientist

+
+
SMCD shield
+
+
+

photo of Felix KoganFelix Kogan received a M.S. in Agricultural Meteorology + from Odessa Meteorological Institute, USSR and a Ph.D. in Environmental + Sciences from the World Meteorological Center, Moscow, USSR. After serving + as a Senior Scientist at the World Meteorological Center in Moscow, USSR + until 1980, he spent five years at the University of Missouri-Columbia + as a Research Associate. Felix joined NESDIS in 1985, applying his + expertise to a number of areas, including remote sensing; ecosystems; + climate and weather impact assessments; land cover/land use change; + monitoring droughts, desertification and deforestation; mosquito-borne + diseases; productivity of land landscape; some issues of agriculture + and forestry; agricultural meteorology and climatology; and environmental + zoning.

+ +

Interests & Duties

+

Research and development in the application of satellite data to the + solution of environmental problem with the specific emphasis on land and + atmosphere. The topics include climate and weather impacts on ecosystems + and human activities, climate variability, environmental hazards, + satellite data application and interpretation. Developed advanced + technique for monitoring drought, fire risk, El Nino/La Nina features, + and mosquito-borne epidemics from operational environmental satellites. + Principal investigator of numerous national and international projects + funded by the Agency for International Development, by-national funds, + UN=s Food and Agricultural Organization, NATO and NOAA. International + cooperation activities with government institutions, universities, and + private organizations transferring new technologies. Author and co- + author more than 150 scientific papers, including book chapters.

+ +

Felix's current projects include the following:

+
    +
  • Research and development in the application of satellite data to + the solution of environmental problems with the specific emphasis + on land and atmosphere.
  • +
  • Studies of climate and weather impacts on ecosystems and human + activities, climate variability, environmental hazards, land cover + land use change, satellite data application and interpretation.
  • +
  • Developing advanced technique and products for monitoring drought, + fire risk, El Nio/La Nia-related land cover features, and diseases / + epidemics from operational environmental satellites.
  • +
  • Developing data sets the for Global Earth Observing System of Systems (GEOSS).
  • +
+

Felix has acted as Principal Investigator of numerous national and + international projects funded by the Agency for International Development, + the United Nations Food and Agricultural Organization, NATO and NOAA. + He has lead global-scale international cooperation with government + institutions, universities, and private organizations in transferring new + technologies. He is a member of the UN World Meteorological Organization + (WMO) Technical Team and of the editorial board of the Indian Journal of Remote Sensing.

+

Recent Publications:

+
+ +

Vargas, M., F. Kogan, W. Guo 2008: Removing noise from AVHRR derived + NDVI due to volcanic stratospheric aerosols using statistical methods. + Int. J. Rem. Sens. (Submitted)

+ +

Zhang, X., S. Kondragunta, C. Schidt, F. Kogan 2008: Near real time + monitoring of biomass burning particulate emissions (PM2.5) across + contiguous United States using multiple satellite instruments. + Atmospheric Environment 42, 6959-6972.

+ +

Jiang, Le, J. Dan Tarpley, Kenneth E. Mitchell, Sisong Zhou, Felix + Kogan, and Wei Guo 2008: Adjusting for long-term anomalous trends in + NOAA's Global vegetation index data set. IEEE Transactions on Geoscience + and Remote Sensing. Vol. 46, No 2 Feb 2008.

+ +

Salazar, L., F. Kogan and L. Roytman 2008: Using vegetation health + indices and partial least square method for estimation of corn yield. + Int. J. Rem. Sens., Vol. 29, Nos. 1-2, Jan. 175-189.

+ +

Salazar, L., F. Kogan and L. Roytman 2007: Use of remote sensing data + for estimation of winter wheat yield in the United States. Int. J. Rem. + Sens., Vol. 28, Nos. 17-18, Sep., 3795-3811.

+ +

Mandelson, R., P. Kurukulasuriya, A. Basist, F. Kogan, C. Williams, + 2007: Climate analysis with satellite versus weather station data. + Climate Change, 81: 71-83.

+ +

Jiang, Le, J.D. Tarpley, K. E. Mitchell, S.Zhou, F. Kogan, W. Guo, 2007: + Global climatology and near-real time vegetation indices from AVHRR: + Part 1, Fixing spurious trends in NOAA's weekly NDVI datasets (in press)

+ +

Rahman, A., F. Kogan and L. Roytman 2006: Analysis of Malaria Cases in + Bangladesh with Remote Sensing Data. Amer. J. Trop. Med., 74(1), 17-19.

+ +

Kogan, F.N., B. Yang and G. Wei, 2004: Modeling corn yield in China using + AVHRR-based vegetation health indices. Int. J. Remote Sens.

+ +

Kogan, F., R. Stark, A.Gitelson, E. Adar, L. Jargalsaikhan, C. Dugrajav, and + S. Tsooj, 2004: Derivation of Pasture Biomass in Mongolia from AVHRR-based + Vegetation Health Indices. Int. J. Remote Sens., 25 (14), 2889-2896

+ +

Boken, V.K., G. Hoogenboom, F. Kogan, J.E. Hook, D.L. Thomas and K.A. + Harrison, 2004: Potential of using NOAA-AVHRR data for estimating irrigated + area to help solve an inter-state water dispute. Int. J. Rem. Sens., + 25 (12), 2277-2286.

+ +

Kogan F., A. Gitelson, E. Zakarin, L. Spivak, L. Lebed, 2003: AVHRR-based + spectral vegetation indices for quantitative assessment of vegetation state + and productivity: calibration and validation. Photogrammetric Engineering + & Remote Sensing, 69 (8), 899-906.

+ +

Singh, R.P., S. Roy and F. Kogan, 2003: Vegetation and Temperature Condition + Indices from NOAA-AVHRR Data for Monitoring Drought over India Region. Int. + J. Rem. Sens. 24 (22), 4393-4402;

+ +

R. Singh and F. Kogan, 2002: Monitoring Vegetation Condition from NOAA + Polar-Orbiting Satellites Over India Region. Journal of the Indian Society + of Remote Sensing, 30 (3), 117-119.

+ +

Dabrowska-Zielinska, K., F. Kogan, K. A. Ciolkosz, M. Gruszczynska and W. + Kowalik 2002: Modeling of crop conditions and yield in Poland using + AVHRR-based indices. Int. J. Rem Sens., 23 (6), 1109-1123.

+ +

Liu, W.T. and F. Kogan 2002: Monitoring Brazilian soybean production + using NOAA/AVHRR based vegetation condition indices. Int. J. Rem Sens., + 23 (6), 1161-1179.

+ +

F. Kogan, 2002: World Droughts in the New Millennium from AVHRR-based + Vegetation Health Indices. Eos, 83 (48), 557-564.

+ +
+ +
+

E-mail: Felix.Kogan@noaa.gov

+ +
+
+ + + +
+ + + \ No newline at end of file diff --git a/office/regression/000_000446.html b/office/regression/000_000446.html new file mode 100644 index 0000000..a07882c --- /dev/null +++ b/office/regression/000_000446.html @@ -0,0 +1,132 @@ + + + + +'Felix the Helix' Introduces DNA to Elementary Students - The NIH Record -July 13, 2007 + + + + + + + +
+ + + + +
+ + + + + + + +
+ + + + + + + + + + + + + + + +
skip navigationnih record
Vol. LIX, No. 14 + + + + + + + +
July 13, 2007
+ + + + + +
cover
+
+ previous story
+

+ next story
+

+
+
+ + + + + +

+ 'Felix the Helix' Introduces DNA to Elementary Students
+ +
+
+ + + + + + + + + + + + + + + + +
 Felix the Helix (second from r, and really NHGRI's Melissa Meredith) joins a genome institute cast onstage at the Oyster Bilingual School cafeteria. The ensemble taught kids about science and DNA. 
 Felix the Helix (second from r, and really NHGRI's Melissa Meredith) joins a genome institute cast onstage at the Oyster Bilingual School cafeteria. The ensemble taught kids about science and DNA. 
+ The 250 five-, six- and seven-year-olds gathered in the Oyster Bilingual School cafeteria hushed in the expectation of a visitor to be introduced at their morning assembly on May 29. With an air of celebrity and accompanied by six friendly + helpers, an amusing new children's character + took the stage. Forty minutes later, the students celebrated their new knowledge of genetics by singing along to the DNA Song with Felix the Helix. +

Felix is the featured performer in a National + Human Genome Research Institute youth outreach performance. It debuted at the Oyster + School on Calvert St., NW, after months of planning by Melissa Meredith, genetics fellow, and Hailey Edwards, a post-baccalaureate trainee + with the Medical Genetics Branch's Gahl lab. The main goals of the production are to promote + interest in science and to teach that all living + things have DNA; this amazing molecule is the blueprint for what makes people unique and needs to be protected. Five other members of the Gahl lab joined Felix's supporting cast.

+

"We wanted to do something that would get children interested in science as an active topic, and I think it's important for children to learn about genetics at an early age," Meredith said.

+

This isn't her first time in a costume (that's her behind Felix's sunglasses). Meredith did a similar + youth outreach project at the Mayo Clinic and played Henry the Hand to teach kids the importance of hand washing. When she came to NHGRI 2 years ago, she formed the idea for Felix the Helix, but the concept didn't get off the ground until Edwards joined the Gahl lab and expressed a similar interest.

+

The two made the costume themselves, constructing + the character out of a nylon kiddie play tunnel and repurposed pool noodles.

+

Their labor drew giggles from the crowd as Felix lumbered onto the stage wearing his clown shoes and a big, red smile.

+

Angelica Garcia, another post-baccalaureate trainee, escorted Felix and translated part of the presentation into Spanish. Garcia said of DNA education for young children, "It's hard to understand, so we try to break it down into simpler + terms."

+

In the morning's first activity, an instruction manual of DNA - with some help from the rows of children dressed in bright summer dresses and shorts - pointed out how a person fit together (demonstrated comically by geneticist Mike Kaiser). The next interactive element brought an eager group of audience members to the stage, each holding an A, T, C or G on colored paper. Staff scientist Heidi Dorward helped participants find their buddies-A's with T's, C's with G's - to form a double-stranded DNA model. Geneticist Wendy Introne explained how the DNA folded and wound around to form a Slinky-like double helix.

+

In a question-and-answer activity, the young audience delivered enthusiastic, unanimous responses. Does a soccer ball have DNA? "No!" Does a flamingo have DNA? "Yes!"

+

The last and arguably most important lesson of the day came from geneticist + Tom Markelow with his explanation of how ultraviolet rays from the sun can harm DNA - and the children's new friend Felix. Sunscreen and hats were encouraged as ways to fight off the evil UV rays. + "Even if you're a child, you can understand danger. Understanding that there is a reason for using sunscreen can help, even at a young age," Meredith said. + She and the rest of the Felix team reprised their show at Deer Park Elementary School in Centreville, Va., on June 13. With help from teacher evaluations from the Oyster Bilingual School, they honed their messages and improved their techniques. + The Felix team has also been invited back to Oyster to perform in its summer program. + Alexa Barrett, an Oyster school kindergartener, got more than one thing out of her Felix experience. "I know the A goes with the T and the G goes with the C," she recited as she fingered her new bracelet, a pipe-cleaner-and-bead creation that turned color in the sun. It was a tool the Felix team handed out to illustrate that UV rays affect DNA. NIH Record Icon +

+

+

+
+

+

back to top of page

+ + + +
+ + diff --git a/office/regression/000_000447.html b/office/regression/000_000447.html new file mode 100644 index 0000000..c410fd3 --- /dev/null +++ b/office/regression/000_000447.html @@ -0,0 +1,322 @@ + + + +NASA Quest > Space Team Online + + + + + + + + + + + + +
+ + + + +
Header Bar Graphic
+ + + + +
Space Image and IconSpace HeaderKids Image
+ + + + + + + + + + + + + + + +
SpacerSpace IconHomepage ButtonWhat is NASA Quest ButtonSpacerCalendar of Events ButtonWhat is an Event ButtonHow do I Participate ButtonSpacerBios and Journals ButtonSpacerPics, Flicks and Facts ButtonArchived Events ButtonQ and A ButtonNews ButtonSpacerEducators and Parents ButtonSpacer
+ Highlight Graphic
+ Sitemap ButtonSearch ButtonContact Button +
  +
+ +
+
+

Space Team Online QuestForum +

Date: April 18, 2000 +

Featuring: Felix Soto Toro
+ Electrical Designs Engineer
+ Advanced Systems and Analysis Division
+ NASA Kennedy Space Center +

+
+
+
+
+
+ [ Oran/NASAChatHost - 3 - 07:59:36 ]
+ Hello and welcome to today's NASA Quest Space Team Online bilingual forum + with Felix Soto Toro from NASA Kennedy Space Center. +

[ Oran/NASAChatHost - 4 - 07:59:48 + ]
+ Felix Soto Toro reviews, designs, builds, tests and implements engineering + designs used in the Shuttle and Payload Operations Development Laboratories. + He ensures these hardware designs operate properly and safely. +

[ Oran/NASAChatHost - 5 - 08:00:12 + ]
+ We now welcome Felix to our online forum to answer your questions. +

[ FelixSotoToro/KSC - 7 - 08:13:29 + ]
+ RE: [Ben] What are the Future plans + for the space missions and experiments?
+ Hello Ben, Most of the space missions are intended to test some of the + experiments on Earth and Sciences in order to get a better feeling about + our planet. An example of that was our last mission where we studied the + earth intensively. A lot of pictures were taken. Please refer to the following + web page for more information: http://www.ksc.nasa.gov/shuttle/missions/missions.html. Felix +

[ FelixSotoToro/KSC - 11 - 08:33:37 + ]
+ RE: [Tonya] What has NASA found on + Mars to indicate that it can one day be a planet like Earth?
+ Hello Tonya, It will take a while to decide when or whether or not it + can be similar to our environment. However, a more in dept investigation + on this concern can be answered in this web page: http://www.ksc.nasa.gov/mars/science/clouds.html I hope this + helps a little. Felix +

[ FelixSotoToro/KSC - 14 - 08:36:10 + ]
+ RE: [Alex] Did you ever wish you + could be an astronaut, too?
+ Alex, I wish I could experience the life of an astronaut. Especially, + when I could be able to make a better impression on those people who have + a low self esteem and do not think that dreams can be achieved. Felix +

[ FelixSotoToro/KSC - 16 - 08:38:48 + ]
+ RE: [Alex] What do you consider to + have been your biggest challenge?
+ Alex, I consider my biggest challenge to be the experience in large successful + projects that are overseen by NASA Executives. Once I complete my Ph.D. + I hope to get involved in a project that will give me a better visibility + among those people. Felix +

[ FelixSotoToro/KSC - 17 - 08:43:25 + ]
+ RE: [Deborah] Does NASA ever see + the ocean being habitable by humans?
+ Hello Deborah, I think that a lot of issues must first be resolved such + as the ones observed on mission 059. Check this web site to get more information: + http://www.ksc.nasa.gov/shuttle/missions/sts-59/mission-sts-59.html + I hope that this will be an option in the future since 2/3 of our planet + is water, where it certainly will make sense to live on as well. Felix +

[ FelixSotoToro/KSC - 20 - 09:17:00 + ]
+ RE: [Holly] What is the temperature + on Mars?
+ Hi Holly, Based on the following mission, the temperature of the Mars + rover had to withstand some temperature parameters. (see the following + web page: http://www.ksc.nasa.gov/mars/rovercom/rovfaqt.html) Also, + to get a better feeling about understanding why should be learn more about + this planet and its similarities to Earth, you should visit this other + web site: http://mars3.jpl.nasa.gov:80/mgs/sci/explore/why.html I hope + I could help. Felix +

[ FelixSotoToro/KSC - 23 - 09:45:24 + ]
+ RE: [Anjana] What was the most challenging + experience in your process of becoming a NASA engineer?
+ Hello Anjana, I feel that the most challenging experience in becoming + a NASA engineer happened while I was studying in College. I knew that + back in 1986, there were only limited ways to becoming a NASA engineer. + One of them was throughout the Cooperative Education Program (CO-OP) and + the other one was to wait until I graduated to apply and be accepted. + I had to make a choice and hope that it worked for me. I chose to apply + as a CO-OP engineer trainee and take longer to graduate but at the end + I knew that I will have a better chance of being offered a job with NASA... + and it worked out. So, I will say that the hardest part was to decide + when I wanted to apply and know that I will not graduate in four years + or less. Felix +

[ FelixSotoToro/KSC - 25 - 10:08:29 + ]
+ RE: [Rachael] Is it true that Pluto + is being demoted as a planet?
+ Hello Rachael, I am not an expert on this subject but as per the following + reading in this planet from http://www.planetscapes.com/solar/eng/pluto.htm It did not + seem that this was an issue in 1998. Please contact Flavio at mendez@mdsci.org or at mendez@avion.stsci.edu He is an astronomer + and could give you better information on your planetary concerns. Felix +

[ FelixSotoToro/KSC - 26 - 10:53:59 + ]
+ RE: [Rachel] Is there a fifth state + of matter? If so, what is it?
+ Hello Rachel, The states of matter that I know are the same as the ones + listed on the following web pages: http://members.tripod.com/drkumar1/newpage2.htm http://encarta.msn.com/find/Concise.asp?ti=0206F000 I am not + familiar with a fifth one at the current time. Felix +

[ FelixSotoToro/KSC - 27 - 10:56:39 + ]
+ RE: [Aileen] How long does NASA project + that a space station will be operational on Mars?
+ Hello Aileen, The last time I heard, during the year 2004, NASA will have + a habitat in the surface of Mars. If you want to get further information, + please go to the following web page: http://spaceflight.nasa.gov/station Felix +

[ Oran/NASAChatHost - 31 - 07:51:07 + ]
+ RE: [Ana] What do you do exactly + in your job'
+ Ana, you can learn more about Felix's job by reading his profile at http://quest.nasa.gov/space/team/soto_toro.html. +

[ FelixSotoToro/KSC - 32 - 08:03:37 + ]
+ RE: [Ana] Has NASA got new information + about the "new" planet?
+ Hello Ana, To learn about this concern, please visit the following web + page where they have really good updated information that our Hubble Space + Telescope was able to capture. http://oposite.stsci.edu/pubinfo/pr/1998/19/ Good luck. Felix +

[ FelixSotoToro/KSC - 33 - 08:05:47 + ]
+ RE: [Ana] What do you do exactly + in your job'
+ Hello Ana, Thanks for asking that question. I am an electrical engineer + who works developing automated systems to help keep operational costs + down (save money). For more specifics, visit the web page that Oran suggested: + http://quest.nasa.gov/space/team/soto_toro.html + Good luck. Felix +

[ FelixSotoToro/KSC - 34 - 08:06:08 + ]
+ RE: [Oran/NASAChatHost] Ana, you can learn more about + Felix's job by reading his profile at http://quest.nasa.gov/space/team/soto_toro.html.
+ Oran, Thanks for taking care of that concern. Felix +

[ Oran/NASAChatHost - 35 - 08:10:34 + ]
+ RE: [FelixSotoToro/KSC] Oran, Thanks for taking care + of that concern. Felix
+ No problem, Felix. By the way, good morning! :-) +

[ FelixSotoToro/KSC - 36 - 08:13:01 + ]
+ RE: [Ana] What do we have to do to + work in NASA?
+ Hello Ana, You can work for NASA at any stage of your academic career. + NASA has many programs that will bring you in as a Volunteer or as a paid + temporary or permanent employee. To be compensated (paid) for your work + you must be at least 16 years of age. If you will be going to College, + I suggest that you apply to the CO-OP program. To get information on this, + please visit the following Kennedy Space Center web page: http://www.ksc.nasa.gov/admin/coop/ For other University Programs, + visit: http://www-pao.ksc.nasa.gov/kscpao/univ/programs/programs.htm. + Good luck. +

[ FelixSotoToro/KSC - 45 - 11:49:20 + ]
+ RE: [Maz] Do you believe there was + life on Mars? Why or why not?
+ Hello Maz, I believe that there must be some sort of "life" in every environment + of the Universe. To me, there is does not necessarily has to be in the + shape of a human, plant, animal or microorganism. To me it is matter of + what you vision to be life. For example, to me, the ski itself has its + own "state of mood" like humans have. Sometimes humans feel depress or + happy, just like the ski is cloudy or clear. I hope this help you understand + my own personal opinion as you wanted to know. For other opinions on this + subject, please log into this web page: http://quest.nasa.gov/mars + Yours truly, Felix +

[ FelixSotoToro/KSC - 46 - 11:49:41 + ]
+ RE: [Maz/NagelMiddleSchool] Do believe + that humans will ever live on Mars?
+ Hello Maz, I believe that human curiosity will takes us to places that + you might not even think about going today. For this reason, I think that + you will be able to visualize humans living in Mars as well. Please log + in to the following web page to find out more about your Mars' concerns. + http://quest.nasa.gov/mars Felix +

[ Oran/NASAChatHost - 49 - 16:19:28 + ]
+ This concludes our Space Team Online bilingual forum with Felix Soto Toro + from NASA Kennedy Space Center. We would like to thank everyone for their + great questions. We also extend our thanks to Felix for sharing his career + experience and expertise with us during the last few days of our forum. + THANK YOU, Felix! +

[ Oran/NASAChatHost - 50 - 16:21:00 + ]
+ An archive of this forum will be available within the next day or so. + We invite you to visit our online schedule to learn about upcoming chats, + forums and panel discussions with NASA experts. Visit our schedule at + http://quest.nasa.gov/qchats/schedule for more information. +

[ Oran/NASAChatHost - 51 - 16:22:33 + ]
+ As a final reminder, visit our NASA QuestChat Information home page to + read others' comments about our chats and forums, as well as send us yours. + The QIC home page is available at http://quest.nasa.gov/qchats. +

[ Oran/NASAChatHost - 52 - 16:23:00 + ]
+ Thank you again for your participation in this week's forum with Felix + Soto Toro. We look forward to hearing from you again. Have a great day! +

+

+


+

+

+ +
+
 
Spacer    
+ + + + +
+

Footer Bar Graphic
+ SpacerSpace IconAerospace IconAstrobiology IconWomen of NASA IconSpacer +
+ Footer Info

+
+ + diff --git a/office/regression/000_000448.html b/office/regression/000_000448.html new file mode 100644 index 0000000..546a041 --- /dev/null +++ b/office/regression/000_000448.html @@ -0,0 +1,3372 @@ + + + + +FELIX FRANKFURTER Papers (Library of Congress) + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
Skip Navigation Links The + Library of Congress >> Especially + for Researchers >> Research + Centers
Manuscript Reading Room (Library of Congress)
  Home >> Finding + Aids +
+ + + + + + + + +
+ + + + + + +
+
+ + + + + + +
+
------------------------------------------------------------
+**THIS VERSION PROVIDED FOR SEARCHING/INDEXING ONLY**
+To view or print from a more fully navigable version,
+please select the HTML or SGML file from the browse list at
+http://lcweb.loc.gov/rr/mss/f-aids/mssfa.html
+-------------------------------------------------------------
+ +
                               FELIX FRANKFURTER
+                        A REGISTER OF HIS PAPERS IN THE
+                              LIBRARY OF CONGRESS
+
+                                  Prepared by
+                               Anita Nolen, 1970
+
+                            Expanded and revised by
+                              Connie L. Cartledge
+
+                              Manuscript Division
+                              Library of Congress
+
+                            Washington, D.C.  1997
+
+
+
+                                      ***
+
+
+                          ADMINISTRATIVE INFORMATION
+
+
+
+      The papers of Felix Frankfurter (1882-1965), law professor,
+author, and associate justice of the Supreme Court of the United
+States, were deeded to the Library of Congress in 1955 by
+Frankfurter.  The Library received the papers from 1967 to 1969. 
+Additions have been made through gift, purchase, and transfer
+between 1971 and 1990.
+
+      In 1970, Anita Nolen organized the Frankfurter Papers and
+prepared a register published by the Library in 1971.  In 1972,
+certain items in the papers were discovered to be missing. 
+Subsequently, some of the missing material was recovered in
+photocopied form.  These items, marked with an X for identification
+purposes, have been incorporated into the papers in place of the
+originals.  Other items known to be missing and not represented by
+photocopies are listed in the Appendix to this register. 
+Additional information can be found in the Library's brochure
+"Material Missing from the Felix Frankfurter Papers."
+
+      In 1983, additions to the Frankfurter Papers through that year
+were appended to the papers as a final series, and the papers and
+a revised published edition of the register entitled _Felix
+Frankfurter: A Register of His Papers in the Library of Congress_,
+were prepared for microfilming.  Other additions to the papers
+since 1983 comprise the 1997 addition and have not been
+microfilmed.
+
+      Copyright in the unpublished writings of Felix Frankfurter in
+these papers and in other collections of papers in the custody of
+the Library of Congress has been dedicated to the public.
+
+      The microfilm edition of the Frankfurter Papers is available
+on 165 reels from the Library's Photoduplication Service for
+purchase subject to the Copyright Law of the United States (Title
+17, U.S.C.).  The microfilm may also be requested on interlibrary
+loan through the Library's Loan Division.  Ten reels may be
+requested at a time for a loan period of one month.
+
+
+* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+                                                                 
+    Readers interested in consulting any of the division's       
+    collections are advised to write or telephone the            
+    Manuscript Reading Room at (202) 707-5387 before visiting.   
+    Many processed and nearly all unprocessed collections are    
+    stored off site, and advance notice is needed to retrieve    
+    these items for research use.                                
+                                                                 
+* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+
+
+
+                  Linear feet of shelf space occupied:  106.4
+                  Approximate number of items:         70,625
+
+
+
+                                      ***
+
+
+                               BIOGRAPHICAL NOTE
+
+
+
+1882, Nov. 15    Born, Vienna, Austria
+
+1894             Immigrated with parents to New York, N.Y.
+
+1902             A.B., College of the City of New York, New York,
+                    N.Y.
+
+1906             LL.B., Harvard Law School, Cambridge, Mass.
+
+1906-1910        Assistant United States attorney, Southern District,
+                    New York
+
+1911-1914        Law officer, Bureau of Insular Affairs, War
+                    Department
+
+1914-1939        Professor of law, Harvard Law School, Cambridge,
+                    Mass.
+
+1915             Published, _A Selection of Cases Under the
+                    Interstate Commerce Act_ (Cambridge, Mass.:
+                    Harvard University Press.  706 pp.)
+
+1917             Major and judge advocate, Officers' Reserve Corps,
+                    United States Army
+
+1917-1918        Assistant to the secretary of war
+                 Secretary and counsel to the President's Mediation
+                    Commission
+
+1918             Assistant to the secretary of labor
+
+1918-1919        Chairman, War Labor Policies Board
+
+1919             Married Marion A. Denman
+
+1922             Published with Roscoe Pound, _Criminal Justice in
+                    Cleveland_ (Cleveland: Cleveland Foundation. 
+                    729 pp.)
+
+1927             Published with James M. Landis, _The Business of the
+                    Supreme Court_ (New York: Macmillan Co.  349 pp.)
+                 Published, _The Case of Sacco and Vanzetti_ (Boston:
+                    Little, Brown.  118 pp.)
+                 Published, _Mr. Justice Holmes and the Constitution_
+                    (Cambridge, Mass.: Dunster House Bookshop.  53 pp.)
+
+1930             Published with Nathan Greene, _The Labor Injunction_
+                    (New York: Macmillan Co.  343 pp.)
+                 Published, _The Public & Its Government_ (New Haven,
+                    Conn.: Yale University Press.  170 pp.)
+
+1931             Published with Wilber G. Katz, _Cases and Other
+                    Authorities on Federal Jurisdiction and Procedure_
+                    (Chicago: Callaghan.  769 pp.)
+
+1932             Declined nomination to the Massachusetts Supreme
+                    Judicial Court
+                 Published with J. Forrester Davison, _Cases and
+                    Other Materials on Administrative Law_ (New York:
+                    Commerce Clearing House.  1177 pp.)
+                 Published, _Mr. Justice Brandeis, Essays_ (New
+                    Haven, Conn.: Yale University Press.  232 pp.)
+
+1933-1934        George Eastman visiting professor, Oxford
+                    University, Oxford, England
+
+1937             Published, _The Commerce Clause Under Marshall,
+                    Taney, and Waite_ (Chapel Hill, N.C.: University
+                    of North Carolina Press.  114 pp.)
+
+1938             Published, _Mr. Justice Holmes and the Supreme
+                    Court_ (Cambridge, Mass.: Harvard University
+                    Press.  139 pp.)
+
+1939-1962        Associate Justice, Supreme Court of the United
+                    States
+
+1960             Published with Harlan B. Phillips, _Felix
+                    Frankfurter Reminisces_ (New York: Reynal. 
+                    310 pp.)
+
+1965, Feb. 22    Died, Washington, D.C.
+
+
+
+
+                                      ***
+
+
+                            SCOPE AND CONTENT NOTE
+
+
+
+      The papers of Felix Frankfurter cover the period from 1846 to
+1966, although the bulk of the material begins in 1907.  This
+collection, which Frankfurter considered to be his personal papers,
+is supplemented by his Supreme Court files which he gave to the Law
+School of Harvard University, his correspondence relating to the
+Sacco-Vanzetti case, also at Harvard, and documents relating to the
+Zionist movement, which are at the Hebrew University in Israel. 
+The Manuscript Division has a microfilm copy of the Zionist
+documents, some of the Sacco-Vanzetti material, and the Harvard Law
+School collection.  In addition, a considerable amount of material
+relating to the Supreme Court, for the most part in photocopied
+form, is scattered throughout the Library's collection of personal
+papers.
+
+      The Frankfurter Papers consist of diaries, correspondence,
+subject files, a speech, article, and book file, a legal file, and
+miscellaneous material.  Also included are papers of William Henry
+Moody (1853-1917), United States attorney general and associate
+justice of the United States Supreme Court.  Frankfurter's
+involvement with significant political and social movements and
+events and his acquaintance with leaders in many segments of
+society make his papers a rich source for the study of a variety of
+topics.  The complex character of the man and the general feeling
+of the times--the Zeitgeist, as he called it--are illuminated
+through a study of his papers.
+
+      In his correspondence, Frankfurter was as likely to expound
+his philosophy of life and law to a graduate student or an aspiring
+author as to a distinguished and cherished friend, a fact which
+makes the correspondence series particularly important.  Dean
+Acheson, Charles C. Burlingham, Frank W. Buxton, Alfred E. Cohn,
+Herbert David Croly, Herbert Feis, Jerome Frank, Henry J. Friendly,
+Learned Hand, W. S. Lewis, Max Lowenthal, Archibald MacLeish,
+Reinhold Niebuhr, and Franklin D. Roosevelt are representative of
+his numerous correspondents in the General Correspondence series. 
+For his early years as a lawyer in the public service, the
+correspondence with Emory R. Buckner, beginning in 1907, and Henry
+Lewis Stimson, beginning in 1908, is probably the most substantive.
+
+      Letters from the British economist Harold Joseph Laski provide
+many comments on British and American politics during the period
+1915-1950.  Few copies of Frankfurter's letters to Lasky are
+included in the collection, indicating that most of these were
+probably handwritten items of which he kept no copy.  A similar
+situation exists in Frankfurter's correspondence with Louis Dembitz
+Brandeis.  Frankfurter once wrote that "the correspondence between
+him [Brandeis] and me was--with very few exceptions--in longhand on
+both sides.  I made no copies--not even a notation--of my letters
+to him" (letter to A. T. Mason, 18 June, 1943).  In the collection,
+Frankfurter's letters to Brandeis exist exclusively in the form of
+photocopies.  The correspondence itself is a rich source for study
+of the judicial process, and particularly of the Supreme Court,
+since Frankfurter was one of the few people off the court with whom
+Brandeis discussed court matters.  The Brandeis file also contains
+a few letters to Brandeis from Samuel D. Warren, Jr., 1878-1879,
+concerning their proposed law partnership in Boston.
+
+      Frankfurter's correspondence with his wife, Marion Denman,
+both before and after their marriage, is also a significant portion
+of the collection.  Long letters to each other record their
+personal feelings and philosophies and comment on the people and
+events they observed.  Frankfurter's letters from Paris in 1919
+give perhaps his only account of the people and events he
+encountered as a member of the Zionist Commission at the peace
+conference.
+
+      Significant letters can also be found in the Special
+Correspondence series, the organization of which as a separate
+entity reflects the organization of Frankfurter's files.  The
+Oxford correspondence is essentially general correspondence for the
+period 1933-1934 when Frankfurter was George Eastman visiting
+professor at Oxford University.  Many of the letters he received at
+the time he declined the appointment to the Massachusetts Supreme
+Judicial Court and upon his appointment to and retirement from the
+Supreme Court are more than merely congratulatory notes.
+
+      Subject files in the Frankfurter Papers are as important as
+the personal correspondence.  They are especially relevant for
+those interested in the development of legal and social
+institutions.  Compiled for the most part during his years at the
+Harvard Law School, they reflect the exercise of his talents and
+influence beyond the confines of the classroom.  Significant and
+related files exist for the American Law Institute, the American
+Civil Liberties Union, the Cleveland Foundation, the Harvard crime
+survey in Boston, the National Consumers' League, the National
+Commission on Law Observance and Enforcement, known as the United
+States Wickersham Commission, and the Social Science Research
+Council.
+
+      For an analysis of the relation between law and social action,
+files on independent regulatory commissions and industrial
+relations are informative.  The files of the War Labor Policies
+Board and those concerning the Mooney case tell something of
+Frankfurter's activities during World War I when he took leave from
+his Harvard professorship to work in Washington.  Also of interest
+are the files concerning Oliver Wendell Holmes in which
+correspondence of Holmes's law clerks for the years 1929-1935 tell
+of the justice's last years.
+
+      As an unofficial adviser to Franklin D. Roosevelt even before
+Roosevelt's presidency, Frankfurter was intimately involved with
+the New Deal from its inception.  Subject files on banking
+reorganization, the National Industrial Recovery Act, public
+utilities, railroad reorganization, labor injunctions,
+unemployment, and the Supreme Court document the Frankfurter-
+Roosevelt correspondence.
+
+      The Frankfurter Papers are also of value for literary
+historians.  Frankfurter once wrote, "When all is said letter
+writing is the most abidingly fascinating literary form" (letter to
+his wife, 3 October 1922), and it was a form in which he certainly
+excelled.  Indeed, the whole collection is a superb example of the
+art of belles lettres, as can be seen in Frankfurter's
+correspondence with Francis Hackett, author, literary critic, and
+an early editor of the _New Republic._  Spanning the period from
+1918 to 1964, this exchange yields much critical information on the
+literary world and its personages in the period between the two
+world wars.
+
+      As one of the original group influential in founding the _New
+Republic_ in 1914, Frankfurter was for many years a trustee of the
+journal and a regular contributor to its columns.  Copies of many
+of these contributions can be found in the Speech, Article, and
+Book File, which contains seven bound volumes housing a nearly
+complete set of Frankfurter's speeches and published articles. 
+Also in this series are oral history interviews begun for the
+Columbia University Oral History Project and eventually published
+as _Felix Frankfurter Reminisces._  The many letters he received
+after its publication are in the Special Correspondence File.
+
+      Not to be overlooked is the Miscellany series, which includes
+research notes, memoranda, biographical material, copies of
+favorite quotations, and typed copies of a Civil War diary and
+correspondence of Holmes.  A memorandum of conversations with
+Brandeis records commentary on Supreme Court personalities and
+their judicial philosophies.
+
+      The final series in the collection, Addenda, consists of two
+additions acquired by the Library from 1971 to 1990.  The 1983
+addition includes letters from Frankfurter to his sisters Ella
+Frankfurter Rogers and Estelle S. Frankfurter along with letters
+exchanged between the sisters and related items; correspondence,
+reports, memoranda, clippings, and printed matter, relating to
+Franklin D. Roosevelt; correspondence with Loring Christie, Albert
+Einstein, Albert M. Friedenberg, and Eleanor Roosevelt; and a
+memoir, "Chum Felix Frankfurter," by Frank W. Buxton.
+
+      The 1997 addition consists of correspondence between
+Frankfurter and Julian Huxley and Archibald MacLeish and an
+annotated copy of Frankfurter's book, _The Case of Sacco and
+Vanzetti: A Critical Analysis for Lawyers and Laymen_.  The
+MacLeish letter contains an attached memorandum of a conversation
+with Franklin D. Roosevelt and a typed copy of a memorandum from
+Roosevelt to "F.A.D." (probably Fred Delano) relating to
+Roosevelt's thoughts concerning future memorials dedicated to him. 
+The Sacco and Vanzetti book contains typewritten and handwritten
+annotations by Frankfurter.  Notes and printed matter about the
+Sacco and Vanzetti case and other cases removed by Library staff
+from the volume for preservation reasons are filed with the volume.
+
+      Papers of William Henry Moody (1885-1917), associate justice
+of the Supreme Court from 1906 to 1910, that came with the
+Frankfurter Papers have been retained as part of the collection. 
+They consist mainly of personal letters received by Moody during
+the period 1906-1916 and complement the larger collection of
+William H. Moody Papers in the Manuscript Division. Correspondents
+include Ira A. Abbott, Robert S. Bradley, William A. Day, A. T.
+Mahan, and Theodore Roosevelt (1858-1919).
+
+
+
+                                      ***
+
+
+                        DESCRIPTION OF SERIES
+
+
+
+Container   Reel
+Nos.        Nos.     Series
+
+1-4         1-2*     Diaries, 1911-1965, n.d.
+                        Diaries, diary notes, appointment books, and
+                     address files kept by Frankfurter.  Arranged
+                     chronologically.
+
+*Accession number 18,868
+
+5-18        2-10     Family Papers, 1894-1965, n.d.
+                        Letters sent and received between family
+                     members. Includes a file of Frankfurter's
+                     correspondence with his wife, their
+                     correspondence with their respective families,
+                     and miscellaneous papers, such as passports and
+                     visas.  Arranged chronologically.
+
+19-114      11-69    General Correspondence, 1878-1965, n.d.
+                        Letters received and copies of letters sent,
+                     memoranda, and miscellaneous attachments.
+                     Arranged alphabetically by name of correspondent
+                     and therein chronologically.
+
+115-124     69-76    Special Correspondence, 1916-1965, n.d.
+                        Frankfurter's correspondence while he was
+                     visiting professor at Oxford University,
+                     1933-1934, letters received on his appointment
+                     and declination thereof to the Massachusetts
+                     Supreme Judicial Court, his appointment to and
+                     retirement from the U.S. Supreme Court, birthday
+                     messages, condolences, and get-well greetings. 
+                     Arranged by occasion and alphabetically by
+                     correspondent within each file.
+
+ 125-193    76-123   Subject File, 1846-1965, n.d.
+                        Correspondence, memoranda, minutes of
+                     meetings, newspaper clippings, notes, printed
+                     and near-print material, and reports.  Arranged
+                     alphabetically by subject.  A partial list of
+                     correspondents is included with some of the
+                     subjects.
+
+194-217     123-37   Speech, Article, and Book File, 1907-1965, n.d..
+                        Handwritten and typewritten drafts, galleys,
+                     and near-print and printed copies, and
+                     correspondence relating to speeches, articles,
+                     remarks, tributes, letters to the editor, and
+                     books.  Containers 194-200 constitute a
+                     chronologically arranged set of bound volumes of
+                     the final printed copies of most of
+                     Frankfurter's speeches and publications. 
+                     Containers 201-215 contain individual files for
+                     the various works, arranged alphabetically by
+                     title.  Containers 215-217, containing material
+                     concerning works written by other persons, are
+                     arranged alphabetically by author.
+
+
+218-223     138-42   Legal File, 1924-1963, n.d.
+                        Typewritten, near-print, printed, and
+                     photocopies of memoranda and opinions concerning
+                     various cases in which Frankfurter had an
+                     interest.  Arranged chronologically.
+
+224-253     142-62   Miscellany, 1861-1966.
+                        Newspaper clippings, printed matter,
+                     photographs, miscellaneous notes and research
+                     material, and copies of legal examinations and
+                     quotations.   Arranged by type of material.
+
+254-255     163      William Henry Moody Papers, 1906-1916.
+                        Letters received and a few copies of letters
+                     sent.  Arranged alphabetically by name of
+                     correspondent and chronologically therein.
+
+ 256-259             Addenda, 1898-1965, n.d.
+
+   256-258  163-165     Addition (1983), 1898-1965.
+                           Family correspondence, general
+                        correspondence, subject file, financial
+                        papers, and miscellany.
+
+   259      not         Addition (1997), 1927-1951, n.d.
+            filmed         Correspondence, writings, and printed
+                        matter.  Arranged alphabetically by type of
+                        material and therein chronologically.
+
+
+
+                                      ***
+
+
+                                CONTAINER LIST
+
+
+
+Container   Reel
+Nos.        Nos.     Contents
+
+DIARIES, 1911-1965, n.d.
+
+Box 1       Reel 1   Diary
+                        1911, with transcript (2 folders)
+                        1933
+
+Box 2       Reel 1      1943
+                     Diary notes, 1945-48 (5 folders)
+                     Appointment books, 1954-55
+
+Box 3       Reel 1   Appointment calendars, 1958-65 (4 folders)
+                     Address book, n.d.
+
+Box 4       Reel 2   Address card files, n.d.
+                     Appointment calendar sheets, 1955-65 (6 folders)
+
+
+FAMILY PAPERS, 1894-1965, n.d.
+
+Box 5       Reel 2   Correspondence with wife, Marion Denman
+                        1913-17 (6 folders)
+                        1918
+                           Jan.-Oct. (6 folders)
+
+Box 6       Reel 2-3       Nov.-Dec. (2 folders)
+                        1919
+                           Jan.-Apr. (9 folders)
+
+Box 7       Reel 3         Apr.-May (9 folders)
+
+Box 8       Reel 3-4       June-July (11 folders)
+
+Box 9       Reel 4         Aug.-Nov. (12 folders)
+
+Box 10      Reel 4-5       Nov.-Dec. (5 folders)
+                        1920
+                        1921
+                           Jan.-May (4 folders)
+
+Box 11      Reel 5-6       June-Dec. (2 folders)
+                        1922-23 (6 folders)
+                        1924
+                           Jan.-June (7 folders)
+
+Box 12      Reel 6         June-July (12 folders)
+
+Box 13      Reel 7         Aug.-Dec. (6 folders)
+                        1925
+                           Feb.-July (8 folders)
+
+Box 14      Reel 7-8       July-Oct. (5 folders)
+                        1926-34 (13 folders)
+                        1935
+                           Jan.-July (2 folders)
+
+Box 15      Reel 8-9       Aug.-Sept. (4 folders)
+                        1936-62, n.d. (15 folders)
+                     Marion Denman Frankfurter miscellaneous
+
+Box 16      Reel 9   Correspondence with Denman family
+                        1910-32 (15 folders)
+
+Box 17      Reel 9-10   1933-64, n.d. (15 folders)
+
+Box 18      Reel 10  Correspondence with Frankfurter family, 1918-65,
+                        n.d. (2 folders)
+                     Correspondence concerning Frankfurter family
+                        members, 1929-65
+                     Passports, 1919-50, n.d.
+                     Miscellaneous documents concerning Frankfurter
+                        family, 1894-1957, n.d.
+
+
+GENERAL CORRESPONDENCE, 1878-1965, n.d.
+
+Box 19      Reel 11  "A" miscellaneous (8 folders)
+                     Abbott, Grace, 1925-33, n.d.
+                     Acheson, Dean
+                        1918-65, n.d. (16 folders)
+
+Box 20      Reel 11-12  Miscellaneous
+                     Adams, Samuel Hopkins, 1944-45
+                     Adler, Cyrus, 1930-31
+                     Adler, Herman M., 1916-35 (2 folders)
+                     Alderman, H. G., 1951
+                     Alderman, Sidney S., 1954-58
+                     Aldrich, Bailey, 1955-63, n.d.
+                     Allen, Carleton K., 1932-59
+                     Allen, Jay, 1940-42, n.d.
+                     Alschuler, Samuel, 1918
+                     Alsop, Joseph W., 1938-58 (2 folders)
+                     Altschul, Frank, 1947-63
+                     Amberg, Julius H., 1929-51
+                     Amidon, Charles F., 1923-32
+                     Amos, Maurice Sheldon, 1919-38
+                     Amsterdam, Anthony G., 1963-64
+                     Anderson, George W., 1921-35
+                     Angell, Ernest, 1930-64, n.d.
+                     Appleby, Paul H., 1942-46
+                     Armstrong, Charles H., 1919-56, n.d. (2 folders)
+
+Box 21      Reel 12  Armstrong, Hamilton Fish, 1931-64, n.d.
+                        (14 folders)
+                     Armstrong, Walter P., 1948-49
+                     Arnold, G. Stanleigh, 1918-42
+                     Arnold, Thurman W., 1930-40 (3 folders)
+                     Ascoli, Max, 1933-59
+                     Asquith, Cyril, 1950-65, n.d.
+                     Astor, David, 1933-64, n.d.
+                     Aswell, Edward C., 1931-43
+                     Austern, H. Thomas, 1932-63, n.d.
+                     Aydelotte, Frank, 1929-38, n.d.
+                     Ayres, Leonard P., 1921-25, n.d.
+
+Box 22      Reel 13  "B" miscellaneous (18 folders)
+
+Box 23   Reel 13-14  Bailey, Kenneth Hamilton, 1950-63
+                     Bajpai, Girja Shankar, 1942-52, n.d.
+                     Baker, Newton D., 1916-32, n.d. (4 folders)
+                     Baldwin, Roger N., 1932-64
+                     Ballantine, Arthur A., 1932-41, n.d. (2 folders)
+                     Bannister, L. Ward, 1925-47
+                     Bard, Albert S., 1935-61
+                     Barlow, Ernesta, 1964-65, n.d.
+                     Barnard, Harry, 1962-64
+                     Barnes, George, 1950-54
+                     Barth, Alan, 1955-57
+                     Baruch, Bernard M., 1918-52
+                     Bary, Helen V., 1920
+                     Bates, Henry M., 1928-33
+                     Baumgardt, David, 1943-59, n.d.
+                     Beale, Howard, 1959-65, n.d.
+                     Beard, Charles A., 1918-47
+                     Becker, Carl, 1927-52, n.d.
+                     Becker, Samuel, 1931-37
+                     Beer, Samuel H., 1941-56, n.d.
+                     Behrman, Samuel N., 1936-62
+                     Bell, George L., 1917-42
+                     Bellush, Bernard, 1954-60
+                     Ben-Gurion, David, 1946-62, n.d.
+                     Benjamin, E. B., 1929
+                     Benjamin, Robert M., 1945-53
+
+Box 24      Reel 14  Berlin, Isaiah, 1934-62 (2 folders)
+                     Berman, Edward, 1929-31
+                     Best, William H., 1937-57
+                     Bettman, Alfred, 1926-45, n.d. (9 folders)
+                     Bickel, Alexander M., 1954-64, n.d. (4 folders)
+                     Biddle, Francis, 1934-64 (2 folders)
+                     Bigelow, Harry A., 1930-33
+                     Biggs, John, Jr., 1955-58
+                     Bikle, Henry Wolf, 1931-38 (2 folders)
+
+Box 25   Reel 14-15  Billikopf, Jacob, 1921-50, n.d. (2 folders)
+                     Bills, J. C., Jr., 1912
+                     Binger, Carl, 1936-63
+                     Bishop, Joseph W., Jr., 1941-57, n.d.
+                     Black, Hugo, 1937-65, n.d. (4 folders)
+                     Black, Robert L., 1912-13
+                     Blair, John Paxton, 1932-57
+                     Blechman, Joseph P., 1912
+                     Bliven, Bruce, 1921-54, n.d. (4 folders)
+                     Bloedorn, Walter A., 1955-64, n.d.
+                     Blumgart, Herrman L., 1931-63, n.d.
+                     Bogert, George Gleason, 1924-39, n.d.
+                     Bohlen, Francis H., 1929-60
+                     Bonbright, James C., 1929-61
+                     Boorstin, Daniel J., 1950-60
+                     Borchard, Edwin M., 1913-46
+                     Bowen, Catherine Drinker, 1941-63, n.d.
+                     Bowen, Croswell, 1945-56, n.d.
+                     Bowers, Claude G., 1944
+                     Bowra, Cecil Maurice, 1930-63, n.d. (3 folders)
+
+Box 26      Reel 15  Boyd, Julian P., 1947-63, n.d. (3 folders)
+                     Braden, George D., 1956-57
+                     Brand, Robert H., 1941-62
+                     Brandeis, Louis Dembitz
+                        1878-1923 (18 folders)
+
+Box 27      Reel 15-16  1924-29 (27 folders)
+                        1930
+                           Jan.-May (4 folders)
+
+Box 28      Reel 16-17     June-Dec. (5 folders)
+                        1931-37 (26 folders)
+
+Box 29      Reel 17     1938-41, n.d. (7 folders)
+                        From Frankfurter (photocopies), 1915-39, n.d.
+                           (11 folders)
+
+Box 30   Reel 17-18  Brant, Irving, 1935-37, n.d.
+                     Brennan, William J., Jr., 1956-61, n.d.
+                     Brett, George P., 1924
+                     Brockington, Leonard W., 1956-65
+                     Brogan, Denis W., 1942-58
+                     Brooks Brothers, 1956-63
+                     Brown, John Mason, 1953-62
+                     Brownell, Herbert, Jr., 1953-57
+                     Bruce, Edward B., 1912
+                     Buchan, Alastair, 1958
+                     Buchanan, John G., 1920-64
+                     Buckner, Emory R.
+                        1907-15 (11 folders)
+
+Box 31      Reel 18     1916-30 (16 folders)
+
+Box 32      Reel 18-19  1931-41 (12 folders)
+                     Bullard, F. Lauriston, 1926-43
+                     Bullitt, William Marshall, 1919-29
+                     Bundy, McGeorge
+                        1946-55 (6 folders)
+
+Box 33      Reel 19     1956-65 (7 folders)
+                     Bundy, William P., 1921-62, n.d.
+                     Bunn, Charles, 1957-59
+                     Burling, Edward B., 1930-63
+                     Burlingham, Charles C.
+                        1912-36 (13 folders)
+
+Box 34      Reel 19-20  1937-41 (15 folders)
+
+Box 35      Reel 20-21  1942-47 (19 folders)
+
+Box 36      Reel 21     1948-52 (15 folders)
+
+Box 37      Reel 21-22  1953-58 (15 folders)
+
+Box 38      Reel 22-23  1959-60, n.d. (3 folders)
+                     Burton, Harold H., 1945-62, n.d. (3 folders)
+                     Butler, David E., 1956-61
+                     Butler, Pierce, 1918-23, n.d.
+                     Buxton, Frank W.
+                        1926-37 (15 folders)
+
+Box 39      Reel 23     1938-45 (17 folders)
+
+Box 40      Reel 23-24  1946-64 (20 folders)
+
+Box 41      Reel 24-25  Undated (3 folders)
+                     Byers, Mortimer W., 1944
+                     Byrne, James M., 1961-62
+                     Byrnes, James F., 1941-63 (2 folders)
+                     "C" miscellaneous
+                        Cab-Con (12 folders)
+
+Box 42      Reel 25     Coo-Cut (5 folders)
+                     Caccia, Harold, 1957-64
+                     Cairns, Huntington, 1948-54
+                     Calhoun, John, 1952-60
+                     Calkins, Hugh, 1950-63
+                     Cambridge University, Cambridge, England,
+                        1953-64
+                     Campbell, Rolla D., 1935-36
+                     Canby, Henry S., 1918-20
+                     Carbonneau, Leo J., 1945-51, n.d.
+                     Carr, Cecil T., 1936-64 (2 folders)
+                     Carter, John, 1956-59
+                     Carter, Violet Bonham, 1953-65
+                     Casey, Richard G., 1939-61
+                     Catchings, Waddill, 1918-37
+                     Cavers, David F., 1931-60
+                     Centlivres, A. van de Sandt, 1952-59
+                     Chafee, Zechariah, Jr., 1919-57 (3 folders)
+                     Cheadle, John B., 1920-21
+
+Box 43   Reel 25-26  Childers, James Saxon, 1960-65 (4 folders)
+                     Chorley, Robert Samuel Theodore Chorley, Baron,
+                        1950-53
+                     Christie, Loring, 1911-41, n.d. (13 folders)
+
+Box 44   Reel 26-27  Churchill, Winston S., 1941-65
+                     Clapp, Verner W., 1953-56
+                     Clark, Charles E., 1924-59, n.d. (8 folders)
+                     Clark, Grenville
+                        1932-62 (13 folders)
+
+Box 45       Reel 27    1963-65, n.d. (2 folders)
+                     Clark, Thomas C., 1949-63 (3 folders)
+                     Coffin, Henry S., 1935-36, n.d.
+                     Cohen, Benjamin V., 1928-65, n.d. (5 folders)
+                     Cohen, Felix S., 1920-60
+                     Cohen, Julius Henry, 1912-50
+                     Cohen, Morris R., 1912-63 (2 folders)
+                     Cohn, Alfred E.
+                        1920-29 (7 folders)
+
+Box 46      Reel 27-28  1930-37 (20 folders)
+
+Box 47      Reel 28     1938-43 (21 folders)
+                        1944
+                           Jan.-Apr. (2 folders)
+
+Box 48      Reel 29        May-Dec. (3 folders)
+                        1950 (21 folders)
+
+Box 49      Reel 29-30  1951-60, n.d. (8 folders)
+                     Cohn, Edwin J., 1932-45
+                     Cole, David L., 1949-60
+                     Cole, Robert H., 1960-64
+                     Coleman, Samuel C., 1960
+                     Coleman, William T., Jr., 1949-62
+                     Commager, Henry Steele, 1942-52
+                     Comstock, Ada L., 1928-40
+                     Conant, James Bryant, 1933-44, n.d. (4 folders)
+                     Cooke, Morris Llewellyn, 1921-57 (4 folders)
+                     Corcoran, Thomas G., 1934-41, n.d. (2 folders)
+                     Corrin, Brownlee Sands, 1960
+                     Corwin, Edward S., 1930-51, n.d.
+                     Costigan, Edward P., 1929-33
+                     Cotton, Joseph P., 1911-31 (2 folders)
+
+Box 50   Reel 30-31  Couzens, James, 1929-33
+                     Cowan, Arthur W. A., 1952-64
+                     Coyle, David Cushman, 1932
+                     Cram, Paul P., 1940-41
+                     Cramer, John H., 1943-48
+                     Craven, Leslie, 1932-35
+                     Cripps, Richard Stafford, Sir, 1940-45
+                     Croly, Herbert David, 1913-45
+                     Cross, Wilbur L., 1930-33
+                     Crowder, Enoch H., 1916-27, n.d. (2 folders)
+                     Curtis, Charles P., Jr., 1930-59, n.d.
+                        (5 folders)
+                     "D" miscellaneous
+                        Dab-Dev (4 folders)
+
+Box 51      Reel 31     Dew-Dy (6 folders)
+                     Davies, Joseph E., 1937-54
+                     Davis, Elmer, 1942-54, n.d.
+                     Davis, J. Lionberger, 1932-61, n.d.
+                     Davis, John W., 1924-54, n.d. (2 folders)
+                     Denison, Winifred T., 1910-16 (2 folders)
+                     Denman, William, 1934-49
+                     Devlin, Patrick, 1957-65 (3 folders)
+                     Dewey, Thomas E., 1949-61
+
+Box 52   Reel 31-32  Dickinson, John, 1922-34
+                     Dilliard, Irving, 1935-64, n.d.
+                     Disque, Brice P., 1931-40
+                     Dobie, Armistead M., 1919-63
+                     Dodd, Walter F., 1929-32
+                     Douglas, Lewis W., 1937-50
+                     Douglas, William O., 1934-60, n.d. (3 folders)
+                     Dumbauld, Edward, 1952-58
+                     "E" miscellaneous (5 folders)
+                     Eban, Abba, 1958-64
+                     Edgerton, Henry W., 1930-58
+                     Ehrmann, Herbert B., 1919-65
+                     Einstein, Albert, 1921-46
+                     Einstein, Lewis, 1934-60
+                     Eisenhart, Luther P., 1948-58
+                     Eisenhower, Dwight D., 1957-59
+                     Elath, Eliahu, 1950-62, n.d.
+                     Eliot, Charles W., 1913-25
+
+Box 53   Reel 32-33  Elliston, Herbert B., 1944-48, n.d.
+                     Elman, Philip, 1943-62, n.d.
+                     Ely, Joseph B., 1931-49 (2 folders)
+                     Ely, Richard T., 1919-33, n.d.
+                     Epstein, Henry, 1932-56
+                     Ernst, Morris L., 1930-55
+                     Evans, Elizabeth Glendower, 1929-44
+                     Evatt, Herbert V., 1941-49, n.d.
+                     Evershed, Raymond, 1950-65
+                     "F" miscellaneous
+                        Fab-Fry (12 folders)
+
+Box 54      Reel 33     Fu
+                     Fairman, Charles, 1948-57, n.d. (2 folders)
+                     Fanelli, Joseph A., 1935-57
+                     Farbman, Michael S., 1918-19
+                     Farley, James A., 1935-39
+                     Feis, Herbert, 1924-64, n.d. (15 folders)
+                     Filene, Lincoln, 1934-47
+                     Fine, Jacob, 1939-60
+
+Box 55   Reel 33-34  Finkelstein, Louis, 1942-57
+                     Fisher, Dorothy Canfield, 1943-53
+                     Fisher, Richard B., 1953-54
+                     Fisher, Walter T., 1928-63
+                     Fishman, Fred N., 1949-61
+                     Fitzpatrick, John, 1918-19
+                     Flexner, Abraham, 1919-34 (5 folders)
+                     Flexner, Bernard, 1919-45, n.d. (4 folders)
+                     Ford, John C., 1941, n.d.
+                     Fosdick, Raymond B., 1916-57, n.d. (3 folders)
+                     Fraenkel, Osmond K., 1930-62
+                     France, Royal Wilbur, 1951-57
+                     Frank, Jerome
+                        1930-47 (10 folders)
+
+Box 56      Reel 34     1948-56 (3 folders)
+                     Franks, Oliver Shewell, 1949-56
+                     Freedman, Max, 1954-63
+                     Freund, Paul A., 1932-65 (10 folders)
+                     Friedenwald, Harry, 1936
+                     Friedenwald, Jonas S., 1932-64 (4 folders)
+                     Friendly, Henry J.
+                        1927-61 (5 folders)
+
+Box 57      Reel 34-35  1962-64
+                     Fuess, Claude M., 1943-52
+                     Fulbright, J. William, 1943-57
+                     "G" miscellaneous (10 folders)
+                     Gallagher, Buell G., 1953-63
+                     Gans, Howard S., 1919-36
+                     Gardner, George K., 1936-55
+                     Garrison, Lloyd K., 1955-63 (2 folders)
+                     Gates, Sylvester G.
+                        1927-41 (5 folders)
+
+Box 58      Reel 35-36  1942-65, n.d. (7 folders)
+                     Gaus, John Merriman, 1920-57
+                     Gay, Edwin F., 1928-31
+                     Gibson, George Dandridge, 1949-55
+                     Gibson, William, 1918-19
+                     Gilbert, Charles K., 1946-52
+                     Ginsburg, Charles David, 1941-59
+                     Glick, David, 1935-64
+                     Glueck, Sheldon, 1926-65
+                     Goldman, Eric F., 1941-61
+                     Goldstein, Benjamin F.
+                        1930-37 (4 folders)
+
+Box 59      Reel 36     1950-64, n.d. (5 folders)
+                     Gompers, Samuel, 1917, n.d.
+                     Goodhart, Arthur L., 1927-53
+                     Gordon, Archibald, 1954-64
+                     Gordon, Ruth, 1941-65
+                     Gossett, William T., 1953-58
+                     Gowers, Ernest Arthur, 1950-56
+                     Graham, Philip L., 1939-64
+                     Graham-Harrison, Francis, 1950-55, n.d.
+                     Graydon, C. T., 1950-58
+                     Green, John Raeburn, 1944-56
+                     Green, William, 1928-38, n.d.
+                     Greene, Jerome D., 1936-57 (2 folders)
+                     Gregory, Charles O., 1946-64
+                     Grene, David, 1937-41, n.d.
+                     Grinnell, Frank W., 1915-48
+                     Griswold, A. Whitney, 1954-61, n.d.
+                     Griswold, Erwin N.
+                        1930-56 (4 folders)
+
+Box 60      Reel 36-37  1957-63, n.d. (3 folders)
+                     Grove, Lee E., 1954-62
+                     Gruening, Ernest, 1933-56
+                     Grundfest, Harry, 1951-54
+                     Gunther, Gerald, 1955-63
+                     "H" miscellaneous
+                        Haa-Hom (10 folders)
+
+Box 61      Reel 37-38  Hop-Hy (4 folders)
+                     Hackett, Francis
+                        1918-59 (15 folders)
+
+Box 62      Reel 38     1960-64, n.d. (2 folders)
+                     Hale, Richard W., 1917-41 (2 folders)
+                     Haley, William J., 1952-65 (5 folders)
+                     Halifax, Edward, 1941-64, n.d. (8 folders)
+                     Hamilton, Alice, 1922-65 (3 folders)
+                     Hamlen, Joseph R., 1927-56, n.d. (2 folders)
+
+Box 63      Reel 39  Hand, Augustus N., 1923-62, n.d. (4 folders)
+                     Hand, Learned
+                        1911-32 (12 folders)
+
+Box 64      Reel 39     1933-52 (17 folders)
+
+Box 65      Reel 39-40  1953-61, n.d. (14 folders)
+                     Handler, Milton, 1929-63
+                     Hapgood, Norman, 1929-37, n.d.
+                     Haraszti, Zoltan, 1951-56
+                     Harlan, John M.
+                        1954-58 (3 folders)
+
+Box 66      Reel 40     1959-65, n.d. (5 folders)
+                     Harriman, W. Averell, 1933-60
+                     Harrod, Roy, 1944-64
+                     Hart, Henry M., 1932-59
+                     Hartley, Harold, 1936-53
+                     Haskins, Caryl P., 1946-64
+                     Haskins, George L., 1950-61
+                     Hastie, William H., 1950-55
+                     Haydn, Hiram, 1957
+                     Heffron, Paul T., 1961-62
+                     Henderson, Gerard C., 1920-35 (2 folders)
+                     Henkin, Louis, 1941-64
+                     Henson, Ray David, 1960-65 (4 folders)
+                     Herter, Christian A., 1930-59
+                     Herzog, Paul M., 1949-58
+                     Higgins, Henry Bournes, 1914-28 (6 folders)
+
+Box 67   Reel 40-41  Hill, Arthur Dehon, 1918-47 (13 folders)
+                     Hilman, Sidney, 1945
+                     Hitchcock, Curtice N., 1918-45, n.d. (2 folders)
+                     Hitz, William, 1927-33
+                     Hodson, William, 1931
+                     Holbert, George B., 1913
+                     Holmes, Oliver Wendell (1841-1935), 1910-34
+                     Hook, Sidney, 1958-62
+                     Hooker, Richard, 1920-21
+                     Hoover, Herbert, 1919-32
+                     Hoover, J. Edgar, 1948
+                     Hopkins, Harry L., 1919-45
+                     Hough, Charles Merrill, 1921-26, n.d.
+                     House, Edward M., 1918-33, n.d.
+                     Houston, Charles H., 1925-50
+                     Howe, Mark A. DeWolfe, 1956-59
+                     Howe, Mark DeWolfe
+                        1933-35 (3 folders)
+
+Box 68      Reel 41-42  1956-64, n.d. (3 folders)
+                     Howland, Charles P., 1924-32 (8 folders)
+                     Howland, Silas W., 1912-13
+                     Hudson, Manley O., 1923-27
+                     Hughes, Charles Evans, 1926-49, n.d. (5 folders)
+                     Hunt, Carleton, 1936-37
+                     Hurst, Willard, 1937-64 (3 folders)
+                     Hutcheson, Joseph C., Jr., 1927-55
+
+Box 69      Reel 42  Hutchins, Robert M., 1930-55, n.d. (3 folders)
+                     Huxley, Julian, 1946-64
+                     "I" miscellaneous
+                     Ickes, Harold, 1936-47, n.d.
+                     Igbokwe, Felix O., 1948-63
+                     Ingersoll, Ralph, 1930-52, n.d.
+                     Innes, A. Mitchell, 1914-18, n.d.
+                     Isserman, Ferdinand M., 1936-63
+                     Ivins, William M., Jr., 1948-61, n.d.
+                        (3 folders)
+                     "J" miscellaneous (4 folders)
+                     Jackson, Gardner, 1931-64
+                     Jackson, Robert H.
+                        1938-48 (8 folders)
+
+Box 70      Reel 42-43  1949-54, n.d. (6 folders)
+                     Jackson, William E., 1943-59
+                     Jacobs, Nathan L., 1931-56
+                     Jaeckel, Albert F., 1913, n.d.
+                     Jaffe, Louis L., 1931-64, n.d.
+                     James, Francis B., 1916-21
+                     Jessup, Philip C., 1950-62
+                     Jewell, Pliny, 1932
+                     Johnson, Alvin, 1939-46, n.d.
+                     Johnson, Lyndon B., 1958-65 (3 folders)
+                     Johnston, Joseph F., 1956
+                     Jonas, Klaus W., 1953-55
+                     Jones, Dallas L., 1953-61
+                     Jones, Howard Mumford, 1942-52
+                     Josephson, Matthew, 1940-52
+                     Judd, Orrin G., 1940-46
+                     "K" miscellaneous
+                        Kad-Key (5 folders)
+
+Box 71      Reel 43-44  Kid-Ku (7 folders)
+                     Kahn, Herman, 1949-60
+                     Kallen, Horace M., 1927-64
+                     Kanin, Garson, 1949-64
+                     Kantorowicz, Ernst H., 1936-63
+                     Kaplan, John, 1960-64
+                     Katz, Milton, 1936-56
+                     Katz, Wilber G., 1931-53, n.d.
+                     Kaufman, Andrew L., 1955-64
+                     Keeney, Barnaby C., 1960-61
+                     Kellogg, Paul U., 1922-46, n.d. (4 folders)
+                     Kendall, Henry P., 1922-37
+                     Kennan, George F., 1949-56
+                     Kennedy, John F., 1958-63, n.d.
+                     Kent, Stephenson, 1917-18, n.d.
+                     Keppel, Frederick P., 1919-42
+                     Kerr, Archibald Clark, 1944-50 (2 folders)
+
+Box 72      Reel 44  Kerr, Philip Henry, 1921-40, n.d.
+                     Kerschall, Richard, 1963-64
+                     Keynes, John Maynard, 1921-46, n.d.
+                     King, Willard L., 1947-56 (5 folders)
+                     Kirchwey, Freda, 1925-53
+                     Kirk, Alan G., 1942-45
+                     Kirstein, Louis E., 1925-39
+                     Klots, Allen T., 1931-63
+                     Knapp, James R., 1927
+                     Knopf, Alfred A., 1931-61 (4 folders)
+                     Knox, Frank, 1940-44
+                     Knox, John C., 1931-36
+                     Konefsky, Samuel J., 1947-60, n.d.
+                     Kraus, Wolfgang H., 1943-46
+                     Kubie, Lawrence S., 1955-61
+                     Kurland, Philip B.
+                        1944-56 (6 folders)
+
+Box 73      Reel 44-45  1957-65, n.d. (4 folders)
+                     "L" miscellaneous (15 folders)
+
+Box 74      Reel 45  La Follette, Robert M., Jr., 1930-41
+                     La Guardia, Fiorello H., 1932-46 (2 folders)
+                     Lande, Louis, 1943-55
+                     Landis, James M., 1925-39, n.d.
+                     Landis, Stella M., 1940-64
+                     Laporte, Cloyd, 1960-65
+                     Lash, Joseph P., 1941-53
+                     Laski, Harold Joseph
+                        1915-40 (14 folders)
+
+Box 75      Reel 45-46  1941-50, n.d. (7 folders)
+                     Laski, Mrs. Harold Joseph (Frida), 1950-64
+                     Lavery, Emmet, 1942-64 (3 folders)
+                     Lawrence, Seymour, 1959-64
+                     Leach, Henry Goddard, 1931-47
+                     Leach, W. Barton, 1942-64
+                     Lehman, Herbert H., 1937-60 (2 folders)
+                     Lehman, Irving, 1916-41
+                     Leisure, George S., 1945-60
+                     Lemann, Monte M.
+                        1929
+
+Box 76      Reel 46     1930-64, n.d. (14 folders)
+                     Lemann, Stephen B., 1961-64
+                     Lerner, Max, 1943-58
+                     Levi, Edward H., 1950-61
+                     Levinthal, Louis E., 1951-53
+                     Levy, Leonard W., 1953-63 (3 folders)
+                     Lewis, W. S.
+                        1942-53 (3 folders)
+
+Box 77      Reel 46-47  1954-64, n.d. (6 folders)
+                     Lewisohn, Sam A., 1913-46
+                     Lilienthal, David E., 1932-64
+                     Lippmann, Walter
+                        1914-30 (13 folders)
+
+Box 78      Reel 47     1931-57, n.d. (11 folders)
+                     Littauer, Lucius N., 1929-39
+                     Littell, Philip, 1916-38, n.d.
+                     Llewellyn, Karl N., 1929-35, n.d.
+                     Logan, W. Douglas, 1937-60, n.d.
+                     Long, Breckinridge, 1941-42
+                     Lovett, Robert A., 1942-48 (2 folders)
+
+Box 79      Reel 48  Lowenthal, Max, 1912-64, n.d. (15 folders)
+                     Lubin, Isadore, 1931-35
+                     Ludington, Arthur Crosby, 1914
+                     Ludington, Katherine
+                        1914-16 (2 folders)
+
+Box 80      Reel 48-49  1917-50, n.d. (2 folders)
+                     Lyons, Dennis G., 1954-55
+                     "M" miscellaneous (14 folders)
+
+Box 81   Reel 49-50  McAdoo, William Gibbs, 1932-62
+                     McAllister, Thomas F., 1944-53
+                     McCarthy, Charles, 1918, n.d.
+                     McCloy, John J., 1941-61 (4 folders)
+                     McCook, Anson T., 1913-63
+                     McCook, Philip J., 1919-55
+                     McDonald, James G., 1938-49
+                     Mack, Julian W., 1924-60, n.d. (17 folders)
+
+Box 82      Reel 50  McKeldin, Theodore R., 1953-55
+                     MacLeish, Archibald, 1933-64, n.d. (8 folders)
+                     Macneil, Sayre, 1919-62 (3 folders)
+                     McWhinney, Edward, 1952-61
+                     Madison, Charles A., 1954
+                     Magrath, C. Peter, 1962-63
+                     Magruder, Calvert, 1928-64
+                     Maguire, John M., 1928-60
+                     Makins, Roger, 1953-62
+                     Malin, Patrick Murphy, 1952-62
+                     Malone, Dumas, 1933-59, n.d.
+                     Maltbie, Milo R., 1923-43
+                     Mann, W. Howard, 1953-60
+                     Manuel, Frank E., 1938-51, n.d.
+                     Margold, Nathan R., 1931-57, n.d.
+                     Margolin, Arnold D., 1931-56
+                     Markell, Charles, 1930-31
+                     Marks, Jonathan, 1961-65
+                     Marshall, George C., 1942-59
+
+Box 83   Reel 50-51  Marx, Emily, 1953-54
+                     Mary Barbara, Sister, 1933-58
+                     Mason, Alpheus Thomas, 1940-63, n.d. (9 folders)
+                     Mayer, Leo, 1950-60
+                     Mearns, David C., 1949-58
+                     Medalie, George Z., 1931-36
+                     Meeker, Royal, 1920-23, n.d.
+                     Megaw, John, 1958-61
+                     Mehta, G. L., 1954-61
+                     Meiklejohn, Alexander, 1932-61
+                     Mencken, Henry L., 1939-48
+                     Mendelson, Wallace, 1952-64, n.d.
+                     Menzies, Robert G., 1955-63, n.d. (2 folders)
+                     Merrell, Maurice H., 1935-62
+                     Merz, Charles, 1920-56, n.d. (4 folders)
+                     Messersmith, George S., 1936-41 (3 folders)
+
+Box 84      Reel 51  Meta, Lino, 1943-46
+                     Meyer, Eugene M., 1918-57 (3 folders)
+                     Miall, Leonard, 1951-54
+                     Miller, Alice Duer, 1935-36
+                     Miller, Perry, 1948-63
+                     Miller, Philip N., 1911-45 (2 folders)
+                     Miller, Robert N., 1921-61 (2 folders)
+                     Mills, Ogden L., 1932-37
+                     Minton, Sherman, 1949-64, n.d. (4 folders)
+                     Mitchell, D., 1926-35
+                     Moe, Henry Allen, 1935-63
+                     Moley, Raymond, 1930-39 (6 folders)
+
+Box 85   Reel 51-52  Monnet, Jean, 1940-64 (2 folders)
+                     Montague, Gilbert H., 1932-58
+                     Mood, Fulmer, 1919-51, n.d.
+                     Moody, Dan, 1945-47
+                     Moors, John F., 1921-47, n.d.
+                     Moran, Breck, 1935
+                     Morawetz, Friedrich, 1942-43
+                     Morgan, Donald Grant, 1951-63, n.d. (2 folders)
+                     Morgan, Edmund M., 1931-61, n.d.
+                     Morgan, Edmund M., Jr., 1950-62
+                     Morgan, James, 1936-55, n.d. (3 folders)
+                     Morgenthau, Henry, Jr., 1942-46, n.d.
+                     Morison, Elting E., 1952-62
+                     Morison, Samuel E., 1932-64, n.d. (5 folders)
+                     Morris, Richard B., 1930-60
+                     Morrow, Dwight W., 1912-31
+                     Morton, James M., Jr., 1929-35
+                     Moses, Robert, 1958
+                     Moskowitz, Henry, 1911-36, n.d.
+                     Murphy, Frank
+                        1936-43 (3 folders)
+
+Box 86      Reel 52     1944-64, n.d. (4 folders)
+                     Murray, Gilbert, 1940-49, n.d.
+                     Murray, Henry A., 1931-64, n.d. (3 folders)
+                     Musmanno, Michael A., 1958-61
+                     "N" miscellaneous (5 folders)
+                     Nathanson, Nathan L., 1937-61
+                     Neilson, John M., 1925
+                     Nevinson, Henry W., 1931-42
+                     Newton, Robert E., 1960-62
+                     Niebuhr, Reinhold, 1946-63, n.d. (3 folders)
+
+Box 87      Reel 53  Niles, Emory H., 1954-57
+                     Normano, Joao F., 1933
+                     Norris, George W., 1928-61 (4 folders)
+                     "O" miscellaneous (4 folders)
+                     O'Brian, John Lord, 1921-64, n.d.
+                     O'Brien, Robert Lincoln, 1926-56
+                     Oliphant, Herman, 1927-32
+                     Olney, Peter B., 1942-64
+                     O'Melveny, John, 1939-65
+                     Oppenheimer, J. Robert, 1948-64
+                     Oppenheimer, Reuben, 1920-64
+                     Overholser, Winfred, 1946-60
+                     "P" miscellaneous
+                        Pac-Pay (3 folders)
+
+Box 88      Reel 53-54  Pea-Py (10 folders)
+                     Palfrey, John G., 1917-64
+                     Pantzer, Kurt F., 1920-60
+                     Parsons, Geoffrey, 1931-50, n.d. (4 folders)
+                     Patterson, Edwin W., 1920-29
+                     Patterson, Robert P., 1932-64
+                     Pepper, George Wharton, 1951-58
+
+Box 89      Reel 54  Percy, Eustace, 1913-64, n.d. (8 folders)
+                     Perkins, Frances, 1936-58
+                     Perkins, Thomas Nelson, 1918-34 (2 folders)
+                     Perlman, Philip B., 1947
+                     Phillips, Harlan B., 1953-61 (4 folders)
+                     Pinchot, Cornelia Bryce, 1931-46
+                     Pinchot, Gifford, 1923-35
+                     Pitkin, Walcott H., 1915-26, n.d.
+                     Polak, H. S. L., 1941-42
+                     Poletti, Charles, 1931-49, n.d.
+                     Pollak, Walter H., 1926-56
+                     Pomeroy, Vivian T.
+                        1935-50 (5 folders)
+
+Box 90      Reel 55     1951-54 (5 folders)
+                     Pope, Arthur Upham, 1943-63
+                     Pottinger, David T., 1929-43
+                     Pound, Cuthbert W., 1925-34, n.d. (4 folders)
+                     Pound, Roscoe, 1914-63, n.d. (11 folders)
+
+Box 91   Reel 55-56  Powell, Thomas Reed, 1915-55, n.d.
+                     Pratt, Joseph H., 1920-48
+                     Prettyman, E. Barrett, Jr., 1953-63
+                     Prichard, Edward F., 1939-54
+                     Proskauer, Joseph M., 1929-53, n.d. (2 folders)
+                     Pusey, Merlo J., 1949-64, n.d.
+                     Putnam, A. James, 1935-39
+                     Putnam, Carleton, 1958-60
+                     "Q" miscellaneous
+                     Quezon, Manuel L., 1942-44
+                     "R" miscellaneous
+                        Rab-Ros (9 folders)
+
+Box 92      Reel 56     Rot-Ry (2 folders)
+                     Rabel, Ernst, 1943-50
+                     Rabinowitz, Herbert, 1929-36
+                     Radcliffe, Cyril, 1952-64
+                     Radin, Max, 1925-46
+                     Rand, I. C., 1947-57
+                     Ratcliffe, S. K., 1924-59, n.d. (4 folders)
+                     Rauh, Joseph L., Jr., 1942-54
+                     Rauschenbush, Elizabeth (Brandeis), 1931-64
+                     Ravage, M. E., 1910-20
+                     Redlich, Josef, 1921-45, n.d. (4 folders)
+                     Reed, Stanley
+                        1934-47 (7 folders)
+
+Box 93      Reel 57     1948-63, n.d. (5 folders)
+                     Requin, Edward, 1918-21
+                     Reston, James B., 1943-64, n.d.
+                     Reynal, Eugene, 1956-65
+                     Rhinelander, Laurens H., 1959-61
+                     Rice, William G., 1933-61
+                     Richards, Augustus L.
+                        1941-46 (12 folders)
+
+Box 94      Reel 58     1947-57, n.d. (10 folders)
+                        Newspaper clippings with comments
+                           1946
+                              (1 folder)
+
+Box 95      Reel 58           (7 folders)
+
+Box 96      Reel 59        1946, n.d. (3 folders)
+                     Richards, James L., 1935-54, n.d.
+                     Richardson, Elliot, 1952-65, n.d.
+                     Richberg, Donald R., 1928-52
+                     Riesenfeld, Stefan A., 1941-60
+                     Riesman, David, 1931-64
+                     Roberts, George, 1929-63 (3 folders)
+                     Roberts, Owen J.
+                        1930-45 (4 folders)
+
+Box 97      Reel 59-60  1946-58, n.d. (5 folders)
+                     Robinson, Clement F., 1954-65
+                     Robson, William A., 1931-58
+                     Rodell, Fred, 1940-55
+                     Rogers, James Grafton, 1931-37 (3 folders)
+                     Rogers, Lindsay, 1931-56
+                     Rogers, William P., 1957-59
+                     Roosevelt, Eleanor, 1936-59
+                     Roosevelt, Franklin D.
+                        1918-34 (8 folders)
+
+Box 98      Reel 60     1935-45, n.d. (18 folders)
+                     Roosevelt, James, 1957-60
+                     Roosevelt, Theodore (1858-1919), 1910-18
+                     Roosevelt, Theodore (1887-1944), 1913-41
+                     Rose, W. Chapman, 1931-58
+
+Box 99   Reel 60-61  Rosenman, Samuel I., 1930-62
+                     Rosenthal, Albert J., 1950-64, n.d.
+                     Rosenwald, Harold, 1934-64
+                     Rosenwald, Julius, 1927-31
+                     Rosenwald, Lessing J., 1947-54
+                     Rostow, Eugene V., 1937-63
+                     Rowe, L. S., 1920-32
+                     Royall, Kenneth C., 1937-63
+                     Rubin, Seymour Jeffrey, 1938-54, n.d.
+                     Rublee, George, 1912-51
+                     Rusk, Dean, 1955-61
+                     Rutledge, Wiley, 1942-49, n.d. (4 folders)
+                     "S" miscellaneous
+                        Sab-Shu (10 folders)
+
+Box 100     Reel 61-62  Sib-Sz (14 folders)
+                     Sabl, Caroline, 1942-53
+                     Sachar, Abram L., 1950-64, n.d.
+                     Salpeter, High, 1949
+                     Salt, Henry, 1950-51
+
+Box 101     Reel 62  Saltonstall, Leverett, 1939-64, n.d.
+                     Salvemini, Gaetano, 1931-61, n.d. (3 folders)
+                     Sargent, Porter, 1937
+                     Sarnoff, David, 1930-33
+                     Saxon, O. Glenn, 1931
+                     Sayre, Francis B., Jr., 1939-60
+                     Sayre, Paul L., 1932-48
+                     Scarlett, William, 1917-65, n.d. (7 folders)
+                     Schaefer, Walter V., 1955-62
+                     Schaffer, Aaron, 1929-30
+                     Schlesinger, Arthur M., Jr., 1949-63, n.d.
+                     Schlesinger, Arthur M., Sr., 1928-63 (2 folders)
+                     Schurman, Jacob Gould, 1936-56
+                     Schuyler, Robert Livingston, 1954-55
+                     Schwartz, Louis B., 1951-53
+                     Scott, Austin W., 1941-64
+
+Box 102  Reel 62-63  Sedgwick, Ellery, 1918-59
+                     Segal, Bernard G., 1953-61
+                     Selekman, Benjamin M., 1935-39
+                     Seligman, Eustace, 1917-60
+                     Sergeant, Elizabeth Shepley, 1921-63
+                     Seymour, Whitney North, 1930-61
+                     Shafroth, Will, 1932-58
+                     Shapley, Harlow, 1927-53 (2 folders)
+                     Sharfman, I. Leo, 1925-64
+                     Shattuck, Henry L., 1925-39
+                     Shaw, Albert, 1927
+                     Shawcross, Hartley W., 1949-58
+                     Sheean, Vincent, 1951-54
+                     Shepardson, Whitney H., 1920-51, n.d.
+                     Sheppard, James C., 1953
+                     Sherwood, Robert E., 1940-53 (2 folders)
+                     Shriver, Harry C., 1953
+                     Shulman, Harry, 1932-57, n.d. (2 folders)
+                     Sifton, Elizabeth, 1963-65
+                     Sills, Kenneth C. M., 1932-38
+                     Silver, Abba Hillel, 1935-43
+                     Silver, Edward S., 1954-64
+                     Simon, Julius, 1951-53
+                     Simons, Hans, 1942-59
+                     Simpson, Sidney P., 1927-49
+                     Sinclair, Upton, 1927-57
+                     Smalley-Baker, C. E., 1946-59
+                     Smith, Alfred E., 1933-43
+                     Smith, Clarence C., 1927
+                     Smith, Clarence W., 1927
+                     Smith, Reginald Heber, 1947-63
+                     Smith, Richard Joyce, 1951
+                     Sobeloff, Simon E., 1953-64, n.d.
+                     Sockman, Ralph W., 1954-64
+                     Solow, Herbert, 1949-58, n.d.
+
+Box 103     Reel 63  Soule, George, 1922-30
+                     Sparling, Edward J., 1949-52
+                     Spender, Percy, 1954-57, n.d.
+                     Steffen, Roscoe T., 1935-60
+                     Stein, Leonard, 1951-55
+                     Stettinius, Edward R., Jr., 1943-49
+                     Stevens, Frank, 1931
+                     Stevenson, Adlai E., 1962
+                     Stewart, Potter, 1958-62, n.d. (2 folders)
+                     Stimson, Henry Lewis
+                        1908-36 (16 folders)
+
+Box 104     Reel 63-64  1937-52 (10 folders)
+                     Stone, Harlan Fiske
+                        1924-28 (18 folders)
+
+Box 105     Reel 64     1929-41 (18 folders)
+
+Box 106     Reel 64     1942-63, n.d. (13 folders)
+                     Straight, Michael, 1942-56
+                     Strauss, Anna Lord, 1956-61
+                     Stryker, Lloyd Paul, 1949-55
+                     Sulzberger, Arthur Hays, 1933-58, n.d.
+                        (2 folders)
+                     Surrency, Erwin C., 1955-57
+                     Swing, Raymond G., 1921-53
+                     Swope, Gerard, 1931
+
+Box 107  Reel 64-65  Swope, Herbert Bayard, 1932-58, n.d. (8 folders)
+                     Szold, Robert, 1922-62
+                     "T" miscellaneous (4 folders)
+                     Taft, William Howard, 1921-29 (2 folders)
+                     Taylor, Telford, 1935-55
+                     Thacher, Thomas D., 1918-44, n.d. (5 folders)
+                     Thomas, Norman, 1935-37
+                     Thompson, Dorothy, 1936-37
+                     Thompson, Guy A., 1933
+                     Thompson, Wendell (Mrs. Barclay), 1944, n.d.
+                     Thompson, William G., 1927-35
+
+Box 108  Reel 65-66  Thorne, Samuel E., 1933-57
+                     Truman, Harry S., 1945-49
+                     Tulin, Abraham, 1918-61
+                     Tuttle, Emerson, 1941
+                     Tweed, Harrison, 1939-64 (4 folders)
+                     "U" miscellaneous
+                     "V" miscellaneous (4 folders)
+                     Valentine, Robert G., 1916-17
+                     Valentine, Sophia (Mrs. Robert G.), 1912-31
+                     Vanderbilt, Arthur T., 1939-56
+                     Van Doren, Carl, 1943, n.d.
+                     Veblen, Thorstein, 1918
+                     Villard, Oswald Garrison, 1919-36
+                     Viner, Jacob, 1932-34
+                     Vinson, Fred M.
+                        1946-49 (2 folders)
+
+Box 109     Reel 66     1950-56 (2 folders)
+                     "W" miscellaneous (15 folders)
+                     Wagner, Robert F., Jr., 1954
+                     Wagner, Robert F., Sr., 1913-37, n.d.
+                     Walck, Henry Z., 1953-54
+
+Box 110  Reel 66-67  Walker, John H., 1917-39, n.d. (6 folders)
+                     Wallace, Henry A., 1942-45
+                     Wallace, Weldon, 1954
+                     Wallas, Graham, 1915-28
+                     Walsh, David I., 1929-37
+                     Walsh, Thomas J., 1925-32
+                     Waltz, Jon, 1950-54
+                     Wambaugh, Eugene, 1911-27
+                     Warner, Samuel Bass, 1937-50
+                     Warren, Charles, 1936-57
+                     Warren, Earl, 1953-64, n.d. (4 folders)
+                     Warren, Edward H., 1934-42
+                     Warren, William C., 1955-60, n.d.
+                     Washburn, Robert, 1932
+                     Waterman, Sterry R., 1961-63
+                     Wayman, Dorothy G., 1954-56
+                     Webb, Sidney, 1918-35
+                     Wechsler, Herbert, 1932-65, n.d. (3 folders)
+
+Box 111     Reel 67  Weeks, Edward W., 1935-64
+                     Weisgal, Meyer W., 1944-45, n.d.
+                     Weiss, Louis S., 1950
+                     Weizmann, Chaim, 1918-52, n.d.
+                     Welch, Joseph N., 1925-59, n.d.
+                     Welles, Sumner, 1941-43, n.d.
+                     Westin, Alan Furman, 1953-63
+                     Wheeler, Burton K., 1924-64, n.d.
+                     White, Walter, 1929-50 (2 folders)
+                     White, William Allen, 1921-43
+                     Whitehead, Alfred North, 1927-56, n.d.
+                     Whitelaw, Aubrey H., 1955-63
+                     Whittaker, Charles E., 1957-62
+                     Wickersham, George W., 1911-32 (3 folders)
+                     Wiener, Frederick Bernays
+                        1930-63 (4 folders)
+
+Box 112     Reel 67-68  1964-65, n.d. (2 folders)
+                     Wiggins, J . Russell, 1954-62
+                     Wilkie, John L., 1925-29
+                     Willcox, Alanson W., 1955
+                     Willcox, Bertram F., 1942-63
+                     Willcox, Westmore, Jr., 1937-42
+                     Willert, Arthur, 1917-39
+                     Williams, Ira Jewell, Jr., 1927-37
+                     Williams, James M., 1927
+                     Williams, Michael, 1931-43
+                     Williston, Samuel, 1927-54
+                     Willkie, Wendell L., 1936-52, n.d.
+                     Wilson, Anne E., 1957, n.d.
+                     Wilson, Edmund, 1953-61
+                     Wilson, Edwin B., 1927-36, n.d.
+                     Wilson, William B., 1918-21
+                     Wilson, Woodrow, 1913-19
+                     Winant, John G., 1936-47, n.d.
+                     Winship, Laurence L., 1935-54, n.d.
+                     Wiseman, Mark, 1918-19, n.d.
+                     Witte, Edwin E., 1928-51
+                     Wolfson, Richard F., 1948-61
+                     Wood, Lewis, 1912-48, n.d.
+                     Woollcott, Alexander, 1939-43
+                     Woolsey, John M., 1932-37
+                     Wright, Benjamin, Jr., 1933-58
+                     Wright, Charles Alan, 1957-64, n.d.
+                     Wright, Harry N., 1942-52, n.d.
+                     Wright, Lord, 1937-60 (3 folders)
+
+Box 113  Reel 68-69  Wright, Louis B., 1950-61
+                     Wu, John C. H., 1930-54
+                     Wyzanski, Charles E., Jr., 1930-64, n.d.
+                        (14 folders)
+                     "Y" miscellaneous
+                     Yntema, Hessel E., 1930-54
+                     Young, B. Loring, 1931-46
+                     Young, Owen D., 1923-25
+
+Box 114     Reel 69  "Z" miscellaneous
+                     Zemurray, Samuel, 1935-54
+                     Zimmern, Alfred E., 1918-25, n.d. (2 folders)
+                     Unidentified, 1913-64, n.d., and fragments
+                        (7 folders)
+
+
+SPECIAL CORRESPONDENCE, 1916-1965, n.d.
+
+Box 115  Reel 69-70  Oxford University, Oxford, England,
+                           correspondence
+                        "A" miscellaneous (2 folders)
+                        Ascoli, Max, 1933-34
+                        Aswell, Edward C., 1933-34
+                        Aydelotte, Frank, 1932-34
+                        "B" miscellaneous (3 folders)
+                        Bikle, Henry Wolf, 1934
+                        Bingham, Robert W., 1922-34
+                        Brandeis, Louis Dembitz, 1933-34, n.d.
+                           (2 folders)
+                        Buckner, Emory R., 1916-34
+                        Bullitt, William C., 1933-34
+                        Burlingham, Charles C., 1933-34
+                        Buxton, Frank W., 1933-34
+                        "C" miscellaneous (2 folders)
+                        Cardozo, Benjamin N., 1933-34
+                        "Centurion," 1933-34
+                        Clark, Charles E., 1933-34
+                        Clark, Grenville, 1933-34
+                        Cohen, Benjamin V., 1933-34, n.d.
+
+Box 116     Reel 70     Cohn, Alfred E., 1933-34 (5 folders)
+                        Corcoran, Thomas G., 1933-34, n.d.
+                        "D" miscellaneous
+                        "E" miscellaneous
+                        "F" miscellaneous
+                        Feis, Herbert, 1933-34
+                        Flexner, Abraham, 1933-34
+                        "G" miscellaneous
+                        Glueck, Sheldon, 1933-34
+                        "H" miscellaneous (2 folders)
+                        Hutchins, Robert M., 1933-34
+                        Hutton, D. Graham, 1933
+
+Box 117     Reel 70-71  "I" miscellaneous
+                        "J" miscellaneous
+                        "K" miscellaneous
+                        Kerr, Philip Henry, 1930-38
+                        Keynes, John Maynard, 1933-34
+                        "L" miscellaneous
+                        Landis, James M., 1933-34
+                        Lindsay, A. D., 1933-34
+                        Lowenthal, Max, 1933-34, n.d.
+                        "M" miscellaneous (2 folders)
+                        McDonald, James G., 1933-34
+                        Mack, Julian W., 1933-34
+                        Macneil, Sayre, 1933-34
+                        Magruder, Calvert, 1933-34
+                        Morgan, Edmund M., 1934
+                        "N" miscellaneous
+                        "O" miscellaneous
+                        "P" miscellaneous
+                        Powell, Thomas Reed, 1933-34 (2 folders)
+
+Box 118     Reel 71     "R" miscellaneous
+                        Research fellowships, 1932-34
+                        "S" miscellaneous (3 folders)
+                        Sedgwick, Ellery, 1933-34
+                        Stephens, Harold M., 1933-34
+                        Swope, Herbert Bayard, 1933-34
+                        "T" miscellaneous
+                        "V" miscellaneous
+                        "W" miscellaneous
+                        Woolsey, John M., 1933-34
+                        Wyzanski, Charles E., Jr., 1933-34
+                     Massachusetts Supreme Judicial Court nomination
+                        Letters received before declination, 1932
+                           A-D (5 folders)
+
+Box 119     Reel 71-72     E-Z (13 folders)
+                        Letters received after declination, 1932
+                           A-E (2 folders)
+
+Box 120     Reel 72-73     F-Z (7 folders)
+                     Congratulations on Supreme Court appointment,
+                           1939
+                        A-J (11 folders)
+
+Box 121     Reel 73     K-Z (10 folders)
+                        Miscellaneous
+                        Unidentified
+                     Letters received on retirement from Supreme
+                           Court, 1962
+                        A-Q (8 folders)
+
+Box 122     Reel 73-74  R-Z
+                        Unidentified (12 folders)
+                     Seventieth birthday congratulations, 1952
+                     Seventy-fifth birthday congratulations, 1957
+                        (5 folders)
+                     Eightieth birthday congratulations, 1962
+                        (3 folders)
+                     Eighty-first birthday congratulations, 1963
+                     Eighty-second birthday congratulations, 1964
+
+Box 123  Reel 74-75  Condolences on death of Frankfurter's mother,
+                        1928 (2 folders)
+                     Condolences on death of Mrs. Frankfurter's
+                        mother, 1939-40 (2 folders)
+                     Condolences on death of Frankfurter's uncle,
+                        1941
+                     Condolences on death of Frankfurter, 1965
+                        (2 folders)
+                     Frankfurter memorial resolutions
+                     Letters received concerning _Felix Frankfurter
+                           Reminisces_
+                        1960
+                           Mar.-Aug. (3 folders)
+
+Box 124     Reel 75-76     Sept.-Dec. (3 folders)
+                        1961-64 (3 folders)
+                     Messages received during illness, 1958
+                        (5 folders)
+                     Messages received during illness, 1962
+                        (2 folders)
+
+
+SUBJECT FILE, 1846-1965, n.d.
+
+Box 125  Reel 76-77  Aaronsburg, Pa., 1949-53
+                     Aaronsohn, Aaron, 1913-37
+                     Agriculture Department, 1933
+                     Amalgamated Clothing Workers of America, 1919-33
+                        (5 folders)  _Correspondents include_ Sidney
+                        Hillman and Robert Szold
+                     American Academy of Arts and Sciences, 1932
+                     American Academy of Political and Social
+                        Science, 1931 (2 folders)  _Correspondents
+                        include_ Ernest Minor Patterson
+                     American Association for Labor Legislation,
+                        1917-32  _Correspondents include_ John B.
+                        Andrews
+                     American Civil Liberties Union, 1919-34 (14
+                        folders)  _Correspondents include_ Forrest
+                        Bailey, Roger N. Baldwin, and Albert De
+                        Silver
+
+Box 126     Reel 77  American Historical Association, 1929-33 (4
+                        folders)  _Correspondents include_ Carroll T.
+                        Bond, Evarts B. Greene, and Richard B. Morris
+                     American Institute of Architects, 1950
+                     American Law Institute, 1925-34 (6 folders) 
+                        _Correspondents include_ Alfred Bettman,
+                        Benjamin N. Cardozo, Learned Hand, William
+                        Draper Lewis, Henry Lewis Stimson
+                     Ames competition, Harvard University, Cambridge,
+                        Mass., 1957-58
+                     Amherst College, Amherst, Mass., controversy,
+                        1923-24 (4 folders)  _Correspondents include_
+                        Ernest M. Hopkins, Stanley King, and
+                        Alexander Meiklejohn
+                     Angell, Norman, 1958
+                     Anglo-American relations, 1923-43 (3 folders) 
+                        _Correspondents include_ Stafford Cripps and
+                        George C. Marshall
+                     Anti-Semitism, 1923-45 (6 folders) 
+                        _Correspondents include_ Abbott Lawrence
+                        Lowell
+
+Box 127  Reel 77-78  Association of American Law Schools, 1929
+                        (2 folders)  _Correspondents include_ Walter
+                        F. Dodd and H. Claude Horack
+                     Association of the Bar of the City of New York,
+                        1938 (2 folders)  _Correspondents include_
+                        John Foster Dulles and Henry Lewis Stimson
+                     _Atlantic Monthly_, 1960-65 (2 folders) 
+                        _Correspondents include_ Seymour Lawrence and
+                        Edward W. Weeks
+                     Atomic bomb, 1945-46 (3 folders) 
+                        _Correspondents include_ Niels Bohr and J.
+                        Robert Oppenheimer
+                     Awards
+                        American Bar Association, 1961-64 (3 folders) 
+                           _Correspondents include_ Phil C. Neal and
+                           Sylvester C. Smith, Jr.
+                        National Association of District Attorneys,
+                           1964
+                        New York State Bar Association, 1960-61
+                           (2 folders) _Correspondents include_
+                           Chauncey Belknap
+                        Yale University, New Haven, Conn., 1960-61  
+                           _Correspondents include_ Reuben A. Holden
+                     Balliol College, Oxford University, Oxford,
+                        England, Frankfurter fellowship, 1964
+                     Banking crisis, 1932-33 (4 folders) 
+                        _Correspondents include_ Max Lowenthal,
+                        Raymond Moley, and Ferdinand Pecora
+                     Bar, 1917-38
+                     Bar associations, 1929-35
+                     Berkman case, 1932  _Correspondents include_
+                        Louis Dembitz Brandeis
+                     Beth-Israel Hospital, Boston, Mass., Herman
+                        Blumgart thirtieth annniversary, 1958
+                     Bisbee deportation case, 1917-53
+                     Bohr, Niels, 1962-63
+                     Boston Bar Association, 1950-52 (3 folders)
+                     Brand, Robert H., 1963-65
+                     Brandeis, Louis Dembitz, 1890-1958
+                        (2 folders)
+
+Box 128     Reel 78-79  (7 folders)
+                     Brandeis Library, Tel Aviv, Israel, 1961
+                     Brandeis University, Waltham, Mass., honorary
+                        degree, 1955-56
+                     Briefmaking, 1922
+                     Brown University, Providence, R.I., honorary
+                        degree, 1960   _Correspondents include_
+                        Barnaby C. Keeney
+                     _Bunting v. Oregon_, 1916  _Correspondents
+                        include_ George M. Brown
+                     Burlingham, Charles C., memorial, 1958-61 (2
+                        folders)
+
+Box 129  Reel 79-80  California minimum wage, 1923-25 (4 folders) 
+                        _Correspondents include_ Mary W. Dewson, 
+                        Warren H. Pillsbury, and U. S. Webb
+                     Canadian government, capital punishment, 1954
+                     Cardozo, Benjamin N.
+                        Biography for _Collier's Encyclopedia_,
+                           1959-60
+                        Lectures, 1946-51
+                     Cero-Gallo case, 1929
+                     Chafee, Zechariah, Jr., memorial for American
+                        Philosophical Society, 1957-61
+                     Child labor, 1922-32 (5 folders) 
+                        _Correspondents include_ Grace Abbott
+                     Children's Bureau, 1956-61
+                     Christmas, 1960-64
+                     Churchill, Winston, 1937-65
+                     Civil liberties, 1925-49
+                        (3 folders)
+
+Box 130     Reel 80-81  (1 folder)
+                     Civil service, Great Britain, 1928-50 (3
+                        folders)
+                     Cleveland Foundation, 1920-55 (13 folders) 
+                        _Correspondents include_ Leonard P. Ayres,
+                        Newton D. Baker, Alfred Bettman, Howard F.
+                        Burns, Raymond B. Fosdick, John W. Love,
+                        Raymond Moley, Roscoe Pound, Reginald Heber
+                        Smith, and Amos Burt Thompson
+
+Box 131  Reel 81-82  Coal, 1923
+                     Cohen, Felix S., 1960-61
+                     Cohn, Alfred E., memorial library dedication,
+                        New York, N.Y., 1939-60
+                     _Columbia Law Review_, 1953-55 (2 folders) 
+                        _Correspondents include_ Michael Sovern
+                     Commerce Department, 1933-35
+                     Commission on the Repeal of Obsolete Laws,
+                        1926-27 (2 folders)
+                     Committee on Economic Security, 1934 (2 folders) 
+                        _Correspondents include_ Edwin E. Witte
+                     Commonwealth fund, 1921-32 (13 folders) 
+                        _Correspondents include_ Eleanor Bontecou,
+                        Max Farrand, Ernst Freund, I. Leo Sharfman,
+                        William C. Van Vleck
+
+Box 132     Reel 82  Compacts, 1925-32 (6 folders)
+                     Congressional investigations, 1933-38 (3
+                        folders)  _Correspondents include_ Claude
+                        Pepper
+                     Congressional power, 1922-35
+                     Conscientious objectors, 1917-32 (2 folders) 
+                        _Correspondents include_ Joseph V. Kline
+                     Constitution, 1904-36
+                     Cooper Union, New York, N.Y., 100th anniversary
+                        (1956), 1956-58
+                     _Cooper v. Aaron_, 1935-38 (2 folders)
+                     Crank letters, 1935-36
+
+Box 133  Reel 82-83  Criminal justice, 1926-45 (2 folders) 
+                        _Correspondents include_ Alfred Bettman
+                     Criminal law, 1913-27 (5 folders) 
+                        _Correspondents include_ Leonard P. Ayres,
+                        Newton D. Baker, and Henry Lewis Stimson
+                     Croly, Herbert David, 1956-65
+                     Dewey, John, 1949-50
+                     Diaries of James Knox Polk, 1846-51
+                     Downing Co., 1920-21
+                     _Economist_, 1959-61
+                     Economists' Bookshop, 1955-64
+                     Education, 1930-33 (2 folders)  _Correspondents
+                        include_ Frank P. Graham
+                     Employment
+                        Applications, 1935-36
+                        References, 1933-36
+
+Box 134  Reel 83-84  Exiled scholars, 1935-38
+                     Farband award, 1959
+                     Federal Communications Commission, 1937-38
+                     Federal Council of Churches, 1920-21
+                     Federal courts, 1927-35 (8 folders)
+                        _Correspondents include_ Thurman W. Arnold,
+                        Charles E. Clark, Edmund E. Day, Monte M.
+                        Lemann, George W. Norris, and Robert F.
+                        Wagner, Sr.
+                     Federal Farm Board, 1929-30  _Correspondents
+                        include_ George E. Farrand
+                     Federal judges, 1932-33 (5 folders) 
+                        _Correspondents include_ D. Lawrence Groner,
+                        Kenneth Mackintosh, Orie Leon Phillips, and
+                        James H. Wilkerson
+                     Federal judiciary, 1925-26 (2 folders)
+
+Box 135     Reel 84  Federal Power Commission, 1929-34 (6 folders) 
+                        _Correspondents include_ Judson King, Frank
+                        R. McNinch, William D. Mitchell, and Thomas
+                        J. Walsh
+                     Federal Securities bill, 1933-36 (10 folders)  
+                        _Correspondents include_ John J. Burns,
+                        Abraham Fortas, Joseph P. Kennedy, Sam
+                        Rayburn, Eustace Seligman, and Raymond B.
+                        Stevens
+                     Federal service, 1937-38
+                     Federal Trade Commission, 1925-35 (2 folders)
+
+Box 136  Reel 84-85  Federalism, 1919-35
+                     Filene's Sons Co., 1917
+                     Foreign Policy Association, 1920-35 (2 folders) 
+                        _Correspondents include_ James G. McDonald
+                     Foreign Service, 1946
+                     Forrestal, James, diaries, 1947-57 (2 folders) 
+                        _Correspondents include_ Walter Millis
+                     Foundations, 1928-56
+                     Frankfurter, Felix, 1937-65
+                        (11 folders)
+
+Box 137     Reel 85     (5 folders)
+                     Frankfurter, Marion Denman, 1918-64
+                     Friedenwald, Harry, 1963-64
+                     Friedenwald, Jonas S., 1945-61
+                     Frost, Robert, 1962-63
+                     German refugees, 1933
+                     Germany, 1933-36
+                        (6 folders)
+
+Box 138     Reel 85-86  (3 folders)
+                     Goldstein, Benjamin F., 1958
+                     Graham, Philip L., 1963
+                     Gray's Inn, London, England, 1952-60 
+                        _Correspondents include_ William J. Sellers
+                        and Frederic Haley
+                     Hall of Fame, New York University, New York,
+                        N.Y., 1945 (3 folders)
+                     Hand, Learned, 1945-61 (2 folders)
+                     Harcourt, Brace and Co., 1954-57 
+                        _Correspondents include_ Denver Lindley and
+                        Eugene Reynal
+                     Harvard University crime survey, Boston, Mass.
+                        Correspondence, 1926-38
+                           "A" miscellaneous
+                           Adler, Herman M.
+                           "B-C" miscellaneous (2 folders)
+                           Cabot, Frederick P.
+                           Cobb, John Candler
+                           "D" miscellaneous
+
+Box 139     Reel 86-87     Day, Edmund E. (2 folders)
+                           Dunham, Lawrence B.
+                           "E" miscellaneous
+                           Endicott, A. L.
+                           "F" miscellaneous
+                           Fosdick, Raymond B., 1926-34 (2 folders)
+                           Friedenwald, Jonas S.
+                           "G" miscellaneous
+                           Gehlke, C. E.
+                           Glueck, Sheldon (2 folders)
+                           Griscom, Stewart
+                           "H" miscellaneous
+                           Harrison, Leonard V. (4 folders)
+                           Hitchcock, Curtice N.
+                           Howland, Charles P .
+                           Hunnewell, F. W.
+                           "J-L" miscellaneous
+                           Lippmann, Walter
+                           "Mc-M" (2 folders)
+                           Maguire, John M. (2 folders)
+                           Miscellaneous
+
+Box 140     Reel 87        "N" miscellaneous
+                           Nutter, George R. (2 folders)
+                           "O-P" (2 folders)
+                           Plazinski, Thaddeus T.
+                           Pound, Roscoe (2 folders)
+                           "R-S" miscellaneous
+                           Sayre, Francis B., Jr.
+                           Shattuck, Henry L.
+                           Taylor, John L. (3 folders)
+                           "U" miscellaneous
+                           Van Waters, Miriam (2 folders)
+                           "W" miscellaneous
+                           Warner, Samuel Bass
+                           White, William Allen
+                           "Y" miscellaneous
+                        Committee, 1927-33 (2 folders)
+
+Box 141     Reel 87-88  Conferences, 1927-30 (2 folders)
+                        Criminological problems, 1928
+                        Juvenile delinquency, 1926-32
+                        Miscellaneous (7 folders)
+                        Penal treatment, 1926-31
+                        Personnel, 1926-27
+                        Police cooperation, 1925-32
+                        Press, 1927
+
+Box 142     Reel 88-89  Progress reports, 1927 (3 folders)
+                     _Harvard Law Review_, 1961-62  _Correspondents
+                        include_ Richard Posner
+                     Harvard Law School, Harvard University,
+                           Cambridge, Mass., 1924-39 
+                           _Correspondents include_ Abbott Lawrence
+                           Lowell
+                        (8 folders)
+
+Box 143     Reel 89     (3 folders)
+
+Box 144     Reel 90     (7 folders)
+                     Harvard Law Society of Illinois, remarks by
+                        Frankfurter, 1955
+                     Harvard University, Cambridge, Mass.,
+                        undergraduates, 1957-58
+                     Harvard University, Cambridge, Mass., honorary
+                        degree and Somerset Club dinner, 1956
+
+Box 145  Reel 90-91  Heidelberg University, Heidelberg, Germany,
+                        1935-37 (3 folders)
+                     Hiss, Alger, trial, 1947-63 (2 folders)
+                     Holding companies, 1935-36 (4 folders) 
+                        _Correspondents include_ Roger W. Babson
+                     Holmes-Laski letters, 1950-53  _Correspondents
+                        include_ Harold Joseph Laski
+                     Holmes lectures, 1950-64  _Correspondents
+                        include_ Anthony G. Amsterdam and Erwin N.
+                        Griswold
+                     Holmes, Oliver Wendell, 1862-1949 
+                           _Correspondents include_ Alger Hiss, Mark
+                           A. DeWolfe Howe, John  Lockwood, John G.
+                           Palfrey, W. Chapman Rose, and James Rowe
+                        (6 folders)
+
+Box 146     Reel 91-92  (13 folders)
+
+Box 147     Reel 92     (2 folders)
+                     Hughes, Charles Evans, 1951-58 (2 folders)
+                     Independent Committee for the Recognition of
+                        Soviet Russia, 1929-33  _Correspondents
+                        include_ Joseph Gollomb
+                     India, 1942-43 (2 folders)  _Correspondents
+                        include_  Taraknath Das and Edward Halifax
+                     Indian Bureau, 1930-33 (4 folders)
+
+Box 148     Reel 93  Institute for Advanced Study, Princeton, N.J.,
+                        1931-64 (8 folders)  _Correspondents include_
+                        Frank Aydelotte and Abraham Flexner
+                     Institute for criminal research, proposed,
+                        1927-30 (4 folders)
+                     Institute for Government Research, Washington,
+                        D.C., 1914-25 (4 folders)  _Correspondents
+                        include_ Raymond B. Fosdick
+
+Box 149  Reel 93-94  Inter-allied peace conference, 1917-18 (3
+                        folders)  _Correspondents include_ William C.
+                        Bullitt and Manley O. Hudson
+                     Interborough Rapid Transit Co., 1932-33 (3
+                        folders)  _Correspondents include_ Charles C.
+                        Burlingham and John M. Woolsey
+                     Interior Department, 1933-38  _Correspondents
+                        include_ Harold L. Ickes and Nathan R.
+                        Margold
+                     Interstate Commerce Commission, 1920-62
+                        (2 folders)  _Correspondents include_ Rupert
+                        L. Murphy
+                     Invitations to write, 1960-64
+                     Israel Philharmonic Orchestra, 1951
+                     Israeli embassy, 1954-59
+                     Jackson, Robert H., 1955-64
+                     John W. Davis award, 1956
+                     Judiciary, 1926-30 (2 folders)
+                     Justice Department, 1920-37 (5 folders) 
+                        _Correspondents include_ Homer S. Cummings,
+                        Stanley Reed, Harold M. Stephens, Charles E.
+                        Wyzanski, Jr.
+                     Juvenile delinquency, 1950-51
+
+Box 150  Reel 94-95  Keedy, Edwin R., 1950
+                     Kelley, Florence, 1953
+                     Kennedy, John F., library, proposed, 1964
+                        Kennedy, Robert F.
+                        McLaughlin, Charles
+                     Labor, 1917-23
+                     Labor Department, 1932-37 (3 folders) 
+                        _Correspondents include_ Frances Perkins and
+                        Charles E. Wyzanski, Jr.
+                     Labor injunctions, 1922-35 _ Correspondents
+                           include_ Roger N. Baldwin, Francis Biddle,
+                           Fiorello H. La Guardia
+                        (3 folders)
+
+Box 151     Reel 95     (5 folders)
+                     Laski, Harold Joseph, 1893-1953 (5 folders)
+
+Box 152  Reel 95-96  Latin America, 1920-31 (3 folders)
+                     Legal profession, 1932-37
+                     _Letters of Sacco and Vanzetti_ (New York:
+                        Viking, 1928), 1928
+                     Liberty bonds gold clause, 1933-35 (2 folders)
+                        _Correspondents include_ B. H. Inness Brown
+                     _Life_ magazine, 1937-45
+                     Lincoln, Abraham, 1941-43
+                     Littauer Foundation, 1929-37  _Correspondents
+                        include_ Lucius N. Littauer
+                     MacLeish, Archibald, book fund, 1942
+                     Mann, Thomas, 1937-45
+                     Marshall, John, bicentennial (1955), 1953-58
+                     Massachusetts Supreme Judicial Court, 250th
+                        anniversary (1942), 1942-43 (2 folders)
+                     _Measure_, 1951
+                     Medal of Freedom, 1963
+                     Men and jobs, 1936-37
+                     Mexico, 1918-27 (2 folders)
+
+Box 153  Reel 96-97  Minimum Wage Board, Washington, D.C., 1919-23
+                        (3 folders)  _Correspondents include_ Jesse
+                        C. Adkins, Elizabeth Brandeis, Mary W.
+                        Dewson, and F. H. Stephens
+                     Minimum wage decision, Washington, D.C., 1922-23
+                        (5 folders)
+                     Minimum wage law, 1916-34  _Correspondents
+                           include_ William Green
+                        (6 folders)
+
+Box 154     Reel 97-98  (1 folder)
+                     Minimum wage legislation, 1916-23 (5 folders)
+                     Mooney case, 1917-34  _Correspondents include_
+                           Herbert David Croly
+                        (2 folders)
+
+Box 155     Reel 98-99  (8 folders)
+                     Morgenthau, Henry, mission, 1917-21 (2 folders)
+                     _Nation_, 1936-37  _Correspondents include_ Max
+                        Lerner and Oswald Garrison Villard
+                     National Commission on Law Observance and
+                           Enforcement, 1929-31  _Correspondents
+                           include_ Newton D. Baker,  Charles E.
+                           Clark, Joseph C. Hutcheson, Jr., William S.
+                           Kenyon, and Charles H. Willard
+                        (2 folders)
+
+Box 156     Reel 99-100 (12 folders)
+
+Box 157     Reel 100 National Consumers' League, 1915-49 (5 folders) 
+                        _Correspondents include_ Mary W. Dewson,
+                        Josephine Goldmark, and Florence Kelley
+                     National Council on Legal Clinics, 1961-62 
+                        _Correspondents include_ Paul A. Freund and
+                        Howard Sacks
+                     National District Attorneys' Association,
+                        Furtherance of Justice award, 1964
+                     National Historical Publications Commission,
+                           1951-65   _Correspondents include_ Julian
+                           P. Boyd, Wayne C. Grover, and Philip M.
+                           Hamer
+                        (7 folders)
+
+Box 158     Reel 1O0-01 (11 folders)
+
+Box 159     Reel 101-02 (4 folders)
+                     National Popular Government League, 1919-22
+                        (2 folders)  _Correspondents include_ Judson
+                        King
+                     National Recovery Act, 1933-36 (4 folders)  
+                        _Correspondents include_ Donald R. Richberg
+                        and Charles E. Wyzanski, Jr.
+                     Navy Department, 1938-39
+                     Nazism, 1933-37
+                     _New Republic_, 1913-37 (4 folders) 
+                        _Correspondents include_ Bruce Bliven,
+                        Herbert David Croly, and George Soule
+
+Box 160     Reel 102 New School for Social Research, New York, N.Y.,
+                        1931-59 (4 folders)  _Correspondents include_
+                        Alvin Johnson and Hans Simons
+                     New York public service policy, 1929-32
+                        (7 folders)  _Correspondents include_ James
+                        C. Bonbright, William J. Donovan, Leon
+                        Leighton, Robert H. Thayer, and Frank P.
+                        Walsh
+                     _New York Times_, 1939-53  _Correspondents
+                        include_ Arthur Hays Sulzberger
+                     Norris injunction bill, 1928-30  _Correspondents
+                           include_ George W. Norris, Herman Oliphant,
+                           Donald R. Richberg, and Edwin E. Witte
+                        (2 folders)
+
+Box 161     Reel 102-03 (3 folders)
+                     _North Carolina v. Allen_, 1929
+                     Oil scandal investigations (Teapot Dome),
+                        1926-28  (3 folders)  _Correspondents
+                        include_ Walter Lippmann and Thomas J. Walsh
+                     "Over 65" feature, Pennsylvania Medical Society,
+                        1956
+                     Oxford University, Oxford, England, 1939-63
+                     Oxford University Press, 1946
+                     Palestine, 1919-65 _ Correspondents include_
+                           Louis Dembitz Brandeis, Prince Feisal, and
+                           Chaim Weizmann
+                        (6 folders)
+
+Box 162     Reel 103-04 (7 folders)
+                     Palestine-Zionist Commission, 1919 (3 folders)
+                     Palestine endowment funds, 1962
+                     Palestine trip, 1934
+                     Phi Beta Kappa mystery, 1947-48
+                     Philadelphia Harvard Law School Association
+                        luncheon, Philadelphia, Pa., 1955-56
+                     Photographs and portraits, 1941-44
+                        (2 folders)
+
+Box 163     Reel 104-05 (2 folders)
+                     Puerto Rico, n.d.
+                     Postal savings, 1935-36
+                     Presidential elections
+                        1924 (6 folders)  _Correspondents include_
+                           Charles C. Burlingham, Walter Lippmann, and
+                           Max Lowenthal
+                        1928  _Correspondents include_ Walter
+                              Lippmann, Belle Moskowitz, and Alfred E.
+                              Smith
+                           (8 folders)
+
+Box 164     Reel 105-106   (1 folder)
+                        1932 (6 folders)  _Correspondents include_
+                           Adolph A. Berle, Belle Moskowitz, Joseph M.
+                           Proskauer, Herbert Bayard Swope, and
+                           Stephen S. Wise
+                        1936
+                     President's Commission on Civil Service
+                           Improvement, 1935-41
+                        (4 folders)
+
+Box 165     Reel 106-07 (13 folders)
+
+Box 166     Reel 107    (6 folders)
+
+Box 167     Reel 107-08 (15 folders)
+
+Box 168     Reel 108    (16 folders)
+
+Box 169     Reel 108    (17 folders)
+
+Box 170     Reel 108-09 (15 folders)
+
+Box 171     Reel 109    (16 folders)
+
+Box 172     Reel 109    (11 folders)
+
+Box 173     Reel 109-10 (16 folders)
+
+Box 174     Reel 110    (18 folders)
+
+Box 175     Reel 110    (10 folders)
+
+Box 176     Reel 111    (5 folders)
+
+Box 177     Reel 111-12 (4 folders)
+
+Box 178     Reel 112-13 (5 folders)
+                     Press censorship, 1928-44 (4 folders)
+                     Prohibition, 1922-23 (2 folders) 
+                        _Correspondents include_ Learned Hand and
+                        Henry Lewis Stimson
+                     Public utility regulation, 1927-35 
+                           _Correspondents include_ Morris Llewellyn
+                           Cooke, Joseph B. Eastman, Benjamin F.
+                           Goldstein, and Judson King
+                        (3 folders)
+
+Box 179     Reel 113-14 (8 folders)
+
+Box 180     Reel 114    (3 folders)
+                     Railroad reorganization, 1932-35 (6 folders) 
+                        _Correspondents include_ Benjamin V. Cohen,
+                        Leslie Craven, Joseph B. Eastman, Robert M.
+                        La Follette,  Jr., and Thomas D. Thacher
+                     Receiverships, 1923-25
+                        (3 folders)
+
+Box 181     Reel 115    (1 folder)
+                     Reconstruction Finance Corp., 1932-35
+                        (2 folders)
+                     Reorganizations, 1936
+                     Requests for information, 1952-64
+                     Roberts, Owen J., _Pennsylvania Law Review_,
+                        1955-56
+                     Roosevelt, Franklin D., 1945
+                     Roosevelt Library, Hyde Park, N.Y., 1952
+                     Roosevelt memorial, _Harvard Alumni Bulletin_,
+                        1945-47   _Correspondents include_ W. L.
+                        Mackenzie King
+                     Roosevelt Memorial Commission, 1941-65 (2
+                        folders)  _Correspondents include_ Francis
+                        Biddle, Waldo G. Leland, and Eleanor
+                        Roosevelt
+                     Russia, 1918-25
+                        (3 folders)
+
+Box 182     Reel 115-16 (1 folder)
+                     St. Lawrence Seaway Development Commission, 1931 
+                        _Correspondents include_ James C. Bonbright
+                     Savings bank insurance, 1929-36 (5 folders) 
+                        _Correspondents include_ Edwin F. Gay and
+                        Alice H. Grady
+                     Schwimmer (Rosika) citizenship case, 1930-41 
+                        _Correspondents include_ Oliver Wendell
+                        Holmes
+                     Securities Act, 1933  _See_ Federal Securities
+                        bill
+                     Securities and Exchange Commission
+                        Correspondence, 1933-36 (2 folders)
+                           _Correspondents include_ Arthur Perry
+                        Miscellany, 1933-34, n.d.
+                        Newspaper clippings, 1918, 1933, n.d.
+                        Printed matter, 1933-35, n.d.
+                        Foreword, _Virginia Law Review_, 1959
+                     Selden Society, 1952-53  _Correspondents
+                        include_  K. Howard Drake
+                     Seventy-fifth birthday, 1957
+                     Sheffer, Henry M., 1949-51
+                     Smith College, Northampton, Mass., 1954
+                     Social Science Research Council, 1926-32 
+                           _Correspondents include_ Floyd H. Allport,
+                           Raymond B. Fosdick,  Learned Hand, Robert
+                           E. Park, John Barker Waite, and Edwin B.
+                           Wilson
+                        (1 folder)
+
+Box 183     Reel 116    (4 folders)
+                     Solicitor General, 1933
+                     South Carolina Bar Association, 1949-50
+                     State Department, 1933-35  _Correspondents
+                        include_ William Phillips, John Farr Simmons,
+                        and Henry Lewis Stimson, 1960-61
+                     Stimson-Frankfurter correspondence, publication
+                        of, 1957-61
+                     Stone, Harlan Fiske, memorial, 1946-47
+                     Students, 1935-49
+                     Supreme Court, 1870-1959
+                        (4 folders)
+
+Box 184     Reel 116-17 (8 folders)
+                     Supreme Court as an institution, 1955
+
+Box 185 Reel 117-18  Supreme Court justices, n.d.
+                     _A Surgeon's Reflections_, by William Sharpe,
+                        1955-56
+                     Survey Associates, 1937
+                     Survey of United States Supreme Court, October
+                        term, 1936
+                     Taney, Roger B., National Memorial Foundation,
+                        1936
+                     Taxation, federal, 1923-36 (7 folders)
+
+Box 186     Reel 118 Tennessee Valley Authority, 1933-38 (7 folders) 
+                        _Correspondents include_ David E. Lilienthal
+                     Thaxter, Sidney, memorial service, 1959
+                     Third degree confessions, 1924-32 (2 folders) 
+                        _Correspondents include_ Paul U. Kellogg
+                     Trade unions, 1922-23
+                     Treasury Department, 1933-36  _Correspondents
+                        include_ Dean Acheson
+                     Unemployment insurance, 1934 (2 folders)
+
+Box 187     Reel 119 Unemployment reserves
+                        American Federation of Labor, 1924-33
+                           (3 folders) _Correspondents include_
+                           Charles E. Clark, William Green, and
+                           Matthew Woll
+                        Massachusetts, 1932-33 (3 folders) 
+                           _Correspondents include_ Stanley King, John
+                           W. Plaisted, and Paul Rauschenbush
+                        New York, 1925-33
+                        Wisconsin, 1925 (3 folders)  _Correspondents
+                           include_  Herman L. Ekern
+                     United States Senate, 1926 (3 folders)
+                     Universities, 1934-37
+
+Box 188     Reel 119 University in exile, 1933
+                     University of Calcutta, Calcutta, India, 1953-54
+                     University of Melbourne, Melbourne, Australia,
+                        1951-56
+                     University of Michigan Law School, Ann Arbor,
+                        Mich., 1953-54
+                     Utilities Bureau, 1914-24 (9 folders) 
+                        _Correspondents include_ Morris Llewellyn
+                        Cooke and Russell D. Crane
+                     Valentine, Robert G., 1916-17 (2 folders)
+                     Valuation, 1930-33
+                     Vanderbilt University, Nashville, Tenn.,
+                        symposium, 1949-51
+                     Vassar College, Poughkeepsie, N.Y., 1949-61
+                     Villanova University, Villanova, Pa., 1955
+                     _Virginia Law Review_, 1953-56
+
+Box 189     Reel 120 War Department, 1917-19 (8 folders)
+                     War Labor Policies Board, 1917-18
+                        (4 folders)
+
+Box 190     Reel 120    (22 folders)
+
+Box 191     Reel 121    (13 folders)
+
+Box 192     Reel 121-22 (6 folders)
+                     Washington College of Law, American University,
+                        Washington, D.C., 1953-54
+                     _Washington Post,_ 1953-60
+                     Water power, Maine, 1927-32 (2 folders)
+                     Wheeler Defense Committee, 1924-26 (2 folders)
+
+Box 193 Reel 122-23  Wigmore, John Henry, 1963
+                     Williston, Samuel, _Harvard Law Review_, 1963
+                     Wisconsin utilities, 1931-33 (5 folders) 
+                        _Correspondents include_ Philip La Follette
+                        and David E. Lilienthal
+                     World Court, 1939
+                     Wright, Harry N., 1942
+                     _Yale Law Journal_, 1919-61
+                     Yale University, New Haven, Conn., 1929-36
+                        (4 folders)
+                     Yale University Press, 1920-52
+
+
+SPEECH, ARTICLE, AND BOOK FILE, 1907-1965, n.d.
+
+                     Bound volumes of final copies of speeches and
+                           publications
+
+Box 194     Reel 123    1913-24
+
+Box 195     Reel 123    1925-28
+
+Box 196     Reel 124    1929-31
+
+Box 197     Reel 124    1932-38
+
+Box 198     Reel 125    1939-49 (also includes earlier years, 1913,
+                           1917, 1918, 1924, 1933)
+
+Box 199     Reel 125    1950-55
+
+Box 200     Reel 126    1956-63
+
+Box 201     Reel 126 Drafts, research notes, and related material
+                        "The Adamson Law," _Boston Herald_,
+                           9 Oct. 1916
+                        Address, American Bar Association,
+                           17 Apr. 1930
+                        Address, American Philosophical Society,
+                           22 Apr. 1954
+                        Address, Harvard University Law School,
+                           alumni dinner, New York, N.Y.,
+                           [20?] Mar. 1914
+                        Address, Second Interstate Conference on
+                           Uniform Labor Laws, Providence, R.I., 1933
+                        Address, Willkie Award dinner, 28 Feb. 1947
+                        "The Administrative Side of Chief Justice
+                           Hughes," _Harvard Law Review_, 1949
+                        "An Adventure in Contentment," _New
+                           Republic_, 10 Mar. 1920
+                        "Alfred North Whitehead," letter to editor,
+                           _New York Times_, 8 Jan. 1948
+                        American Law Institute dinner address,
+                           Washington, D.C., 18 May 1951, and meeting,
+                           Washington, D.C., 16 May 1951
+                        "Anita Whitney and the Courts," letter to
+                           editor, _Nation_, 9 Dec. 1925
+                        _Annual Survey of Massachusetts Law_,
+                           foreword by Frankfurter, 1955-56
+                        Augustus L. Richards, 1953
+                        "A Bad Omen for Railroad Consolidation," _New
+                           Republic_, 4 Feb. 1931
+                        "Bankers and the Conspiracy Law," _New
+                           Republic,_ 21 Jan. 1925
+                        "The Berger Decision," _New Republic_, 23
+                           Feb. 1921
+                        "The Best Advice I Ever Had," _Reader's
+                           Digest_, 1956
+                        Bibliography
+                        "The Big City Press," _St. Louis Post-
+                           Dispatch_, 1953
+                        "Blackstone's Contributions to Constitutional
+                           Law," 1954
+                        Book reviews by Frankfurter, 1928-32, n.d.
+                        _Boston Herald_, letter to the editor,
+                           2 Oct. 1924
+                        "Brandeis," _New Republic,_ 5 Feb. 1916
+                        Brandeis, Alice Goldmark (Mrs. Louis Dembitz
+                           Brandeis), remarks by Frankfurter at
+                           funeral, 1945
+                        Brandeis, Louis Dembitz, remarks by
+                           Frankfurter at funeral, 17 Oct. 1941
+                        Brandeis Lawyers Society address,
+                           [Philadelphia, Pa.?], 17 Apr. 1951
+                           (2 folders)
+                        British-American educators meeting speech,
+                           Washington, D.C., 6 Sept. 1958
+
+Box 202     Reel 127    "Business and Federalism," n.d.
+                        _The Business of the Supreme Court,_
+                           Correspondence, 1927-36 (5 folders)
+                           Miscellany, 1925-36 (2 folders)
+                        "The Business of the Supreme Court at October
+                           Term, 1931," _Harvard Law Review_,
+                           Dec. 1932
+                        "Calvert Magruder," _Harvard Law Review_
+                           (June 1959), 1958-60
+                        "Calvert Magruder," Harvard Law School
+                           _Yearbook,_ 1959
+                        Campaign speech, WBZ radio broadcast, Boston,
+                           Mass., 5 Nov. 1932
+                        "Cardozo, Benjamin N.," _Dictionary of
+                           American Biography_ (1955), 1927-56
+                        _The Case of Sacco and Vanzetti_ (review),
+                           22 Dec. 1927
+                        _Cases and Other Authorities on Federal
+                           Jurisdiction and Procedure_ (1931),
+                           correspondence, 1929-52 (2 folders)
+                        _Chaim Weizmann,_ edited by M. Weisgal,
+                           foreword by Frankfurter, 1944
+                        Chaim Weizmann, telephone remarks by
+                           Frankfurter in Washington, D.C., to
+                           participants at dinner honoring Weizmann,
+                           New York, N.Y., 27 Nov. 1945
+
+Box 203     Reel 127-8  "Charles Culp Burlingham," _Memorial Book_ of
+                           the New York City Bar Association, 1959-60
+                           (2 folders)
+                        "Charles Evans Hughes," remarks for NBC
+                           broadcast, 30 June 1941
+                        "Chief Justice Hughes," Harvard Law School
+                           _Yearbook_, dedication, 1949
+                        "Chief Justices I Have Known," informal talk,
+                           University of Virginia Law School,
+                           Charlottesville, Va., 12 May 1953
+                        City College of New York, New York, N.Y.,
+                           centennial celebration address, 12 Oct.
+                           1946
+                        Cohen, Morris Raphael, Frankfurter's review
+                           of his autobiography, 1949
+                        _The Commerce Clause Under Marshall, Taney,
+                           and Waite_
+                           Correspondence, 1934-64
+                           Drafts, 1936 (2 folders)
+                           Miscellaneous, n.d. (6 folders)
+
+Box 204     Reel 128-29 "The Compact Clause of the Constitution,"
+                           with James M. Landis, _Yale Law Journal_,
+                           May 1925
+                        "The Conditions For, and the Aims and Methods
+                           of Legal Research," _Iowa Law Review,_ 1930
+                        "Congressional Power Over the Labor
+                           Injunction," _Columbia Law Review_,
+                           Mar. 1931
+                        Correspondence between Alexander Mitchell
+                           Palmer and Frankfurter and Zachariah Chafee
+                           regarding aliens held for deportation, 1920
+                        "Crime and Crime Surveys," New York City Bar
+                           Association address, New York, N.Y., 17
+                           Apr. 1930
+                        "Constitutional Opinions of Justice Holmes,"
+                           _Harvard Law Review_, Apr. 1916
+                        Curbs on German universities, Association of
+                           American Law Schools, address, 1936
+                        "Dean Acheson," _Groton School Quarterly_,
+                           1949
+                        Demobilization conference, address,
+                           29-30 Nov. 1918
+                        "Democracy and the Expert," _Atlantic
+                           Monthly_, Nov. 1930
+                        "Does _Mapp v. Ohio_ Effect an
+                           'Incorporation' of the Fourth Into the
+                           Fourteenth Amendment?" n.d.
+                        "Edward Henry Warren," _Harvard Law Review_,
+                           n.d.
+                        "The Election of 1916,"  [1916]
+                        "Eugene Wambaugh," _Harvard Law Review,_
+                           Nov. 1940
+                        "Exit the Kansas Court," _New Republic_,
+                           27 June 1923
+                        Federal Bar Association address, Washington,
+                           D.C., 21 Sept. 1957
+                        "Federal Securities Act," _Fortune_,
+                           [Aug.] 1933
+                        _Felix Frankfurter: A Tribute_
+                           Galleys, n.d.
+                           Publisher's correspondence, 1956-62
+                              (4 folders)
+
+Box 205     Reel 129    _Felix Frankfurter Reminisces_
+                           Transcripts
+                              1953-55 (11 folders)
+                              1957
+                                 June (2 folders)
+                                 July
+                                    1-15 (8 folders)
+
+Box 206     Reel 129                16-23 (4 folders)
+                                 Aug. (2 folders)
+                           Miscellaneous, 1918-20, 1932, 1959, n.d.
+                           Reviews, 1960-63
+                        "Felix Frankfurter und der Oberste
+                           Gerichtshof," Voice of America radio
+                           broadcast (Feb. 1955), 1954-55
+                        "Fiorello H. La Guardia," at La Guardia
+                           Memorial,  dedication ceremony, New York,
+                           N.Y., 20 Sept. 1957
+                        "Franklin Delano Roosevelt," _Harvard Alumni
+                           Bulletin_, 1945
+                        Franklin D. Roosevelt, remarks at Hyde Park,
+                           N.Y., 30 May 1956
+                        "Free Inquiry: A Democratic Essential,"
+                           _St. Louis Post-Dispatch_, 11 July 1936
+                        George C. Marshall, letter to editor,
+                           _Washington Post_, 20 Oct. 1959
+                        George W. Gay lecture, Harvard Medical
+                              School, Boston, Mass., 21 Mar. 1958
+                           Correspondence, 1958
+                           Manuscript and notes, 1958
+                        "The Government Lawyer," (1957) _Federal Bar
+                           Journal_, Jan.-Mar. 1958 (2 folders)
+                        _The Great Globe Itself_, by W. C. Bullitt,
+                           review in (London) _Times Literary
+                           Supplement_, 8 Mar. 1947
+                        "Growing Up in America," British Broadcasting
+                           Corp. radio broadcast, Apr. 1944
+                        Guido Pantaleoni memorial dedication, remarks
+                           by Frankfurter, Cambridge, Mass.,
+                           29 Nov. 1947
+                        "Haiti and Intervention," _New Republic_,
+                           15 Dec. 1920
+
+Box 207     Reel 130    "Harold J. Laski," _Clare Market Review_,
+                           London School of Economics, July 1950
+                        "Harold J. Laski," British Broadcasting Corp.
+                           program (15 Nov. 1961), 1941-62
+                        Harry N. Wright, address at Wright's
+                           inauguration as president of City College
+                           of New York, New York, N.Y., 1942
+                        _The Harvard Crime Survey_, introduction by
+                           Frankfurter, 1934
+                        "Henry W. Edgerton," _Cornell Law Quarterly_,
+                           winter 1957
+                        Holmes, Oliver Wendell
+                           Article, _Dictionary of American
+                              Biography_, vol. 21, 1943
+                           Lectures, n.d.
+                           Notes, n.d.
+                        "In Answer to Mr. Beck," _New Republic_,
+                           18 Jan. 1922
+                        "Interstate Commerce," _Encyclopaedia of the
+                           Social Sciences_, 1932
+                        Interstate Commerce Commission, remarks at
+                           retirement of J. Monroe Johnson,
+                           Washington, D.C., 4 June 1956
+                        Introduction of Newton D. Baker, Cambridge,
+                           Mass., 2 Nov. 1932
+                        _The Insurance Commissioner in the United
+                           States_, by E. W. Patterson, introduction
+                           by Frankfurter, 1927
+                        "Jerome N. Frank," _Chicago Law Review,_ 1957
+                        "John Marshall and the Judicial Function,"
+                           Cambridge, Mass., 22 Sept. 1955
+                        "Josef Redlich," _Harvard Law Review_,
+                           Jan. 1937
+                        Judge Oppenheimer, letter to editor, _New
+                           York Times_, 12 Nov. 1956
+                        "Judges Off the Bench," letter to editor,
+                           _Boston Herald_, 14 Nov. 1929
+                        "A Judicial Opinion," letter to editor, _New
+                           York Times_, 7 Sept. 1932
+                        "Karolyi, Kellogg, and Coolidge," _New
+                           Republic_, 2 Dec. 1925
+                        "Katharine Ludington," 1953
+
+Box 208     Reel 130-31 The Labor Injunction, 1930
+                        "Labor Injunction," _Encyclopaedia of the
+                           Social Sciences_, 1932
+                        "Law and the Future: Foreword," _Northwestern
+                           University Law Review_, May-June 1956
+                        "The Law and the Law Schools," _Reports_ of
+                           the American Bar Association, 1915
+                        "Law and Order," _Yale Review_, 1923
+                        "A Lawyer's Dicta on Doctors," _Harvard
+                           Medical Alumni Bulletin_, July 1958
+                        Leader on Cardozo, Benjamin N., appointment,
+                           _New Republic_, 24 Feb. 1932
+                        "Learned Hand," _Harvard Law Review_,
+                           correspondence, 1945-47
+                        "Learned Hand," for dedication of Harvard Law
+                           School _Yearbook_, 1951-62
+                        "Learned Hand," memorial for _Yearbook_ of
+                           the New York City Bar Association, 1961-63
+                        Lectures, University of Minnesota Law School,
+                           1-2 Dec. 1952
+                        Letters to the editor, 1921-32 (2 folders)
+                        Lord Lothian (Philip Kerr), 1940-42
+                        "Lord Percy of Newcastle," (London) _Times,_
+                           14 Apr. 1958
+                        Mailing lists, 1937-38, n.d.
+                        _Manchester Guardian_, 1956, on death of A.
+                           P. Wadsworth
+                        Massachusetts Supreme Judicial Court, remarks
+                           at 250th anniversary, [Boston?] 21 Nov.
+                           1942
+                        "Maurice Finkelstein," _St. John's Law
+                           Review_, 1957
+                        "Medicine and Law: Parts of a Whole," 1957,
+                           remarks at opening of George Washington
+                           University School of Medicine, Washington,
+                           D.C., [11?] Sept. 1956
+
+Box 209     Reel 131-32 Mehta (G. L.) speeches introduced by
+                           Frankfurter, 1958
+                        "Memorandum on 'Incorporation' of the Bill of
+                           Rights Into the Due Process Clause of the
+                           Fourteenth Amendment," 1929-65
+                        Memorandum in the Myers case, 1926
+                        Miscellaneous
+                           Fragments, 1962, n.d.
+                           Notes, 1934, 1946, 1955, n.d. (2 folders)
+                           Speeches by others, 1927-33, 1944, 1953-57,
+                              n.d.
+                        "Mr. Justice Brandeis, " _New York Times
+                              Magazine_, 11 Nov. 1956
+                           Correspondence
+                           Drafts
+                           _Mr. Justice Brandeis_, edited by
+                           Frankfurter, 1932
+                        _Mr. Justice Holmes and the Supreme Court_,
+                              edited by Frankfurter
+                           Correspondence, 1930-33, 1960-65
+                              (2 folders)
+                           Miscellaneous notes, 1931
+                        "Mr. Justice Roberts," 1955
+                        "Mr. Lansing's Book: A Postscript," _New
+                           Republic_, 13 Apr. 1921
+                        "Monte M. Lemann," _Memorial Book_ of the New
+                           York City Bar Association, 1960
+                        Monte Lemann, for WDSU radio, New Orleans,
+                           La., 14 Sept. 1959
+                        "Monte Lemann," letter to editor, _New York
+                           Times_, 21 Sept. 1959
+                        Morris R. Cohen Library dedication, City
+                           College of New York, New York, N.Y.,
+                           3 May 1958
+                        "A National Policy for the Enforcement of
+                           Prohibition," _Annals_ of the American
+                           Academy of Political and Social Science,
+                           Sept. 1923
+                        "New York's 'Crime Wave,'" _New Republic_,
+                           19 Apr. 1922
+                        _New York Times_, letter to the editor,
+5 June 1925
+
+Box 210     Reel 132    "A Notable Decision," (article on the
+                           Scottsboro case) _New York Times_,
+                           13 Nov. 1932
+                        "A Note on Diversity Jurisdiction--In Reply
+                           to Professor Yntema," _University of
+                           Pennsylvania Law Review_, June 1931
+                        "Notes for Moscow," prepared by Frankfurter
+                           for Earl Warren, 1959
+                        Notes for lectures, University of Minnesota,
+                           1957-58, n.d.
+                        Notes for speeches, 1923, 1936-38, n.d.
+                        "Notes for the Independence Hall Ceremony,"
+                           n.d.
+                        "Notes for Westminster Hall," n.d.
+                        _Of Law and Life and Other Things That
+                           Matter_, Frankfurter's writings, 1962-65
+                           (9 folders)
+                        _Of Law and Men_, edited by Philip Elman
+                           General, 1939-55
+
+Box 211     Reel 132-133   Correspondence, 1956-58 (2 folders)
+                           Miscellaneous, 1956-58, n.d.
+                        "On Being an American," 1944-46, address for
+                           "I Am an American" day, Washington, D.C.,
+                           21 May 1944, published in _Survey Graphic_,
+                           July 1944
+                        "On Entering the Law," _Harvard Crimson_,
+                           1957-58
+                        "The Packers vs the Government," _New
+                           Republic_, 25 May 1932
+                        "The Permanence of Jefferson," (Washington,
+                           D.C., 13 Apr. 1943), 1927-47 (3 folders)
+                        "Personal Ambitions of Judges," address to
+                           the American Law Institute, Philadelphia,
+                           Pa., 23 May 1948, published in _American
+                           Bar Association Journal_, 1948
+                        "Personal Recollections of Jonas S.
+                           Friedenwald,"  Johns Hopkins Hospital,
+                           Baltimore, Md., 10 Feb. 1956
+                        "The Place of the Supreme Court in Our
+                           Government," radio speech given under
+                           auspices of National League of Women
+                           Voters, New York, N.Y., 13 May 1930
+                        Prettyman lectures, foreword by Frankfurter,
+                           1959, correspondence and manuscripts
+                           (2 folders)
+                        "Professor Sir William Holdsworth," _American
+                           Bar Association Journal_, Feb. 1944
+
+Box 212     Reel 133-34 _The Public & Its Government_,
+                           correspondence, 1930-37 (2 folders)
+                        "The Public Profession of the Law," _New
+                           Republic_, 22 Feb. 1922
+                        _Public Utility Regulation_, edited by M. L.
+                           Cooke, introduction by Frankfurter, 1924
+                        "Reconstruction and the Law," ca. 1932
+                        _Regionalism in America_, 1951, foreword by
+                           Frankfurter
+                        Remarks at Aaronsburg, Pa., 23 Oct. 1949
+                        Remarks at Harvard Law School, Graduate
+                           School alumni day, Cambridge, Mass.,
+                           13 June 1956
+                        Remarks at Israel's tenth anniversary dinner,
+                           New York, N.Y., 19 May 1958
+                        Remarks at memorial meeting for John Graham
+                           Brooks, 1938
+                        Remarks at Russian meeting, Faneuil Hall,
+                           Boston, Mass., 11 Nov. 1919
+                        Remarks at the fiftieth anniversary
+                           celebration for Learned Hand as a federal
+                           judge, New York, N.Y., 10 Apr. 1959
+                        Remarks on receiving award of the National
+                           Institute for Immigrant Welfare, New York,
+                           N.Y., 11 May 1938
+                        Remarks on receiving degree of Doctor of Laws
+                           from Yale University, New Haven, Conn.,
+                           12 June 1961
+                        "A Reply to Mr. Beck," _New Republic,_
+                           19 Oct. 1921
+                        "A Rigid Outlook in a Dynamic World," _Survey
+                           Graphic_, Jan. 1938
+                        Robert P. Patterson, letter to the editor,
+                           _New York Times_, 24 Jan. 1952
+                        Royal Commission on Capital Punishment,
+                           Frankfurter's testimony, London, England,
+                           21 July 1950
+                        _A Selection of Cases Under the Interstate
+                              Commerce Act_, edited by Frankfurter
+                           Correspondence
+                              1915-28
+
+Box 213     Reel 134          1929-32
+                           Manuscript of note to second edition
+                           Reviews
+                        "Sir Willmott Lewis," broadcast for British
+                           Broadcasting Corp., 5 Jan. 1950
+                        "A Sketch of Thomas Jefferson," n.d.
+                        Some Observations on a Graduate School of
+                           Public Administration," 1936
+                        "Some Observations on the Nature of the
+                           Judicial Process of Supreme Court
+                           Litigation," for the American Philosophical
+                           Society, 22 Apr. 1954
+                        "Some Observations on Supreme Court
+                           Litigation and Legal Education," Ernest
+                           Freund lecture at University of Chicago Law
+                           School, Chicago, Ill., 11 Feb. 1953
+                        "Some Reflections on the Reading of
+                           Statutes," Benjamin Cardozo lecture before
+                           the New York City Bar Association, New
+                           York, N.Y., 18 Mar. 1947 (3 folders)
+                        Stafford Little Lectures, Princeton
+                           University, Princeton, N.J., 1934-35
+                        "Stanley Marvin Silverberg," _Memorial Book_
+                           of the New York City Bar Association, n.d.
+                        "The Supreme Court and a Balanced Budget,"
+                           _New Republic_, 27 Apr. 1932
+                        "Supreme Court and Interstate Commerce
+                           Commission," _New Republic_, 20 Jan. 1932
+                        "The Supreme Court in the Mirror of
+                              Justices," Owen J. Roberts lecture at
+                              the University of Pennsylvania Law
+                              School, Philadelphia, Pa., 20 Mar. 1957
+                           Correspondence, 1956-58 (2 folders)
+                           Drafts and related material
+                              (1 folder)
+
+Box 214     Reel 134-135      (2 folders)
+                        "The Supreme Court Under the Judiciary Act of
+                           1925," _Harvard Law Review_, Nov. 1928
+                        "Supreme Court, United States,"
+                           _Encyclopaedia of the Social Sciences_,
+                           Feb. 1934
+                        _Survey of Massachusetts Law_, foreword by
+                           Frankfurter, 1956
+                        Tax message prepared for Franklin D.
+                           Roosevelt, 1935
+                        "Thomas Reed Powell," _Harvard Law Review_
+                           (Mar. 1956), 1955-56
+                        Toscanini, Arturo, remarks at concert by
+                           Toscanini at Constitution Hall, Washington,
+                           D.C., 25 May 1950
+                        "Trans-Atlantic Misconceptions," British
+                           Broadcasting Corp. broadcast, 12 Feb. 1934,
+                           1isteners' letters
+                        "Tribute to a Great Judge: Learned Hand,"
+                           _New York State Bar Journal_, Dec. 1961
+                        Tribute to Louis Dembitz Brandeis, 1956,
+                           1etter to American Jewish Congress dinner,
+                           published in _Congress Weekly_, 23 Apr.
+                           1956
+                        Unidentified manuscript by Frankfurter, n.d.
+                        "The Use of the Injunction in American Labor
+                           Controversies," _Law Quarterly Review_,
+                           July 1928
+                        "The Utilities Bureau," _Annals_ of the
+                           American Academy of Political and Social
+                           Science, Jan. 1915
+                        Valentine, Robert G., memorial meeting,
+                           remarks, Faneuil Hall, Boston, Mass.,
+                           7 Jan. 1917
+                        "Valentine, Robert Grosvenor," _Dictionary of
+                           American Biography_, 1936
+                        "The Venom of Appeasement," n.d.
+                        Voice of America broadcast, Washington, D.C.,
+                           25 Oct. 1951
+                        "War in the Clothing Industry," New Republic,
+                           15 Dec. 1920
+                        "The 'War Record' of Stimson," _Boston
+                           Evening Transcript_, Mar. [?] 1913
+                        "What the Schechter Case Does and Does Not
+                           Decide With Respect to Congressional Power
+                           Over Commerce," 1935
+                        "What We Confront in American Life," address
+                           at twentieth annual meeting of Survey
+                           Associates, New York, N.Y., [ca. 1 Feb.]
+                           1933
+                        "When Judge Cardozo Writes," review in _New
+                           Republic_, 8 Apr. 1931, of _Law and
+                           Literature, and Other Essays and Addresses_
+                           by B. N. Cardozo
+                        "Woodrow Wilson," (London) _Times_, 1956-57
+                           (2 folders)
+                        Writings of Frankfurter
+                           Miscellaneous typescripts, 1911-62
+                           Unidentified, n.d.
+
+Box 215     Reel 135-136   Clippings, 1918-27, 1955
+                        "Wrong and Dangerous," letter to _New York
+                           Herald Tribune_, 30 Nov. 1934
+                        "The Young Men Go to Washington," _Fortune_,
+                           Jan. 1936
+                        "The Zeitgeist and the Judiciary," _Survey_,
+                           1913
+                     Writings of others
+                        Bickel, Alexander M., "Supreme Court Law
+                           Clerks"
+                        Croly, Herbert David, _The Breach in
+                           Civilization_, 1920 (6 folders)
+                        Edgeworth, Patricia, _Mr. Justice Frankfurter
+                           and the Administration of Criminal
+                           Justice_, a master's thesis, University of
+                           Chicago, Chicago, Ill., 1955
+
+Box 216     Reel 136    Hughes, Charles Evans, memoirs, n.d.
+                        Hurst, Willard, "Notes on the History of the
+                           'Commerce Clause,'" n.d.
+                        Kanin, Garson, "Trips to Felix," _Atlantic
+                           Monthly_, 1964
+                        Mendelson, Margery, "FF and His Impact on the
+                           Ladies, or Love Is a Cheesecake," 1964
+                        O'Meara, Joseph, Jr., "The Supreme Court -
+                           and Democracy," _Commonweal_, 1937
+                        Portus, G. V., "Studies in the Australian
+                           Constitution," 1922-23
+                        Pound, Roscoe, "Some Reflections of Svenka
+                           Oncle," n.d.  _See also Container 217_
+                        Stimson, Henry Lewis, speeches and articles,
+                           1911-47
+                        Unidentified authors, 1957, 1963, n.d.
+                        Valentine, Robert G., speeches and articles,
+                           1911-12, n.d.
+                     Wiener, Frederick Bernays, "The Myth of Prior
+                        Judicial Service," n.d.
+
+Box 217     Reel 137 Pound, Roscoe, writings, 1907-26  _See also
+                        Container 216_
+
+
+LEGAL FILE, 1924-1963, n.d.
+
+Box 218     Reel 138 Memoranda, 1924-42 (3 folders)
+                     _Scheiderman v. United States_, 1942
+                     Memoranda, 1943-46 (2 folders)
+                     _United States v. United Mine Workers_, 1946-47
+                     Memoranda, 1946-47
+                     _Harris v. United States_, 1947
+                     _United States v. Westinghouse Electric and
+                        Manufacturing Co._, 1949
+                     Memoranda, 1946-50
+                     _United States v. Rabinowitz_, 1950
+                     Memoranda, 1950
+                     _Sacher v. United States_, 1950-53
+                     _Adler v. Board of Education of New York City_,
+                        1949-52
+
+Box 219 Reel 138-39  Memoranda, 1951-53
+                     _Youngstown Co. v. Sawyer_, 1952
+                     Memoranda, 1954
+                        Herold, M. G., Jr.
+                        Net worth cases
+                     Memoranda, 1954-55
+                        General
+                        Segregation decrees (3 folders)
+                        Delaware school segregation
+
+Box 220     Reel 139 _Nelson v. United States_, 1956
+                     _Watkins v. United States_, 1957
+                     _Vanderbilt v. Vanderbilt_, 1957
+                     _Green v. United States_, 1957
+                     Memoranda, 1956-58
+                     _Cooper v. Aaron_, 1958
+                     _Knapp v. Schweitzer_, 1958
+                     _Dayton v. Dulles_, 1958
+                        _Kovacs v. Brewer_, 1958
+                        Memoranda, 1957-58
+                        General
+                        Printed opinions
+                     _Kingsley International Pictures Corp. v.
+                        Regents of the University of the State of New
+                        York_, 1954-59
+                     Memoranda, 1959
+                        _Arizona v. California_, 1962
+
+Box 221     Reel 140 _Garner v. Louisiana_, 1962 (2 folders)
+                     _Baker v. Carr_, 1961-63
+                        Memoranda, 1962-63 (2 folders)
+                        Drafts, 1961 (2 folders)
+                        Photocopies (2 folders)
+                        Footnotes (3 folders)
+                        Printed matter
+
+Box 222     Reel 141 _Fay v. United States ex rel. Noia_, 1962
+                     _NAACP v. Gray_, 1962
+                     _Williams v. Georgia_, n.d.
+                     Memoranda, 1962, n.d. (12 folders)
+
+Box 223 Reel 141-42  Clippings
+                     Printed matter (3 folders)
+                     Opinions of Frankfurter
+                        Listing by term, 1938-52, n.d. (2 folders)
+                        Printed copies
+
+
+MISCELLANY, 1861-1966
+
+Box 224     Reel 142 Awards and memberships, 1925-52
+                     Bibliographies and lists (2 folders)
+                     Biographical material, 1941-64 (2 folders)
+                     Conversations between Louis Dembitz Brandeis and
+                        Frankfurter
+                     Copies of legal examinations (2 folders)
+                     Copies of quotations and letters
+                     Financial papers
+                        1926-29 (3 folders)
+
+Box 225     Reel 143    1930-65 (2 folders)
+                     Holmes, Oliver Wendell (1841-1935)
+                        Addresses and excerpts, 1883-1931
+                        Correspondence with Mrs. Glendower Evans,
+                           1932
+                        Correspondence with Mrs. Green, 1901-19
+                        Miscellaneous correspondence, 1861-1931
+                     Law clerks for Frankfurter, 1938-62
+                     Letters concerning Frankfurter and/or his
+                        opinions, 1947-61
+                     Memoranda
+                        1911-29
+
+Box 226     Reel 143-44 1930-60 (9 folders)
+                     Newspaper clippings
+                        1881-1966
+
+Box 227-33  Reel 144-47 1939-65 (34 folders)
+
+Box 234     Reel 148    1924-62 (2 folders)
+                     Notes and research material (4 folders)
+                     Personal papers (2 folders)
+
+Box 235  Reel 148-49 Photographs
+                     Printed matter
+                        General
+                           (3 folders)
+
+Box 236-38  Reel 150-152   (7 folders)
+
+Box 239     Reel 152    1913-19 (6 folders)
+
+Box 240     Reel 153    1916-39 (6 folders)
+
+Box 241     Reel 154    1940-58 (3 folders)
+
+Box 242     Reel 154-55 1960-65 (3 folders)
+                     Roosevelt, Franklin D. and Eleanor Roosevelt,
+                           Frankfurter correspondence
+                        Typed copies
+                           1912-34 (5 folders)
+
+Box 243     Reel 155       1935-41 (8 folders)
+
+Box 244     Reel 156       1942-66 (7 folders)
+
+Box 245     Reel 156-57 Copies
+                        Notes
+                        Miscellaneous
+
+Box 246     Reel 157 Sacco-Vanzetti case
+                        Newspaper clippings
+                           1927
+                              May-July (2 folders)
+
+Box 247     Reel 157          Aug.
+                                 (3 folders)
+
+Box 248     Reel 158             (2 folders)
+
+Box 249     Reel 158             Sept.-Dec.
+                           1928 (2 folders)
+
+Box 250     Reel 158       1928-29
+
+Box 251     Reel 159-61 Transcripts of trial, vols. 2-5
+
+Box 252     Reel 162    Supplemental volume, Bridgewater case
+                        Comparison of the report of the Lowell
+                           Commission against court records
+                     Typed copies of excerpts from writings of
+                        Lincoln and Jefferson
+                     Typescript of private diary of Oliver Wendell
+                        Holmes (1841-1935), 1864
+
+Box 253     Reel 162 Scrapbooks
+
+
+WILLIAM HENRY MOODY PAPERS, 1906-1916
+
+Box 254     Reel 163 "A" miscellaneous, 1906-09
+                     Abbott, Ira A., 1907-09 (4 folders)
+                     "B" miscellaneous, 1907-09
+                     Bradley, Robert S., 1907-09
+                     "C" miscellaneous, 1907-09
+                     Carlton, Otis J., 1908-09
+                     Cromwell, Oliver, 1907-09 (3 folders)
+                     "D" miscellaneous, 1906-08
+                     Day, William A., 1906-07
+                     "E-L" miscellaneous, 1906-09 (7 folders)
+
+Box 255     Reel 163 "M" miscellaneous, 1906-09 (3 folders)
+                     Mahan, A. T., 1909
+                     "N-P" miscellaneous, 1906-09 (4 folders)
+                     "R" miscellaneous, 1906-09 (2 folders)
+                     Roosevelt, Theodore, 1907-09 (2 folders)
+                     "S-W" miscellaneous, 1906-16 (7 folders)
+
+
+ADDENDA, 1898-1965, n.d.
+
+Box 256 Reel 163-64  Addition (1983), 1898-1965, n.d.
+                        Family correspondence, 1926-40, n.d.
+                           (6 folders)
+
+Box 257     Reel 164-65 General correspondence
+                           Christie, Loring, 1898-1965
+                           Einstein, Albert, 1921-49
+                           Friedenberg, Albert M., 1939
+                           Roosevelt, Eleanor, 1936-62
+                           Roosevelt, Franklin D., 1931-42
+                              (11 folders)
+                           Watson, Edwin M., 1939-46
+                        Subject file
+                           "Chum Felix Frankfurter," memoir by Frank
+                              W. Buxton
+                           Roosevelt, Franklin D.
+                           Harvard University, Cambridge, Mass.,
+                              tercentenary, 1936
+                           1936 presidential campaign and
+                              miscellaneous items (2 folders)
+
+Box 258     Reel 165    Financial papers
+                           Bills, receipts, and income tax statements,
+                              1933-40
+                        Miscellany
+                           Miscellaneous items and notes
+                           Clippings, 1931-40
+                           Printed matter
+
+Box 259     not      Addition (1997), 1927-1951, n.d.
+            filmed      General correspondence
+                           Huxley, Julian, photocopies, 1935-42
+                           MacLeish, Archibald, regarding memorial to
+                              Franklin D. Roosevelt, 1941
+                        Speech, article, and book file
+                           _The Case of Sacco and Vanzetti: A Critical
+                              Analysis for Lawyers and Laymen_ (1927),
+                              volume with notations and related
+                              material, 1927-51, n.d.
+
+
+                                   Appendix
+
+
+
+                 Missing Items NOT Represented by Photocopies
+
+_FF-Hugo Black correspondence_:
+
+31 Oct. 1939            18 May 1950
+18 Dec. 1941            4 Nov. 1950
+2 Jan. 1942             5 Mar. 1952
+26 May 1942             24 Oct. 1952
+3 Dec. 1942             19 Feb. 1953
+4 Nov. 1943             12 Jan. 1954
+13 Nov. 1943            7 May 1954
+26 Dec. 1944            15 Dec. 1964
+11 June 1947            3 memoranda (Oct. 1940; 25 Jan. 1961; n.d.
+31 Dec. 1948
+
+_FF-Harold Burton correspondence_:
+
+1963-64
+
+_FF-John M. Harlan correspondence_:
+
+19 May 1961
+
+_FF-Willard Hurst correspondence_:
+
+1957-60; 1963-64
+
+_Frankfurter diaries_:
+
+1927-31; 1937; 1956
+(Earlier diaries are typewritten on note paper for 3-ring binder,
+ca. 5" x 8")
+
+_Memoranda_:
+
+On due process, 1953-54
+_Peters v. Hobby_, 1955
+
+_Miscellaneous_:
+
+Material relating to
+            Securities Act, 1933
+            Frankfurter biography (Max Freedman)
+            Papers of Supreme Court justices
+Holmes-Laski letters, 1935-39
+
+
+*** Last updated 03/30/98 (mal) ***
+
+            
+
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + +
  Top of Page Top + of Page
  Home >> Finding + Aids +
+ + + + + + + + +
+ + + + + + +
+
+ + + + + +
  The + Library of Congress >> Especially + for Researchers >> Research + Centers
+   + February 12, 2007 +
Contact + Us:  
+ Ask + a Librarian  
+
+ +
+ + + diff --git a/office/regression/000_000449.html b/office/regression/000_000449.html new file mode 100644 index 0000000..7a3bed4 --- /dev/null +++ b/office/regression/000_000449.html @@ -0,0 +1,493 @@ + + + + + + + +Genomics at FDA: Presentations + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ FDA Logo links to FDA home page
Center for Drug Evaluation and Research, U.S. Food and Drug Administration + + U.S. Food and Drug Administration + Center for Drug Evaluation and Research + +
  HHS Logo links to Department of Health and Human Services website
+ + + + + +

FDA + Home Page | CDER Home + Page | CDER Site + Info | Contact CDER | What's New @ CDER

+ horizonal rule
+ + + + + + + + +
+ + + + + +
+ + + + + + + + + + + +
CDER Home + About CDERDrug InformationRegulatory GuidanceCDER CalendarSpecific AudiencesCDER Archives
+ + + + + + + + + + +
 
+ + + + + + + + +
+
+ + + + + + + + + + + Powered by Google + +
+
+
+ + + + + + + + + +
 
 
+
+
+ + + + + + + + +

Genomics at FDA
+ Presentations

+

2008

+

"Warfarin Pharmacogenetic Testing is now ready for Prime Time", invited presentation at the "Warfarin Pharmacogenetics Debate" PDF Huang, Shiew-Mei, Ph.D., AACC Annual Meeting, Washington D.C. July 28, 2008

+

Pharmacogenomic Research Meets Clinical Practice: Examples of incorporating pharmacogenomic principles into clinical practice PDF Burckart, J Gilbert, Pharm.D., American College of Clinical Pharmacy Meeting, Phoenix, A.Z. April 2008

+

Personalized Medicine: Regulatory Perspective PDF Lawrence J. Lesko, Ph.D., FCP, + Washington, D.C. January 8, 2008

+

2007

+

Warfarin Pharmacogenomics: Translation Into Clinical Practice, PDF Lawence J. Lesko Ph.D., FCP, Silver Spring, MD, October 17, 2007

+

Challenges for Co-Development of New Medical Products: A regulatory perspective, PDF Felix W. Frueh, Ph.D., CDER, Bethesda, October 19, 2007

+

Personalized Medicine - Quo Vadis? PDF Felix W. Frueh, Ph.D., CDER, Cambridge, MA, October 11, 2007

+

Principles of Risk-Based Regulatory Decision Making, PDF Lawence J. Lesko Ph.D., FCP, Pittsburgh, PA, October 23, 2007

+

New Paradigms for Drug Development: A Regulatory Perspective, PDF Felix W. Frueh, Ph.D., CDER, Baltimore, MD, July 31, 2007
+

+

The Future of Technology and Regulation: Opportunities in Drug Development, Regulatory Review and Clinical Practice, Shiew-Mei Huang, Ph.D., 10th Annual FDA - Orange County Regulatory Affairs Educational Conference, Irvine, CA, June 11, 2007

+

Regulatory Perspecive on Warfarin: Relabeling with Genetic Information, Lawrence J. Lesko, Ph.D., FCP, CDER, Ninth Annual Conference of Anticoagulation Therapy, May, 2007

+

The Transition from Pre-Clinical to Clinical Application of Safety Related Related Genomics, Felix W. Frueh, Ph.D., CDER, IOM/FDA Emerging Safety Science Workshop, April 23, 2007

+

Update on the Critical Path and Personalized Medicine Initiative Implementation, Felix W. Frueh, Ph.D., CDER, R&D Leaders Forum Spring 2007, March 5, 2007

+

Clarifying the Current Regulatory Position on the Validation and Standardization of Biomarkers for Approval and Ongoing Patient Care, Felix W. Frueh, Ph.D., CDER, R&D Leaders Forum Spring 2007, March 5, 2007

+

2006

+

Pharmacogenetics –Pharmacogenomics in Early Drug Development: Regulatory Expectations, Shiew-Mei Huang, Ph.D., AAPS Annual Meeting, November 2, 2006

+

The VGDS Process at the US FDA: Lessons Learned and Future Directions, Michael S. Orr, Ph.D., DABT, CDER, American College of Toxicology 27th Annual Meeting, November 6, 2006

+

Celebrating the Two-Year Milestone and Planning for the Future of Voluntary Genomic Data Submissions (VGDS) to the FDA, Federico Goodsaid, Ph.D., and Felix Frueh, Ph.D., CDER, DIA Webinar, September 28, 2006

+

Challenges in Biomarker and Drug + Co-Development and Regulation: The regulatory + view for drugs, Felix W. Frueh, Ph.D., CDER, AACC 2006 Annual Meeting, Chicago, IL, July + 24, 2006

+

Personalized Medicine Today!, Felix W. Frueh, Ph.D., CDER, Clinical Ligand Assay Society, Louisville, KY, + May 22, 2006

+

Can Pharmacogenomics Help in Psychiatric + Drug Development?
+ Shiew-Mei Huang, Ph.D., CDER
+ NCDEU 46th Annual Meeting, Boca Raton, + Florida, June 15, 2006

+

Pharmacogenomics: Patient Selection for + Clinical Trial Participation and Enrichment + Strategies
+ Felix W. Frueh, Ph.D., CDER
+ Accelerating Anticancer Agent Development and + Validation Workshop, May 17, 2006

+

Co-Development of Drug and Test Is It + a Special Challenge with PGx?
+ Felix W. Frueh, Ph.D., CDER
+ Annual DIA EuroMeeting, March 8, 2006

+

Qualification of Genomic Biomarkers for + Regulatory Decision Making
+ Felix W. Frueh, Ph.D., CDER
+ Annual DIA EuroMeeting, March 7, 2006

+

Voluntary Genomic Data Submissions: + Review and Analysis of Toxicogenomic Data in + Preclinical Drug Safety Assessment
+
Felix W. Frueh, Ph.D., CDER
+ Pharmacogenomics Grand Rounds, January 31, + 2006

+

2005

+

Creating a Network to Study the Effect + of Genomics on Clinical Outcomes: The View + from FDA
+ Felix W. Frueh, Ph.D., CDER
+ Group Health Cooperative CDC Meeting, + December 14-15, 2005

+

Voluntary Genomic Data Submissions at the + U.S. FDA
+ Felix + W. Frueh, Ph.D., CDER
+ International Conference on Harmonization, + November 9-10, 2005
+
+ Presentations from + FDA, DIA, PhRMA, BIO, & PWG Workshop on  Applications and Validation of Genomic + Biomarkers for Use in Drug Development and + Regulatory Decision Making Bethesda, MD, + October 6 7, 2005.  Download zip file of all presentations (6.71 MB). Individual + presentations.

+

Voluntary Genomic Data Submissions: One + Year Later
+
Felix + W. Frueh, Ph.D., CDER
+ 41st Annual DIA Meeting

+

Pharmacogenomics and Biomarkers: Current + role in drug development
+ Felix + W. Frueh, Ph.D., CDER
+ Accelerating Anticancer Agent Development and + Validation, June 2, 2005
+
+ Personalized Medicine: What Is It? How + Will It Affect Health Care?
+ Felix + W. Frueh, Ph.D., CDER
+ 11th Annual FDA Science Forum, April, 2005

+

Translation of Pharmacogenomics and + Pharmacogenetics: A Regulatory Perspective
+ Lawrence J. Lesko, Ph.D., + FCP
+ 11th Annual FDA Science Forum, April, 2005

+

Pharmacogenomics, + Personalized Medicine and the Role of FDA
+ Lawrence J. Lesko, Ph.D., FCP
+ Bio-IT World Conference, May 18, 2005

+

[Rat Mixed Tissue RNA Reference Material (MTRRM) + for Microarrays]
+ Application of a Cross-Platform RNA + Standard for Assessing Microarray Data + Comparability
+ P. + Scott Pine, CDER
+ Karol + Thompson, Ph.D.
+ 11th Annual FDA Science Forum, April, 2005

+

Pharmacogenomics: Experience with Voluntary + Submissions and Regulatory Development
+ Felix W. Frueh, Ph.D., CDER
+ International Conference on Drug Development, February 15, 2005

+

Toxicogenomic + Data Submissions: Regulatory Considerations
+ Felix + W. Frueh, Ph.D., CDER
+ The Toxicology Forum: February 1, 2005

+

2004

+

Pharmacogenomic Data Submissions: Review of + Guidances and Goals
+ Felix W. Frueh, + Ph.D., CDER
+ Pharmacogenomics Working Group, December 14, + 2004

+

Education in Pharmacogenomics: Closing the Gap + between Possibility and Reality]
+ Felix W. Frueh, Ph.D., CDER
+ Drug + Metabolizing Enzymes and Pharmacogenomic + Testing Workshop September 13-14, 2004

+

Regulatory + Perspective on Integrating Pharmacogenomics + into Drug Development and Regulatory Decision + Making
+ Lawrence J. Lesko, Ph.D., F.C., CDER, May 18, + 2004

+

2003

+

Regulatory + Issues in Genotyping Metabolizing Enzymes-CDER + Perspective
+ Shiew-Mei Huang, Ph.D., CDER
+ FDA/Johns Hopkins University/PhRMA Educational + Workshop, September 13-14, 2003, Rockville, MD

+

Effect of + Pharmacogenetics and Drug-Drug Interactions on + Exposure-Response: What Needs to be Done?
+ Shiew-Mei + Huang, Ph.D. CDER
+ American College of Clinical Pharmacology + Exposure-Response (E-R) Relationships, + September 21, 2003, Tampa, FL,

+

2002

+

2002 Workshop + on Pharamacogenetics/Pharmacogenomics in Drug + Development and Regulatory Decision-Making
+ Lawrence J. Lesko, Ph.D., CDER
+ May 16-17, 2002, University of Maryland

+

PDF requires the free Adobe Acrobat Reader

+

Back + to Top       Back to Genomics

+

Date created: March 22, 2005, updated August 8, 2008

+ + + + + + + + + + + + + + + + + + + + + +
horizonal rule
+
+
+ + diff --git a/office/regression/000_000450.html b/office/regression/000_000450.html new file mode 100644 index 0000000..cab29bd --- /dev/null +++ b/office/regression/000_000450.html @@ -0,0 +1,158 @@ + + + + + + + + +Page not found + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

We're sorry. That page can't be found and may have moved.

+
+


+Here are some suggestions for finding information on the U.S. Department of State website. +

+

+

+ If you still cannot find something, Contact Us. +

+ Thanks for your interest! +

+ + +

+ + \ No newline at end of file diff --git a/scripts/corpus-patterns.txt b/scripts/corpus-patterns.txt index efe679d..bda4476 100644 --- a/scripts/corpus-patterns.txt +++ b/scripts/corpus-patterns.txt @@ -62,3 +62,9 @@ *.7z *.dbf ground_truth/structured/parsebench/*.jsonl + +# The regression corpus's PubMed Central slice: 712 full-text JATS files, 314 MB. Text is normally +# committed, and this is the one exception: at that size it would quadruple every clone. The +# binaries in the regression corpus need no entry here, since the extension patterns above already +# cover them. Path-scoped, so an ordinary .nxml elsewhere in the tree is unaffected. +jats/regression/ diff --git a/scripts/fetch_regression.py b/scripts/fetch_regression.py new file mode 100644 index 0000000..0000588 --- /dev/null +++ b/scripts/fetch_regression.py @@ -0,0 +1,146 @@ +#!/usr/bin/env python3 +"""Fetch the regression corpus from its original sources. + +The regression corpus is bulk material: a change that alters output anywhere it +should not is what this corpus exists to catch. Its bytes live in the bucket +rather than in git, so this script obtains them and writes each one to the path +it belongs at. Publish them the usual way afterwards: + + python3 scripts/fetch_regression.py + python3 scripts/publish_corpus.py --bucket xberg-test-documents + +Only the vendored documents appear in `scripts/regression-objects.json`. Anything +listed as reference in `REGRESSION_PROVENANCE.md` is deliberately absent: those +carry ShareAlike, NonCommercial, or publisher-only redistribution terms, so the +corpus records where they came from and never hosts them. + +govdocs1 publishes shards rather than individual files, so those entries name +the shard and the member inside it. A shard is downloaded once and every member +taken from it before it is discarded. +""" + +from __future__ import annotations + +import argparse +import collections +import concurrent.futures +import hashlib +import io +import json +import sys +import urllib.request +import zipfile +from pathlib import Path + +REPO_ROOT = Path(__file__).resolve().parent.parent +MANIFEST = Path(__file__).resolve().parent / "regression-objects.json" +TIMEOUT = 300 +RETRIES = 3 + + +def download(url: str) -> bytes: + last = "" + for attempt in range(1, RETRIES + 1): + try: + request = urllib.request.Request(url, headers={"User-Agent": "xberg-test-documents"}) + with urllib.request.urlopen(request, timeout=TIMEOUT) as response: + return response.read() + except Exception as error: # noqa: BLE001 - retry any transport failure + last = f"{type(error).__name__}: {error}" + raise RuntimeError(last) + + +def write_checked(path: str, payload: bytes, expected: str) -> str: + target = REPO_ROOT / path + target.parent.mkdir(parents=True, exist_ok=True) + digest = hashlib.sha256(payload).hexdigest() + if digest != expected: + target.with_suffix(target.suffix + ".mismatch").write_bytes(payload) + return f"mismatch got {digest[:12]} want {expected[:12]}" + target.write_bytes(payload) + return "ok" + + +def up_to_date(path: str, expected: str) -> bool: + target = REPO_ROOT / path + return target.exists() and hashlib.sha256(target.read_bytes()).hexdigest() == expected + + +def fetch_direct(path: str, entry: dict, force: bool) -> tuple[str, str]: + if not force and up_to_date(path, entry["sha256"]): + return path, "skipped" + try: + return path, write_checked(path, download(entry["url"]), entry["sha256"]) + except Exception as error: # noqa: BLE001 - report rather than abort the run + return path, f"error {error}" + + +def fetch_shard(url: str, members: list[tuple[str, dict]], force: bool) -> list[tuple[str, str]]: + """Download one archive and take every member wanted from it.""" + wanted = [(p, e) for p, e in members if force or not up_to_date(p, e["sha256"])] + if not wanted: + return [(p, "skipped") for p, _ in members] + try: + blob = download(url) + except Exception as error: # noqa: BLE001 + return [(p, f"error {error}") for p, _ in wanted] + + results: list[tuple[str, str]] = [] + with zipfile.ZipFile(io.BytesIO(blob)) as archive: + by_basename = {Path(n).name: n for n in archive.namelist()} + for path, entry in wanted: + name = by_basename.get(entry["member"]) + if name is None: + results.append((path, f"error member {entry['member']} not in shard")) + continue + results.append((path, write_checked(path, archive.read(name), entry["sha256"]))) + return results + + +def main() -> int: + parser = argparse.ArgumentParser(description=__doc__, formatter_class=argparse.RawDescriptionHelpFormatter) + parser.add_argument("--jobs", type=int, default=6, help="parallel downloads (default 6)") + parser.add_argument("--force", action="store_true", help="re-download files that already match") + parser.add_argument("--include", default="", help="only paths starting with this prefix") + args = parser.parse_args() + + manifest = json.loads(MANIFEST.read_text()) + if args.include: + manifest = {k: v for k, v in manifest.items() if k.startswith(args.include)} + if not manifest: + print(f"nothing matches --include {args.include}", file=sys.stderr) + return 1 + + shards: dict[str, list[tuple[str, dict]]] = collections.defaultdict(list) + direct: list[tuple[str, dict]] = [] + for path, entry in sorted(manifest.items()): + (shards[entry["url"]].append((path, entry)) if "member" in entry else direct.append((path, entry))) + + counts: collections.Counter = collections.Counter() + problems: list[str] = [] + + def record(path: str, status: str) -> None: + counts[status.split()[0]] += 1 + if status.split()[0] in {"error", "mismatch"}: + problems.append(f" {path}: {status}") + + with concurrent.futures.ThreadPoolExecutor(max_workers=args.jobs) as pool: + futures = [pool.submit(fetch_direct, p, e, args.force) for p, e in direct] + futures += [pool.submit(fetch_shard, url, members, args.force) for url, members in shards.items()] + for future in concurrent.futures.as_completed(futures): + outcome = future.result() + for path, status in outcome if isinstance(outcome, list) else [outcome]: + record(path, status) + + print(f"{len(manifest)} objects: " + ", ".join(f"{n} {k}" for k, n in sorted(counts.items()))) + if problems: + print("\nNeeds attention:", file=sys.stderr) + print("\n".join(problems[:40]), file=sys.stderr) + if len(problems) > 40: + print(f" ... and {len(problems) - 40} more", file=sys.stderr) + return 1 + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/scripts/regression-objects.json b/scripts/regression-objects.json new file mode 100644 index 0000000..3a8900e --- /dev/null +++ b/scripts/regression-objects.json @@ -0,0 +1,8684 @@ +{ + "epub/regression/pg1000.epub": { + "sha256": "feade6a9f71f1760b84f21c99f9c38cb1a5df17bb24d2eedf9de43387a115f85", + "size": 419765, + "url": "https://www.gutenberg.org/ebooks/1000.epub3.images" + }, + "epub/regression/pg1001.epub": { + "sha256": "852fd7107038c1a0068043af925f26a3d7194c748b4c52a8cd6eea00c2e76599", + "size": 206564, + "url": "https://www.gutenberg.org/ebooks/1001.epub3.images" + }, + "epub/regression/pg1002.epub": { + "sha256": "5001ba92cb986a4c83ee5b0cf7f0064900e9ee214ea7d946bc3cdd920a8c65d3", + "size": 204323, + "url": "https://www.gutenberg.org/ebooks/1002.epub3.images" + }, + "epub/regression/pg1003.epub": { + "sha256": "0fb2da2534b4c11f6f1eb95819a75a97749b57a728cf73589c0b036aa8f49d9d", + "size": 207210, + "url": "https://www.gutenberg.org/ebooks/1003.epub3.images" + }, + "epub/regression/pg1004.epub": { + "sha256": "6738388fdf3b93aadd5d85d3fd31f9945ac0e36dc58aaea9063cae4efdcf63e5", + "size": 596888, + "url": "https://www.gutenberg.org/ebooks/1004.epub3.images" + }, + "epub/regression/pg1005.epub": { + "sha256": "dac3b2e8b9799c114f00218f0118074c5d322b1c1b52f22122b2e35eb287e5f4", + "size": 195804, + "url": "https://www.gutenberg.org/ebooks/1005.epub3.images" + }, + "epub/regression/pg1006.epub": { + "sha256": "c52d7d8e88fb83ed123f48d4db338d3e898a8559fcdc26c92ca1ba4f9ca07160", + "size": 198007, + "url": "https://www.gutenberg.org/ebooks/1006.epub3.images" + }, + "epub/regression/pg1007.epub": { + "sha256": "10df5d24d5b91c369f0d29b177c710570ba46a7a3e0fedbc3a158f452c5159c1", + "size": 201830, + "url": "https://www.gutenberg.org/ebooks/1007.epub3.images" + }, + "epub/regression/pg1008.epub": { + "sha256": "3819e8bc70c285b2662e9df30ea4aba467bc9afc88c0d8168f73fb614a0de6b5", + "size": 569888, + "url": "https://www.gutenberg.org/ebooks/1008.epub3.images" + }, + "epub/regression/pg1009.epub": { + "sha256": "e6a87a105bfba88bf77767700052363760155310044956bd17b1c6a71ac21ca9", + "size": 179503, + "url": "https://www.gutenberg.org/ebooks/1009.epub3.images" + }, + "epub/regression/pg1010.epub": { + "sha256": "123d8e2a8c8cb0decd4f3ffbda100f39fe6269f6482d61c3c0aeac9e9b06f00b", + "size": 159282, + "url": "https://www.gutenberg.org/ebooks/1010.epub3.images" + }, + "epub/regression/pg1011.epub": { + "sha256": "fc215771e7069d17c579d56115375e92c8b152504a2832c17dbdb04e5156b2ad", + "size": 147600, + "url": "https://www.gutenberg.org/ebooks/1011.epub3.images" + }, + "epub/regression/pg1012.epub": { + "sha256": "a02191eb4c2fefdfd655631cad9df32bbf8fe7b59915efed1da7a7693143fb34", + "size": 332447, + "url": "https://www.gutenberg.org/ebooks/1012.epub3.images" + }, + "epub/regression/pg1013.epub": { + "sha256": "8e2ac5127210b5bfc52614c0f16281ab4758fe29d8b5bf57bd24e95ab9a12481", + "size": 261691, + "url": "https://www.gutenberg.org/ebooks/1013.epub3.images" + }, + "epub/regression/pg1014.epub": { + "sha256": "23b08e08bd5d3309d706bc2cc3303b33d987e721e332ea160b31d868e7ae221a", + "size": 142246, + "url": "https://www.gutenberg.org/ebooks/1014.epub3.images" + }, + "epub/regression/pg1015.epub": { + "sha256": "44d06e2b0d791d90069ccf226ce21861e84f49e6da2b9b3f5d054e18f2ef8733", + "size": 380771, + "url": "https://www.gutenberg.org/ebooks/1015.epub3.images" + }, + "epub/regression/pg1016.epub": { + "sha256": "bf4cf982a8c9ac59de285a894a02eb880830588835b12810c8210ef4ab9f209a", + "size": 107598, + "url": "https://www.gutenberg.org/ebooks/1016.epub3.images" + }, + "epub/regression/pg1017.epub": { + "sha256": "b03c943f89c381e39590531f965084376e7d91126c47322d445912a30332f7c9", + "size": 83492, + "url": "https://www.gutenberg.org/ebooks/1017.epub3.images" + }, + "epub/regression/pg1018.epub": { + "sha256": "ec50ccd8d34386a22f52a3d718dbe18bfa798e86bc6854085ccd5f4c92bb7cdb", + "size": 231462, + "url": "https://www.gutenberg.org/ebooks/1018.epub3.images" + }, + "epub/regression/pg1019.epub": { + "sha256": "f855b2805c695fb6d7064d0d95c3547d90847d950c089d088b4d0a79d692abb9", + "size": 160456, + "url": "https://www.gutenberg.org/ebooks/1019.epub3.images" + }, + "epub/regression/pg1020.epub": { + "sha256": "415eb14786dabcaf1a8c4125ec70760955fe585e6b780c28ceae8076174a8234", + "size": 144063, + "url": "https://www.gutenberg.org/ebooks/1020.epub3.images" + }, + "epub/regression/pg1021.epub": { + "sha256": "724704346022ecaa7784b67d9f7378eca4cef197fcfb820bed467cd02e4bda58", + "size": 129043, + "url": "https://www.gutenberg.org/ebooks/1021.epub3.images" + }, + "epub/regression/pg1022.epub": { + "sha256": "12270452e6116e58d05361ed7ac3c8679590915e8cf3329eef9ebf0a8c5c81ab", + "size": 103549, + "url": "https://www.gutenberg.org/ebooks/1022.epub3.images" + }, + "epub/regression/pg1023.epub": { + "sha256": "065d159aabdf573cbe075bb1d5271125dd602b648d8d9e39ee9ce3e2bc2c71ad", + "size": 1002236, + "url": "https://www.gutenberg.org/ebooks/1023.epub3.images" + }, + "epub/regression/pg1024.epub": { + "sha256": "c8fb96868ea5c09efa406ef0f3d373a817f5c9bb0d797b4afbfa27e3f1484982", + "size": 424157, + "url": "https://www.gutenberg.org/ebooks/1024.epub3.images" + }, + "epub/regression/pg1025.epub": { + "sha256": "40cbd50845d23c130072665adb2691dbf5d82f3fb02b328aaafa200d4fac0d4c", + "size": 320007, + "url": "https://www.gutenberg.org/ebooks/1025.epub3.images" + }, + "epub/regression/pg1026.epub": { + "sha256": "71988624edb2bfb31fba9328b62d1d7ef568fb013ff8943c4ac5d2eb13bc82f4", + "size": 171094, + "url": "https://www.gutenberg.org/ebooks/1026.epub3.images" + }, + "epub/regression/pg1027.epub": { + "sha256": "e47e2425b5b28bbf065ff1d48f30df698fdfa79294c44006cd126fa569d7f40c", + "size": 302850, + "url": "https://www.gutenberg.org/ebooks/1027.epub3.images" + }, + "epub/regression/pg1028.epub": { + "sha256": "0c1663e7729d121d95e14289e266b2e695e028f72371ef2046890d196a902a14", + "size": 317263, + "url": "https://www.gutenberg.org/ebooks/1028.epub3.images" + }, + "epub/regression/pg1029.epub": { + "sha256": "884ef7fe4dc4ec7a98701c546d6b92da43d9d0d3ba76e066e912a8100cbc8a85", + "size": 189705, + "url": "https://www.gutenberg.org/ebooks/1029.epub3.images" + }, + "epub/regression/pg1030.epub": { + "sha256": "f47b777588cb4263eef2d9d668d18fbfb544276ac9d58f52df98261974fd3108", + "size": 237424, + "url": "https://www.gutenberg.org/ebooks/1030.epub3.images" + }, + "epub/regression/pg1031.epub": { + "sha256": "302bd7a49bc5f3bd54d28cb6caac516348a083c1d53415091fd43fbaf9dbad59", + "size": 104104, + "url": "https://www.gutenberg.org/ebooks/1031.epub3.images" + }, + "epub/regression/pg1032.epub": { + "sha256": "2ea06c0b7fd48de7a184a23e330558a6eb268a2084a71e20f7770820e6649981", + "size": 103400, + "url": "https://www.gutenberg.org/ebooks/1032.epub3.images" + }, + "epub/regression/pg1033.epub": { + "sha256": "c6258a5f2be0d397d289bbe938255ac32a75c308d0eb0788274993348a90d4b6", + "size": 151540, + "url": "https://www.gutenberg.org/ebooks/1033.epub3.images" + }, + "epub/regression/pg1034.epub": { + "sha256": "63d7008a78d57ee2ab5583b6a7701dcd40cf70d08e100273148db819cbb5f6e0", + "size": 89036, + "url": "https://www.gutenberg.org/ebooks/1034.epub3.images" + }, + "epub/regression/pg1035.epub": { + "sha256": "31825da005f4fe79406db970f95f224d6e2172b09760b20706db92622efdeaae", + "size": 105279, + "url": "https://www.gutenberg.org/ebooks/1035.epub3.images" + }, + "epub/regression/pg1036.epub": { + "sha256": "d71207fd88d33bf2d0e39236cac16b83332c6b9ed15b13ded3c56f38d246f618", + "size": 262082, + "url": "https://www.gutenberg.org/ebooks/1036.epub3.images" + }, + "epub/regression/pg1037.epub": { + "sha256": "b7a7c8728e4c94e768d9209997469ca5138a81271631ea63a074f0ddb17221a9", + "size": 194169, + "url": "https://www.gutenberg.org/ebooks/1037.epub3.images" + }, + "epub/regression/pg1038.epub": { + "sha256": "75242815261d5b8809a8f83b4272769d0993823329444a91b1b920b9f915cd8e", + "size": 138432, + "url": "https://www.gutenberg.org/ebooks/1038.epub3.images" + }, + "epub/regression/pg1039.epub": { + "sha256": "d12798e09dc391d94dd3c68d1afd1067a17d8204859cf70880c3b046d997e1ab", + "size": 810046, + "url": "https://www.gutenberg.org/ebooks/1039.epub3.images" + }, + "epub/regression/pg1040.epub": { + "sha256": "692788ce404bc4994838ce489d482e83458080614524970d493c23ab74316185", + "size": 118317, + "url": "https://www.gutenberg.org/ebooks/1040.epub3.images" + }, + "epub/regression/pg1041.epub": { + "sha256": "32afbf8642bd57d8693dca2eba7af5aa5b6c385fe788ab4de6722caab3b83b52", + "size": 228628, + "url": "https://www.gutenberg.org/ebooks/1041.epub3.images" + }, + "epub/regression/pg1042.epub": { + "sha256": "504f757b73d41635e3ea92cf627f359dae100dc57fa529cd42424fe902bed15e", + "size": 110605, + "url": "https://www.gutenberg.org/ebooks/1042.epub3.images" + }, + "epub/regression/pg1043.epub": { + "sha256": "afba69c3ed8e6f98386666b9a6e820a1a2511f9eaa4617dab83c68ce72c7a831", + "size": 326132, + "url": "https://www.gutenberg.org/ebooks/1043.epub3.images" + }, + "epub/regression/pg1044.epub": { + "sha256": "8c90dbaf970c177e8def21f493f2a8f0d80338cc56c123fc2515c2704f1b9214", + "size": 70715, + "url": "https://www.gutenberg.org/ebooks/1044.epub3.images" + }, + "epub/regression/pg1045.epub": { + "sha256": "716b8d6f1201fb5896d2992512423273731871e1216c0804e4243065811280c3", + "size": 99210, + "url": "https://www.gutenberg.org/ebooks/1045.epub3.images" + }, + "epub/regression/pg1046.epub": { + "sha256": "c599c1dbd1be161df49055b59f3b0fc6766ab2fea83b79d25e394a95743a5ced", + "size": 174888, + "url": "https://www.gutenberg.org/ebooks/1046.epub3.images" + }, + "epub/regression/pg1047.epub": { + "sha256": "d7e470c1007e54c24341c9ea965f2fa97f7adf81ee48391d8bcdcdb756705814", + "size": 440945, + "url": "https://www.gutenberg.org/ebooks/1047.epub3.images" + }, + "epub/regression/pg1048.epub": { + "sha256": "8a09e02a4633ae6da7b4adb128f4b082022388c4cac322e007ca21e82200a889", + "size": 209412, + "url": "https://www.gutenberg.org/ebooks/1048.epub3.images" + }, + "epub/regression/pg1049.epub": { + "sha256": "095782ba9a7c2e1f1afe23403cdd8ac7bb11152e38a469c15deff646b77a4f5b", + "size": 244071, + "url": "https://www.gutenberg.org/ebooks/1049.epub3.images" + }, + "epub/regression/pg1050.epub": { + "sha256": "58fdae53311e65e469fa4406fa42c35fca2e781a132f269c65e752f20a905058", + "size": 103827, + "url": "https://www.gutenberg.org/ebooks/1050.epub3.images" + }, + "epub/regression/pg1051.epub": { + "sha256": "18feac8e8484391702381c4e73a8c744a7a59ab4e16cf7d963e1507f991aaeeb", + "size": 297819, + "url": "https://www.gutenberg.org/ebooks/1051.epub3.images" + }, + "epub/regression/pg1052.epub": { + "sha256": "46dd388902c6f6054c54c6c00d5e296b6abe04fc146c2e5b1216cfedee563780", + "size": 142399, + "url": "https://www.gutenberg.org/ebooks/1052.epub3.images" + }, + "epub/regression/pg1053.epub": { + "sha256": "3c6bb7f185ce539c603520cca7920268c8ebd3254fee628ba084653608e5e557", + "size": 211828, + "url": "https://www.gutenberg.org/ebooks/1053.epub3.images" + }, + "epub/regression/pg1054.epub": { + "sha256": "cb2d8eaa3514fda1b091117edee25d932fc3dfdaac8b5418d10de21dcc2fc571", + "size": 181575, + "url": "https://www.gutenberg.org/ebooks/1054.epub3.images" + }, + "epub/regression/pg1055.epub": { + "sha256": "d3ad45a0004d1b05bcfd9f142318b8fd8f64138d22a7e35da03a7e32cdb743f4", + "size": 203326, + "url": "https://www.gutenberg.org/ebooks/1055.epub3.images" + }, + "epub/regression/pg1056.epub": { + "sha256": "444ce381dcd5217adfa5ef28c27c5193f7a5ec4035a9ef2eb400a01f1346ef74", + "size": 448284, + "url": "https://www.gutenberg.org/ebooks/1056.epub3.images" + }, + "epub/regression/pg1057.epub": { + "sha256": "e6896adff62c93926f9711f186c8b3ce0875b53b2e75b3aac6d85b12d1cf29b2", + "size": 183085, + "url": "https://www.gutenberg.org/ebooks/1057.epub3.images" + }, + "epub/regression/pg1058.epub": { + "sha256": "aaf70eac8672f83d69c9c805c42d26762d824d11dc8c844351200778000478c4", + "size": 217904, + "url": "https://www.gutenberg.org/ebooks/1058.epub3.images" + }, + "epub/regression/pg1059.epub": { + "sha256": "288bd0eaeda90567f9fbd679a12cda65bfb74e113fdc1c4c708641ab52b7c35f", + "size": 230553, + "url": "https://www.gutenberg.org/ebooks/1059.epub3.images" + }, + "epub/regression/pg1060.epub": { + "sha256": "7627c26d23526e2b5dada56f7427bf40c65138b7c3eb28932a4f98745bd21d09", + "size": 118162, + "url": "https://www.gutenberg.org/ebooks/1060.epub3.images" + }, + "epub/regression/pg1061.epub": { + "sha256": "203bb508464332803de4c487cc94b3dca7bec9a75a688b0cb08c7b9af4e59669", + "size": 273822, + "url": "https://www.gutenberg.org/ebooks/1061.epub3.images" + }, + "epub/regression/pg1062.epub": { + "sha256": "0eac8f9e1cd0f60fe9194ffa24fd70b6d5af49645ff95d015b364c60a11e2bc6", + "size": 78976, + "url": "https://www.gutenberg.org/ebooks/1062.epub3.images" + }, + "epub/regression/pg1063.epub": { + "sha256": "f8d1de58ab86896db38c41cc2fc16c7c68b46d4aa42e70f437b0368dc0120b15", + "size": 71392, + "url": "https://www.gutenberg.org/ebooks/1063.epub3.images" + }, + "epub/regression/pg1064.epub": { + "sha256": "8d058a6dcc3ce570af46dc3707d98248c5d5b853b240ae75cfe14c2ef4dfa8ce", + "size": 82614, + "url": "https://www.gutenberg.org/ebooks/1064.epub3.images" + }, + "epub/regression/pg1065.epub": { + "sha256": "3eb215597750530d1c432e12c7cbdd4146693106e33ad5e4db271e11ffc945aa", + "size": 72997, + "url": "https://www.gutenberg.org/ebooks/1065.epub3.images" + }, + "epub/regression/pg1066.epub": { + "sha256": "00099119f77a5c0e44fca09db0436d4bb66ee8437f4155555800eda37d676c83", + "size": 202800, + "url": "https://www.gutenberg.org/ebooks/1066.epub3.images" + }, + "epub/regression/pg1067.epub": { + "sha256": "e0fe9c4bb794695fc408082c11f565c071dcd9dddbbb250ef06652e084585032", + "size": 353627, + "url": "https://www.gutenberg.org/ebooks/1067.epub3.images" + }, + "epub/regression/pg1068.epub": { + "sha256": "ddf3a10e79700bfbf736394211676524e96a8a7c7915129487f79b06a7735167", + "size": 408739, + "url": "https://www.gutenberg.org/ebooks/1068.epub3.images" + }, + "epub/regression/pg1069.epub": { + "sha256": "3bb22905ff1e89d52baccb158b55af64a52019f8ccc2cf48474fc203f0a9d2d5", + "size": 579126, + "url": "https://www.gutenberg.org/ebooks/1069.epub3.images" + }, + "epub/regression/pg1074.epub": { + "sha256": "c475a1a77136c7e7f76326096ea792125b2bb90d3b032a3c798f1ff7db3b5673", + "size": 366034, + "url": "https://www.gutenberg.org/ebooks/1074.epub3.images" + }, + "epub/regression/pg1075.epub": { + "sha256": "4b169b9f267dbc0e4911d342f2200ada4743b36339687eaecf2ddd2485691533", + "size": 178434, + "url": "https://www.gutenberg.org/ebooks/1075.epub3.images" + }, + "epub/regression/pg1076.epub": { + "sha256": "9bee043248d2ccaee4d0f0c6dfe0d91a839ea66c67e0884f13fba3e662dc6c34", + "size": 274282, + "url": "https://www.gutenberg.org/ebooks/1076.epub3.images" + }, + "epub/regression/pg1077.epub": { + "sha256": "3bd888895371b7ddfcf40428ebc2eee58ff9f62fef7374b8d6cc8b20e1299811", + "size": 213783, + "url": "https://www.gutenberg.org/ebooks/1077.epub3.images" + }, + "epub/regression/pg1078.epub": { + "sha256": "c67c990ea80ad6b4e80e0f930370c08642fb4ce8a2013b54775a70413947abd7", + "size": 322696, + "url": "https://www.gutenberg.org/ebooks/1078.epub3.images" + }, + "epub/regression/pg1079.epub": { + "sha256": "7abf3f833fddacd347e73db0c59a66020cd7b2f88199dce03f07727b8ddb8944", + "size": 539559, + "url": "https://www.gutenberg.org/ebooks/1079.epub3.images" + }, + "epub/regression/pg1080.epub": { + "sha256": "5800b2f68ad0c141fbaf6eb062691e440ac3bc0be1abc67816a4f80961c20d45", + "size": 107322, + "url": "https://www.gutenberg.org/ebooks/1080.epub3.images" + }, + "epub/regression/pg1081.epub": { + "sha256": "c0fb8da8f9eb15f1f2d9eff9f819cdcda746fbfe776687e0137253b7bcca81d8", + "size": 631777, + "url": "https://www.gutenberg.org/ebooks/1081.epub3.images" + }, + "epub/regression/pg1082.epub": { + "sha256": "730858848959bd683f456bca119b20844f79634ef33be17c55fb54e207b6adcd", + "size": 289155, + "url": "https://www.gutenberg.org/ebooks/1082.epub3.images" + }, + "epub/regression/pg1083.epub": { + "sha256": "b5f0c1dd2fe61cfb32492c11f5a84445d069eeceffe38fa8b2ae3aa343ecf5ae", + "size": 315487, + "url": "https://www.gutenberg.org/ebooks/1083.epub3.images" + }, + "epub/regression/pg1084.epub": { + "sha256": "6f6c1b3658453e177be61efe85c019243c7efe2958e6c44e87ebdb9f34df8cea", + "size": 156720, + "url": "https://www.gutenberg.org/ebooks/1084.epub3.images" + }, + "epub/regression/pg1085.epub": { + "sha256": "21ae67f776ff15803ab463478d35c0996a83159efb5a3e59ff3d367d01ce5cd0", + "size": 311270, + "url": "https://www.gutenberg.org/ebooks/1085.epub3.images" + }, + "epub/regression/pg1086.epub": { + "sha256": "ae33dfb08525a23fdcd1c6630be2b2f8d2ce2d8c4bc6f9649c307686c54179d3", + "size": 115363, + "url": "https://www.gutenberg.org/ebooks/1086.epub3.images" + }, + "epub/regression/pg1087.epub": { + "sha256": "341d09674116f4a6a779ee71becbceacd1e29c2f7d818e69274e59b90925baef", + "size": 109603, + "url": "https://www.gutenberg.org/ebooks/1087.epub3.images" + }, + "epub/regression/pg1088.epub": { + "sha256": "432b786e1a4577cb176212e335a850d7c888d4665166ba89551c247336d6fa18", + "size": 334713, + "url": "https://www.gutenberg.org/ebooks/1088.epub3.images" + }, + "epub/regression/pg1089.epub": { + "sha256": "64ce301bf7fac8a96ab9b7304529dafdd91390c053752b2510026d04cb96e383", + "size": 199761, + "url": "https://www.gutenberg.org/ebooks/1089.epub3.images" + }, + "epub/regression/pg1090.epub": { + "sha256": "b9618a2f0a8b9cb7322ba3f1ecbbaba0b0c57f8f8c7d5fa95264299058b26990", + "size": 109832, + "url": "https://www.gutenberg.org/ebooks/1090.epub3.images" + }, + "epub/regression/pg1091.epub": { + "sha256": "eee61f85ba1dc80037b0e1bc4ece6ac7924d66685ad10d9f5ab0fbdd21a9eed9", + "size": 289180, + "url": "https://www.gutenberg.org/ebooks/1091.epub3.images" + }, + "epub/regression/pg1092.epub": { + "sha256": "1645e1ea2ba27dc34b9b084c7d4fb1eea8bfccfa519b77ede74a3bb24a98fe85", + "size": 121658, + "url": "https://www.gutenberg.org/ebooks/1092.epub3.images" + }, + "epub/regression/pg1093.epub": { + "sha256": "64e3146608b97152b11e19ef0f2de5478fd06091e61187bb1af70f357bd88051", + "size": 111262, + "url": "https://www.gutenberg.org/ebooks/1093.epub3.images" + }, + "epub/regression/pg1094.epub": { + "sha256": "583690b26bd8c8063f9f79cc0716c1aae2a36eaaed02feeba0a659aa57e2e6d2", + "size": 142987, + "url": "https://www.gutenberg.org/ebooks/1094.epub3.images" + }, + "epub/regression/pg1095.epub": { + "sha256": "68ca81e0c9e2cf84720179b86c6e51ef1996459ff28ce43dcbc19a779d09b850", + "size": 434534, + "url": "https://www.gutenberg.org/ebooks/1095.epub3.images" + }, + "epub/regression/pg1096.epub": { + "sha256": "b2bb7e08d56306d8c1db635aa40fcb3f34b72a85b21f52163e8daef661b72681", + "size": 175764, + "url": "https://www.gutenberg.org/ebooks/1096.epub3.images" + }, + "epub/regression/pg1097.epub": { + "sha256": "0c15ca91618bd177db6196c63846a9a653b86dcc77d5dbf6fa45a0a0536173e2", + "size": 162271, + "url": "https://www.gutenberg.org/ebooks/1097.epub3.images" + }, + "epub/regression/pg1098.epub": { + "sha256": "5d61670db9542d5fb8993300d940f6ef8c396113eee5c8a55e5406b07e2a94fb", + "size": 294437, + "url": "https://www.gutenberg.org/ebooks/1098.epub3.images" + }, + "epub/regression/pg1099.epub": { + "sha256": "0a080b8a8f9be1645618ec66b168990b567562f93b83d484b6118726bebbe113", + "size": 339765, + "url": "https://www.gutenberg.org/ebooks/1099.epub3.images" + }, + "epub/regression/pg1100.epub": { + "sha256": "377e108f7616606a7b5ed94414f1d7b8fd4e316f2d9a81fff46171222db8df7d", + "size": 186888, + "url": "https://www.gutenberg.org/ebooks/1100.epub3.images" + }, + "epub/regression/pg1101.epub": { + "sha256": "f5cd030781a9119b31e92df64623b1ad98505f76d8fb00e8a004244f050ca3d5", + "size": 195400, + "url": "https://www.gutenberg.org/ebooks/1101.epub3.images" + }, + "epub/regression/pg1102.epub": { + "sha256": "c4db900268dabcf7dbcf0004a85142d732521c7711b501277f70e43029cf6404", + "size": 196499, + "url": "https://www.gutenberg.org/ebooks/1102.epub3.images" + }, + "epub/regression/pg1103.epub": { + "sha256": "294762b63c052f390dcd84318a8ac9585c5b58edbff1b3b04191be70dfa1f7d5", + "size": 209530, + "url": "https://www.gutenberg.org/ebooks/1103.epub3.images" + }, + "epub/regression/pg1104.epub": { + "sha256": "79ac5cf8f155b92fee3764b16f9453b6df448d8ebad1adf0f66a29e8739c1b1f", + "size": 174504, + "url": "https://www.gutenberg.org/ebooks/1104.epub3.images" + }, + "epub/regression/pg1105.epub": { + "sha256": "62925015f8920399ceda90e60ed4cb40f2589d6171febf78c4bde66325cc25de", + "size": 234397, + "url": "https://www.gutenberg.org/ebooks/1105.epub3.images" + }, + "epub/regression/pg1106.epub": { + "sha256": "50f6d91a9cf7603553287a4820ff8935acf4849059524a86d0e6996a528d000c", + "size": 179282, + "url": "https://www.gutenberg.org/ebooks/1106.epub3.images" + }, + "epub/regression/pg1107.epub": { + "sha256": "e66d28beeb6e303157cf362e3fed7238cbddaca59892b0f23f7b0082376c6db7", + "size": 186305, + "url": "https://www.gutenberg.org/ebooks/1107.epub3.images" + }, + "epub/regression/pg1108.epub": { + "sha256": "44e85a8c57fc231a96be520b0b8c2c196f75eff18569d7c1a22a6531a3c9f3a1", + "size": 181363, + "url": "https://www.gutenberg.org/ebooks/1108.epub3.images" + }, + "epub/regression/pg1109.epub": { + "sha256": "7524e425a7d598e365c39ff6d9e587560f51521424515e330cb9630301a57a91", + "size": 195187, + "url": "https://www.gutenberg.org/ebooks/1109.epub3.images" + }, + "epub/regression/pg1110.epub": { + "sha256": "bb62700de0b223b47c0be9451f151e46dfe215ec6d24ec6af998f562b4533263", + "size": 186064, + "url": "https://www.gutenberg.org/ebooks/1110.epub3.images" + }, + "epub/regression/pg1111.epub": { + "sha256": "101ecb6d6e56707fdda6955c75f80d68c99221d0190d30ec01ab70bd090160e3", + "size": 184418, + "url": "https://www.gutenberg.org/ebooks/1111.epub3.images" + }, + "epub/regression/pg1112.epub": { + "sha256": "588989bed08af6a2b08887d2dcb2ee7bc90364830c6aed8811ef548ee502e3ad", + "size": 188827, + "url": "https://www.gutenberg.org/ebooks/1112.epub3.images" + }, + "epub/regression/pg1113.epub": { + "sha256": "0ed097ac9c5c4b26219c993c7eddae631f6b887bd402fbb8cb62970e0cbf2c1d", + "size": 177902, + "url": "https://www.gutenberg.org/ebooks/1113.epub3.images" + }, + "epub/regression/pg1114.epub": { + "sha256": "35f0348d2538b968f9c5b52a05e461c9bbcaac635e85f6a83676df46149065f3", + "size": 190163, + "url": "https://www.gutenberg.org/ebooks/1114.epub3.images" + }, + "epub/regression/pg1115.epub": { + "sha256": "8bae0701f165408a36b930b8132efbd2f5b11f03ebcad563882fbb15dfb15943", + "size": 191545, + "url": "https://www.gutenberg.org/ebooks/1115.epub3.images" + }, + "epub/regression/pg1116.epub": { + "sha256": "59f7720a6e70ae2b735bd916fc038cfc2b56c042c686701ad002926b1714be7b", + "size": 189784, + "url": "https://www.gutenberg.org/ebooks/1116.epub3.images" + }, + "epub/regression/pg1117.epub": { + "sha256": "8ec78adc64201f48cc8e7a99e84cb78bffceb111cf275cde2f8e1c7ce21c3574", + "size": 195816, + "url": "https://www.gutenberg.org/ebooks/1117.epub3.images" + }, + "epub/regression/pg1118.epub": { + "sha256": "63c4fec412e48a3a3db79fcd0f2310c5d4a025660ec5bf4ff0adfb9a0360282b", + "size": 190228, + "url": "https://www.gutenberg.org/ebooks/1118.epub3.images" + }, + "epub/regression/pg1119.epub": { + "sha256": "7d480bca41407d193e6f8c3c29a57752e762f036dd8b38164e3fd586bd8aec29", + "size": 192323, + "url": "https://www.gutenberg.org/ebooks/1119.epub3.images" + }, + "epub/regression/pg1120.epub": { + "sha256": "262ef453f97e5ce0107d7b98a05e51b55793f1872a0197a7cd5c2385c5dd1f54", + "size": 177376, + "url": "https://www.gutenberg.org/ebooks/1120.epub3.images" + }, + "epub/regression/pg1121.epub": { + "sha256": "53cfde2001182cb155b3f85e436e3aee87a1376388ae77fbece011710d25416a", + "size": 188852, + "url": "https://www.gutenberg.org/ebooks/1121.epub3.images" + }, + "epub/regression/pg1122.epub": { + "sha256": "858d468724f1c259b708861172c819c7ed6d78fc873e83d489a55e215eca4c28", + "size": 202537, + "url": "https://www.gutenberg.org/ebooks/1122.epub3.images" + }, + "epub/regression/pg1123.epub": { + "sha256": "f4a9368e180ee42315566c3366c78d6d5fbc7bf63fcdaf78ff1ee50e95e1501c", + "size": 185813, + "url": "https://www.gutenberg.org/ebooks/1123.epub3.images" + }, + "epub/regression/pg1124.epub": { + "sha256": "2f002c6f8c48c88e40163a1a5fd32d53084be2af35ccc425217bf073ccbdfcbf", + "size": 194106, + "url": "https://www.gutenberg.org/ebooks/1124.epub3.images" + }, + "epub/regression/pg1125.epub": { + "sha256": "576ab3943174bdd7fcc69b911c0090720abf55f729ae2d633516c031d4bbd6fe", + "size": 193956, + "url": "https://www.gutenberg.org/ebooks/1125.epub3.images" + }, + "epub/regression/pg1126.epub": { + "sha256": "550b0d6dc8cadd695e730890530cf93f6caa2e57079f79d7e7da4e365a2fedea", + "size": 191203, + "url": "https://www.gutenberg.org/ebooks/1126.epub3.images" + }, + "epub/regression/pg1127.epub": { + "sha256": "3f240c41e5d7702b6598f985f187cf016efa54cac5ced735bfdc1438132a65f2", + "size": 195942, + "url": "https://www.gutenberg.org/ebooks/1127.epub3.images" + }, + "epub/regression/pg1128.epub": { + "sha256": "d12c4069ada33654c494093f4d996d9ac77acda4edd3d0ad35a869fff2a25dce", + "size": 191656, + "url": "https://www.gutenberg.org/ebooks/1128.epub3.images" + }, + "epub/regression/pg1129.epub": { + "sha256": "b5485c3a131fc58715ffdb71b7277a053eb415a314d7288411338e0a5715efd9", + "size": 174204, + "url": "https://www.gutenberg.org/ebooks/1129.epub3.images" + }, + "epub/regression/pg1130.epub": { + "sha256": "7f4daa6d53ff8f1067d4d79e9366e56755e36c32a7423c0273cc939cd9a17d9e", + "size": 196583, + "url": "https://www.gutenberg.org/ebooks/1130.epub3.images" + }, + "epub/regression/pg1131.epub": { + "sha256": "b49de6810916dae88692e92ca7850095da7beecee04733cfeeb0a30196acb198", + "size": 201752, + "url": "https://www.gutenberg.org/ebooks/1131.epub3.images" + }, + "epub/regression/pg1132.epub": { + "sha256": "ac57a8c4fe72a871e651be074a21fc605235a68fcef45254d538addf50808125", + "size": 176731, + "url": "https://www.gutenberg.org/ebooks/1132.epub3.images" + }, + "epub/regression/pg1133.epub": { + "sha256": "59dd3b321965e8c6c5c2fa56a4813f463a4f74c62dff6940697baf7677082ad5", + "size": 201553, + "url": "https://www.gutenberg.org/ebooks/1133.epub3.images" + }, + "epub/regression/pg1134.epub": { + "sha256": "a06d8e5eec88a2927145ecae292f14e3fd1b6948096d8b306eb0df245da3bfd4", + "size": 200545, + "url": "https://www.gutenberg.org/ebooks/1134.epub3.images" + }, + "epub/regression/pg1135.epub": { + "sha256": "5fce9aecd49595f2523e3bbc1a2b320177ed0ef0d1880bab1c22087a8c34e654", + "size": 174141, + "url": "https://www.gutenberg.org/ebooks/1135.epub3.images" + }, + "epub/regression/pg1136.epub": { + "sha256": "007011b676af2416c40ef945bb2d82e0d831b3812933527949bb27b557ee65be", + "size": 198764, + "url": "https://www.gutenberg.org/ebooks/1136.epub3.images" + }, + "epub/regression/pg1137.epub": { + "sha256": "37c7039d9139611e97eb9c3cb855a6490f1718adb3c4de520ecdd40824d73e46", + "size": 195002, + "url": "https://www.gutenberg.org/ebooks/1137.epub3.images" + }, + "epub/regression/pg1138.epub": { + "sha256": "e5e7844efb8a631b7b9ffceed0c5a2d2a8d626d4f49aaf8c8d5a7b916c2b7d69", + "size": 349551, + "url": "https://www.gutenberg.org/ebooks/1138.epub3.images" + }, + "epub/regression/pg1139.epub": { + "sha256": "a00b15c358abb78f6150a4648450572da4b3dbe07711905d463aadd69edd9992", + "size": 195590, + "url": "https://www.gutenberg.org/ebooks/1139.epub3.images" + }, + "epub/regression/pg1140.epub": { + "sha256": "0d3daa903edb5aa07da10fe6ccd3ddc82868518421425904930d6ad2fbd4003b", + "size": 260875, + "url": "https://www.gutenberg.org/ebooks/1140.epub3.images" + }, + "epub/regression/pg1141.epub": { + "sha256": "35c21b5fbccb6a0f5882d3177c9fe4cbfe0dce469bbf39ca5f7e510ac58ed787", + "size": 101770, + "url": "https://www.gutenberg.org/ebooks/1141.epub3.images" + }, + "epub/regression/pg1142.epub": { + "sha256": "8dda37749533b979fd18f20d8632932a88b86c74ba93dadae0f206298d17f314", + "size": 140168, + "url": "https://www.gutenberg.org/ebooks/1142.epub3.images" + }, + "epub/regression/pg1143.epub": { + "sha256": "23099bbd108f39ac9a7439ba90aa73a8cbc0ccdc55469e3f5ce3d1e6d777d5e9", + "size": 262651, + "url": "https://www.gutenberg.org/ebooks/1143.epub3.images" + }, + "epub/regression/pg1144.epub": { + "sha256": "ee843264640dc2d8702cd88de913acca342a69f2dbf15bc9c4e9b49689e20bef", + "size": 168083, + "url": "https://www.gutenberg.org/ebooks/1144.epub3.images" + }, + "epub/regression/pg1145.epub": { + "sha256": "9116e00f389c571ca71ea3d26c594bc54630521e00a0854ee915296d0ab38e46", + "size": 260065, + "url": "https://www.gutenberg.org/ebooks/1145.epub3.images" + }, + "epub/regression/pg1146.epub": { + "sha256": "6ded099f05d17e9e6b4f7c635846eaf8313ce459943f84bf59bccb41515d1892", + "size": 177175, + "url": "https://www.gutenberg.org/ebooks/1146.epub3.images" + }, + "epub/regression/pg1147.epub": { + "sha256": "1ec0c81177e54dbe019f548e9114994ba67315c13d50bedc0a611866e3bbafee", + "size": 177745, + "url": "https://www.gutenberg.org/ebooks/1147.epub3.images" + }, + "epub/regression/pg1148.epub": { + "sha256": "ccc3ab8f2018adbeaec41ca75f81fa57d6f71c116d70b310696eec22a6013625", + "size": 223632, + "url": "https://www.gutenberg.org/ebooks/1148.epub3.images" + }, + "epub/regression/pg1149.epub": { + "sha256": "ef1463d6e9dc813285f96da1a50fbf13b905a904e2a65fd2c7d48f16ebc29539", + "size": 164164, + "url": "https://www.gutenberg.org/ebooks/1149.epub3.images" + }, + "epub/regression/pg1150.epub": { + "sha256": "b24e78d193cb8a6f9277ffa6c285d07f7f142a5f44bf6444fa2d95c542bd89b2", + "size": 453880, + "url": "https://www.gutenberg.org/ebooks/1150.epub3.images" + }, + "epub/regression/pg1151.epub": { + "sha256": "5b37858e731ed053a1d5ff2435e0d074c974ab4cc466a7bb48a6cbfbc7694b38", + "size": 298363, + "url": "https://www.gutenberg.org/ebooks/1151.epub3.images" + }, + "epub/regression/pg1152.epub": { + "sha256": "7d8ae0cf3248b8a885188649c5d96d99134880141d402f77f06a5359752e33ea", + "size": 214402, + "url": "https://www.gutenberg.org/ebooks/1152.epub3.images" + }, + "epub/regression/pg1153.epub": { + "sha256": "227f1ec36daf4be7f96477609fab3f3ad8cdacf47b6bbaf81ea16f4dc8b4185f", + "size": 274093, + "url": "https://www.gutenberg.org/ebooks/1153.epub3.images" + }, + "epub/regression/pg1154.epub": { + "sha256": "c19d6199c25e9acdf6d5749a3f37c5517eea0ccd9ef745c71685e6d1f4c5ae8a", + "size": 329294, + "url": "https://www.gutenberg.org/ebooks/1154.epub3.images" + }, + "epub/regression/pg1155.epub": { + "sha256": "bc4089d62b7f9709747954246c42bb4df97834ed4e4645a0890faecfd535c648", + "size": 286623, + "url": "https://www.gutenberg.org/ebooks/1155.epub3.images" + }, + "epub/regression/pg1156.epub": { + "sha256": "9fe2463330821d3c7f4e44362b45ed64bebf77886246087097bbc65e1b24557c", + "size": 413726, + "url": "https://www.gutenberg.org/ebooks/1156.epub3.images" + }, + "epub/regression/pg1157.epub": { + "sha256": "d6ff2c07789ad9fae4b368581f1cebb099dc88ba2b5fd2c1cc7b0842b5d6136e", + "size": 152871, + "url": "https://www.gutenberg.org/ebooks/1157.epub3.images" + }, + "epub/regression/pg1158.epub": { + "sha256": "b93052607c9173ea768aa4176637bd5a8b4b0c8fa2b1e978dc523c0f95e248a1", + "size": 243227, + "url": "https://www.gutenberg.org/ebooks/1158.epub3.images" + }, + "epub/regression/pg1159.epub": { + "sha256": "ddabab478bb1770e6f2774217d6bae7bde548337742ab4ccfebd36c2d578afe2", + "size": 228831, + "url": "https://www.gutenberg.org/ebooks/1159.epub3.images" + }, + "epub/regression/pg1160.epub": { + "sha256": "5388b4ea2b7350e0ee63054637c61b5cc3eb781796a7933dfe1a16865aec415a", + "size": 93991, + "url": "https://www.gutenberg.org/ebooks/1160.epub3.images" + }, + "epub/regression/pg1161.epub": { + "sha256": "d0c42c07e76c63db072ee8e415915fcba76afb72c1da8923d751cc6a08bf1361", + "size": 231850, + "url": "https://www.gutenberg.org/ebooks/1161.epub3.images" + }, + "epub/regression/pg1162.epub": { + "sha256": "9e289c3c2464b74497d1b88563822b2e2266a424c0dc049a4ffd68cf80916463", + "size": 309246, + "url": "https://www.gutenberg.org/ebooks/1162.epub3.images" + }, + "epub/regression/pg1163.epub": { + "sha256": "289caa553d2ac3860b728670f0b8b91810ac84c0aeaa5a6a915d8e785b60a1f5", + "size": 236961, + "url": "https://www.gutenberg.org/ebooks/1163.epub3.images" + }, + "epub/regression/pg1164.epub": { + "sha256": "5f4ea85c9d22aa39a29ac0c00afe7e23404e74767e4bd707f8c46ff61d4e8e12", + "size": 302148, + "url": "https://www.gutenberg.org/ebooks/1164.epub3.images" + }, + "epub/regression/pg1165.epub": { + "sha256": "3fb533b9b97eff35a532e4c3f592385a82b14b727cb33bea51e15403d6140380", + "size": 200579, + "url": "https://www.gutenberg.org/ebooks/1165.epub3.images" + }, + "epub/regression/pg1166.epub": { + "sha256": "7cf8c130771790bd1afb14cbe2b5107d8a6e9eda384109080bfcc2d9c1d55217", + "size": 204269, + "url": "https://www.gutenberg.org/ebooks/1166.epub3.images" + }, + "epub/regression/pg1167.epub": { + "sha256": "46759b745dfa4578a1619e60df4291c864c1c6091868bc2e8bde59f4907e6b8e", + "size": 196678, + "url": "https://www.gutenberg.org/ebooks/1167.epub3.images" + }, + "epub/regression/pg1168.epub": { + "sha256": "9ba48618b3954b9ed45d5ed7a61d4ddb1c06bb953882dcf87b541fcc4170b43a", + "size": 238294, + "url": "https://www.gutenberg.org/ebooks/1168.epub3.images" + }, + "epub/regression/pg1169.epub": { + "sha256": "21db3a47c44af9c72dbfd23ec043088df62489a1465136d9c1397d8d0f78649f", + "size": 107453, + "url": "https://www.gutenberg.org/ebooks/1169.epub3.images" + }, + "epub/regression/pg1170.epub": { + "sha256": "236a350f636b98269f301746765d9df6934b2a70b2a7260b82ef8d776db40ba7", + "size": 295019, + "url": "https://www.gutenberg.org/ebooks/1170.epub3.images" + }, + "epub/regression/pg1171.epub": { + "sha256": "b7c6d1ff5d09adea0172ae3501b166c109d4a5ecaaf8346b9838109363855b53", + "size": 80067, + "url": "https://www.gutenberg.org/ebooks/1171.epub3.images" + }, + "epub/regression/pg1172.epub": { + "sha256": "f269b6f3176c7e096e0096eed38f4d481d1bc38ddf6b62af0996cbed2f8f521e", + "size": 103808, + "url": "https://www.gutenberg.org/ebooks/1172.epub3.images" + }, + "epub/regression/pg1173.epub": { + "sha256": "a865059048d92e110d428d828ffcc5dd0975eacad9a3aa26d7723a1b42abb38e", + "size": 159101, + "url": "https://www.gutenberg.org/ebooks/1173.epub3.images" + }, + "epub/regression/pg1174.epub": { + "sha256": "da331b4ea1f25b180a5cfeb318e4368ff3e24ec5b21ee63c0f87c5926cc39219", + "size": 380712, + "url": "https://www.gutenberg.org/ebooks/1174.epub3.images" + }, + "epub/regression/pg1175.epub": { + "sha256": "13b8c40685d622ab5a3930f84bd56ad10d507a3db68a9df155e2fd47a930338d", + "size": 98026, + "url": "https://www.gutenberg.org/ebooks/1175.epub3.images" + }, + "epub/regression/pg1176.epub": { + "sha256": "b5e9f7882c9f53aed4c2375accbbfd66c44da4c20fb53274012eb7a94201d0cd", + "size": 106201, + "url": "https://www.gutenberg.org/ebooks/1176.epub3.images" + }, + "epub/regression/pg1177.epub": { + "sha256": "889e3ced650e19d6f7377c8cb839ae8f592d024d784646d9741be93f25510d47", + "size": 247333, + "url": "https://www.gutenberg.org/ebooks/1177.epub3.images" + }, + "epub/regression/pg1178.epub": { + "sha256": "87f8b374979666b9a388d94afd1cf790cb4c0d985f8832f1c60dc0363635deee", + "size": 118649, + "url": "https://www.gutenberg.org/ebooks/1178.epub3.images" + }, + "epub/regression/pg1179.epub": { + "sha256": "584ef55db6175b313922d1c08800cc76eee7c7d4f2025562525ef1576d5162a9", + "size": 95164, + "url": "https://www.gutenberg.org/ebooks/1179.epub3.images" + }, + "epub/regression/pg1180.epub": { + "sha256": "76980c590aaca561d0e17a931085cb71d5bae47a40c82f1e6642d6f16ddccabf", + "size": 126081, + "url": "https://www.gutenberg.org/ebooks/1180.epub3.images" + }, + "epub/regression/pg1181.epub": { + "sha256": "de335c5659274a6a77e4dee91de11cd90e3a484f86d0bc4640412eff13d46e52", + "size": 129373, + "url": "https://www.gutenberg.org/ebooks/1181.epub3.images" + }, + "epub/regression/pg1182.epub": { + "sha256": "8a2e17dee7dcd359df5d28b71e79d15ab1ba02505ad351b55138bec3200824ad", + "size": 345560, + "url": "https://www.gutenberg.org/ebooks/1182.epub3.images" + }, + "epub/regression/pg1183.epub": { + "sha256": "96198a8d5f228762e7d996e75ec6c5a6db9c1141639e6736fcc636d9493aa383", + "size": 263714, + "url": "https://www.gutenberg.org/ebooks/1183.epub3.images" + }, + "epub/regression/pg1184.epub": { + "sha256": "fc1b454c3581494e1ac47028075a8df66e843fa182085b91a682272c2069cd50", + "size": 1294288, + "url": "https://www.gutenberg.org/ebooks/1184.epub3.images" + }, + "epub/regression/pg1185.epub": { + "sha256": "a1b8c5afc8c91324ce3cc8b3cb7822fec7c2d04a67d1eaf3ea43d892ffc299a8", + "size": 348235, + "url": "https://www.gutenberg.org/ebooks/1185.epub3.images" + }, + "epub/regression/pg1186.epub": { + "sha256": "417f3397162b27e4e82fa9c614f55ba216ff3fe551259dc8491154c5373912a2", + "size": 83638, + "url": "https://www.gutenberg.org/ebooks/1186.epub3.images" + }, + "epub/regression/pg1187.epub": { + "sha256": "0a33fffde2a74c80ea14aee2ea50802d3400b53d1fc6d3876cccbc8dae2a055d", + "size": 154368, + "url": "https://www.gutenberg.org/ebooks/1187.epub3.images" + }, + "epub/regression/pg1188.epub": { + "sha256": "65a3c443d5a8795a48629e7deda68e7749f96dcdf9c9e315edb7242a8ed0d6b6", + "size": 199411, + "url": "https://www.gutenberg.org/ebooks/1188.epub3.images" + }, + "epub/regression/pg1189.epub": { + "sha256": "3b43707d4a89b14ff9c998f0f9589f17de90de0beba67d8925a02cba741a353e", + "size": 84740, + "url": "https://www.gutenberg.org/ebooks/1189.epub3.images" + }, + "epub/regression/pg1190.epub": { + "sha256": "92b18fc3e94135ebe4b3e63527d896143fe3bbd502acb79bdea2c0ad3e64cab9", + "size": 96861, + "url": "https://www.gutenberg.org/ebooks/1190.epub3.images" + }, + "epub/regression/pg1191.epub": { + "sha256": "1ff854d4d878ba212f1ab54e4f1c35555d7595fd1bb90995c743ae6f515930ca", + "size": 141626, + "url": "https://www.gutenberg.org/ebooks/1191.epub3.images" + }, + "epub/regression/pg1192.epub": { + "sha256": "33a2d82ce221f55fa7fbd54b13929c344d7559b328dd22fe243cccb84ef206f8", + "size": 162549, + "url": "https://www.gutenberg.org/ebooks/1192.epub3.images" + }, + "epub/regression/pg1193.epub": { + "sha256": "53e22a262a7142b81b100cbb4f413d50c593c758ec11b4851ef55cd29bd91e8a", + "size": 105688, + "url": "https://www.gutenberg.org/ebooks/1193.epub3.images" + }, + "epub/regression/pg1194.epub": { + "sha256": "ef9a034874950a50118a52639cdabc45fbb533946c59fa1ec9b53b53ca7f0250", + "size": 305203, + "url": "https://www.gutenberg.org/ebooks/1194.epub3.images" + }, + "epub/regression/pg1195.epub": { + "sha256": "03b0157c7b423cdce70c608bca5db7e232b73df113547db5fcf06433d0587541", + "size": 108018, + "url": "https://www.gutenberg.org/ebooks/1195.epub3.images" + }, + "epub/regression/pg1196.epub": { + "sha256": "78feb32915b76031195355b219d2fff29005cd476c9fe224f2fe1ebb0bacdd39", + "size": 93740, + "url": "https://www.gutenberg.org/ebooks/1196.epub3.images" + }, + "epub/regression/pg1197.epub": { + "sha256": "554c236bd8d5747ddfe57c40ddd71dd13c7e6fa0269432003b0489fad2fbc610", + "size": 343998, + "url": "https://www.gutenberg.org/ebooks/1197.epub3.images" + }, + "epub/regression/pg1198.epub": { + "sha256": "d7c4d686a2db8eb4a0dee8222dc1fc37b91e0763b482040e907eb7541104818e", + "size": 545746, + "url": "https://www.gutenberg.org/ebooks/1198.epub3.images" + }, + "epub/regression/pg1199.epub": { + "sha256": "d228e19e17b7a4a453d6301d8183bea37f2578225192d868da4bcd2ca8624de0", + "size": 217991, + "url": "https://www.gutenberg.org/ebooks/1199.epub3.images" + }, + "epub/regression/pg1200.epub": { + "sha256": "f6a80ea3690a28cdc0178cf2610f46c2569d4e84541e90729ac6e2c9b43dc01b", + "size": 919836, + "url": "https://www.gutenberg.org/ebooks/1200.epub3.images" + }, + "epub/regression/pg1201.epub": { + "sha256": "646d8cbcce8caf01d39a9f4dce775b3021cfa1586cc08f089656dc6bc1b7903a", + "size": 278994, + "url": "https://www.gutenberg.org/ebooks/1201.epub3.images" + }, + "epub/regression/pg1202.epub": { + "sha256": "047337ac005aed8ea3ab23c573e2482f9d4351709bb481897f90a725700d7682", + "size": 221993, + "url": "https://www.gutenberg.org/ebooks/1202.epub3.images" + }, + "epub/regression/pg1203.epub": { + "sha256": "0977b02ccb827b46d37da69766812234b1cc0ae0a1f2d9e1c3e69ea841812d53", + "size": 141513, + "url": "https://www.gutenberg.org/ebooks/1203.epub3.images" + }, + "epub/regression/pg1300.epub": { + "sha256": "fd575299286c3cae448ca2fec4c6e894d5e8845e7ed3db098cc25d90cb330c38", + "size": 346243, + "url": "https://www.gutenberg.org/ebooks/1300.epub3.images" + }, + "epub/regression/pg1301.epub": { + "sha256": "e0822b6cfdd25a948893b1ed1f36cd864db6a5aedc0aef4f205f8cf736bf8ea1", + "size": 1145582, + "url": "https://www.gutenberg.org/ebooks/1301.epub3.images" + }, + "epub/regression/pg1302.epub": { + "sha256": "afb5c6d671c00956b1498adadcb720afb91c1c28a1af074c1ecc732df9c34160", + "size": 136236, + "url": "https://www.gutenberg.org/ebooks/1302.epub3.images" + }, + "epub/regression/pg1303.epub": { + "sha256": "a62af860ccebf877f6bd24d5d7ce4b2a075ac27d6bf00736338831b6690472a6", + "size": 300652, + "url": "https://www.gutenberg.org/ebooks/1303.epub3.images" + }, + "epub/regression/pg1304.epub": { + "sha256": "7742c14541c72986e2749687b8aca60457dec8ccca0746c3a9b6b0d739bcc6ac", + "size": 609678, + "url": "https://www.gutenberg.org/ebooks/1304.epub3.images" + }, + "epub/regression/pg1305.epub": { + "sha256": "4f200fd63d562af24d0111173d1c4a14b7c28edc43f50c832dc19fc79e18a29d", + "size": 125034, + "url": "https://www.gutenberg.org/ebooks/1305.epub3.images" + }, + "epub/regression/pg1306.epub": { + "sha256": "7e3938e1643d0af0c76872ad7c0ec886fbc247c29bd7156e5e33afd76089c8a4", + "size": 146517, + "url": "https://www.gutenberg.org/ebooks/1306.epub3.images" + }, + "epub/regression/pg1307.epub": { + "sha256": "87185183eb86e5332e6f4833dc4a064995c548cd6a5d6052e640da8b0210dd0c", + "size": 316073, + "url": "https://www.gutenberg.org/ebooks/1307.epub3.images" + }, + "epub/regression/pg1308.epub": { + "sha256": "8892bff9594e4f1f4115baf9db21e7d223c27e43fe0e0ac7996a94e68e84e745", + "size": 95133, + "url": "https://www.gutenberg.org/ebooks/1308.epub3.images" + }, + "epub/regression/pg1309.epub": { + "sha256": "b9c506568099dc6501525398502f949d11f5d78a5d95ce91304a1ebbfbaf9144", + "size": 111263, + "url": "https://www.gutenberg.org/ebooks/1309.epub3.images" + }, + "epub/regression/pg1310.epub": { + "sha256": "d12fec1591452ce00cfb2e47b1177d09976d65ed7e75d5633c576e1a45eb3dd7", + "size": 202776, + "url": "https://www.gutenberg.org/ebooks/1310.epub3.images" + }, + "epub/regression/pg1311.epub": { + "sha256": "f3a72851b64b74247a3638541d7f28f79ad0c4b32a475a36bcb8af3f7da418c2", + "size": 122530, + "url": "https://www.gutenberg.org/ebooks/1311.epub3.images" + }, + "epub/regression/pg1312.epub": { + "sha256": "07cf400318f0563febf7129b51e6ba3e235a7b7392a0de18998cc7035670d825", + "size": 373640, + "url": "https://www.gutenberg.org/ebooks/1312.epub3.images" + }, + "epub/regression/pg1313.epub": { + "sha256": "a7d0a79dc71d32373db8beaa81d9be772f10b8ad89e55514794bfa5f307ac3fd", + "size": 184341, + "url": "https://www.gutenberg.org/ebooks/1313.epub3.images" + }, + "epub/regression/pg1314.epub": { + "sha256": "9928323c4d4cea6b43dfd808d14fbdcc560c2c1f1a13f76f47b744a69ecd7191", + "size": 246535, + "url": "https://www.gutenberg.org/ebooks/1314.epub3.images" + }, + "epub/regression/pg1315.epub": { + "sha256": "e3c760ba5d62feb43945951121ab5960345249403867aa25d090a9a1d0a5451c", + "size": 204486, + "url": "https://www.gutenberg.org/ebooks/1315.epub3.images" + }, + "epub/regression/pg1316.epub": { + "sha256": "102eab4ad0ac554da1b76e5d5ff0f74c7170afa2d7e969121b6b609f8e13d0d6", + "size": 188599, + "url": "https://www.gutenberg.org/ebooks/1316.epub3.images" + }, + "epub/regression/pg1317.epub": { + "sha256": "99fe462eab45d4e9aa1a790552a2a816137e1678b7cbf3ec95b218bd4dc5c282", + "size": 122654, + "url": "https://www.gutenberg.org/ebooks/1317.epub3.images" + }, + "epub/regression/pg1318.epub": { + "sha256": "7255473c8c1d5eb1085ac353fd63c9e0d692e99cb9658e6024389172185c54ef", + "size": 218990, + "url": "https://www.gutenberg.org/ebooks/1318.epub3.images" + }, + "epub/regression/pg1319.epub": { + "sha256": "e9568fafb20ddcf8f211ccb59825241a62ad1f0407c520e2bfcede5640c10900", + "size": 226268, + "url": "https://www.gutenberg.org/ebooks/1319.epub3.images" + }, + "epub/regression/pg1320.epub": { + "sha256": "354e5cf47dda2a25fb286af4d89d9dc3550d704c277a95c622266be87e2a46ad", + "size": 654548, + "url": "https://www.gutenberg.org/ebooks/1320.epub3.images" + }, + "epub/regression/pg1321.epub": { + "sha256": "42a9df4274ea8784dbc49efdb27ca8b602ddea4d696bb2c3d5db039ed879f639", + "size": 82729, + "url": "https://www.gutenberg.org/ebooks/1321.epub3.images" + }, + "epub/regression/pg1322.epub": { + "sha256": "341fc9ab43dba3b69639cdb347a02a078ff3b7e255035ba682a07104b8a58553", + "size": 695945, + "url": "https://www.gutenberg.org/ebooks/1322.epub3.images" + }, + "epub/regression/pg1323.epub": { + "sha256": "75471abb3799d01e29a96fffa7695b6cf7a375a1a2b71af22848f3b8adb5cb27", + "size": 801573, + "url": "https://www.gutenberg.org/ebooks/1323.epub3.images" + }, + "epub/regression/pg1324.epub": { + "sha256": "a5c5f9e339ad2c1e9f9a61e418c53eee1b2394ba6557430aa8ed0123dae1eb6d", + "size": 177168, + "url": "https://www.gutenberg.org/ebooks/1324.epub3.images" + }, + "epub/regression/pg1325.epub": { + "sha256": "ae2ad6fd2f77f5d22a6af8cb2a7965270859ae4d12fa532d8b9db2742bcb0d76", + "size": 319265, + "url": "https://www.gutenberg.org/ebooks/1325.epub3.images" + }, + "epub/regression/pg1326.epub": { + "sha256": "ac3318e0091461f9a3839b9d25f1067bce4eaf96b72775f79310ff623ca333fe", + "size": 162533, + "url": "https://www.gutenberg.org/ebooks/1326.epub3.images" + }, + "epub/regression/pg1327.epub": { + "sha256": "3c9569ea99a0a259e7d0924d6cbb30cb73ca3bd51a576bba899a1df695206932", + "size": 196941, + "url": "https://www.gutenberg.org/ebooks/1327.epub3.images" + }, + "epub/regression/pg1328.epub": { + "sha256": "7d4cb4599e8e0f83b5057e1ce78fcc4b8f4744edaaa661d19f8d315ec323a120", + "size": 88168, + "url": "https://www.gutenberg.org/ebooks/1328.epub3.images" + }, + "epub/regression/pg1329.epub": { + "sha256": "ec519482a865aed15a9bf502d06187479cda5b0a581ca0f7fc0418c402375620", + "size": 309833, + "url": "https://www.gutenberg.org/ebooks/1329.epub3.images" + }, + "epub/regression/pg1330.epub": { + "sha256": "b90df710284defb259e6f99e74c7199e1253bf62ccc6c86b5e51ca255130f0ab", + "size": 73830, + "url": "https://www.gutenberg.org/ebooks/1330.epub3.images" + }, + "epub/regression/pg1331.epub": { + "sha256": "8723cc96b83a5563c94bb86ca175e26663da19d6ef17bd8134d94e45b5856439", + "size": 83120, + "url": "https://www.gutenberg.org/ebooks/1331.epub3.images" + }, + "epub/regression/pg1332.epub": { + "sha256": "b5b3a147f76681c5faf38f578201a90340607e31a789421c7df128988b7c1c3f", + "size": 111263, + "url": "https://www.gutenberg.org/ebooks/1332.epub3.images" + }, + "epub/regression/pg1333.epub": { + "sha256": "6a0dea8972a41caaa6e3b0f980e093315d2015ebd62ad864256b47821fa67c17", + "size": 124607, + "url": "https://www.gutenberg.org/ebooks/1333.epub3.images" + }, + "epub/regression/pg1334.epub": { + "sha256": "df4ae980bb23d816b5444337aa6aa97f81f46ce3d3ee9aba203ab82008cfc31b", + "size": 451605, + "url": "https://www.gutenberg.org/ebooks/1334.epub3.images" + }, + "epub/regression/pg1335.epub": { + "sha256": "977f27df1eb707c3b4ed854bb39b222c4aec5acaa2a1e5a6c3816ef03333986d", + "size": 144922, + "url": "https://www.gutenberg.org/ebooks/1335.epub3.images" + }, + "epub/regression/pg1336.epub": { + "sha256": "c62cde138aa09d82ad7f8d8c0861071e057891d79c2a18143500a23809ccf74a", + "size": 96016, + "url": "https://www.gutenberg.org/ebooks/1336.epub3.images" + }, + "epub/regression/pg1337.epub": { + "sha256": "d627c1afbc100e010da8aa94740c78f676798ed159ff823a85d96a06888ac6b4", + "size": 125354, + "url": "https://www.gutenberg.org/ebooks/1337.epub3.images" + }, + "epub/regression/pg1338.epub": { + "sha256": "7fddc87a6a1c555803eb816a2cd68be9a60e41a6814eb41cc0fcf8e92e0973df", + "size": 154887, + "url": "https://www.gutenberg.org/ebooks/1338.epub3.images" + }, + "epub/regression/pg1339.epub": { + "sha256": "02ffa90d357411a45bc920ed66e01b0ff4db34e3ad9c78bdff9e603fe0452f10", + "size": 93764, + "url": "https://www.gutenberg.org/ebooks/1339.epub3.images" + }, + "epub/regression/pg1340.epub": { + "sha256": "e67db7f5821d35c4aaaa4ea3fe409e4ff10b14b91d914fde4f295544cf614150", + "size": 569625, + "url": "https://www.gutenberg.org/ebooks/1340.epub3.images" + }, + "epub/regression/pg1341.epub": { + "sha256": "b04108994941c0bad7215431e469f27973b548ba0b8d5c4be175ec2c80fb24f0", + "size": 80649, + "url": "https://www.gutenberg.org/ebooks/1341.epub3.images" + }, + "epub/regression/pg1342.epub": { + "sha256": "462be7852d84412c6695851395144a97e9762d45bd3c41b9f356dc7ac047b8a9", + "size": 558547, + "url": "https://www.gutenberg.org/ebooks/1342.epub3.images" + }, + "epub/regression/pg1343.epub": { + "sha256": "2d646904b24d0af4dcba78cc1b4940574bab4af1958f9eabe151cb5f9789cb52", + "size": 266539, + "url": "https://www.gutenberg.org/ebooks/1343.epub3.images" + }, + "epub/regression/pg1344.epub": { + "sha256": "7b9259efc433ccbe30396ef1d73160552b78839cbc30f0e8ab525021875462ed", + "size": 124810, + "url": "https://www.gutenberg.org/ebooks/1344.epub3.images" + }, + "epub/regression/pg1345.epub": { + "sha256": "d17ad1e0259f16dc84f1699bbea54e65e875a0c95df89350c3f9de062c0aac04", + "size": 134350, + "url": "https://www.gutenberg.org/ebooks/1345.epub3.images" + }, + "epub/regression/pg1346.epub": { + "sha256": "489dc6e08484d6faaf2fcc34117287519d9be275d0025bfc04edfa7e306137ef", + "size": 167880, + "url": "https://www.gutenberg.org/ebooks/1346.epub3.images" + }, + "epub/regression/pg1347.epub": { + "sha256": "357d7262a77c33e9b168eabedbba7d7b9bbaef1587b17da8b223a9815fcc967f", + "size": 176494, + "url": "https://www.gutenberg.org/ebooks/1347.epub3.images" + }, + "epub/regression/pg1348.epub": { + "sha256": "109c2009aa043dde0fca267cf330d225977fe0cdf62e9c21d11d2a18cefd5fde", + "size": 206011, + "url": "https://www.gutenberg.org/ebooks/1348.epub3.images" + }, + "epub/regression/pg1349.epub": { + "sha256": "092f7c60b00b1e7ce42301f82a1b67d02d996cf14efb3a65e50278a545c19a27", + "size": 794042, + "url": "https://www.gutenberg.org/ebooks/1349.epub3.images" + }, + "epub/regression/pg1350.epub": { + "sha256": "9f242f9475aa07b5f6f79f02e2136503a202c597b0a32316f135937200b56698", + "size": 307318, + "url": "https://www.gutenberg.org/ebooks/1350.epub3.images" + }, + "epub/regression/pg1351.epub": { + "sha256": "8e3f1ede460240c4e6b8b420b5ceb422009a2e501d1eb7087f7910cad768875b", + "size": 222864, + "url": "https://www.gutenberg.org/ebooks/1351.epub3.images" + }, + "epub/regression/pg1352.epub": { + "sha256": "6f20f2110f08768b417f4fa2b4ab4cebf6f4f8070c485e06d5199c7636361f27", + "size": 196846, + "url": "https://www.gutenberg.org/ebooks/1352.epub3.images" + }, + "epub/regression/pg1353.epub": { + "sha256": "bb394366ceb26e21fbb4bf31fdaaa1d6d96788cb91913a85605e819ec3c582ef", + "size": 325943, + "url": "https://www.gutenberg.org/ebooks/1353.epub3.images" + }, + "epub/regression/pg1354.epub": { + "sha256": "2d637eeedadd8177269229fefc5101a478a3aeb93b02c416bd8508aaa36ed9e4", + "size": 216470, + "url": "https://www.gutenberg.org/ebooks/1354.epub3.images" + }, + "epub/regression/pg1355.epub": { + "sha256": "517e210274c04c12bdb37f4a3d2f842ede67b5e865f62ea45920617c76496343", + "size": 198893, + "url": "https://www.gutenberg.org/ebooks/1355.epub3.images" + }, + "epub/regression/pg1356.epub": { + "sha256": "91f5e6da112552d210ca0532932145947f226906586252b1d29668cbe3a103bf", + "size": 367242, + "url": "https://www.gutenberg.org/ebooks/1356.epub3.images" + }, + "epub/regression/pg1357.epub": { + "sha256": "4dccbd5fca653a3f6627becd101f6f10968b9416bde9173258d8a36d9d3b665f", + "size": 95456, + "url": "https://www.gutenberg.org/ebooks/1357.epub3.images" + }, + "epub/regression/pg1358.epub": { + "sha256": "2246f645c793f72cb3cc8c4c440c6b9be98cc60f9a62edc9ac2d0ccee90fc016", + "size": 134858, + "url": "https://www.gutenberg.org/ebooks/1358.epub3.images" + }, + "epub/regression/pg1359.epub": { + "sha256": "c6ce6be8ceaf69abec72ed84360a1bdaecb2a87dc6a66f8723a0dff1a814b5bb", + "size": 133464, + "url": "https://www.gutenberg.org/ebooks/1359.epub3.images" + }, + "epub/regression/pg1360.epub": { + "sha256": "9c9e6be26543c64d2ebd05d7535d34352a8aafa573ca35cb71fc2ac92bbe6069", + "size": 175461, + "url": "https://www.gutenberg.org/ebooks/1360.epub3.images" + }, + "epub/regression/pg1361.epub": { + "sha256": "7d54892a5875279af8deae31a41a4dfeefe796629739f691f26d67d1d9ae5edb", + "size": 168846, + "url": "https://www.gutenberg.org/ebooks/1361.epub3.images" + }, + "epub/regression/pg1362.epub": { + "sha256": "48a59c0cb6aa9d224b2c1e2c19bccf4a642e9ac5628959ebc947c0f8ffe342bc", + "size": 163378, + "url": "https://www.gutenberg.org/ebooks/1362.epub3.images" + }, + "epub/regression/pg1363.epub": { + "sha256": "143874df0fa6d7978b4a8b7bd6d75b48168856ef1e3e2d2f33398a4ee5855c88", + "size": 161949, + "url": "https://www.gutenberg.org/ebooks/1363.epub3.images" + }, + "epub/regression/pg1364.epub": { + "sha256": "a4ee465fe7964e4c9e20accc23f4f35f5b81e36b0cfa6734e6b9e5a90b6a594c", + "size": 167523, + "url": "https://www.gutenberg.org/ebooks/1364.epub3.images" + }, + "epub/regression/pg1365.epub": { + "sha256": "34385ddf242cb02f937e24a8971a4a400155dac3c0213d07fc1ad2f446a4350a", + "size": 973045, + "url": "https://www.gutenberg.org/ebooks/1365.epub3.images" + }, + "epub/regression/pg1366.epub": { + "sha256": "ee627f53f3e0fe0d19572fe518f2181fbad243cba945e447566e1c8e7f58c525", + "size": 774831, + "url": "https://www.gutenberg.org/ebooks/1366.epub3.images" + }, + "epub/regression/pg1367.epub": { + "sha256": "e4a7a68001e72cbee5c55624d6e3a832189d9da2a2cc061814ffbbed0982a414", + "size": 87274, + "url": "https://www.gutenberg.org/ebooks/1367.epub3.images" + }, + "epub/regression/pg1368.epub": { + "sha256": "735f704df318d70b0de84998c4a2a1b879ea02553418d71c203f05b7ca6f27b5", + "size": 371247, + "url": "https://www.gutenberg.org/ebooks/1368.epub3.images" + }, + "epub/regression/pg1369.epub": { + "sha256": "c71b5ec6abce34ccc6bd1aa939c39f68a43ba40488c7ce52989e1aeaef478760", + "size": 123971, + "url": "https://www.gutenberg.org/ebooks/1369.epub3.images" + }, + "epub/regression/pg1370.epub": { + "sha256": "c0fd08a5e9f9c71386002d6dd30973d3e001b379728c9ec989ff122ba6a8980a", + "size": 576395, + "url": "https://www.gutenberg.org/ebooks/1370.epub3.images" + }, + "epub/regression/pg1371.epub": { + "sha256": "c54c57b83bb6e4bc981f37893a88e94c3ef5b9e436c35cbbb3ee2cedbe7ee074", + "size": 482399, + "url": "https://www.gutenberg.org/ebooks/1371.epub3.images" + }, + "epub/regression/pg1372.epub": { + "sha256": "b73ecfe7fb97275be5db37da2e9d69c393ac5699d6464df4f13445c460a1bec1", + "size": 369134, + "url": "https://www.gutenberg.org/ebooks/1372.epub3.images" + }, + "epub/regression/pg1373.epub": { + "sha256": "e92851a94c3bd3bdba885772c17d7e2a7a0233bbb47e02d7ca06f486e3bc0463", + "size": 74814, + "url": "https://www.gutenberg.org/ebooks/1373.epub3.images" + }, + "epub/regression/pg1374.epub": { + "sha256": "b0f108753b7abe44c894f12997172afae6081cfe143e5402835f44e3514f4696", + "size": 133962, + "url": "https://www.gutenberg.org/ebooks/1374.epub3.images" + }, + "epub/regression/pg1375.epub": { + "sha256": "646fe543d78533f52716a044206ab726b9b238b848978a49ba07e6cc74bc952b", + "size": 404757, + "url": "https://www.gutenberg.org/ebooks/1375.epub3.images" + }, + "epub/regression/pg1376.epub": { + "sha256": "8f80611d902c37227786be0fd6ae4c04c36b786d25d9aed139a967c6b7f7084a", + "size": 219387, + "url": "https://www.gutenberg.org/ebooks/1376.epub3.images" + }, + "epub/regression/pg1377.epub": { + "sha256": "f997319ac915949294b0c178a4b4b51bbd64d24a726b3cf8437271b73cdb96eb", + "size": 396529, + "url": "https://www.gutenberg.org/ebooks/1377.epub3.images" + }, + "epub/regression/pg1378.epub": { + "sha256": "bab969b33de3c8cff24b6aeb30931dd126a03409a7dd1628ff0f6d9a35dab2fd", + "size": 315527, + "url": "https://www.gutenberg.org/ebooks/1378.epub3.images" + }, + "epub/regression/pg1379.epub": { + "sha256": "0a7e2615b7936fca0fcd8ecd5f83d9b98098c065287bd4ca101e146c1ce6dc2a", + "size": 188306, + "url": "https://www.gutenberg.org/ebooks/1379.epub3.images" + }, + "epub/regression/pg1380.epub": { + "sha256": "40a7bfbdd36e9542afcf15edf4f326092bbf3e2b1b80e029e7169e1e2df1b76c", + "size": 336684, + "url": "https://www.gutenberg.org/ebooks/1380.epub3.images" + }, + "epub/regression/pg1381.epub": { + "sha256": "abcf7b1937b9467d6939f1c8413e9633cbe1635cc89e274c8285c67056a89395", + "size": 185873, + "url": "https://www.gutenberg.org/ebooks/1381.epub3.images" + }, + "epub/regression/pg1382.epub": { + "sha256": "2be97658c48c0f97f58498ee60821b648c0c8d41d57f6f4de078b6c61d6a83e5", + "size": 197692, + "url": "https://www.gutenberg.org/ebooks/1382.epub3.images" + }, + "epub/regression/pg1383.epub": { + "sha256": "7383b48893bc039436aabc59932104c4099795926f9c2cf9090dc2322298d0d7", + "size": 208946, + "url": "https://www.gutenberg.org/ebooks/1383.epub3.images" + }, + "epub/regression/pg1384.epub": { + "sha256": "d9608190272f39f6912314e57b78aa18c6ba3568e0cc424ed97442809c7a9422", + "size": 190011, + "url": "https://www.gutenberg.org/ebooks/1384.epub3.images" + }, + "epub/regression/pg1385.epub": { + "sha256": "f00a8d3b395b48d2be0381a6456d0361a07b952be38a41fd569dce117114c51c", + "size": 250890, + "url": "https://www.gutenberg.org/ebooks/1385.epub3.images" + }, + "epub/regression/pg1386.epub": { + "sha256": "5595dd91a7903c7f280e71c4e4602148b195e848cddda3c6d452a91a9efcbf6f", + "size": 304015, + "url": "https://www.gutenberg.org/ebooks/1386.epub3.images" + }, + "epub/regression/pg1387.epub": { + "sha256": "982669b35f5df61e4a7f08cc0b5bf21fe93f0e5abeeb87b162e521442069520d", + "size": 87379, + "url": "https://www.gutenberg.org/ebooks/1387.epub3.images" + }, + "epub/regression/pg1388.epub": { + "sha256": "271b45a112fe0646f2515c5c86efab94e32a0538f3bf6e92eef038a3b08cf174", + "size": 88422, + "url": "https://www.gutenberg.org/ebooks/1388.epub3.images" + }, + "epub/regression/pg1389.epub": { + "sha256": "e2e926f5f431ea67607e83ed8cc5b9743063057ed47197b1f6f2577e2b421258", + "size": 125127, + "url": "https://www.gutenberg.org/ebooks/1389.epub3.images" + }, + "epub/regression/pg1390.epub": { + "sha256": "c21555360c2098db6438b892bad7b4238123e1e1d168910b8e51c45f8a2c4fca", + "size": 234735, + "url": "https://www.gutenberg.org/ebooks/1390.epub3.images" + }, + "epub/regression/pg1391.epub": { + "sha256": "932e0c6e3e67ec2089b57ae65cbfa1335b21892ec835049946e42150ed29fb5b", + "size": 266292, + "url": "https://www.gutenberg.org/ebooks/1391.epub3.images" + }, + "epub/regression/pg1392.epub": { + "sha256": "8799b27d6913c0ce01f4fa87ddfd548605f88afac8672c7211d4f478902fc719", + "size": 98749, + "url": "https://www.gutenberg.org/ebooks/1392.epub3.images" + }, + "epub/regression/pg1393.epub": { + "sha256": "dd0b354e7a7778e1353b4a6e5119008ed3c4e5e6b1ddf6e8ffce0235aee745fb", + "size": 113482, + "url": "https://www.gutenberg.org/ebooks/1393.epub3.images" + }, + "epub/regression/pg1394.epub": { + "sha256": "d12a4033c8043d8e239a04846f29bcdb8632cf47056367503a2d3b572b99a094", + "size": 93176, + "url": "https://www.gutenberg.org/ebooks/1394.epub3.images" + }, + "epub/regression/pg1395.epub": { + "sha256": "0a97cc4bc6886be01bf243e36d8ae1f2ddc73ece5a84286ad52e1ea203ea7f77", + "size": 148603, + "url": "https://www.gutenberg.org/ebooks/1395.epub3.images" + }, + "epub/regression/pg1396.epub": { + "sha256": "bd565aad95b7deaff6bf554674b4159e5449420fcd09487eeff35d1dd2cb029d", + "size": 556455, + "url": "https://www.gutenberg.org/ebooks/1396.epub3.images" + }, + "epub/regression/pg1397.epub": { + "sha256": "43072140288a68eb725f1559b2e49448c485fb9bc2766ac269cfa6cbd9f84cfd", + "size": 314385, + "url": "https://www.gutenberg.org/ebooks/1397.epub3.images" + }, + "epub/regression/pg1398.epub": { + "sha256": "55d59b375baebfacc0c32602d00a7cfcd379881269e48748015ad70139227764", + "size": 115381, + "url": "https://www.gutenberg.org/ebooks/1398.epub3.images" + }, + "epub/regression/pg1399.epub": { + "sha256": "cb933684fcb5ddb4e5d1682861dabc00f1f124bccd06ea9465365e1acc89fb92", + "size": 870947, + "url": "https://www.gutenberg.org/ebooks/1399.epub3.images" + }, + "epub/regression/pg1400.epub": { + "sha256": "8c16144ed52d19340938136456dc0fe9824d1509abbaf7b5b0a88f70ecb3573e", + "size": 554463, + "url": "https://www.gutenberg.org/ebooks/1400.epub3.images" + }, + "epub/regression/pg1401.epub": { + "sha256": "20799d4ba0c5cbbd5bad9471d92e12c4d5e1203568512e4e8c4e1c41b7ca5117", + "size": 308487, + "url": "https://www.gutenberg.org/ebooks/1401.epub3.images" + }, + "epub/regression/pg1402.epub": { + "sha256": "0971c09f661b024a58dd76a342958a4ac571162072fa7a98e47872283adea157", + "size": 175168, + "url": "https://www.gutenberg.org/ebooks/1402.epub3.images" + }, + "epub/regression/pg1403.epub": { + "sha256": "7d34b03bd3a62f7176f3362c4d79e577c026cfba20fde9fd48ff02a7950ce262", + "size": 221850, + "url": "https://www.gutenberg.org/ebooks/1403.epub3.images" + }, + "epub/regression/pg1404.epub": { + "sha256": "1222b75379d3bf6920ebea2a1dafe1d9ff50d1147f5e0a78e7749ea268b9451e", + "size": 522354, + "url": "https://www.gutenberg.org/ebooks/1404.epub3.images" + }, + "epub/regression/pg1405.epub": { + "sha256": "7e476a0d312f627634675f4159cb7c30aa4385316782c153be8003566bf1a1b8", + "size": 213028, + "url": "https://www.gutenberg.org/ebooks/1405.epub3.images" + }, + "epub/regression/pg1406.epub": { + "sha256": "408ee91239b3f44fe3f706d67c58d83a6e9232f2753b44ff3aa2d172ab5265ba", + "size": 115957, + "url": "https://www.gutenberg.org/ebooks/1406.epub3.images" + }, + "epub/regression/pg1407.epub": { + "sha256": "6f34bb5dc4437cabf4ff30d748b38173bad8497e11249ac07714cecdbbf8f558", + "size": 96545, + "url": "https://www.gutenberg.org/ebooks/1407.epub3.images" + }, + "epub/regression/pg1408.epub": { + "sha256": "89674309a388b55983caa6d3384129fa0f2c66516d4ec68ddd9d11e48386c8a3", + "size": 382139, + "url": "https://www.gutenberg.org/ebooks/1408.epub3.images" + }, + "epub/regression/pg1409.epub": { + "sha256": "490e4595acef2dbeca63b5f461d99575f9d1f62b1219880e2d7447f6aac1facd", + "size": 179145, + "url": "https://www.gutenberg.org/ebooks/1409.epub3.images" + }, + "epub/regression/pg1410.epub": { + "sha256": "aa03da29a32b5c1b97ccc32161038b49ecd4e4a66efd5ab0e460faf302d8b765", + "size": 139829, + "url": "https://www.gutenberg.org/ebooks/1410.epub3.images" + }, + "epub/regression/pg1411.epub": { + "sha256": "4f0f27294d8fd34a8c385687ea81a9d84a66b443907c32b9424678317e8188de", + "size": 103645, + "url": "https://www.gutenberg.org/ebooks/1411.epub3.images" + }, + "epub/regression/pg1412.epub": { + "sha256": "d0d2ccf25e0fc0c25a95a5c8fd56b5756addaca2c87414566a61250e3be37ac9", + "size": 273153, + "url": "https://www.gutenberg.org/ebooks/1412.epub3.images" + }, + "epub/regression/pg1413.epub": { + "sha256": "612d81376b69fccf1d924b8e2c0fe6f1772a53876b6a1c761d635e39667f0ddb", + "size": 93343, + "url": "https://www.gutenberg.org/ebooks/1413.epub3.images" + }, + "epub/regression/pg1414.epub": { + "sha256": "687ca3e6a80ee91dce757cf5f89616f01c713d7650eb7b3ca1ce67ee654ec7e8", + "size": 107397, + "url": "https://www.gutenberg.org/ebooks/1414.epub3.images" + }, + "epub/regression/pg1415.epub": { + "sha256": "612518a44d386c690fcd0d7738ef62f44ca1a65f13b8889cb837af332411bd7a", + "size": 96036, + "url": "https://www.gutenberg.org/ebooks/1415.epub3.images" + }, + "epub/regression/pg1416.epub": { + "sha256": "1b3b24fb340ec9f72d1f9afc45b38d87063541e0808291f4bbf4dac2ef7d2fea", + "size": 108014, + "url": "https://www.gutenberg.org/ebooks/1416.epub3.images" + }, + "epub/regression/pg1417.epub": { + "sha256": "b1df4128ba9740e7a4338eb235fe964622502a6bbfa9193f563348b834161675", + "size": 366558, + "url": "https://www.gutenberg.org/ebooks/1417.epub3.images" + }, + "epub/regression/pg1418.epub": { + "sha256": "37300b75531b5f06af0c4dca4d96d200b3aab0bb07c58f80117b59f354a2d6cc", + "size": 101030, + "url": "https://www.gutenberg.org/ebooks/1418.epub3.images" + }, + "epub/regression/pg1419.epub": { + "sha256": "61ee3b2b6c76e5cfddd69715fc88eb8d071f25f59af41ea6d6d430a417dd3d85", + "size": 120705, + "url": "https://www.gutenberg.org/ebooks/1419.epub3.images" + }, + "epub/regression/pg1420.epub": { + "sha256": "5d309d008ada70154bfe6895d1a589005af536b3ff7271043c8a371e878a1bcf", + "size": 229616, + "url": "https://www.gutenberg.org/ebooks/1420.epub3.images" + }, + "epub/regression/pg1421.epub": { + "sha256": "44e3aa54c0156fb91a67937d12fbac7f688953d40f12b10c211efe52f3f381a7", + "size": 92781, + "url": "https://www.gutenberg.org/ebooks/1421.epub3.images" + }, + "epub/regression/pg1422.epub": { + "sha256": "0c57ea78acfbc4db15e1b3dc728523bbbd89eb04b19da4bc32bc415d99135dcf", + "size": 86010, + "url": "https://www.gutenberg.org/ebooks/1422.epub3.images" + }, + "epub/regression/pg1423.epub": { + "sha256": "a7ef5af2cf7022d5f9e4f04e27bd22ff37eef4d0898cc80a6ccbfbf544d435eb", + "size": 187605, + "url": "https://www.gutenberg.org/ebooks/1423.epub3.images" + }, + "epub/regression/pg1424.epub": { + "sha256": "de0116308c668e9d6f720ae4ce7a5890eede497c1925d083f94da5cb22bbe9de", + "size": 182018, + "url": "https://www.gutenberg.org/ebooks/1424.epub3.images" + }, + "epub/regression/pg1425.epub": { + "sha256": "9dc11e17d481bf16029f46f2cb27187822bfd6a855ac0f70628b0076e825937e", + "size": 79607, + "url": "https://www.gutenberg.org/ebooks/1425.epub3.images" + }, + "epub/regression/pg1426.epub": { + "sha256": "de53b723ce08e934877d080f84eb51b3f43f1a978903aa3cc7dbdaf43ef47352", + "size": 77435, + "url": "https://www.gutenberg.org/ebooks/1426.epub3.images" + }, + "epub/regression/pg1427.epub": { + "sha256": "94636da708859758f2c23e49a8f40c5a9c7f6396a42a61ede915d34ea66144e7", + "size": 95174, + "url": "https://www.gutenberg.org/ebooks/1427.epub3.images" + }, + "epub/regression/pg1428.epub": { + "sha256": "6e1d96193d560b3defb441fc9e4f17f3b883dbbbcbab8bd83330daf07a11758c", + "size": 90764, + "url": "https://www.gutenberg.org/ebooks/1428.epub3.images" + }, + "epub/regression/pg1429.epub": { + "sha256": "4a7d1f1a879b314d009889d900b37c3e66dc675b99780217b09de0af0e954a5d", + "size": 215637, + "url": "https://www.gutenberg.org/ebooks/1429.epub3.images" + }, + "epub/regression/pg1430.epub": { + "sha256": "e312312735c331590789a0efe9f5102e007173a3a2b69d3a9a45288f74f35e52", + "size": 188453, + "url": "https://www.gutenberg.org/ebooks/1430.epub3.images" + }, + "epub/regression/pg1431.epub": { + "sha256": "d7f1d6797a053267be665c9b56d104e1565be307f690e0c5ca5e2aac23c368b2", + "size": 122059, + "url": "https://www.gutenberg.org/ebooks/1431.epub3.images" + }, + "epub/regression/pg1432.epub": { + "sha256": "8059bdad5a5e1dd322b3ac74ea4804786722b0cd2b02741bea5f697c57f00ed9", + "size": 199946, + "url": "https://www.gutenberg.org/ebooks/1432.epub3.images" + }, + "epub/regression/pg1433.epub": { + "sha256": "79e1a6369a6ab870950eac723708f5d000a2efd824d13dbdad930d3056a6bfa5", + "size": 96335, + "url": "https://www.gutenberg.org/ebooks/1433.epub3.images" + }, + "epub/regression/pg1434.epub": { + "sha256": "95f0d7095e6de83d0c073308d1230c8c08efa59a36ca008f625d50c472615e01", + "size": 216475, + "url": "https://www.gutenberg.org/ebooks/1434.epub3.images" + }, + "epub/regression/pg1435.epub": { + "sha256": "398beae6b6752a8ca7333ec481092b65ac15c0a529658049a467e4d4ecb75ebe", + "size": 105181, + "url": "https://www.gutenberg.org/ebooks/1435.epub3.images" + }, + "epub/regression/pg1436.epub": { + "sha256": "5f4fd05c0089288ae5770b7375d900e497285344446f9075cbc87d526b1299a4", + "size": 159120, + "url": "https://www.gutenberg.org/ebooks/1436.epub3.images" + }, + "epub/regression/pg1437.epub": { + "sha256": "73410dc455861aad1fbbd4178643591bef227102f559202c94648fc2f7f75552", + "size": 121943, + "url": "https://www.gutenberg.org/ebooks/1437.epub3.images" + }, + "epub/regression/pg1438.epub": { + "sha256": "aef4a80818bfd7b531d68a5c8cb20ae9d93ddb1d253053c71404a34d4acefbe5", + "size": 730772, + "url": "https://www.gutenberg.org/ebooks/1438.epub3.images" + }, + "epub/regression/pg1439.epub": { + "sha256": "8f0cb2eb61e237efa132eff295624465d914b0049acc54196c28e189a5eb9462", + "size": 106044, + "url": "https://www.gutenberg.org/ebooks/1439.epub3.images" + }, + "epub/regression/pg1440.epub": { + "sha256": "92ca54edec783ba19d8bf68f3a23b86833e2dcfdc148d2b845be38c85fab334a", + "size": 206304, + "url": "https://www.gutenberg.org/ebooks/1440.epub3.images" + }, + "epub/regression/pg1441.epub": { + "sha256": "3247f6e28a7da300d0f8198fe7b46615f8b010096110ffd51555da556a7c2342", + "size": 311890, + "url": "https://www.gutenberg.org/ebooks/1441.epub3.images" + }, + "epub/regression/pg1442.epub": { + "sha256": "3863957de30c1e97ee5bdda5e33e0bca67d4fa9e0bc781cf92d1602ccfc1afe3", + "size": 245916, + "url": "https://www.gutenberg.org/ebooks/1442.epub3.images" + }, + "epub/regression/pg1443.epub": { + "sha256": "97366105dfdb0673d19063c6a224358dfcfd00250f737fe28752292282e66815", + "size": 207419, + "url": "https://www.gutenberg.org/ebooks/1443.epub3.images" + }, + "epub/regression/pg1444.epub": { + "sha256": "1d148c31e07a904082fb8eb7876d3e346c3e2c1cda55d761c1492911bc5e036d", + "size": 199146, + "url": "https://www.gutenberg.org/ebooks/1444.epub3.images" + }, + "epub/regression/pg1445.epub": { + "sha256": "ad5451de30110f629b6245cc43cd10b0846fbaecf7717b4cdc846378ee2955b9", + "size": 183933, + "url": "https://www.gutenberg.org/ebooks/1445.epub3.images" + }, + "epub/regression/pg1446.epub": { + "sha256": "1e5a4e6211357538473ead6df27d7cd47b86fac343ca6fe6b61994c825ae9216", + "size": 169649, + "url": "https://www.gutenberg.org/ebooks/1446.epub3.images" + }, + "epub/regression/pg1447.epub": { + "sha256": "c714dc730952e94cd54eb79fb9b7213dd9d7897b4ae590fef14c0c7bb95fcea1", + "size": 278638, + "url": "https://www.gutenberg.org/ebooks/1447.epub3.images" + }, + "epub/regression/pg1448.epub": { + "sha256": "3b58ff018fde19808ec2c97654a22ba411b88b30df2e2bd318b2215355aa7644", + "size": 258209, + "url": "https://www.gutenberg.org/ebooks/1448.epub3.images" + }, + "epub/regression/pg1449.epub": { + "sha256": "a7cd0e6feec8168b7100e0dbc0c31f64c556e53710e2d61876a242a5da89d9b6", + "size": 486310, + "url": "https://www.gutenberg.org/ebooks/1449.epub3.images" + }, + "epub/regression/pg1450.epub": { + "sha256": "26746471787b253878304a6d61557d4ebc09f098c0fa7416bd2a80baa5c5c100", + "size": 204421, + "url": "https://www.gutenberg.org/ebooks/1450.epub3.images" + }, + "epub/regression/pg1451.epub": { + "sha256": "b9043de17934c3c6ba113e6ef120f0fbd74015abba3bc54ce212a46d45e773cd", + "size": 190580, + "url": "https://www.gutenberg.org/ebooks/1451.epub3.images" + }, + "epub/regression/pg1452.epub": { + "sha256": "c3b1386589128e3509f78525aedc05e00927c218482f2ec7267f2a4e6f97c788", + "size": 396692, + "url": "https://www.gutenberg.org/ebooks/1452.epub3.images" + }, + "epub/regression/pg1453.epub": { + "sha256": "9abf26eeba5587cb707ae8aa6f25a23142ac515849b41b15d82a1e582211ff24", + "size": 245663, + "url": "https://www.gutenberg.org/ebooks/1453.epub3.images" + }, + "epub/regression/pg1454.epub": { + "sha256": "011ae17ca014a984af7e646527f6f90bd270a6a08f94cf8b4ad3c7edf8e272d6", + "size": 129051, + "url": "https://www.gutenberg.org/ebooks/1454.epub3.images" + }, + "epub/regression/pg1455.epub": { + "sha256": "66946dc81bc9bb842aa19318690cb09597e207f432ed61efb80f983bb3081181", + "size": 152905, + "url": "https://www.gutenberg.org/ebooks/1455.epub3.images" + }, + "epub/regression/pg1456.epub": { + "sha256": "7e91399ad2d5d3c55b1ad2dee957a499f1e5c72fe2454f7eb068cb568a140b55", + "size": 88440, + "url": "https://www.gutenberg.org/ebooks/1456.epub3.images" + }, + "epub/regression/pg1457.epub": { + "sha256": "6b882b44b7c45db94c0b767b5c5b9642944bb85829c20cf54d1d534da2583e83", + "size": 296449, + "url": "https://www.gutenberg.org/ebooks/1457.epub3.images" + }, + "epub/regression/pg1458.epub": { + "sha256": "1e23c5845187229b3800d2bd50a6709dd7979458e9d1771ffc2e42f1f07d011d", + "size": 84522, + "url": "https://www.gutenberg.org/ebooks/1458.epub3.images" + }, + "epub/regression/pg1459.epub": { + "sha256": "aabace0ebffd14e71657d49c1aae44bc65ec67cd2b34ac8f343bf984caac0779", + "size": 95039, + "url": "https://www.gutenberg.org/ebooks/1459.epub3.images" + }, + "epub/regression/pg1460.epub": { + "sha256": "fdc164ac089c83da829aaea4c78dfaa259f7dbe733517523d6e22e860612317a", + "size": 220383, + "url": "https://www.gutenberg.org/ebooks/1460.epub3.images" + }, + "epub/regression/pg1461.epub": { + "sha256": "4d20c41ff6495a85a550b7218a067f953c5331178f98509b5074675f4bdafc89", + "size": 304515, + "url": "https://www.gutenberg.org/ebooks/1461.epub3.images" + }, + "epub/regression/pg1462.epub": { + "sha256": "6122458a017e3b5188a7cad5c1cddf861b479338417b3bcd9368c1f6e53674b0", + "size": 101484, + "url": "https://www.gutenberg.org/ebooks/1462.epub3.images" + }, + "epub/regression/pg1463.epub": { + "sha256": "7a7475160843a34a96d5d3a0f41e7bf0c3ed20bdc1b4dbbe8ca044f8ba5f2e54", + "size": 224050, + "url": "https://www.gutenberg.org/ebooks/1463.epub3.images" + }, + "epub/regression/pg1464.epub": { + "sha256": "3aaace7d7e46591dce5feaa88bdaa7c5f7f94c1b3ee5b9e896529b97b49708d5", + "size": 111105, + "url": "https://www.gutenberg.org/ebooks/1464.epub3.images" + }, + "epub/regression/pg1465.epub": { + "sha256": "5b55d188a09c633e8c8f3a707af80b51bd47f4afe267f9843c7c50b792dd952f", + "size": 95619, + "url": "https://www.gutenberg.org/ebooks/1465.epub3.images" + }, + "epub/regression/pg1466.epub": { + "sha256": "870408d1b177d2d447d90a36a80a1f7d4bb6a1b64d32c48046a36bc353b7c118", + "size": 225830, + "url": "https://www.gutenberg.org/ebooks/1466.epub3.images" + }, + "epub/regression/pg1467.epub": { + "sha256": "4f6407e127529bc95d790bb7d2892e3bfef90c45cd3ae1beb17d913841669831", + "size": 125476, + "url": "https://www.gutenberg.org/ebooks/1467.epub3.images" + }, + "epub/regression/pg1468.epub": { + "sha256": "e2508103bb51abda82ea1b1b6a7d4bfafb3ae3d1f7523746cbb2d0c2c4bd4eb0", + "size": 634325, + "url": "https://www.gutenberg.org/ebooks/1468.epub3.images" + }, + "epub/regression/pg1469.epub": { + "sha256": "a556836c0848523219dd598a574079109445c88016c50c8f3cd7b67f7effb42d", + "size": 88199, + "url": "https://www.gutenberg.org/ebooks/1469.epub3.images" + }, + "epub/regression/pg1470.epub": { + "sha256": "779065c17d56094987f2bad29850e5653168d182534932742c2e1ab111e5bb0c", + "size": 271591, + "url": "https://www.gutenberg.org/ebooks/1470.epub3.images" + }, + "epub/regression/pg1471.epub": { + "sha256": "23fac28664dd18e717454317bfe7c22013b285fd6512b574f14535e818dbe5d3", + "size": 134198, + "url": "https://www.gutenberg.org/ebooks/1471.epub3.images" + }, + "epub/regression/pg1472.epub": { + "sha256": "e2d6248be46bb23048c74316798d15fbf4d783037ba912f8c5368644a4551028", + "size": 158874, + "url": "https://www.gutenberg.org/ebooks/1472.epub3.images" + }, + "epub/regression/pg1473.epub": { + "sha256": "4f3a1edba498ceb3335ecfc3ad4fcca9c84aa81c76488b47d6955978fc1168c5", + "size": 317633, + "url": "https://www.gutenberg.org/ebooks/1473.epub3.images" + }, + "epub/regression/pg1474.epub": { + "sha256": "c4b52f4a15c3bab0fa683f1ab63b9a6c17cbfb520cdc226146c99a598ea8bada", + "size": 114017, + "url": "https://www.gutenberg.org/ebooks/1474.epub3.images" + }, + "epub/regression/pg1475.epub": { + "sha256": "b194df93017667fd0dec43989992d45076cc7d031754775bdea2ef91ca18c1b9", + "size": 82414, + "url": "https://www.gutenberg.org/ebooks/1475.epub3.images" + }, + "epub/regression/pg1476.epub": { + "sha256": "464392fa2455bea6a66c5496f46fa4e6491d7eaf97de833bd9bac306fca7c958", + "size": 385114, + "url": "https://www.gutenberg.org/ebooks/1476.epub3.images" + }, + "epub/regression/pg1477.epub": { + "sha256": "eefb890f584a167a8272e70cd1e7515e967b0044e50200f0104cb64418915aeb", + "size": 231974, + "url": "https://www.gutenberg.org/ebooks/1477.epub3.images" + }, + "epub/regression/pg1478.epub": { + "sha256": "c97c3bffd96349541caf99e8330df155c720961b858924bd7cb73b024658a15c", + "size": 129576, + "url": "https://www.gutenberg.org/ebooks/1478.epub3.images" + }, + "epub/regression/pg1479.epub": { + "sha256": "701c2548e42a9eaccda4bafa73d44ce02437f831d5c26311ed87ad8b5b4cf624", + "size": 324507, + "url": "https://www.gutenberg.org/ebooks/1479.epub3.images" + }, + "epub/regression/pg1480.epub": { + "sha256": "d03c3d3c18a172426709351de188b32e7f13cd879c20200b11ea6a5094bb92ad", + "size": 331739, + "url": "https://www.gutenberg.org/ebooks/1480.epub3.images" + }, + "epub/regression/pg1481.epub": { + "sha256": "9ad90b45ae1300b819b0a7a1008a6a7a938b56510209424d710f680790c8abff", + "size": 180982, + "url": "https://www.gutenberg.org/ebooks/1481.epub3.images" + }, + "epub/regression/pg1482.epub": { + "sha256": "02b3de518a6925145359ae5e317882440a4aa290b6f231581c5f21372c0814dd", + "size": 312487, + "url": "https://www.gutenberg.org/ebooks/1482.epub3.images" + }, + "epub/regression/pg1483.epub": { + "sha256": "ddb9b4e5584994d5f02e758df13f3fa373c0946ef6761aa341eda734c9b514d7", + "size": 319010, + "url": "https://www.gutenberg.org/ebooks/1483.epub3.images" + }, + "epub/regression/pg1484.epub": { + "sha256": "fa6412107347021d5adb1fa5c709e48af9d3baa04a51af6c07a06f352677b10c", + "size": 435956, + "url": "https://www.gutenberg.org/ebooks/1484.epub3.images" + }, + "epub/regression/pg1485.epub": { + "sha256": "a84f8a3f8256429f651db342153424cf4bbc59141e6ed00d5621bf95c07d9b90", + "size": 309287, + "url": "https://www.gutenberg.org/ebooks/1485.epub3.images" + }, + "epub/regression/pg1486.epub": { + "sha256": "e406d5562bd6da45d5b6987fb0ddf02ed40358d5f800c4b8b8731609bf1bf7b4", + "size": 323690, + "url": "https://www.gutenberg.org/ebooks/1486.epub3.images" + }, + "epub/regression/pg1487.epub": { + "sha256": "67a79fc67c3455c3fd838a1808e55a774bfa44a78728ab6b9fea2cdb28fa50a8", + "size": 180938, + "url": "https://www.gutenberg.org/ebooks/1487.epub3.images" + }, + "epub/regression/pg1488.epub": { + "sha256": "1f7c0e5e7bee57f8bbae3d9024ce425e28860a5dd45d35578bbf5e0530400b88", + "size": 131076, + "url": "https://www.gutenberg.org/ebooks/1488.epub3.images" + }, + "epub/regression/pg1489.epub": { + "sha256": "ec000f77a71c717013d1569f44db8110ec4c554a6a5288da6af83be790025783", + "size": 83991, + "url": "https://www.gutenberg.org/ebooks/1489.epub3.images" + }, + "epub/regression/pg1490.epub": { + "sha256": "b9ab9632bd9d566f76d18d9c73dfaea1c6c66e14b42ac8a439d0a0e0f9146de3", + "size": 202102, + "url": "https://www.gutenberg.org/ebooks/1490.epub3.images" + }, + "epub/regression/pg1491.epub": { + "sha256": "cc97d73e5d1a278b369b2af9ddaf48ddf6ee214f6e43a80644c27f6a91bbbeeb", + "size": 168036, + "url": "https://www.gutenberg.org/ebooks/1491.epub3.images" + }, + "epub/regression/pg1492.epub": { + "sha256": "280257bd8f9c5348498d28f4e6e3860db5e9d442084fe1ff3ae22b0e44ec0d1d", + "size": 201392, + "url": "https://www.gutenberg.org/ebooks/1492.epub3.images" + }, + "epub/regression/pg1493.epub": { + "sha256": "139e44a04493c12902ba531279d233e1bda89d3a56eb29caa1e5bb1fc00fc99a", + "size": 356192, + "url": "https://www.gutenberg.org/ebooks/1493.epub3.images" + }, + "epub/regression/pg1494.epub": { + "sha256": "7e5c20cbef985cd6d2d3359f27230b6188696aed2559331a1aa823a19b37e709", + "size": 401452, + "url": "https://www.gutenberg.org/ebooks/1494.epub3.images" + }, + "epub/regression/pg1495.epub": { + "sha256": "77d1712cb7647aaf2a167a18938419b8acdb9d7105b5bbd0fc27cc64cd1506a9", + "size": 226238, + "url": "https://www.gutenberg.org/ebooks/1495.epub3.images" + }, + "epub/regression/pg1496.epub": { + "sha256": "f9a62dcad2903b8bafb758531ce0b85d226fbc468cca823b5965122f5ebf9f31", + "size": 104075, + "url": "https://www.gutenberg.org/ebooks/1496.epub3.images" + }, + "epub/regression/pg1497.epub": { + "sha256": "b6b29acc2b47914e0ea1b5ea0d6a44a2b3d4148232e69524a467929545f3a2f2", + "size": 523761, + "url": "https://www.gutenberg.org/ebooks/1497.epub3.images" + }, + "epub/regression/pg1498.epub": { + "sha256": "b2af7e99766faecb9562bf67a207ff6dc43f98d8840b0ec8954fe06cafb5ee64", + "size": 287895, + "url": "https://www.gutenberg.org/ebooks/1498.epub3.images" + }, + "epub/regression/pg1499.epub": { + "sha256": "e93f201ccdb12dc093e1f31a6d704defd0698dd2b96dcf0bdda52e9f4cdb0338", + "size": 313785, + "url": "https://www.gutenberg.org/ebooks/1499.epub3.images" + }, + "epub/regression/pg1500.epub": { + "sha256": "bbe84566d7f9834012eb6fada6f538d5ccf3debbd8a6264ab08fce6f9dd19cf5", + "size": 201973, + "url": "https://www.gutenberg.org/ebooks/1500.epub3.images" + }, + "epub/regression/pg1501.epub": { + "sha256": "1020945a46797f9c4532f7c25582af8c5ed7f4aca2e562cf2565282bf8452964", + "size": 209130, + "url": "https://www.gutenberg.org/ebooks/1501.epub3.images" + }, + "epub/regression/pg1502.epub": { + "sha256": "b6b5b4c15cb81f3aa28454e72e07576fc4a8110dd87e943c06842d54e7eb1d27", + "size": 205552, + "url": "https://www.gutenberg.org/ebooks/1502.epub3.images" + }, + "epub/regression/pg1503.epub": { + "sha256": "40bf85a7f377537d96d960b9f4ef2bcf50f6a3eb370924c0ead74a006cfc88c5", + "size": 221906, + "url": "https://www.gutenberg.org/ebooks/1503.epub3.images" + }, + "epub/regression/pg1504.epub": { + "sha256": "bd22dad16958d432a506282115fb4b24d08f00345190470d5a0a89bc4838a9a4", + "size": 181012, + "url": "https://www.gutenberg.org/ebooks/1504.epub3.images" + }, + "epub/regression/pg1505.epub": { + "sha256": "c1d89a9ff2d72baeb7b462c3fc9dcad23784253880c352c1eb6294f88d7f4c08", + "size": 115418, + "url": "https://www.gutenberg.org/ebooks/1505.epub3.images" + }, + "epub/regression/pg1506.epub": { + "sha256": "7bf5f15f33aa96c9028c4b4101d90900c4562162517e3dd9b8b997a755051bd1", + "size": 150308, + "url": "https://www.gutenberg.org/ebooks/1506.epub3.images" + }, + "epub/regression/pg1507.epub": { + "sha256": "c5be1b0e3d99d17976d3e5e2213e1970cd251ed07217c2ce13a8c904d06a7a9f", + "size": 188311, + "url": "https://www.gutenberg.org/ebooks/1507.epub3.images" + }, + "epub/regression/pg1508.epub": { + "sha256": "d39bcdffb3f11474b22ce151bdf847af8b9ea16f47bb6b4fa2f35a56108c602e", + "size": 194605, + "url": "https://www.gutenberg.org/ebooks/1508.epub3.images" + }, + "epub/regression/pg1509.epub": { + "sha256": "c5d9a06d98ef621ccefe5ff3f9fc065475a372f520d6ec50889f08395a78b2ee", + "size": 188333, + "url": "https://www.gutenberg.org/ebooks/1509.epub3.images" + }, + "epub/regression/pg1510.epub": { + "sha256": "95eac4eeebd0efad28afbaa9fca59f1c7ed8fff90ca24f4351ace3d8c86b42c6", + "size": 200886, + "url": "https://www.gutenberg.org/ebooks/1510.epub3.images" + }, + "epub/regression/pg1511.epub": { + "sha256": "1704a7d37079d4ae3eaf83d26b69232545ced33ba24ceb574c5452d32ae68253", + "size": 199086, + "url": "https://www.gutenberg.org/ebooks/1511.epub3.images" + }, + "epub/regression/pg1512.epub": { + "sha256": "3f1a8637398fb401df831d80afe87b5509c232a9ec2a69dda2a89f7f81efde16", + "size": 199831, + "url": "https://www.gutenberg.org/ebooks/1512.epub3.images" + }, + "epub/regression/pg1513.epub": { + "sha256": "9ba25c6ecd89cf6a233040a2dfbc44961e11e841b94023c4d8b43b411150c1d6", + "size": 199219, + "url": "https://www.gutenberg.org/ebooks/1513.epub3.images" + }, + "epub/regression/pg1514.epub": { + "sha256": "5c85f72d6ab1f6f06900ebdeed907916376aaee67913d16bd32c45148ea670b1", + "size": 188067, + "url": "https://www.gutenberg.org/ebooks/1514.epub3.images" + }, + "epub/regression/pg1515.epub": { + "sha256": "e3eca15ce7e0d98f1f37a3550909a3cc53d1ca314e538c65f6c7bc509dc9db37", + "size": 193235, + "url": "https://www.gutenberg.org/ebooks/1515.epub3.images" + }, + "epub/regression/pg1516.epub": { + "sha256": "ee2d32aa7fde5aab6c42b368d6304f186f3fdbc02fd80afea2f9c7ddf548859c", + "size": 203237, + "url": "https://www.gutenberg.org/ebooks/1516.epub3.images" + }, + "epub/regression/pg1517.epub": { + "sha256": "ae1902be2af80f01befc6b02d008b9ec926da7dd2f4485dd6f9dc25b451f08d2", + "size": 199352, + "url": "https://www.gutenberg.org/ebooks/1517.epub3.images" + }, + "epub/regression/pg1518.epub": { + "sha256": "f3a422d2eaf35d66e3e87a0166f2cfff68ec403b7ae4d25ac5611d6c984ce875", + "size": 209297, + "url": "https://www.gutenberg.org/ebooks/1518.epub3.images" + }, + "epub/regression/pg1519.epub": { + "sha256": "797397a3f7511e53519b3308db15ddbceaa781b845ed1ec7c1683417b1308ae7", + "size": 196961, + "url": "https://www.gutenberg.org/ebooks/1519.epub3.images" + }, + "epub/regression/pg1520.epub": { + "sha256": "632a64b40bd63a04ab7a1f39307f0d3fdfb1d0d360a363f0d006e1488bf40276", + "size": 127756, + "url": "https://www.gutenberg.org/ebooks/1520.epub3.images" + }, + "epub/regression/pg1521.epub": { + "sha256": "ed63539eea2b97534a7c621f1c6ad482e15ef1d48ab4cc3329eac774f5162007", + "size": 202884, + "url": "https://www.gutenberg.org/ebooks/1521.epub3.images" + }, + "epub/regression/pg1522.epub": { + "sha256": "563042f511408af86c195e2cdaa8af97ef09e0ae66e21e19a001952dac199c26", + "size": 185750, + "url": "https://www.gutenberg.org/ebooks/1522.epub3.images" + }, + "epub/regression/pg1523.epub": { + "sha256": "bb042fcaa5e2365154feea593b1898142c043e976a9333d2174e28647762c276", + "size": 198297, + "url": "https://www.gutenberg.org/ebooks/1523.epub3.images" + }, + "epub/regression/pg1524.epub": { + "sha256": "7b2b49f117b5e8277cf646e3c56f3bc6670c2d59f0bb880ad58edd07be4b8347", + "size": 213985, + "url": "https://www.gutenberg.org/ebooks/1524.epub3.images" + }, + "epub/regression/pg1525.epub": { + "sha256": "ac2ac51a226dc7e8fdf99b66c9a01ae9b8284ead6ca18f9a998dcadf8673ec2a", + "size": 189241, + "url": "https://www.gutenberg.org/ebooks/1525.epub3.images" + }, + "epub/regression/pg1526.epub": { + "sha256": "5f046c9e599180036ff5025eed9fb233d3330c625809e0729aaad9d591698c28", + "size": 194506, + "url": "https://www.gutenberg.org/ebooks/1526.epub3.images" + }, + "epub/regression/pg1527.epub": { + "sha256": "00a512faa0a33044f612f3bf9158c24776ed88a132d2ca5fb609f2f0e5bf7fcd", + "size": 126902, + "url": "https://www.gutenberg.org/ebooks/1527.epub3.images" + }, + "epub/regression/pg1528.epub": { + "sha256": "1a46cfa55a174319dd3925b13bd9ad980fcdcbeeedd960e9f570de64dd24baed", + "size": 205863, + "url": "https://www.gutenberg.org/ebooks/1528.epub3.images" + }, + "epub/regression/pg1529.epub": { + "sha256": "74a96603a7457a94429e991772c74da3a999cce1c80edaf2f5ae4ce1df14e637", + "size": 204839, + "url": "https://www.gutenberg.org/ebooks/1529.epub3.images" + }, + "epub/regression/pg1530.epub": { + "sha256": "022b9dd2609b0f188430b7708b7d0e113a6448114cb6c45db9b9ed5be3830971", + "size": 199935, + "url": "https://www.gutenberg.org/ebooks/1530.epub3.images" + }, + "epub/regression/pg1531.epub": { + "sha256": "038f1cc976cca5c9332f59e19b19437a65ae4585c6dfe6f4d6617e27140f1b0e", + "size": 202271, + "url": "https://www.gutenberg.org/ebooks/1531.epub3.images" + }, + "epub/regression/pg1532.epub": { + "sha256": "7d5d0c9b97f13c934626a49aabc026f0c8212021cd904a40509483585639e0b2", + "size": 204966, + "url": "https://www.gutenberg.org/ebooks/1532.epub3.images" + }, + "epub/regression/pg1533.epub": { + "sha256": "1fbf4d04697d117384849adc5eaa0cd52782a7acf66966b1ce8da808840ec3cc", + "size": 183113, + "url": "https://www.gutenberg.org/ebooks/1533.epub3.images" + }, + "epub/regression/pg1534.epub": { + "sha256": "467e79a0e2ae1f53960b9579191521aa4f2aee25f5dad88b1aa697490c8fee1a", + "size": 205092, + "url": "https://www.gutenberg.org/ebooks/1534.epub3.images" + }, + "epub/regression/pg1535.epub": { + "sha256": "3ecea50d0d4b79132e97a73c990babd850fd0aa60c485ed7bb725c39d478933a", + "size": 207667, + "url": "https://www.gutenberg.org/ebooks/1535.epub3.images" + }, + "epub/regression/pg1536.epub": { + "sha256": "d7223ebd67a3f0f58f4868d4601abab41b224fde483e5884ffc19765328826a6", + "size": 184847, + "url": "https://www.gutenberg.org/ebooks/1536.epub3.images" + }, + "epub/regression/pg1537.epub": { + "sha256": "eda331332b3155f3f34c972cfc052fb55dd129f49a6558ae93ba68bc585b6ba6", + "size": 131148, + "url": "https://www.gutenberg.org/ebooks/1537.epub3.images" + }, + "epub/regression/pg1538.epub": { + "sha256": "c563707d9c268d4d02c3aa8cd2b7486d491c90decd2fe046a165e950e610e75e", + "size": 209528, + "url": "https://www.gutenberg.org/ebooks/1538.epub3.images" + }, + "epub/regression/pg1539.epub": { + "sha256": "9fe5c4097b40cb7c5c68333305e34c6566c4dbbc34053f1b8f64368d9fe2993e", + "size": 208214, + "url": "https://www.gutenberg.org/ebooks/1539.epub3.images" + }, + "epub/regression/pg1540.epub": { + "sha256": "4f2780cd0cf5e0fd157c6202531ee10b536cfe95a006b92dea02c9cee721ba7d", + "size": 181506, + "url": "https://www.gutenberg.org/ebooks/1540.epub3.images" + }, + "epub/regression/pg1541.epub": { + "sha256": "9281878149be46a38ea286b299d28f9ff69612ec1de03e6ebd4ba9a9364eba97", + "size": 207921, + "url": "https://www.gutenberg.org/ebooks/1541.epub3.images" + }, + "epub/regression/pg1542.epub": { + "sha256": "141bc9dfcc5cfa8edfcc39ea4e5f73139193ee3cdff68a5b4c2c7546b460413a", + "size": 140553, + "url": "https://www.gutenberg.org/ebooks/1542.epub3.images" + }, + "epub/regression/pg1543.epub": { + "sha256": "1cb2832831c29bae3a21f8169635c7251511a701200b2a0563e515a9e4561dd7", + "size": 66315, + "url": "https://www.gutenberg.org/ebooks/1543.epub3.images" + }, + "epub/regression/pg1544.epub": { + "sha256": "eeb3ebcd79e3bd02fbd64f088cb4011bf40bbcf7a91f4db5e5cfc675f6d2b244", + "size": 94161, + "url": "https://www.gutenberg.org/ebooks/1544.epub3.images" + }, + "epub/regression/pg1545.epub": { + "sha256": "16abdab73798a13fcca8125089e1d0a8f1a94d455456e754aa455cf2f4556881", + "size": 192565, + "url": "https://www.gutenberg.org/ebooks/1545.epub3.images" + }, + "epub/regression/pg1546.epub": { + "sha256": "179e6b4a29f450cbcde9e5693213134f453b4430fb1f8c492016d2fa107747f5", + "size": 74946, + "url": "https://www.gutenberg.org/ebooks/1546.epub3.images" + }, + "epub/regression/pg1547.epub": { + "sha256": "563bbe43efed10b2ac8d8f1a353af6cf7c26515b55e136798a764ed1d7d80506", + "size": 120988, + "url": "https://www.gutenberg.org/ebooks/1547.epub3.images" + }, + "epub/regression/pg1548.epub": { + "sha256": "3e621d61a350a01e50a9e2426bd207e0e11b8536362c2d1a40752a0f373c5d05", + "size": 185604, + "url": "https://www.gutenberg.org/ebooks/1548.epub3.images" + }, + "epub/regression/pg1549.epub": { + "sha256": "62341d45dceb4255dd1eb40583a25e465ff8a01cc5cac5968b9ad121af70c42b", + "size": 278212, + "url": "https://www.gutenberg.org/ebooks/1549.epub3.images" + }, + "epub/regression/pg1550.epub": { + "sha256": "2a10ee013b3b67d1eabb1d6889140efab206ceba6405e324581922738e01cf25", + "size": 261676, + "url": "https://www.gutenberg.org/ebooks/1550.epub3.images" + }, + "epub/regression/pg1551.epub": { + "sha256": "bc40a0037358cd26ef2460631ac99bef31822c22bc6f8892f1e94e0b2df33f09", + "size": 81711, + "url": "https://www.gutenberg.org/ebooks/1551.epub3.images" + }, + "epub/regression/pg1552.epub": { + "sha256": "63ea337868814130b2feb1433ff6cd383ed1daf874b4472bb867c5a7bc884cb3", + "size": 363697, + "url": "https://www.gutenberg.org/ebooks/1552.epub3.images" + }, + "epub/regression/pg1553.epub": { + "sha256": "2fe2db3b5dc8191f2e4bccb5a17a223801791c358cd4236016bd850150c7adc9", + "size": 98882, + "url": "https://www.gutenberg.org/ebooks/1553.epub3.images" + }, + "epub/regression/pg1554.epub": { + "sha256": "af700ac44737e3f97663505d813f4b198847045bafcb55670a738fadb79780bb", + "size": 102402, + "url": "https://www.gutenberg.org/ebooks/1554.epub3.images" + }, + "epub/regression/pg1555.epub": { + "sha256": "aff79f5cf8172be9a056b146a29df96d429fb51808a939d9289d69b1bcd9479c", + "size": 88534, + "url": "https://www.gutenberg.org/ebooks/1555.epub3.images" + }, + "epub/regression/pg1556.epub": { + "sha256": "d1509cabdecb9cf635b6507a4d88bc89284f4699f01ec9c8bf081b6840f75a2f", + "size": 195735, + "url": "https://www.gutenberg.org/ebooks/1556.epub3.images" + }, + "epub/regression/pg1557.epub": { + "sha256": "4460434c5cf64885396b467be09949d1ad151b18c054706bcb5c0acb0a834e69", + "size": 229015, + "url": "https://www.gutenberg.org/ebooks/1557.epub3.images" + }, + "epub/regression/pg1558.epub": { + "sha256": "8ebced8a02d60f83e9abfb3f771de4793e4888672846c56ad408b2381f321901", + "size": 295153, + "url": "https://www.gutenberg.org/ebooks/1558.epub3.images" + }, + "epub/regression/pg1559.epub": { + "sha256": "bf16b952902ca39c9da0ea77ae36fc14fc87648c82566bab678ba1bc232df785", + "size": 369097, + "url": "https://www.gutenberg.org/ebooks/1559.epub3.images" + }, + "epub/regression/pg1560.epub": { + "sha256": "fa7df9703e796930c09f683e404aa75a97ae42003622b14f37d34549add7d1fe", + "size": 379714, + "url": "https://www.gutenberg.org/ebooks/1560.epub3.images" + }, + "epub/regression/pg1561.epub": { + "sha256": "ef494bbd9a4dbd9768a30e1d71dcc6821157639e652333480f84c06914e71af6", + "size": 324681, + "url": "https://www.gutenberg.org/ebooks/1561.epub3.images" + }, + "epub/regression/pg1562.epub": { + "sha256": "363f35e02d6b2e1507574ab57c504aabdbd20538dd1b0b4d276b05de092a223d", + "size": 210644, + "url": "https://www.gutenberg.org/ebooks/1562.epub3.images" + }, + "epub/regression/pg1563.epub": { + "sha256": "3d60e09b7c100e1fbf463e22487828d33e89c72b75bf57806e65d7c6fd76936e", + "size": 281609, + "url": "https://www.gutenberg.org/ebooks/1563.epub3.images" + }, + "epub/regression/pg1564.epub": { + "sha256": "a44c44e365f26057721cbf6f587656d78e9b5cce1fb05a8c835b037f19fd2b70", + "size": 599118, + "url": "https://www.gutenberg.org/ebooks/1564.epub3.images" + }, + "epub/regression/pg1565.epub": { + "sha256": "ad88cfe278f282d497a2d126959a1b5b1e648a134a07d9c54ea4fb395baeeebf", + "size": 462879, + "url": "https://www.gutenberg.org/ebooks/1565.epub3.images" + }, + "epub/regression/pg1566.epub": { + "sha256": "c400223f4d049c249420695cfcfa570d5ba62c9e7062ab8f05e066374acd159d", + "size": 249408, + "url": "https://www.gutenberg.org/ebooks/1566.epub3.images" + }, + "epub/regression/pg1567.epub": { + "sha256": "113c33040d3ba64a95e3a6bab7821f39eef6d78a929e7985c7ab661a370b528d", + "size": 81199, + "url": "https://www.gutenberg.org/ebooks/1567.epub3.images" + }, + "epub/regression/pg1568.epub": { + "sha256": "3bfedf9892c2b9b78fc3354f3f840714205769a5117dbbea3529c2e7650eeef9", + "size": 136130, + "url": "https://www.gutenberg.org/ebooks/1568.epub3.images" + }, + "epub/regression/pg1569.epub": { + "sha256": "bac8d03fe565be3b8fe07cc3ae896a1faa3029bce48f07aa309cf09e4bb3b422", + "size": 313088, + "url": "https://www.gutenberg.org/ebooks/1569.epub3.images" + }, + "epub/regression/pg1570.epub": { + "sha256": "a0ac04ab104caccf983d91e6c3c2f45c250b220ecc2b0af7a8067bd597659e82", + "size": 156811, + "url": "https://www.gutenberg.org/ebooks/1570.epub3.images" + }, + "epub/regression/pg1571.epub": { + "sha256": "765427ba62ac01dcca6062688a29da114668b4bcb266807d4792126eb447b7a8", + "size": 76756, + "url": "https://www.gutenberg.org/ebooks/1571.epub3.images" + }, + "epub/regression/pg1572.epub": { + "sha256": "81c2dd01ab4b8c58f42ee4f2dcc7d401253fb9b0a3c1a587886cca86e16e5a15", + "size": 221072, + "url": "https://www.gutenberg.org/ebooks/1572.epub3.images" + }, + "epub/regression/pg1573.epub": { + "sha256": "05d1e922e80386df24e22f860d2e7c0e07eb202b75d80285030aca9c377936f0", + "size": 221997, + "url": "https://www.gutenberg.org/ebooks/1573.epub3.images" + }, + "epub/regression/pg1574.epub": { + "sha256": "334686b62643693bf3bc0d7955ac2e7a4302216e16331abb7acb32f37c43e675", + "size": 177782, + "url": "https://www.gutenberg.org/ebooks/1574.epub3.images" + }, + "epub/regression/pg1575.epub": { + "sha256": "f3f074498aa7092fed3d5b008d3eb51cade4431fddfc0550ee4f3acc744c5995", + "size": 358079, + "url": "https://www.gutenberg.org/ebooks/1575.epub3.images" + }, + "epub/regression/pg1576.epub": { + "sha256": "07d09f8ad45ffd9ac7b86e254490adeff2cd5b5c191bfb1fc481756133dc874d", + "size": 394499, + "url": "https://www.gutenberg.org/ebooks/1576.epub3.images" + }, + "epub/regression/pg1577.epub": { + "sha256": "28988b8bfac91199cc1476f2342fefd04b6ebb3bbbfc60a4bc33ca4a33c32baf", + "size": 228773, + "url": "https://www.gutenberg.org/ebooks/1577.epub3.images" + }, + "epub/regression/pg1578.epub": { + "sha256": "7a55edddb6f102ed121f7c1e5061ac02151f6ef7d3690384e5a3c3671d8b28f9", + "size": 98337, + "url": "https://www.gutenberg.org/ebooks/1578.epub3.images" + }, + "epub/regression/pg1579.epub": { + "sha256": "490af470090341fb935aaf69da7d654123074bbfc00e32452274b4610f2311a2", + "size": 82886, + "url": "https://www.gutenberg.org/ebooks/1579.epub3.images" + }, + "epub/regression/pg1580.epub": { + "sha256": "fcd92fd504924e109762d7b8f888bcf476b818edea7d2f9782d93d2e6fcab490", + "size": 114672, + "url": "https://www.gutenberg.org/ebooks/1580.epub3.images" + }, + "epub/regression/pg1581.epub": { + "sha256": "d3916c254eee6765a68fa7f8fbaeac1e42d9aa5410559cc686b18084fd5dbb0b", + "size": 3343239, + "url": "https://www.gutenberg.org/ebooks/1581.epub3.images" + }, + "epub/regression/pg1582.epub": { + "sha256": "7aa63f85a2a5e7c5ecb77823cad22a5c90bb8cd8ab071215b770bade8ab006e6", + "size": 548718, + "url": "https://www.gutenberg.org/ebooks/1582.epub3.images" + }, + "epub/regression/pg1583.epub": { + "sha256": "28126ccf5ab2210015e2d2ea90db27d7666a0699786978609db247a57c4685de", + "size": 219408, + "url": "https://www.gutenberg.org/ebooks/1583.epub3.images" + }, + "epub/regression/pg1584.epub": { + "sha256": "29602752aa71594814697f0c216abdd0b82e8e65ad03ffd8f74be351cc067ddf", + "size": 80916, + "url": "https://www.gutenberg.org/ebooks/1584.epub3.images" + }, + "epub/regression/pg1585.epub": { + "sha256": "018bd616a8017e81460788fd9fdfdb2f8da12514393bf3d0b8ab3b678128c1d0", + "size": 221895, + "url": "https://www.gutenberg.org/ebooks/1585.epub3.images" + }, + "epub/regression/pg1586.epub": { + "sha256": "b853f2751d71a4d55836e272df42ec9641674237adb18809342a49dae16c7d99", + "size": 628887, + "url": "https://www.gutenberg.org/ebooks/1586.epub3.images" + }, + "epub/regression/pg1587.epub": { + "sha256": "51dd888d455997a045c5a2f112ab931ee81d9da3d2eb37c8db31fae46bffab30", + "size": 334097, + "url": "https://www.gutenberg.org/ebooks/1587.epub3.images" + }, + "epub/regression/pg1588.epub": { + "sha256": "a4256b18cb5b233a6133102815ddaafb72c8bb4e030b04c4cdee1d3d6f3e7d70", + "size": 188668, + "url": "https://www.gutenberg.org/ebooks/1588.epub3.images" + }, + "epub/regression/pg1589.epub": { + "sha256": "09d028f098a3976f196822f84ac514b096fdd616383848feb35910351088707c", + "size": 145082, + "url": "https://www.gutenberg.org/ebooks/1589.epub3.images" + }, + "epub/regression/pg1590.epub": { + "sha256": "ae10ae25971d64933136cd6c4da934cbe21b8ae0a8b24cf7b98480d57703be1c", + "size": 228671, + "url": "https://www.gutenberg.org/ebooks/1590.epub3.images" + }, + "epub/regression/pg1591.epub": { + "sha256": "e30711e1abe1cc2148f6f75153d9beef1d99f9387444270f3007fc5a49f222ed", + "size": 122589, + "url": "https://www.gutenberg.org/ebooks/1591.epub3.images" + }, + "epub/regression/pg1592.epub": { + "sha256": "16c8ef9278304d39c3c2f6db7371aecdaadf5941faa8081e950243c098340723", + "size": 219447, + "url": "https://www.gutenberg.org/ebooks/1592.epub3.images" + }, + "epub/regression/pg1593.epub": { + "sha256": "b499ac6bf865ece2bf2296182caea2b245ff1b961e05656e8745027c99b2d85f", + "size": 173937, + "url": "https://www.gutenberg.org/ebooks/1593.epub3.images" + }, + "epub/regression/pg1594.epub": { + "sha256": "2ee3699627b4bc0fa68609a45179863a3a80791d2d48db06110f4839ed842f5a", + "size": 215891, + "url": "https://www.gutenberg.org/ebooks/1594.epub3.images" + }, + "epub/regression/pg1595.epub": { + "sha256": "1e771deff1771a98d2253650068e33809336abbe54270db9810634f311caa303", + "size": 395500, + "url": "https://www.gutenberg.org/ebooks/1595.epub3.images" + }, + "epub/regression/pg1596.epub": { + "sha256": "ade587b52f01e1d2eadf5c69b36c2229fcf0fe1d236ce274d51842710153b267", + "size": 172045, + "url": "https://www.gutenberg.org/ebooks/1596.epub3.images" + }, + "epub/regression/pg1597.epub": { + "sha256": "be516d1ba9f298b4fa0404a2d824fbe6e5915c86b94f0c1718ad67dbae1776fb", + "size": 217450, + "url": "https://www.gutenberg.org/ebooks/1597.epub3.images" + }, + "epub/regression/pg1598.epub": { + "sha256": "5f958d3567dcb935afde0c4bdcb2b276d010dd36856ff493335747cd5944677b", + "size": 109125, + "url": "https://www.gutenberg.org/ebooks/1598.epub3.images" + }, + "epub/regression/pg1599.epub": { + "sha256": "3831ba747f56fb027ae9af1193cd6c81532c4663e04843129f18cc4387c34eb5", + "size": 121375, + "url": "https://www.gutenberg.org/ebooks/1599.epub3.images" + }, + "jats/regression/PMC10113975.nxml": { + "sha256": "6fdcbe27129607c53ba3bd66bca2b6e1935e66dfbee722e59a5a0dadd1e6af63", + "size": 285066, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC10113975/fullTextXML" + }, + "jats/regression/PMC10147726.nxml": { + "sha256": "a3b021deae34c274ce32680dc51c1e60d2fc6459f4450485297e569cf07cf629", + "size": 91203, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC10147726/fullTextXML" + }, + "jats/regression/PMC10297705.nxml": { + "sha256": "bb2b34f59de6a634c22f733d537044d06d926445fb9f92c399125719e0a4b95d", + "size": 167366, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC10297705/fullTextXML" + }, + "jats/regression/PMC10375883.nxml": { + "sha256": "b07537612b984d543572524ba47e354d478ce83e9fe0cc8de5d2b1d9c4c3173c", + "size": 240101, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC10375883/fullTextXML" + }, + "jats/regression/PMC10528951.nxml": { + "sha256": "8c7a794b4dfcc5e9a5f29fbe0aa556b423f74a0d519bc182b9eca41bec6de151", + "size": 266545, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC10528951/fullTextXML" + }, + "jats/regression/PMC10535277.nxml": { + "sha256": "2c57bcc81b3e2cc2ca888f86016cc27e215f0b39e8b8e80d95336e543d1cdf8b", + "size": 724992, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC10535277/fullTextXML" + }, + "jats/regression/PMC10539332.nxml": { + "sha256": "d945e41c507d8ef75beb186e714bfc867fc103400cea80b2a4118d503a8dbb49", + "size": 264433, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC10539332/fullTextXML" + }, + "jats/regression/PMC10656336.nxml": { + "sha256": "36b193d3e85a5502b481ea1545e03d486dd263693e58a886188d41f8f3444991", + "size": 521226, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC10656336/fullTextXML" + }, + "jats/regression/PMC10683500.nxml": { + "sha256": "61e309e452b66fa2cc71b53841d17e82bc43e525d6daa5d3fec600b073f50fa5", + "size": 268617, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC10683500/fullTextXML" + }, + "jats/regression/PMC10744505.nxml": { + "sha256": "e15c6a33727d050500975fb2d6efca332d39b3956af2d06450ae6070945a773c", + "size": 110616, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC10744505/fullTextXML" + }, + "jats/regression/PMC10760868.nxml": { + "sha256": "2e453b97ea5d8ff653475f81c934796d3fa568836bd3d7c9b649f1b169ba91a1", + "size": 88584, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC10760868/fullTextXML" + }, + "jats/regression/PMC10784565.nxml": { + "sha256": "818f7f54a6831de4842b9a64150a6a7343cc6f4f1677e23bf594a1fe2d3d27d6", + "size": 183669, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC10784565/fullTextXML" + }, + "jats/regression/PMC10814825.nxml": { + "sha256": "621660e395a4d8e782b5b3729fba1c3cd3acab81884e7c0122b783eb08b71fe7", + "size": 250478, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC10814825/fullTextXML" + }, + "jats/regression/PMC10814825.xml": { + "sha256": "621660e395a4d8e782b5b3729fba1c3cd3acab81884e7c0122b783eb08b71fe7", + "size": 250478, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC10814825/fullTextXML" + }, + "jats/regression/PMC10897326.nxml": { + "sha256": "570de68ee36ab4e0f6de5f309e649cb58a1202a34101acbbc36aa75f00830d7e", + "size": 238205, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC10897326/fullTextXML" + }, + "jats/regression/PMC10912716.nxml": { + "sha256": "6eb1642f0dd5eddc6e361f6930caaf1b453585c7f65a155c50e1c81642ede2fe", + "size": 234025, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC10912716/fullTextXML" + }, + "jats/regression/PMC10919840.nxml": { + "sha256": "11f78adb087c39f903e6812cf447d278a8d68e0ee369950e1bf61668619ce061", + "size": 71431, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC10919840/fullTextXML" + }, + "jats/regression/PMC10931467.nxml": { + "sha256": "b14eec8a0aa96641a722f82a22e0ad13f7fc8b2dd5599dde2d8ac39e76ddc842", + "size": 652493, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC10931467/fullTextXML" + }, + "jats/regression/PMC10931467.xml": { + "sha256": "b14eec8a0aa96641a722f82a22e0ad13f7fc8b2dd5599dde2d8ac39e76ddc842", + "size": 652493, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC10931467/fullTextXML" + }, + "jats/regression/PMC10944220.nxml": { + "sha256": "e39b287950df9e8608cad24f418b6e2b5ca074ba2397e8227789209afa97f71e", + "size": 255516, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC10944220/fullTextXML" + }, + "jats/regression/PMC10995042.nxml": { + "sha256": "1d754862feea17995c9d73ce56956e0d3e72472e82693f6d51c183748d5d430c", + "size": 1704514, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC10995042/fullTextXML" + }, + "jats/regression/PMC10995042.xml": { + "sha256": "1d754862feea17995c9d73ce56956e0d3e72472e82693f6d51c183748d5d430c", + "size": 1704514, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC10995042/fullTextXML" + }, + "jats/regression/PMC11003928.nxml": { + "sha256": "bd702dfee431ca2a3f7caa411cbb17789c1b3a33a1ab1e2ca90033b1a5fe376f", + "size": 488290, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11003928/fullTextXML" + }, + "jats/regression/PMC11003928.xml": { + "sha256": "bd702dfee431ca2a3f7caa411cbb17789c1b3a33a1ab1e2ca90033b1a5fe376f", + "size": 488290, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11003928/fullTextXML" + }, + "jats/regression/PMC11003954.nxml": { + "sha256": "5b0179d02255cf0a7ce6f4202252207fa2bbe9c94abac7a7cfbeb6f6b46a0a07", + "size": 898292, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11003954/fullTextXML" + }, + "jats/regression/PMC11003954.xml": { + "sha256": "5b0179d02255cf0a7ce6f4202252207fa2bbe9c94abac7a7cfbeb6f6b46a0a07", + "size": 898292, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11003954/fullTextXML" + }, + "jats/regression/PMC11031498.nxml": { + "sha256": "c86a6c7104f0a3f9c3c00d79fddb051fe6b1084bae7a16bfb647176ce931417e", + "size": 1314577, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11031498/fullTextXML" + }, + "jats/regression/PMC11098755.nxml": { + "sha256": "a5dfc4d081ea9e16109dd238399c64c1a7dad9d94da6f3e31b55c093415efbfa", + "size": 2223416, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11098755/fullTextXML" + }, + "jats/regression/PMC11104612.nxml": { + "sha256": "1d99c38a39f0f907513a45785ea3a14a370ae78e98da57cdaa4651b2c011d5e6", + "size": 109570, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11104612/fullTextXML" + }, + "jats/regression/PMC11125053.nxml": { + "sha256": "9cc7aa3de1975c23ff91c98407db17247b6d5503847f7b3a167e2fac3655fe03", + "size": 118049, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11125053/fullTextXML" + }, + "jats/regression/PMC11132467.nxml": { + "sha256": "7702f01f92c474483e6b23d370c1d6150a47246c9e63cacdc360f3b771f60943", + "size": 568040, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11132467/fullTextXML" + }, + "jats/regression/PMC11142586.nxml": { + "sha256": "1dff21a2e4dd2094077eab331115c6a19cc4043502d6d663f69ba558013d0738", + "size": 252438, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11142586/fullTextXML" + }, + "jats/regression/PMC11148057.nxml": { + "sha256": "9817662b34ad83db6f7bbfb463c9fab6ebe4bb9c75cbaabf9daf811a24bb46c8", + "size": 246019, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11148057/fullTextXML" + }, + "jats/regression/PMC11148057.xml": { + "sha256": "9817662b34ad83db6f7bbfb463c9fab6ebe4bb9c75cbaabf9daf811a24bb46c8", + "size": 246019, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11148057/fullTextXML" + }, + "jats/regression/PMC11150379.nxml": { + "sha256": "cb37e03cc2381f5609743653719b5cfcc4c5c482556a75b50006919ac6bdc1f0", + "size": 197739, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11150379/fullTextXML" + }, + "jats/regression/PMC11150379.xml": { + "sha256": "cb37e03cc2381f5609743653719b5cfcc4c5c482556a75b50006919ac6bdc1f0", + "size": 197739, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11150379/fullTextXML" + }, + "jats/regression/PMC11192889.nxml": { + "sha256": "56f52a690873570be05466dea820c18a42609a55c8ff07a32a686b6eb8146c3e", + "size": 85165, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11192889/fullTextXML" + }, + "jats/regression/PMC11192889.xml": { + "sha256": "56f52a690873570be05466dea820c18a42609a55c8ff07a32a686b6eb8146c3e", + "size": 85165, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11192889/fullTextXML" + }, + "jats/regression/PMC11202430.nxml": { + "sha256": "d21db4ffb20d45592d8efe799c6db1b8b64c80cb57e3360b891e08a66eee775c", + "size": 82194, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11202430/fullTextXML" + }, + "jats/regression/PMC11202430.xml": { + "sha256": "d21db4ffb20d45592d8efe799c6db1b8b64c80cb57e3360b891e08a66eee775c", + "size": 82194, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11202430/fullTextXML" + }, + "jats/regression/PMC11202964.nxml": { + "sha256": "f9ef211cea348aafc4f450e5b6f7a7dcd217a2679848c4c3ea28935b4cbab76c", + "size": 264016, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11202964/fullTextXML" + }, + "jats/regression/PMC11202964.xml": { + "sha256": "f9ef211cea348aafc4f450e5b6f7a7dcd217a2679848c4c3ea28935b4cbab76c", + "size": 264016, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11202964/fullTextXML" + }, + "jats/regression/PMC11203073.nxml": { + "sha256": "81469e88eb1a281a18107d693f02adcd7832bbef43d7ecb169343f3428654d56", + "size": 406523, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11203073/fullTextXML" + }, + "jats/regression/PMC11203073.xml": { + "sha256": "81469e88eb1a281a18107d693f02adcd7832bbef43d7ecb169343f3428654d56", + "size": 406523, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11203073/fullTextXML" + }, + "jats/regression/PMC11216626.nxml": { + "sha256": "8d008eedab494c546f5bec9404273d2a0f191cea07c64f05f2fa29448ab96bc8", + "size": 563939, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11216626/fullTextXML" + }, + "jats/regression/PMC11232358.nxml": { + "sha256": "55201ad5056c4e60a15f6bd8c2af21f1fb435db7cb38b60d8e46aa23072db13a", + "size": 482397, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11232358/fullTextXML" + }, + "jats/regression/PMC11232358.xml": { + "sha256": "55201ad5056c4e60a15f6bd8c2af21f1fb435db7cb38b60d8e46aa23072db13a", + "size": 482397, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11232358/fullTextXML" + }, + "jats/regression/PMC11251599.nxml": { + "sha256": "7f29c845dd29dad0e9c19c810146b172f229ce1c779eeb5342e7febf8d7955c7", + "size": 406866, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11251599/fullTextXML" + }, + "jats/regression/PMC11251599.xml": { + "sha256": "7f29c845dd29dad0e9c19c810146b172f229ce1c779eeb5342e7febf8d7955c7", + "size": 406866, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11251599/fullTextXML" + }, + "jats/regression/PMC11265003.nxml": { + "sha256": "177291fb65b9a325a04bc3f149d68abe564a614d3f33649b94e7a5e17e889e1e", + "size": 3354190, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11265003/fullTextXML" + }, + "jats/regression/PMC11320164.nxml": { + "sha256": "bc0ff2732189e0e901ee5bf5c868ba43539e54dd4c107d51ce00a20a22ca804d", + "size": 206270, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11320164/fullTextXML" + }, + "jats/regression/PMC11344159.nxml": { + "sha256": "cec85380fefd7fdd97acef4b4076c68dadbb323c0398214ac24fa8bf9a511ad6", + "size": 298898, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11344159/fullTextXML" + }, + "jats/regression/PMC11349114.nxml": { + "sha256": "8b5526a457f5e66bb24d4442e6480723cea2a9d6c523d70511bd29deb3b104c8", + "size": 236435, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11349114/fullTextXML" + }, + "jats/regression/PMC11350040.nxml": { + "sha256": "91d0d4940a11be3fa63258d70bbe856ad6eb471028330b220654352f96a42eb4", + "size": 144428, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11350040/fullTextXML" + }, + "jats/regression/PMC11354171.nxml": { + "sha256": "3044b444f5786b0306bc16e5a462188a9ca82d1d1008b2fcccb0068af5a34a55", + "size": 336067, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11354171/fullTextXML" + }, + "jats/regression/PMC11354171.xml": { + "sha256": "3044b444f5786b0306bc16e5a462188a9ca82d1d1008b2fcccb0068af5a34a55", + "size": 336067, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11354171/fullTextXML" + }, + "jats/regression/PMC11355752.nxml": { + "sha256": "50f7d33421b1b6c6423a9f49f97a0c3efc93be195eb95be9b239a7b455afad31", + "size": 107044, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11355752/fullTextXML" + }, + "jats/regression/PMC11374887.nxml": { + "sha256": "e0ab885c82532b4ae7803faddd141baebaa385c3dd55a938252e67e066c326f9", + "size": 680815, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11374887/fullTextXML" + }, + "jats/regression/PMC11393299.nxml": { + "sha256": "45f60185f7d564203433f552ee180b4ef5a5d845aeea3cd6cdea51462485a933", + "size": 2188627, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11393299/fullTextXML" + }, + "jats/regression/PMC11426518.nxml": { + "sha256": "96b2bd3b22c343d53747b088ac1ee6a4d9a335d96439ccc8825aa830505556a4", + "size": 403955, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11426518/fullTextXML" + }, + "jats/regression/PMC11426518.xml": { + "sha256": "96b2bd3b22c343d53747b088ac1ee6a4d9a335d96439ccc8825aa830505556a4", + "size": 403955, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11426518/fullTextXML" + }, + "jats/regression/PMC11430978.nxml": { + "sha256": "b153d4bdbb0b7415d955a9d5bf896389327d8c7be6febdaf39503bd0cbaf22a8", + "size": 221420, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11430978/fullTextXML" + }, + "jats/regression/PMC11431272.nxml": { + "sha256": "a20672f6288c5271bfd3743fada4184571f149fc5fe38d2bc5b220b5feae401c", + "size": 167844, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11431272/fullTextXML" + }, + "jats/regression/PMC11431509.nxml": { + "sha256": "fa2a526ba5b763a4c8ed6b8b54d3c61bbc8337f1320f0ae3529e2d2b0bccadaf", + "size": 118691, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11431509/fullTextXML" + }, + "jats/regression/PMC11432912.nxml": { + "sha256": "8651d8400f48f6da8b8ab3dd2b87a274c1b90c3f09acc88c06645adc8ae3008c", + "size": 152373, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11432912/fullTextXML" + }, + "jats/regression/PMC11432912.xml": { + "sha256": "8651d8400f48f6da8b8ab3dd2b87a274c1b90c3f09acc88c06645adc8ae3008c", + "size": 152373, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11432912/fullTextXML" + }, + "jats/regression/PMC11449981.nxml": { + "sha256": "9e2f6b49641adc9f7d9369bc7a85a65de1dcaaad6dfe21a6065aec07ef9beb33", + "size": 375845, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11449981/fullTextXML" + }, + "jats/regression/PMC11449981.xml": { + "sha256": "9e2f6b49641adc9f7d9369bc7a85a65de1dcaaad6dfe21a6065aec07ef9beb33", + "size": 375845, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11449981/fullTextXML" + }, + "jats/regression/PMC11455726.nxml": { + "sha256": "ac01c458f383c5e758d95433601e03760b6c5511e99a91e438efdf1959e6beef", + "size": 83185, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11455726/fullTextXML" + }, + "jats/regression/PMC11455726.xml": { + "sha256": "ac01c458f383c5e758d95433601e03760b6c5511e99a91e438efdf1959e6beef", + "size": 83185, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11455726/fullTextXML" + }, + "jats/regression/PMC11470903.nxml": { + "sha256": "89c2985283e0a8b549fea0f4593e72fddc661698536527e48737a0b78088cd66", + "size": 796471, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11470903/fullTextXML" + }, + "jats/regression/PMC11470903.xml": { + "sha256": "89c2985283e0a8b549fea0f4593e72fddc661698536527e48737a0b78088cd66", + "size": 796471, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11470903/fullTextXML" + }, + "jats/regression/PMC11480043.nxml": { + "sha256": "6dc3ca0b12990bff9f1aae4890727fb158ab210da69790ec5b31dfeb64b956bb", + "size": 109122, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11480043/fullTextXML" + }, + "jats/regression/PMC11480043.xml": { + "sha256": "6dc3ca0b12990bff9f1aae4890727fb158ab210da69790ec5b31dfeb64b956bb", + "size": 109122, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11480043/fullTextXML" + }, + "jats/regression/PMC11486830.nxml": { + "sha256": "5373615a0376b523eb9b0c3be463867410bb9c7b9c5816242d46cded97d3ce17", + "size": 1958302, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11486830/fullTextXML" + }, + "jats/regression/PMC11507041.nxml": { + "sha256": "2bb4ad5598bf39fad2f4614d8ea068b177405295af3a36e09598eae8eab7a46d", + "size": 129616, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11507041/fullTextXML" + }, + "jats/regression/PMC11507332.nxml": { + "sha256": "829b1b75725c33a8cc1eebdae246b9814763c6d64d40f03582b0923dbceed0d9", + "size": 465705, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11507332/fullTextXML" + }, + "jats/regression/PMC11507332.xml": { + "sha256": "829b1b75725c33a8cc1eebdae246b9814763c6d64d40f03582b0923dbceed0d9", + "size": 465705, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11507332/fullTextXML" + }, + "jats/regression/PMC11525335.nxml": { + "sha256": "0b7002ddd7e8a1fff71814f31f840bbfd74bde5e3a4550fb9b40234ab8e8fbd8", + "size": 2591276, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11525335/fullTextXML" + }, + "jats/regression/PMC11547666.nxml": { + "sha256": "c4e5b73c0687a7795f060c0d551fbccb66ff2168fa688ce7505dcd567c031646", + "size": 780005, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11547666/fullTextXML" + }, + "jats/regression/PMC11547666.xml": { + "sha256": "c4e5b73c0687a7795f060c0d551fbccb66ff2168fa688ce7505dcd567c031646", + "size": 780005, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11547666/fullTextXML" + }, + "jats/regression/PMC11561019.nxml": { + "sha256": "496b2c41914def257c2e6af08b78d816fa53830bca0f85222b3d45f81f6737d8", + "size": 364327, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11561019/fullTextXML" + }, + "jats/regression/PMC11563764.nxml": { + "sha256": "adec061a561ff07609ddf3a8be0c53d13100182be8743325fe68abe68fa7d4b7", + "size": 31831, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11563764/fullTextXML" + }, + "jats/regression/PMC11582699.nxml": { + "sha256": "a4225f2524a2eb9fb6e9c210aff98e8973ed2d4de49f12423da08052581039b3", + "size": 603240, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11582699/fullTextXML" + }, + "jats/regression/PMC11592528.nxml": { + "sha256": "018476b90236d70807509c135b2e2327b36fb2b284514ca14373d3bdb3a2d9c6", + "size": 1289519, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11592528/fullTextXML" + }, + "jats/regression/PMC11592724.nxml": { + "sha256": "490ec51de3cbd65c6493b76538f73f93cb96b1e9f59b6e7a9d52a67a86cb28ce", + "size": 235810, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11592724/fullTextXML" + }, + "jats/regression/PMC11592724.xml": { + "sha256": "490ec51de3cbd65c6493b76538f73f93cb96b1e9f59b6e7a9d52a67a86cb28ce", + "size": 235810, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11592724/fullTextXML" + }, + "jats/regression/PMC11592777.nxml": { + "sha256": "0eb3c0ed7568ea648de6d73db719cf34f2da8b3e87faf7976fbc0e62cea234c8", + "size": 105841, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11592777/fullTextXML" + }, + "jats/regression/PMC11594430.nxml": { + "sha256": "2eee0cefea50fcbf53c83e7cf79f64b1864ee66cba60d215d7e4f824bfa3af7a", + "size": 208599, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11594430/fullTextXML" + }, + "jats/regression/PMC11607445.nxml": { + "sha256": "700ef9f47d4e813c631664b22e0b152cf8d4eb440a12898e52f5c4ae55c00634", + "size": 182720, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11607445/fullTextXML" + }, + "jats/regression/PMC11616886.nxml": { + "sha256": "47c715438bd177309cb664dca4ce358fb76040c3b62586e7296025507cee1c8a", + "size": 263222, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11616886/fullTextXML" + }, + "jats/regression/PMC11625132.nxml": { + "sha256": "e08b7599da32235a6e929e2eb89c511005afbc18144b3424c8cfc1624141f7ea", + "size": 132181, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11625132/fullTextXML" + }, + "jats/regression/PMC11639377.nxml": { + "sha256": "0020a4db66e070dcbe2f8b8cc88e7ec46359a6d7657084d8778393002b19fc09", + "size": 380866, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11639377/fullTextXML" + }, + "jats/regression/PMC11645317.nxml": { + "sha256": "73af461a9928084a9bfc35268ad80c2f9179bf1be0e429005e07eb49964387ed", + "size": 204754, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11645317/fullTextXML" + }, + "jats/regression/PMC11645317.xml": { + "sha256": "73af461a9928084a9bfc35268ad80c2f9179bf1be0e429005e07eb49964387ed", + "size": 204754, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11645317/fullTextXML" + }, + "jats/regression/PMC11647784.nxml": { + "sha256": "2c207c10bff8fcc411db1b97e992655694e6e15651e62582f0005befada3090a", + "size": 733149, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11647784/fullTextXML" + }, + "jats/regression/PMC11655608.nxml": { + "sha256": "f81761fa01650cce0012c5fe1b6bd7af36bcf4a462d8fb034c9e6e37255d6083", + "size": 1468068, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11655608/fullTextXML" + }, + "jats/regression/PMC11655608.xml": { + "sha256": "f81761fa01650cce0012c5fe1b6bd7af36bcf4a462d8fb034c9e6e37255d6083", + "size": 1468068, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11655608/fullTextXML" + }, + "jats/regression/PMC11655620.nxml": { + "sha256": "af04a081d7892b204eb4f0a4b320bd03521bcfa4de151a64f176d9bf3c04c5d4", + "size": 1648982, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11655620/fullTextXML" + }, + "jats/regression/PMC11655620.xml": { + "sha256": "af04a081d7892b204eb4f0a4b320bd03521bcfa4de151a64f176d9bf3c04c5d4", + "size": 1648982, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11655620/fullTextXML" + }, + "jats/regression/PMC11658961.nxml": { + "sha256": "b68dd7fc34f6d2e960cec75f959fe5fd08a9ab87200f9124e458163e1b43e68b", + "size": 97112, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11658961/fullTextXML" + }, + "jats/regression/PMC11660235.nxml": { + "sha256": "8533e5fab204974cef2db64e5ae3492a29a7be9499dc1ebd87b544b730ca12de", + "size": 120204, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11660235/fullTextXML" + }, + "jats/regression/PMC11671748.nxml": { + "sha256": "27ea93c11d243def5bdf632e098f629b46b7fabb592a5c6c279f8c1f87fa004e", + "size": 136582, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11671748/fullTextXML" + }, + "jats/regression/PMC11671748.xml": { + "sha256": "27ea93c11d243def5bdf632e098f629b46b7fabb592a5c6c279f8c1f87fa004e", + "size": 136582, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11671748/fullTextXML" + }, + "jats/regression/PMC11686192.nxml": { + "sha256": "86e17276bb3ae72ec63b36c21c8be2d3fc18ced653a3efc5c1685e158d9f4a21", + "size": 551075, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11686192/fullTextXML" + }, + "jats/regression/PMC11687670.nxml": { + "sha256": "f777239435dc906869bdeacca810fbd132def99f31742e07bbb225d146a7916a", + "size": 199679, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11687670/fullTextXML" + }, + "jats/regression/PMC11698396.nxml": { + "sha256": "dde481d3ad5054a1611cc50e1e7cefaa681bac994de4b7853332c6a25fa77e0a", + "size": 624750, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11698396/fullTextXML" + }, + "jats/regression/PMC11698396.xml": { + "sha256": "dde481d3ad5054a1611cc50e1e7cefaa681bac994de4b7853332c6a25fa77e0a", + "size": 624750, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11698396/fullTextXML" + }, + "jats/regression/PMC11699369.nxml": { + "sha256": "4ae471c664a0c49413046579c69737c71d99ab689ae88b4731ce240d05aa5456", + "size": 848677, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11699369/fullTextXML" + }, + "jats/regression/PMC11699369.xml": { + "sha256": "4ae471c664a0c49413046579c69737c71d99ab689ae88b4731ce240d05aa5456", + "size": 848677, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11699369/fullTextXML" + }, + "jats/regression/PMC11706479.nxml": { + "sha256": "f9754f81dce442c550e1ccb989099e0e317991d46860186bd702b50364871049", + "size": 208831, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11706479/fullTextXML" + }, + "jats/regression/PMC11706479.xml": { + "sha256": "f9754f81dce442c550e1ccb989099e0e317991d46860186bd702b50364871049", + "size": 208831, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11706479/fullTextXML" + }, + "jats/regression/PMC11719647.nxml": { + "sha256": "643dd72b29e98f0f619e1ebefa02e435a21b9495a2851ff7a061cf203b796663", + "size": 175060, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11719647/fullTextXML" + }, + "jats/regression/PMC11719647.xml": { + "sha256": "643dd72b29e98f0f619e1ebefa02e435a21b9495a2851ff7a061cf203b796663", + "size": 175060, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11719647/fullTextXML" + }, + "jats/regression/PMC11724801.nxml": { + "sha256": "c524e279f46401473ee4dd3676f64e4a48b41fbbb4cea6deb3d8e5ea4bb883dc", + "size": 259600, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11724801/fullTextXML" + }, + "jats/regression/PMC11724801.xml": { + "sha256": "c524e279f46401473ee4dd3676f64e4a48b41fbbb4cea6deb3d8e5ea4bb883dc", + "size": 259600, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11724801/fullTextXML" + }, + "jats/regression/PMC11724804.nxml": { + "sha256": "84c48a941ac0f64cfba0a10b1eaaf12759faa3ee36e9aa243617d5300c91064c", + "size": 455545, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11724804/fullTextXML" + }, + "jats/regression/PMC11724804.xml": { + "sha256": "84c48a941ac0f64cfba0a10b1eaaf12759faa3ee36e9aa243617d5300c91064c", + "size": 455545, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11724804/fullTextXML" + }, + "jats/regression/PMC11731760.nxml": { + "sha256": "8d5ce058e8bc88be6896dcc801d7f07d1e07b619dce224ff62ab4f7ca1713e56", + "size": 360891, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11731760/fullTextXML" + }, + "jats/regression/PMC11748019.nxml": { + "sha256": "f4064bbae29f122968488b5a3315f0e924fa7c3c0b7e8e75a534a74e29176bcc", + "size": 129884, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11748019/fullTextXML" + }, + "jats/regression/PMC11752501.nxml": { + "sha256": "e52299ea01281ece566bb5a0989d1010aa7db5860f1b6a14316f93cbca168c81", + "size": 120189, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11752501/fullTextXML" + }, + "jats/regression/PMC11753321.nxml": { + "sha256": "eff5358b4c97bdb631a1811f67b418f0854bdde4c2fe524c0f29996d4e2174f2", + "size": 1128140, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11753321/fullTextXML" + }, + "jats/regression/PMC11753321.xml": { + "sha256": "eff5358b4c97bdb631a1811f67b418f0854bdde4c2fe524c0f29996d4e2174f2", + "size": 1128140, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11753321/fullTextXML" + }, + "jats/regression/PMC11753677.nxml": { + "sha256": "30d281f4e46820f06fefcbc0c696ad48aa53227ceeefd991885d4ed2ce7a6372", + "size": 335512, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11753677/fullTextXML" + }, + "jats/regression/PMC11754794.nxml": { + "sha256": "9db07c0a831e496433fa79dba7d58809a07ddebce9669dd7fd6ccb2e2179ee7b", + "size": 335100, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11754794/fullTextXML" + }, + "jats/regression/PMC11760947.nxml": { + "sha256": "edb391dae0a3d622f6bb94a001c882e5f5d16f38c0992d4815478b70013d2d12", + "size": 282884, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11760947/fullTextXML" + }, + "jats/regression/PMC11765324.nxml": { + "sha256": "9482c05bbd0e6f616de0c86973a65726275adf7e665586c7ad7e76a11c113e1d", + "size": 196899, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11765324/fullTextXML" + }, + "jats/regression/PMC11768288.nxml": { + "sha256": "3d806c2f95e7a0a392405d587a020ca77a0bc2746698cd4a4729a1d8f49ea0b6", + "size": 285646, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11768288/fullTextXML" + }, + "jats/regression/PMC11768327.nxml": { + "sha256": "503ebaa6e0bf48c2486bf0d3280d91443fd0dbc67607aeaed107f3538fb47fde", + "size": 154605, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11768327/fullTextXML" + }, + "jats/regression/PMC11768327.xml": { + "sha256": "503ebaa6e0bf48c2486bf0d3280d91443fd0dbc67607aeaed107f3538fb47fde", + "size": 154605, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11768327/fullTextXML" + }, + "jats/regression/PMC11799131.nxml": { + "sha256": "76997c658ee73e31d4928cc22824d4e03404e33fcf8e0ee20b47187ef971d42e", + "size": 1263059, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11799131/fullTextXML" + }, + "jats/regression/PMC11804144.nxml": { + "sha256": "d01974e31d6da68bb9384ea5f573105943a7684bb8e668fb755e58e84d484fae", + "size": 69822, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11804144/fullTextXML" + }, + "jats/regression/PMC11804144.xml": { + "sha256": "d01974e31d6da68bb9384ea5f573105943a7684bb8e668fb755e58e84d484fae", + "size": 69822, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11804144/fullTextXML" + }, + "jats/regression/PMC11808771.nxml": { + "sha256": "1d52f1f6e0dd39fc593901404c7eabc96bdd4f70d4b421e594d60a3adcaabda7", + "size": 127670, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11808771/fullTextXML" + }, + "jats/regression/PMC11808771.xml": { + "sha256": "1d52f1f6e0dd39fc593901404c7eabc96bdd4f70d4b421e594d60a3adcaabda7", + "size": 127670, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11808771/fullTextXML" + }, + "jats/regression/PMC11818071.nxml": { + "sha256": "5984b8b7b32a35fae816e09330a0e915d90c7f5c0d35880eeb72f91c0feb09b4", + "size": 239271, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11818071/fullTextXML" + }, + "jats/regression/PMC11830316.nxml": { + "sha256": "8911e8951fb01d62c9af3eab121faa94f429cb47909005a8aadab71e55e8ae4e", + "size": 220200, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11830316/fullTextXML" + }, + "jats/regression/PMC11834426.nxml": { + "sha256": "e7e3cb625db35a8a2a34cd463c5d4043058ac87e7b453607e65f3c0671093913", + "size": 154185, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11834426/fullTextXML" + }, + "jats/regression/PMC11834426.xml": { + "sha256": "e7e3cb625db35a8a2a34cd463c5d4043058ac87e7b453607e65f3c0671093913", + "size": 154185, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11834426/fullTextXML" + }, + "jats/regression/PMC11835342.nxml": { + "sha256": "da1ce2b5933ac6ba25b16919c803d5ad3e7bf89b12f67d0c872341e0325bda23", + "size": 329547, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11835342/fullTextXML" + }, + "jats/regression/PMC11841862.nxml": { + "sha256": "30fe1d8b9efc758451161e90ab80d70711dc74fae057bcb7165712f0649fed84", + "size": 99716, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11841862/fullTextXML" + }, + "jats/regression/PMC11842819.nxml": { + "sha256": "efc451392675d92ff82ead33acaabb2e47bc9ee440c73c2c448ce18d001ca044", + "size": 140600, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11842819/fullTextXML" + }, + "jats/regression/PMC11853851.nxml": { + "sha256": "f3b29d5d00f37f6ab37e9e3f06dcf02ee734c3377997165dbee3210183c6d205", + "size": 178675, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11853851/fullTextXML" + }, + "jats/regression/PMC11853851.xml": { + "sha256": "f3b29d5d00f37f6ab37e9e3f06dcf02ee734c3377997165dbee3210183c6d205", + "size": 178675, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11853851/fullTextXML" + }, + "jats/regression/PMC11853975.nxml": { + "sha256": "1cbaaff89f33371c9b01ecfdb968af192f954fbfb82038d74370a31f053adfd0", + "size": 143086, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11853975/fullTextXML" + }, + "jats/regression/PMC11854182.nxml": { + "sha256": "a9d7f22b502c9c5d003297a42ec84869566f0afda331b33e5b5676eefa18f58f", + "size": 230494, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11854182/fullTextXML" + }, + "jats/regression/PMC11854182.xml": { + "sha256": "a9d7f22b502c9c5d003297a42ec84869566f0afda331b33e5b5676eefa18f58f", + "size": 230494, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11854182/fullTextXML" + }, + "jats/regression/PMC11860955.nxml": { + "sha256": "a78ec136e65be89c23507903be4a92d460b3a3c3c466386f703440de94c5cd9d", + "size": 33052, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11860955/fullTextXML" + }, + "jats/regression/PMC11868296.nxml": { + "sha256": "6df4ce2f5a2e0772d7a187303d98641d63b9e21fc5a831bc9fdbd7c2183e7b60", + "size": 738170, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11868296/fullTextXML" + }, + "jats/regression/PMC11868296.xml": { + "sha256": "6df4ce2f5a2e0772d7a187303d98641d63b9e21fc5a831bc9fdbd7c2183e7b60", + "size": 738170, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11868296/fullTextXML" + }, + "jats/regression/PMC11872991.nxml": { + "sha256": "0cd0e953afee8a969a392e762ee3b7e4d0f95eedd24fd135af624ad2dbd63a74", + "size": 177968, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11872991/fullTextXML" + }, + "jats/regression/PMC11872991.xml": { + "sha256": "0cd0e953afee8a969a392e762ee3b7e4d0f95eedd24fd135af624ad2dbd63a74", + "size": 177968, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11872991/fullTextXML" + }, + "jats/regression/PMC11880090.nxml": { + "sha256": "af45a0099654dfa8d4db7cb631ab40405a736a3996059baaaea1ed69e8807d0f", + "size": 1551959, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11880090/fullTextXML" + }, + "jats/regression/PMC11880090.xml": { + "sha256": "af45a0099654dfa8d4db7cb631ab40405a736a3996059baaaea1ed69e8807d0f", + "size": 1551959, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11880090/fullTextXML" + }, + "jats/regression/PMC11880499.nxml": { + "sha256": "fd427e903a2c894b8fe206030b9cfb9d2af13871cc3d3354ff63f1d14457aa6a", + "size": 80844, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11880499/fullTextXML" + }, + "jats/regression/PMC11880499.xml": { + "sha256": "fd427e903a2c894b8fe206030b9cfb9d2af13871cc3d3354ff63f1d14457aa6a", + "size": 80844, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11880499/fullTextXML" + }, + "jats/regression/PMC11887115.nxml": { + "sha256": "cf258ebc4c2f470c9326535a5af366d3a98195f35b0b9ad83c12f66a6c1fd36b", + "size": 309910, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11887115/fullTextXML" + }, + "jats/regression/PMC11890391.nxml": { + "sha256": "4a2402b83d5f57a20d3406cade771d4a365d82606acf716c7b0139b689707792", + "size": 389891, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11890391/fullTextXML" + }, + "jats/regression/PMC11890391.xml": { + "sha256": "4a2402b83d5f57a20d3406cade771d4a365d82606acf716c7b0139b689707792", + "size": 389891, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11890391/fullTextXML" + }, + "jats/regression/PMC11902327.nxml": { + "sha256": "0d26f2b08445c96dda1beb3b7983e74424c79e6e00d075206609926752e61f60", + "size": 434090, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11902327/fullTextXML" + }, + "jats/regression/PMC11902780.nxml": { + "sha256": "f4d46ee0eeda707cca084e63a0c61845c974dc456a6499082a2f55b752612d2e", + "size": 167266, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11902780/fullTextXML" + }, + "jats/regression/PMC11902805.nxml": { + "sha256": "81bf3f40b9063030cd626cdfe0e851f3dd070b91165a3d74b1b7acda10ed0c66", + "size": 108915, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11902805/fullTextXML" + }, + "jats/regression/PMC11908559.nxml": { + "sha256": "bfe9cc155673326dd14eb8bb984e9a2ebf0b43d90ab30bf5cb29e4a1795772b2", + "size": 172050, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11908559/fullTextXML" + }, + "jats/regression/PMC11908559.xml": { + "sha256": "bfe9cc155673326dd14eb8bb984e9a2ebf0b43d90ab30bf5cb29e4a1795772b2", + "size": 172050, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11908559/fullTextXML" + }, + "jats/regression/PMC11909071.nxml": { + "sha256": "20a3dc048e78182652ac5b8e9d835261f1e35000f94688ed41c87a63f7366fb2", + "size": 1964588, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11909071/fullTextXML" + }, + "jats/regression/PMC11913945.nxml": { + "sha256": "8907793cdcb31e9a60aa4b60773ce93a37016f0d52bfc8b000273991701b8b91", + "size": 673720, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11913945/fullTextXML" + }, + "jats/regression/PMC11913945.xml": { + "sha256": "8907793cdcb31e9a60aa4b60773ce93a37016f0d52bfc8b000273991701b8b91", + "size": 673720, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11913945/fullTextXML" + }, + "jats/regression/PMC11923067.nxml": { + "sha256": "b0fe6274f562070c7522c0f1c472cb24aa5d56446beba0e683fd51dbed660e95", + "size": 182033, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11923067/fullTextXML" + }, + "jats/regression/PMC11926038.nxml": { + "sha256": "95648105af0006cabeb7a1ba5ac25a8014f28ad7e7295cd9d9d3ebbc21f562e9", + "size": 430037, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11926038/fullTextXML" + }, + "jats/regression/PMC11926038.xml": { + "sha256": "95648105af0006cabeb7a1ba5ac25a8014f28ad7e7295cd9d9d3ebbc21f562e9", + "size": 430037, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11926038/fullTextXML" + }, + "jats/regression/PMC11936241.nxml": { + "sha256": "52370f75d96f17f66c2d64560c6d88e46a18cfa33b5b0f96436e8d72d46b7ad1", + "size": 461371, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11936241/fullTextXML" + }, + "jats/regression/PMC11936241.xml": { + "sha256": "52370f75d96f17f66c2d64560c6d88e46a18cfa33b5b0f96436e8d72d46b7ad1", + "size": 461371, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11936241/fullTextXML" + }, + "jats/regression/PMC11940191.nxml": { + "sha256": "d8d76f049130c0840b2b7d82a0d4748f2fe9c324c9cefdfae42e06c0afb1e976", + "size": 288862, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11940191/fullTextXML" + }, + "jats/regression/PMC11941368.nxml": { + "sha256": "75795d02702a6526419aaea674a29ec44eb8dfcfacb83b6c709d128700647136", + "size": 549979, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11941368/fullTextXML" + }, + "jats/regression/PMC11941368.xml": { + "sha256": "75795d02702a6526419aaea674a29ec44eb8dfcfacb83b6c709d128700647136", + "size": 549979, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11941368/fullTextXML" + }, + "jats/regression/PMC11941605.nxml": { + "sha256": "e4c3e1e52ee60e4f3f938e97209afc4c4943c0a346adf56ed4ed0cfa6d2f47f2", + "size": 279743, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11941605/fullTextXML" + }, + "jats/regression/PMC11943586.nxml": { + "sha256": "2ed52a760ab2885aacbc32ac401e2bfa3b91d6f818633f407366b13603392072", + "size": 293385, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11943586/fullTextXML" + }, + "jats/regression/PMC11943586.xml": { + "sha256": "2ed52a760ab2885aacbc32ac401e2bfa3b91d6f818633f407366b13603392072", + "size": 293385, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11943586/fullTextXML" + }, + "jats/regression/PMC11946050.nxml": { + "sha256": "2fea10852107860f4c7b8f7b4fe313a26d88c5f95a5302a3b175bba3cca60b1e", + "size": 376198, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11946050/fullTextXML" + }, + "jats/regression/PMC11951849.nxml": { + "sha256": "608e041cd7ad006e4b70ef67e376bdf57179d8f985836d722f4c617ef24e6991", + "size": 84610, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11951849/fullTextXML" + }, + "jats/regression/PMC11951849.xml": { + "sha256": "608e041cd7ad006e4b70ef67e376bdf57179d8f985836d722f4c617ef24e6991", + "size": 84610, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11951849/fullTextXML" + }, + "jats/regression/PMC11954749.nxml": { + "sha256": "1227a48ef6c10be64f3650e6fd6fea5027dcbed7fe00134308d47f25d57eede7", + "size": 593001, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11954749/fullTextXML" + }, + "jats/regression/PMC11954749.xml": { + "sha256": "1227a48ef6c10be64f3650e6fd6fea5027dcbed7fe00134308d47f25d57eede7", + "size": 593001, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11954749/fullTextXML" + }, + "jats/regression/PMC11970696.nxml": { + "sha256": "442c1142094303ab2648f3c426398fc6bbc6c439a0bf964619b3ecebd1b3b2b9", + "size": 118790, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11970696/fullTextXML" + }, + "jats/regression/PMC11971180.nxml": { + "sha256": "4be5fade8cd15d2b1598ca4dabd09e5e7f39aa2b0c7c224a1ecb54bd786545d3", + "size": 1002463, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11971180/fullTextXML" + }, + "jats/regression/PMC11971180.xml": { + "sha256": "4be5fade8cd15d2b1598ca4dabd09e5e7f39aa2b0c7c224a1ecb54bd786545d3", + "size": 1002463, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11971180/fullTextXML" + }, + "jats/regression/PMC11971200.nxml": { + "sha256": "44ade36068a1665e10b3da8f68fd371b97849d1792f65a70225afac76ae11956", + "size": 201480, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11971200/fullTextXML" + }, + "jats/regression/PMC11971200.xml": { + "sha256": "44ade36068a1665e10b3da8f68fd371b97849d1792f65a70225afac76ae11956", + "size": 201480, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11971200/fullTextXML" + }, + "jats/regression/PMC11971235.nxml": { + "sha256": "3913ea7dd46a46908c354a7794f57551cc519101c23429a23624532fddfd8547", + "size": 2736566, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11971235/fullTextXML" + }, + "jats/regression/PMC11977074.nxml": { + "sha256": "a23a0f58628c88c9b528a43360ed3ab6e490459059cda4cf4b9bf94afc8ee79a", + "size": 573015, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11977074/fullTextXML" + }, + "jats/regression/PMC11977112.nxml": { + "sha256": "6d94b584bb63a1f76dc52c441024407dd9f7568a4c4b1e572085757da67f0488", + "size": 204431, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11977112/fullTextXML" + }, + "jats/regression/PMC11978452.nxml": { + "sha256": "126d9a3b35c878f63a55d0df557a50516cefd64fdb85bd1f6af160769189cefc", + "size": 346604, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11978452/fullTextXML" + }, + "jats/regression/PMC11982130.nxml": { + "sha256": "2a757f493f78d019fe5ddc1c5ad581465c34bdf7025fc5b026acfe14fbd52784", + "size": 362034, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11982130/fullTextXML" + }, + "jats/regression/PMC11982171.nxml": { + "sha256": "eefbda0177165dc59232e0d7e732be16ca6ac4675563328acf0fc15154070b8d", + "size": 3919383, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11982171/fullTextXML" + }, + "jats/regression/PMC11991036.nxml": { + "sha256": "648df6ab149888a4f6ae0f5fc9f93555dfe10f993bae077e70d66b010ee2f3be", + "size": 140777, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC11991036/fullTextXML" + }, + "jats/regression/PMC12006183.nxml": { + "sha256": "fa1c207a01b7ccaf54aec933dc0703bdcffef9ebac9c4033763ca4cb13729e9c", + "size": 165277, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12006183/fullTextXML" + }, + "jats/regression/PMC12006387.nxml": { + "sha256": "fd82d13fcc959aff74eb19ee7298cd995961927c578e1d768a12383e286d54cb", + "size": 293619, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12006387/fullTextXML" + }, + "jats/regression/PMC12011976.nxml": { + "sha256": "8f8d377a916bc6b429faf38626f9ba43cb8d7a8600242b8e53c7300cc6ea2ca7", + "size": 2298885, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12011976/fullTextXML" + }, + "jats/regression/PMC12011976.xml": { + "sha256": "8f8d377a916bc6b429faf38626f9ba43cb8d7a8600242b8e53c7300cc6ea2ca7", + "size": 2298885, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12011976/fullTextXML" + }, + "jats/regression/PMC12015914.nxml": { + "sha256": "bad9c350899280f4daf26e1d5f22d0d089258c517587172a572c5a5ddc4698bc", + "size": 149099, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12015914/fullTextXML" + }, + "jats/regression/PMC12025549.nxml": { + "sha256": "eb12a420c6971070063da423c2a98b326a2e31ed090fb4b71615cc3e719486ca", + "size": 527440, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12025549/fullTextXML" + }, + "jats/regression/PMC12025549.xml": { + "sha256": "eb12a420c6971070063da423c2a98b326a2e31ed090fb4b71615cc3e719486ca", + "size": 527440, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12025549/fullTextXML" + }, + "jats/regression/PMC12025928.nxml": { + "sha256": "743e8288482497b575ea463259797b96b4f79b3f55a5a5ed38aaf56d62c56baa", + "size": 80748, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12025928/fullTextXML" + }, + "jats/regression/PMC12025928.xml": { + "sha256": "743e8288482497b575ea463259797b96b4f79b3f55a5a5ed38aaf56d62c56baa", + "size": 80748, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12025928/fullTextXML" + }, + "jats/regression/PMC12026301.nxml": { + "sha256": "4a724461c00347aea43872ab2bd858911ab6e955fe9499f7abe86688a40e6080", + "size": 210046, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12026301/fullTextXML" + }, + "jats/regression/PMC12026301.xml": { + "sha256": "4a724461c00347aea43872ab2bd858911ab6e955fe9499f7abe86688a40e6080", + "size": 210046, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12026301/fullTextXML" + }, + "jats/regression/PMC12029216.nxml": { + "sha256": "13d3e9a25cc43672d3862905baa606eaf2f3bc12145dc2a9101d06993814c00c", + "size": 213111, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12029216/fullTextXML" + }, + "jats/regression/PMC12029558.nxml": { + "sha256": "8831a60a70c4ee3fc4cc77d0b693a4bcfd32a07c54794ab70dca192850920ccf", + "size": 78621, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12029558/fullTextXML" + }, + "jats/regression/PMC12029558.xml": { + "sha256": "8831a60a70c4ee3fc4cc77d0b693a4bcfd32a07c54794ab70dca192850920ccf", + "size": 78621, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12029558/fullTextXML" + }, + "jats/regression/PMC12030878.nxml": { + "sha256": "4e43fe0106cd54dcad875635df4599e2e66962cadcb322e44c284a0871b33fd4", + "size": 169699, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12030878/fullTextXML" + }, + "jats/regression/PMC12030878.xml": { + "sha256": "4e43fe0106cd54dcad875635df4599e2e66962cadcb322e44c284a0871b33fd4", + "size": 169699, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12030878/fullTextXML" + }, + "jats/regression/PMC12031010.nxml": { + "sha256": "9d4cddaade93072947bb192bfc16a44ca2ccb1d4751737580100aba9fac2f163", + "size": 136352, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12031010/fullTextXML" + }, + "jats/regression/PMC12031010.xml": { + "sha256": "9d4cddaade93072947bb192bfc16a44ca2ccb1d4751737580100aba9fac2f163", + "size": 136352, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12031010/fullTextXML" + }, + "jats/regression/PMC12031338.nxml": { + "sha256": "9c2f06aa522a37c748990b35f13a07d45fb6f22770700cc5c4184c78be96e234", + "size": 239926, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12031338/fullTextXML" + }, + "jats/regression/PMC12031338.xml": { + "sha256": "9c2f06aa522a37c748990b35f13a07d45fb6f22770700cc5c4184c78be96e234", + "size": 239926, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12031338/fullTextXML" + }, + "jats/regression/PMC12031957.nxml": { + "sha256": "cdb73b1268a7b3ab780ff0ecf19423d1fa53bf3717ffe17840819cde46ab4bec", + "size": 1100367, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12031957/fullTextXML" + }, + "jats/regression/PMC12040285.nxml": { + "sha256": "0c7ea4742f33a12cce8931c58be08756dca193584c24776ec161ee891a0fc885", + "size": 538504, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12040285/fullTextXML" + }, + "jats/regression/PMC12042887.nxml": { + "sha256": "3d1026987eb046735d6a37ecc2710b198103b18adea960a9148fdc2e4c202ed6", + "size": 121384, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12042887/fullTextXML" + }, + "jats/regression/PMC12046378.nxml": { + "sha256": "89cb3341fa95eba15cc94ba6db0360ddaa7e23f8fdc4eb7f575ddff2116e1606", + "size": 287369, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12046378/fullTextXML" + }, + "jats/regression/PMC12053226.nxml": { + "sha256": "8b8d1700b8defc17a3c8e15b031943224a5b68dafa3719b5827d0cf75b91db02", + "size": 836738, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12053226/fullTextXML" + }, + "jats/regression/PMC12053226.xml": { + "sha256": "8b8d1700b8defc17a3c8e15b031943224a5b68dafa3719b5827d0cf75b91db02", + "size": 836738, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12053226/fullTextXML" + }, + "jats/regression/PMC12060242.nxml": { + "sha256": "5e589f3754e9b9950908f7005b4b6c8a753a4756d1a67356807e08fa4657d9d8", + "size": 227903, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12060242/fullTextXML" + }, + "jats/regression/PMC12060242.xml": { + "sha256": "5e589f3754e9b9950908f7005b4b6c8a753a4756d1a67356807e08fa4657d9d8", + "size": 227903, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12060242/fullTextXML" + }, + "jats/regression/PMC12068645.nxml": { + "sha256": "f3502754c74951542a5eca5d6fd41b65721077da622ea6192e437f8e7a9c144a", + "size": 794328, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12068645/fullTextXML" + }, + "jats/regression/PMC12068645.xml": { + "sha256": "f3502754c74951542a5eca5d6fd41b65721077da622ea6192e437f8e7a9c144a", + "size": 794328, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12068645/fullTextXML" + }, + "jats/regression/PMC12076499.nxml": { + "sha256": "2ca8c1947cb4cee5b02451f5467d162fe4d5b804940ff19f8635395b371e30df", + "size": 67695, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12076499/fullTextXML" + }, + "jats/regression/PMC12077784.nxml": { + "sha256": "8c4c9d9a7e5eca0ca21a1baf5ff4b30c8ca6b34bd20f056ff3c1dcf5c6755e08", + "size": 162146, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12077784/fullTextXML" + }, + "jats/regression/PMC12078368.nxml": { + "sha256": "d4a35e107b5ce4a58f9efc48f80b5c496843bc505b84113f226ffdbd247aff29", + "size": 389068, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12078368/fullTextXML" + }, + "jats/regression/PMC12078368.xml": { + "sha256": "d4a35e107b5ce4a58f9efc48f80b5c496843bc505b84113f226ffdbd247aff29", + "size": 389068, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12078368/fullTextXML" + }, + "jats/regression/PMC12085359.nxml": { + "sha256": "1518ab19b925ecf52d946d91555f018e50ed18c4c4916bf2f3f7b9b64620df32", + "size": 916058, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12085359/fullTextXML" + }, + "jats/regression/PMC12089248.nxml": { + "sha256": "a78b035867a80b93295ef634322bf4b8f488dfdb82a33247bb1460d092711f5a", + "size": 1387146, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12089248/fullTextXML" + }, + "jats/regression/PMC12092501.nxml": { + "sha256": "6c69cedba2f327a7046e68d7b4aa12875cc5d1bdd79018efc7a8446c07e26d73", + "size": 350717, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12092501/fullTextXML" + }, + "jats/regression/PMC12095524.nxml": { + "sha256": "dcf897d4be331692e6e775bc4c55d1f4fac52f0b9cec269388760fdefef9b6f7", + "size": 206313, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12095524/fullTextXML" + }, + "jats/regression/PMC12097631.nxml": { + "sha256": "89f7a974e6d1465478b20b0fa35071314bd0d60622728f63c2207da5c3da5aff", + "size": 266960, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12097631/fullTextXML" + }, + "jats/regression/PMC12101670.nxml": { + "sha256": "092a82d03e70c3ffac01797d3d4e2d9f67636e5f5713709af41a7a8181dc230a", + "size": 214594, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12101670/fullTextXML" + }, + "jats/regression/PMC12102228.nxml": { + "sha256": "3e4d7966e33d395307852f3ad4dffc1a1583155fc5a3a5c5af892927113f8c1f", + "size": 167179, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12102228/fullTextXML" + }, + "jats/regression/PMC12103496.nxml": { + "sha256": "a8568dcde4f2eb7fddffc466f21d8d02247c464b6c09e2738af446943f5fac69", + "size": 209780, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12103496/fullTextXML" + }, + "jats/regression/PMC12108858.nxml": { + "sha256": "610e51cfc415bb006ac24448f386a3d7fc05147cba3e78da3535d3f82eac7683", + "size": 1346216, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12108858/fullTextXML" + }, + "jats/regression/PMC12108858.xml": { + "sha256": "610e51cfc415bb006ac24448f386a3d7fc05147cba3e78da3535d3f82eac7683", + "size": 1346216, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12108858/fullTextXML" + }, + "jats/regression/PMC12110697.nxml": { + "sha256": "853dc4c1b4ff9af3316711011cf2ff719ab3494a3e658d7d0ce130f2b847fae1", + "size": 906264, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12110697/fullTextXML" + }, + "jats/regression/PMC12110746.nxml": { + "sha256": "011d7a0db88a90fc011388c46ba9020c2a6236f29307251aba8c65bc29eba736", + "size": 447988, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12110746/fullTextXML" + }, + "jats/regression/PMC12110753.nxml": { + "sha256": "f94756046efa0f4e2a0e56546d3888bfb9b718c55d8c53ba86c7792d899bdafd", + "size": 504498, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12110753/fullTextXML" + }, + "jats/regression/PMC12110753.xml": { + "sha256": "f94756046efa0f4e2a0e56546d3888bfb9b718c55d8c53ba86c7792d899bdafd", + "size": 504498, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12110753/fullTextXML" + }, + "jats/regression/PMC12111591.nxml": { + "sha256": "98fde38e75de8bac92f6d850e5070a2b7e18a6692248fd44a35ce3e1a582b8f8", + "size": 287010, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12111591/fullTextXML" + }, + "jats/regression/PMC12111591.xml": { + "sha256": "98fde38e75de8bac92f6d850e5070a2b7e18a6692248fd44a35ce3e1a582b8f8", + "size": 287010, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12111591/fullTextXML" + }, + "jats/regression/PMC12113591.nxml": { + "sha256": "fde629e8f9ed4741e9f703d47d2a8b133240cf1fcadfdde84ae2f119f789e1f2", + "size": 122894, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12113591/fullTextXML" + }, + "jats/regression/PMC12115973.nxml": { + "sha256": "e18cfd4c9cf754bc94d848bc19fae586c29501dfcfbc7d79de8d5149147cf263", + "size": 123905, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12115973/fullTextXML" + }, + "jats/regression/PMC12116775.nxml": { + "sha256": "fd5ce94d3fda92278aeef2b7f7409a8698dae96afc3e35522cb5fbee7f5a7bdc", + "size": 402287, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12116775/fullTextXML" + }, + "jats/regression/PMC12119028.nxml": { + "sha256": "8c97468ffbc6624eefef3406edf15ae4b3d4edad99d471c2418486a9b5173f21", + "size": 369417, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12119028/fullTextXML" + }, + "jats/regression/PMC12124356.nxml": { + "sha256": "3b45a28f82f9b300cd5a138dbb1dca1d34c3bfff7bec0377a91406dac9903e0b", + "size": 397302, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12124356/fullTextXML" + }, + "jats/regression/PMC12124356.xml": { + "sha256": "3b45a28f82f9b300cd5a138dbb1dca1d34c3bfff7bec0377a91406dac9903e0b", + "size": 397302, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12124356/fullTextXML" + }, + "jats/regression/PMC12127794.nxml": { + "sha256": "afb033a223f491e1a964903bd92a1112f7c19ecfae53839760cbed0e37b3adc9", + "size": 241312, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12127794/fullTextXML" + }, + "jats/regression/PMC12127794.xml": { + "sha256": "afb033a223f491e1a964903bd92a1112f7c19ecfae53839760cbed0e37b3adc9", + "size": 241312, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12127794/fullTextXML" + }, + "jats/regression/PMC12140661.nxml": { + "sha256": "062bf578fc4393403a81a90d770b823ec863a3f752d1bc95ba774891ed7168e2", + "size": 304588, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12140661/fullTextXML" + }, + "jats/regression/PMC12140661.xml": { + "sha256": "062bf578fc4393403a81a90d770b823ec863a3f752d1bc95ba774891ed7168e2", + "size": 304588, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12140661/fullTextXML" + }, + "jats/regression/PMC12146229.nxml": { + "sha256": "cede51e9d433c0f99330b070d4c74cc3873750770a1b1fb97499b34ed38f8a51", + "size": 1104119, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12146229/fullTextXML" + }, + "jats/regression/PMC12152925.nxml": { + "sha256": "ac6ac8599081184c43cc2c92f9929434acd7a4174e8265919628614f0e3b1143", + "size": 1246661, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12152925/fullTextXML" + }, + "jats/regression/PMC12156320.nxml": { + "sha256": "f473cf71c2bad2ca3b77a27a852ace5264b5431e97da9b277d0aa61c8188007c", + "size": 227877, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12156320/fullTextXML" + }, + "jats/regression/PMC12156320.xml": { + "sha256": "f473cf71c2bad2ca3b77a27a852ace5264b5431e97da9b277d0aa61c8188007c", + "size": 227877, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12156320/fullTextXML" + }, + "jats/regression/PMC12157212.nxml": { + "sha256": "0c3dd20e70f179c889f0f0e1b08d8b3d7bcfe2272ee2ebef99a9e6e5a564a18f", + "size": 278163, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12157212/fullTextXML" + }, + "jats/regression/PMC12175079.nxml": { + "sha256": "39d09c575f531738a42fb03fda0e41d5fe44ba0f20a52ec4af64842071223067", + "size": 165241, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12175079/fullTextXML" + }, + "jats/regression/PMC12177006.nxml": { + "sha256": "141a21043cec182b73a3c2415072e1b98385d0c7c8c7e2560d6c2adec9f2fd55", + "size": 143657, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12177006/fullTextXML" + }, + "jats/regression/PMC12177006.xml": { + "sha256": "141a21043cec182b73a3c2415072e1b98385d0c7c8c7e2560d6c2adec9f2fd55", + "size": 143657, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12177006/fullTextXML" + }, + "jats/regression/PMC12177012.nxml": { + "sha256": "e016df07d732b2512f87354903aed0c39246dc167ae6350d16284c1a938c33f3", + "size": 1023578, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12177012/fullTextXML" + }, + "jats/regression/PMC12177012.xml": { + "sha256": "e016df07d732b2512f87354903aed0c39246dc167ae6350d16284c1a938c33f3", + "size": 1023578, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12177012/fullTextXML" + }, + "jats/regression/PMC12180666.nxml": { + "sha256": "71e57cf6092c0e2658a051abe0f3d5040f00907e49adb36a8ad57ec99c8697f6", + "size": 309562, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12180666/fullTextXML" + }, + "jats/regression/PMC12187838.nxml": { + "sha256": "cd6d31a65c399f211ef2ad348fc881abc0390e966eb4d7b22ceb75cfe52dca67", + "size": 557055, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12187838/fullTextXML" + }, + "jats/regression/PMC12187838.xml": { + "sha256": "cd6d31a65c399f211ef2ad348fc881abc0390e966eb4d7b22ceb75cfe52dca67", + "size": 557055, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12187838/fullTextXML" + }, + "jats/regression/PMC12191572.nxml": { + "sha256": "ec0ac3b308464328aa688813f65d605b25fbe72301e5da9cdb9de48fa1b735d8", + "size": 312786, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12191572/fullTextXML" + }, + "jats/regression/PMC12191572.xml": { + "sha256": "ec0ac3b308464328aa688813f65d605b25fbe72301e5da9cdb9de48fa1b735d8", + "size": 312786, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12191572/fullTextXML" + }, + "jats/regression/PMC12191672.nxml": { + "sha256": "fbdc67ad81178f45894b0b83e56d79ca1efd73f78d4ba22cd9ca0fecec1b2737", + "size": 233650, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12191672/fullTextXML" + }, + "jats/regression/PMC12191820.nxml": { + "sha256": "6650efc44195de134a2ae92f8c13d16415903557514a766ec63ae79ea3c4ba00", + "size": 297602, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12191820/fullTextXML" + }, + "jats/regression/PMC12191820.xml": { + "sha256": "6650efc44195de134a2ae92f8c13d16415903557514a766ec63ae79ea3c4ba00", + "size": 297602, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12191820/fullTextXML" + }, + "jats/regression/PMC12192408.nxml": { + "sha256": "14b956de1ef130c233b0693b824656cb487ea56ff08c4db6daa2da335686693b", + "size": 100779, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12192408/fullTextXML" + }, + "jats/regression/PMC12192408.xml": { + "sha256": "14b956de1ef130c233b0693b824656cb487ea56ff08c4db6daa2da335686693b", + "size": 100779, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12192408/fullTextXML" + }, + "jats/regression/PMC12192506.nxml": { + "sha256": "ec053abe9e4cf2693d801068c98856a423cb07d223ef841c6eaacc23dabc4b65", + "size": 134047, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12192506/fullTextXML" + }, + "jats/regression/PMC12193880.nxml": { + "sha256": "b238514e5fc4176d525636257e2ae013e9c5fe38a4ce0e69fdf226d726fd4443", + "size": 500944, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12193880/fullTextXML" + }, + "jats/regression/PMC12194039.nxml": { + "sha256": "ca0bb3dca2ac5576dfd0564ca8517b1fc0c11dbb81a5c596f2548ebe05c2b552", + "size": 193327, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12194039/fullTextXML" + }, + "jats/regression/PMC12197266.nxml": { + "sha256": "0f5f00ab1eedde4da760f4b8cb53eeedc98800f3139d690d409f0c0d44d6af05", + "size": 272850, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12197266/fullTextXML" + }, + "jats/regression/PMC12197266.xml": { + "sha256": "0f5f00ab1eedde4da760f4b8cb53eeedc98800f3139d690d409f0c0d44d6af05", + "size": 272850, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12197266/fullTextXML" + }, + "jats/regression/PMC12200861.nxml": { + "sha256": "721b916a4ab8ddd65524fab1587ef1a636db11b4b846cd38102f9b737e597580", + "size": 258879, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12200861/fullTextXML" + }, + "jats/regression/PMC12201588.nxml": { + "sha256": "6965a7983bfb5c3f85adbb92dd9d1502de9f13aaf5379926f52e2d1025d7ff1e", + "size": 209802, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12201588/fullTextXML" + }, + "jats/regression/PMC12204626.nxml": { + "sha256": "d33a6e14bc1f4ee0a77a5a5cf2a751e855a1fa7f59b710c749788ea0f5090179", + "size": 249936, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12204626/fullTextXML" + }, + "jats/regression/PMC12212563.nxml": { + "sha256": "76d7a243a47fc49ee669e866655bd2e1bc05201f7e07afa74c26f06d27b76e77", + "size": 206176, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12212563/fullTextXML" + }, + "jats/regression/PMC12213896.nxml": { + "sha256": "2c2c80e49a65ec906830c4a7f7d591d982e9906aec3cb417381923dd418a55c5", + "size": 997758, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12213896/fullTextXML" + }, + "jats/regression/PMC12214561.nxml": { + "sha256": "90f398a70e07a9bb0294d5eca6534db66bad9f9ebeced1bbd1eef94a72e1c95f", + "size": 514228, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12214561/fullTextXML" + }, + "jats/regression/PMC12214598.nxml": { + "sha256": "5c4fc3afc017f09656ee5a9fb144bd0a48038cc578e3dcf7caeb3ad83be08826", + "size": 136627, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12214598/fullTextXML" + }, + "jats/regression/PMC12219029.nxml": { + "sha256": "2ea87a290933ca6a2a2ec0e9e42e9ad6dc7ee1cd1fcfa8cf556797bdf7ed698f", + "size": 162217, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12219029/fullTextXML" + }, + "jats/regression/PMC12221080.nxml": { + "sha256": "99b88815f055cda21a9dc7d8dba4849297a96a93e2ad9d6281cb0a15b0938ea6", + "size": 607905, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12221080/fullTextXML" + }, + "jats/regression/PMC12225753.nxml": { + "sha256": "c09aa00d0786b6457a678e963189a44e539040fb097027dfc71fc459905867ff", + "size": 210011, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12225753/fullTextXML" + }, + "jats/regression/PMC12225753.xml": { + "sha256": "c09aa00d0786b6457a678e963189a44e539040fb097027dfc71fc459905867ff", + "size": 210011, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12225753/fullTextXML" + }, + "jats/regression/PMC12227729.nxml": { + "sha256": "d375c499d12c38bebd09a0ea50800b68a173bed8a322dbb99e5b682c2e27408c", + "size": 434651, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12227729/fullTextXML" + }, + "jats/regression/PMC12238751.nxml": { + "sha256": "c131745ed66407d0f0727109584cadad8c500414f1fd2b6014312c020aa87ccc", + "size": 573006, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12238751/fullTextXML" + }, + "jats/regression/PMC12240399.nxml": { + "sha256": "94574d38302537a58604273e1330d47f260fc993d356839cc4d816d74bb1d062", + "size": 591385, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12240399/fullTextXML" + }, + "jats/regression/PMC12255578.nxml": { + "sha256": "74e68a7a0faae2e1e8dff4e44de9098e44ee473ec4e06c251c282311b4c49738", + "size": 368237, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12255578/fullTextXML" + }, + "jats/regression/PMC12255623.nxml": { + "sha256": "09cada63d0c844cb39011be408548f819847d345099d60346a009130b7433834", + "size": 3286791, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12255623/fullTextXML" + }, + "jats/regression/PMC12259811.nxml": { + "sha256": "6b8cd7147b05d3c22a229e672fa7b01ed7c1e147578794a99d89ac479587f06c", + "size": 1607864, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12259811/fullTextXML" + }, + "jats/regression/PMC12259811.xml": { + "sha256": "6b8cd7147b05d3c22a229e672fa7b01ed7c1e147578794a99d89ac479587f06c", + "size": 1607864, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12259811/fullTextXML" + }, + "jats/regression/PMC12260097.nxml": { + "sha256": "399ebb84ffaf08fb0ca372ee4c93cdb6196b193ddbde95a9ad0819336c2e698f", + "size": 172582, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12260097/fullTextXML" + }, + "jats/regression/PMC12261459.nxml": { + "sha256": "1c795964b0794a4860eeb8d732b7c03041d1f3017465892001113b84c00b2a7f", + "size": 127414, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12261459/fullTextXML" + }, + "jats/regression/PMC12265988.nxml": { + "sha256": "c7923e5cfbe52cd65c3e4e7f9350a0959a0072ce99b1606b7bafff1598ae009c", + "size": 444447, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12265988/fullTextXML" + }, + "jats/regression/PMC12265988.xml": { + "sha256": "c7923e5cfbe52cd65c3e4e7f9350a0959a0072ce99b1606b7bafff1598ae009c", + "size": 444447, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12265988/fullTextXML" + }, + "jats/regression/PMC12274245.nxml": { + "sha256": "d3631f2ccf94d3dbcb9648d09273a559bd4be3194c5cb41d1a053e71bd1ba2fd", + "size": 416744, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12274245/fullTextXML" + }, + "jats/regression/PMC12274245.xml": { + "sha256": "d3631f2ccf94d3dbcb9648d09273a559bd4be3194c5cb41d1a053e71bd1ba2fd", + "size": 416744, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12274245/fullTextXML" + }, + "jats/regression/PMC12277398.nxml": { + "sha256": "b2dd8a4bc4d0e54b5c626b4f515896540303efdd6a868f09e8785c6aeb7dbeb2", + "size": 448775, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12277398/fullTextXML" + }, + "jats/regression/PMC12283871.nxml": { + "sha256": "311d623f8ce3548d28e58b7eadf0a29337b433c04a888e0cf2baa2b6de9a67a1", + "size": 691060, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12283871/fullTextXML" + }, + "jats/regression/PMC12283871.xml": { + "sha256": "311d623f8ce3548d28e58b7eadf0a29337b433c04a888e0cf2baa2b6de9a67a1", + "size": 691060, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12283871/fullTextXML" + }, + "jats/regression/PMC12293069.nxml": { + "sha256": "7797ad29fe3a81cd1f8112ecc82dab69a6b827343b21d1b16d53a73dbc9f11da", + "size": 219712, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12293069/fullTextXML" + }, + "jats/regression/PMC12294102.nxml": { + "sha256": "44be9cd2bbf707e0f0508bc3a571832e0d0c7b593217367d0484bd59fc03d702", + "size": 132571, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12294102/fullTextXML" + }, + "jats/regression/PMC12294171.nxml": { + "sha256": "8160646282a83a5dcc0a6383c5007a508d25c46c8a9912006d2f3672fcbe9de3", + "size": 58927, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12294171/fullTextXML" + }, + "jats/regression/PMC12294351.nxml": { + "sha256": "c61eac5a07f0a9351f994e9db0015353256f4ec8066b5f30629bec2d199fd2be", + "size": 540107, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12294351/fullTextXML" + }, + "jats/regression/PMC12294463.nxml": { + "sha256": "70749643a1786647bc5813855a805d2d51492ef43e1d4cd5b6fcd254cd64016d", + "size": 113662, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12294463/fullTextXML" + }, + "jats/regression/PMC12294463.xml": { + "sha256": "70749643a1786647bc5813855a805d2d51492ef43e1d4cd5b6fcd254cd64016d", + "size": 113662, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12294463/fullTextXML" + }, + "jats/regression/PMC12295830.nxml": { + "sha256": "7fa8419025af72d6c42f3ebee7a84b3f6e3b7aab971a3067872670d03d7c2064", + "size": 716916, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12295830/fullTextXML" + }, + "jats/regression/PMC12295948.nxml": { + "sha256": "69788e0550be778663d30752b548fcf14a2da8fcb75a49d51e68c2b17fa3fc88", + "size": 251441, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12295948/fullTextXML" + }, + "jats/regression/PMC12295948.xml": { + "sha256": "69788e0550be778663d30752b548fcf14a2da8fcb75a49d51e68c2b17fa3fc88", + "size": 251441, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12295948/fullTextXML" + }, + "jats/regression/PMC12298435.nxml": { + "sha256": "b31ab5fee05f01e5cf18c3ae1b1bd6cfdce6296a3c54334558737851d71d7fe9", + "size": 219849, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12298435/fullTextXML" + }, + "jats/regression/PMC12298435.xml": { + "sha256": "b31ab5fee05f01e5cf18c3ae1b1bd6cfdce6296a3c54334558737851d71d7fe9", + "size": 219849, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12298435/fullTextXML" + }, + "jats/regression/PMC12301016.nxml": { + "sha256": "f7a77c07099303b0cd9b24eef896acd00cdd6cadc1827e24259c1f5e19ea2983", + "size": 117691, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12301016/fullTextXML" + }, + "jats/regression/PMC12301016.xml": { + "sha256": "f7a77c07099303b0cd9b24eef896acd00cdd6cadc1827e24259c1f5e19ea2983", + "size": 117691, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12301016/fullTextXML" + }, + "jats/regression/PMC12308350.nxml": { + "sha256": "c5459ac673de0c11dcc7e025bfbf2b62128d218f687dff9f94c83361aa878462", + "size": 326460, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12308350/fullTextXML" + }, + "jats/regression/PMC12310883.nxml": { + "sha256": "a5ce9e81a37f6d63ef0a3b865eae40e114fbb25dc10d960dfd636ef8a2a56193", + "size": 1476585, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12310883/fullTextXML" + }, + "jats/regression/PMC12310883.xml": { + "sha256": "a5ce9e81a37f6d63ef0a3b865eae40e114fbb25dc10d960dfd636ef8a2a56193", + "size": 1476585, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12310883/fullTextXML" + }, + "jats/regression/PMC12316784.nxml": { + "sha256": "15d36ce10ec39c3e3c6a45213010ba11ee16f10da163792b9184cbbee3c9a5aa", + "size": 179973, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12316784/fullTextXML" + }, + "jats/regression/PMC12316784.xml": { + "sha256": "15d36ce10ec39c3e3c6a45213010ba11ee16f10da163792b9184cbbee3c9a5aa", + "size": 179973, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12316784/fullTextXML" + }, + "jats/regression/PMC12316818.nxml": { + "sha256": "6a5103623ea3e0640202f9679814a5b6ca4c00c307b6b7c879c9e6cd08423597", + "size": 2190872, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12316818/fullTextXML" + }, + "jats/regression/PMC12316818.xml": { + "sha256": "6a5103623ea3e0640202f9679814a5b6ca4c00c307b6b7c879c9e6cd08423597", + "size": 2190872, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12316818/fullTextXML" + }, + "jats/regression/PMC12316858.nxml": { + "sha256": "079d355619316be8bba80aad3324d5e6df6bac1026a2b7730e7ed7a067ae07ce", + "size": 3064732, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12316858/fullTextXML" + }, + "jats/regression/PMC12317882.nxml": { + "sha256": "eedc74e1336585175d96c4f39149aaf7558e70866191e5904fceefeebe4fe814", + "size": 1374672, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12317882/fullTextXML" + }, + "jats/regression/PMC12317882.xml": { + "sha256": "eedc74e1336585175d96c4f39149aaf7558e70866191e5904fceefeebe4fe814", + "size": 1374672, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12317882/fullTextXML" + }, + "jats/regression/PMC12317992.nxml": { + "sha256": "2649b9e9c487893d4802cfd8a52720166e3ba9b97fd8e3716bc4323aaa4745c3", + "size": 255193, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12317992/fullTextXML" + }, + "jats/regression/PMC12325449.nxml": { + "sha256": "504abb1e96d323d1e906a0370a901cf5a60bd54928437dc432f03317f5704d7a", + "size": 895004, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12325449/fullTextXML" + }, + "jats/regression/PMC12325449.xml": { + "sha256": "504abb1e96d323d1e906a0370a901cf5a60bd54928437dc432f03317f5704d7a", + "size": 895004, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12325449/fullTextXML" + }, + "jats/regression/PMC12335408.nxml": { + "sha256": "2521800f9a0b911a9fcccc30dcabae96112bb3a14def1540e3a4405868899328", + "size": 436830, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12335408/fullTextXML" + }, + "jats/regression/PMC12335408.xml": { + "sha256": "2521800f9a0b911a9fcccc30dcabae96112bb3a14def1540e3a4405868899328", + "size": 436830, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12335408/fullTextXML" + }, + "jats/regression/PMC12341082.nxml": { + "sha256": "64f798941c43ace96a131ce17ae55e65647610cc2cfc8713edcdcf1d829d7ef7", + "size": 259286, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12341082/fullTextXML" + }, + "jats/regression/PMC12344285.nxml": { + "sha256": "e2fb4798c19e249f8bae21b3aee5f45bd48a05a7eaa552adb9910c20871cde9a", + "size": 289171, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12344285/fullTextXML" + }, + "jats/regression/PMC12344285.xml": { + "sha256": "e2fb4798c19e249f8bae21b3aee5f45bd48a05a7eaa552adb9910c20871cde9a", + "size": 289171, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12344285/fullTextXML" + }, + "jats/regression/PMC12346955.nxml": { + "sha256": "55d21250a2dbcbd5fb25fb870754cac7a86fe1e3edb20d12b6effac5015bb5f1", + "size": 97760, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12346955/fullTextXML" + }, + "jats/regression/PMC12346955.xml": { + "sha256": "55d21250a2dbcbd5fb25fb870754cac7a86fe1e3edb20d12b6effac5015bb5f1", + "size": 97760, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12346955/fullTextXML" + }, + "jats/regression/PMC12349628.nxml": { + "sha256": "f8683af4d3df7c4efb3652f4d38db6ec607adcba47c4c5ffce9c75c2a2cc6424", + "size": 264557, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12349628/fullTextXML" + }, + "jats/regression/PMC12349628.xml": { + "sha256": "f8683af4d3df7c4efb3652f4d38db6ec607adcba47c4c5ffce9c75c2a2cc6424", + "size": 264557, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12349628/fullTextXML" + }, + "jats/regression/PMC12351300.nxml": { + "sha256": "d3fa3b106d0072188eb13cbfc063028508828db4dc3247e410650209740729d7", + "size": 151280, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12351300/fullTextXML" + }, + "jats/regression/PMC12351300.xml": { + "sha256": "d3fa3b106d0072188eb13cbfc063028508828db4dc3247e410650209740729d7", + "size": 151280, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12351300/fullTextXML" + }, + "jats/regression/PMC12352743.nxml": { + "sha256": "fc4c6fdc4ade2e614d162b9f3cd0d955c35cfbe7aa8014cc65e0f13d688ec705", + "size": 167014, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12352743/fullTextXML" + }, + "jats/regression/PMC12362351.nxml": { + "sha256": "80bef0299db9d6ca6fc98aa84ee8a3ea8c35fe9b111a49670ce047e9ece27742", + "size": 77579, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12362351/fullTextXML" + }, + "jats/regression/PMC12370208.nxml": { + "sha256": "a1f823ac7af999dd4fa61c2e6652a638f8e230295d47a27b21624ef2e49d67ae", + "size": 545441, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12370208/fullTextXML" + }, + "jats/regression/PMC12371343.nxml": { + "sha256": "6626bcf281a3f57f8a190ac1dca46180d24498aade37423491b3906c48939cf6", + "size": 143673, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12371343/fullTextXML" + }, + "jats/regression/PMC12371409.nxml": { + "sha256": "603966320e5dea177a8ff3a4c2e9d7e7a1fcf248ee50bda62c4bfea0b0f7c53e", + "size": 152721, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12371409/fullTextXML" + }, + "jats/regression/PMC12372946.nxml": { + "sha256": "9446508c55d99cbd1a073609549f1df9a660efffffb368fbea98892ca3f6e689", + "size": 368956, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12372946/fullTextXML" + }, + "jats/regression/PMC12380267.nxml": { + "sha256": "c4396496055152f4f12f5182e22155e142243fe76bd9455e7cb0c5b932e0db66", + "size": 81057, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12380267/fullTextXML" + }, + "jats/regression/PMC12380953.nxml": { + "sha256": "55fdb28303321c427d2d15cee6aa680bf2e08696e509f988aab3bd89c551d666", + "size": 327235, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12380953/fullTextXML" + }, + "jats/regression/PMC12381056.nxml": { + "sha256": "6974d41a943e9d6245af987d06163861cc38d903982df64c07698f9489b8b0a1", + "size": 140379, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12381056/fullTextXML" + }, + "jats/regression/PMC12381213.nxml": { + "sha256": "dea353a13b04f6a79d12b5600368b8e9422bd5529f58e0b260c3aab88bc814f4", + "size": 103279, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12381213/fullTextXML" + }, + "jats/regression/PMC12381213.xml": { + "sha256": "dea353a13b04f6a79d12b5600368b8e9422bd5529f58e0b260c3aab88bc814f4", + "size": 103279, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12381213/fullTextXML" + }, + "jats/regression/PMC12385433.nxml": { + "sha256": "e2c958c7007c6a8ac8c3f9860900f67b7a4da3b247e396e90835c6069c10ac83", + "size": 500257, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12385433/fullTextXML" + }, + "jats/regression/PMC12385433.xml": { + "sha256": "e2c958c7007c6a8ac8c3f9860900f67b7a4da3b247e396e90835c6069c10ac83", + "size": 500257, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12385433/fullTextXML" + }, + "jats/regression/PMC12385675.nxml": { + "sha256": "79c2e9df0c179e330ea885cc3e1ddd4f917f19d29eebd40811253ed574bb41f8", + "size": 391479, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12385675/fullTextXML" + }, + "jats/regression/PMC12387125.nxml": { + "sha256": "92f3b38667f6ff07282fc610999b40a6eabd4dd39727adbdb587d70b5400a420", + "size": 241714, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12387125/fullTextXML" + }, + "jats/regression/PMC12387125.xml": { + "sha256": "92f3b38667f6ff07282fc610999b40a6eabd4dd39727adbdb587d70b5400a420", + "size": 241714, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12387125/fullTextXML" + }, + "jats/regression/PMC12390310.nxml": { + "sha256": "276948d0c496f582d4d6ab66769e1547917c8eaf5fce710a023b83ac6f4287d8", + "size": 315007, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12390310/fullTextXML" + }, + "jats/regression/PMC12396723.nxml": { + "sha256": "78982eed3fce8df52b49ade5df7e55e11e32cd75e7cdfbd2428392c8b8640e91", + "size": 429259, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12396723/fullTextXML" + }, + "jats/regression/PMC12398451.nxml": { + "sha256": "73fc3879a772b46277682343c654c3abaf5e0e567d22baac435fae19819b4f14", + "size": 302448, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12398451/fullTextXML" + }, + "jats/regression/PMC12419668.nxml": { + "sha256": "f9036b9bfa7d169e2186d014fe8b75e756b109b6eed79002da939500c0c13f2d", + "size": 566289, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12419668/fullTextXML" + }, + "jats/regression/PMC12422462.nxml": { + "sha256": "bf9f2589e33aaf6bdb6f79369be45db29165b54fb4f050027d55c66eba1da070", + "size": 387619, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12422462/fullTextXML" + }, + "jats/regression/PMC12423140.nxml": { + "sha256": "dd0e01c7d87a8d1fd112bb73818b35b130f831f9640b68311c9cc1528802ebd8", + "size": 756143, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12423140/fullTextXML" + }, + "jats/regression/PMC12430273.nxml": { + "sha256": "e040f82d7873350396fc5fc404dda5c68f5112db4eeb37a586184297e6bce107", + "size": 210422, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12430273/fullTextXML" + }, + "jats/regression/PMC12430273.xml": { + "sha256": "e040f82d7873350396fc5fc404dda5c68f5112db4eeb37a586184297e6bce107", + "size": 210422, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12430273/fullTextXML" + }, + "jats/regression/PMC12430873.nxml": { + "sha256": "645486227373883fbca136cf0bd26e9a15a893e2f1acef5537ec3192a16a28f5", + "size": 117182, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12430873/fullTextXML" + }, + "jats/regression/PMC12430873.xml": { + "sha256": "645486227373883fbca136cf0bd26e9a15a893e2f1acef5537ec3192a16a28f5", + "size": 117182, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12430873/fullTextXML" + }, + "jats/regression/PMC12430979.nxml": { + "sha256": "b360ac55bc0c5e22e7c48d67725cfced33fd357e7ae2681e05cafad6a284c1cc", + "size": 169861, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12430979/fullTextXML" + }, + "jats/regression/PMC12430979.xml": { + "sha256": "b360ac55bc0c5e22e7c48d67725cfced33fd357e7ae2681e05cafad6a284c1cc", + "size": 169861, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12430979/fullTextXML" + }, + "jats/regression/PMC12431235.nxml": { + "sha256": "8df5bc2f415d91f950f3e0421b9bd6c984e9ba86549f1418edb9cdfd368f4e82", + "size": 417113, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12431235/fullTextXML" + }, + "jats/regression/PMC12431235.xml": { + "sha256": "8df5bc2f415d91f950f3e0421b9bd6c984e9ba86549f1418edb9cdfd368f4e82", + "size": 417113, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12431235/fullTextXML" + }, + "jats/regression/PMC12431318.nxml": { + "sha256": "a4701bbcb03da4973e91d45e14c16d85f41cb590eeb54ff27bccc0395e2d56bd", + "size": 430950, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12431318/fullTextXML" + }, + "jats/regression/PMC12431318.xml": { + "sha256": "a4701bbcb03da4973e91d45e14c16d85f41cb590eeb54ff27bccc0395e2d56bd", + "size": 430950, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12431318/fullTextXML" + }, + "jats/regression/PMC12431404.nxml": { + "sha256": "70b6878267ab30c6c541bf61993c82ba54529db929a2142e0560011b570dad9f", + "size": 488804, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12431404/fullTextXML" + }, + "jats/regression/PMC12431404.xml": { + "sha256": "70b6878267ab30c6c541bf61993c82ba54529db929a2142e0560011b570dad9f", + "size": 488804, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12431404/fullTextXML" + }, + "jats/regression/PMC12440210.nxml": { + "sha256": "2c0cad8fa48c99c2b16798464b855955e896eb2830093f6d45355ff4392e9993", + "size": 88833, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12440210/fullTextXML" + }, + "jats/regression/PMC12440210.xml": { + "sha256": "2c0cad8fa48c99c2b16798464b855955e896eb2830093f6d45355ff4392e9993", + "size": 88833, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12440210/fullTextXML" + }, + "jats/regression/PMC12440624.nxml": { + "sha256": "100c5ae1e1d68305901442fd45a943511520dbb3685006c76a9df4e76a77e0d9", + "size": 287279, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12440624/fullTextXML" + }, + "jats/regression/PMC12453756.nxml": { + "sha256": "d944c76ca863afe1a27b4e5591a274017a952602023f05c6680b6913cca89abe", + "size": 1176743, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12453756/fullTextXML" + }, + "jats/regression/PMC12453756.xml": { + "sha256": "d944c76ca863afe1a27b4e5591a274017a952602023f05c6680b6913cca89abe", + "size": 1176743, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12453756/fullTextXML" + }, + "jats/regression/PMC12457545.nxml": { + "sha256": "00ab4a3daedd216df51a7e864f1b1d109a339e5bca0ee59985aa58c72948bbe5", + "size": 539974, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12457545/fullTextXML" + }, + "jats/regression/PMC12457545.xml": { + "sha256": "00ab4a3daedd216df51a7e864f1b1d109a339e5bca0ee59985aa58c72948bbe5", + "size": 539974, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12457545/fullTextXML" + }, + "jats/regression/PMC12468287.nxml": { + "sha256": "bbb2698291b47ce8469b1e93d19f73ec9d8742b505e49f71d18806edfca4fdae", + "size": 182484, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12468287/fullTextXML" + }, + "jats/regression/PMC12468715.nxml": { + "sha256": "2a1af2ece514384d841db498d5ad2df8370643c1ef220234bab1c59cfad7524c", + "size": 540504, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12468715/fullTextXML" + }, + "jats/regression/PMC12468715.xml": { + "sha256": "2a1af2ece514384d841db498d5ad2df8370643c1ef220234bab1c59cfad7524c", + "size": 540504, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12468715/fullTextXML" + }, + "jats/regression/PMC12472120.nxml": { + "sha256": "8d83c40810dc1e1b9196c8750f034735c9166043a4f04e737cbfaa83731a8cd6", + "size": 53790, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12472120/fullTextXML" + }, + "jats/regression/PMC12473849.nxml": { + "sha256": "79a62938c681329c62490a6d4968e0c7e5b24f8240f3e0f26a186c77a5148495", + "size": 216031, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12473849/fullTextXML" + }, + "jats/regression/PMC12476420.nxml": { + "sha256": "0ac5bb0d05373e24ce7e8f324b469e99cc27c76b6eebb6f27181e9f714a17ff3", + "size": 544511, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12476420/fullTextXML" + }, + "jats/regression/PMC12476420.xml": { + "sha256": "0ac5bb0d05373e24ce7e8f324b469e99cc27c76b6eebb6f27181e9f714a17ff3", + "size": 544511, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12476420/fullTextXML" + }, + "jats/regression/PMC12480521.nxml": { + "sha256": "5f116fce3a68c757bad21462126fe9faea72a7ea34e229cda03a55f927ffcf24", + "size": 230534, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12480521/fullTextXML" + }, + "jats/regression/PMC12483640.nxml": { + "sha256": "6ddef35f8b7c92e7579f694e70a7c607193301a7311ad0d6a869d79610bfaf98", + "size": 229807, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12483640/fullTextXML" + }, + "jats/regression/PMC12491654.nxml": { + "sha256": "1404b03cb0cf04b5f5dab520d3d996f25998824a34cedd29b74405e0a11ba29c", + "size": 139733, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12491654/fullTextXML" + }, + "jats/regression/PMC12500168.nxml": { + "sha256": "033fbda50500597bb631f5bc1869f9e1ce4eef685728516c650cee1a251a8f88", + "size": 363129, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12500168/fullTextXML" + }, + "jats/regression/PMC12500168.xml": { + "sha256": "033fbda50500597bb631f5bc1869f9e1ce4eef685728516c650cee1a251a8f88", + "size": 363129, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12500168/fullTextXML" + }, + "jats/regression/PMC12500371.nxml": { + "sha256": "edefb23cf81628f85c5cda9e581cdb0e994c34c95135d7f0aebb1c158a8c9b68", + "size": 55784, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12500371/fullTextXML" + }, + "jats/regression/PMC12500772.nxml": { + "sha256": "8d7798a6b5471d900b7c0ea58c27e5f8e4abce5ca68cc12b54edd2526d1d8c01", + "size": 1226250, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12500772/fullTextXML" + }, + "jats/regression/PMC12500772.xml": { + "sha256": "8d7798a6b5471d900b7c0ea58c27e5f8e4abce5ca68cc12b54edd2526d1d8c01", + "size": 1226250, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12500772/fullTextXML" + }, + "jats/regression/PMC12503940.nxml": { + "sha256": "36b254b17f6936a4c577452b5a703eb11c83bce73d88c826290b7878291d2554", + "size": 395954, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12503940/fullTextXML" + }, + "jats/regression/PMC12511409.nxml": { + "sha256": "d168f1e7c4c9dce94d35c3e054dbdf472a4b75745d1724f6c9204a883730b716", + "size": 221389, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12511409/fullTextXML" + }, + "jats/regression/PMC12511409.xml": { + "sha256": "d168f1e7c4c9dce94d35c3e054dbdf472a4b75745d1724f6c9204a883730b716", + "size": 221389, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12511409/fullTextXML" + }, + "jats/regression/PMC12513633.nxml": { + "sha256": "0367f3b6c628299e046365f69b005e29cb667a0f61b90e9e21e649c45b89903a", + "size": 472929, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12513633/fullTextXML" + }, + "jats/regression/PMC12513925.nxml": { + "sha256": "b2d1d8fac68a5f446aa94c2a343c93782672d9893f30b5d0506aa97c2aff000c", + "size": 566807, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12513925/fullTextXML" + }, + "jats/regression/PMC12513925.xml": { + "sha256": "b2d1d8fac68a5f446aa94c2a343c93782672d9893f30b5d0506aa97c2aff000c", + "size": 566807, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12513925/fullTextXML" + }, + "jats/regression/PMC12518449.nxml": { + "sha256": "6e83624d2418e47d5cc25626807bc036e536c2f08935c50b4a9f1e2571226425", + "size": 2123233, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12518449/fullTextXML" + }, + "jats/regression/PMC12521310.nxml": { + "sha256": "0cd778d8d5cc22433a7878283e8e89c51d0bdfaff23fb10c5b6f724d7ff06257", + "size": 630345, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12521310/fullTextXML" + }, + "jats/regression/PMC12521310.xml": { + "sha256": "0cd778d8d5cc22433a7878283e8e89c51d0bdfaff23fb10c5b6f724d7ff06257", + "size": 630345, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12521310/fullTextXML" + }, + "jats/regression/PMC12526801.nxml": { + "sha256": "d4f16e53bdf1d29ace60d34d6ad1a4dd52ae41f3e73c0c6f6c1db4ed4811a366", + "size": 146471, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12526801/fullTextXML" + }, + "jats/regression/PMC12528203.nxml": { + "sha256": "840fe7b3e3127dbf3948e4f3322f83dba5164bad20570cb1cd275ffabcc25ca6", + "size": 512685, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12528203/fullTextXML" + }, + "jats/regression/PMC12528203.xml": { + "sha256": "840fe7b3e3127dbf3948e4f3322f83dba5164bad20570cb1cd275ffabcc25ca6", + "size": 512685, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12528203/fullTextXML" + }, + "jats/regression/PMC12528827.nxml": { + "sha256": "bb69ae0ff2ca26123d3550b56809f03e851faca22548d5a094cfafe4d69c43b5", + "size": 184121, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12528827/fullTextXML" + }, + "jats/regression/PMC12528827.xml": { + "sha256": "bb69ae0ff2ca26123d3550b56809f03e851faca22548d5a094cfafe4d69c43b5", + "size": 184121, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12528827/fullTextXML" + }, + "jats/regression/PMC12529146.nxml": { + "sha256": "0bafa106bedfe797a902cc9143a502d0ca945f902ed781037bba1d53b1135913", + "size": 268008, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12529146/fullTextXML" + }, + "jats/regression/PMC12529146.xml": { + "sha256": "0bafa106bedfe797a902cc9143a502d0ca945f902ed781037bba1d53b1135913", + "size": 268008, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12529146/fullTextXML" + }, + "jats/regression/PMC12533972.nxml": { + "sha256": "d6067b08b4862e786f75f99486c489db4870fd7b3f57592f6433018b3ad29d89", + "size": 262073, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12533972/fullTextXML" + }, + "jats/regression/PMC12537993.nxml": { + "sha256": "5dcadcded36e7cf3014e5e89653eae5a6d9f1db92b328c1edfa7550579d5b899", + "size": 258960, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12537993/fullTextXML" + }, + "jats/regression/PMC12537993.xml": { + "sha256": "5dcadcded36e7cf3014e5e89653eae5a6d9f1db92b328c1edfa7550579d5b899", + "size": 258960, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12537993/fullTextXML" + }, + "jats/regression/PMC12540708.nxml": { + "sha256": "ed1d089c8f5c66aaa2b1909460e20ec5d56f3ae208e1e7f2ddd15a647d5b642e", + "size": 197991, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12540708/fullTextXML" + }, + "jats/regression/PMC12543168.nxml": { + "sha256": "de9db7af0ad2100f8cf2302aa0ed9dfc9cd387d906acfd7eb26ed398e41ef971", + "size": 226270, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12543168/fullTextXML" + }, + "jats/regression/PMC12549433.nxml": { + "sha256": "d881170581a441c10b9d6e5452069bc569b8fd780cf6c56273161fa955b6e120", + "size": 601271, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12549433/fullTextXML" + }, + "jats/regression/PMC12559148.nxml": { + "sha256": "5b6893f8ebc347faa8bef3b0dfd81e38e3e85f7985ca3750c26087d7441738e4", + "size": 879887, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12559148/fullTextXML" + }, + "jats/regression/PMC12562088.nxml": { + "sha256": "83cde7619ee7c299ab1a8b8857640dcbd92d2af744b865b9b885d19bb134a4be", + "size": 857341, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12562088/fullTextXML" + }, + "jats/regression/PMC12564046.nxml": { + "sha256": "5e3afd73f109668d933ff086be13b6352148e0684b42ca6d90c781da088e716e", + "size": 255762, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12564046/fullTextXML" + }, + "jats/regression/PMC12564046.xml": { + "sha256": "5e3afd73f109668d933ff086be13b6352148e0684b42ca6d90c781da088e716e", + "size": 255762, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12564046/fullTextXML" + }, + "jats/regression/PMC12564203.nxml": { + "sha256": "7f68165b2a5374ff632d1b3a8ab7db80e46a06454dac755acb473f5f480221a5", + "size": 166074, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12564203/fullTextXML" + }, + "jats/regression/PMC12578354.nxml": { + "sha256": "7478211a9d4644a30b55101cc2529c0e5551cdc8d8c27533008e1b3989113010", + "size": 240198, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12578354/fullTextXML" + }, + "jats/regression/PMC12580444.nxml": { + "sha256": "1334fbffad7ab95e7171dc54c811d4dcfe059a5617cef1725048c5387bddc353", + "size": 1294655, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12580444/fullTextXML" + }, + "jats/regression/PMC12580444.xml": { + "sha256": "1334fbffad7ab95e7171dc54c811d4dcfe059a5617cef1725048c5387bddc353", + "size": 1294655, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12580444/fullTextXML" + }, + "jats/regression/PMC12582295.nxml": { + "sha256": "6988291f18b819d2af5ac3591123707408cf98207f67a6d9cf3d765e8507a828", + "size": 195789, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12582295/fullTextXML" + }, + "jats/regression/PMC12582433.nxml": { + "sha256": "beb10453c2075af1846353e075c3c5c515e05bd3c3ca4e5c5c181016ee309d12", + "size": 84024, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12582433/fullTextXML" + }, + "jats/regression/PMC12583131.nxml": { + "sha256": "554fde24ff79ca4a73354284cbc1c81edbb7cfaff6db0dd369f39c286e02ce2d", + "size": 137362, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12583131/fullTextXML" + }, + "jats/regression/PMC12583131.xml": { + "sha256": "554fde24ff79ca4a73354284cbc1c81edbb7cfaff6db0dd369f39c286e02ce2d", + "size": 137362, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12583131/fullTextXML" + }, + "jats/regression/PMC12589237.nxml": { + "sha256": "184c1071b4256952a1cacf742aae6e403fc27869e61ae9ce5c1df7e1b2ffb8db", + "size": 817833, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12589237/fullTextXML" + }, + "jats/regression/PMC12592358.nxml": { + "sha256": "6decda4e5b5256b2424a41d829d5245e3bcc3f37150299cdf9c46b158b24176f", + "size": 473740, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12592358/fullTextXML" + }, + "jats/regression/PMC12592358.xml": { + "sha256": "6decda4e5b5256b2424a41d829d5245e3bcc3f37150299cdf9c46b158b24176f", + "size": 473740, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12592358/fullTextXML" + }, + "jats/regression/PMC12593390.nxml": { + "sha256": "591e8f5ecb609c0750925f508034438efc0b338b494fca96e1ca98ef2a82321a", + "size": 182867, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12593390/fullTextXML" + }, + "jats/regression/PMC12593390.xml": { + "sha256": "591e8f5ecb609c0750925f508034438efc0b338b494fca96e1ca98ef2a82321a", + "size": 182867, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12593390/fullTextXML" + }, + "jats/regression/PMC12598859.nxml": { + "sha256": "2f938c26a5a3b54658a680e06a62fae789c6abd2d4fddc382a12b467c526604e", + "size": 151276, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12598859/fullTextXML" + }, + "jats/regression/PMC12598859.xml": { + "sha256": "2f938c26a5a3b54658a680e06a62fae789c6abd2d4fddc382a12b467c526604e", + "size": 151276, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12598859/fullTextXML" + }, + "jats/regression/PMC12615684.nxml": { + "sha256": "ef5dd80f5b9f600337efe0fd7946137d9c9b771ce8772766ba5875744ea34be8", + "size": 108061, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12615684/fullTextXML" + }, + "jats/regression/PMC12626311.nxml": { + "sha256": "6693dd46f7c9cabf6bcf34461fd9b5f00614b00fd0095f369a0746238c8a7821", + "size": 237257, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12626311/fullTextXML" + }, + "jats/regression/PMC12627718.nxml": { + "sha256": "819e127d1142a8b45ecf131bdbefbcefd0a0aa88a3f75e40f89e2d67e9a00834", + "size": 453658, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12627718/fullTextXML" + }, + "jats/regression/PMC12628016.nxml": { + "sha256": "a86e167952a0d6bfb068c6c9bd14d902654c1cc0c9f6222948d8f3de0afa5e35", + "size": 294932, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12628016/fullTextXML" + }, + "jats/regression/PMC12628016.xml": { + "sha256": "a86e167952a0d6bfb068c6c9bd14d902654c1cc0c9f6222948d8f3de0afa5e35", + "size": 294932, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12628016/fullTextXML" + }, + "jats/regression/PMC12647297.nxml": { + "sha256": "bf5132b0c5e5d1cd3ee85aa12f99fa1c045ec4af296564118b30f99aefc08ac9", + "size": 1563916, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12647297/fullTextXML" + }, + "jats/regression/PMC12647297.xml": { + "sha256": "bf5132b0c5e5d1cd3ee85aa12f99fa1c045ec4af296564118b30f99aefc08ac9", + "size": 1563916, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12647297/fullTextXML" + }, + "jats/regression/PMC12649373.nxml": { + "sha256": "ab9d9a68a6fe3866f99a1942b079391e7d37ecde16057926f5530dd2e8a07156", + "size": 95027, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12649373/fullTextXML" + }, + "jats/regression/PMC12649903.nxml": { + "sha256": "0c2ece1a776ac1b5a45de9d7540770c0525b72764c4a6e0f7386cab5f6576d1d", + "size": 526498, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12649903/fullTextXML" + }, + "jats/regression/PMC12651094.nxml": { + "sha256": "73057e5df9e109208ed437afe82b08fcf676af473ec415af95df8d19caf1ae56", + "size": 447300, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12651094/fullTextXML" + }, + "jats/regression/PMC12651176.nxml": { + "sha256": "0b973f44b2df266c902e26c4ffaef70df950bbf1fc657bea17d27ce9f2ec1a17", + "size": 284320, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12651176/fullTextXML" + }, + "jats/regression/PMC12651698.nxml": { + "sha256": "6777cbfb49fbf58bf9847bfc6347eb7f1f497ce0e3f01315f20f31e68c608621", + "size": 426524, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12651698/fullTextXML" + }, + "jats/regression/PMC12651698.xml": { + "sha256": "6777cbfb49fbf58bf9847bfc6347eb7f1f497ce0e3f01315f20f31e68c608621", + "size": 426524, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12651698/fullTextXML" + }, + "jats/regression/PMC12654209.nxml": { + "sha256": "72cdfe2d2f6ddf0e600b4c2da787309ca2d5aae7ee2df5a99ffc52c83a5b888a", + "size": 204167, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12654209/fullTextXML" + }, + "jats/regression/PMC12654209.xml": { + "sha256": "72cdfe2d2f6ddf0e600b4c2da787309ca2d5aae7ee2df5a99ffc52c83a5b888a", + "size": 204167, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12654209/fullTextXML" + }, + "jats/regression/PMC12665521.nxml": { + "sha256": "cb64f7c62a81fd5ef77fff00be99e6547b73b07ef7008eee93a09c29d30aa7f7", + "size": 154306, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12665521/fullTextXML" + }, + "jats/regression/PMC12665521.xml": { + "sha256": "cb64f7c62a81fd5ef77fff00be99e6547b73b07ef7008eee93a09c29d30aa7f7", + "size": 154306, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12665521/fullTextXML" + }, + "jats/regression/PMC12671912.nxml": { + "sha256": "03950d17c82b1c78fe1d5179a3495996ca9d3331989a38d0e1557ad4dc213697", + "size": 113372, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12671912/fullTextXML" + }, + "jats/regression/PMC12671912.xml": { + "sha256": "03950d17c82b1c78fe1d5179a3495996ca9d3331989a38d0e1557ad4dc213697", + "size": 113372, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12671912/fullTextXML" + }, + "jats/regression/PMC12675571.nxml": { + "sha256": "1d0fd5e633d9631751edfa7c599625287f412c4804aa999302f11b1510a2225b", + "size": 998659, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12675571/fullTextXML" + }, + "jats/regression/PMC12680364.nxml": { + "sha256": "d53694bd7fd970c7da58d115fcdcbaedc86e9fb4444105dff388b088762a6243", + "size": 344877, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12680364/fullTextXML" + }, + "jats/regression/PMC12680882.nxml": { + "sha256": "4408bca5b284b418042078a9f901b57e34c5caf1c2532d399ac895fefca69fd7", + "size": 449862, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12680882/fullTextXML" + }, + "jats/regression/PMC12684706.nxml": { + "sha256": "71f4b68c4bdf06a0b01741005b6ac5c7bcbce8b74caf95489518b7a08c34d294", + "size": 72207, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12684706/fullTextXML" + }, + "jats/regression/PMC12691448.nxml": { + "sha256": "1b185cfc56192534bd63079ffa62542ac1792c291e0c6c0835738538e7c696bf", + "size": 203104, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12691448/fullTextXML" + }, + "jats/regression/PMC12696151.nxml": { + "sha256": "d71c4d0cecf7633fe73dea6501d24994e9e4080d37f815e8529beeca55f19a2f", + "size": 1858795, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12696151/fullTextXML" + }, + "jats/regression/PMC12696151.xml": { + "sha256": "d71c4d0cecf7633fe73dea6501d24994e9e4080d37f815e8529beeca55f19a2f", + "size": 1858795, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12696151/fullTextXML" + }, + "jats/regression/PMC12701863.nxml": { + "sha256": "b1d82491be539cb464097fd4580d09737c3bd744360589ce48b6dcc9993ee192", + "size": 1156482, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12701863/fullTextXML" + }, + "jats/regression/PMC12701863.xml": { + "sha256": "b1d82491be539cb464097fd4580d09737c3bd744360589ce48b6dcc9993ee192", + "size": 1156482, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12701863/fullTextXML" + }, + "jats/regression/PMC12704870.nxml": { + "sha256": "977554d2bbd940228d0ffd0d758781a07fe54695c25f9fe8ea16808bc10c4f78", + "size": 600882, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12704870/fullTextXML" + }, + "jats/regression/PMC12704870.xml": { + "sha256": "977554d2bbd940228d0ffd0d758781a07fe54695c25f9fe8ea16808bc10c4f78", + "size": 600882, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12704870/fullTextXML" + }, + "jats/regression/PMC12704905.nxml": { + "sha256": "74d7b01c86ab3f04e3a3f40dd500dcf89ec3ca4d34f1ad7450701c80bc712560", + "size": 457796, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12704905/fullTextXML" + }, + "jats/regression/PMC12704905.xml": { + "sha256": "74d7b01c86ab3f04e3a3f40dd500dcf89ec3ca4d34f1ad7450701c80bc712560", + "size": 457796, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12704905/fullTextXML" + }, + "jats/regression/PMC12705306.nxml": { + "sha256": "27497457bc86105b297f8c3c559b1b1c9b4ca537c2aef532f3e28ef4ae96a945", + "size": 159700, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12705306/fullTextXML" + }, + "jats/regression/PMC12705306.xml": { + "sha256": "27497457bc86105b297f8c3c559b1b1c9b4ca537c2aef532f3e28ef4ae96a945", + "size": 159700, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12705306/fullTextXML" + }, + "jats/regression/PMC12705632.nxml": { + "sha256": "3158a5f75f7da60e97e91f314a66d7636983d4be5d5d3dd0cd3124f3e0b66252", + "size": 76797, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12705632/fullTextXML" + }, + "jats/regression/PMC12705632.xml": { + "sha256": "3158a5f75f7da60e97e91f314a66d7636983d4be5d5d3dd0cd3124f3e0b66252", + "size": 76797, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12705632/fullTextXML" + }, + "jats/regression/PMC12708753.nxml": { + "sha256": "0f2af7ab38be39003a59514287ccd42365f28776ba3f4dee60c7f7da93c06fd3", + "size": 2768744, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12708753/fullTextXML" + }, + "jats/regression/PMC12708753.xml": { + "sha256": "0f2af7ab38be39003a59514287ccd42365f28776ba3f4dee60c7f7da93c06fd3", + "size": 2768744, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12708753/fullTextXML" + }, + "jats/regression/PMC12714238.nxml": { + "sha256": "646b43d3c7be9d525ac80b4b746c84facba51a779949599f7948ab4d80b5ac11", + "size": 307678, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12714238/fullTextXML" + }, + "jats/regression/PMC12717847.nxml": { + "sha256": "ac0aa9df3d51d39a45abbf2290891c880bffaf2ae4bc00d867e3c0fe26efdb23", + "size": 153643, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12717847/fullTextXML" + }, + "jats/regression/PMC12717847.xml": { + "sha256": "ac0aa9df3d51d39a45abbf2290891c880bffaf2ae4bc00d867e3c0fe26efdb23", + "size": 153643, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12717847/fullTextXML" + }, + "jats/regression/PMC12727910.nxml": { + "sha256": "b5a4620aeac8222b3a4005cb87264cba5c33352052dc1e59b7394c0927718e20", + "size": 244372, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12727910/fullTextXML" + }, + "jats/regression/PMC12727910.xml": { + "sha256": "b5a4620aeac8222b3a4005cb87264cba5c33352052dc1e59b7394c0927718e20", + "size": 244372, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12727910/fullTextXML" + }, + "jats/regression/PMC12729394.nxml": { + "sha256": "9c9faa1ab45c8f5d3a53d6f129522d2bda39b6aa780cce9813ba60775eeb3aaf", + "size": 181254, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12729394/fullTextXML" + }, + "jats/regression/PMC12729597.nxml": { + "sha256": "43207e5b307cfc66ad2e7bf57a719646a14ab45260e33cd54ea7549c89221eaf", + "size": 251472, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12729597/fullTextXML" + }, + "jats/regression/PMC12732027.nxml": { + "sha256": "f6f4fdd730902151666d895e87ec8b897dc495f6d8ec838950e88c5923f9c5fb", + "size": 204178, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12732027/fullTextXML" + }, + "jats/regression/PMC12732027.xml": { + "sha256": "f6f4fdd730902151666d895e87ec8b897dc495f6d8ec838950e88c5923f9c5fb", + "size": 204178, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12732027/fullTextXML" + }, + "jats/regression/PMC12732191.nxml": { + "sha256": "37599aa8114e19db44b02050d416931df1a3f48a16a5b82c640bd79ddf63ec51", + "size": 155060, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12732191/fullTextXML" + }, + "jats/regression/PMC12732191.xml": { + "sha256": "37599aa8114e19db44b02050d416931df1a3f48a16a5b82c640bd79ddf63ec51", + "size": 155060, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12732191/fullTextXML" + }, + "jats/regression/PMC12735259.nxml": { + "sha256": "1ec09bd5fd88ac6cdc530507bc75e9b198adb3fc8214424b4b89068823811465", + "size": 235078, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12735259/fullTextXML" + }, + "jats/regression/PMC12735259.xml": { + "sha256": "1ec09bd5fd88ac6cdc530507bc75e9b198adb3fc8214424b4b89068823811465", + "size": 235078, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12735259/fullTextXML" + }, + "jats/regression/PMC12736911.nxml": { + "sha256": "efb875bfcf5d261d2897e73a6b575a48274d148daa112b98d4f8d214a65dde8a", + "size": 229394, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12736911/fullTextXML" + }, + "jats/regression/PMC12736911.xml": { + "sha256": "efb875bfcf5d261d2897e73a6b575a48274d148daa112b98d4f8d214a65dde8a", + "size": 229394, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12736911/fullTextXML" + }, + "jats/regression/PMC12738658.nxml": { + "sha256": "5b67cb35cdb875f2fead286d58b839c6149cfdb986a18dbc8ef25c3f19fae1a3", + "size": 427473, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12738658/fullTextXML" + }, + "jats/regression/PMC12748620.nxml": { + "sha256": "b3ae4ade2d637c62f624b03896e55e4d53c48a5a08fd0ca72458b281443b29c3", + "size": 268906, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12748620/fullTextXML" + }, + "jats/regression/PMC12749467.nxml": { + "sha256": "597fa0e1868477dbd5ab51238b811d254fc6b7a4ed13aff1c8741a5a15cb4807", + "size": 170910, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12749467/fullTextXML" + }, + "jats/regression/PMC12750319.nxml": { + "sha256": "8c033c2fc19fde89ce129980ba41c34746e36195cb5f93e7da7a7148b12e9f15", + "size": 56335, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12750319/fullTextXML" + }, + "jats/regression/PMC12750319.xml": { + "sha256": "8c033c2fc19fde89ce129980ba41c34746e36195cb5f93e7da7a7148b12e9f15", + "size": 56335, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12750319/fullTextXML" + }, + "jats/regression/PMC12757381.nxml": { + "sha256": "f9958c657998e43c212c0a63559f9656a924302b36eb9b1564a717ec84a1e6ed", + "size": 72699, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12757381/fullTextXML" + }, + "jats/regression/PMC12768382.nxml": { + "sha256": "2f4de28dedba425d3846d25010c8c356d8a8a37160bb8828c1566dea05a2a150", + "size": 342473, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12768382/fullTextXML" + }, + "jats/regression/PMC12768382.xml": { + "sha256": "2f4de28dedba425d3846d25010c8c356d8a8a37160bb8828c1566dea05a2a150", + "size": 342473, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12768382/fullTextXML" + }, + "jats/regression/PMC12780044.nxml": { + "sha256": "6b2121389cd27745464d4d338338bbf344319ba78a86c8c5ef15c4d351bebfc1", + "size": 272341, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12780044/fullTextXML" + }, + "jats/regression/PMC12780044.xml": { + "sha256": "6b2121389cd27745464d4d338338bbf344319ba78a86c8c5ef15c4d351bebfc1", + "size": 272341, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12780044/fullTextXML" + }, + "jats/regression/PMC12789174.nxml": { + "sha256": "999b934a8b9cf51f94273695db5de2270e22b649f05e9414e0a058c4d5ca0315", + "size": 1631266, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12789174/fullTextXML" + }, + "jats/regression/PMC12789174.xml": { + "sha256": "999b934a8b9cf51f94273695db5de2270e22b649f05e9414e0a058c4d5ca0315", + "size": 1631266, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12789174/fullTextXML" + }, + "jats/regression/PMC12804273.nxml": { + "sha256": "4ebb1f9791ef3c80c8b317fb1c98de7421d8b0c28b90133b5715986b6caa0dfb", + "size": 396699, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12804273/fullTextXML" + }, + "jats/regression/PMC12808344.nxml": { + "sha256": "1a18a817db9fcfe91ed9b8ae9a55619fd8cc67426a0bc0d1083cc5596e3cc4a5", + "size": 149657, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12808344/fullTextXML" + }, + "jats/regression/PMC12808344.xml": { + "sha256": "1a18a817db9fcfe91ed9b8ae9a55619fd8cc67426a0bc0d1083cc5596e3cc4a5", + "size": 149657, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12808344/fullTextXML" + }, + "jats/regression/PMC12808832.nxml": { + "sha256": "8e6122843f15f18615e8300d19eda96bad0d4303594a6c17fd49e8b709f0cace", + "size": 111661, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12808832/fullTextXML" + }, + "jats/regression/PMC12816658.nxml": { + "sha256": "72536334faff1f9abe7fa84995802af20da8c58304862500add00960d95be14a", + "size": 111522, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12816658/fullTextXML" + }, + "jats/regression/PMC12828109.nxml": { + "sha256": "a4fba6222c7fd53a8a85ceda6c84f38f22ac5048f143ca3523a1266a80fb91cb", + "size": 135406, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12828109/fullTextXML" + }, + "jats/regression/PMC12828109.xml": { + "sha256": "a4fba6222c7fd53a8a85ceda6c84f38f22ac5048f143ca3523a1266a80fb91cb", + "size": 135406, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12828109/fullTextXML" + }, + "jats/regression/PMC12837216.nxml": { + "sha256": "434631d31f024e2d0eb80047f7ce5206d7b94392dc8e08ad06db5609a19c7c15", + "size": 207366, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12837216/fullTextXML" + }, + "jats/regression/PMC12839921.nxml": { + "sha256": "bd71fd6520587e6e91329c5acf86959dd9de904a46de802a1b51a6f469598a8e", + "size": 188337, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12839921/fullTextXML" + }, + "jats/regression/PMC12839921.xml": { + "sha256": "bd71fd6520587e6e91329c5acf86959dd9de904a46de802a1b51a6f469598a8e", + "size": 188337, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12839921/fullTextXML" + }, + "jats/regression/PMC12840204.nxml": { + "sha256": "3d2ebad6bbaf808221ef119ec337e268c2b7dda4c9908fd53bc6cc26a15a12be", + "size": 372947, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12840204/fullTextXML" + }, + "jats/regression/PMC12840278.nxml": { + "sha256": "a9285aa1057f6be362d0b4dbbf15559945321d56c05e651c7d47cbbf6141eb15", + "size": 188160, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12840278/fullTextXML" + }, + "jats/regression/PMC12840278.xml": { + "sha256": "a9285aa1057f6be362d0b4dbbf15559945321d56c05e651c7d47cbbf6141eb15", + "size": 188160, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12840278/fullTextXML" + }, + "jats/regression/PMC12844531.nxml": { + "sha256": "8759082b8cd6b0ff8ee036b78c964c18f9e3366261ab12b1f95e8d04d10bddf0", + "size": 148149, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12844531/fullTextXML" + }, + "jats/regression/PMC12844840.nxml": { + "sha256": "eaf77f7f85495476f2db6644594a7fa56b97d6715b1c640f2ef1d3375644151a", + "size": 215865, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12844840/fullTextXML" + }, + "jats/regression/PMC12848303.nxml": { + "sha256": "513c381ae71fd6c03042d3c924de0f7d9edab6d11cff92f6c334c76ac750fd42", + "size": 219554, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12848303/fullTextXML" + }, + "jats/regression/PMC12854464.nxml": { + "sha256": "f4a78e0ebfa34a96acd675728dcb7427ab1e009a1daefadbde2ef27430219a70", + "size": 240151, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12854464/fullTextXML" + }, + "jats/regression/PMC12858077.nxml": { + "sha256": "dd881c67c5d65df8b0c7f68e0c6ee3bd8fb9813306533411ee82a0bdf51f9f80", + "size": 202668, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12858077/fullTextXML" + }, + "jats/regression/PMC12862039.nxml": { + "sha256": "11860a95a57b10236f02f50f49b91ec670b751d242cabef5b0d4858bdd889570", + "size": 302005, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12862039/fullTextXML" + }, + "jats/regression/PMC12863671.nxml": { + "sha256": "a888b1e5c012b080a7038b07b630a10671ebf465ec07ddc37215dcfa0eb10fe6", + "size": 104815, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12863671/fullTextXML" + }, + "jats/regression/PMC12863695.nxml": { + "sha256": "cbdb0b6c5123b273e779cc0eff46272882a335eb29de372395f7682ccd4e2f9e", + "size": 257918, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12863695/fullTextXML" + }, + "jats/regression/PMC12864367.nxml": { + "sha256": "c0ec4301bff26eeb47d26490237b8bd0ec4899b7913d882c21f73c6967359e3e", + "size": 558880, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12864367/fullTextXML" + }, + "jats/regression/PMC12865184.nxml": { + "sha256": "74fb751de2de55e4ac132f6dde96383403d21f6076e9d8a1f2a027ee313ad55a", + "size": 269008, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12865184/fullTextXML" + }, + "jats/regression/PMC12866642.nxml": { + "sha256": "2516a31933a622539d784cb6c999adb2b3bd3424af596e43b6fcf6d8f0a4d613", + "size": 54869, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12866642/fullTextXML" + }, + "jats/regression/PMC12868281.nxml": { + "sha256": "16ccdadd88242e6b7c9de5db15abe1e45ad3b5b1a68337d4e39ad8bdae304ac1", + "size": 147112, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12868281/fullTextXML" + }, + "jats/regression/PMC12874148.nxml": { + "sha256": "e7e1288c9e1578129992194cfa237c7546206b2c6dc9bfe019066ba432e9018b", + "size": 134383, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12874148/fullTextXML" + }, + "jats/regression/PMC12882039.nxml": { + "sha256": "80dec948b62ca1ec3fda9423556bc2170f72c28d3afc5dfd4941c5f47817f14d", + "size": 196015, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12882039/fullTextXML" + }, + "jats/regression/PMC12883986.nxml": { + "sha256": "39c09eeaf64665ec6959579fd4870fc6aca2684540a0f7e940ef5212460cfb47", + "size": 149676, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12883986/fullTextXML" + }, + "jats/regression/PMC12888820.nxml": { + "sha256": "4f89cd859b52c86472f30229bf5d670d2a4e9847a3eedaf2dd149058b80a3818", + "size": 127059, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12888820/fullTextXML" + }, + "jats/regression/PMC12888820.xml": { + "sha256": "4f89cd859b52c86472f30229bf5d670d2a4e9847a3eedaf2dd149058b80a3818", + "size": 127059, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12888820/fullTextXML" + }, + "jats/regression/PMC12900436.nxml": { + "sha256": "e49edac750102c5472678fbd5f133315906ef56c54ed731f8340eaedd105786d", + "size": 221695, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12900436/fullTextXML" + }, + "jats/regression/PMC12909361.nxml": { + "sha256": "e6eecb160c5970a204fa2e36017cc81d0797108d4a6bdc3bb1a067ef4cb18d62", + "size": 178695, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12909361/fullTextXML" + }, + "jats/regression/PMC12909417.nxml": { + "sha256": "2f07fc8e58a2e334adadd34cfba26e9193f8d3c007d71ccc75dbea712f02b167", + "size": 535244, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12909417/fullTextXML" + }, + "jats/regression/PMC12909417.xml": { + "sha256": "2f07fc8e58a2e334adadd34cfba26e9193f8d3c007d71ccc75dbea712f02b167", + "size": 535244, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12909417/fullTextXML" + }, + "jats/regression/PMC12916507.nxml": { + "sha256": "ee2caf3f466141c55c4d1286ed116ff00428f587473573d9c610f1a9fce7f3ae", + "size": 1202247, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12916507/fullTextXML" + }, + "jats/regression/PMC12916507.xml": { + "sha256": "ee2caf3f466141c55c4d1286ed116ff00428f587473573d9c610f1a9fce7f3ae", + "size": 1202247, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12916507/fullTextXML" + }, + "jats/regression/PMC12921667.nxml": { + "sha256": "47e60dde0f8025d6c77e68e18bf784ad0467fff86a1caf69e9c5d6f11aadabdb", + "size": 236558, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12921667/fullTextXML" + }, + "jats/regression/PMC12929435.nxml": { + "sha256": "16aa44231a53ee99d129363e117d15c215aa11d874fffd253f63ffac9122f99d", + "size": 2795829, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12929435/fullTextXML" + }, + "jats/regression/PMC12929613.nxml": { + "sha256": "b52a818dbbbc0e70b9ad3eed877aae5e38ccd558211558f9ab5819fd3113e3c9", + "size": 246173, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12929613/fullTextXML" + }, + "jats/regression/PMC12929625.nxml": { + "sha256": "3c08c5dffe5020f8648be0d2fc12616dc3bbdcc1978a1aa88b2ce5daae88c09a", + "size": 129175, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12929625/fullTextXML" + }, + "jats/regression/PMC12929625.xml": { + "sha256": "3c08c5dffe5020f8648be0d2fc12616dc3bbdcc1978a1aa88b2ce5daae88c09a", + "size": 129175, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12929625/fullTextXML" + }, + "jats/regression/PMC12929627.nxml": { + "sha256": "2abb42553a36dce35f1c09fe2ce1d5dad1356bf1ec650709d3ff8e6ceac65ad0", + "size": 156878, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12929627/fullTextXML" + }, + "jats/regression/PMC12929683.nxml": { + "sha256": "97c0160f5f09803527a574f5682b13248546cf595fb6417f3331d4b0a69c6dd7", + "size": 348288, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12929683/fullTextXML" + }, + "jats/regression/PMC12931778.nxml": { + "sha256": "e009b8fdeffe63d8fd707ffa847fa58f80f13f9f995bf0acdaf7e77c0e6887b0", + "size": 227763, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12931778/fullTextXML" + }, + "jats/regression/PMC12931778.xml": { + "sha256": "e009b8fdeffe63d8fd707ffa847fa58f80f13f9f995bf0acdaf7e77c0e6887b0", + "size": 227763, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12931778/fullTextXML" + }, + "jats/regression/PMC12931796.nxml": { + "sha256": "073dcfc5d2f1597826763b6e9fe4f0b6b6f302c959723dfe4a67314415830e77", + "size": 466864, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12931796/fullTextXML" + }, + "jats/regression/PMC12931796.xml": { + "sha256": "073dcfc5d2f1597826763b6e9fe4f0b6b6f302c959723dfe4a67314415830e77", + "size": 466864, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12931796/fullTextXML" + }, + "jats/regression/PMC12935801.nxml": { + "sha256": "474795d04cd1c0154810be7329b763751329f5e9bca58dc4e33be69eae3aff70", + "size": 656402, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12935801/fullTextXML" + }, + "jats/regression/PMC12935802.nxml": { + "sha256": "9ebb6140816aeaaf503f0a1a7610434b58f768fd270410428e26393f9c488907", + "size": 1345668, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12935802/fullTextXML" + }, + "jats/regression/PMC12939330.nxml": { + "sha256": "1199d9894f8d6d47b95776a32f16cac2bd24f3038ed58266ec5348b364b59bb1", + "size": 319971, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12939330/fullTextXML" + }, + "jats/regression/PMC12939330.xml": { + "sha256": "1199d9894f8d6d47b95776a32f16cac2bd24f3038ed58266ec5348b364b59bb1", + "size": 319971, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12939330/fullTextXML" + }, + "jats/regression/PMC12939611.nxml": { + "sha256": "5a3b700339ef20a72754456485530d4c13eea0a06d18c4c8c40c65beaa7f9f0a", + "size": 881228, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12939611/fullTextXML" + }, + "jats/regression/PMC12939611.xml": { + "sha256": "5a3b700339ef20a72754456485530d4c13eea0a06d18c4c8c40c65beaa7f9f0a", + "size": 881228, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12939611/fullTextXML" + }, + "jats/regression/PMC12939637.nxml": { + "sha256": "9dc0a02d1375a8430de6e044de9d4e2f2add9cab2a99469beaae0cea1c71a640", + "size": 247078, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12939637/fullTextXML" + }, + "jats/regression/PMC12939637.xml": { + "sha256": "9dc0a02d1375a8430de6e044de9d4e2f2add9cab2a99469beaae0cea1c71a640", + "size": 247078, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12939637/fullTextXML" + }, + "jats/regression/PMC12941493.nxml": { + "sha256": "1c5baf2c4c130e25fc40a549a8648d79a1893c63bd528aa9dae5819c25965788", + "size": 252534, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12941493/fullTextXML" + }, + "jats/regression/PMC12941493.xml": { + "sha256": "1c5baf2c4c130e25fc40a549a8648d79a1893c63bd528aa9dae5819c25965788", + "size": 252534, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12941493/fullTextXML" + }, + "jats/regression/PMC12942115.nxml": { + "sha256": "feab1570f67976e187b87a0bab8d66d57d0329620cca1a02633c1f685b32f393", + "size": 137559, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12942115/fullTextXML" + }, + "jats/regression/PMC12942115.xml": { + "sha256": "feab1570f67976e187b87a0bab8d66d57d0329620cca1a02633c1f685b32f393", + "size": 137559, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12942115/fullTextXML" + }, + "jats/regression/PMC12946219.nxml": { + "sha256": "d46042d20d502643d0dadf46636dc4ffdb93a9e175f704ab15b57f8481a55098", + "size": 139984, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12946219/fullTextXML" + }, + "jats/regression/PMC12946304.nxml": { + "sha256": "708d045d8deb1bcb36d533cc71b392c925aad7dbfa64242885b06c586db5e810", + "size": 251610, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12946304/fullTextXML" + }, + "jats/regression/PMC12946304.xml": { + "sha256": "708d045d8deb1bcb36d533cc71b392c925aad7dbfa64242885b06c586db5e810", + "size": 251610, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12946304/fullTextXML" + }, + "jats/regression/PMC12953301.nxml": { + "sha256": "e26b88b0ec11957535d3f4631e3f8f2dbd4df0000877198889afebbd99ecedf0", + "size": 995771, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12953301/fullTextXML" + }, + "jats/regression/PMC12953301.xml": { + "sha256": "e26b88b0ec11957535d3f4631e3f8f2dbd4df0000877198889afebbd99ecedf0", + "size": 995771, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12953301/fullTextXML" + }, + "jats/regression/PMC12960909.nxml": { + "sha256": "fb03449e3c63e48e6956c7c436e20a10616e89d2d5c5dc07e0ac27e08bcdd259", + "size": 76366, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12960909/fullTextXML" + }, + "jats/regression/PMC12961220.nxml": { + "sha256": "8b0591aa4cbd9857039d8fc9a0b8faee6606fdfeba024cd1a5de3104260714cf", + "size": 141516, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12961220/fullTextXML" + }, + "jats/regression/PMC12963489.nxml": { + "sha256": "55d10391cc3a52cc6d06ae99f4e306bd68cfde8ff6f03ef6c2e87c9da64e08cf", + "size": 105890, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12963489/fullTextXML" + }, + "jats/regression/PMC12970979.nxml": { + "sha256": "58605cffd780b0e8e55b57414152344d631ccd5e830bcaf339dd475e08aa3426", + "size": 608538, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12970979/fullTextXML" + }, + "jats/regression/PMC12970979.xml": { + "sha256": "58605cffd780b0e8e55b57414152344d631ccd5e830bcaf339dd475e08aa3426", + "size": 608538, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12970979/fullTextXML" + }, + "jats/regression/PMC12971751.nxml": { + "sha256": "c65d7fd90ce185f0f8b6b5dbf860234a01ee2763b30ab47b9fea8661f25029ed", + "size": 917794, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12971751/fullTextXML" + }, + "jats/regression/PMC12971751.xml": { + "sha256": "c65d7fd90ce185f0f8b6b5dbf860234a01ee2763b30ab47b9fea8661f25029ed", + "size": 917794, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12971751/fullTextXML" + }, + "jats/regression/PMC12971858.nxml": { + "sha256": "cbf47702d25145de6b1b225ea38f4f8276acc0ec7fddcbae46de5909c6786c09", + "size": 120793, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12971858/fullTextXML" + }, + "jats/regression/PMC12986601.nxml": { + "sha256": "14d516bb515fda3ad10d1e9fb6506057e1ba670c9e5a9a3357c9a8c0414395de", + "size": 165990, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12986601/fullTextXML" + }, + "jats/regression/PMC12987928.nxml": { + "sha256": "b262696900b7bd9026a434c692faf41d536ce7ae26ce1d4fb4d1c0b9bfd79955", + "size": 230919, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12987928/fullTextXML" + }, + "jats/regression/PMC12995946.nxml": { + "sha256": "dc7fb603b782720112812ffd8f14e8c16a63e40373bc130761cf6ce6790bfaa8", + "size": 228206, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12995946/fullTextXML" + }, + "jats/regression/PMC12995946.xml": { + "sha256": "dc7fb603b782720112812ffd8f14e8c16a63e40373bc130761cf6ce6790bfaa8", + "size": 228206, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC12995946/fullTextXML" + }, + "jats/regression/PMC13009153.nxml": { + "sha256": "3fe804a21700a1187ac405c941a1f97fba9b198f003ccbcb025fd05400329112", + "size": 237032, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13009153/fullTextXML" + }, + "jats/regression/PMC13009153.xml": { + "sha256": "3fe804a21700a1187ac405c941a1f97fba9b198f003ccbcb025fd05400329112", + "size": 237032, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13009153/fullTextXML" + }, + "jats/regression/PMC13012514.nxml": { + "sha256": "cae4ce0dec7321dae677b0520dd545da3492a9751404a74226120464fbe64ff8", + "size": 107285, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13012514/fullTextXML" + }, + "jats/regression/PMC13025370.nxml": { + "sha256": "d84f19186113e79fe1b0bfd0d0575d9e1d3688528e098e96ddedd70d320b3bdd", + "size": 270231, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13025370/fullTextXML" + }, + "jats/regression/PMC13025424.nxml": { + "sha256": "17d84265fb96293263d768dba04ea3ca959b48fb10aba0f30ac881c370976248", + "size": 202903, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13025424/fullTextXML" + }, + "jats/regression/PMC13025984.nxml": { + "sha256": "b6697562ab652a793c1e8f07c61fa5994529e85b63bdd56e198791be40e8fe5e", + "size": 437762, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13025984/fullTextXML" + }, + "jats/regression/PMC13025984.xml": { + "sha256": "b6697562ab652a793c1e8f07c61fa5994529e85b63bdd56e198791be40e8fe5e", + "size": 437762, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13025984/fullTextXML" + }, + "jats/regression/PMC13027923.nxml": { + "sha256": "4b701545e286a935bf4f1f9f17c5fa9856ae4b6cc5adcfc98241512ae3a2fcf9", + "size": 177091, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13027923/fullTextXML" + }, + "jats/regression/PMC13027923.xml": { + "sha256": "4b701545e286a935bf4f1f9f17c5fa9856ae4b6cc5adcfc98241512ae3a2fcf9", + "size": 177091, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13027923/fullTextXML" + }, + "jats/regression/PMC13028750.nxml": { + "sha256": "b90a503afaa48cd5d3efd335e549580ed8bfc384d2fc2effd7dfcdd8970b886f", + "size": 90877, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13028750/fullTextXML" + }, + "jats/regression/PMC13028750.xml": { + "sha256": "b90a503afaa48cd5d3efd335e549580ed8bfc384d2fc2effd7dfcdd8970b886f", + "size": 90877, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13028750/fullTextXML" + }, + "jats/regression/PMC13029209.nxml": { + "sha256": "b43d29cc0d7c6a7286db27580bfccadf184a9f442b691a2ee15ea8a02a9de8c0", + "size": 336966, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13029209/fullTextXML" + }, + "jats/regression/PMC13030197.nxml": { + "sha256": "7d87e1f1a9391e82b522220a79044584454e9bd8bf84b77841fba1a434f29c79", + "size": 128962, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13030197/fullTextXML" + }, + "jats/regression/PMC13030197.xml": { + "sha256": "7d87e1f1a9391e82b522220a79044584454e9bd8bf84b77841fba1a434f29c79", + "size": 128962, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13030197/fullTextXML" + }, + "jats/regression/PMC13031190.nxml": { + "sha256": "f8410a5aee186837297d453d5902051443c0e3c5378260951ce8953fd629d49f", + "size": 170853, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13031190/fullTextXML" + }, + "jats/regression/PMC13031190.xml": { + "sha256": "f8410a5aee186837297d453d5902051443c0e3c5378260951ce8953fd629d49f", + "size": 170853, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13031190/fullTextXML" + }, + "jats/regression/PMC13031274.nxml": { + "sha256": "eb73c944be7d47e54de8b303b9bdfb7ba46d59ce06ab71cc01bbddfbc0ff02c3", + "size": 154828, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13031274/fullTextXML" + }, + "jats/regression/PMC13031274.xml": { + "sha256": "eb73c944be7d47e54de8b303b9bdfb7ba46d59ce06ab71cc01bbddfbc0ff02c3", + "size": 154828, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13031274/fullTextXML" + }, + "jats/regression/PMC13035863.nxml": { + "sha256": "17068c8f46019e92e35a10af57150870e270756a3a28870e691bd2b9e4ed37ca", + "size": 166057, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13035863/fullTextXML" + }, + "jats/regression/PMC13046245.nxml": { + "sha256": "6d441dd1ca787df3b46b199e38f3342b9c4531d71da57877f4655e05c39e3b5f", + "size": 85338, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13046245/fullTextXML" + }, + "jats/regression/PMC13046245.xml": { + "sha256": "6d441dd1ca787df3b46b199e38f3342b9c4531d71da57877f4655e05c39e3b5f", + "size": 85338, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13046245/fullTextXML" + }, + "jats/regression/PMC13046469.nxml": { + "sha256": "8e728827cddc3dde6a371f5532f3fbffeaf59983e3d67eb72c14eafaa01a5eda", + "size": 421918, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13046469/fullTextXML" + }, + "jats/regression/PMC13046469.xml": { + "sha256": "8e728827cddc3dde6a371f5532f3fbffeaf59983e3d67eb72c14eafaa01a5eda", + "size": 421918, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13046469/fullTextXML" + }, + "jats/regression/PMC13049861.nxml": { + "sha256": "62712b0ea2e388a86a87b08882595cb744a39c5fa2f96ff5a839b99fb9dfa2b2", + "size": 132610, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13049861/fullTextXML" + }, + "jats/regression/PMC13049861.xml": { + "sha256": "62712b0ea2e388a86a87b08882595cb744a39c5fa2f96ff5a839b99fb9dfa2b2", + "size": 132610, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13049861/fullTextXML" + }, + "jats/regression/PMC13050337.nxml": { + "sha256": "370a0220025aa59e03050bcde6efe35e0c5b97ddcef43b7f5c8f3ba0f6266895", + "size": 760303, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13050337/fullTextXML" + }, + "jats/regression/PMC13050337.xml": { + "sha256": "370a0220025aa59e03050bcde6efe35e0c5b97ddcef43b7f5c8f3ba0f6266895", + "size": 760303, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13050337/fullTextXML" + }, + "jats/regression/PMC13050847.nxml": { + "sha256": "962bea39994fac942a05d30b5a4b34ae111a7acc3733e0f147d162f85a5304f1", + "size": 153134, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13050847/fullTextXML" + }, + "jats/regression/PMC13050847.xml": { + "sha256": "962bea39994fac942a05d30b5a4b34ae111a7acc3733e0f147d162f85a5304f1", + "size": 153134, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13050847/fullTextXML" + }, + "jats/regression/PMC13056210.nxml": { + "sha256": "d0fe9186f0e9d33855e2902a4476b5b0aac5f938be03f729ad57b593b8035d2c", + "size": 370584, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13056210/fullTextXML" + }, + "jats/regression/PMC13056210.xml": { + "sha256": "d0fe9186f0e9d33855e2902a4476b5b0aac5f938be03f729ad57b593b8035d2c", + "size": 370584, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13056210/fullTextXML" + }, + "jats/regression/PMC13056660.nxml": { + "sha256": "85a83bccc05fb5a03bd790ed6a8cdcc2abd56f6d64af3a9949be28c3c3d37836", + "size": 211009, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13056660/fullTextXML" + }, + "jats/regression/PMC13061980.nxml": { + "sha256": "2b2fc303ea9ca4fd2012c5b0fa2232a21458551b67a1bbbcb509fbd8e4711a73", + "size": 249564, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13061980/fullTextXML" + }, + "jats/regression/PMC13065599.nxml": { + "sha256": "7e5a9868feab720a9c6fb6755724d40a1b1694761b2641cfedc6e3b045e8837e", + "size": 251221, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13065599/fullTextXML" + }, + "jats/regression/PMC13068761.nxml": { + "sha256": "445c5aba01400b0b5769378933a764f2ee5498129d9a6c6b5d3ffa175e34b0ee", + "size": 342649, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13068761/fullTextXML" + }, + "jats/regression/PMC13074848.nxml": { + "sha256": "526cd9b04e89ebc1298480a7027e11e74242565ff7a60905178eca7757be9dc3", + "size": 56813, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13074848/fullTextXML" + }, + "jats/regression/PMC13077070.nxml": { + "sha256": "9e361c311662018fc3e796b023d45a7f55723d5c799f245583ac1ec70f06cc9d", + "size": 425986, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13077070/fullTextXML" + }, + "jats/regression/PMC13079891.nxml": { + "sha256": "a8ee50dbc48dba396797301fd9b9624f6ae15c7e69dd5ae1033d11a62cce1ac9", + "size": 109312, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13079891/fullTextXML" + }, + "jats/regression/PMC13079891.xml": { + "sha256": "a8ee50dbc48dba396797301fd9b9624f6ae15c7e69dd5ae1033d11a62cce1ac9", + "size": 109312, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13079891/fullTextXML" + }, + "jats/regression/PMC13080004.nxml": { + "sha256": "98bcf642680500fd5b5e3d4b929cf197d69d62108905cf7830899d257601e1bb", + "size": 197265, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13080004/fullTextXML" + }, + "jats/regression/PMC13082719.nxml": { + "sha256": "116a1de0d4a99ef6280336f6b8a161e067bb1082cc61bcb5dd742244b8b07c47", + "size": 387296, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13082719/fullTextXML" + }, + "jats/regression/PMC13082719.xml": { + "sha256": "116a1de0d4a99ef6280336f6b8a161e067bb1082cc61bcb5dd742244b8b07c47", + "size": 387296, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13082719/fullTextXML" + }, + "jats/regression/PMC13089341.nxml": { + "sha256": "e4b1879925c56ee25f62b2e2f8a97741219fc8af87cb41f659b61f6e473f3236", + "size": 268290, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13089341/fullTextXML" + }, + "jats/regression/PMC13090215.nxml": { + "sha256": "d23db181871362079a235e2694146202fe5617dc7cf6d3a3385f012f97062a0e", + "size": 466394, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13090215/fullTextXML" + }, + "jats/regression/PMC13090279.nxml": { + "sha256": "51852cc17b367018d17362350d63fbccbab141a1114f0a32deb0aff45570f939", + "size": 946279, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13090279/fullTextXML" + }, + "jats/regression/PMC13099575.nxml": { + "sha256": "cdb73868ae048d208e0963e9e967e058b15b6e39fb93c550dcdf566453289439", + "size": 255804, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13099575/fullTextXML" + }, + "jats/regression/PMC13109951.nxml": { + "sha256": "fd1245e1a9354b7477d68b1dc303b1c04456c6fd6a5d09079695d06f0b8e58ab", + "size": 150794, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13109951/fullTextXML" + }, + "jats/regression/PMC13111495.nxml": { + "sha256": "0d4c14d6b5734eb7407a407e99346adb6fcb1ffb5983f102cbfa5a8ab69e3602", + "size": 559358, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13111495/fullTextXML" + }, + "jats/regression/PMC13111495.xml": { + "sha256": "0d4c14d6b5734eb7407a407e99346adb6fcb1ffb5983f102cbfa5a8ab69e3602", + "size": 559358, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13111495/fullTextXML" + }, + "jats/regression/PMC13111691.nxml": { + "sha256": "5beacdf048f6e18297c40a460809f5e480b8f20410f84ea519e86e7f5733a14e", + "size": 137656, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13111691/fullTextXML" + }, + "jats/regression/PMC13111691.xml": { + "sha256": "5beacdf048f6e18297c40a460809f5e480b8f20410f84ea519e86e7f5733a14e", + "size": 137656, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13111691/fullTextXML" + }, + "jats/regression/PMC13113320.nxml": { + "sha256": "d69cfba619b24c2884493b4a53f5ef7f82b7c5bea14065aebc4811175d6327c1", + "size": 306950, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13113320/fullTextXML" + }, + "jats/regression/PMC13113320.xml": { + "sha256": "d69cfba619b24c2884493b4a53f5ef7f82b7c5bea14065aebc4811175d6327c1", + "size": 306950, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13113320/fullTextXML" + }, + "jats/regression/PMC13114329.nxml": { + "sha256": "0461b7ede0882063028e510ad45c00f8ee41aca710d257daa371b51a7bcc0ae6", + "size": 595743, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13114329/fullTextXML" + }, + "jats/regression/PMC13114329.xml": { + "sha256": "0461b7ede0882063028e510ad45c00f8ee41aca710d257daa371b51a7bcc0ae6", + "size": 595743, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13114329/fullTextXML" + }, + "jats/regression/PMC13114335.nxml": { + "sha256": "2b9fe42b77f27091543a7be02fb3e871bf15f44673b57ced8cc0e4b8239e032b", + "size": 546982, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13114335/fullTextXML" + }, + "jats/regression/PMC13114335.xml": { + "sha256": "2b9fe42b77f27091543a7be02fb3e871bf15f44673b57ced8cc0e4b8239e032b", + "size": 546982, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13114335/fullTextXML" + }, + "jats/regression/PMC13114686.nxml": { + "sha256": "6e2f15414715e2ef86b7177366e8b8f4e9ffcb47afca4a10ff9c2f47aad818e1", + "size": 225000, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13114686/fullTextXML" + }, + "jats/regression/PMC13114861.nxml": { + "sha256": "340a98e1feeffeece78ae430e39811c488413a232f4871d8bf2097b6e1c90e9d", + "size": 128041, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13114861/fullTextXML" + }, + "jats/regression/PMC13114861.xml": { + "sha256": "340a98e1feeffeece78ae430e39811c488413a232f4871d8bf2097b6e1c90e9d", + "size": 128041, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13114861/fullTextXML" + }, + "jats/regression/PMC13126757.nxml": { + "sha256": "f04697373d4ebb237c4bf9ec46689ffe3364f3b6cd7d59c86df02374939b4263", + "size": 101955, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13126757/fullTextXML" + }, + "jats/regression/PMC13128137.nxml": { + "sha256": "2016c325f3c8aa6bb8d99e7cd41b1085c1dc8b097f3ce4bbbbcb884fe7c94880", + "size": 591814, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13128137/fullTextXML" + }, + "jats/regression/PMC13128137.xml": { + "sha256": "2016c325f3c8aa6bb8d99e7cd41b1085c1dc8b097f3ce4bbbbcb884fe7c94880", + "size": 591814, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13128137/fullTextXML" + }, + "jats/regression/PMC13136274.nxml": { + "sha256": "fefa793b9d05de5ada0667d04c8af5dd7f2323af975932c7ab271cf6d70e79a2", + "size": 318280, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13136274/fullTextXML" + }, + "jats/regression/PMC13136614.nxml": { + "sha256": "854b21126c9837187131de72896d4806dd00b3cc585280949ad9fd07742f40af", + "size": 184330, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13136614/fullTextXML" + }, + "jats/regression/PMC13141151.nxml": { + "sha256": "cc9835e5836a8cea22968f351dd0b4ea2a5b342019e8a426678628da595c46ff", + "size": 55442, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13141151/fullTextXML" + }, + "jats/regression/PMC13148690.nxml": { + "sha256": "97d148871be072be0065f73de58369d94bd4ac91c6660c880e08294e3c586bc7", + "size": 193192, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13148690/fullTextXML" + }, + "jats/regression/PMC13148690.xml": { + "sha256": "97d148871be072be0065f73de58369d94bd4ac91c6660c880e08294e3c586bc7", + "size": 193192, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13148690/fullTextXML" + }, + "jats/regression/PMC13151308.nxml": { + "sha256": "9b774ebf33d3729633e99cc4cd08b5376cd0c52a0dfc4a0f0e61b2bf41005fc2", + "size": 402837, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13151308/fullTextXML" + }, + "jats/regression/PMC13151308.xml": { + "sha256": "9b774ebf33d3729633e99cc4cd08b5376cd0c52a0dfc4a0f0e61b2bf41005fc2", + "size": 402837, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13151308/fullTextXML" + }, + "jats/regression/PMC13165860.nxml": { + "sha256": "ed0723ea657210e258f9c08600b42fb26b1807db140771b09d67f8d881e43935", + "size": 349621, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13165860/fullTextXML" + }, + "jats/regression/PMC13165860.xml": { + "sha256": "ed0723ea657210e258f9c08600b42fb26b1807db140771b09d67f8d881e43935", + "size": 349621, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13165860/fullTextXML" + }, + "jats/regression/PMC13167807.nxml": { + "sha256": "536e40f68383cb48d9a2051e8e73e7eb0b1b56e8dbc76893fef2024131036d16", + "size": 684658, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13167807/fullTextXML" + }, + "jats/regression/PMC13167807.xml": { + "sha256": "536e40f68383cb48d9a2051e8e73e7eb0b1b56e8dbc76893fef2024131036d16", + "size": 684658, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13167807/fullTextXML" + }, + "jats/regression/PMC13168053.nxml": { + "sha256": "2073b21e5b6ea6ad5de4274fbdee564a86883b3145d0392f05bce8b427562837", + "size": 281849, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13168053/fullTextXML" + }, + "jats/regression/PMC13172525.nxml": { + "sha256": "928608452c4d8b78de625655413fe689c3b6200d31d086be180ec55b813cefc6", + "size": 302723, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13172525/fullTextXML" + }, + "jats/regression/PMC13178780.nxml": { + "sha256": "0b27e42c11861d9ad2d9b075fb816bee1b38856a252b084db3b05126fbff5920", + "size": 132736, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13178780/fullTextXML" + }, + "jats/regression/PMC13178872.nxml": { + "sha256": "6f1709974af9024f6f1ba94739d7deef26aaf5dc720ac5561851fd7c76333189", + "size": 311372, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13178872/fullTextXML" + }, + "jats/regression/PMC13178872.xml": { + "sha256": "6f1709974af9024f6f1ba94739d7deef26aaf5dc720ac5561851fd7c76333189", + "size": 311372, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13178872/fullTextXML" + }, + "jats/regression/PMC13187351.nxml": { + "sha256": "79fb0561e8ff2223c9714d8fd1cd110b1b0b2ccbc0c4e3463290dc30bbc10059", + "size": 348795, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13187351/fullTextXML" + }, + "jats/regression/PMC13187351.xml": { + "sha256": "79fb0561e8ff2223c9714d8fd1cd110b1b0b2ccbc0c4e3463290dc30bbc10059", + "size": 348795, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13187351/fullTextXML" + }, + "jats/regression/PMC13187592.nxml": { + "sha256": "26491a4b496d59c4d2a79bca9b45c9454a34d42b50fbd1e29dc0e3687559724a", + "size": 141865, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13187592/fullTextXML" + }, + "jats/regression/PMC13188243.nxml": { + "sha256": "65aa46f5ba635b3b00990872635747c68685cfd084ed05b09bd51a9dc179946c", + "size": 188717, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13188243/fullTextXML" + }, + "jats/regression/PMC13190485.nxml": { + "sha256": "66c09e7ff30892f731e33efc3d8eeec4c403265ffafc7c440abfc1d4c3ee729b", + "size": 299710, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13190485/fullTextXML" + }, + "jats/regression/PMC13190485.xml": { + "sha256": "66c09e7ff30892f731e33efc3d8eeec4c403265ffafc7c440abfc1d4c3ee729b", + "size": 299710, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13190485/fullTextXML" + }, + "jats/regression/PMC13205184.nxml": { + "sha256": "b8b471c2b93b31dd3f8a0582296733b99e8b9f4eee0bff62b34b613e9c82dcae", + "size": 192424, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13205184/fullTextXML" + }, + "jats/regression/PMC13205184.xml": { + "sha256": "b8b471c2b93b31dd3f8a0582296733b99e8b9f4eee0bff62b34b613e9c82dcae", + "size": 192424, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13205184/fullTextXML" + }, + "jats/regression/PMC13205337.nxml": { + "sha256": "2e0e66c53a86438b60f0bade416af49532923af2fae3f7f1bbaef46ebf93e330", + "size": 404385, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13205337/fullTextXML" + }, + "jats/regression/PMC13205337.xml": { + "sha256": "2e0e66c53a86438b60f0bade416af49532923af2fae3f7f1bbaef46ebf93e330", + "size": 404385, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13205337/fullTextXML" + }, + "jats/regression/PMC13206136.nxml": { + "sha256": "8500a2851af0ceba546b3899ccf7d3b41162f13e4c9bae08e0157855b6431eb9", + "size": 366485, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13206136/fullTextXML" + }, + "jats/regression/PMC13206136.xml": { + "sha256": "8500a2851af0ceba546b3899ccf7d3b41162f13e4c9bae08e0157855b6431eb9", + "size": 366485, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13206136/fullTextXML" + }, + "jats/regression/PMC13206335.nxml": { + "sha256": "0665f2adaa55ba2b0e9e16e9db75fb73eaf803657646215797c8f7994b389dac", + "size": 253390, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13206335/fullTextXML" + }, + "jats/regression/PMC13210692.nxml": { + "sha256": "6cb60e96218a3d0e44e972ba14c934ccb623838660475d1c0227a87e7a47a737", + "size": 100844, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13210692/fullTextXML" + }, + "jats/regression/PMC13210692.xml": { + "sha256": "6cb60e96218a3d0e44e972ba14c934ccb623838660475d1c0227a87e7a47a737", + "size": 100844, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13210692/fullTextXML" + }, + "jats/regression/PMC13210852.nxml": { + "sha256": "13437fdd439b53c409c23af1c185d7901d00e55f2f4897907bbc90d69b0007b7", + "size": 226870, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13210852/fullTextXML" + }, + "jats/regression/PMC13212496.nxml": { + "sha256": "9449080a317ff9b7a4190801ac8dbd9a84fc4897b5dac2f7d107fbf4f9b67c2c", + "size": 151729, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13212496/fullTextXML" + }, + "jats/regression/PMC13216187.nxml": { + "sha256": "1fb506c58a37da7296937c5a3ebc532d05d8cb00b4cf133a39fe49e1b2182861", + "size": 250824, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13216187/fullTextXML" + }, + "jats/regression/PMC13221354.nxml": { + "sha256": "6dcb77df6e374484e6f174612466430416f76481335a6b10a4e99565d5292a27", + "size": 1814068, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13221354/fullTextXML" + }, + "jats/regression/PMC13221354.xml": { + "sha256": "6dcb77df6e374484e6f174612466430416f76481335a6b10a4e99565d5292a27", + "size": 1814068, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13221354/fullTextXML" + }, + "jats/regression/PMC13222247.nxml": { + "sha256": "4424f8931cad532c66bfaca0112a48312f2fa771b3c66a4fc424ce4a1f213229", + "size": 148167, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13222247/fullTextXML" + }, + "jats/regression/PMC13222247.xml": { + "sha256": "4424f8931cad532c66bfaca0112a48312f2fa771b3c66a4fc424ce4a1f213229", + "size": 148167, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13222247/fullTextXML" + }, + "jats/regression/PMC13224846.nxml": { + "sha256": "7a4757e099c84adda03440f5a7fab503f3700c584e8f69b98167d9a63c51b4e3", + "size": 234362, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13224846/fullTextXML" + }, + "jats/regression/PMC13224846.xml": { + "sha256": "7a4757e099c84adda03440f5a7fab503f3700c584e8f69b98167d9a63c51b4e3", + "size": 234362, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13224846/fullTextXML" + }, + "jats/regression/PMC13225436.nxml": { + "sha256": "c982b8fc34fe8d6429c5de3dc83cc928e9577fc5c3b0ecd112c6eb032a06eaaa", + "size": 1176270, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13225436/fullTextXML" + }, + "jats/regression/PMC13225436.xml": { + "sha256": "c982b8fc34fe8d6429c5de3dc83cc928e9577fc5c3b0ecd112c6eb032a06eaaa", + "size": 1176270, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13225436/fullTextXML" + }, + "jats/regression/PMC13228047.nxml": { + "sha256": "b4d635c0881b5366168969dc27c273225154bc4428c95c5bd5d4c36846fe77b7", + "size": 166148, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13228047/fullTextXML" + }, + "jats/regression/PMC13230314.nxml": { + "sha256": "a6bf783e5a070daa02d85cb021a9d30c26019f073a0dfc726f7da8620cfcd0dc", + "size": 1186994, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13230314/fullTextXML" + }, + "jats/regression/PMC13230314.xml": { + "sha256": "a6bf783e5a070daa02d85cb021a9d30c26019f073a0dfc726f7da8620cfcd0dc", + "size": 1186994, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13230314/fullTextXML" + }, + "jats/regression/PMC13236791.nxml": { + "sha256": "8ef97d4c82c53da54c046737e48a04fa5ab2adcd3d2fb53b9706270820990829", + "size": 113401, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13236791/fullTextXML" + }, + "jats/regression/PMC13236791.xml": { + "sha256": "8ef97d4c82c53da54c046737e48a04fa5ab2adcd3d2fb53b9706270820990829", + "size": 113401, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13236791/fullTextXML" + }, + "jats/regression/PMC13241319.nxml": { + "sha256": "145882761bca9ee2032148afa343a995a37015fc0ba7270b2d7a01dab5d507e4", + "size": 201783, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13241319/fullTextXML" + }, + "jats/regression/PMC13241319.xml": { + "sha256": "145882761bca9ee2032148afa343a995a37015fc0ba7270b2d7a01dab5d507e4", + "size": 201783, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13241319/fullTextXML" + }, + "jats/regression/PMC13241421.nxml": { + "sha256": "035cbeedfbf04622131f8a4e57219ab262316f49229a4316bf70efe1dbb221ee", + "size": 132628, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13241421/fullTextXML" + }, + "jats/regression/PMC13241421.xml": { + "sha256": "035cbeedfbf04622131f8a4e57219ab262316f49229a4316bf70efe1dbb221ee", + "size": 132628, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13241421/fullTextXML" + }, + "jats/regression/PMC13243332.nxml": { + "sha256": "4798154be03503275a986caa238df1c1f349e22346b5838e4fc095a835ea0655", + "size": 662426, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13243332/fullTextXML" + }, + "jats/regression/PMC13246587.nxml": { + "sha256": "03aad0a78ed7ae84627f570004c56093cd1cb2deaa476de2e84d5cca4c8d6dc1", + "size": 596413, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13246587/fullTextXML" + }, + "jats/regression/PMC13246742.nxml": { + "sha256": "eb0a6448a25aeacc70fd79a322806e6c77bd366d0687bc5005512ddb75acb4ca", + "size": 188092, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13246742/fullTextXML" + }, + "jats/regression/PMC13257476.nxml": { + "sha256": "668682e4fd26909b9f0381918cf843921547b19528eb2f93be89fcc857000c74", + "size": 294261, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13257476/fullTextXML" + }, + "jats/regression/PMC13263304.nxml": { + "sha256": "468185c74c47fb3f1117f12ee6c67064f2494d87686efa18344e58134d02de50", + "size": 422416, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13263304/fullTextXML" + }, + "jats/regression/PMC13264549.nxml": { + "sha256": "5f6037e2e9f6bf455b437cb2ad61db2d886dd898b39be47d33d9f710bd3a2eee", + "size": 929177, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13264549/fullTextXML" + }, + "jats/regression/PMC13267337.nxml": { + "sha256": "e09ff9884e2df5fd37d88fb5185820c7dcec89326854c947d46235459375fad6", + "size": 136848, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13267337/fullTextXML" + }, + "jats/regression/PMC13267337.xml": { + "sha256": "e09ff9884e2df5fd37d88fb5185820c7dcec89326854c947d46235459375fad6", + "size": 136848, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13267337/fullTextXML" + }, + "jats/regression/PMC13273588.nxml": { + "sha256": "1754a5f584d3130ca6fab310ed9faba8b19223d9aee2a0fc7555108cca7bfab6", + "size": 139807, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13273588/fullTextXML" + }, + "jats/regression/PMC13273790.nxml": { + "sha256": "c05e32981a1eeb8ee3abe3fb67ff1920a353b780359d4e7a37ecd36e4166d63c", + "size": 165351, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13273790/fullTextXML" + }, + "jats/regression/PMC13283489.nxml": { + "sha256": "daac33f0097abfc760563d963f2c63d6bc8944a1c667917c96bbb145e22d381d", + "size": 450021, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13283489/fullTextXML" + }, + "jats/regression/PMC13284481.nxml": { + "sha256": "b24d6e91871adbd10263d3d14f225f407717e3390214e74b41acb98e9df8d828", + "size": 134104, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13284481/fullTextXML" + }, + "jats/regression/PMC13286279.nxml": { + "sha256": "f48c78f22640b20d30f8e691482480002d1249cba8b8b7bf071137fd7c8e2b85", + "size": 501727, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13286279/fullTextXML" + }, + "jats/regression/PMC13287130.nxml": { + "sha256": "ede875068f8d3be002b406b755d9546bdc3a43f9134166cbde81659b9dbf5a33", + "size": 154991, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC13287130/fullTextXML" + }, + "jats/regression/PMC9747052.nxml": { + "sha256": "b4b392a5ec12a27f38ae2787a5d1999e94e980b20166a9e42063f0c0bd44d439", + "size": 55734, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC9747052/fullTextXML" + }, + "jats/regression/PMC9849319.nxml": { + "sha256": "7efbb87018326dcf58c79ec8194c9d7a27c20d9c131386ac0a87cc378b59a9b4", + "size": 1504798, + "url": "https://www.ebi.ac.uk/europepmc/webservices/rest/PMC9849319/fullTextXML" + }, + "office/regression/000_000001.doc": { + "member": "000001.doc", + "sha256": "67199cf7b2b122139acc0e6cf4ce652112327bed53ae47e1da239b494cf3ba99", + "size": 40960, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000002.doc": { + "member": "000002.doc", + "sha256": "0436a679c315f964a34a23d108f119bfb030859688571c5f486b5b5aff83bfa7", + "size": 57856, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000003.doc": { + "member": "000003.doc", + "sha256": "b6396d670a9f19fe370608171c7e665348cc35b2706024137f397a8dd31adb20", + "size": 55808, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000004.doc": { + "member": "000004.doc", + "sha256": "baa5d5ef98405a5b8df61ec331674c37b19d35a89dd3c12f6ae9c7895e9eb0f4", + "size": 175616, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000005.doc": { + "member": "000005.doc", + "sha256": "ca6a666ea7b5953cc348839e75d5de2121e8cede81be01d2e1e83a9f49346a6d", + "size": 180736, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000006.doc": { + "member": "000006.doc", + "sha256": "3466e505a22e40f60c6f4a17343a5afe33f24133a0a00bc181db71e1ea3e7c4c", + "size": 67584, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000007.doc": { + "member": "000007.doc", + "sha256": "0efade794e13d2e6e6597e44f6c1df7cf7a1a75fecb4102cf4fd3e219d2b3600", + "size": 179200, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000008.ppt": { + "member": "000008.ppt", + "sha256": "b4217acc3b1f55d2885f68757537f6a7b101f1f88dc04c93fa2df0a05bdbdaeb", + "size": 304640, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000009.pdf": { + "member": "000009.pdf", + "sha256": "3fcfd899850be006b2d6616f8161e49479bc41424fa80e404f41233b77256ff3", + "size": 39586, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000010.pdf": { + "member": "000010.pdf", + "sha256": "7832f844839ed04e2979bc565642f36bf76e1682137071f0786d4c7418bf81d7", + "size": 120441, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000011.pdf": { + "member": "000011.pdf", + "sha256": "44d4296ee6750f96a34455cf5d6d6e0a574ffe1419928780b5d2fddea0af3778", + "size": 31367, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000012.pdf": { + "member": "000012.pdf", + "sha256": "1138e868dc3e44bd3f1dafd60ff3ed0d14a42ab1b17964ac475edac46789b5d0", + "size": 22857, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000013.pdf": { + "member": "000013.pdf", + "sha256": "76c4dfb49667db90af7acdfba9e1d366fe14c4af6197d9f1daacb39a6511d0a1", + "size": 38638, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000015.pdf": { + "member": "000015.pdf", + "sha256": "eca0f217f9fdbc5f9509894e45b247dc4cb611f534832bd368f791f4bd14796b", + "size": 55964, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000016.pdf": { + "member": "000016.pdf", + "sha256": "58fe21359f9caba5bb1224d65026c5333f9747c1fe8d9d94d8f21294ecc1f53a", + "size": 150586, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000018.pdf": { + "member": "000018.pdf", + "sha256": "ed65a432e4091cf9a7b9ff7983055dbeee91752c864dca14baa35b1e85ce1103", + "size": 94424, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000019.pdf": { + "member": "000019.pdf", + "sha256": "dc738585d318b2992a41b12832788b24fed94d318ef962103fbeaa613c7ca93c", + "size": 124152, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000020.pdf": { + "member": "000020.pdf", + "sha256": "98887d138becb7b802c6dd3de8189197195a458a202d9b9a982a301f2010ee89", + "size": 4755, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000021.pdf": { + "member": "000021.pdf", + "sha256": "b4380011d8c1e4ab6ccca1380ce81f9b9144ea8d06e9814210d63a959b74e6e3", + "size": 4521, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000022.pdf": { + "member": "000022.pdf", + "sha256": "7d67ca64d83ab9a046874777c6ce27a8951743f97c78b188cbaa32d02f022179", + "size": 21235, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000024.pdf": { + "member": "000024.pdf", + "sha256": "dfa3b40bd8422184f589df4329e3f5a5f07884905d3d82e529cc75f6082eb8bb", + "size": 44121, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000025.pdf": { + "member": "000025.pdf", + "sha256": "c6df45d7788b84731ab863999834f7e196b8561f15541690c6a096bedd1a22eb", + "size": 197832, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000026.pdf": { + "member": "000026.pdf", + "sha256": "7f0d5dffdf7aebaf5a6aa5c9344b8685a68a670fe0904c3162c770e68cc8da2e", + "size": 97475, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000028.pdf": { + "member": "000028.pdf", + "sha256": "99ec2ff852b8692a7f1a2a27de8b6d8125faa8aba8a35c6f88b4a0c68ca6e3fc", + "size": 205925, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000029.pdf": { + "member": "000029.pdf", + "sha256": "0688ba309c87485dd8d96c1d9d29db420f59973b50c65324ce040dca8d34a817", + "size": 3727214, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000030.xls": { + "member": "000030.xls", + "sha256": "22bdbd596c3c6db3e00ff0c14fa2ee83dffc052c56f5208cb729a3124c1c4cee", + "size": 7883264, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000031.xls": { + "member": "000031.xls", + "sha256": "555b9629f94fb5652ca1181e125d34e45a103641824bb6bd20096069edfe2f11", + "size": 2374656, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000032.xls": { + "member": "000032.xls", + "sha256": "2756fb7b35cb9cfcfe9b3118177d66fc1271052778af45cd36e781052f264faf", + "size": 28598784, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000033.xls": { + "member": "000033.xls", + "sha256": "5d945f99f89efb6149f3207b1b76f357d0bcc37f93819fa8071b357f3afaee72", + "size": 5580288, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000034.xls": { + "member": "000034.xls", + "sha256": "fd8e94cd1afd58dd131c07cbc9855449311855f58bd7b3e4f34b2513b6d2237c", + "size": 14257664, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000035.xls": { + "member": "000035.xls", + "sha256": "bdfc9535cf285422cf4e2e1b8d6e35b3f9e067eee2ff738dede41896cdb24650", + "size": 34304, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000036.xls": { + "member": "000036.xls", + "sha256": "a2c616d411e20b91dca8351028e16ad592f7841021cb3ce17eda40ee02d1ae37", + "size": 81920, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000037.xls": { + "member": "000037.xls", + "sha256": "a39dc27399fa6b0df86417827fae5924401cda7c2014e2b1dcfc01a29bbd5f81", + "size": 3795968, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000038.xls": { + "member": "000038.xls", + "sha256": "c49a2e1715e80a914d3c7bb9fa0c143940ac345febd6aa24534f6ca081d4ff4a", + "size": 71680, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000040.xls": { + "member": "000040.xls", + "sha256": "4117c9aa077554dceb076a5f63b106b391f2c18b42af44e8ae97dab52939ed80", + "size": 52224, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000041.xls": { + "member": "000041.xls", + "sha256": "6b7fd0d60be89b452d1565c359e1cc2e2947bf00e3c9fca20beca582d8e8ec5d", + "size": 101376, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000042.xls": { + "member": "000042.xls", + "sha256": "621c3284c63d3a87318799f253112aa93baf4211878d0340959f1f45e0a5fd23", + "size": 92160, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000043.xls": { + "member": "000043.xls", + "sha256": "b6c6456106368a99496b83cd17550bfb092b436e004117ce4a2773362992c692", + "size": 14646272, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000044.xls": { + "member": "000044.xls", + "sha256": "bb103b93f53b29ba2667e3f37619512eec50d457687e0876ced525b28a30ebd5", + "size": 167424, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000045.xls": { + "member": "000045.xls", + "sha256": "06c04885d708ae33547a7559af4fb57d449e27d0bb4d3c2c2ab47863db238dc5", + "size": 2823168, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000046.xls": { + "member": "000046.xls", + "sha256": "80f4bdaea00bd205a68a83dc67145e4110a63e08d2aa63f7114066374190359d", + "size": 74240, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000047.xls": { + "member": "000047.xls", + "sha256": "aed735775c094c185b58f46eb4ff049e15c4a930d51bfebc736b11ee03e6d323", + "size": 2742784, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000048.xls": { + "member": "000048.xls", + "sha256": "7a90e09576e276d7e1e22b8a460ec17d152dce264d96658c70a3693a6f80371a", + "size": 2856960, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000049.xls": { + "member": "000049.xls", + "sha256": "ea820e0b9a6f3fb04975b68358927f10a3addcc5d79500953e10f95c040b544b", + "size": 3138560, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000050.xls": { + "member": "000050.xls", + "sha256": "aab2cd25b7073406fd1e3f0e4758fc12168a02297baef75106d42d7620096d18", + "size": 9473536, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000051.xls": { + "member": "000051.xls", + "sha256": "6c87a3c11bf6da45bc06e7f88c2873f550cdcf2a1b0ff6cd4014f8b2bfcd72f6", + "size": 3769856, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000052.xls": { + "member": "000052.xls", + "sha256": "3d635e00ca186e28b6513a577c21548a2777c4911e9880e2ae59eaf9518d4bc9", + "size": 2434048, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000053.xls": { + "member": "000053.xls", + "sha256": "d42e99927657c9602264d2f0ba53a34efa7d38f36efea3dc8219c65b6a1f7b7d", + "size": 6325248, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000054.xls": { + "member": "000054.xls", + "sha256": "4c0ed8a2cc7a36579905bb8f666c4507c78c9e88e31f5b23f2e690c4b42f119a", + "size": 169472, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000055.xls": { + "member": "000055.xls", + "sha256": "7580b55ee033b3fb4ab89ef53a57230c33afe09121607bfd71c6176f829b15d2", + "size": 14073344, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000100.doc": { + "member": "000100.doc", + "sha256": "e44b5b6d64da09ea4970fd76f79e1e9df6a1aa5d8f5e71c1dfc2cd0af3d33a7d", + "size": 58368, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000101.doc": { + "member": "000101.doc", + "sha256": "adfc710b1637a0deb1e935d01907ba7873f6ee32c6d01e89447b6de959f23c13", + "size": 107520, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000111.doc": { + "member": "000111.doc", + "sha256": "fae2c5cfbd6ce7167db9804f5af0ce1593af601e75890f2909e9cd60d2f810bd", + "size": 176640, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000113.doc": { + "member": "000113.doc", + "sha256": "314d34c511f55d673c1c5aa3648dfc1183caa1ac53a9042ced2abae1acee7b15", + "size": 14170112, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000114.doc": { + "member": "000114.doc", + "sha256": "4c4c480aa9418a01a91194fb2838c3c816ee0e1261683f464b10f19c732e9444", + "size": 19968, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000116.doc": { + "member": "000116.doc", + "sha256": "f66123609ba7f4ea8c6e4efec8d66f0f2ddaec0b7c3283f0b20eb6fcf692c031", + "size": 1330176, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000118.doc": { + "member": "000118.doc", + "sha256": "1f05a27a34c2a745d8605afaa8134fa4ca99b7a771812f500a30607fe9d04e13", + "size": 141312, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000119.doc": { + "member": "000119.doc", + "sha256": "e2f7b70b9120ba4b1f6f4ef27281c121e10fde8ae7e17b554fc4f5d0f3cfd8c6", + "size": 96768, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000120.doc": { + "member": "000120.doc", + "sha256": "304a00cc55a4928cd2c9e55c9532e44fe86fd38add011210522151bb0cbed3be", + "size": 114176, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000121.doc": { + "member": "000121.doc", + "sha256": "54bf37d12b8d972c84fe57048d8c732c46f639a7752a453230c218bcc95451c5", + "size": 30720, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000122.doc": { + "member": "000122.doc", + "sha256": "c95538979f01590cc087e981fb45cfca5e76ddb1a7ffdc254f75eea2edc06bce", + "size": 139264, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000124.doc": { + "member": "000124.doc", + "sha256": "287dff4567b0e8149dc3af0b2f3da20d54e0920b39c7bd54573b5033b148e999", + "size": 6564352, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000125.doc": { + "member": "000125.doc", + "sha256": "85b3306653ee97eff84d4d8c6531a7ce363671282e56d88903cb2f5726e9911e", + "size": 28160, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000126.doc": { + "member": "000126.doc", + "sha256": "8947c272341d6a75a2438cd60a66a62f1c3bf01aa978e784de245e24530e6d9a", + "size": 557568, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000127.doc": { + "member": "000127.doc", + "sha256": "17bb74bd333b2b8cf01b1a1fc97b787ef8f5d6555dd15a15531439f95b2ef1ae", + "size": 32768, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000128.doc": { + "member": "000128.doc", + "sha256": "d05379991756848adb14c4f66a22161ddc27c58aa1e308d877bbc0436276878f", + "size": 25600, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000130.doc": { + "member": "000130.doc", + "sha256": "b51e11d24d51a8818c8bdd15a68a73f83145391a7a7f71ec2d56f9050080f528", + "size": 1156608, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000131.doc": { + "member": "000131.doc", + "sha256": "41a08091836983eddda159ed5cd02f94f85d491597b10985aacba3a1c2b2395b", + "size": 566784, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000132.doc": { + "member": "000132.doc", + "sha256": "7cfe7021bbc1281132bfa23c166ce990378e29b1f16a42b24003d318c74af029", + "size": 29184, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000133.ppt": { + "member": "000133.ppt", + "sha256": "1debbc7c184543285ab52a410a87ceaeff64ec44b0bc54d619c7a07be37ef438", + "size": 932352, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000134.ppt": { + "member": "000134.ppt", + "sha256": "e50341790ca6801e46e9286703c7f8eef64ed9c0027bc0b53a8bf13d67e2c8d3", + "size": 8657920, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000135.pdf": { + "member": "000135.pdf", + "sha256": "677d1055b3490d275fb9abfadc03d0b5be9d9ae5f17e89e0aed6935a59c1bce7", + "size": 80961, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000137.pdf": { + "member": "000137.pdf", + "sha256": "a17891eddc4266fab4282fd397372a5e188eec545359d7a85e87c8a2b2fd0ece", + "size": 201776, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000139.doc": { + "member": "000139.doc", + "sha256": "564a625cbb313357281d04b818073580fd4593bfa62062ff3c68249056776ce6", + "size": 50176, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000140.pdf": { + "member": "000140.pdf", + "sha256": "95eb64a51258d6b14093a1d738e5c08fee854bfd91ed7bcf855217b3e67fb9b4", + "size": 89719, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000141.pdf": { + "member": "000141.pdf", + "sha256": "d5c2ba720935779020734a7b9b4d150cf535fae895dc4dd3833239ef5ac5ebf7", + "size": 458941, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000142.pdf": { + "member": "000142.pdf", + "sha256": "bdd62b32cf5211cda13f9bdfe850456f661d0d8692c883056174fdfd289b2268", + "size": 445338, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000143.pdf": { + "member": "000143.pdf", + "sha256": "1487f8508ee01fa1a585014229b8eac0f712b523bb519eaa98551f5276ab4aaf", + "size": 5189989, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000144.doc": { + "member": "000144.doc", + "sha256": "4b80632d5d3db38d0b2921cc67a94fded47d434343590ba58142519bfc85adf0", + "size": 36352, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000145.pdf": { + "member": "000145.pdf", + "sha256": "7e8c998142af4b2514a9a98fe482334bb50edc102b2224f1d0d29eebfff22caa", + "size": 45234, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000146.pdf": { + "member": "000146.pdf", + "sha256": "e635a6241b0645cdf8cc8e5b8c7a3dcd5a7aaa0af7c89305533bfe0efbaaf458", + "size": 3652867, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000147.pdf": { + "member": "000147.pdf", + "sha256": "823321cb76913c61f37e5509df48ce87cc319f160e3b62b9111fdaca698697fc", + "size": 622082, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000148.doc": { + "member": "000148.doc", + "sha256": "8187ab39e0cd4b4f079af4c5d3e97b2b603aa16dbd4a4aeb86dc4c81629c84e5", + "size": 565248, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000149.pdf": { + "member": "000149.pdf", + "sha256": "b7f8ffae8ccd7c5805f107adf9cf0a0f07ab9f4b95cac87069bb4e9d7817a35b", + "size": 972022, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000150.pdf": { + "member": "000150.pdf", + "sha256": "11c83236ca2a595aa2f2f3456791562b545b2c8ef42b1d390d1c7172725cf848", + "size": 665275, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000151.doc": { + "member": "000151.doc", + "sha256": "ee08adc04c1e08fc1cb8a537425957a458460ea9f4a1632aa0b7029ae5b59df7", + "size": 19968, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000152.pdf": { + "member": "000152.pdf", + "sha256": "0fd83d2aa11747d402e25283c5ca51e06810708a7e4a6db611493a5abbda0347", + "size": 4406954, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000153.pdf": { + "member": "000153.pdf", + "sha256": "1e4a0b0010051cc24cb05d05cd19299fa8efb97cfc83ef59777f2306da25cbd9", + "size": 2189678, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000154.doc": { + "member": "000154.doc", + "sha256": "95407a907035d280649ecf3db23d9a58ba55581160190722f0bf9c08a6032f32", + "size": 918016, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000155.pdf": { + "member": "000155.pdf", + "sha256": "5c4ccaaadf5acb5b7589c77fefd522fd2cca7baf454d36b1fe54eed731f8409a", + "size": 1339527, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000156.doc": { + "member": "000156.doc", + "sha256": "c9cae86e13e06852b0ea4e0c992fc557a48e523d87a9f28e7ac774f8b156f876", + "size": 46080, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000157.pdf": { + "member": "000157.pdf", + "sha256": "28cc0b208cf0da3221f506d323f18f6f1a7c8dd076b0af6a38adecdcc1b1d66e", + "size": 1656438, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000158.doc": { + "member": "000158.doc", + "sha256": "5f5315023546fff4782300b07c96b4b1fb12ffa06185b69202e67bacb8354ec9", + "size": 61952, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000159.pdf": { + "member": "000159.pdf", + "sha256": "d2a4eb9c41a0fabdd513708bdcae503d7434b4f51c4dcfaa1f1b9cae93c0f9f1", + "size": 4051537, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000160.ppt": { + "member": "000160.ppt", + "sha256": "1988f44f492b8f249c1342c5c83655e40a806c15d08890362275394848f48fb1", + "size": 1496064, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000161.pdf": { + "member": "000161.pdf", + "sha256": "e6433a85b6b64ea1f4a2eb7dd328147e6ae1c4174fd39277c1eb4b5efc8af1a4", + "size": 26603, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000162.pdf": { + "member": "000162.pdf", + "sha256": "1b7b94191ff4628aad03980c6a3a09f16685e849ff5407bf6fa986d62607fbbe", + "size": 244584, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000163.pdf": { + "member": "000163.pdf", + "sha256": "b8ecadbfcdb9f4ef945d464c230cdbc501647e11ce3cda21851d62fd458a0636", + "size": 1048821, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000164.pdf": { + "member": "000164.pdf", + "sha256": "dd6528215bef93268e77d990cfc83970cc1d454e6cd4a797c1bb209a19168853", + "size": 2590299, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000165.ppt": { + "member": "000165.ppt", + "sha256": "ffd128c37f7a1ad31cbfba839d604311c8e0e2c975cc7b712bcbba93e70faec0", + "size": 1919488, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000166.pdf": { + "member": "000166.pdf", + "sha256": "95086825e3fb156edd563625e379f2e045edbcefdc6588b14b34801f5c044a0d", + "size": 238693, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000167.ppt": { + "member": "000167.ppt", + "sha256": "5ae148fcebae627bdf8537f88ceabc335a789b405fd40ba649ad1336cb958a4f", + "size": 911872, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000168.pdf": { + "member": "000168.pdf", + "sha256": "b93260f763d014acca7721e46fe0bc7e810dd281c351f03dd7a949857c3c9903", + "size": 552417, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000169.ppt": { + "member": "000169.ppt", + "sha256": "6a8d87c88acc588b2f77d94a7364a5b0848d960c2e30a95e040fc3fa22387a3c", + "size": 676352, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000170.xls": { + "member": "000170.xls", + "sha256": "21361ea782169f62a05299bdb028588bf8415186787bbd5559fb339e473cc932", + "size": 105984, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000171.xls": { + "member": "000171.xls", + "sha256": "f869803674dec7e03fe64c5913e1592933d5c124a84fc046e2ebd155ab3dcdde", + "size": 163328, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000174.ppt": { + "member": "000174.ppt", + "sha256": "8cd96eda9c502399451876a0efe1fc9e6d4b6c6cbf01b07d1173c8749a9be480", + "size": 448000, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000175.ppt": { + "member": "000175.ppt", + "sha256": "ce737965433ce170acf2743062d1f165844cf8cc14d2296ed06b3c0be644c07c", + "size": 178176, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000176.pdf": { + "member": "000176.pdf", + "sha256": "df31661421b7acece48d463c36fd19b2fc9bdddde2e07199e1ee0d450e86795c", + "size": 74481, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000177.pdf": { + "member": "000177.pdf", + "sha256": "a92188dd5fa88ea3229f62d7e433c78f0a9a76637c24089e499de6d13c0b9da8", + "size": 300856, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000181.ppt": { + "member": "000181.ppt", + "sha256": "bfe7db061457659a4292aa9a718bfad120a44bff7daf0f1222990d983e66b5fc", + "size": 2183680, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000187.pdf": { + "member": "000187.pdf", + "sha256": "3443c4a45a8b57b0f77c467555c5f050668476e0e0f8e08ff4e52c4b87663482", + "size": 9122928, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000189.pdf": { + "member": "000189.pdf", + "sha256": "db2f05a82bf233207a6e98300c789ef7d7a6d08da6daa7d833c7f6596249f992", + "size": 90222, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000196.pdf": { + "member": "000196.pdf", + "sha256": "9c23f471a7896c13bd1bfb20c9198ed6d5890e446a818fa13bd16efba2a455ea", + "size": 40291, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000208.pdf": { + "member": "000208.pdf", + "sha256": "c2c40f8ab1eee4ec65469b616826f7d3be4b334670db0cf870eb81ddc069a83a", + "size": 5582269, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000236.pdf": { + "member": "000236.pdf", + "sha256": "139ba40d0bf0d7dcc5de89d55758cf155d032c812edb9ac80445cfc5db78b655", + "size": 12423, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000248.doc": { + "member": "000248.doc", + "sha256": "b38243f4b543fe4dbd0a6955b1aea2ff69764c4f3d47ce98dc0f583075e75c90", + "size": 1015808, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000249.doc": { + "member": "000249.doc", + "sha256": "2ba5e4ccb1048085a51e0dc68f7557b0e61115ef6fde1dfdb78869c9796755ad", + "size": 100352, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000250.doc": { + "member": "000250.doc", + "sha256": "b36a6b4d56db7c0e674db78721f3ae538cc037481edafaebcf3c49945d1668c1", + "size": 55808, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000251.pdf": { + "member": "000251.pdf", + "sha256": "4c9b04ab63ae1373d234d519643cb9add03be9c3199d35db3c2984bf56d4827e", + "size": 10788, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000252.pdf": { + "member": "000252.pdf", + "sha256": "20540074e6e4c0a4195636ed374d123ac1b1e783f5878e42f098857f098eca37", + "size": 200856, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000253.doc": { + "member": "000253.doc", + "sha256": "0094b317948d2298cf460b81a2aaf7157bd4b3c264dd70ab3b45a9faf17971f5", + "size": 91648, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000254.doc": { + "member": "000254.doc", + "sha256": "81cd549e34c41b0ef3a19423087a1a9e5bf20cd0bfcbb5b1410f5c836f581113", + "size": 73728, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000255.doc": { + "member": "000255.doc", + "sha256": "9709c1462080915ffed6373b30a02e1e4f2ea340c58d213ab007b59bea4627b3", + "size": 74752, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000256.doc": { + "member": "000256.doc", + "sha256": "7b129e51d73a6679076f5428ea5c7796bce10628552ac9932f0fb836c775a65b", + "size": 27648, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000259.doc": { + "member": "000259.doc", + "sha256": "44c0166adb577bb05b572c1681cff1654a093c56b2f3c6e004d47db73f62d72c", + "size": 93184, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000260.doc": { + "member": "000260.doc", + "sha256": "51947087a49f8c94b3fc16fd6f021f5b8b253602e81aec8d186236bbda44ba76", + "size": 197120, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000261.doc": { + "member": "000261.doc", + "sha256": "d4ed22564e3627e65379c11574f8665f928627b942f757f490d01daab8a0e013", + "size": 1077248, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000262.pdf": { + "member": "000262.pdf", + "sha256": "cddc0da7b710c50057098f7c66eaf4fc0579417eaedee5657b5d6e1e17ffe1b2", + "size": 429655, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000263.pdf": { + "member": "000263.pdf", + "sha256": "b5f8a48ca4754fbbe0a63cdecc4f794a62c9be109a7c8e4e3d06cdf6fcd9c9a3", + "size": 18247, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000264.doc": { + "member": "000264.doc", + "sha256": "40ddf76d8e3dcea710d4cc2dde4510505b620a4ee44fb121a8f53b4c6cfef0c6", + "size": 51200, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000265.doc": { + "member": "000265.doc", + "sha256": "e6cd7d4b0339200d4208392de4a0116a3fd91a0a1185a551c891d32c7a13b0a3", + "size": 20992, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000266.pdf": { + "member": "000266.pdf", + "sha256": "beed8503f24d658065ca831db631621cb443ddd3c7b74401286d36543e9f0cb3", + "size": 19021, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000267.doc": { + "member": "000267.doc", + "sha256": "b15e21435279ad3741b4192d3ccfb976d8d79cbf03fb35bb1f7a54f151428be4", + "size": 337920, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000268.doc": { + "member": "000268.doc", + "sha256": "bcbfe4482b37f4b03b45f45ad393ff1225a5378260267aa6d30186bc8c94d70c", + "size": 28160, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000269.pdf": { + "member": "000269.pdf", + "sha256": "f075afba278eaa8a1adb3bc28dd721d8e511e2464b4da64c33b0da9ba7044024", + "size": 2066037, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000270.pdf": { + "member": "000270.pdf", + "sha256": "a5efe2256efd4284ef669bea7f8a6955d7c98ab2398ceeeb528ad25326e31d40", + "size": 70312, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000271.doc": { + "member": "000271.doc", + "sha256": "9954ab4f541dc6b8b1c7a3ea4f9b7d09752e6cfbd68a46065eef26293352d9d7", + "size": 78848, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000272.pdf": { + "member": "000272.pdf", + "sha256": "6fb58a2350bc50f95e04a285959e72ae244a2930672d4ab6826e53665e433de1", + "size": 293665, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000273.doc": { + "member": "000273.doc", + "sha256": "1692c161496912f04761bf694fb84df78b164c98dc6f3342fa9b6aee903afc05", + "size": 32768, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000274.doc": { + "member": "000274.doc", + "sha256": "cd5a36a924f4363310ab3888df3aab971f417c05e5e58824d76b9885c8069d09", + "size": 53760, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000275.doc": { + "member": "000275.doc", + "sha256": "17fb8d6aed6929c1c8759cc10fab0bd0a6394941719023ecf924f457cd9eaa8a", + "size": 31232, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000276.doc": { + "member": "000276.doc", + "sha256": "0320d36035584f5fc42b99f5e692f61c5ae29c3d43b331b5e87743de0d88bb30", + "size": 232448, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000277.doc": { + "member": "000277.doc", + "sha256": "a3984754cb8ddcebe055fc9ad7fdf93a7c442dbe8bdc47235558dad9159fa23c", + "size": 275456, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000278.doc": { + "member": "000278.doc", + "sha256": "1156481127e94eedac2ff633ee3811b02bb2d77689266bc8dafdea7b4f869d77", + "size": 78336, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000279.doc": { + "member": "000279.doc", + "sha256": "b09fdfa0918de2941d8ac1e03fb607f1cb94606f8268d2cdb0b30fef828373f3", + "size": 29184, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000280.pdf": { + "member": "000280.pdf", + "sha256": "c09898bf4ab58a9d9dec1de08ec8aa7948962a804573dc6cdf9d601d5a861103", + "size": 1174312, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000281.doc": { + "member": "000281.doc", + "sha256": "7135dd00edeefe748cafb1e0746820c1e0cba5b3f6ad5c47c40579b4b1fc2031", + "size": 247296, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000282.pdf": { + "member": "000282.pdf", + "sha256": "6885cb45c5f01efd2933c38dc85b3d05fc1fd37b032a5c7cf453591372629ee0", + "size": 3918750, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000283.doc": { + "member": "000283.doc", + "sha256": "efa82a32b76017e2d368377bb346758b58ab5a2722fece5022cc9d2f0b118758", + "size": 72269, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000285.doc": { + "member": "000285.doc", + "sha256": "2b08e4a35407627d4e69f7f49bb4edcbd46c388004ccf5ca09b452fcb4e176b1", + "size": 28672, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000286.doc": { + "member": "000286.doc", + "sha256": "29711e92b93ce2ff6f5c6e6e5035d368401859ce8adc77bbdd8e064274d0296b", + "size": 83456, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000287.doc": { + "member": "000287.doc", + "sha256": "4b288e7d92aaa04dae34adf16049615053d5c38bf3ee7268c73637ad8481582f", + "size": 209920, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000288.ppt": { + "member": "000288.ppt", + "sha256": "91f5e59e2baf58b600804175f9d733ff9043248726142801bce59192d0bbeb28", + "size": 1146368, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000289.ppt": { + "member": "000289.ppt", + "sha256": "d02bdc606363a21513826ff65e34d3fdeead8e629b75c7119ec8e5a384aded10", + "size": 1808896, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000290.ppt": { + "member": "000290.ppt", + "sha256": "f4426e1c4711fd1851d5bac4989a83bf2e091f9a89c3f1e0c2c687226f5714dd", + "size": 98304, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000291.ppt": { + "member": "000291.ppt", + "sha256": "0034898a46f352ac84dc5d8beef904ddb4ea7ae26ea0e8f27fdbbb28bf95bfdb", + "size": 1262592, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000292.ppt": { + "member": "000292.ppt", + "sha256": "511d22483009a1b6e8648a4bb3194c82835a139a88ffbb69746ad10fd2ad51c9", + "size": 2917888, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000293.ppt": { + "member": "000293.ppt", + "sha256": "e20a239715271c5ed673402d2cb0759f93711ae7045682858f052ec127902a89", + "size": 76288, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000294.ppt": { + "member": "000294.ppt", + "sha256": "e0c0c6e100f44a8217513d590294c38bfc75d06843279ab9ef3c4acb939d34f1", + "size": 60928, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000295.ppt": { + "member": "000295.ppt", + "sha256": "822a34045223e0aee81a08b3fb9fdd54bcd2a4228ac6f27422ce71427d992d60", + "size": 367616, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000296.ppt": { + "member": "000296.ppt", + "sha256": "ac11a9d003a3aebab3d321558f72bd3bacb89f3606256feeda598bf4db843685", + "size": 157696, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000297.ppt": { + "member": "000297.ppt", + "sha256": "5f2c0626ba5b8b7ddca4787b28bcd4da648058428645244ab836d89bb91ede9f", + "size": 96256, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000298.ppt": { + "member": "000298.ppt", + "sha256": "7fc4f5496ac2c0da90348f67700a0ca3905038564ade45c1135b81de4a93948e", + "size": 1768960, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000299.ppt": { + "member": "000299.ppt", + "sha256": "ad564e6a7f3ffd781c3c2edb15723c3ee89320139d7b79d4d8bbc2e33a0e734e", + "size": 2073088, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000300.ppt": { + "member": "000300.ppt", + "sha256": "f181e2fd069998be2a0bc24f0905fde50d216c96b0413685415288ad0e82ea47", + "size": 74752, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000301.ppt": { + "member": "000301.ppt", + "sha256": "f087eedae32639b125a865866808cfc6644f57cd99f5e2c9d716b6c7e1d7bcc5", + "size": 209408, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000302.ppt": { + "member": "000302.ppt", + "sha256": "7c3089d9ca0f390242b6aa973983b86f5a19fe1d7567004929193cc8708f28db", + "size": 550400, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000303.ppt": { + "member": "000303.ppt", + "sha256": "aad74fdf5d06b197eaeac1dbcc66f76a93e372c42984cbd5f3d5ca45842dc02f", + "size": 946176, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000304.ppt": { + "member": "000304.ppt", + "sha256": "7542af0fcc23ecc4d5cae33de7e3d8bd12dda11961a1f57c030a6cfa255d4b5e", + "size": 1917440, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000305.ppt": { + "member": "000305.ppt", + "sha256": "8962a081dc275b8e85087d12f5d85cd13cf2850679bc10ba135ea9252f51ec5d", + "size": 1018880, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000306.ppt": { + "member": "000306.ppt", + "sha256": "0a26bf68efe361d3c9488aaf3370b1eed2e87eb8d1c700467f95a4cbf38bac56", + "size": 1779200, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000307.ppt": { + "member": "000307.ppt", + "sha256": "56d9dacc00772acd10fe03c8019792b0743043252f2d232106434e61752417e1", + "size": 456192, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000308.ppt": { + "member": "000308.ppt", + "sha256": "e9e883853a6c5516ffe055200d99a017416ac4bede954533937ed5307111d233", + "size": 1279488, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000309.ppt": { + "member": "000309.ppt", + "sha256": "59ad010f704bdd6452d6cbc48915da7d9f89447971402684963bc078e5e95693", + "size": 6252544, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000310.ppt": { + "member": "000310.ppt", + "sha256": "b12a5b4136e86b7ee0bd7a1e9730410df0031503bef37a361a461585a9988790", + "size": 254976, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000311.ppt": { + "member": "000311.ppt", + "sha256": "ced49e62b0f5a030de1d36e101a0c6158ce6151468d034687b0010628db940c2", + "size": 834560, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000312.ppt": { + "member": "000312.ppt", + "sha256": "aa2c1cff108fffc77e5dd9ddb1795e8d49542f7cb49bbf577d3b711aede29134", + "size": 1099264, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000313.ppt": { + "member": "000313.ppt", + "sha256": "2ad419542c52efa1d63a49e06dcfded46db978de0d669127b970be59b762be74", + "size": 154112, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000314.pdf": { + "member": "000314.pdf", + "sha256": "9d2cc79506c446c1c3ac12c94ad13ece315cb319dba67289dfcf947ab603062d", + "size": 735686, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000315.ppt": { + "member": "000315.ppt", + "sha256": "b8201013f78261810e0ae3cc14db2bdeed4dd3a39ba23cfb76ee4f12bed84ff9", + "size": 1352192, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000316.pdf": { + "member": "000316.pdf", + "sha256": "24e9f1802a4ae129a78763e6b478839b9531ba52b410f2baa944f3da1f6c636f", + "size": 168192, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000317.ppt": { + "member": "000317.ppt", + "sha256": "1b7f99a9c3c7a361a80dd0a7f70f5d27e7a33ea51253f3d22fb306454d0f5ff0", + "size": 1177600, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000318.ppt": { + "member": "000318.ppt", + "sha256": "cd6ab2bdc02077405d9c26228e6313d546d50c53d8bb21ae742f48a7551e35cb", + "size": 252928, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000319.ppt": { + "member": "000319.ppt", + "sha256": "f4b9c0f1b18cc2f99be32a8150a6b87dbe4be5d49ea78a704074d9d06ee692d0", + "size": 429568, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000320.ppt": { + "member": "000320.ppt", + "sha256": "4e7238b413103202a3719ef32d7c1c769e88fbff8c20baa7109b35caebd776d5", + "size": 1709568, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000321.ppt": { + "member": "000321.ppt", + "sha256": "83d60eb40c36f01ecc1ab9ec6b35c322c6921cd7eb0154b225f96c71c33b20ba", + "size": 1315328, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000322.ppt": { + "member": "000322.ppt", + "sha256": "4682a053c0723a3e80e71d6fe74388abde57801c104321705e0c3c1127ae7e79", + "size": 5045760, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000323.ppt": { + "member": "000323.ppt", + "sha256": "051fe53df2e0b21496f0f94a3ee66c94612f1aa7e2b28a792fb4a862456aafac", + "size": 1163264, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000324.pdf": { + "member": "000324.pdf", + "sha256": "15a48d55c7a98f4f0ddc465a6fa650a4357c73efc0d02df860da6ade400fff5d", + "size": 451440, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000325.pdf": { + "member": "000325.pdf", + "sha256": "21ba59de566867cf7add3ca79288ad3f7371d5547d5a655d4689f18373687bcc", + "size": 508018, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000326.ppt": { + "member": "000326.ppt", + "sha256": "66aad11383081ac92be14ad75739f17c6ba7e1eef0c6688c3c6f2ddc3102a705", + "size": 2119168, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000327.ppt": { + "member": "000327.ppt", + "sha256": "5ea841d8fdbe27c6d852a1b15ab547b9ff745853954715d5b4ea1becd4b5ce21", + "size": 1485824, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000328.ppt": { + "member": "000328.ppt", + "sha256": "ccc7fcb0c480404fa2626b307ea94c266e31a899c7074c5eb066f685b01d8c73", + "size": 185344, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000329.ppt": { + "member": "000329.ppt", + "sha256": "021beff95809c8aafa7c88119354e698d2f0c4c6abde190f6d8e5be8bfb80482", + "size": 463872, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000330.ppt": { + "member": "000330.ppt", + "sha256": "6cef7af27c7624b5685b7b3434fcd72e1a22b02277f1913834f402331671bf13", + "size": 1313792, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000331.pdf": { + "member": "000331.pdf", + "sha256": "3032fca5fbdc80a01e60ee94d1caed1f182ca084233b69964b6739dfc1efe05a", + "size": 431084, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000332.pdf": { + "member": "000332.pdf", + "sha256": "69e789251030d4ab0baad6c4e96e364d370d358675301b06c3b3595fda41d777", + "size": 262996, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000333.pdf": { + "member": "000333.pdf", + "sha256": "b8dccae7f2515322457b11113fe86985d44397bbedd85f4eb3c482a1638c1cb3", + "size": 74480, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000334.pdf": { + "member": "000334.pdf", + "sha256": "18922698b2e48adf3e81e51aa58b68d942c3b8a6d42b1dd6842d6aa481547924", + "size": 206182, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000336.pdf": { + "member": "000336.pdf", + "sha256": "6a5527311829a104b30e65450c12632ab8545afe2d790321eb14fd340960f1c9", + "size": 130717, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000337.pdf": { + "member": "000337.pdf", + "sha256": "3ab24cb9e2ca8ca516263991bf57fb6ab3a65afa3ce1abd366c15eb68f4c3098", + "size": 458008, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000338.pdf": { + "member": "000338.pdf", + "sha256": "422e6d76d26f2115b921f0adba79e4231a69af53b432e0739a5cd1522939a028", + "size": 614385, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000339.pdf": { + "member": "000339.pdf", + "sha256": "243492cd02c93a94fa4227bf832ee616f8d6fbf118a6a0f2d3512a4b3aa761ac", + "size": 65206, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000340.pdf": { + "member": "000340.pdf", + "sha256": "44c4c567e806eeea2db1aa58990430469cee8ec36f1b9a6d7d73dd9f42b28cb9", + "size": 1664437, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000341.pdf": { + "member": "000341.pdf", + "sha256": "cb3536e7070a8a08d0e4d85a4420cdc83b5fd068cc05f9290b81d7dc50ab9763", + "size": 109065, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000342.pdf": { + "member": "000342.pdf", + "sha256": "14b447aa995bb91955bba0233cb488202dca3f09e5d117a2868d4daa871dd12c", + "size": 41343, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000343.pdf": { + "member": "000343.pdf", + "sha256": "ca1b1ebe01729454e417c7abbd308c1ae75958811a409659eb7035681e7f9b19", + "size": 64642, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000344.pdf": { + "member": "000344.pdf", + "sha256": "907d3db62fb4a731f8e87bf050139a31bb408ae09564d43c1b678d52487ff7e9", + "size": 2620315, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000345.pdf": { + "member": "000345.pdf", + "sha256": "08a544974cc249829286b5520cf4ba6ac3225640b66df8308db94d2c4fad18b4", + "size": 42273, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000346.pdf": { + "member": "000346.pdf", + "sha256": "b2cd28c25c2c9d7b5f4db94354fc050da37a66e683d6d65b42d087fcdd6ff458", + "size": 252172, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000347.pdf": { + "member": "000347.pdf", + "sha256": "114462c1ca5dfdc40d19a5ed17343e073e64c89d1ece6081261849cc9395546d", + "size": 572552, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000348.pdf": { + "member": "000348.pdf", + "sha256": "2593460dbf04da62a9c8c3aa8fc0da1258311a658c6744f231a6881342156a0c", + "size": 2300275, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000349.pdf": { + "member": "000349.pdf", + "sha256": "a1321a605bf40fb5fc96d27f4c3692f814aaeb58bbc3a8c5b432455900c1d70c", + "size": 39259, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000350.pdf": { + "member": "000350.pdf", + "sha256": "45009c70fad99b8d84919b2721079e99d324fdfa81ecfcfcc0ba9b1b1785c5d7", + "size": 4668, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000351.pdf": { + "member": "000351.pdf", + "sha256": "728f34a85f637211a89f311b6b79a640f38a55f0a16e484388c416c799a1f409", + "size": 256626, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000352.pdf": { + "member": "000352.pdf", + "sha256": "28c32f76b3fc81d4cf30b5ddf142fa42bbcca190da2dff159be138d885050b8a", + "size": 333582, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000353.pdf": { + "member": "000353.pdf", + "sha256": "20e1d6e3e6e326815108a70ef010445773adb7ba12fdff248fd2fb98c0217b7a", + "size": 97361, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000354.pdf": { + "member": "000354.pdf", + "sha256": "0ce09dfabe575822a1360fb50e808057f836222a10ef543f777372edc1924cdf", + "size": 96138, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000355.pdf": { + "member": "000355.pdf", + "sha256": "939e4b3c2b435619800e75c1ed1018aa0842d1dacc73f45f239958f29b79fc08", + "size": 233584, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000356.pdf": { + "member": "000356.pdf", + "sha256": "61fcc7d9fb01ed7f31d6240c5a4b4be4e51b704df5677d986573d532e0b8aadc", + "size": 23278, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000357.pdf": { + "member": "000357.pdf", + "sha256": "3ddfa10ee05f513a410dd591cc0862694c3f9c65df8d764ddbf6e949eb4df1e6", + "size": 476668, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000358.pdf": { + "member": "000358.pdf", + "sha256": "e39e9715f520c201d96d3cecb29963a910ec82a0f771b8b73cb542f48c2bc675", + "size": 273359, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000359.pdf": { + "member": "000359.pdf", + "sha256": "3ff5d64698f58a7ad014137c76db9cf166256981ed89c3f568cad9c72fa51b44", + "size": 1669388, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000360.pdf": { + "member": "000360.pdf", + "sha256": "5972cc1eee472c09dc961ee96bec210fa9fd5fe828ce69fed2a4029c242906c5", + "size": 23897, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000361.pdf": { + "member": "000361.pdf", + "sha256": "9753c88e0aa8edb3755fe1c742ac66b58926897772e4b8c14aa270986a4040ef", + "size": 37579, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000362.pdf": { + "member": "000362.pdf", + "sha256": "803f76e7640ba433606e9eadfd357ce5747aec3d4bbbed9d26f5a6e087b84848", + "size": 32528, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000363.pdf": { + "member": "000363.pdf", + "sha256": "563d825153fda6b54243fefd81c45fbe26802d7a81cd6447f04cb7782b58e2e4", + "size": 178805, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000364.pdf": { + "member": "000364.pdf", + "sha256": "108c2281e298bc6856c7865896b2eba66110637243b970c4603f4baf0ffaf38b", + "size": 121566, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000365.pdf": { + "member": "000365.pdf", + "sha256": "9e09e33ee5b3d380139dc8ac45b1bdf9038d7f69a24014332997010502afab3a", + "size": 39757, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000366.pdf": { + "member": "000366.pdf", + "sha256": "4e10a486a034cb74652c93f9a21a8c659b0a539e84ea640e47ffa0f3a95dbd21", + "size": 139216, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000367.pdf": { + "member": "000367.pdf", + "sha256": "3765b5485849ee57855a7d28f63e2c5dfd8722b00c67f55f8939e1c8ca396291", + "size": 135513, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000368.pdf": { + "member": "000368.pdf", + "sha256": "4190ec8ba9cb165798ce3576685c37c9d2cad96f36a48710b7b4679ac80e1feb", + "size": 12084, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000369.pdf": { + "member": "000369.pdf", + "sha256": "357234fc5390e3841096f6f8ba17102b53f9c5ebe146a4c4e27a18844164a6ba", + "size": 11558, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000370.pdf": { + "member": "000370.pdf", + "sha256": "b78fa1c8d1db3bfea01633a8bd2ca9a6b349424737a45dc7c273fe923b6a476a", + "size": 45547, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000371.pdf": { + "member": "000371.pdf", + "sha256": "423126b26b6323edb29cd85aa5eddd96d12cfe02395786c5fc2eadbc46912c40", + "size": 282008, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000372.pdf": { + "member": "000372.pdf", + "sha256": "5c283d48083d61c3fc33b66df18f8a10d6a93eaf4873d7bdaa8a9139d160bc5b", + "size": 1741033, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000373.pdf": { + "member": "000373.pdf", + "sha256": "18f79c510099a1f9f66bf0c9db1ebf570b2bbe8c74c946e6c25dd9ff50d548b7", + "size": 422934, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000375.xls": { + "member": "000375.xls", + "sha256": "3e5a218344966917fc7b61543fa07038bc9358d844a95cbc13016d980eedd157", + "size": 47616, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000377.xls": { + "member": "000377.xls", + "sha256": "6740b91d1c7fb61cc578fab510e46fcfe55874dd29e2f9cdfdfbcca2811aeee8", + "size": 33280, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000378.xls": { + "member": "000378.xls", + "sha256": "f31f00185448b12ded6e2783d333685de893aa1407cca25baaffee877f44d5cb", + "size": 22016, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000379.pdf": { + "member": "000379.pdf", + "sha256": "f61c756ffdefc16b9a0c515824ff2e8a35bcc833a28f064b9464365bf6bf3ae0", + "size": 213174, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000380.pdf": { + "member": "000380.pdf", + "sha256": "ad38a1bb51c144ce61e4df798d5753aeb7125bdee005fbfbfe07d48294486c18", + "size": 1163575, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000381.pdf": { + "member": "000381.pdf", + "sha256": "35c1acd5cae5a9d190964662732774a6dd2e32696ed0bf3d9aa7f85936b5313d", + "size": 275349, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000382.xls": { + "member": "000382.xls", + "sha256": "1c8bd4e2e643e3a4214d0721ed3f6af6dfe708b0f85c6d0ad2f2e10ba96fa8c1", + "size": 103424, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000383.xls": { + "member": "000383.xls", + "sha256": "c7a9bc3b64882bc11f20fdd38d8fbe5ce1e6d71efd2e0de9b030906d8772d68b", + "size": 415744, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000384.xls": { + "member": "000384.xls", + "sha256": "1102b3d10f34139d4ce6faa86f68f8a01b2757219c5b8d9e191cb7ad754faf8f", + "size": 105472, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000385.xls": { + "member": "000385.xls", + "sha256": "00bf62220b62bca066b49efa5321a6c287d4ae4d8dd0ea612fb0350d227f6a65", + "size": 50176, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000386.xls": { + "member": "000386.xls", + "sha256": "d7d473782b828357aafc8c76610888da96f51a2c0c6eb0723c16774356b257c5", + "size": 93696, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000388.xls": { + "member": "000388.xls", + "sha256": "ef978239a6ad449ca6e591e980ad72cc8ca91d60c20682c807a31efa5032ad2f", + "size": 63488, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000390.xls": { + "member": "000390.xls", + "sha256": "0375765130f0f1545231bb0fa161c181a4ff325be826049a0913d258459eaba5", + "size": 34304, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000391.xls": { + "member": "000391.xls", + "sha256": "4aa3bf837446d2bc9cccbe8809e0ca46aeb5141296ce59d311512bb4687885b6", + "size": 134656, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000392.xls": { + "member": "000392.xls", + "sha256": "47b01a5b12e4e8055d8c08c101be7c26b6e086a55dc49691b8c56e3a3b6fd3b6", + "size": 25600, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000393.xls": { + "member": "000393.xls", + "sha256": "43fb5543118335928e2996612bbb141760412576487259c0c2ed9e3efdcea33b", + "size": 1607168, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000394.xls": { + "member": "000394.xls", + "sha256": "c7656c9b1bbf0b7113e319f722d78c845dd5a10a2b1d6544d14b0c2eeb230a9f", + "size": 21504, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000395.xls": { + "member": "000395.xls", + "sha256": "7718316e9cd4f13ad59080e4ff6fa0fc77ec897a84f3a41a68ff8ca2e75e951b", + "size": 49152, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000396.xls": { + "member": "000396.xls", + "sha256": "4df10ab79411a420e33ea886cc91d0bebba6fddd84470f30b823b8aaf1e120db", + "size": 1577984, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000398.xls": { + "member": "000398.xls", + "sha256": "1b500f12905899272bea0dfe5d98ad93f181a21e0a7fde2b99e2bac5e3f0f078", + "size": 47616, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000399.xls": { + "member": "000399.xls", + "sha256": "05473b25c768c185fc0c19979b08da3f70879403ddae93af6022e1a180f0e013", + "size": 223744, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000401.xls": { + "member": "000401.xls", + "sha256": "8d11e71bba566ad66af13857916970871296ae55f947dd649b16a832f0034083", + "size": 32256, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000402.xls": { + "member": "000402.xls", + "sha256": "f7bb88ad8d6c60fc820b3c51ad5511138f1bc7c80f5ed2684f7e2e3e5d600b03", + "size": 33792, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000403.xls": { + "member": "000403.xls", + "sha256": "4abb494bf5f547150f74f255502e5737ed31dbaa8d5e91c99219a8f76fb1467a", + "size": 199168, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000405.xls": { + "member": "000405.xls", + "sha256": "d84b4bdb2a71f0395537bd2a9df0373f04722b4ef8e0e7aebbb35dfb83edc7c1", + "size": 9015296, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000406.xls": { + "member": "000406.xls", + "sha256": "a86bb969c36c4442c89c500788328314a1bc5253f8d7c229eef3ea1ad267f728", + "size": 22528, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000407.xls": { + "member": "000407.xls", + "sha256": "42babb25256ac15cd8823f21b5419f847fb03e0436ddc1f502f69be2f829ea6b", + "size": 21504, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000408.xls": { + "member": "000408.xls", + "sha256": "66f35cd6aafbc21ef996a9cab80a50ebe490d29127bf324b371b318642a29d14", + "size": 7489536, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "office/regression/000_000444.pdf": { + "member": "000444.pdf", + "sha256": "f3cae3ca271d1950c05afc9f0c8b578f9dd16f13b3f09c6978aac37d7763391c", + "size": 1148629, + "url": "https://digitalcorpora.s3.amazonaws.com/corpora/files/govdocs1/zipfiles/000.zip" + }, + "pdf/regression/1501.05129v1.pdf": { + "sha256": "a238ffb1c3429f9be73e91eb7d3ac071fd81457a5d86139e29491463ff1290b8", + "size": 2252272, + "url": "https://arxiv.org/pdf/1501.05129v1" + }, + "pdf/regression/1601.00914v4.pdf": { + "sha256": "e407966b21a6c57e798c433bfa72ef27f3dbd8f3b77b1ab15c01d3596030e0f2", + "size": 505443, + "url": "https://arxiv.org/pdf/1601.00914v4" + }, + "pdf/regression/1707.05686v1.pdf": { + "sha256": "f65e452f08346baf807c78c2372b1c7ccc86ea1c676034119f520046507a5a51", + "size": 508262, + "url": "https://arxiv.org/pdf/1707.05686v1" + }, + "pdf/regression/1903.09624v2.pdf": { + "sha256": "1cafb3874738a761d5abfd4ff7daae539a75d34adf0e956fc846ebd5f42e8c41", + "size": 396348, + "url": "https://arxiv.org/pdf/1903.09624v2" + }, + "pdf/regression/1906.11682v4.pdf": { + "sha256": "984ed5e7d21c20ae3a4274d9df7b904389395cae658ea5666d2a3026f4677305", + "size": 925201, + "url": "https://arxiv.org/pdf/1906.11682v4" + }, + "pdf/regression/1907.12836v5.pdf": { + "sha256": "e3a36aa2beb1531737591937b523fbbb27971d6961f5f4033e8f1ace02a21949", + "size": 290387, + "url": "https://arxiv.org/pdf/1907.12836v5" + }, + "pdf/regression/2004.12796v4.pdf": { + "sha256": "abde045b1ee3588baf0ce3a1599ae31a23e1a6128789a6ffbe42472eeea5ef47", + "size": 366297, + "url": "https://arxiv.org/pdf/2004.12796v4" + }, + "pdf/regression/2009.03251v4.pdf": { + "sha256": "9c0aa6bd5d62d1e3ad51441387eebf86bc53f8b2baf63a496409824817c0de1c", + "size": 1725999, + "url": "https://arxiv.org/pdf/2009.03251v4" + }, + "pdf/regression/2012.00565v4.pdf": { + "sha256": "c283b034a75c1a6b92de516002a276c3e1be98d89805d1f90004ddba345c8864", + "size": 257624, + "url": "https://arxiv.org/pdf/2012.00565v4" + }, + "pdf/regression/2012.01261v3.pdf": { + "sha256": "78b08d3a4338fcea9031506ac6c1209d97d5287cd59a3df24944f1391491cf8a", + "size": 249772, + "url": "https://arxiv.org/pdf/2012.01261v3" + }, + "pdf/regression/2012.06424v2.pdf": { + "sha256": "c638fc3d4f2f163a78f0cca6797df1a31878966003c432108931d9ce69be7761", + "size": 410332, + "url": "https://arxiv.org/pdf/2012.06424v2" + }, + "pdf/regression/2012.07391v1.pdf": { + "sha256": "9e4b9b8335444f418e8ecdb62d6f5fcba6b55f222750eb5b300e2d6355d61563", + "size": 461660, + "url": "https://arxiv.org/pdf/2012.07391v1" + }, + "pdf/regression/2012.10175v1.pdf": { + "sha256": "96dba57154b8e3fe812598846436608a91bf297a9ae63a60901322c8a8d3e31d", + "size": 458830, + "url": "https://arxiv.org/pdf/2012.10175v1" + }, + "pdf/regression/2012.15315v1.pdf": { + "sha256": "c13954be4d125524b206cd24b67ea7a70e989e0cf0e53716ede5d8af4b49baa7", + "size": 191511, + "url": "https://arxiv.org/pdf/2012.15315v1" + }, + "pdf/regression/2102.02280v5.pdf": { + "sha256": "553c0fb36a3d202dfb9b6270ffc80110eb709c7630c66a66fcf1f68295c90b53", + "size": 743885, + "url": "https://arxiv.org/pdf/2102.02280v5" + }, + "pdf/regression/2103.10228v2.pdf": { + "sha256": "6ebfaea71108a0d399cc22b43cbca806f28d1b0ea79cf9ca1f7296ccf896f72d", + "size": 1238966, + "url": "https://arxiv.org/pdf/2103.10228v2" + }, + "pdf/regression/2104.04354v1.pdf": { + "sha256": "d32ebd78925fe143bd1923a1f4ff7d5f921960ff81af1f75fa2ff5209bbe70cf", + "size": 395157, + "url": "https://arxiv.org/pdf/2104.04354v1" + }, + "pdf/regression/2104.10574v2.pdf": { + "sha256": "532768a3c549a5ac8874aa4963d0606b2d52ac9be7e7c70a04c7130d10576a6f", + "size": 439700, + "url": "https://arxiv.org/pdf/2104.10574v2" + }, + "pdf/regression/2104.10759v1.pdf": { + "sha256": "f8d617de69d0740c556d7d81e34d3e7cb30de5705d06a8aef5c40e9116ace966", + "size": 11266147, + "url": "https://arxiv.org/pdf/2104.10759v1" + }, + "pdf/regression/2105.01228v1.pdf": { + "sha256": "dc99979fe0cde6166434cf587aea3e49795797d1f628df6205c65890f556514b", + "size": 301912, + "url": "https://arxiv.org/pdf/2105.01228v1" + }, + "pdf/regression/2105.11922v2.pdf": { + "sha256": "c8f891e36ebb35a59436e46ba9269037d5298ae24e6b72229c4aba6fdd9370e1", + "size": 214257, + "url": "https://arxiv.org/pdf/2105.11922v2" + }, + "pdf/regression/2106.01117v1.pdf": { + "sha256": "e85a7d919668e01b1d0080bc4595e6ed08abfa89692310d97ba1af0719a3b5cb", + "size": 1397161, + "url": "https://arxiv.org/pdf/2106.01117v1" + }, + "pdf/regression/2106.05171v2.pdf": { + "sha256": "77c6bbdbce14cbf06789bf549cf06680d6b6a53118ba6f9246a725420fe4d56a", + "size": 12446513, + "url": "https://arxiv.org/pdf/2106.05171v2" + }, + "pdf/regression/2107.11718v2.pdf": { + "sha256": "1a7d8d32e36e75c11a2383137de4e74e22fad8271180b44bc38931ac4a8b8e05", + "size": 313729, + "url": "https://arxiv.org/pdf/2107.11718v2" + }, + "pdf/regression/2108.06777v3.pdf": { + "sha256": "5895bad36836be4f61c353df4ba4ead8922b511379454ba5ef6cca81e03c8d73", + "size": 1613551, + "url": "https://arxiv.org/pdf/2108.06777v3" + }, + "pdf/regression/2108.11258v5.pdf": { + "sha256": "0a4c22a71379c1163c70ac7d81b425972daf01d59dcdb1ad881705a323217123", + "size": 2073234, + "url": "https://arxiv.org/pdf/2108.11258v5" + }, + "pdf/regression/2108.11312v2.pdf": { + "sha256": "8d56b522e998b971858cba2f3e4cc7265ee0c76c31c82f2ad369c3d526a003e9", + "size": 571192, + "url": "https://arxiv.org/pdf/2108.11312v2" + }, + "pdf/regression/2109.00790v2.pdf": { + "sha256": "659a4eb23b9c71074f52ea86e0926d1bf4a033ffd7f166541758b5c75d19aea5", + "size": 3072074, + "url": "https://arxiv.org/pdf/2109.00790v2" + }, + "pdf/regression/2109.05617v1.pdf": { + "sha256": "b6d77771fe4621ed69fedfd797ebfd9db905df56a7c303a8c3e9242750dfba5d", + "size": 1056053, + "url": "https://arxiv.org/pdf/2109.05617v1" + }, + "pdf/regression/2109.09221v2.pdf": { + "sha256": "f41aeb32b852c8be4f88d6b25851e2bf265dfcad9309f17d26ef0370d0b1ae55", + "size": 5326699, + "url": "https://arxiv.org/pdf/2109.09221v2" + }, + "pdf/regression/2109.12116v2.pdf": { + "sha256": "77697d9feeb04e9d9cf4424f7522099591155982749c9984fec505f683a935f3", + "size": 1104970, + "url": "https://arxiv.org/pdf/2109.12116v2" + }, + "pdf/regression/2110.09475v2.pdf": { + "sha256": "40d94b15ecb87f316e561eb596a02a56089028676900d90e880d5cbcbf0bfde0", + "size": 340718, + "url": "https://arxiv.org/pdf/2110.09475v2" + }, + "pdf/regression/2111.02858v3.pdf": { + "sha256": "755de42bf3e3e1ecde6fed5073fc366c1d91465141aa2f0c6f59c87d655cf69e", + "size": 2095417, + "url": "https://arxiv.org/pdf/2111.02858v3" + }, + "pdf/regression/2111.02868v2.pdf": { + "sha256": "cdeb3394ff8172ebe54fd896b4da5ced31548995761b7dab9b709a2919ac39c6", + "size": 417425, + "url": "https://arxiv.org/pdf/2111.02868v2" + }, + "pdf/regression/2111.11266v5.pdf": { + "sha256": "f673a78b24806b0e3dcd84c029b9ee4506520378251f1794eba7ecb7d473bee1", + "size": 308997, + "url": "https://arxiv.org/pdf/2111.11266v5" + }, + "pdf/regression/2111.14048v1.pdf": { + "sha256": "d18c6769208967ef6a9ba151cd078148f3310b0b708b625f607b6b822c6b8dcc", + "size": 187177, + "url": "https://arxiv.org/pdf/2111.14048v1" + }, + "pdf/regression/2112.00074v1.pdf": { + "sha256": "fcdc8d3bccfa141841e69dfddc83e3b0f177f1912236302e0f1efe3aa331ea1f", + "size": 1339060, + "url": "https://arxiv.org/pdf/2112.00074v1" + }, + "pdf/regression/2112.04248v3.pdf": { + "sha256": "d3650b0f8f9f85b8bf8fb8112e4c371c307a31435770f44dc6d1bec81ca538db", + "size": 651103, + "url": "https://arxiv.org/pdf/2112.04248v3" + }, + "pdf/regression/2112.06304v1.pdf": { + "sha256": "96ab586b656fd68815051b2367a6b495c46631d92ed12e3bf19655607d18aad2", + "size": 556046, + "url": "https://arxiv.org/pdf/2112.06304v1" + }, + "pdf/regression/2112.10023v2.pdf": { + "sha256": "e7661ed18389561d1c99c988c821e9e05f48eff7a74d97014f51a7409d83a4d8", + "size": 788173, + "url": "https://arxiv.org/pdf/2112.10023v2" + }, + "pdf/regression/2112.14120v1.pdf": { + "sha256": "261b298a8fa13123c1a3e84652d402a8ccb0308b9ba32eaf08363ff291288b19", + "size": 472281, + "url": "https://arxiv.org/pdf/2112.14120v1" + }, + "pdf/regression/2112.15580v1.pdf": { + "sha256": "0156399a22d8a6845d17701b1ebc2f57ecdff4c3accfe2409595cd94b9601a0d", + "size": 407505, + "url": "https://arxiv.org/pdf/2112.15580v1" + }, + "pdf/regression/2201.03487v2.pdf": { + "sha256": "f4d0c5ca1ff734e8554cfd949b5d0483ef7c876461631085a499827f15e7701b", + "size": 1693721, + "url": "https://arxiv.org/pdf/2201.03487v2" + }, + "pdf/regression/2201.09582v2.pdf": { + "sha256": "6657760278a03607e215ddd1dda27442f1fd43f555ddf994571e6e969f6b5a2b", + "size": 833110, + "url": "https://arxiv.org/pdf/2201.09582v2" + }, + "pdf/regression/2202.12461v1.pdf": { + "sha256": "b7509b434e5e4bba464329896c86b2919415007c43100523cf9924bad64df0d6", + "size": 280690, + "url": "https://arxiv.org/pdf/2202.12461v1" + }, + "pdf/regression/2202.13359v2.pdf": { + "sha256": "2164cf524e295fb80f71adb9fe4b11efdd0cb6dd4d81aa62fb70e7ecddd505c1", + "size": 433515, + "url": "https://arxiv.org/pdf/2202.13359v2" + }, + "pdf/regression/2203.03500v3.pdf": { + "sha256": "27e885d6979a7b20d40a2eb2cf595b90f244c3011e40a0964212872f663a1005", + "size": 456451, + "url": "https://arxiv.org/pdf/2203.03500v3" + }, + "pdf/regression/2203.13748v3.pdf": { + "sha256": "d4de9c58ece5d327f3dc2fb9e598ca8ebc312e7710d4b1c2fcaccc403df7ff6c", + "size": 860164, + "url": "https://arxiv.org/pdf/2203.13748v3" + }, + "pdf/regression/2203.15622v2.pdf": { + "sha256": "a739f8f1d9d5f19f9daaefce4439f30bd21423a9de034f791308fe69940fa4e5", + "size": 280138, + "url": "https://arxiv.org/pdf/2203.15622v2" + }, + "pdf/regression/2203.17091v2.pdf": { + "sha256": "51b0317ef335053c470178472bbc6b759ef619fd24a4f5029675bef4b2b210d3", + "size": 523617, + "url": "https://arxiv.org/pdf/2203.17091v2" + }, + "pdf/regression/2206.07478v1.pdf": { + "sha256": "d63bc4a8e277c4ba3afdae6598a4ab7636d9ecb6ac577bcea4b25d78fc88b1a7", + "size": 919608, + "url": "https://arxiv.org/pdf/2206.07478v1" + }, + "pdf/regression/2206.10020v3.pdf": { + "sha256": "2edebad9342f88c7a81539fe6d7a664d621a6942b49f3252f660d172c8cb94f2", + "size": 450323, + "url": "https://arxiv.org/pdf/2206.10020v3" + }, + "pdf/regression/2207.04061v1.pdf": { + "sha256": "881178860be2461f827377052b2787008b79440d5e23b96a23820e606de12ce7", + "size": 516307, + "url": "https://arxiv.org/pdf/2207.04061v1" + }, + "pdf/regression/2207.04077v1.pdf": { + "sha256": "2111ec610164e04e05b6833ba3fb2f2f6ddd424dc6a5f9f8367fdc9706745d3d", + "size": 223371, + "url": "https://arxiv.org/pdf/2207.04077v1" + }, + "pdf/regression/2208.07288v3.pdf": { + "sha256": "7f0d17005e9c79960e244dadba6ca717a48bca08d2719209ec676c4ce3317880", + "size": 727063, + "url": "https://arxiv.org/pdf/2208.07288v3" + }, + "pdf/regression/2208.10640v2.pdf": { + "sha256": "b0668736fd12e4ed5ed17c2906de20c097d07fdd4300ef4cc21c6a63ec03a53e", + "size": 2819154, + "url": "https://arxiv.org/pdf/2208.10640v2" + }, + "pdf/regression/2208.11795v3.pdf": { + "sha256": "64868a165c1d77eda6dd4e91d8bad5508d1aa4f641ec78c5015cd055b5c78f60", + "size": 2628193, + "url": "https://arxiv.org/pdf/2208.11795v3" + }, + "pdf/regression/2209.10546v2.pdf": { + "sha256": "63015d313df5da2b9c1c3e6a50cc95a477f9cbc6d55cc8b7cf2ba81009868af6", + "size": 2671367, + "url": "https://arxiv.org/pdf/2209.10546v2" + }, + "pdf/regression/2209.14646v1.pdf": { + "sha256": "c73c83b65f76f4b5163b5cece9d424fb07e16cc512c82c8a02ee42b77c238584", + "size": 472845, + "url": "https://arxiv.org/pdf/2209.14646v1" + }, + "pdf/regression/2210.04129v1.pdf": { + "sha256": "ad040f27413a344c5730c817d0ac42245673976a4cb5d79732be0c4073e664de", + "size": 281476, + "url": "https://arxiv.org/pdf/2210.04129v1" + }, + "pdf/regression/2210.13607v3.pdf": { + "sha256": "a87616fc88129b2e0f4749d54d4035d1cabaae9d1835de1a77b89c91d18bb826", + "size": 931039, + "url": "https://arxiv.org/pdf/2210.13607v3" + }, + "pdf/regression/2210.17370v3.pdf": { + "sha256": "6eed3e7aba89d5ca6f9280581581afd549f914ac8cd50f9c6c9db71ee01b725e", + "size": 794664, + "url": "https://arxiv.org/pdf/2210.17370v3" + }, + "pdf/regression/2211.03243v3.pdf": { + "sha256": "009d6c61c0aaae466f6a4a08f2c0862b788666d3d194806abb8a9f3f4a706cbe", + "size": 917400, + "url": "https://arxiv.org/pdf/2211.03243v3" + }, + "pdf/regression/2211.03735v4.pdf": { + "sha256": "24425818cef430ed7d40a72b81633f66c1b961372510a0c49676b7e36f8a651e", + "size": 1073501, + "url": "https://arxiv.org/pdf/2211.03735v4" + }, + "pdf/regression/2211.04466v1.pdf": { + "sha256": "47b098824437c6f51c3e7e7b88171abfa08514b5ab92c7c01a95f43ec582fd6f", + "size": 347684, + "url": "https://arxiv.org/pdf/2211.04466v1" + }, + "pdf/regression/2211.04891v2.pdf": { + "sha256": "73a3aa9a4d9f910a0b838abb7cfa6c5bb4a0076968d7e62aad6c34bbdb630d3f", + "size": 2115669, + "url": "https://arxiv.org/pdf/2211.04891v2" + }, + "pdf/regression/2211.08917v3.pdf": { + "sha256": "73e33c43e9add67439b664799b7e39908fd431965afde6f059d6fa004099e46a", + "size": 677368, + "url": "https://arxiv.org/pdf/2211.08917v3" + }, + "pdf/regression/2211.15369v2.pdf": { + "sha256": "19d36ca1ac0960571797f5f8e82bc6782896e34edfb7a3f903b5d65f02e52fc6", + "size": 1348883, + "url": "https://arxiv.org/pdf/2211.15369v2" + }, + "pdf/regression/2211.16111v5.pdf": { + "sha256": "96f10e1db4f8b701b479b1dad25dcbd5c4f8a4205df09d329dafc885c62bef85", + "size": 814026, + "url": "https://arxiv.org/pdf/2211.16111v5" + }, + "pdf/regression/2212.00276v2.pdf": { + "sha256": "f69cf433c2422490c166b1e37fb15afbdf46613a55232f7482afd559e7258c42", + "size": 990241, + "url": "https://arxiv.org/pdf/2212.00276v2" + }, + "pdf/regression/2212.14866v3.pdf": { + "sha256": "90b5f21e2308c08f4abc0d4b7184287bc6cc865c7edff528159d7c678161c509", + "size": 1363588, + "url": "https://arxiv.org/pdf/2212.14866v3" + }, + "pdf/regression/2301.00300v1.pdf": { + "sha256": "085e6be60dd6ad73bb21b85b66083e904306468fee841dab978b3bd6094277e6", + "size": 347395, + "url": "https://arxiv.org/pdf/2301.00300v1" + }, + "pdf/regression/2301.00780v2.pdf": { + "sha256": "5bec5064a4627bd56b2c9481fc8ff94d8b954a77d76f73667243920c3030ab8a", + "size": 1616234, + "url": "https://arxiv.org/pdf/2301.00780v2" + }, + "pdf/regression/2302.03092v3.pdf": { + "sha256": "78e15708add3b1553786dd255480ee86ad74e4b4cea8e9d91564eb0ac2f28dba", + "size": 314038, + "url": "https://arxiv.org/pdf/2302.03092v3" + }, + "pdf/regression/2302.05042v1.pdf": { + "sha256": "e5bb3b069dc37fd7515acce76f2526d640c28e0f571a57009043574eb2c0b519", + "size": 659061, + "url": "https://arxiv.org/pdf/2302.05042v1" + }, + "pdf/regression/2302.12160v3.pdf": { + "sha256": "a71b307d37ccf64a688f21007a3442601117437bd8cc768021de1259ffac1aac", + "size": 2051736, + "url": "https://arxiv.org/pdf/2302.12160v3" + }, + "pdf/regression/2302.13842v2.pdf": { + "sha256": "55c7a6ea7836a62667f7c956a03f6abeb276484b23c5d9e3e52e4d4a86600bdf", + "size": 249536, + "url": "https://arxiv.org/pdf/2302.13842v2" + }, + "pdf/regression/2303.14580v1.pdf": { + "sha256": "9c74a854700f4ca8646592d8bec574a574d09d99d6e5c041bc7ba871a8f472c6", + "size": 629893, + "url": "https://arxiv.org/pdf/2303.14580v1" + }, + "pdf/regression/2303.16063v1.pdf": { + "sha256": "016dfe222eac26934145562ce5322187b18773c1f975560af3b4a5cce74537ad", + "size": 823580, + "url": "https://arxiv.org/pdf/2303.16063v1" + }, + "pdf/regression/2303.18112v4.pdf": { + "sha256": "95d0c36754b8a9c0b87bc8b0222869581f5f448037539b9f8e39a82c97c4d50e", + "size": 1452731, + "url": "https://arxiv.org/pdf/2303.18112v4" + }, + "pdf/regression/2304.00307v1.pdf": { + "sha256": "a2e8622f8c89ca5673351a3e9d8887ed771d02ac5ce3c8581c677577c72c5b51", + "size": 216385, + "url": "https://arxiv.org/pdf/2304.00307v1" + }, + "pdf/regression/2304.03032v1.pdf": { + "sha256": "05b410ca977552f9b115dad31ad38f7d510131e7dd29348340642b629831ade3", + "size": 288787, + "url": "https://arxiv.org/pdf/2304.03032v1" + }, + "pdf/regression/2304.13392v2.pdf": { + "sha256": "e325dc7f05f0306b5a7f7abd3e8b22c78e795c543cdcb6a418ca95a0c167b8ce", + "size": 298910, + "url": "https://arxiv.org/pdf/2304.13392v2" + }, + "pdf/regression/2305.15049v1.pdf": { + "sha256": "4f03e5cb5152af4797c05b8464bb27dc3493c172e6987308ee56c5475291c9ac", + "size": 344029, + "url": "https://arxiv.org/pdf/2305.15049v1" + }, + "pdf/regression/2305.18266v2.pdf": { + "sha256": "e10af7a611dac92220a6ece84e7134cbbc52ea92953409f48f2289b5bf83af31", + "size": 1136325, + "url": "https://arxiv.org/pdf/2305.18266v2" + }, + "pdf/regression/2305.18836v2.pdf": { + "sha256": "77e3d959eedb6aca5f469279700c2878401b5982dd94fde708e9906008fa0b2e", + "size": 574614, + "url": "https://arxiv.org/pdf/2305.18836v2" + }, + "pdf/regression/2306.07616v2.pdf": { + "sha256": "884cccaf01bbd74d56333e6426df7ffd7311f012dfe164e62f0fc47d20688eec", + "size": 393573, + "url": "https://arxiv.org/pdf/2306.07616v2" + }, + "pdf/regression/2306.07757v3.pdf": { + "sha256": "7125acc8d34aa3d92e04fd8f45b5f93f14e15c7cde7166eddfab72c27d63f1fa", + "size": 1021404, + "url": "https://arxiv.org/pdf/2306.07757v3" + }, + "pdf/regression/2308.10232v3.pdf": { + "sha256": "2c431256f0f7c0eb3e8cc0bf17618df525455b556b949e78829afd06e5a9cfae", + "size": 579903, + "url": "https://arxiv.org/pdf/2308.10232v3" + }, + "pdf/regression/2308.11559v2.pdf": { + "sha256": "1c748a22319a0840579db9af33e02fb520a3e8e9cd0a322d795fcadf8e6f692a", + "size": 349865, + "url": "https://arxiv.org/pdf/2308.11559v2" + }, + "pdf/regression/2308.14210v1.pdf": { + "sha256": "ea8f3c8c7ba136eae3eec8d4b99cce6779e8fc345aa5f8ab38e0fa69dcb58fd4", + "size": 553253, + "url": "https://arxiv.org/pdf/2308.14210v1" + }, + "pdf/regression/2309.00660v1.pdf": { + "sha256": "beb4937afdc35719bfecc269bbb2d0b86a099a873b38c2b674d88fad11948d3a", + "size": 14322235, + "url": "https://arxiv.org/pdf/2309.00660v1" + }, + "pdf/regression/2309.00945v1.pdf": { + "sha256": "43afda2be2e2238b1845d05372c293433afce2cbafd55d0fa8b2a07b8388cc68", + "size": 1256319, + "url": "https://arxiv.org/pdf/2309.00945v1" + }, + "pdf/regression/2310.07601v2.pdf": { + "sha256": "311cf148866cb08d77bb94f1c7bb4f4e10fb323bbeef9ff82ca7c86b0551f92e", + "size": 431664, + "url": "https://arxiv.org/pdf/2310.07601v2" + }, + "pdf/regression/2310.08783v2.pdf": { + "sha256": "0d7d5a510a3b0306bc999af47a3c94bf8af103f6835c56843c0649913fd55cff", + "size": 573890, + "url": "https://arxiv.org/pdf/2310.08783v2" + }, + "pdf/regression/2311.05193v1.pdf": { + "sha256": "478a7106f36b299f2b3a307cdcc835ba623681899f344d6cf2da1735a66b9e2c", + "size": 327393, + "url": "https://arxiv.org/pdf/2311.05193v1" + }, + "pdf/regression/2311.05711v1.pdf": { + "sha256": "2d74516e8652dce3976e5af50f707a2fb83cf2b5090510b58868274aa47c7d98", + "size": 1535193, + "url": "https://arxiv.org/pdf/2311.05711v1" + }, + "pdf/regression/2311.13330v1.pdf": { + "sha256": "022b36f5223f5c341886a7a927fbb6a433ddc96acc59d04de5ffe7452ab0e537", + "size": 2881817, + "url": "https://arxiv.org/pdf/2311.13330v1" + }, + "pdf/regression/2311.14660v1.pdf": { + "sha256": "fad08dd2654b1bf2972976c5153672bc6d026f609a8e34e1a2a42ae7a4f50f10", + "size": 397241, + "url": "https://arxiv.org/pdf/2311.14660v1" + }, + "pdf/regression/2312.02129v2.pdf": { + "sha256": "1fa5d1ea0aad701d9079ae1799c101d6771dd03f02fb7d2ea1d89e82d160e275", + "size": 216343, + "url": "https://arxiv.org/pdf/2312.02129v2" + }, + "pdf/regression/2312.06541v2.pdf": { + "sha256": "afdcd0b50598ac1dad82c4cd1f6db3e6fc3841adcb57a6473790eb1c9591adae", + "size": 414684, + "url": "https://arxiv.org/pdf/2312.06541v2" + }, + "pdf/regression/2312.07995v1.pdf": { + "sha256": "478a4559e9360c4a6fdfd77f05e0ff945bdd6b5f06d6e95dbd03280cf279a590", + "size": 205265, + "url": "https://arxiv.org/pdf/2312.07995v1" + }, + "pdf/regression/2312.12348v3.pdf": { + "sha256": "990ec085b7ba409e193e12159596e39e9ca708acd0130d1d359bf3e98f65ee22", + "size": 1115095, + "url": "https://arxiv.org/pdf/2312.12348v3" + }, + "pdf/regression/2401.01797v1.pdf": { + "sha256": "95356a74bb265dcd72c9c233aa33167c160f5cb40681e8e48892c05cac94e643", + "size": 1011094, + "url": "https://arxiv.org/pdf/2401.01797v1" + }, + "pdf/regression/2401.15701v2.pdf": { + "sha256": "7359bc4608954517abf12fa37a03e7fd755fa1817520e7abc41eb07509222f16", + "size": 579368, + "url": "https://arxiv.org/pdf/2401.15701v2" + }, + "pdf/regression/2403.00928v2.pdf": { + "sha256": "44a6687e6d4a1695de2869b2e8be8b7f3365774e56a66dd92f8b797220eb6619", + "size": 568132, + "url": "https://arxiv.org/pdf/2403.00928v2" + }, + "pdf/regression/2403.02032v2.pdf": { + "sha256": "2ff8f9a835dd57e77c2db15a86a97d86f6efad220a8b39eb0a3ec95b9cf694ba", + "size": 492133, + "url": "https://arxiv.org/pdf/2403.02032v2" + }, + "pdf/regression/2403.03464v2.pdf": { + "sha256": "6fdc5545ed5a35c0384d3f9da064bd1841f1997502a3f66f28f837fa80681de6", + "size": 336656, + "url": "https://arxiv.org/pdf/2403.03464v2" + }, + "pdf/regression/2403.13977v1.pdf": { + "sha256": "4739b3e2b34eb69c0abf3b5cf6edef2185808a5821ad48ba57cdaf4185e445cf", + "size": 357287, + "url": "https://arxiv.org/pdf/2403.13977v1" + }, + "pdf/regression/2403.14920v3.pdf": { + "sha256": "095c4f5998c055d123e071112ebe919ffbd68946783a2214855ce3463d9058de", + "size": 933752, + "url": "https://arxiv.org/pdf/2403.14920v3" + }, + "pdf/regression/2404.13644v1.pdf": { + "sha256": "aa441de49a5a168a512ee59477852cbad2814aab361a415f979a8f976a7eb996", + "size": 309295, + "url": "https://arxiv.org/pdf/2404.13644v1" + }, + "pdf/regression/2405.11673v2.pdf": { + "sha256": "c52e9a0bc28a79fc4e16bd4f66462dc06e30e54f255512d66e4b997973af169d", + "size": 2380946, + "url": "https://arxiv.org/pdf/2405.11673v2" + }, + "pdf/regression/2405.19306v4.pdf": { + "sha256": "f7cd7e5f92534a372dd8eddbfbb9efff5f9b04b4b56ceaa9859e141f56f25d7c", + "size": 1066499, + "url": "https://arxiv.org/pdf/2405.19306v4" + }, + "pdf/regression/2406.00206v2.pdf": { + "sha256": "ad0ea43da3b75db9e5f48bbd62b13c1410a8462a22cda18f40056dd9e62c09a8", + "size": 1047162, + "url": "https://arxiv.org/pdf/2406.00206v2" + }, + "pdf/regression/2406.01828v3.pdf": { + "sha256": "439d673af1b2c1510770674327432c68657a7e09f987d28874b4c6c9ea960945", + "size": 1400005, + "url": "https://arxiv.org/pdf/2406.01828v3" + }, + "pdf/regression/2406.06047v2.pdf": { + "sha256": "d945ef1a1dc4989a39951f68324a07880eeaf7541dd0403f4966add1fa74e56f", + "size": 353671, + "url": "https://arxiv.org/pdf/2406.06047v2" + }, + "pdf/regression/2406.07206v2.pdf": { + "sha256": "027223bb05efa4c1926a88a8c1b3bb9c67ce60791050f47b3d304c3cd661d512", + "size": 653158, + "url": "https://arxiv.org/pdf/2406.07206v2" + }, + "pdf/regression/2406.09909v1.pdf": { + "sha256": "e8635faff375929f823b49a9787a6fe35ddaf5f47d77a5602ee3ab1d99643036", + "size": 728648, + "url": "https://arxiv.org/pdf/2406.09909v1" + }, + "pdf/regression/2406.17344v1.pdf": { + "sha256": "5c3cb6ad1de61566b2c899148afb95be049a1b819e9cc17fbf9577e59fd84cf1", + "size": 271773, + "url": "https://arxiv.org/pdf/2406.17344v1" + }, + "pdf/regression/2406.17411v1.pdf": { + "sha256": "e36164e2cc61f2f0d28408069f2e9e7b65d61699e1210802f6c131434d508d97", + "size": 142789, + "url": "https://arxiv.org/pdf/2406.17411v1" + }, + "pdf/regression/2407.10594v1.pdf": { + "sha256": "e5c0c2319b37b27b9c87aa9317d0b5d9eb06f032b6c54684fac48116b96d46af", + "size": 504903, + "url": "https://arxiv.org/pdf/2407.10594v1" + }, + "pdf/regression/2407.19233v3.pdf": { + "sha256": "b7ab5d5bf91b3ce10eb9bbe330ad4577c5f4272b7f00962bc0a01185d14f1ace", + "size": 642758, + "url": "https://arxiv.org/pdf/2407.19233v3" + }, + "pdf/regression/2407.21555v1.pdf": { + "sha256": "656f107069d2497f2e38761556bff08d8109da71c8370e7e22a6aec733e18f2b", + "size": 271150, + "url": "https://arxiv.org/pdf/2407.21555v1" + }, + "pdf/regression/2408.05643v1.pdf": { + "sha256": "4668afe8f494696e040e991b0e407dba42ad77e0509494510a22d1f0b82dc893", + "size": 3014204, + "url": "https://arxiv.org/pdf/2408.05643v1" + }, + "pdf/regression/2409.06905v1.pdf": { + "sha256": "dd4ce2423bd067b477bd6f3576ef2370ef608fb21a2e9687ec630edd6453df6e", + "size": 1623954, + "url": "https://arxiv.org/pdf/2409.06905v1" + }, + "pdf/regression/2409.14054v1.pdf": { + "sha256": "05ed16f2950a2f3e4933032e1c19690fd8815696fcfab2bfcbac632106710579", + "size": 412124, + "url": "https://arxiv.org/pdf/2409.14054v1" + }, + "pdf/regression/2409.17218v2.pdf": { + "sha256": "879a2a31d040d0cb250598f4d24d74431b460f1ab32f26d278f2bf9c38e26c32", + "size": 12460868, + "url": "https://arxiv.org/pdf/2409.17218v2" + }, + "pdf/regression/2410.03495v1.pdf": { + "sha256": "75145afaad7f59a32f42d2485ec81f7327c89c8c496c3d8b9b213d5077a8eef4", + "size": 662362, + "url": "https://arxiv.org/pdf/2410.03495v1" + }, + "pdf/regression/2410.09261v10.pdf": { + "sha256": "42dc4b9334d1958ed1489b8eb37c2f730c72bd6a311af5aa9d6d5691c50c34c2", + "size": 483313, + "url": "https://arxiv.org/pdf/2410.09261v10" + }, + "pdf/regression/2411.03261v1.pdf": { + "sha256": "b805a0bcf548e0f0f8b2c83e2e15b43b29741b21561697058fe22c62a12331ae", + "size": 306093, + "url": "https://arxiv.org/pdf/2411.03261v1" + }, + "pdf/regression/2411.14334v3.pdf": { + "sha256": "6be71e60b95f4f21c95ddf028517065e01dee11a90a446c5f6cceea2ca0e4a44", + "size": 491748, + "url": "https://arxiv.org/pdf/2411.14334v3" + }, + "pdf/regression/2411.15406v1.pdf": { + "sha256": "745ceab810ae4ed79b45372d8fb85d1272a17b148b749d17aec8db2ddc4ef8f7", + "size": 281169, + "url": "https://arxiv.org/pdf/2411.15406v1" + }, + "pdf/regression/2411.16013v2.pdf": { + "sha256": "0519f6f94ad4355ba4d0aa9f30364140862f327045581128e056b4a07708b14f", + "size": 242713, + "url": "https://arxiv.org/pdf/2411.16013v2" + }, + "pdf/regression/2411.17036v6.pdf": { + "sha256": "7f9fae2efc806d908ae1dadc28b8e27722784e30a16d98bccabe21fa3425e46b", + "size": 691761, + "url": "https://arxiv.org/pdf/2411.17036v6" + }, + "pdf/regression/2412.09790v2.pdf": { + "sha256": "c219ad4de779ce0746da69f277da6d74e3fde9a6842058aa70c85b4bbac85edf", + "size": 262264, + "url": "https://arxiv.org/pdf/2412.09790v2" + }, + "pdf/regression/2412.16404v1.pdf": { + "sha256": "6a62c8d13918c4458deb1cc5d96764543a65177a3eeb6710ee35dd480f9fce8a", + "size": 384305, + "url": "https://arxiv.org/pdf/2412.16404v1" + }, + "pdf/regression/2412.16714v1.pdf": { + "sha256": "1e4a0f54fa60fbcbd17a75b25fa5dac35835fae094db0a4e2f92ebe243afbae6", + "size": 636196, + "url": "https://arxiv.org/pdf/2412.16714v1" + }, + "pdf/regression/2412.19383v4.pdf": { + "sha256": "afb52a5640440e8e3d13068f693f6d1b51461fc7bbc9e38c1ca62f6859102614", + "size": 705859, + "url": "https://arxiv.org/pdf/2412.19383v4" + }, + "pdf/regression/2501.00344v2.pdf": { + "sha256": "f13a2577ec0af57fdb6d94ec39c705b2b96c56783e5f6ba84a73bd758d583b07", + "size": 888678, + "url": "https://arxiv.org/pdf/2501.00344v2" + }, + "pdf/regression/2501.04027v3.pdf": { + "sha256": "04835b46acd7d29881eaa9c000ac694935340cc659a27416215326fb1f5e519e", + "size": 1124893, + "url": "https://arxiv.org/pdf/2501.04027v3" + }, + "pdf/regression/2501.07506v2.pdf": { + "sha256": "b25f50963a16534543355306f289b88a033b1a76b733afa48d2b61361d26e46d", + "size": 2102149, + "url": "https://arxiv.org/pdf/2501.07506v2" + }, + "pdf/regression/2502.12881v1.pdf": { + "sha256": "5ba5b3652b9ee061a10c669ce1fd4dc59805882708ebdb1470c016b7b03caa85", + "size": 456397, + "url": "https://arxiv.org/pdf/2502.12881v1" + }, + "pdf/regression/2502.14946v2.pdf": { + "sha256": "e412a89e259a74d626a6320f7cc623a2281a8624d5d25ab556b701372811b406", + "size": 1147959, + "url": "https://arxiv.org/pdf/2502.14946v2" + }, + "pdf/regression/2503.03060v2.pdf": { + "sha256": "0fcc7936d76910ca77460becaad114b40a9ba846e7fc7d427e1adb325df77c5b", + "size": 795800, + "url": "https://arxiv.org/pdf/2503.03060v2" + }, + "pdf/regression/2503.18222v1.pdf": { + "sha256": "36921b0c542b848553c8b30b965503c27ffb189d2d169d59ecd0253f50de1c2a", + "size": 363692, + "url": "https://arxiv.org/pdf/2503.18222v1" + }, + "pdf/regression/2504.04885v2.pdf": { + "sha256": "72176e6847f7733984aef0ab34825818f24937a56453a430d59df4fb442a9c21", + "size": 703362, + "url": "https://arxiv.org/pdf/2504.04885v2" + }, + "pdf/regression/2504.07944v2.pdf": { + "sha256": "560a12e5af2abb9b025d0f2afc8692357c80f0d98d8bb20ea0461596ee139e7d", + "size": 1449111, + "url": "https://arxiv.org/pdf/2504.07944v2" + }, + "pdf/regression/2504.09917v2.pdf": { + "sha256": "9dc770cab0299f52532ea1954b84206139cc36424086c934cb1d036749304912", + "size": 406301, + "url": "https://arxiv.org/pdf/2504.09917v2" + }, + "pdf/regression/2504.10718v1.pdf": { + "sha256": "802f93c16c9fd7690ffcd9c249fe1ccce016b900356817e0c1ceda59415d4aa6", + "size": 606787, + "url": "https://arxiv.org/pdf/2504.10718v1" + }, + "pdf/regression/2504.14304v1.pdf": { + "sha256": "85806ac9af7fef0928fa164c1af8724b87ef539dd934a7a928f98fcba330035b", + "size": 1212212, + "url": "https://arxiv.org/pdf/2504.14304v1" + }, + "pdf/regression/2505.11337v1.pdf": { + "sha256": "7dc6733a1b3f34c6d664d42300c7d16eda7dce16c5fb9c10e42f736c0392aff8", + "size": 665767, + "url": "https://arxiv.org/pdf/2505.11337v1" + }, + "pdf/regression/2506.06468v2.pdf": { + "sha256": "49a17798b9e20aad49c0eff9c2ada6bf16bd4968aecbac7e2054a32f8cef2f3a", + "size": 663824, + "url": "https://arxiv.org/pdf/2506.06468v2" + }, + "pdf/regression/2507.07170v4.pdf": { + "sha256": "606af221111af4400c86393a3d794a4408b6aa83974d21ebd4c7b000521475f9", + "size": 827591, + "url": "https://arxiv.org/pdf/2507.07170v4" + }, + "pdf/regression/2507.10193v1.pdf": { + "sha256": "d9d11a658a9c23d442450f6e367f4dc925bb639df95230ba45439ae4108e0222", + "size": 1641598, + "url": "https://arxiv.org/pdf/2507.10193v1" + }, + "pdf/regression/2507.23123v2.pdf": { + "sha256": "6d2adda7c2a9b79a6b4537d94ff2b23d8ac99905f8d7e4b0ef93e001e9274a39", + "size": 739594, + "url": "https://arxiv.org/pdf/2507.23123v2" + }, + "pdf/regression/2508.07776v1.pdf": { + "sha256": "296448fe2c86fb9283d1d1c7ca83fac20e1bb642156eccd2800f3d21fbb8b343", + "size": 1102604, + "url": "https://arxiv.org/pdf/2508.07776v1" + }, + "pdf/regression/2508.10087v2.pdf": { + "sha256": "3befd1dd540b721d6ca0c74d320aa84f9570a84dbf516937bd7a7d96b81a452a", + "size": 2553481, + "url": "https://arxiv.org/pdf/2508.10087v2" + }, + "pdf/regression/2509.02490v2.pdf": { + "sha256": "0fa2f2bc4f056bec60907c027a385e79beb5517202c8a208858757231dd03d6d", + "size": 231006, + "url": "https://arxiv.org/pdf/2509.02490v2" + }, + "pdf/regression/2509.24785v1.pdf": { + "sha256": "0445bad17c67a994ca8b00bcdabe352564ddcbdfb20069f17babd194cd1df1c9", + "size": 1399689, + "url": "https://arxiv.org/pdf/2509.24785v1" + }, + "pdf/regression/2509.24787v1.pdf": { + "sha256": "aaf84d2b4fd80387702171fb1569ac39d4f27307535557e01abc059a7e83c907", + "size": 5195569, + "url": "https://arxiv.org/pdf/2509.24787v1" + }, + "pdf/regression/2510.01507v1.pdf": { + "sha256": "c8c5f7c7e8d2a719860f53a4e223a4a85f3bd28e7dbda49f9f56157ea203dd2b", + "size": 599097, + "url": "https://arxiv.org/pdf/2510.01507v1" + }, + "pdf/regression/2510.15159v4.pdf": { + "sha256": "dfa05c08912e44bfd7e0642edf2ae0cdc2107e7344ea8023b4636859417cb2f3", + "size": 834724, + "url": "https://arxiv.org/pdf/2510.15159v4" + }, + "pdf/regression/2510.22120v2.pdf": { + "sha256": "a48f2e6b989c539ba4319ba005414314dd4ae86da3229c8585dbc10aab35a680", + "size": 406856, + "url": "https://arxiv.org/pdf/2510.22120v2" + }, + "pdf/regression/2510.25326v1.pdf": { + "sha256": "d0b7d66c78ca8204c4edba0fe586112d6198588073603138d45e1ec7ab66c61d", + "size": 808882, + "url": "https://arxiv.org/pdf/2510.25326v1" + }, + "pdf/regression/2511.04380v1.pdf": { + "sha256": "205d1c67f2f4facda7178c78cd340f58210e01d837c02166dea994ad9d55cb35", + "size": 1350125, + "url": "https://arxiv.org/pdf/2511.04380v1" + }, + "pdf/regression/2511.07120v2.pdf": { + "sha256": "0d4c0e948a6157c2fea77ab1cfcf898e1d159daadc7eff867223a027a34240c7", + "size": 611865, + "url": "https://arxiv.org/pdf/2511.07120v2" + }, + "pdf/regression/2511.18275v2.pdf": { + "sha256": "775e9bfad358e51b49f6105689dc020d20190bb8c6262ad171167e2e337959b5", + "size": 943719, + "url": "https://arxiv.org/pdf/2511.18275v2" + }, + "pdf/regression/2511.21950v2.pdf": { + "sha256": "e90ce0fd3bea6f95ade84024fc3054027d73072e1a0d59a4e43cb88f0b4f4206", + "size": 986944, + "url": "https://arxiv.org/pdf/2511.21950v2" + }, + "pdf/regression/2512.21906v2.pdf": { + "sha256": "c6232655f03f52f65aed99ff45e788f96e28f37da6299a7f581cb57cb1ddc67f", + "size": 851686, + "url": "https://arxiv.org/pdf/2512.21906v2" + }, + "pdf/regression/2512.22719v1.pdf": { + "sha256": "97b3c852207385709255102bc2d269f46068c313f82a19fc00e2d19d32856513", + "size": 780699, + "url": "https://arxiv.org/pdf/2512.22719v1" + }, + "pdf/regression/2601.02755v1.pdf": { + "sha256": "d8d8d699ae4f6bb0f1f5f15e36ff6dbf5b72879ab9fe370aaaf0d70ded39d076", + "size": 513892, + "url": "https://arxiv.org/pdf/2601.02755v1" + }, + "pdf/regression/2602.04407v1.pdf": { + "sha256": "fc392cf67271f77324a814ad79d907f666161d2dd1d9ab4f58e8e92c076adf6d", + "size": 1254940, + "url": "https://arxiv.org/pdf/2602.04407v1" + }, + "pdf/regression/2602.04422v1.pdf": { + "sha256": "0d825ddecf0e925c7f2b3859a456bed61e505aed7b61676025cabeecef7a8105", + "size": 815573, + "url": "https://arxiv.org/pdf/2602.04422v1" + }, + "pdf/regression/2602.15805v2.pdf": { + "sha256": "0a3af6c60361e51a1f8418eff0477fd33e6bdf4611ddfe63e61f4e555a3dba05", + "size": 376728, + "url": "https://arxiv.org/pdf/2602.15805v2" + }, + "pdf/regression/2602.19593v1.pdf": { + "sha256": "107cbf1ca9cf95875e7f7e3f891b8f4603d850750869e9dae8fa7b033014de35", + "size": 843108, + "url": "https://arxiv.org/pdf/2602.19593v1" + }, + "pdf/regression/2603.04202v2.pdf": { + "sha256": "e944739394d449d19ad527fc8330aabb5b4a1c1fcad5eb851e8fa643388dec4e", + "size": 1846746, + "url": "https://arxiv.org/pdf/2603.04202v2" + }, + "pdf/regression/2603.10761v2.pdf": { + "sha256": "ec2575a4875087c9a247d444daf937a88d129ee9c2f7f731f6674e742ee7d49d", + "size": 680666, + "url": "https://arxiv.org/pdf/2603.10761v2" + }, + "pdf/regression/2603.12241v1.pdf": { + "sha256": "0d6ede4c7ca59cd955a0f9890fefb2d52a682078a9f84320b80491409abddb8c", + "size": 986031, + "url": "https://arxiv.org/pdf/2603.12241v1" + }, + "pdf/regression/2603.23905v1.pdf": { + "sha256": "522df9ea2612d3749efe45cd466d843d1a7e26d2c0b5ccb7c792183e0eb8e855", + "size": 856693, + "url": "https://arxiv.org/pdf/2603.23905v1" + }, + "pdf/regression/2603.24499v1.pdf": { + "sha256": "e6fe1512fe37f0a3c9ac9d52ee651059f85e6f58c4ab460590c0d311cf07dca5", + "size": 485853, + "url": "https://arxiv.org/pdf/2603.24499v1" + }, + "pdf/regression/2603.26507v1.pdf": { + "sha256": "cfa4e6ce6a67cc106cec74b5f2878e7003168917de1ac72931c6f8cf865b80a6", + "size": 675810, + "url": "https://arxiv.org/pdf/2603.26507v1" + }, + "pdf/regression/2604.05910v1.pdf": { + "sha256": "e57f9e0f69e16ddf565fb22d3facb5157957ed306e76ac59ee063d0347e1d447", + "size": 557197, + "url": "https://arxiv.org/pdf/2604.05910v1" + }, + "pdf/regression/2604.07444v1.pdf": { + "sha256": "d4d268c23fbe3986a386e2e6850436beee3c1bc0fc983b3441007eeb85f2b8f2", + "size": 8911223, + "url": "https://arxiv.org/pdf/2604.07444v1" + }, + "pdf/regression/2604.18989v1.pdf": { + "sha256": "3a83467926ebae27ef82363f42d3e34831555c3b22a25e3dbfc29417b6431b10", + "size": 1070634, + "url": "https://arxiv.org/pdf/2604.18989v1" + }, + "pdf/regression/2605.00484v1.pdf": { + "sha256": "28d32aa6e3f19ecd5161e9a758ecc8d5a41ba2690c0af276057f112b6cf5209b", + "size": 1334388, + "url": "https://arxiv.org/pdf/2605.00484v1" + }, + "pdf/regression/2605.05442v2.pdf": { + "sha256": "f6bb9f747868c954006b342e28c7c35b898e6ddb63618358b00e42a0d6213c79", + "size": 1296258, + "url": "https://arxiv.org/pdf/2605.05442v2" + }, + "pdf/regression/2605.07580v1.pdf": { + "sha256": "d269369ea907f3a3c2df64049bd7bdc4aa1a47427de7b285897c0a46a43c10f9", + "size": 590754, + "url": "https://arxiv.org/pdf/2605.07580v1" + }, + "pdf/regression/2605.14616v2.pdf": { + "sha256": "66c61ba0fb814fa9513b1e641aa4b4838144b82fef90d7ef9b205237d5754110", + "size": 995444, + "url": "https://arxiv.org/pdf/2605.14616v2" + }, + "pdf/regression/2605.15742v1.pdf": { + "sha256": "2aa625af0c5a11e2c8ed78cd3bf022486a17fbbb668232aeff797e86cee0cc58", + "size": 714873, + "url": "https://arxiv.org/pdf/2605.15742v1" + }, + "pdf/regression/2605.29036v1.pdf": { + "sha256": "9667525b20c81db17019a4153adb45dada2d21ea1549dd75b7d04a7760643961", + "size": 716741, + "url": "https://arxiv.org/pdf/2605.29036v1" + }, + "pdf/regression/2606.09972v2.pdf": { + "sha256": "44fed662dbc997dbe51e875ce502c6d72fd5bde777369ebc02986e891f52b902", + "size": 417527, + "url": "https://arxiv.org/pdf/2606.09972v2" + }, + "pdf/regression/2606.16948v1.pdf": { + "sha256": "dd4094de127be7c5287855d3db0987e79bc05286319476de752e3966386d2594", + "size": 998842, + "url": "https://arxiv.org/pdf/2606.16948v1" + }, + "pdf/regression/2606.26550v1.pdf": { + "sha256": "a54df750325352f28499558dd7fe359fb49f010cc98369919bd10e8c4e7b64be", + "size": 1005838, + "url": "https://arxiv.org/pdf/2606.26550v1" + }, + "pdf/regression/2606.29512v1.pdf": { + "sha256": "56f1074f82b55a1e808819d99493a2617dad08807edeec93de80926d190091ec", + "size": 425251, + "url": "https://arxiv.org/pdf/2606.29512v1" + }, + "pdf/regression/2607.01995v1.pdf": { + "sha256": "51aa50b0b4e0a9ab381c895340c042b7366d8f4896a3e89d944c33c0be1ad94a", + "size": 907852, + "url": "https://arxiv.org/pdf/2607.01995v1" + }, + "pdf/regression/2607.02233v2.pdf": { + "sha256": "125da1505b1453dfd7708aa342df23679552d953bc9e9ebd09334d729960048a", + "size": 1242542, + "url": "https://arxiv.org/pdf/2607.02233v2" + }, + "pdf/regression/2607.10105v1.pdf": { + "sha256": "c8db5066565289b2b3df1e793511524f274ec2602d5fbef0024e9c938b796bb7", + "size": 664183, + "url": "https://arxiv.org/pdf/2607.10105v1" + }, + "pdf/regression/2607.11608v1.pdf": { + "sha256": "0a25339ff5865cb25a93a7be5f3cb29a78d19518fdddf7690e7e327943358673", + "size": 526029, + "url": "https://arxiv.org/pdf/2607.11608v1" + }, + "pdf/regression/2607.13953v1.pdf": { + "sha256": "f23eb7f756abc22c3ab81ce01a460996e95b6c33a82bff22c16be2d89d444b21", + "size": 287240, + "url": "https://arxiv.org/pdf/2607.13953v1" + }, + "pdf/regression/2607.18375v1.pdf": { + "sha256": "ff76253cdef5a9fc422b6dd692965ec080f46ae65d38773232dedbe1f07be605", + "size": 532330, + "url": "https://arxiv.org/pdf/2607.18375v1" + }, + "pdf/regression/2607.22236v1.pdf": { + "sha256": "ee710334fb9351d2bd2bdd6ad460256daca0935bd8df1d51263a8d0dd3fecd56", + "size": 1048404, + "url": "https://arxiv.org/pdf/2607.22236v1" + }, + "pdf/regression/2607.24705v1.pdf": { + "sha256": "3968a344ce134a61fbb7aca815de36e27704a174209ef492fcc4f021654d8d72", + "size": 930232, + "url": "https://arxiv.org/pdf/2607.24705v1" + }, + "pdf/regression/2608.02543v1.pdf": { + "sha256": "2f7de928f45aedfefeef34f1cf7182fe5e853025048204654cc606dd39fb1731", + "size": 531379, + "url": "https://arxiv.org/pdf/2608.02543v1" + }, + "pdf/regression/2608.02861v1.pdf": { + "sha256": "046c45f9ce4cd0361e2b83ad7d35dbf4f4703c0f17647d4d85cfe7d4ac21fbcd", + "size": 454258, + "url": "https://arxiv.org/pdf/2608.02861v1" + } +}