record parameter checksum
authorAdam Dickmeiss <adam@indexdata.dk>
Tue, 26 Jun 2012 14:37:09 +0000 (16:37 +0200)
committerAdam Dickmeiss <adam@indexdata.dk>
Tue, 26 Jun 2012 14:37:09 +0000 (16:37 +0200)
which is an alternative to offset (which might change between
re-searches). The checksum is returned in the per-record part
in attribute checksum.

74 files changed:
src/http_command.c
src/record.c
src/record.h
test/test_facets_13.res
test/test_facets_16.res
test/test_facets_24.res
test/test_facets_4.res
test/test_facets_9.res
test/test_filter_12.res
test/test_filter_16.res
test/test_filter_17.res
test/test_filter_3.res
test/test_filter_6.res
test/test_filter_9.res
test/test_http.urls
test/test_http_10.res
test/test_http_11.res
test/test_http_18.res
test/test_http_23.res
test/test_http_28.res
test/test_http_32.res
test/test_http_36.res
test/test_http_41.res
test/test_http_42.res
test/test_http_45.res
test/test_http_49.res
test/test_http_5.res
test/test_http_50.res
test/test_http_6.res
test/test_http_60.res
test/test_http_63.res
test/test_http_66.res
test/test_http_72.res
test/test_http_74.res
test/test_http_76.res
test/test_http_79.res
test/test_http_8.res
test/test_http_81.res
test/test_http_9.res
test/test_icu_4.res
test/test_icu_5.res
test/test_icu_6.res
test/test_icu_7.res
test/test_icu_9.res
test/test_limit_limitmap_15.res
test/test_limit_limitmap_18.res
test/test_limit_limitmap_21.res
test/test_limit_limitmap_24.res
test/test_limit_limitmap_26.res
test/test_limit_limitmap_28.res
test/test_limit_limitmap_30.res
test/test_limit_limitmap_4.res
test/test_limit_limitmap_9.res
test/test_post_10.res
test/test_post_8.res
test/test_post_9.res
test/test_solr_13.res
test/test_solr_18.res
test/test_solr_22.res
test/test_solr_25.res
test/test_solr_29.res
test/test_solr_4.res
test/test_solr_9.res
test/test_termlist_block_9.res
test/test_turbomarcxml_4.res
test/test_turbomarcxml_7.res
test/test_url_10.res
test/test_url_17.res
test/test_url_18.res
test/test_url_3.res
test/test_url_6.res
test/test_url_7.res
test/test_url_8.res
test/test_url_9.res

index c92c7c3..122bef5 100644 (file)
@@ -875,10 +875,14 @@ static void write_subrecord(struct record *r, WRBUF w,
 
     wrbuf_puts(w, "<location id=\"");
     wrbuf_xmlputs(w, client_get_id(r->client));
-    wrbuf_puts(w, "\" ");
+    wrbuf_puts(w, "\"\n");
 
-    wrbuf_puts(w, "name=\"");
+    wrbuf_puts(w, " name=\"");
     wrbuf_xmlputs(w,  *name ? name : "Unknown");
+    wrbuf_puts(w, "\" ");
+
+    wrbuf_puts(w, "checksum=\"");
+    wrbuf_printf(w,  "%u", r->checksum);
     wrbuf_puts(w, "\">");
 
     write_metadata(w, service, r->metadata, show_details);
@@ -944,6 +948,7 @@ static void show_record(struct http_channel *c, struct http_session *s)
     const char *idstr = http_argbyname(rq, "id");
     const char *offsetstr = http_argbyname(rq, "offset");
     const char *binarystr = http_argbyname(rq, "binary");
+    const char *checksumstr = http_argbyname(rq, "checksum");
     
     if (!s)
         return;
@@ -967,9 +972,8 @@ static void show_record(struct http_channel *c, struct http_session *s)
         }
         return;
     }
-    if (offsetstr)
+    if (offsetstr || checksumstr)
     {
-        int offset = atoi(offsetstr);
         const char *syntax = http_argbyname(rq, "syntax");
         const char *esn = http_argbyname(rq, "esn");
         int i;
@@ -980,8 +984,19 @@ static void show_record(struct http_channel *c, struct http_session *s)
         if (binarystr && *binarystr != '0')
             binary = 1;
 
-        for (i = 0; i < offset && r; r = r->next, i++)
-            ;
+        if (checksumstr)
+        {
+            long v = atol(checksumstr);
+            for (i = 0; r; r = r->next)
+                if (v == r->checksum)
+                    break;
+        }
+        else
+        {
+            int offset = atoi(offsetstr);
+            for (i = 0; i < offset && r; r = r->next, i++)
+                ;
+        }
         if (!r)
         {
             error(rs, PAZPAR2_RECORD_FAIL, "no record at offset given");
index a052a32..7db84e3 100644 (file)
@@ -27,6 +27,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 #endif
 
 #include "pazpar2_config.h"
+#include "client.h"
 #include "record.h"
 
 union data_types * data_types_assign(NMEM nmem, 
@@ -55,6 +56,8 @@ struct record * record_create(NMEM nmem, int num_metadata, int num_sortkeys,
 {
     struct record * record = 0;
     int i = 0;
+    const char *name = client_get_id(client);
+    unsigned h = position;
     
     // assert(nmem);
 
@@ -76,6 +79,11 @@ struct record * record_create(NMEM nmem, int num_metadata, int num_sortkeys,
         record->sortkeys[i] = 0;
 
     record->position = position;
+
+    for (i = 0; name[i]; i++)
+        h = h * 65509 + ((unsigned char *) name)[i];
+
+    record->checksum = h;
     
     return record;
 }
index 2b2075f..66df1af 100644 (file)
@@ -57,13 +57,15 @@ union data_types * data_types_assign(NMEM nmem,
 struct record {
     struct client *client;
     // Array mirrors list of metadata fields in config
-    struct record_metadata **metadata; 
+    struct record_metadata **metadata;
     // Array mirrors list of sortkey fields in config
     union data_types **sortkeys;
     // Next in cluster of merged records       
     struct record *next;  
     // client result set position;
     int position;
+    // checksum
+    unsigned checksum;
 };
 
 
index a399233..81bb1ea 100644 (file)
@@ -8,10 +8,12 @@
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="localhost:9999/db1" name="db1">
+<md-author>Jack Collins</md-author><location id="localhost:9999/db1"
+ name="db1" checksum="4195168235">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
-<location id="localhost:9999/db1" name="db1">
+<location id="localhost:9999/db1"
+ name="db1" checksum="75373906">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
 <count>2</count>
index a6464e4..b42b13e 100644 (file)
@@ -8,10 +8,12 @@
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="localhost:9999/db1" name="db1">
+<md-author>Jack Collins</md-author><location id="localhost:9999/db1"
+ name="db1" checksum="4195168235">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
-<location id="localhost:9999/db1" name="db1">
+<location id="localhost:9999/db1"
+ name="db1" checksum="75373906">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
 <count>2</count>
index 15d66ce..2048b77 100644 (file)
@@ -8,10 +8,12 @@
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="localhost:9999/db1" name="db1">
+<md-author>Jack Collins</md-author><location id="localhost:9999/db1"
+ name="db1" checksum="4195168235">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
-<location id="localhost:9999/db1" name="db1">
+<location id="localhost:9999/db1"
+ name="db1" checksum="75373906">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
 <count>2</count>
@@ -22,7 +24,8 @@
 
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="localhost:9999/db1" name="db1">
+<md-date>1977</md-date><location id="localhost:9999/db1"
+ name="db1" checksum="3319303400">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date></location>
@@ -33,7 +36,8 @@
 
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="localhost:9999/db1" name="db1">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="localhost:9999/db1"
+ name="db1" checksum="3844822301">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-description>Hebrew and Greek; introductions in English</md-description>
@@ -47,7 +51,8 @@
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
 <md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="localhost:9999/db1" name="db1">
+<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="localhost:9999/db1"
+ name="db1" checksum="2968957466">
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
@@ -62,7 +67,8 @@
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
 <md-author>Mairs, John W</md-author>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="localhost:9999/db1" name="db1">
+<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="localhost:9999/db1"
+ name="db1" checksum="3669649334">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
@@ -75,7 +81,8 @@
 
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date><location id="localhost:9999/db1" name="db1">
+<md-date>1974</md-date><location id="localhost:9999/db1"
+ name="db1" checksum="4019995268">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date></location>
@@ -86,7 +93,8 @@
 
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="localhost:9999/db1" name="db1">
+<md-author>Wood, Helen M</md-author><location id="localhost:9999/db1"
+ name="db1" checksum="3144130433">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author></location>
 
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date><location id="localhost:9999/db1" name="db1">
+<md-date>1977</md-date><location id="localhost:9999/db1"
+ name="db1" checksum="3494476367">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date></location>
index dbe5c12..0e88890 100644 (file)
@@ -8,10 +8,12 @@
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="localhost:9999/db1" name="db1">
+<md-author>Jack Collins</md-author><location id="localhost:9999/db1"
+ name="db1" checksum="4195168235">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
-<location id="localhost:9999/db1" name="db1">
+<location id="localhost:9999/db1"
+ name="db1" checksum="75373906">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
 <count>2</count>
@@ -22,7 +24,8 @@
 
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="localhost:9999/db1" name="db1">
+<md-date>1977</md-date><location id="localhost:9999/db1"
+ name="db1" checksum="3319303400">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date></location>
@@ -33,7 +36,8 @@
 
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="localhost:9999/db1" name="db1">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="localhost:9999/db1"
+ name="db1" checksum="3844822301">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-description>Hebrew and Greek; introductions in English</md-description>
@@ -47,7 +51,8 @@
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
 <md-author>Mairs, John W</md-author>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="localhost:9999/db1" name="db1">
+<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="localhost:9999/db1"
+ name="db1" checksum="3669649334">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
@@ -60,7 +65,8 @@
 
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date><location id="localhost:9999/db1" name="db1">
+<md-date>1974</md-date><location id="localhost:9999/db1"
+ name="db1" checksum="4019995268">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date></location>
@@ -71,7 +77,8 @@
 
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date><location id="localhost:9999/db1" name="db1">
+<md-date>1977</md-date><location id="localhost:9999/db1"
+ name="db1" checksum="3494476367">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date></location>
index 6bbd0d6..4724806 100644 (file)
@@ -8,10 +8,12 @@
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="localhost:9999/db1" name="db1">
+<md-author>Jack Collins</md-author><location id="localhost:9999/db1"
+ name="db1" checksum="4195168235">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
-<location id="localhost:9999/db1" name="db1">
+<location id="localhost:9999/db1"
+ name="db1" checksum="75373906">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
 <count>2</count>
index 63f3e42..0f10df7 100644 (file)
@@ -15,7 +15,8 @@
 <md-subject>Letterman, David</md-subject>
 <md-subject>Leno, Jay</md-subject>
 <md-subject>Talk shows</md-subject>
-<md-description>Includes index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3833666606">
 <md-title>The late shift</md-title>
 <md-title-remainder>Letterman, Leno, and the network battle for the night</md-title-remainder>
 <md-date>1993</md-date>
@@ -34,7 +35,8 @@
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
 <md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2788512872">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
@@ -52,7 +54,8 @@
 <md-subject>Greek literature</md-subject>
 <md-subject>Philosophy, Ancient</md-subject>
 <md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3659474317">
 <md-title>The religious teachers of Greece</md-title>
 <md-date>1972</md-date>
 <md-author>Adam, James</md-author>
@@ -72,7 +75,8 @@
 <md-author>Mairs, John W</md-author>
 <md-subject>Cartography</md-subject>
 <md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2962705161">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
@@ -90,7 +94,8 @@
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
 <md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3136897450">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
 <md-subject>Radioisotope scanning</md-subject>
 <md-subject>Scintillation cameras</md-subject>
 <md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
 <md-date>1987</md-date>
 <md-author>Paulu, Nancy</md-author>
 <md-subject>Dropouts</md-subject>
-<md-description>Distributed to depository libraries in microfiche</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Distributed to depository libraries in microfiche</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="61276177">
 <md-title>Dealing with dropouts</md-title>
 <md-title-remainder>the urban superintendents&apos; call to action</md-title-remainder>
 <md-date>1987</md-date>
 <md-date>1986</md-date>
 <md-subject>Physical education</md-subject>
 <md-subject>Handicapped children</md-subject>
-<md-description>Distributed to depository libraries in microfiche</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Distributed to depository libraries in microfiche</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="235468466">
 <md-title>National dissemination model for the I&apos;M SPECIAL Program of Physical Education for the Handicapped, 1983-1986</md-title>
 <md-title-remainder>final report, I&apos;M SPECIAL network</md-title-remainder>
 <md-date>1986</md-date>
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3485282028">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3311089739">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
 <md-subject>United States</md-subject>
 <md-subject>Educational technology</md-subject>
 <md-subject>Federal aid to education</md-subject>
-<md-description>&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4007858895">
 <md-title>Technology programs that work</md-title>
 <md-date>1984</md-date>
 <md-subject>United States</md-subject>
 <md-subject>School libraries</md-subject>
 <md-subject>Instructional materials centers</md-subject>
 <md-subject>Public libraries</md-subject>
-<md-description>Distributed to depository libraries in microfiche</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Distributed to depository libraries in microfiche</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4182051184">
 <md-title>Check this out</md-title>
 <md-title-remainder>library program models</md-title-remainder>
 <md-date>1987</md-date>
index 1ad5c64..1617afe 100644 (file)
@@ -12,7 +12,8 @@
 <md-date>1971</md-date>
 <md-author>Englund, Carl R</md-author>
 <md-subject>Railroads</md-subject>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="1963026620">
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
@@ -26,7 +27,8 @@
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="localhost:9999/Slow" name="ztest slow">
+<md-subject>Computers</md-subject><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="1216306911">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
@@ -40,7 +42,8 @@
 <md-subject>United States</md-subject>
 <md-subject>Educational technology</md-subject>
 <md-subject>Federal aid to education</md-subject>
-<md-description>&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="93569409">
 <md-title>Technology programs that work</md-title>
 <md-date>1984</md-date>
 <md-subject>United States</md-subject>
@@ -61,7 +64,8 @@
 <md-subject>Greek literature</md-subject>
 <md-subject>Philosophy, Ancient</md-subject>
 <md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="4203185747">
 <md-title>The religious teachers of Greece</md-title>
 <md-date>1972</md-date>
 <md-author>Adam, James</md-author>
@@ -78,7 +82,8 @@
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
 <md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="4017834789">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
@@ -94,7 +99,8 @@
 <md-author>Mairs, John W</md-author>
 <md-subject>Cartography</md-subject>
 <md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="3271115080">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
 <md-date>1971</md-date>
 <md-subject>Universities and colleges</md-subject>
 <md-subject>Community colleges</md-subject>
-<md-description>Cover title</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Cover title</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="2709746329">
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date>
 <md-subject>Universities and colleges</md-subject>
 <md-subject>Letterman, David</md-subject>
 <md-subject>Leno, Jay</md-subject>
 <md-subject>Talk shows</md-subject>
-<md-description>Includes index</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Includes index</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="2895097287">
 <md-title>The late shift</md-title>
 <md-title-remainder>Letterman, Leno, and the network battle for the night</md-title-remainder>
 <md-date>1993</md-date>
 <md-subject>Information networks</md-subject>
 <md-subject>Computer Systems</md-subject>
 <md-subject>Online Systems</md-subject>
-<md-description>Title from caption</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Title from caption</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="1401657869">
 <md-title>Internet world</md-title>
 <md-date>1992</md-date>
 <md-subject>Internet (Computer network)</md-subject>
 <md-date>1993</md-date>
 <md-subject>Internet (Computer network)</md-subject>
 <md-subject>Mailing lists</md-subject>
-<md-description>Includes index</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Includes index</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="3641816996">
 <md-title>Internet</md-title>
 <md-title-remainder>mailing lists</md-title-remainder>
 <md-date>1993</md-date>
 
 <md-title>Info Canada</md-title>
 <md-date>1991</md-date>
-<md-description>Includes: Network world Canada, Sept. 1991-Jan. 1992</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Includes: Network world Canada, Sept. 1991-Jan. 1992</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="2148377578">
 <md-title>Info Canada</md-title>
 <md-date>1991</md-date>
 <md-description tag="500">Title from caption</md-description>
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="localhost:9999/Slow" name="ztest slow">
+<md-author>Jack Collins</md-author><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="1030955953">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
-<location id="localhost:9999/Slow" name="ztest slow">
+<location id="localhost:9999/Slow"
+ name="ztest slow" checksum="284236244">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
 <count>2</count>
 <md-title-remainder>XXIII, XXXVI, LII, CXXI</md-title-remainder>
 <md-date>1980</md-date>
 <md-author>Smith, George Adam</md-author>
-<md-subject>Bible</md-subject><location id="localhost:9999/Slow" name="ztest slow">
+<md-subject>Bible</md-subject><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="654938160">
 <md-title>Four psalms</md-title>
 <md-title-remainder>XXIII, XXXVI, LII, CXXI</md-title-remainder>
 <md-date>1980</md-date>
 <md-subject>FEDLINK (Network)</md-subject>
 <md-subject>Library information networks</md-subject>
 <md-subject>Libraries, Governmental, administrative, etc</md-subject>
-<md-description>Description based on: 1990</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Description based on: 1990</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="1587008827">
 <md-title>FEDLINK services directory for fiscal year</md-title>
 <md-subject>FEDLINK (Network)</md-subject>
 <md-subject>Library information networks</md-subject>
 <md-date>1968</md-date>
 <md-author>Oberst, Bruce</md-author>
 <md-subject>Bible. O.T. Deuteronomy</md-subject>
-<md-description>Bibliography: p. 449-452</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Bibliography: p. 449-452</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="3456466038">
 <md-title>Deuteronomy</md-title>
 <md-date>1968</md-date>
 <md-author>Oberst, Bruce</md-author>
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="localhost:9999/Slow" name="ztest slow">
+<md-subject>Optical pattern recognition</md-subject><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="469587202">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
 <md-subject>Radioisotope scanning</md-subject>
 <md-subject>Scintillation cameras</md-subject>
 <md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="1777675662">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
 <md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="2524395371">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
 <md-subject>School libraries</md-subject>
 <md-subject>Instructional materials centers</md-subject>
 <md-subject>Public libraries</md-subject>
-<md-description>Distributed to depository libraries in microfiche</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Distributed to depository libraries in microfiche</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="840289118">
 <md-title>Check this out</md-title>
 <md-title-remainder>library program models</md-title-remainder>
 <md-date>1987</md-date>
index 677fc5e..0cf01fa 100644 (file)
@@ -12,7 +12,8 @@
 <md-date>1971</md-date>
 <md-author>Englund, Carl R</md-author>
 <md-subject>Railroads</md-subject>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="1963026620">
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
@@ -26,7 +27,8 @@
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="localhost:9999/Slow" name="ztest slow">
+<md-subject>Computers</md-subject><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="1216306911">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
@@ -40,7 +42,8 @@
 <md-subject>United States</md-subject>
 <md-subject>Educational technology</md-subject>
 <md-subject>Federal aid to education</md-subject>
-<md-description>&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="93569409">
 <md-title>Technology programs that work</md-title>
 <md-date>1984</md-date>
 <md-subject>United States</md-subject>
@@ -61,7 +64,8 @@
 <md-subject>Greek literature</md-subject>
 <md-subject>Philosophy, Ancient</md-subject>
 <md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="4203185747">
 <md-title>The religious teachers of Greece</md-title>
 <md-date>1972</md-date>
 <md-author>Adam, James</md-author>
@@ -78,7 +82,8 @@
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
 <md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="4017834789">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
@@ -94,7 +99,8 @@
 <md-author>Mairs, John W</md-author>
 <md-subject>Cartography</md-subject>
 <md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="3271115080">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
 <md-date>1971</md-date>
 <md-subject>Universities and colleges</md-subject>
 <md-subject>Community colleges</md-subject>
-<md-description>Cover title</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Cover title</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="2709746329">
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date>
 <md-subject>Universities and colleges</md-subject>
 <md-date>1986</md-date>
 <md-subject>Physical education</md-subject>
 <md-subject>Handicapped children</md-subject>
-<md-description>Distributed to depository libraries in microfiche</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Distributed to depository libraries in microfiche</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="3080448245">
 <md-title>National dissemination model for the I&apos;M SPECIAL Program of Physical Education for the Handicapped, 1983-1986</md-title>
 <md-title-remainder>final report, I&apos;M SPECIAL network</md-title-remainder>
 <md-date>1986</md-date>
 <md-subject>Letterman, David</md-subject>
 <md-subject>Leno, Jay</md-subject>
 <md-subject>Talk shows</md-subject>
-<md-description>Includes index</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Includes index</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="2895097287">
 <md-title>The late shift</md-title>
 <md-title-remainder>Letterman, Leno, and the network battle for the night</md-title-remainder>
 <md-date>1993</md-date>
 <md-subject>Information networks</md-subject>
 <md-subject>Computer Systems</md-subject>
 <md-subject>Online Systems</md-subject>
-<md-description>Title from caption</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Title from caption</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="1401657869">
 <md-title>Internet world</md-title>
 <md-date>1992</md-date>
 <md-subject>Internet (Computer network)</md-subject>
 <md-date>1993</md-date>
 <md-subject>Internet (Computer network)</md-subject>
 <md-subject>Mailing lists</md-subject>
-<md-description>Includes index</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Includes index</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="3641816996">
 <md-title>Internet</md-title>
 <md-title-remainder>mailing lists</md-title-remainder>
 <md-date>1993</md-date>
 
 <md-title>Info Canada</md-title>
 <md-date>1991</md-date>
-<md-description>Includes: Network world Canada, Sept. 1991-Jan. 1992</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Includes: Network world Canada, Sept. 1991-Jan. 1992</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="2148377578">
 <md-title>Info Canada</md-title>
 <md-date>1991</md-date>
 <md-description tag="500">Title from caption</md-description>
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="localhost:9999/Slow" name="ztest slow">
+<md-author>Jack Collins</md-author><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="1030955953">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
-<location id="localhost:9999/Slow" name="ztest slow">
+<location id="localhost:9999/Slow"
+ name="ztest slow" checksum="284236244">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
 <count>2</count>
 <md-title-remainder>XXIII, XXXVI, LII, CXXI</md-title-remainder>
 <md-date>1980</md-date>
 <md-author>Smith, George Adam</md-author>
-<md-subject>Bible</md-subject><location id="localhost:9999/Slow" name="ztest slow">
+<md-subject>Bible</md-subject><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="654938160">
 <md-title>Four psalms</md-title>
 <md-title-remainder>XXIII, XXXVI, LII, CXXI</md-title-remainder>
 <md-date>1980</md-date>
 <md-subject>FEDLINK (Network)</md-subject>
 <md-subject>Library information networks</md-subject>
 <md-subject>Libraries, Governmental, administrative, etc</md-subject>
-<md-description>Description based on: 1990</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Description based on: 1990</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="1587008827">
 <md-title>FEDLINK services directory for fiscal year</md-title>
 <md-subject>FEDLINK (Network)</md-subject>
 <md-subject>Library information networks</md-subject>
 <md-date>1968</md-date>
 <md-author>Oberst, Bruce</md-author>
 <md-subject>Bible. O.T. Deuteronomy</md-subject>
-<md-description>Bibliography: p. 449-452</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Bibliography: p. 449-452</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="3456466038">
 <md-title>Deuteronomy</md-title>
 <md-date>1968</md-date>
 <md-author>Oberst, Bruce</md-author>
 <md-date>1987</md-date>
 <md-author>Paulu, Nancy</md-author>
 <md-subject>Dropouts</md-subject>
-<md-description>Distributed to depository libraries in microfiche</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Distributed to depository libraries in microfiche</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="2333728536">
 <md-title>Dealing with dropouts</md-title>
 <md-title-remainder>the urban superintendents&apos; call to action</md-title-remainder>
 <md-date>1987</md-date>
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="localhost:9999/Slow" name="ztest slow">
+<md-subject>Optical pattern recognition</md-subject><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="469587202">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
 <md-subject>Radioisotope scanning</md-subject>
 <md-subject>Scintillation cameras</md-subject>
 <md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="1777675662">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
 <md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="2524395371">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
index 8d84ad9..832dc9c 100644 (file)
@@ -15,7 +15,8 @@
 <md-subject>Letterman, David</md-subject>
 <md-subject>Leno, Jay</md-subject>
 <md-subject>Talk shows</md-subject>
-<md-description>Includes index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3833666606">
 <md-title>The late shift</md-title>
 <md-title-remainder>Letterman, Leno, and the network battle for the night</md-title-remainder>
 <md-date>1993</md-date>
@@ -34,7 +35,8 @@
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
 <md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2788512872">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
@@ -52,7 +54,8 @@
 <md-subject>Greek literature</md-subject>
 <md-subject>Philosophy, Ancient</md-subject>
 <md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3659474317">
 <md-title>The religious teachers of Greece</md-title>
 <md-date>1972</md-date>
 <md-author>Adam, James</md-author>
@@ -72,7 +75,8 @@
 <md-author>Mairs, John W</md-author>
 <md-subject>Cartography</md-subject>
 <md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2962705161">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
@@ -90,7 +94,8 @@
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
 <md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3136897450">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
 <md-subject>Radioisotope scanning</md-subject>
 <md-subject>Scintillation cameras</md-subject>
 <md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
 <md-date>1987</md-date>
 <md-author>Paulu, Nancy</md-author>
 <md-subject>Dropouts</md-subject>
-<md-description>Distributed to depository libraries in microfiche</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Distributed to depository libraries in microfiche</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="61276177">
 <md-title>Dealing with dropouts</md-title>
 <md-title-remainder>the urban superintendents&apos; call to action</md-title-remainder>
 <md-date>1987</md-date>
 <md-date>1986</md-date>
 <md-subject>Physical education</md-subject>
 <md-subject>Handicapped children</md-subject>
-<md-description>Distributed to depository libraries in microfiche</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Distributed to depository libraries in microfiche</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="235468466">
 <md-title>National dissemination model for the I&apos;M SPECIAL Program of Physical Education for the Handicapped, 1983-1986</md-title>
 <md-title-remainder>final report, I&apos;M SPECIAL network</md-title-remainder>
 <md-date>1986</md-date>
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3485282028">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3311089739">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
 <md-subject>United States</md-subject>
 <md-subject>Educational technology</md-subject>
 <md-subject>Federal aid to education</md-subject>
-<md-description>&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>&quot;This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education&quot;--T.p. verso</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4007858895">
 <md-title>Technology programs that work</md-title>
 <md-date>1984</md-date>
 <md-subject>United States</md-subject>
 <md-subject>School libraries</md-subject>
 <md-subject>Instructional materials centers</md-subject>
 <md-subject>Public libraries</md-subject>
-<md-description>Distributed to depository libraries in microfiche</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Distributed to depository libraries in microfiche</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4182051184">
 <md-title>Check this out</md-title>
 <md-title-remainder>library program models</md-title-remainder>
 <md-date>1987</md-date>
index 51c8923..07bccc8 100644 (file)
@@ -11,7 +11,8 @@
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
 <md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="2524395371">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
@@ -29,7 +30,8 @@
 <md-author>Mairs, John W</md-author>
 <md-subject>Cartography</md-subject>
 <md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="3271115080">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
@@ -47,7 +49,8 @@
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
 <md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="4017834789">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
@@ -64,7 +67,8 @@
 <md-subject>Radioisotope scanning</md-subject>
 <md-subject>Scintillation cameras</md-subject>
 <md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="1777675662">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
@@ -80,7 +84,8 @@
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="localhost:9999/Slow" name="ztest slow">
+<md-subject>Optical pattern recognition</md-subject><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="469587202">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="localhost:9999/Slow" name="ztest slow">
+<md-author>Jack Collins</md-author><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="1030955953">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
-<location id="localhost:9999/Slow" name="ztest slow">
+<location id="localhost:9999/Slow"
+ name="ztest slow" checksum="284236244">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
 <count>2</count>
index 51c8923..07bccc8 100644 (file)
@@ -11,7 +11,8 @@
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
 <md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="2524395371">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
@@ -29,7 +30,8 @@
 <md-author>Mairs, John W</md-author>
 <md-subject>Cartography</md-subject>
 <md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="3271115080">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
@@ -47,7 +49,8 @@
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
 <md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="4017834789">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
@@ -64,7 +67,8 @@
 <md-subject>Radioisotope scanning</md-subject>
 <md-subject>Scintillation cameras</md-subject>
 <md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow" name="ztest slow">
+<md-description>Includes bibliographical references and index</md-description><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="1777675662">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
@@ -80,7 +84,8 @@
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="localhost:9999/Slow" name="ztest slow">
+<md-subject>Optical pattern recognition</md-subject><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="469587202">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="localhost:9999/Slow" name="ztest slow">
+<md-author>Jack Collins</md-author><location id="localhost:9999/Slow"
+ name="ztest slow" checksum="1030955953">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
-<location id="localhost:9999/Slow" name="ztest slow">
+<location id="localhost:9999/Slow"
+ name="ztest slow" checksum="284236244">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
 <count>2</count>
index c83b70d..7d9a1fd 100644 (file)
@@ -48,7 +48,7 @@ http://localhost:9763/search.pz2?command=init&pz:elements%5Bz3950.indexdata.com%
 http://localhost:9763/search.pz2?session=7&command=search&query=greece
 1 http://localhost:9763/search.pz2?session=7&command=show&block=1
 1 http://localhost:9763/search.pz2?session=6&command=show&block=1
-http://localhost:9763/search.pz2?session=6&command=record&id=content%3A+title+computer+processing+of+dynamic+images+from+an+anger+scintillation+camera+author+medium+book&offset=0
+http://localhost:9763/search.pz2?session=6&command=record&id=content%3A+title+computer+processing+of+dynamic+images+from+an+anger+scintillation+camera+author+medium+book&checksum=2614320583
 http://localhost:9763/search.pz2?command=init
 http://localhost:9763/search.pz2?session=8&command=settings&pz:name%5Bz3950.indexdata.com%2Fmarc%5D=marc&pz:requestsyntax%5Bz3950.indexdata.com%2Fmarc%5D=usmarc&pz:nativesyntax%5Bz3950.indexdata.com%2Fmarc%5D=iso2709&pz:xslt%5Bz3950.indexdata.com%2Fmarc%5D=marc21%5Ftest.xsl&pz:recordfilter%5Bz3950.indexdata.com%2Fmarc%5D=date
 http://localhost:9763/search.pz2?session=8&command=search&query=xyzzyz
index 2678940..0c5a8f4 100644 (file)
@@ -11,7 +11,8 @@
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
 <md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3136897450">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
@@ -28,7 +29,8 @@
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3659474317">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
@@ -44,7 +46,8 @@
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
 <md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3485282028">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
@@ -60,7 +63,8 @@
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3833666606">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
@@ -78,7 +82,8 @@
 <md-subject>Radioisotope scanning</md-subject>
 <md-subject>Scintillation cameras</md-subject>
 <md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2962705161">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
 <md-author>Mairs, John W</md-author>
 <md-subject>Cartography</md-subject>
 <md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3311089739">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
 <md-date>1971</md-date>
 <md-subject>Universities and colleges</md-subject>
 <md-subject>Community colleges</md-subject>
-<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4182051184">
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date>
 <md-subject>Universities and colleges</md-subject>
 <md-date>1971</md-date>
 <md-author>Englund, Carl R</md-author>
 <md-subject>Railroads</md-subject>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4007858895">
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2788512872">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
 <md-test-usersetting-2>test-usersetting-2 data: 
         YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
index 8cfa59f..6da323e 100644 (file)
@@ -11,7 +11,8 @@
 <md-date>1971</md-date>
 <md-subject>Universities and colleges</md-subject>
 <md-subject>Community colleges</md-subject>
-<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4182051184">
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date>
 <md-subject>Universities and colleges</md-subject>
@@ -29,7 +30,8 @@
 <md-date>1971</md-date>
 <md-author>Englund, Carl R</md-author>
 <md-subject>Railroads</md-subject>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4007858895">
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
@@ -47,7 +49,8 @@
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
 <md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3136897450">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
@@ -67,7 +70,8 @@
 <md-subject>Radioisotope scanning</md-subject>
 <md-subject>Scintillation cameras</md-subject>
 <md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2962705161">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
@@ -88,7 +92,8 @@
 <md-author>Mairs, John W</md-author>
 <md-subject>Cartography</md-subject>
 <md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3311089739">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3659474317">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
 <md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3485282028">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3833666606">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2788512872">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
 <md-test-usersetting-2>test-usersetting-2 data: 
         YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
index 0a48c50..1179ede 100644 (file)
@@ -8,7 +8,8 @@
 <hit>
 
 <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
-<md-description>This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description><location id="z3950.indexdata.com/gils#DUMMY" name="gils">
+<md-description>This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description><location id="z3950.indexdata.com/gils#DUMMY"
+ name="gils" checksum="4276870208">
 <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
 <md-description tag="520">This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description>
 <md-description tag="513">1692-PRESENT</md-description>
@@ -20,7 +21,8 @@
 <hit>
 
 <md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
-<md-description>A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also show bedrock topography and potentiometric surface.  Geographic coverage is restricted to Southern Maine</md-description><location id="z3950.indexdata.com/gils#DUMMY" name="gils">
+<md-description>A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also show bedrock topography and potentiometric surface.  Geographic coverage is restricted to Southern Maine</md-description><location id="z3950.indexdata.com/gils#DUMMY"
+ name="gils" checksum="2559989591">
 <md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
 <md-description tag="520">A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also show bedrock topography and potentiometric surface.  Geographic coverage is restricted to Southern Maine</md-description>
 <md-description tag="513">1972-1978</md-description>
@@ -32,7 +34,8 @@
 <hit>
 
 <md-title>OIL/GAS DRILLING</md-title>
-<md-description>This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records</md-description><location id="z3950.indexdata.com/gils#DUMMY" name="gils">
+<md-description>This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records</md-description><location id="z3950.indexdata.com/gils#DUMMY"
+ name="gils" checksum="843108974">
 <md-title>OIL/GAS DRILLING</md-title>
 <md-description tag="520">This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records</md-description>
 <md-description tag="513">1907-PRESENT</md-description>
index 8845b1a..116b479 100644 (file)
@@ -7,7 +7,8 @@
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-lccn>11224466</md-lccn>
-<md-lccn>11224467</md-lccn><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-lccn>11224467</md-lccn><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2788512872">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-id>11224467</md-id>
@@ -15,7 +16,8 @@
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
 <md-test-usersetting-2>test-usersetting-2 data: 
         YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-id>11224466</md-id>
index bca8ca8..848119e 100644 (file)
@@ -7,21 +7,24 @@
 <num>3</num>
 <hit>
 
-<md-title>UTAH GEOCHROMOMETRY</md-title><location id="z3950.indexdata.com/gils" name="Index Data GILS test server">
+<md-title>UTAH GEOCHROMOMETRY</md-title><location id="z3950.indexdata.com/gils"
+ name="Index Data GILS test server" checksum="2074161109">
 <md-title>UTAH GEOCHROMOMETRY</md-title></location>
 <relevance>300000</relevance>
 <recid>content: title utah geochromometry author medium book</recid>
 </hit>
 <hit>
 
-<md-title>UTAH EARTHQUAKE EPICENTERS</md-title><location id="z3950.indexdata.com/gils" name="Index Data GILS test server">
+<md-title>UTAH EARTHQUAKE EPICENTERS</md-title><location id="z3950.indexdata.com/gils"
+ name="Index Data GILS test server" checksum="1725776531">
 <md-title>UTAH EARTHQUAKE EPICENTERS</md-title></location>
 <relevance>200000</relevance>
 <recid>content: title utah earthquake epicenters author medium book</recid>
 </hit>
 <hit>
 
-<md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title><location id="z3950.indexdata.com/gils" name="Index Data GILS test server">
+<md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title><location id="z3950.indexdata.com/gils"
+ name="Index Data GILS test server" checksum="1899968820">
 <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title></location>
 <relevance>100000</relevance>
 <recid>content: title utah geological and mineral survey publications author medium book</recid>
index d1e8a82..1a1a40b 100644 (file)
@@ -8,7 +8,8 @@
 <hit>
 
 <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
-<md-description>This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description><location id="z3950.indexdata.com/gils" name="gils">
+<md-description>This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description><location id="z3950.indexdata.com/gils"
+ name="gils" checksum="2074161109">
 <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
 <md-description>This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description></location>
 <relevance>9416</relevance>
@@ -17,7 +18,8 @@
 <hit>
 
 <md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
-<md-description>A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also show bedrock topography and potentiometric surface.  Geographic coverage is restricted to Southern Maine</md-description><location id="z3950.indexdata.com/gils" name="gils">
+<md-description>A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also show bedrock topography and potentiometric surface.  Geographic coverage is restricted to Southern Maine</md-description><location id="z3950.indexdata.com/gils"
+ name="gils" checksum="1899968820">
 <md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
 <md-description>A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also show bedrock topography and potentiometric surface.  Geographic coverage is restricted to Southern Maine</md-description></location>
 <relevance>0</relevance>
@@ -26,7 +28,8 @@
 <hit>
 
 <md-title>OIL/GAS DRILLING</md-title>
-<md-description>This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records</md-description><location id="z3950.indexdata.com/gils" name="gils">
+<md-description>This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records</md-description><location id="z3950.indexdata.com/gils"
+ name="gils" checksum="1725776531">
 <md-title>OIL/GAS DRILLING</md-title>
 <md-description>This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records</md-description></location>
 <relevance>0</relevance>
index 77a1857..476a4e6 100644 (file)
@@ -10,7 +10,8 @@
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc" name="marc">
+<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc"
+ name="marc" checksum="3659474317">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
@@ -27,7 +28,8 @@
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
 <md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc" name="marc">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
+ name="marc" checksum="3136897450">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
@@ -46,7 +48,8 @@
 <md-date>1971</md-date>
 <md-subject>Universities and colleges</md-subject>
 <md-subject>Community colleges</md-subject>
-<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc" name="marc">
+<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc"
+ name="marc" checksum="4182051184">
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date>
 <md-subject>Universities and colleges</md-subject>
@@ -65,7 +68,8 @@
 <md-date>1971</md-date>
 <md-author>Englund, Carl R</md-author>
 <md-subject>Railroads</md-subject>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc" name="marc">
+<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
+ name="marc" checksum="4007858895">
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
@@ -86,7 +90,8 @@
 <md-author>Mairs, John W</md-author>
 <md-subject>Cartography</md-subject>
 <md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc" name="marc">
+<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
+ name="marc" checksum="3311089739">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
 <md-subject>Radioisotope scanning</md-subject>
 <md-subject>Scintillation cameras</md-subject>
 <md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="marc">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="marc" checksum="2962705161">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc" name="marc">
+<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc"
+ name="marc" checksum="3833666606">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
 <md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="marc">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="marc" checksum="3485282028">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
index cc72d29..ae79c68 100644 (file)
@@ -7,56 +7,64 @@
 <num>8</num>
 <hit>
 
-<md-title>APPLIED GEOLOGY FILE</md-title><location id="z3950.indexdata.com/gils" name="Index Data GILS test server">
+<md-title>APPLIED GEOLOGY FILE</md-title><location id="z3950.indexdata.com/gils"
+ name="Index Data GILS test server" checksum="2074161109">
 <md-title>APPLIED GEOLOGY FILE</md-title></location>
 <relevance>0</relevance>
 <recid>content: title applied geology file author medium book</recid>
 </hit>
 <hit>
 
-<md-title>ELECTRIC LOG LIBRARY</md-title><location id="z3950.indexdata.com/gils" name="Index Data GILS test server">
+<md-title>ELECTRIC LOG LIBRARY</md-title><location id="z3950.indexdata.com/gils"
+ name="Index Data GILS test server" checksum="2770930265">
 <md-title>ELECTRIC LOG LIBRARY</md-title></location>
 <relevance>0</relevance>
 <recid>content: title electric log library author medium book</recid>
 </hit>
 <hit>
 
-<md-title>ISOTOPIC DATES OF ROCKS AND MINERALS</md-title><location id="z3950.indexdata.com/gils" name="Index Data GILS test server">
+<md-title>ISOTOPIC DATES OF ROCKS AND MINERALS</md-title><location id="z3950.indexdata.com/gils"
+ name="Index Data GILS test server" checksum="2945122554">
 <md-title>ISOTOPIC DATES OF ROCKS AND MINERALS</md-title></location>
 <relevance>0</relevance>
 <recid>content: title isotopic dates of rocks and minerals author medium book</recid>
 </hit>
 <hit>
 
-<md-title>MINE MAP INDEX</md-title><location id="z3950.indexdata.com/gils" name="Index Data GILS test server">
+<md-title>MINE MAP INDEX</md-title><location id="z3950.indexdata.com/gils"
+ name="Index Data GILS test server" checksum="2422545687">
 <md-title>MINE MAP INDEX</md-title></location>
 <relevance>0</relevance>
 <recid>content: title mine map index author medium book</recid>
 </hit>
 <hit>
 
-<md-title>UTAH CRIB FILE</md-title><location id="z3950.indexdata.com/gils" name="Index Data GILS test server">
+<md-title>UTAH CRIB FILE</md-title><location id="z3950.indexdata.com/gils"
+ name="Index Data GILS test server" checksum="2248353398">
 <md-title>UTAH CRIB FILE</md-title></location>
 <relevance>0</relevance>
 <recid>content: title utah crib file author medium book</recid>
 </hit>
 <hit>
 
-<md-title>UTAH EARTHQUAKE EPICENTERS</md-title><location id="z3950.indexdata.com/gils" name="Index Data GILS test server">
+<md-title>UTAH EARTHQUAKE EPICENTERS</md-title><location id="z3950.indexdata.com/gils"
+ name="Index Data GILS test server" checksum="1725776531">
 <md-title>UTAH EARTHQUAKE EPICENTERS</md-title></location>
 <relevance>0</relevance>
 <recid>content: title utah earthquake epicenters author medium book</recid>
 </hit>
 <hit>
 
-<md-title>UTAH GEOLOGIC MAP BIBLIOGRAPHY</md-title><location id="z3950.indexdata.com/gils" name="Index Data GILS test server">
+<md-title>UTAH GEOLOGIC MAP BIBLIOGRAPHY</md-title><location id="z3950.indexdata.com/gils"
+ name="Index Data GILS test server" checksum="2596737976">
 <md-title>UTAH GEOLOGIC MAP BIBLIOGRAPHY</md-title></location>
 <relevance>0</relevance>
 <recid>content: title utah geologic map bibliography author medium book</recid>
 </hit>
 <hit>
 
-<md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title><location id="z3950.indexdata.com/gils" name="Index Data GILS test server">
+<md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title><location id="z3950.indexdata.com/gils"
+ name="Index Data GILS test server" checksum="1899968820">
 <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title></location>
 <relevance>0</relevance>
 <recid>content: title utah geological and mineral survey publications author medium book</recid>
index 49f526b..9ff86ef 100644 (file)
@@ -13,7 +13,8 @@
 <md-subject>Greek literature</md-subject>
 <md-subject>Philosophy, Ancient</md-subject>
 <md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc" name="marc">
+<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc"
+ name="marc" checksum="3659474317">
 <md-title>The religious teachers of Greece</md-title>
 <md-date>1972</md-date>
 <md-author>Adam, James</md-author>
@@ -36,7 +37,8 @@
 <md-author>Mairs, John W</md-author>
 <md-subject>Cartography</md-subject>
 <md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc" name="marc">
+<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
+ name="marc" checksum="2962705161">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
@@ -57,7 +59,8 @@
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
 <md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="marc">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="marc" checksum="3136897450">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
@@ -74,7 +77,8 @@
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc" name="marc">
+<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc"
+ name="marc" checksum="3485282028">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
@@ -90,7 +94,8 @@
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc" name="marc">
+<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc"
+ name="marc" checksum="3311089739">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
index ce9623a..590ad27 100644 (file)
@@ -13,7 +13,8 @@
 <md-subject>Radioisotope scanning</md-subject>
 <md-subject>Scintillation cameras</md-subject>
 <md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
index 70b1451..348baf0 100644 (file)
@@ -13,7 +13,8 @@
 <md-subject>Greek literature</md-subject>
 <md-subject>Philosophy, Ancient</md-subject>
 <md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>The religious teachers of Greece</md-title>
 <md-date>1972</md-date>
 <md-author>Adam, James</md-author>
index c045cc2..23ee21f 100644 (file)
@@ -8,13 +8,15 @@
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2788512872">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
 <md-test-usersetting-2>test-usersetting-2 data: 
         YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
@@ -29,7 +31,8 @@
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3659474317">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
@@ -46,7 +49,8 @@
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
 <md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3136897450">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
@@ -65,7 +69,8 @@
 <md-date>1971</md-date>
 <md-subject>Universities and colleges</md-subject>
 <md-subject>Community colleges</md-subject>
-<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4182051184">
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date>
 <md-subject>Universities and colleges</md-subject>
@@ -84,7 +89,8 @@
 <md-date>1971</md-date>
 <md-author>Englund, Carl R</md-author>
 <md-subject>Railroads</md-subject>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4007858895">
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
 <md-author>Mairs, John W</md-author>
 <md-subject>Cartography</md-subject>
 <md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3311089739">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
 <md-subject>Radioisotope scanning</md-subject>
 <md-subject>Scintillation cameras</md-subject>
 <md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2962705161">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3833666606">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
 <md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3485282028">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
index ce9623a..590ad27 100644 (file)
@@ -13,7 +13,8 @@
 <md-subject>Radioisotope scanning</md-subject>
 <md-subject>Scintillation cameras</md-subject>
 <md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
index f2a707c..5a33609 100644 (file)
@@ -7,7 +7,8 @@
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-lccn>11224466</md-lccn>
-<md-lccn>11224467</md-lccn><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-lccn>11224467</md-lccn><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2788512872">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-id>11224467</md-id>
@@ -15,7 +16,8 @@
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
 <md-test-usersetting-2>test-usersetting-2 data: 
         YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-id>11224466</md-id>
index f9283fd..f836377 100644 (file)
@@ -13,7 +13,8 @@
 <md-subject>Greek literature</md-subject>
 <md-subject>Philosophy, Ancient</md-subject>
 <md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>The religious teachers of Greece</md-title>
 <md-date>1972</md-date>
 <md-author>Adam, James</md-author>
index 70b1451..348baf0 100644 (file)
@@ -13,7 +13,8 @@
 <md-subject>Greek literature</md-subject>
 <md-subject>Philosophy, Ancient</md-subject>
 <md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>The religious teachers of Greece</md-title>
 <md-date>1972</md-date>
 <md-author>Adam, James</md-author>
index 70b1451..348baf0 100644 (file)
@@ -13,7 +13,8 @@
 <md-subject>Greek literature</md-subject>
 <md-subject>Philosophy, Ancient</md-subject>
 <md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>The religious teachers of Greece</md-title>
 <md-date>1972</md-date>
 <md-author>Adam, James</md-author>
index 70b1451..348baf0 100644 (file)
@@ -13,7 +13,8 @@
 <md-subject>Greek literature</md-subject>
 <md-subject>Philosophy, Ancient</md-subject>
 <md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>The religious teachers of Greece</md-title>
 <md-date>1972</md-date>
 <md-author>Adam, James</md-author>
index 64e8673..95379fe 100644 (file)
@@ -12,7 +12,8 @@
 <md-date>1971</md-date>
 <md-author>Englund, Carl R</md-author>
 <md-subject>Railroads</md-subject>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4007858895">
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
index ba0f848..57983c5 100644 (file)
@@ -10,7 +10,8 @@
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3659474317">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
@@ -27,7 +28,8 @@
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
 <md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3136897450">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
@@ -45,7 +47,8 @@
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3833666606">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
@@ -62,7 +65,8 @@
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
 <md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3485282028">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
index c4aa933..dda0a5b 100644 (file)
@@ -13,7 +13,8 @@
 <md-subject>Greek literature</md-subject>
 <md-subject>Philosophy, Ancient</md-subject>
 <md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>The religious teachers of Greece</md-title>
 <md-date>1972</md-date>
 <md-author>Adam, James</md-author>
@@ -34,7 +35,8 @@
 <md-title-remainder>XXIII, XXXVI, LII, CXXI</md-title-remainder>
 <md-date>1980</md-date>
 <md-author>Smith, George Adam</md-author>
-<md-subject>Bible</md-subject><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-subject>Bible</md-subject><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2788512872">
 <md-title>Four psalms</md-title>
 <md-title-remainder>XXIII, XXXVI, LII, CXXI</md-title-remainder>
 <md-date>1980</md-date>
index d39c96f..229adc5 100644 (file)
@@ -12,7 +12,8 @@
 <md-date>1971</md-date>
 <md-author>Englund, Carl R</md-author>
 <md-subject>Railroads</md-subject>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4007858895">
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
@@ -29,7 +30,8 @@
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3833666606">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
@@ -45,7 +47,8 @@
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
 <md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3485282028">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
@@ -64,7 +67,8 @@
 <md-author>Mairs, John W</md-author>
 <md-subject>Cartography</md-subject>
 <md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3311089739">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
@@ -84,7 +88,8 @@
 <md-date>1971</md-date>
 <md-subject>Universities and colleges</md-subject>
 <md-subject>Community colleges</md-subject>
-<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4182051184">
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date>
 <md-subject>Universities and colleges</md-subject>
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2788512872">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
 <md-test-usersetting-2>test-usersetting-2 data: 
         YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3659474317">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
 <md-subject>Radioisotope scanning</md-subject>
 <md-subject>Scintillation cameras</md-subject>
 <md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2962705161">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
 <md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3136897450">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
index 33d874f..cfa7ec5 100644 (file)
@@ -13,7 +13,8 @@
 <md-subject>Greek literature</md-subject>
 <md-subject>Philosophy, Ancient</md-subject>
 <md-subject>Greece</md-subject>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>The religious teachers of Greece</md-title>
 <md-date>1972</md-date>
 <md-author>Adam, James</md-author>
index 41a8c73..91d6218 100644 (file)
@@ -11,7 +11,8 @@
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
 <md-subject>Bible</md-subject>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3136897450">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-subject>Bible. O.T</md-subject>
@@ -31,7 +32,8 @@
 <md-subject>Radioisotope scanning</md-subject>
 <md-subject>Scintillation cameras</md-subject>
 <md-subject>Imaging systems in medicine</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2962705161">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
@@ -49,7 +51,8 @@
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
-<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-subject>Optical pattern recognition</md-subject><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3659474317">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2788512872">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
 <md-test-usersetting-2>test-usersetting-2 data: 
         YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
@@ -83,7 +88,8 @@
 <md-date>1971</md-date>
 <md-subject>Universities and colleges</md-subject>
 <md-subject>Community colleges</md-subject>
-<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4182051184">
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date>
 <md-subject>Universities and colleges</md-subject>
 <md-author>Mairs, John W</md-author>
 <md-subject>Cartography</md-subject>
 <md-subject>Puget Sound region (Wash.)</md-subject>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3311089739">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
 <md-subject>Tomography</md-subject>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3485282028">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
-<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-subject>Computers</md-subject><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3833666606">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
 <md-date>1971</md-date>
 <md-author>Englund, Carl R</md-author>
 <md-subject>Railroads</md-subject>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4007858895">
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
index 5375925..30e9aff 100644 (file)
@@ -11,7 +11,8 @@
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
 <md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4007858895">
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
@@ -26,7 +27,8 @@
 
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Wood, Helen M</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3833666606">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
@@ -40,7 +42,8 @@
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3485282028">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
@@ -56,7 +59,8 @@
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
 <md-author>Mairs, John W</md-author>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3311089739">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
@@ -72,7 +76,8 @@
 
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date>
-<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4182051184">
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date>
 <md-description tag="500">Cover title</md-description>
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2788512872">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
 <md-test-usersetting-2>test-usersetting-2 data: 
         YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
 
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-date>1977</md-date><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3659474317">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2962705161">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
 
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3136897450">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
index fcefa9b..821e962 100644 (file)
@@ -9,7 +9,8 @@
 
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3136897450">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
@@ -24,7 +25,8 @@
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2962705161">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
@@ -38,7 +40,8 @@
 
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-date>1977</md-date><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3659474317">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2788512872">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
 <md-test-usersetting-2>test-usersetting-2 data: 
         YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
@@ -69,7 +74,8 @@
 
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date>
-<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4182051184">
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date>
 <md-description tag="500">Cover title</md-description>
@@ -84,7 +90,8 @@
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
 <md-author>Mairs, John W</md-author>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3311089739">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3485282028">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
 
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Wood, Helen M</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3833666606">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
 <md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4007858895">
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
index 7d0e680..608c8d7 100644 (file)
@@ -9,7 +9,8 @@
 
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3136897450">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
@@ -23,7 +24,8 @@
 
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-date>1977</md-date><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3659474317">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
@@ -37,7 +39,8 @@
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3485282028">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
@@ -51,7 +54,8 @@
 
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Wood, Helen M</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3833666606">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
@@ -65,7 +69,8 @@
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2962705161">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
@@ -81,7 +86,8 @@
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
 <md-author>Mairs, John W</md-author>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3311089739">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
 
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date>
-<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4182051184">
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date>
 <md-description tag="500">Cover title</md-description>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
 <md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4007858895">
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2788512872">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
 <md-test-usersetting-2>test-usersetting-2 data: 
         YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
index 50799ac..e61d6ce 100644 (file)
@@ -9,7 +9,8 @@
 
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date>
-<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4182051184">
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date>
 <md-description tag="500">Cover title</md-description>
@@ -24,7 +25,8 @@
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
 <md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4007858895">
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
@@ -39,7 +41,8 @@
 
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3136897450">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
@@ -54,7 +57,8 @@
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2962705161">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
@@ -70,7 +74,8 @@
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
 <md-author>Mairs, John W</md-author>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3311089739">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
@@ -86,7 +91,8 @@
 
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-date>1977</md-date><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3659474317">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3485282028">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
 
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Wood, Helen M</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3833666606">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2788512872">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
 <md-test-usersetting-2>test-usersetting-2 data: 
         YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
index f03fbd3..778509c 100644 (file)
@@ -9,7 +9,8 @@
 
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Wood, Helen M</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3833666606">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2788512872">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
 <md-test-usersetting-2>test-usersetting-2 data: 
         YYYYYYYYY</md-test-usersetting-2></location>
-<location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting>
@@ -42,7 +45,8 @@
 
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3136897450">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
@@ -57,7 +61,8 @@
 
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-date>1977</md-date><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3659474317">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
@@ -71,7 +76,8 @@
 
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date>
-<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Cover title</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4182051184">
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date>
 <md-description tag="500">Cover title</md-description>
@@ -87,7 +93,8 @@
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
 <md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4007858895">
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
 <md-author>Mairs, John W</md-author>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3311089739">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2962705161">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-description>Includes bibliographical references and index</md-description><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3485282028">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
index 4060ffb..df0075e 100644 (file)
@@ -10,7 +10,8 @@
 <md-title>The religious teachers of Greece</md-title>
 <md-date>1972</md-date>
 <md-author>Adam, James</md-author>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="Target-1" name="ztest-db1">
+<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="Target-1"
+ name="ztest-db1" checksum="1300880726">
 <md-title>The religious teachers of Greece</md-title>
 <md-date>1972</md-date>
 <md-author>Adam, James</md-author>
index 101bb60..8879b7f 100644 (file)
@@ -10,7 +10,8 @@
 <md-title>The religious teachers of Greece</md-title>
 <md-date>1972</md-date>
 <md-author>Adam, James</md-author>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="Target-1" name="ztest-db1">
+<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="Target-1"
+ name="ztest-db1" checksum="1300880726">
 <md-title>The religious teachers of Greece</md-title>
 <md-date>1972</md-date>
 <md-author>Adam, James</md-author>
index 101bb60..8879b7f 100644 (file)
@@ -10,7 +10,8 @@
 <md-title>The religious teachers of Greece</md-title>
 <md-date>1972</md-date>
 <md-author>Adam, James</md-author>
-<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="Target-1" name="ztest-db1">
+<md-description>Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures</md-description><location id="Target-1"
+ name="ztest-db1" checksum="1300880726">
 <md-title>The religious teachers of Greece</md-title>
 <md-date>1972</md-date>
 <md-author>Adam, James</md-author>
index 42042ab..12b9255 100644 (file)
@@ -11,7 +11,8 @@
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
 <md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="Target-1" name="ztest-db1">
+<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="Target-1"
+ name="ztest-db1" checksum="2981078110">
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
index 40370c0..4035d89 100644 (file)
@@ -9,7 +9,8 @@
 
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="Target-1" name="ztest-db1">
+<md-date>1977</md-date><location id="Target-1"
+ name="ztest-db1" checksum="1487286940">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
@@ -21,7 +22,8 @@
 
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="Target-1" name="ztest-db1">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="Target-1"
+ name="ztest-db1" checksum="3541567481">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-description>Hebrew and Greek; introductions in English</md-description>
@@ -34,7 +36,8 @@
 
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="Target-1" name="ztest-db1">
+<md-author>Wood, Helen M</md-author><location id="Target-1"
+ name="ztest-db1" checksum="2234182525">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
@@ -46,7 +49,8 @@
 
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date><location id="Target-1" name="ztest-db1">
+<md-date>1977</md-date><location id="Target-1"
+ name="ztest-db1" checksum="740391355">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
index 60b3c70..df0bf86 100644 (file)
@@ -12,7 +12,8 @@
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
 <md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="Target-1" name="ztest-db1">
+<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="Target-1"
+ name="ztest-db1" checksum="2981078110">
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
index b568275..8e739c7 100644 (file)
@@ -10,7 +10,8 @@
 
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="Target-1" name="ztest-db1">
+<md-date>1977</md-date><location id="Target-1"
+ name="ztest-db1" checksum="1487286940">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
@@ -22,7 +23,8 @@
 
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="Target-1" name="ztest-db1">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="Target-1"
+ name="ztest-db1" checksum="3541567481">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-description>Hebrew and Greek; introductions in English</md-description>
@@ -35,7 +37,8 @@
 
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="Target-1" name="ztest-db1">
+<md-author>Wood, Helen M</md-author><location id="Target-1"
+ name="ztest-db1" checksum="2234182525">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
@@ -47,7 +50,8 @@
 
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date><location id="Target-1" name="ztest-db1">
+<md-date>1977</md-date><location id="Target-1"
+ name="ztest-db1" checksum="740391355">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
index 59095d8..b50618a 100644 (file)
@@ -8,11 +8,13 @@
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="Target-1" name="ztest-db1">
+<md-author>Jack Collins</md-author><location id="Target-1"
+ name="ztest-db1" checksum="2047776311">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
-<location id="Target-1" name="ztest-db1">
+<location id="Target-1"
+ name="ztest-db1" checksum="1300880726">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author>
 <md-test-usersetting>XXXXXXXXXX</md-test-usersetting></location>
@@ -24,7 +26,8 @@
 
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="Target-1" name="ztest-db1">
+<md-date>1977</md-date><location id="Target-1"
+ name="ztest-db1" checksum="1487286940">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date>
@@ -36,7 +39,8 @@
 
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="Target-1" name="ztest-db1">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="Target-1"
+ name="ztest-db1" checksum="3541567481">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-description>Hebrew and Greek; introductions in English</md-description>
@@ -49,7 +53,8 @@
 
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date>
-<md-description>Cover title</md-description><location id="Target-1" name="ztest-db1">
+<md-description>Cover title</md-description><location id="Target-1"
+ name="ztest-db1" checksum="3727973695">
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date>
 <md-description>Cover title</md-description>
@@ -63,7 +68,8 @@
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
 <md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="Target-1" name="ztest-db1">
+<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="Target-1"
+ name="ztest-db1" checksum="2981078110">
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
@@ -79,7 +85,8 @@
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
 <md-author>Mairs, John W</md-author>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="Target-1" name="ztest-db1">
+<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="Target-1"
+ name="ztest-db1" checksum="4288463066">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
 
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date><location id="Target-1" name="ztest-db1">
+<md-date>1974</md-date><location id="Target-1"
+ name="ztest-db1" checksum="2794671896">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
 
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="Target-1" name="ztest-db1">
+<md-author>Wood, Helen M</md-author><location id="Target-1"
+ name="ztest-db1" checksum="2234182525">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author>
 
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date><location id="Target-1" name="ztest-db1">
+<md-date>1977</md-date><location id="Target-1"
+ name="ztest-db1" checksum="740391355">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
index 64ca61c..7eed3b1 100644 (file)
@@ -10,7 +10,8 @@
 <md-title>Adobe Illustrator for the Mac</md-title>
 <md-title-remainder>fast &amp; easy</md-title-remainder>
 <md-date>2001</md-date>
-<md-author>Woodward, C. Michael</md-author><location id="Target-2" name="LOC-SOLR">
+<md-author>Woodward, C. Michael</md-author><location id="Target-2"
+ name="LOC-SOLR" checksum="739120627">
 <md-title>Adobe Illustrator for the Mac</md-title>
 <md-title-remainder>fast &amp; easy</md-title-remainder>
 <md-date>2001</md-date>
@@ -21,7 +22,8 @@
 <hit>
 
 <md-title>Advanced computer performance modeling and simulation</md-title>
-<md-date>1998</md-date><location id="Target-2" name="LOC-SOLR">
+<md-date>1998</md-date><location id="Target-2"
+ name="LOC-SOLR" checksum="3541567482">
 <md-title>Advanced computer performance modeling and simulation</md-title>
 <md-date>1998</md-date></location>
 <relevance>45304</relevance>
@@ -33,7 +35,8 @@
 <md-title-remainder>issues surrounding the establishment of an international regime</md-title-remainder>
 <md-date>2000</md-date>
 <md-author>Aldrich, Richard W</md-author>
-<md-description>&quot;April 2000.&quot;</md-description><location id="Target-2" name="LOC-SOLR">
+<md-description>&quot;April 2000.&quot;</md-description><location id="Target-2"
+ name="LOC-SOLR" checksum="4100786124">
 <md-title>Cyberterrorism and computer crimes</md-title>
 <md-title-remainder>issues surrounding the establishment of an international regime</md-title-remainder>
 <md-date>2000</md-date>
@@ -47,7 +50,8 @@
 <md-title>Software design and usability</md-title>
 <md-title-remainder>talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson &amp; Jed Harris, Terry Winograd, Stephanie Rosenbaum</md-title-remainder>
 <md-date>2000</md-date>
-<md-author>Kaasgaard, Klaus</md-author><location id="Target-2" name="LOC-SOLR">
+<md-author>Kaasgaard, Klaus</md-author><location id="Target-2"
+ name="LOC-SOLR" checksum="552714413">
 <md-title>Software design and usability</md-title>
 <md-title-remainder>talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson &amp; Jed Harris, Terry Winograd, Stephanie Rosenbaum</md-title-remainder>
 <md-date>2000</md-date>
@@ -60,7 +64,8 @@
 <md-title>Everything you need to know about the dangers of computer hacking</md-title>
 <md-date>2000</md-date>
 <md-author>Knittel, John</md-author>
-<md-description>Explains what computer hacking is, who does it, and how dangerous it can be</md-description><location id="Target-2" name="LOC-SOLR">
+<md-description>Explains what computer hacking is, who does it, and how dangerous it can be</md-description><location id="Target-2"
+ name="LOC-SOLR" checksum="1672422426">
 <md-title>Everything you need to know about the dangers of computer hacking</md-title>
 <md-date>2000</md-date>
 <md-author>Knittel, John</md-author>
@@ -72,7 +77,8 @@
 
 <md-title>Computer peripherals</md-title>
 <md-date>1995</md-date>
-<md-author>Cook, Barry M</md-author><location id="Target-2" name="LOC-SOLR">
+<md-author>Cook, Barry M</md-author><location id="Target-2"
+ name="LOC-SOLR" checksum="550172955">
 <md-title>Computer peripherals</md-title>
 <md-date>1995</md-date>
 <md-author>Cook, Barry M</md-author></location>
@@ -83,7 +89,8 @@
 
 <md-title>Kids&apos; computer book</md-title>
 <md-date>1994</md-date>
-<md-description>Discusses a variety of educational and game software for children  with suggestions for setting up a computer system. Includes a 3 1/2 in. disk with 6 shareware programs for children</md-description><location id="Target-2" name="LOC-SOLR">
+<md-description>Discusses a variety of educational and game software for children  with suggestions for setting up a computer system. Includes a 3 1/2 in. disk with 6 shareware programs for children</md-description><location id="Target-2"
+ name="LOC-SOLR" checksum="2419318011">
 <md-title>Kids&apos; computer book</md-title>
 <md-date>1994</md-date>
 <md-description>&quot;For kids and their parents&quot;--Cover</md-description>
 
 <md-title>Computer friendly</md-title>
 <md-date>1999</md-date>
-<md-author>Steinbacher, Raymond</md-author><location id="Target-2" name="LOC-SOLR">
+<md-author>Steinbacher, Raymond</md-author><location id="Target-2"
+ name="LOC-SOLR" checksum="3353890539">
 <md-title>Computer friendly</md-title>
 <md-date>1999</md-date>
 <md-author>Steinbacher, Raymond</md-author></location>
 
 <md-title>Computer misuse</md-title>
 <md-date>1999</md-date>
-<md-description>&quot;Also published as Parliamentary Paper E 31AO&quot;--T.p. verso</md-description><location id="Target-2" name="LOC-SOLR">
+<md-description>&quot;Also published as Parliamentary Paper E 31AO&quot;--T.p. verso</md-description><location id="Target-2"
+ name="LOC-SOLR" checksum="2234182526">
 <md-title>Computer misuse</md-title>
 <md-date>1999</md-date>
 <md-description>&quot;May 1999.&quot;</md-description>
 <md-title>Computer networking</md-title>
 <md-title-remainder>a top-down approach featuring the Internet</md-title-remainder>
 <md-date>2001</md-date>
-<md-author>Ross, Keith W</md-author><location id="Target-2" name="LOC-SOLR">
+<md-author>Ross, Keith W</md-author><location id="Target-2"
+ name="LOC-SOLR" checksum="1669880968">
 <md-title>Computer networking</md-title>
 <md-title-remainder>a top-down approach featuring the Internet</md-title-remainder>
 <md-date>2001</md-date>
 <md-title>CorelDRAW 8 for Windows</md-title>
 <md-date>1998</md-date>
 <md-author>Davis, Phyllis</md-author>
-<md-description>Includes index</md-description><location id="Target-2" name="LOC-SOLR">
+<md-description>Includes index</md-description><location id="Target-2"
+ name="LOC-SOLR" checksum="1297068540">
 <md-title>CorelDRAW 8 for Windows</md-title>
 <md-date>1998</md-date>
 <md-author>Davis, Phyllis</md-author>
 <md-title-remainder>the official guide</md-title-remainder>
 <md-date>2000</md-date>
 <md-author>Langer, Maria</md-author>
-<md-description>&quot;Covers Quicken deluxe 2000 for the Mac&quot;--Cover</md-description><location id="Target-2" name="LOC-SOLR">
+<md-description>&quot;Covers Quicken deluxe 2000 for the Mac&quot;--Cover</md-description><location id="Target-2"
+ name="LOC-SOLR" checksum="2605724225">
 <md-title>Quicken 2000 for the Mac</md-title>
 <md-title-remainder>the official guide</md-title-remainder>
 <md-date>2000</md-date>
 <hit>
 
 <md-title>Sicherheit und Schutz im Netz</md-title>
-<md-date>1998</md-date><location id="Target-2" name="LOC-SOLR">
+<md-date>1998</md-date><location id="Target-2"
+ name="LOC-SOLR" checksum="2604453496">
 <md-title>Sicherheit und Schutz im Netz</md-title>
 <md-date>1998</md-date></location>
 <relevance>33978</relevance>
 <md-title>Unix Secure Shell</md-title>
 <md-date>1999</md-date>
 <md-author>Carasik, Anne H</md-author>
-<md-description>Includes index</md-description><location id="Target-2" name="LOC-SOLR">
+<md-description>Includes index</md-description><location id="Target-2"
+ name="LOC-SOLR" checksum="3726702967">
 <md-title>Unix Secure Shell</md-title>
 <md-date>1999</md-date>
 <md-author>Carasik, Anne H</md-author>
 <md-title>Eight International Conference on Computer Communications and Networks</md-title>
 <md-title-remainder>proceedings, 11-13 October 1999, Boston, Massachusetts</md-title-remainder>
 <md-date>1999</md-date>
-<md-description>&quot;IEEE catalog number 99EX370&quot;--T.p. verso</md-description><location id="Target-2" name="LOC-SOLR">
+<md-description>&quot;IEEE catalog number 99EX370&quot;--T.p. verso</md-description><location id="Target-2"
+ name="LOC-SOLR" checksum="3166213596">
 <md-title>Eight International Conference on Computer Communications and Networks</md-title>
 <md-title-remainder>proceedings, 11-13 October 1999, Boston, Massachusetts</md-title-remainder>
 <md-date>1999</md-date>
 <md-title>Building storage networks</md-title>
 <md-date>2000</md-date>
 <md-author>Farley, Marc</md-author>
-<md-description>Includes index</md-description><location id="Target-2" name="LOC-SOLR">
+<md-description>Includes index</md-description><location id="Target-2"
+ name="LOC-SOLR" checksum="3164942867">
 <md-title>Building storage networks</md-title>
 <md-date>2000</md-date>
 <md-author>Farley, Marc</md-author>
 <md-title-remainder>the definitive control language programming guide</md-title-remainder>
 <md-date>1999</md-date>
 <md-author>Malaga, Ernie</md-author>
-<md-description>Includes index</md-description><location id="Target-2" name="LOC-SOLR">
+<md-description>Includes index</md-description><location id="Target-2"
+ name="LOC-SOLR" checksum="551443684">
 <md-title>Complete CL</md-title>
 <md-title-remainder>the definitive control language programming guide</md-title-remainder>
 <md-date>1999</md-date>
 <md-title>3D games</md-title>
 <md-title-remainder>real-time rendering and software technology</md-title-remainder>
 <md-date>2001</md-date>
-<md-author>Watt, Alan H</md-author><location id="Target-2" name="LOC-SOLR">
+<md-author>Watt, Alan H</md-author><location id="Target-2"
+ name="LOC-SOLR" checksum="4287192338">
 <md-title>3D games</md-title>
 <md-title-remainder>real-time rendering and software technology</md-title-remainder>
 <md-date>2001</md-date>
 
 <md-title>Java applications strategies for the AS/400</md-title>
 <md-date>1999</md-date>
-<md-author>Denoncourt, Don</md-author><location id="Target-2" name="LOC-SOLR">
+<md-author>Denoncourt, Don</md-author><location id="Target-2"
+ name="LOC-SOLR" checksum="3351349081">
 <md-title>Java applications strategies for the AS/400</md-title>
 <md-date>1999</md-date>
 <md-author>Denoncourt, Don</md-author></location>
 <md-title>Mastering algorithms with C</md-title>
 <md-date>1999</md-date>
 <md-author>Loudon, Kyle</md-author>
-<md-description>&quot;Useful techniques from sorting to encryption&quot;--Cover</md-description><location id="Target-2" name="LOC-SOLR">
+<md-description>&quot;Useful techniques from sorting to encryption&quot;--Cover</md-description><location id="Target-2"
+ name="LOC-SOLR" checksum="178631256">
 <md-title>Mastering algorithms with C</md-title>
 <md-date>1999</md-date>
 <md-author>Loudon, Kyle</md-author>
index 9caed57..a7d4186 100644 (file)
@@ -8,10 +8,12 @@
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2788512872">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
-<location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
 <count>2</count>
@@ -22,7 +24,8 @@
 
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-date>1977</md-date><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3659474317">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date></location>
@@ -32,7 +35,8 @@
 <hit>
 
 <md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-date>1973-1980</md-date><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3136897450">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date></location>
 <relevance>21072</relevance>
@@ -41,7 +45,8 @@
 <hit>
 
 <md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-date>1971</md-date><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4182051184">
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date></location>
 <relevance>9030</relevance>
@@ -52,7 +57,8 @@
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Englund, Carl R</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4007858895">
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
@@ -65,7 +71,8 @@
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
-<md-author>Mairs, John W</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Mairs, John W</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3311089739">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
@@ -77,7 +84,8 @@
 
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-date>1974</md-date><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2962705161">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date></location>
@@ -88,7 +96,8 @@
 
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Wood, Helen M</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3833666606">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author></location>
 
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-date>1977</md-date><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3485282028">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date></location>
index 9caed57..a7d4186 100644 (file)
@@ -8,10 +8,12 @@
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Jack Collins</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2788512872">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
-<location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2614320583">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
 <count>2</count>
@@ -22,7 +24,8 @@
 
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-date>1977</md-date><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3659474317">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date></location>
@@ -32,7 +35,8 @@
 <hit>
 
 <md-title>The Computer Bible</md-title>
-<md-date>1973-1980</md-date><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-date>1973-1980</md-date><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3136897450">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date></location>
 <relevance>21072</relevance>
@@ -41,7 +45,8 @@
 <hit>
 
 <md-title>A plan for community college computer development</md-title>
-<md-date>1971</md-date><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-date>1971</md-date><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4182051184">
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date></location>
 <relevance>9030</relevance>
@@ -52,7 +57,8 @@
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
-<md-author>Englund, Carl R</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Englund, Carl R</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="4007858895">
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
@@ -65,7 +71,8 @@
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
-<md-author>Mairs, John W</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Mairs, John W</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3311089739">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
@@ -77,7 +84,8 @@
 
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
-<md-date>1974</md-date><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-date>1974</md-date><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="2962705161">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date></location>
@@ -88,7 +96,8 @@
 
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-author>Wood, Helen M</md-author><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3833666606">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author></location>
 
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
-<md-date>1977</md-date><location id="z3950.indexdata.com/marc" name="Index Data MARC test server">
+<md-date>1977</md-date><location id="z3950.indexdata.com/marc"
+ name="Index Data MARC test server" checksum="3485282028">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date></location>
index 8b8d4ac..d8d07be 100644 (file)
@@ -7,21 +7,24 @@
 <num>3</num>
 <hit>
 
-<md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title><location id="z3950.indexdata.com/gils" name="Index Data GILS test server">
+<md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title><location id="z3950.indexdata.com/gils"
+ name="Index Data GILS test server" checksum="2074161109">
 <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title></location>
 <relevance>0</relevance>
 <recid>content: title bibliography of maine geology author medium book</recid>
 </hit>
 <hit>
 
-<md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title><location id="z3950.indexdata.com/gils" name="Index Data GILS test server">
+<md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title><location id="z3950.indexdata.com/gils"
+ name="Index Data GILS test server" checksum="1899968820">
 <md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title></location>
 <relevance>0</relevance>
 <recid>content: title groundwater resource maps county series author medium book</recid>
 </hit>
 <hit>
 
-<md-title>OIL/GAS DRILLING</md-title><location id="z3950.indexdata.com/gils" name="Index Data GILS test server">
+<md-title>OIL/GAS DRILLING</md-title><location id="z3950.indexdata.com/gils"
+ name="Index Data GILS test server" checksum="1725776531">
 <md-title>OIL/GAS DRILLING</md-title></location>
 <relevance>0</relevance>
 <recid>content: title oil gas drilling author medium book</recid>
index 83670b4..419fce4 100644 (file)
@@ -10,7 +10,8 @@
 <md-title>Water</md-title>
 <md-date>1999</md-date>
 <md-author>De Villiers, Marq</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="488613273">
 <md-title>Water</md-title>
 <md-date>1999</md-date>
 <md-author>De Villiers, Marq</md-author>
 <md-title>Potable water and methods of detecting impurities</md-title>
 <md-date>1899-1906</md-date>
 <md-author>Baker, M. N</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1810338543">
 <md-title>Potable water and methods of detecting impurities</md-title>
 <md-date>1906</md-date>
 <md-author>Baker, M. N</md-author>
 <md-medium>book</md-medium></location>
-<location id="LOC Solr Test" name="LOC Solr Test">
+<location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1261468432">
 <md-title>Potable water and methods of detecting impurities</md-title>
 <md-date>1899</md-date>
 <md-author>Baker, M. N</md-author>
@@ -43,7 +46,8 @@
 <md-date>2000</md-date>
 <md-author>Majeed, Abdul</md-author>
 <md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1037483384">
 <md-title>Water</md-title>
 <md-date>2000</md-date>
 <md-author>Majeed, Abdul</md-author>
@@ -58,7 +62,8 @@
 <md-date>2000</md-date>
 <md-author>Grant, Pamela</md-author>
 <md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="648602593">
 <md-title>Water</md-title>
 <md-date>2000</md-date>
 <md-author>Grant, Pamela</md-author>
@@ -74,7 +79,8 @@
 <md-date>2000</md-date>
 <md-author>Fisher, D. E</md-author>
 <md-description>Includes index</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2652095853">
 <md-title>Water law</md-title>
 <md-date>2000</md-date>
 <md-author>Fisher, D. E</md-author>
@@ -89,7 +95,8 @@
 <md-title-remainder>questions and answers</md-title-remainder>
 <md-date>2000</md-date>
 <md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2684093717">
 <md-title>A Primer on fresh water</md-title>
 <md-title-remainder>questions and answers</md-title-remainder>
 <md-date>2000</md-date>
 <md-title>Water and water supplies</md-title>
 <md-date>1901</md-date>
 <md-author>Thresh, John Clough</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="520611137">
 <md-title>Water and water supplies</md-title>
 <md-date>1901</md-date>
 <md-author>Thresh, John Clough</md-author>
 <md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
 <md-date>1999-2000</md-date>
 <md-description>&quot;September 1999.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1069481248">
 <md-title>Water quality assessment of the State Water Project, 1998-99</md-title>
 <md-date>2000</md-date>
 <md-description>Cover title</md-description>
 <md-description>&quot;July 2000.&quot;</md-description>
 <md-medium>book</md-medium></location>
-<location id="LOC Solr Test" name="LOC Solr Test">
+<location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="3749836075">
 <md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
 <md-date>1999</md-date>
 <md-description>Cover title</md-description>
 <md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
 <md-date>1896</md-date>
 <md-author>Mason, William Pitt</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2359208654">
 <md-title>Water-supply</md-title>
 <md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
 <md-date>1896</md-date>
 <md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
 <md-date>1904</md-date>
 <md-author>Farnham, Henry P</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1682347087">
 <md-title>The law of waters and water rights</md-title>
 <md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
 <md-date>1904</md-date>
 <md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
 <md-date>1998-1999</md-date>
 <md-description>With reference to India</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1325464160">
 <md-title>Water, in press, 1998</md-title>
 <md-title-remainder>an index to news items on water resources selected from leading news papers</md-title-remainder>
 <md-date>1999</md-date>
 <md-description>Includes index</md-description>
 <md-medium>book</md-medium></location>
-<location id="LOC Solr Test" name="LOC Solr Test">
+<location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2167221470">
 <md-title>Water in press, 1997</md-title>
 <md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
 <md-date>1998</md-date>
 <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
 <md-date>2000</md-date>
 <md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="99732482">
 <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
 <md-date>2000</md-date>
 <md-description>&quot;May 2000.&quot;</md-description>
 <md-date>1997</md-date>
 <md-author>Bryan, Michelle</md-author>
 <md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="291719666">
 <md-title>A guide to Montana water quality regulation</md-title>
 <md-date>1997</md-date>
 <md-author>Bryan, Michelle</md-author>
 <md-title>Water technology management</md-title>
 <md-date>2001</md-date>
 <md-description>Collection of articles with reference to India</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="3200965964">
 <md-title>Water technology management</md-title>
 <md-date>2001</md-date>
 <md-description>Collection of articles with reference to India</md-description>
 <md-date>1999</md-date>
 <md-author>Bauer, Steve</md-author>
 <md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="67734618">
 <md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
 <md-date>1999</md-date>
 <md-author>Bauer, Steve</md-author>
 <md-date>1997</md-date>
 <md-author>Saffran, Karen Anita</md-author>
 <md-description>&quot;March 1997.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2908078765">
 <md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
 <md-date>1997</md-date>
 <md-author>Saffran, Karen Anita</md-author>
 <md-title>Surface water quality monitoring procedures manual</md-title>
 <md-date>1999</md-date>
 <md-description>&quot;GI-252&quot;--Cover</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2780087309">
 <md-title>Surface water quality monitoring procedures manual</md-title>
 <md-date>1999</md-date>
 <md-description>&quot;June 1999.&quot;</md-description>
 <md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
 <md-title-remainder>proceedings</md-title-remainder>
 <md-date>1997</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2748089445">
 <md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
 <md-title-remainder>proceedings</md-title-remainder>
 <md-date>1997</md-date>
 
 <md-title>Mercados e instituciones de aguas en Bolivia</md-title>
 <md-date>1998</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="4005818987">
 <md-title>Mercados e instituciones de aguas en Bolivia</md-title>
 <md-date>1998</md-date>
 <md-medium>book</md-medium></location>
 
 <md-title>Water law</md-title>
 <md-date>2000</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="3296959556">
 <md-title>Water law</md-title>
 <md-date>2000</md-date>
 <md-medium>book</md-medium></location>
index 79896b2..7964d8b 100644 (file)
@@ -10,7 +10,8 @@
 <md-title>Water</md-title>
 <md-date>1999</md-date>
 <md-author>De Villiers, Marq</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="488613273">
 <md-title>Water</md-title>
 <md-date>1999</md-date>
 <md-author>De Villiers, Marq</md-author>
 <md-title>Potable water and methods of detecting impurities</md-title>
 <md-date>1899-1906</md-date>
 <md-author>Baker, M. N</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1810338543">
 <md-title>Potable water and methods of detecting impurities</md-title>
 <md-date>1906</md-date>
 <md-author>Baker, M. N</md-author>
 <md-medium>book</md-medium></location>
-<location id="LOC Solr Test" name="LOC Solr Test">
+<location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1261468432">
 <md-title>Potable water and methods of detecting impurities</md-title>
 <md-date>1899</md-date>
 <md-author>Baker, M. N</md-author>
@@ -43,7 +46,8 @@
 <md-date>2000</md-date>
 <md-author>Majeed, Abdul</md-author>
 <md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1037483384">
 <md-title>Water</md-title>
 <md-date>2000</md-date>
 <md-author>Majeed, Abdul</md-author>
@@ -58,7 +62,8 @@
 <md-date>2000</md-date>
 <md-author>Grant, Pamela</md-author>
 <md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="648602593">
 <md-title>Water</md-title>
 <md-date>2000</md-date>
 <md-author>Grant, Pamela</md-author>
@@ -74,7 +79,8 @@
 <md-date>2000</md-date>
 <md-author>Fisher, D. E</md-author>
 <md-description>Includes index</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2652095853">
 <md-title>Water law</md-title>
 <md-date>2000</md-date>
 <md-author>Fisher, D. E</md-author>
@@ -89,7 +95,8 @@
 <md-title-remainder>questions and answers</md-title-remainder>
 <md-date>2000</md-date>
 <md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2684093717">
 <md-title>A Primer on fresh water</md-title>
 <md-title-remainder>questions and answers</md-title-remainder>
 <md-date>2000</md-date>
 <md-title>Water and water supplies</md-title>
 <md-date>1901</md-date>
 <md-author>Thresh, John Clough</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="520611137">
 <md-title>Water and water supplies</md-title>
 <md-date>1901</md-date>
 <md-author>Thresh, John Clough</md-author>
 <md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
 <md-date>1999-2000</md-date>
 <md-description>&quot;September 1999.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1069481248">
 <md-title>Water quality assessment of the State Water Project, 1998-99</md-title>
 <md-date>2000</md-date>
 <md-description>Cover title</md-description>
 <md-description>&quot;July 2000.&quot;</md-description>
 <md-medium>book</md-medium></location>
-<location id="LOC Solr Test" name="LOC Solr Test">
+<location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="3749836075">
 <md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
 <md-date>1999</md-date>
 <md-description>Cover title</md-description>
 <md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
 <md-date>1896</md-date>
 <md-author>Mason, William Pitt</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2359208654">
 <md-title>Water-supply</md-title>
 <md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
 <md-date>1896</md-date>
 <md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
 <md-date>1904</md-date>
 <md-author>Farnham, Henry P</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1682347087">
 <md-title>The law of waters and water rights</md-title>
 <md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
 <md-date>1904</md-date>
 <md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
 <md-date>1998-1999</md-date>
 <md-description>With reference to India</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1325464160">
 <md-title>Water, in press, 1998</md-title>
 <md-title-remainder>an index to news items on water resources selected from leading news papers</md-title-remainder>
 <md-date>1999</md-date>
 <md-description>Includes index</md-description>
 <md-medium>book</md-medium></location>
-<location id="LOC Solr Test" name="LOC Solr Test">
+<location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2167221470">
 <md-title>Water in press, 1997</md-title>
 <md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
 <md-date>1998</md-date>
 <md-date>1900-1901</md-date>
 <md-author>Frizell, Joseph P</md-author>
 <md-description>Original imprint 1901, corrected to 1900</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2322304367">
 <md-title>Water-power</md-title>
 <md-title-remainder>an outline of the development and application of the energy of flowing water</md-title-remainder>
 <md-date>1901</md-date>
 <md-author>Frizell, Joseph P</md-author>
 <md-medium>book</md-medium></location>
-<location id="LOC Solr Test" name="LOC Solr Test">
+<location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="707691898">
 <md-title>Water-power</md-title>
 <md-title-remainder>an outline of the development and application of the energy of flowing water</md-title-remainder>
 <md-date>1900</md-date>
 <md-title-remainder>The designing, construction, and maintenance of water-supply systems, both city and irrigation</md-title-remainder>
 <md-date>1903-1909</md-date>
 <md-author>Folwell, Amory Prescott</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="3196059541">
 <md-title>Water-supply engineering</md-title>
 <md-title-remainder>The designing, construction, and maintenance of water-supply systems, both city and irrigation</md-title-remainder>
 <md-date>1909</md-date>
 <md-author>Folwell, Amory Prescott</md-author>
 <md-medium>book</md-medium></location>
-<location id="LOC Solr Test" name="LOC Solr Test">
+<location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1000579097">
 <md-title>Water-supply engineering</md-title>
 <md-title-remainder>The designing, construction, and maintenance of water-supply systems, both city and irrigation</md-title-remainder>
 <md-date>1903</md-date>
 <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
 <md-date>2000</md-date>
 <md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="99732482">
 <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
 <md-date>2000</md-date>
 <md-description>&quot;May 2000.&quot;</md-description>
 <md-date>1997</md-date>
 <md-author>Bryan, Michelle</md-author>
 <md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="291719666">
 <md-title>A guide to Montana water quality regulation</md-title>
 <md-date>1997</md-date>
 <md-author>Bryan, Michelle</md-author>
 <md-title>Water technology management</md-title>
 <md-date>2001</md-date>
 <md-description>Collection of articles with reference to India</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="3200965964">
 <md-title>Water technology management</md-title>
 <md-date>2001</md-date>
 <md-description>Collection of articles with reference to India</md-description>
 <md-date>1999</md-date>
 <md-author>Bauer, Steve</md-author>
 <md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="67734618">
 <md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
 <md-date>1999</md-date>
 <md-author>Bauer, Steve</md-author>
 <md-date>1997</md-date>
 <md-author>Saffran, Karen Anita</md-author>
 <md-description>&quot;March 1997.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2908078765">
 <md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
 <md-date>1997</md-date>
 <md-author>Saffran, Karen Anita</md-author>
 <md-title>Surface water quality monitoring procedures manual</md-title>
 <md-date>1999</md-date>
 <md-description>&quot;GI-252&quot;--Cover</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2780087309">
 <md-title>Surface water quality monitoring procedures manual</md-title>
 <md-date>1999</md-date>
 <md-description>&quot;June 1999.&quot;</md-description>
 <md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
 <md-title-remainder>proceedings</md-title-remainder>
 <md-date>1997</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2748089445">
 <md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
 <md-title-remainder>proceedings</md-title-remainder>
 <md-date>1997</md-date>
index 00b1fd7..1d39bd2 100644 (file)
@@ -10,7 +10,8 @@
 <md-title>The nitrogen permitting and trading plan for Long Island Sound</md-title>
 <md-date>2000</md-date>
 <md-description>&quot;In response to Special Act No. 99-6.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="3168968100">
 <md-title>The nitrogen permitting and trading plan for Long Island Sound</md-title>
 <md-date>2000</md-date>
 <md-description>Title from cover</md-description>
@@ -24,7 +25,8 @@
 
 <md-title>Report of the Water commissioners to the Common council of the city of Albany;</md-title>
 <md-date>1872</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1554355631">
 <md-title>Report of the Water commissioners to the Common council of the city of Albany;</md-title>
 <md-date>1872</md-date>
 <md-medium>book</md-medium></location>
index 83670b4..419fce4 100644 (file)
@@ -10,7 +10,8 @@
 <md-title>Water</md-title>
 <md-date>1999</md-date>
 <md-author>De Villiers, Marq</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="488613273">
 <md-title>Water</md-title>
 <md-date>1999</md-date>
 <md-author>De Villiers, Marq</md-author>
 <md-title>Potable water and methods of detecting impurities</md-title>
 <md-date>1899-1906</md-date>
 <md-author>Baker, M. N</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1810338543">
 <md-title>Potable water and methods of detecting impurities</md-title>
 <md-date>1906</md-date>
 <md-author>Baker, M. N</md-author>
 <md-medium>book</md-medium></location>
-<location id="LOC Solr Test" name="LOC Solr Test">
+<location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1261468432">
 <md-title>Potable water and methods of detecting impurities</md-title>
 <md-date>1899</md-date>
 <md-author>Baker, M. N</md-author>
@@ -43,7 +46,8 @@
 <md-date>2000</md-date>
 <md-author>Majeed, Abdul</md-author>
 <md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1037483384">
 <md-title>Water</md-title>
 <md-date>2000</md-date>
 <md-author>Majeed, Abdul</md-author>
@@ -58,7 +62,8 @@
 <md-date>2000</md-date>
 <md-author>Grant, Pamela</md-author>
 <md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="648602593">
 <md-title>Water</md-title>
 <md-date>2000</md-date>
 <md-author>Grant, Pamela</md-author>
@@ -74,7 +79,8 @@
 <md-date>2000</md-date>
 <md-author>Fisher, D. E</md-author>
 <md-description>Includes index</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2652095853">
 <md-title>Water law</md-title>
 <md-date>2000</md-date>
 <md-author>Fisher, D. E</md-author>
@@ -89,7 +95,8 @@
 <md-title-remainder>questions and answers</md-title-remainder>
 <md-date>2000</md-date>
 <md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2684093717">
 <md-title>A Primer on fresh water</md-title>
 <md-title-remainder>questions and answers</md-title-remainder>
 <md-date>2000</md-date>
 <md-title>Water and water supplies</md-title>
 <md-date>1901</md-date>
 <md-author>Thresh, John Clough</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="520611137">
 <md-title>Water and water supplies</md-title>
 <md-date>1901</md-date>
 <md-author>Thresh, John Clough</md-author>
 <md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
 <md-date>1999-2000</md-date>
 <md-description>&quot;September 1999.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1069481248">
 <md-title>Water quality assessment of the State Water Project, 1998-99</md-title>
 <md-date>2000</md-date>
 <md-description>Cover title</md-description>
 <md-description>&quot;July 2000.&quot;</md-description>
 <md-medium>book</md-medium></location>
-<location id="LOC Solr Test" name="LOC Solr Test">
+<location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="3749836075">
 <md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
 <md-date>1999</md-date>
 <md-description>Cover title</md-description>
 <md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
 <md-date>1896</md-date>
 <md-author>Mason, William Pitt</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2359208654">
 <md-title>Water-supply</md-title>
 <md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
 <md-date>1896</md-date>
 <md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
 <md-date>1904</md-date>
 <md-author>Farnham, Henry P</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1682347087">
 <md-title>The law of waters and water rights</md-title>
 <md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
 <md-date>1904</md-date>
 <md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
 <md-date>1998-1999</md-date>
 <md-description>With reference to India</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1325464160">
 <md-title>Water, in press, 1998</md-title>
 <md-title-remainder>an index to news items on water resources selected from leading news papers</md-title-remainder>
 <md-date>1999</md-date>
 <md-description>Includes index</md-description>
 <md-medium>book</md-medium></location>
-<location id="LOC Solr Test" name="LOC Solr Test">
+<location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2167221470">
 <md-title>Water in press, 1997</md-title>
 <md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
 <md-date>1998</md-date>
 <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
 <md-date>2000</md-date>
 <md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="99732482">
 <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
 <md-date>2000</md-date>
 <md-description>&quot;May 2000.&quot;</md-description>
 <md-date>1997</md-date>
 <md-author>Bryan, Michelle</md-author>
 <md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="291719666">
 <md-title>A guide to Montana water quality regulation</md-title>
 <md-date>1997</md-date>
 <md-author>Bryan, Michelle</md-author>
 <md-title>Water technology management</md-title>
 <md-date>2001</md-date>
 <md-description>Collection of articles with reference to India</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="3200965964">
 <md-title>Water technology management</md-title>
 <md-date>2001</md-date>
 <md-description>Collection of articles with reference to India</md-description>
 <md-date>1999</md-date>
 <md-author>Bauer, Steve</md-author>
 <md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="67734618">
 <md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
 <md-date>1999</md-date>
 <md-author>Bauer, Steve</md-author>
 <md-date>1997</md-date>
 <md-author>Saffran, Karen Anita</md-author>
 <md-description>&quot;March 1997.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2908078765">
 <md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
 <md-date>1997</md-date>
 <md-author>Saffran, Karen Anita</md-author>
 <md-title>Surface water quality monitoring procedures manual</md-title>
 <md-date>1999</md-date>
 <md-description>&quot;GI-252&quot;--Cover</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2780087309">
 <md-title>Surface water quality monitoring procedures manual</md-title>
 <md-date>1999</md-date>
 <md-description>&quot;June 1999.&quot;</md-description>
 <md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
 <md-title-remainder>proceedings</md-title-remainder>
 <md-date>1997</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2748089445">
 <md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
 <md-title-remainder>proceedings</md-title-remainder>
 <md-date>1997</md-date>
 
 <md-title>Mercados e instituciones de aguas en Bolivia</md-title>
 <md-date>1998</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="4005818987">
 <md-title>Mercados e instituciones de aguas en Bolivia</md-title>
 <md-date>1998</md-date>
 <md-medium>book</md-medium></location>
 
 <md-title>Water law</md-title>
 <md-date>2000</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="3296959556">
 <md-title>Water law</md-title>
 <md-date>2000</md-date>
 <md-medium>book</md-medium></location>
index 00b1fd7..1d39bd2 100644 (file)
@@ -10,7 +10,8 @@
 <md-title>The nitrogen permitting and trading plan for Long Island Sound</md-title>
 <md-date>2000</md-date>
 <md-description>&quot;In response to Special Act No. 99-6.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="3168968100">
 <md-title>The nitrogen permitting and trading plan for Long Island Sound</md-title>
 <md-date>2000</md-date>
 <md-description>Title from cover</md-description>
@@ -24,7 +25,8 @@
 
 <md-title>Report of the Water commissioners to the Common council of the city of Albany;</md-title>
 <md-date>1872</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1554355631">
 <md-title>Report of the Water commissioners to the Common council of the city of Albany;</md-title>
 <md-date>1872</md-date>
 <md-medium>book</md-medium></location>
index 83670b4..419fce4 100644 (file)
@@ -10,7 +10,8 @@
 <md-title>Water</md-title>
 <md-date>1999</md-date>
 <md-author>De Villiers, Marq</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="488613273">
 <md-title>Water</md-title>
 <md-date>1999</md-date>
 <md-author>De Villiers, Marq</md-author>
 <md-title>Potable water and methods of detecting impurities</md-title>
 <md-date>1899-1906</md-date>
 <md-author>Baker, M. N</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1810338543">
 <md-title>Potable water and methods of detecting impurities</md-title>
 <md-date>1906</md-date>
 <md-author>Baker, M. N</md-author>
 <md-medium>book</md-medium></location>
-<location id="LOC Solr Test" name="LOC Solr Test">
+<location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1261468432">
 <md-title>Potable water and methods of detecting impurities</md-title>
 <md-date>1899</md-date>
 <md-author>Baker, M. N</md-author>
@@ -43,7 +46,8 @@
 <md-date>2000</md-date>
 <md-author>Majeed, Abdul</md-author>
 <md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1037483384">
 <md-title>Water</md-title>
 <md-date>2000</md-date>
 <md-author>Majeed, Abdul</md-author>
@@ -58,7 +62,8 @@
 <md-date>2000</md-date>
 <md-author>Grant, Pamela</md-author>
 <md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="648602593">
 <md-title>Water</md-title>
 <md-date>2000</md-date>
 <md-author>Grant, Pamela</md-author>
@@ -74,7 +79,8 @@
 <md-date>2000</md-date>
 <md-author>Fisher, D. E</md-author>
 <md-description>Includes index</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2652095853">
 <md-title>Water law</md-title>
 <md-date>2000</md-date>
 <md-author>Fisher, D. E</md-author>
@@ -89,7 +95,8 @@
 <md-title-remainder>questions and answers</md-title-remainder>
 <md-date>2000</md-date>
 <md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2684093717">
 <md-title>A Primer on fresh water</md-title>
 <md-title-remainder>questions and answers</md-title-remainder>
 <md-date>2000</md-date>
 <md-title>Water and water supplies</md-title>
 <md-date>1901</md-date>
 <md-author>Thresh, John Clough</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="520611137">
 <md-title>Water and water supplies</md-title>
 <md-date>1901</md-date>
 <md-author>Thresh, John Clough</md-author>
 <md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
 <md-date>1999-2000</md-date>
 <md-description>&quot;September 1999.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1069481248">
 <md-title>Water quality assessment of the State Water Project, 1998-99</md-title>
 <md-date>2000</md-date>
 <md-description>Cover title</md-description>
 <md-description>&quot;July 2000.&quot;</md-description>
 <md-medium>book</md-medium></location>
-<location id="LOC Solr Test" name="LOC Solr Test">
+<location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="3749836075">
 <md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
 <md-date>1999</md-date>
 <md-description>Cover title</md-description>
 <md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
 <md-date>1896</md-date>
 <md-author>Mason, William Pitt</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2359208654">
 <md-title>Water-supply</md-title>
 <md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
 <md-date>1896</md-date>
 <md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
 <md-date>1904</md-date>
 <md-author>Farnham, Henry P</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1682347087">
 <md-title>The law of waters and water rights</md-title>
 <md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
 <md-date>1904</md-date>
 <md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
 <md-date>1998-1999</md-date>
 <md-description>With reference to India</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1325464160">
 <md-title>Water, in press, 1998</md-title>
 <md-title-remainder>an index to news items on water resources selected from leading news papers</md-title-remainder>
 <md-date>1999</md-date>
 <md-description>Includes index</md-description>
 <md-medium>book</md-medium></location>
-<location id="LOC Solr Test" name="LOC Solr Test">
+<location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2167221470">
 <md-title>Water in press, 1997</md-title>
 <md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
 <md-date>1998</md-date>
 <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
 <md-date>2000</md-date>
 <md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="99732482">
 <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
 <md-date>2000</md-date>
 <md-description>&quot;May 2000.&quot;</md-description>
 <md-date>1997</md-date>
 <md-author>Bryan, Michelle</md-author>
 <md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="291719666">
 <md-title>A guide to Montana water quality regulation</md-title>
 <md-date>1997</md-date>
 <md-author>Bryan, Michelle</md-author>
 <md-title>Water technology management</md-title>
 <md-date>2001</md-date>
 <md-description>Collection of articles with reference to India</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="3200965964">
 <md-title>Water technology management</md-title>
 <md-date>2001</md-date>
 <md-description>Collection of articles with reference to India</md-description>
 <md-date>1999</md-date>
 <md-author>Bauer, Steve</md-author>
 <md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="67734618">
 <md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
 <md-date>1999</md-date>
 <md-author>Bauer, Steve</md-author>
 <md-date>1997</md-date>
 <md-author>Saffran, Karen Anita</md-author>
 <md-description>&quot;March 1997.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2908078765">
 <md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
 <md-date>1997</md-date>
 <md-author>Saffran, Karen Anita</md-author>
 <md-title>Surface water quality monitoring procedures manual</md-title>
 <md-date>1999</md-date>
 <md-description>&quot;GI-252&quot;--Cover</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2780087309">
 <md-title>Surface water quality monitoring procedures manual</md-title>
 <md-date>1999</md-date>
 <md-description>&quot;June 1999.&quot;</md-description>
 <md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
 <md-title-remainder>proceedings</md-title-remainder>
 <md-date>1997</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2748089445">
 <md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
 <md-title-remainder>proceedings</md-title-remainder>
 <md-date>1997</md-date>
 
 <md-title>Mercados e instituciones de aguas en Bolivia</md-title>
 <md-date>1998</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="4005818987">
 <md-title>Mercados e instituciones de aguas en Bolivia</md-title>
 <md-date>1998</md-date>
 <md-medium>book</md-medium></location>
 
 <md-title>Water law</md-title>
 <md-date>2000</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="3296959556">
 <md-title>Water law</md-title>
 <md-date>2000</md-date>
 <md-medium>book</md-medium></location>
index 83670b4..419fce4 100644 (file)
@@ -10,7 +10,8 @@
 <md-title>Water</md-title>
 <md-date>1999</md-date>
 <md-author>De Villiers, Marq</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="488613273">
 <md-title>Water</md-title>
 <md-date>1999</md-date>
 <md-author>De Villiers, Marq</md-author>
 <md-title>Potable water and methods of detecting impurities</md-title>
 <md-date>1899-1906</md-date>
 <md-author>Baker, M. N</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1810338543">
 <md-title>Potable water and methods of detecting impurities</md-title>
 <md-date>1906</md-date>
 <md-author>Baker, M. N</md-author>
 <md-medium>book</md-medium></location>
-<location id="LOC Solr Test" name="LOC Solr Test">
+<location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1261468432">
 <md-title>Potable water and methods of detecting impurities</md-title>
 <md-date>1899</md-date>
 <md-author>Baker, M. N</md-author>
@@ -43,7 +46,8 @@
 <md-date>2000</md-date>
 <md-author>Majeed, Abdul</md-author>
 <md-description>&quot;Balochistan conservation strategy background paper&quot;--T.p</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1037483384">
 <md-title>Water</md-title>
 <md-date>2000</md-date>
 <md-author>Majeed, Abdul</md-author>
@@ -58,7 +62,8 @@
 <md-date>2000</md-date>
 <md-author>Grant, Pamela</md-author>
 <md-description>Examines major environmental issues surrounding water, giving examples of attempts to solve global problems and sources for more information</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="648602593">
 <md-title>Water</md-title>
 <md-date>2000</md-date>
 <md-author>Grant, Pamela</md-author>
@@ -74,7 +79,8 @@
 <md-date>2000</md-date>
 <md-author>Fisher, D. E</md-author>
 <md-description>Includes index</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2652095853">
 <md-title>Water law</md-title>
 <md-date>2000</md-date>
 <md-author>Fisher, D. E</md-author>
@@ -89,7 +95,8 @@
 <md-title-remainder>questions and answers</md-title-remainder>
 <md-date>2000</md-date>
 <md-description>Issued also in French under title: Notions élémentaires sur l&apos;eau douce : questions et réponses</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2684093717">
 <md-title>A Primer on fresh water</md-title>
 <md-title-remainder>questions and answers</md-title-remainder>
 <md-date>2000</md-date>
 <md-title>Water and water supplies</md-title>
 <md-date>1901</md-date>
 <md-author>Thresh, John Clough</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="520611137">
 <md-title>Water and water supplies</md-title>
 <md-date>1901</md-date>
 <md-author>Thresh, John Clough</md-author>
 <md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
 <md-date>1999-2000</md-date>
 <md-description>&quot;September 1999.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1069481248">
 <md-title>Water quality assessment of the State Water Project, 1998-99</md-title>
 <md-date>2000</md-date>
 <md-description>Cover title</md-description>
 <md-description>&quot;July 2000.&quot;</md-description>
 <md-medium>book</md-medium></location>
-<location id="LOC Solr Test" name="LOC Solr Test">
+<location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="3749836075">
 <md-title>Water quality assessment of the State Water Project, 1996-97</md-title>
 <md-date>1999</md-date>
 <md-description>Cover title</md-description>
 <md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
 <md-date>1896</md-date>
 <md-author>Mason, William Pitt</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2359208654">
 <md-title>Water-supply</md-title>
 <md-title-remainder>(Considered principally from a sanitary standpoint.)</md-title-remainder>
 <md-date>1896</md-date>
 <md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
 <md-date>1904</md-date>
 <md-author>Farnham, Henry P</md-author>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1682347087">
 <md-title>The law of waters and water rights</md-title>
 <md-title-remainder>international, national, state, municipal, and individual, including irrigation, drainage, and municipal water supply</md-title-remainder>
 <md-date>1904</md-date>
 <md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
 <md-date>1998-1999</md-date>
 <md-description>With reference to India</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="1325464160">
 <md-title>Water, in press, 1998</md-title>
 <md-title-remainder>an index to news items on water resources selected from leading news papers</md-title-remainder>
 <md-date>1999</md-date>
 <md-description>Includes index</md-description>
 <md-medium>book</md-medium></location>
-<location id="LOC Solr Test" name="LOC Solr Test">
+<location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2167221470">
 <md-title>Water in press, 1997</md-title>
 <md-title-remainder>an index of news items on water resources selected from leading news papers</md-title-remainder>
 <md-date>1998</md-date>
 <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
 <md-date>2000</md-date>
 <md-description>&quot;EPA Contract 68-C7-0011, work assignment 0-38.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="99732482">
 <md-title>Regulations on the disposal of arsenic residuals from drinking water treatment plants</md-title>
 <md-date>2000</md-date>
 <md-description>&quot;May 2000.&quot;</md-description>
 <md-date>1997</md-date>
 <md-author>Bryan, Michelle</md-author>
 <md-description>&quot;A joint publication of Legislative Environmental Policy Office, Environmental Quality Council [and] Montana University System, Water Center&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="291719666">
 <md-title>A guide to Montana water quality regulation</md-title>
 <md-date>1997</md-date>
 <md-author>Bryan, Michelle</md-author>
 <md-title>Water technology management</md-title>
 <md-date>2001</md-date>
 <md-description>Collection of articles with reference to India</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="3200965964">
 <md-title>Water technology management</md-title>
 <md-date>2001</md-date>
 <md-description>Collection of articles with reference to India</md-description>
 <md-date>1999</md-date>
 <md-author>Bauer, Steve</md-author>
 <md-description>&quot;This document was developed for US Environmental Protection Agency, Region 10, Seattle Washington, with the Idaho Water Resources Institute, University of Idaho.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="67734618">
 <md-title>Aquatic habitat indicators and their application to water quality objectives within the Clean Water Act</md-title>
 <md-date>1999</md-date>
 <md-author>Bauer, Steve</md-author>
 <md-date>1997</md-date>
 <md-author>Saffran, Karen Anita</md-author>
 <md-description>&quot;March 1997.&quot;</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2908078765">
 <md-title>An empirical analysis of water temperature and dissolved oxygen conditions in the Red Deer River</md-title>
 <md-date>1997</md-date>
 <md-author>Saffran, Karen Anita</md-author>
 <md-title>Surface water quality monitoring procedures manual</md-title>
 <md-date>1999</md-date>
 <md-description>&quot;GI-252&quot;--Cover</md-description>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2780087309">
 <md-title>Surface water quality monitoring procedures manual</md-title>
 <md-date>1999</md-date>
 <md-description>&quot;June 1999.&quot;</md-description>
 <md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
 <md-title-remainder>proceedings</md-title-remainder>
 <md-date>1997</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="2748089445">
 <md-title>International Conference on Management of Drinking Water Resources, Chennai, December 3-5, 1997</md-title>
 <md-title-remainder>proceedings</md-title-remainder>
 <md-date>1997</md-date>
 
 <md-title>Mercados e instituciones de aguas en Bolivia</md-title>
 <md-date>1998</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="4005818987">
 <md-title>Mercados e instituciones de aguas en Bolivia</md-title>
 <md-date>1998</md-date>
 <md-medium>book</md-medium></location>
 
 <md-title>Water law</md-title>
 <md-date>2000</md-date>
-<md-medium>book</md-medium><location id="LOC Solr Test" name="LOC Solr Test">
+<md-medium>book</md-medium><location id="LOC Solr Test"
+ name="LOC Solr Test" checksum="3296959556">
 <md-title>Water law</md-title>
 <md-date>2000</md-date>
 <md-medium>book</md-medium></location>
index 7fa7d64..5da3757 100644 (file)
@@ -10,7 +10,8 @@
 <md-title>Adobe Illustrator for the Mac</md-title>
 <md-title-remainder>fast &amp; easy</md-title-remainder>
 <md-date>2001</md-date>
-<md-author>Woodward, C. Michael</md-author><location id="id_solr" name="LOC (SOLR)">
+<md-author>Woodward, C. Michael</md-author><location id="id_solr"
+ name="LOC (SOLR)" checksum="1471384697">
 <md-title>Adobe Illustrator for the Mac</md-title>
 <md-title-remainder>fast &amp; easy</md-title-remainder>
 <md-date>2001</md-date>
@@ -21,7 +22,8 @@
 <hit>
 
 <md-title>Advanced computer performance modeling and simulation</md-title>
-<md-date>1998</md-date><location id="id_solr" name="LOC (SOLR)">
+<md-date>1998</md-date><location id="id_solr"
+ name="LOC (SOLR)" checksum="3924860916">
 <md-title>Advanced computer performance modeling and simulation</md-title>
 <md-date>1998</md-date></location>
 <relevance>43542</relevance>
@@ -33,7 +35,8 @@
 <md-title-remainder>issues surrounding the establishment of an international regime</md-title-remainder>
 <md-date>2000</md-date>
 <md-author>Aldrich, Richard W</md-author>
-<md-description>&quot;April 2000.&quot;</md-description><location id="id_solr" name="LOC (SOLR)">
+<md-description>&quot;April 2000.&quot;</md-description><location id="id_solr"
+ name="LOC (SOLR)" checksum="2501955422">
 <md-title>Cyberterrorism and computer crimes</md-title>
 <md-title-remainder>issues surrounding the establishment of an international regime</md-title-remainder>
 <md-date>2000</md-date>
@@ -47,7 +50,8 @@
 <md-title>Software design and usability</md-title>
 <md-title-remainder>talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson &amp; Jed Harris, Terry Winograd, Stephanie Rosenbaum</md-title-remainder>
 <md-date>2000</md-date>
-<md-author>Kaasgaard, Klaus</md-author><location id="id_solr" name="LOC (SOLR)">
+<md-author>Kaasgaard, Klaus</md-author><location id="id_solr"
+ name="LOC (SOLR)" checksum="514030763">
 <md-title>Software design and usability</md-title>
 <md-title-remainder>talks with Bonnie Nardi, Jakob Nielsen, David Smith, Austin Henderson &amp; Jed Harris, Terry Winograd, Stephanie Rosenbaum</md-title-remainder>
 <md-date>2000</md-date>
@@ -60,7 +64,8 @@
 <md-title>Everything you need to know about the dangers of computer hacking</md-title>
 <md-date>2000</md-date>
 <md-author>Knittel, John</md-author>
-<md-description>Explains what computer hacking is, who does it, and how dangerous it can be</md-description><location id="id_solr" name="LOC (SOLR)">
+<md-description>Explains what computer hacking is, who does it, and how dangerous it can be</md-description><location id="id_solr"
+ name="LOC (SOLR)" checksum="440813972">
 <md-title>Everything you need to know about the dangers of computer hacking</md-title>
 <md-date>2000</md-date>
 <md-author>Knittel, John</md-author>
@@ -72,7 +77,8 @@
 
 <md-title>Computer peripherals</md-title>
 <md-date>1995</md-date>
-<md-author>Cook, Barry M</md-author><location id="id_solr" name="LOC (SOLR)">
+<md-author>Cook, Barry M</md-author><location id="id_solr"
+ name="LOC (SOLR)" checksum="3558776961">
 <md-title>Computer peripherals</md-title>
 <md-date>1995</md-date>
 <md-author>Cook, Barry M</md-author></location>
@@ -83,7 +89,8 @@
 
 <md-title>Kids&apos; computer book</md-title>
 <md-date>1994</md-date>
-<md-description>Discusses a variety of educational and game software for children  with suggestions for setting up a computer system. Includes a 3 1/2 in. disk with 6 shareware programs for children</md-description><location id="id_solr" name="LOC (SOLR)">
+<md-description>Discusses a variety of educational and game software for children  with suggestions for setting up a computer system. Includes a 3 1/2 in. disk with 6 shareware programs for children</md-description><location id="id_solr"
+ name="LOC (SOLR)" checksum="2747856609">
 <md-title>Kids&apos; computer book</md-title>
 <md-date>1994</md-date>
 <md-description>&quot;For kids and their parents&quot;--Cover</md-description>
 
 <md-title>Computer friendly</md-title>
 <md-date>1999</md-date>
-<md-author>Steinbacher, Raymond</md-author><location id="id_solr" name="LOC (SOLR)">
+<md-author>Steinbacher, Raymond</md-author><location id="id_solr"
+ name="LOC (SOLR)" checksum="194912785">
 <md-title>Computer friendly</md-title>
 <md-date>1999</md-date>
 <md-author>Steinbacher, Raymond</md-author></location>
 
 <md-title>Computer misuse</md-title>
 <md-date>1999</md-date>
-<md-description>&quot;Also published as Parliamentary Paper E 31AO&quot;--T.p. verso</md-description><location id="id_solr" name="LOC (SOLR)">
+<md-description>&quot;Also published as Parliamentary Paper E 31AO&quot;--T.p. verso</md-description><location id="id_solr"
+ name="LOC (SOLR)" checksum="268129576">
 <md-title>Computer misuse</md-title>
 <md-date>1999</md-date>
 <md-description>&quot;May 1999.&quot;</md-description>
 <md-title>Computer networking</md-title>
 <md-title-remainder>a top-down approach featuring the Internet</md-title-remainder>
 <md-date>2001</md-date>
-<md-author>Ross, Keith W</md-author><location id="id_solr" name="LOC (SOLR)">
+<md-author>Ross, Keith W</md-author><location id="id_solr"
+ name="LOC (SOLR)" checksum="3485560170">
 <md-title>Computer networking</md-title>
 <md-title-remainder>a top-down approach featuring the Internet</md-title-remainder>
 <md-date>2001</md-date>
 <md-title>CorelDRAW 8 for Windows</md-title>
 <md-date>1998</md-date>
 <md-author>Davis, Phyllis</md-author>
-<md-description>Includes index</md-description><location id="id_solr" name="LOC (SOLR)">
+<md-description>Includes index</md-description><location id="id_solr"
+ name="LOC (SOLR)" checksum="1570852302">
 <md-title>CorelDRAW 8 for Windows</md-title>
 <md-date>1998</md-date>
 <md-author>Davis, Phyllis</md-author>
 <md-title-remainder>the official guide</md-title-remainder>
 <md-date>2000</md-date>
 <md-author>Langer, Maria</md-author>
-<md-description>&quot;Covers Quicken deluxe 2000 for the Mac&quot;--Cover</md-description><location id="id_solr" name="LOC (SOLR)">
+<md-description>&quot;Covers Quicken deluxe 2000 for the Mac&quot;--Cover</md-description><location id="id_solr"
+ name="LOC (SOLR)" checksum="3705210543">
 <md-title>Quicken 2000 for the Mac</md-title>
 <md-title-remainder>the official guide</md-title-remainder>
 <md-date>2000</md-date>
 <hit>
 
 <md-title>Sicherheit und Schutz im Netz</md-title>
-<md-date>1998</md-date><location id="id_solr" name="LOC (SOLR)">
+<md-date>1998</md-date><location id="id_solr"
+ name="LOC (SOLR)" checksum="932616346">
 <md-title>Sicherheit und Schutz im Netz</md-title>
 <md-date>1998</md-date></location>
 <relevance>32656</relevance>
 <md-title>Unix Secure Shell</md-title>
 <md-date>1999</md-date>
 <md-author>Carasik, Anne H</md-author>
-<md-description>Includes index</md-description><location id="id_solr" name="LOC (SOLR)">
+<md-description>Includes index</md-description><location id="id_solr"
+ name="LOC (SOLR)" checksum="2109620653">
 <md-title>Unix Secure Shell</md-title>
 <md-date>1999</md-date>
 <md-author>Carasik, Anne H</md-author>
 <md-title>Eight International Conference on Computer Communications and Networks</md-title>
 <md-title-remainder>proceedings, 11-13 October 1999, Boston, Massachusetts</md-title-remainder>
 <md-date>1999</md-date>
-<md-description>&quot;IEEE catalog number 99EX370&quot;--T.p. verso</md-description><location id="id_solr" name="LOC (SOLR)">
+<md-description>&quot;IEEE catalog number 99EX370&quot;--T.p. verso</md-description><location id="id_solr"
+ name="LOC (SOLR)" checksum="759931950">
 <md-title>Eight International Conference on Computer Communications and Networks</md-title>
 <md-title-remainder>proceedings, 11-13 October 1999, Boston, Massachusetts</md-title-remainder>
 <md-date>1999</md-date>
 <md-title>Building storage networks</md-title>
 <md-date>2000</md-date>
 <md-author>Farley, Marc</md-author>
-<md-description>Includes index</md-description><location id="id_solr" name="LOC (SOLR)">
+<md-description>Includes index</md-description><location id="id_solr"
+ name="LOC (SOLR)" checksum="2282305049">
 <md-title>Building storage networks</md-title>
 <md-date>2000</md-date>
 <md-author>Farley, Marc</md-author>
 <md-title-remainder>the definitive control language programming guide</md-title-remainder>
 <md-date>1999</md-date>
 <md-author>Malaga, Ernie</md-author>
-<md-description>Includes index</md-description><location id="id_solr" name="LOC (SOLR)">
+<md-description>Includes index</md-description><location id="id_solr"
+ name="LOC (SOLR)" checksum="2036403862">
 <md-title>Complete CL</md-title>
 <md-title-remainder>the definitive control language programming guide</md-title-remainder>
 <md-date>1999</md-date>
 <md-title>3D games</md-title>
 <md-title-remainder>real-time rendering and software technology</md-title-remainder>
 <md-date>2001</md-date>
-<md-author>Watt, Alan H</md-author><location id="id_solr" name="LOC (SOLR)">
+<md-author>Watt, Alan H</md-author><location id="id_solr"
+ name="LOC (SOLR)" checksum="3459309356">
 <md-title>3D games</md-title>
 <md-title-remainder>real-time rendering and software technology</md-title-remainder>
 <md-date>2001</md-date>
 
 <md-title>Java applications strategies for the AS/400</md-title>
 <md-date>1999</md-date>
-<md-author>Denoncourt, Don</md-author><location id="id_solr" name="LOC (SOLR)">
+<md-author>Denoncourt, Don</md-author><location id="id_solr"
+ name="LOC (SOLR)" checksum="3239658983">
 <md-title>Java applications strategies for the AS/400</md-title>
 <md-date>1999</md-date>
 <md-author>Denoncourt, Don</md-author></location>
 <md-title>Mastering algorithms with C</md-title>
 <md-date>1999</md-date>
 <md-author>Loudon, Kyle</md-author>
-<md-description>&quot;Useful techniques from sorting to encryption&quot;--Cover</md-description><location id="id_solr" name="LOC (SOLR)">
+<md-description>&quot;Useful techniques from sorting to encryption&quot;--Cover</md-description><location id="id_solr"
+ name="LOC (SOLR)" checksum="121695994">
 <md-title>Mastering algorithms with C</md-title>
 <md-date>1999</md-date>
 <md-author>Loudon, Kyle</md-author>
index 7a97754..d21e518 100644 (file)
@@ -10,7 +10,8 @@
 <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
 <md-description>This data base is a computer based bibliography of marine geology.  It allows 
 searching by topic and geographic location, similar to GEOREF.  It is currently 
-under development to replace the printed Bibliography of Marine Geology</md-description><location id="z3950.indexdata.com/gils" name="gils">
+under development to replace the printed Bibliography of Marine Geology</md-description><location id="z3950.indexdata.com/gils"
+ name="gils" checksum="2074161109">
 <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
 <md-description tag="520">This data base is a computer based bibliography of marine geology.  It allows 
 searching by topic and geographic location, similar to GEOREF.  It is currently 
@@ -28,7 +29,8 @@ under development to replace the printed Bibliography of Marine Geology</md-desc
 bedrock for a large number of bedrock wells inventoried by the Maine Geological 
 Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also 
 show bedrock topography and potentiometric surface.  Geographic coverage is 
-restricted to Southern Maine</md-description><location id="z3950.indexdata.com/gils" name="gils">
+restricted to Southern Maine</md-description><location id="z3950.indexdata.com/gils"
+ name="gils" checksum="1899968820">
 <md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
 <md-description tag="520">A series of 1:250,000 scale maps showing well yield, well depth, and depth to 
 bedrock for a large number of bedrock wells inventoried by the Maine Geological 
@@ -46,7 +48,8 @@ restricted to Southern Maine</md-description>
 <md-title>OIL/GAS DRILLING</md-title>
 <md-description>This database contains information on oil and gas drilling such as well name, 
 operator, driller, location, depth, copies of logs run, permits, samples 
-(cuttings, core), completion records</md-description><location id="z3950.indexdata.com/gils" name="gils">
+(cuttings, core), completion records</md-description><location id="z3950.indexdata.com/gils"
+ name="gils" checksum="1725776531">
 <md-title>OIL/GAS DRILLING</md-title>
 <md-description tag="520">This database contains information on oil and gas drilling such as well name, 
 operator, driller, location, depth, copies of logs run, permits, samples 
index d1e8a82..1a1a40b 100644 (file)
@@ -8,7 +8,8 @@
 <hit>
 
 <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
-<md-description>This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description><location id="z3950.indexdata.com/gils" name="gils">
+<md-description>This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description><location id="z3950.indexdata.com/gils"
+ name="gils" checksum="2074161109">
 <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
 <md-description>This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description></location>
 <relevance>9416</relevance>
@@ -17,7 +18,8 @@
 <hit>
 
 <md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
-<md-description>A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also show bedrock topography and potentiometric surface.  Geographic coverage is restricted to Southern Maine</md-description><location id="z3950.indexdata.com/gils" name="gils">
+<md-description>A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also show bedrock topography and potentiometric surface.  Geographic coverage is restricted to Southern Maine</md-description><location id="z3950.indexdata.com/gils"
+ name="gils" checksum="1899968820">
 <md-title>GROUNDWATER RESOURCE MAPS - COUNTY SERIES</md-title>
 <md-description>A series of 1:250,000 scale maps showing well yield, well depth, and depth to bedrock for a large number of bedrock wells inventoried by the Maine Geological Survey in the mid-to late 1970&apos;s comprises this data set.  Some series also show bedrock topography and potentiometric surface.  Geographic coverage is restricted to Southern Maine</md-description></location>
 <relevance>0</relevance>
@@ -26,7 +28,8 @@
 <hit>
 
 <md-title>OIL/GAS DRILLING</md-title>
-<md-description>This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records</md-description><location id="z3950.indexdata.com/gils" name="gils">
+<md-description>This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records</md-description><location id="z3950.indexdata.com/gils"
+ name="gils" checksum="1725776531">
 <md-title>OIL/GAS DRILLING</md-title>
 <md-description>This database contains information on oil and gas drilling such as well name, operator, driller, location, depth, copies of logs run, permits, samples (cuttings, core), completion records</md-description></location>
 <relevance>0</relevance>
index 57aba5a..78d7789 100644 (file)
@@ -8,7 +8,8 @@
 <hit>
 
 <md-title>WATER WELL DATA</md-title>
-<md-description>This database contains the following information on water wells in Nevada: driller&apos;s name, owner&apos;s name, location, formations encountered, lithologic descriptions, water level, and water quality</md-description><location id="my" name="marcserver">
+<md-description>This database contains the following information on water wells in Nevada: driller&apos;s name, owner&apos;s name, location, formations encountered, lithologic descriptions, water level, and water quality</md-description><location id="my"
+ name="marcserver" checksum="3602387">
 <md-title>WATER WELL DATA</md-title>
 <md-description tag="520">This database contains the following information on water wells in Nevada: driller&apos;s name, owner&apos;s name, location, formations encountered, lithologic descriptions, water level, and water quality</md-description>
 <md-description tag="513">1930-PRESENT</md-description></location>
@@ -17,7 +18,8 @@
 <hit>
 
 <md-title>UTAH GEOLOGIC MAP BIBLIOGRAPHY</md-title>
-<md-description>This collection consists of theses, dissertations, and other unpublished maps as well as published maps of the geology of Utah.  Some maps of the collection are xeroxed from limited collections.  Cross-sections are included in set.  Data file consists of map bibliography</md-description><location id="my" name="marcserver">
+<md-description>This collection consists of theses, dissertations, and other unpublished maps as well as published maps of the geology of Utah.  Some maps of the collection are xeroxed from limited collections.  Cross-sections are included in set.  Data file consists of map bibliography</md-description><location id="my"
+ name="marcserver" checksum="4291493253">
 <md-title>UTAH GEOLOGIC MAP BIBLIOGRAPHY</md-title>
 <md-description tag="520">This collection consists of theses, dissertations, and other unpublished maps as well as published maps of the geology of Utah.  Some maps of the collection are xeroxed from limited collections.  Cross-sections are included in set.  Data file consists of map bibliography</md-description>
 <md-description tag="513">-PRESENT</md-description></location>
@@ -26,7 +28,8 @@
 <hit>
 
 <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
-<md-description>Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description><location id="my" name="marcserver">
+<md-description>Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description><location id="my"
+ name="marcserver" checksum="64172">
 <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
 <md-description tag="520">Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description>
 <md-description tag="513">-PRESENT</md-description></location>
@@ -35,7 +38,8 @@
 <hit>
 
 <md-title>UTAH EARTHQUAKE EPICENTERS</md-title>
-<md-description>Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description><location id="my" name="marcserver">
+<md-description>Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description><location id="my"
+ name="marcserver" checksum="3602387">
 <md-title>UTAH EARTHQUAKE EPICENTERS</md-title>
 <md-description tag="520">Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description>
 <md-description tag="513">-PRESENT</md-description></location>
@@ -44,7 +48,8 @@
 <hit>
 
 <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
-<md-description>This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description><location id="my" name="marcserver">
+<md-description>This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description><location id="my"
+ name="marcserver" checksum="4291493253">
 <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
 <md-description tag="520">This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description>
 <md-description tag="513">1692-PRESENT</md-description></location>
@@ -53,7 +58,8 @@
 <hit>
 
 <md-title>AUTOMATED FLOOD WARNING NETWORK</md-title>
-<md-description>The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values)</md-description><location id="my" name="marcserver">
+<md-description>The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values)</md-description><location id="my"
+ name="marcserver" checksum="64172">
 <md-title>AUTOMATED FLOOD WARNING NETWORK</md-title>
 <md-description tag="520">The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values)</md-description>
 <md-description tag="513">1982-PRESENT</md-description></location>
@@ -62,7 +68,8 @@
 <hit>
 
 <md-title>APPLIED GEOLOGY FILE</md-title>
-<md-description>Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description><location id="my" name="marcserver">
+<md-description>Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description><location id="my"
+ name="marcserver" checksum="4291493253">
 <md-title>APPLIED GEOLOGY FILE</md-title>
 <md-description tag="520">Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description>
 <md-description tag="513">1970-PRESENT</md-description></location>
index 71647e3..d3ed0e2 100644 (file)
@@ -8,7 +8,8 @@
 <hit>
 
 <md-title>COAL SAMPLE BANK</md-title>
-<md-description>This data set contains methane data, chemical analysis data, and petrographic analysis data on core samples in Utah</md-description><location id="my" name="marcserver">
+<md-description>This data set contains methane data, chemical analysis data, and petrographic analysis data on core samples in Utah</md-description><location id="my"
+ name="marcserver" checksum="3602387">
 <md-title>COAL SAMPLE BANK</md-title>
 <md-description tag="520">This data set contains methane data, chemical analysis data, and petrographic analysis data on core samples in Utah</md-description>
 <md-description tag="513">-PRESENT</md-description></location>
@@ -17,7 +18,8 @@
 <hit>
 
 <md-title>DAM INVENTORY</md-title>
-<md-description>The inventory delineates the following:  dam name, drainage basin, water course, inspection record, safety status, ownership, and other information</md-description><location id="my" name="marcserver">
+<md-description>The inventory delineates the following:  dam name, drainage basin, water course, inspection record, safety status, ownership, and other information</md-description><location id="my"
+ name="marcserver" checksum="64172">
 <md-title>DAM INVENTORY</md-title>
 <md-description tag="520">The inventory delineates the following:  dam name, drainage basin, water course, inspection record, safety status, ownership, and other information</md-description>
 <md-description tag="513">-PRESENT</md-description></location>
@@ -26,7 +28,8 @@
 <hit>
 
 <md-title>FRESH WATER WETLANDS MAPS</md-title>
-<md-description>Contained are a series of 1:50,000 scale maps showing regulated and unregulated fresh water wetlands in the organized territories.  Included is a table describing each mapped wetland</md-description><location id="my" name="marcserver">
+<md-description>Contained are a series of 1:50,000 scale maps showing regulated and unregulated fresh water wetlands in the organized territories.  Included is a table describing each mapped wetland</md-description><location id="my"
+ name="marcserver" checksum="4291493253">
 <md-title>FRESH WATER WETLANDS MAPS</md-title>
 <md-description tag="520">Contained are a series of 1:50,000 scale maps showing regulated and unregulated fresh water wetlands in the organized territories.  Included is a table describing each mapped wetland</md-description></location>
 <recid>content: title fresh water wetlands maps author medium book</recid>
@@ -34,7 +37,8 @@
 <hit>
 
 <md-title>INLAND WETLANDS OF CONNECTICUT</md-title>
-<md-description>This data set contains inland wetlands, as defined by State statute, which are delineated at a scale of 1:12,000, based predominantly on location of wet soils</md-description><location id="my" name="marcserver">
+<md-description>This data set contains inland wetlands, as defined by State statute, which are delineated at a scale of 1:12,000, based predominantly on location of wet soils</md-description><location id="my"
+ name="marcserver" checksum="4287955038">
 <md-title>INLAND WETLANDS OF CONNECTICUT</md-title>
 <md-description tag="520">This data set contains inland wetlands, as defined by State statute, which are delineated at a scale of 1:12,000, based predominantly on location of wet soils</md-description>
 <md-description tag="513">1972-PRESENT</md-description></location>
@@ -43,7 +47,8 @@
 <hit>
 
 <md-title>MAINE GEOLOGICAL SURVEY BEDROCK WATER WELL INVENTORY</md-title>
-<md-description>This data set contains a series of well inventory maps stored on tape.  The series has no indexing</md-description><location id="my" name="marcserver">
+<md-description>This data set contains a series of well inventory maps stored on tape.  The series has no indexing</md-description><location id="my"
+ name="marcserver" checksum="4284416823">
 <md-title>MAINE GEOLOGICAL SURVEY BEDROCK WATER WELL INVENTORY</md-title>
 <md-description tag="520">This data set contains a series of well inventory maps stored on tape.  The series has no indexing</md-description>
 <md-description tag="513">1972-PRESENT</md-description></location>
@@ -52,7 +57,8 @@
 <hit>
 
 <md-title>STATEWIDE PLANNING</md-title>
-<md-description>This data set contains:  1970 digitized land use maps, 1970 digitized zoning maps, active agricultural areas maps (1979-1980), maps displaying current National Flood Insurance Program data, locational guide map of the State Policies Plan for Conservation and Development of Connecticut (1987-1992), 1970 land use statistical data and 1970 municipal zoning data, proposed sewer service areas maps (1978) - DEP has update of this information, water conservation handbooks, and various reports and maps of the areawide Waste Treatment Management Planning Program (208)</md-description><location id="my" name="marcserver">
+<md-description>This data set contains:  1970 digitized land use maps, 1970 digitized zoning maps, active agricultural areas maps (1979-1980), maps displaying current National Flood Insurance Program data, locational guide map of the State Policies Plan for Conservation and Development of Connecticut (1987-1992), 1970 land use statistical data and 1970 municipal zoning data, proposed sewer service areas maps (1978) - DEP has update of this information, water conservation handbooks, and various reports and maps of the areawide Waste Treatment Management Planning Program (208)</md-description><location id="my"
+ name="marcserver" checksum="4280878608">
 <md-title>STATEWIDE PLANNING</md-title>
 <md-description tag="520">This data set contains:  1970 digitized land use maps, 1970 digitized zoning maps, active agricultural areas maps (1979-1980), maps displaying current National Flood Insurance Program data, locational guide map of the State Policies Plan for Conservation and Development of Connecticut (1987-1992), 1970 land use statistical data and 1970 municipal zoning data, proposed sewer service areas maps (1978) - DEP has update of this information, water conservation handbooks, and various reports and maps of the areawide Waste Treatment Management Planning Program (208)</md-description>
 <md-description tag="513">1960-PRESENT</md-description></location>
@@ -61,7 +67,8 @@
 <hit>
 
 <md-title>STREAM CHANNEL ENCROACHMENT LINE STUDIES</md-title>
-<md-description>Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set</md-description><location id="my" name="marcserver">
+<md-description>Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set</md-description><location id="my"
+ name="marcserver" checksum="4277340393">
 <md-title>STREAM CHANNEL ENCROACHMENT LINE STUDIES</md-title>
 <md-description tag="520">Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set</md-description></location>
 <recid>content: title stream channel encroachment line studies author medium book</recid>
@@ -69,7 +76,8 @@
 <hit>
 
 <md-title>TIDAL (COASTAL) WETLAND OF CONNECTICUT</md-title>
-<md-description>Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set</md-description><location id="my" name="marcserver">
+<md-description>Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set</md-description><location id="my"
+ name="marcserver" checksum="4273802178">
 <md-title>TIDAL (COASTAL) WETLAND OF CONNECTICUT</md-title>
 <md-description tag="520">Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set</md-description>
 <md-description tag="513">1972-PRESENT</md-description></location>
@@ -78,7 +86,8 @@
 <hit>
 
 <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
-<md-description>Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description><location id="my" name="marcserver">
+<md-description>Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description><location id="my"
+ name="marcserver" checksum="4270263963">
 <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
 <md-description tag="520">Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description>
 <md-description tag="513">-PRESENT</md-description></location>
@@ -87,7 +96,8 @@
 <hit>
 
 <md-title>WATER WELL DATA</md-title>
-<md-description>This database contains the following information on water wells in Nevada: driller&apos;s name, owner&apos;s name, location, formations encountered, lithologic descriptions, water level, and water quality</md-description><location id="my" name="marcserver">
+<md-description>This database contains the following information on water wells in Nevada: driller&apos;s name, owner&apos;s name, location, formations encountered, lithologic descriptions, water level, and water quality</md-description><location id="my"
+ name="marcserver" checksum="4266725748">
 <md-title>WATER WELL DATA</md-title>
 <md-description tag="520">This database contains the following information on water wells in Nevada: driller&apos;s name, owner&apos;s name, location, formations encountered, lithologic descriptions, water level, and water quality</md-description>
 <md-description tag="513">1930-PRESENT</md-description></location>
index c775894..45ddc45 100644 (file)
@@ -8,7 +8,8 @@
 <hit>
 
 <md-title>STATEWIDE PLANNING</md-title>
-<md-description>This data set contains:  1970 digitized land use maps, 1970 digitized zoning maps, active agricultural areas maps (1979-1980), maps displaying current National Flood Insurance Program data, locational guide map of the State Policies Plan for Conservation and Development of Connecticut (1987-1992), 1970 land use statistical data and 1970 municipal zoning data, proposed sewer service areas maps (1978) - DEP has update of this information, water conservation handbooks, and various reports and maps of the areawide Waste Treatment Management Planning Program (208)</md-description><location id="my" name="marcserver">
+<md-description>This data set contains:  1970 digitized land use maps, 1970 digitized zoning maps, active agricultural areas maps (1979-1980), maps displaying current National Flood Insurance Program data, locational guide map of the State Policies Plan for Conservation and Development of Connecticut (1987-1992), 1970 land use statistical data and 1970 municipal zoning data, proposed sewer service areas maps (1978) - DEP has update of this information, water conservation handbooks, and various reports and maps of the areawide Waste Treatment Management Planning Program (208)</md-description><location id="my"
+ name="marcserver" checksum="3602387">
 <md-title>STATEWIDE PLANNING</md-title>
 <md-description tag="520">This data set contains:  1970 digitized land use maps, 1970 digitized zoning maps, active agricultural areas maps (1979-1980), maps displaying current National Flood Insurance Program data, locational guide map of the State Policies Plan for Conservation and Development of Connecticut (1987-1992), 1970 land use statistical data and 1970 municipal zoning data, proposed sewer service areas maps (1978) - DEP has update of this information, water conservation handbooks, and various reports and maps of the areawide Waste Treatment Management Planning Program (208)</md-description>
 <md-description tag="513">1960-PRESENT</md-description></location>
@@ -17,7 +18,8 @@
 <hit>
 
 <md-title>WATER WELL DATA</md-title>
-<md-description>This database contains the following information on water wells in Nevada: driller&apos;s name, owner&apos;s name, location, formations encountered, lithologic descriptions, water level, and water quality</md-description><location id="my" name="marcserver">
+<md-description>This database contains the following information on water wells in Nevada: driller&apos;s name, owner&apos;s name, location, formations encountered, lithologic descriptions, water level, and water quality</md-description><location id="my"
+ name="marcserver" checksum="64172">
 <md-title>WATER WELL DATA</md-title>
 <md-description tag="520">This database contains the following information on water wells in Nevada: driller&apos;s name, owner&apos;s name, location, formations encountered, lithologic descriptions, water level, and water quality</md-description>
 <md-description tag="513">1930-PRESENT</md-description></location>
@@ -26,7 +28,8 @@
 <hit>
 
 <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
-<md-description>Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description><location id="my" name="marcserver">
+<md-description>Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description><location id="my"
+ name="marcserver" checksum="4291493253">
 <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
 <md-description tag="520">Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description>
 <md-description tag="513">-PRESENT</md-description></location>
@@ -35,7 +38,8 @@
 <hit>
 
 <md-title>COAL SAMPLE BANK</md-title>
-<md-description>This data set contains methane data, chemical analysis data, and petrographic analysis data on core samples in Utah</md-description><location id="my" name="marcserver">
+<md-description>This data set contains methane data, chemical analysis data, and petrographic analysis data on core samples in Utah</md-description><location id="my"
+ name="marcserver" checksum="4287955038">
 <md-title>COAL SAMPLE BANK</md-title>
 <md-description tag="520">This data set contains methane data, chemical analysis data, and petrographic analysis data on core samples in Utah</md-description>
 <md-description tag="513">-PRESENT</md-description></location>
@@ -44,7 +48,8 @@
 <hit>
 
 <md-title>FRESH WATER WETLANDS MAPS</md-title>
-<md-description>Contained are a series of 1:50,000 scale maps showing regulated and unregulated fresh water wetlands in the organized territories.  Included is a table describing each mapped wetland</md-description><location id="my" name="marcserver">
+<md-description>Contained are a series of 1:50,000 scale maps showing regulated and unregulated fresh water wetlands in the organized territories.  Included is a table describing each mapped wetland</md-description><location id="my"
+ name="marcserver" checksum="4284416823">
 <md-title>FRESH WATER WETLANDS MAPS</md-title>
 <md-description tag="520">Contained are a series of 1:50,000 scale maps showing regulated and unregulated fresh water wetlands in the organized territories.  Included is a table describing each mapped wetland</md-description></location>
 <recid>content: title fresh water wetlands maps author medium book</recid>
@@ -52,7 +57,8 @@
 <hit>
 
 <md-title>MAINE GEOLOGICAL SURVEY BEDROCK WATER WELL INVENTORY</md-title>
-<md-description>This data set contains a series of well inventory maps stored on tape.  The series has no indexing</md-description><location id="my" name="marcserver">
+<md-description>This data set contains a series of well inventory maps stored on tape.  The series has no indexing</md-description><location id="my"
+ name="marcserver" checksum="4280878608">
 <md-title>MAINE GEOLOGICAL SURVEY BEDROCK WATER WELL INVENTORY</md-title>
 <md-description tag="520">This data set contains a series of well inventory maps stored on tape.  The series has no indexing</md-description>
 <md-description tag="513">1972-PRESENT</md-description></location>
@@ -61,7 +67,8 @@
 <hit>
 
 <md-title>INLAND WETLANDS OF CONNECTICUT</md-title>
-<md-description>This data set contains inland wetlands, as defined by State statute, which are delineated at a scale of 1:12,000, based predominantly on location of wet soils</md-description><location id="my" name="marcserver">
+<md-description>This data set contains inland wetlands, as defined by State statute, which are delineated at a scale of 1:12,000, based predominantly on location of wet soils</md-description><location id="my"
+ name="marcserver" checksum="4277340393">
 <md-title>INLAND WETLANDS OF CONNECTICUT</md-title>
 <md-description tag="520">This data set contains inland wetlands, as defined by State statute, which are delineated at a scale of 1:12,000, based predominantly on location of wet soils</md-description>
 <md-description tag="513">1972-PRESENT</md-description></location>
@@ -70,7 +77,8 @@
 <hit>
 
 <md-title>STREAM CHANNEL ENCROACHMENT LINE STUDIES</md-title>
-<md-description>Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set</md-description><location id="my" name="marcserver">
+<md-description>Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set</md-description><location id="my"
+ name="marcserver" checksum="4273802178">
 <md-title>STREAM CHANNEL ENCROACHMENT LINE STUDIES</md-title>
 <md-description tag="520">Detailed engineering studies and large-scale mapping delineating high flow zones for regulation by the State are contained in this data set</md-description></location>
 <recid>content: title stream channel encroachment line studies author medium book</recid>
@@ -78,7 +86,8 @@
 <hit>
 
 <md-title>DAM INVENTORY</md-title>
-<md-description>The inventory delineates the following:  dam name, drainage basin, water course, inspection record, safety status, ownership, and other information</md-description><location id="my" name="marcserver">
+<md-description>The inventory delineates the following:  dam name, drainage basin, water course, inspection record, safety status, ownership, and other information</md-description><location id="my"
+ name="marcserver" checksum="4270263963">
 <md-title>DAM INVENTORY</md-title>
 <md-description tag="520">The inventory delineates the following:  dam name, drainage basin, water course, inspection record, safety status, ownership, and other information</md-description>
 <md-description tag="513">-PRESENT</md-description></location>
@@ -87,7 +96,8 @@
 <hit>
 
 <md-title>TIDAL (COASTAL) WETLAND OF CONNECTICUT</md-title>
-<md-description>Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set</md-description><location id="my" name="marcserver">
+<md-description>Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set</md-description><location id="my"
+ name="marcserver" checksum="4266725748">
 <md-title>TIDAL (COASTAL) WETLAND OF CONNECTICUT</md-title>
 <md-description tag="520">Tidal wetlands, as defined by State statute, which are delineated by engineering survey at a scale of 1:24,000 comprise this data set</md-description>
 <md-description tag="513">1972-PRESENT</md-description></location>
index 6ac87ef..b907948 100644 (file)
@@ -8,10 +8,12 @@
 <hit>
 
 <md-title>How to program a computer</md-title>
-<md-author>Jack Collins</md-author><location id="my" name="marcserver">
+<md-author>Jack Collins</md-author><location id="my"
+ name="marcserver" checksum="64172">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
-<location id="my" name="marcserver">
+<location id="my"
+ name="marcserver" checksum="3602387">
 <md-title>How to program a computer</md-title>
 <md-author>Jack Collins</md-author></location>
 <count>2</count>
@@ -22,7 +24,8 @@
 
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
-<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="my" name="marcserver">
+<md-description>Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates</md-description><location id="my"
+ name="marcserver" checksum="4287955038">
 <md-title>The Computer Bible</md-title>
 <md-date>1973-1980</md-date>
 <md-description tag="500">Hebrew and Greek; introductions in English</md-description>
@@ -34,7 +37,8 @@
 
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
-<md-date>1977</md-date><location id="my" name="marcserver">
+<md-date>1977</md-date><location id="my"
+ name="marcserver" checksum="4277340393">
 <md-title>Computer science &amp; technology</md-title>
 <md-title-remainder>proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976</md-title-remainder>
 <md-date>1977</md-date></location>
@@ -45,7 +49,8 @@
 
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date>
-<md-description>Cover title</md-description><location id="my" name="marcserver">
+<md-description>Cover title</md-description><location id="my"
+ name="marcserver" checksum="4266725748">
 <md-title>A plan for community college computer development</md-title>
 <md-date>1971</md-date>
 <md-description tag="500">Cover title</md-description></location>
@@ -58,7 +63,8 @@
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
 <md-author>Englund, Carl R</md-author>
-<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="my" name="marcserver">
+<md-description>&quot;Contract DOT-UT-10003.&quot;</md-description><location id="my"
+ name="marcserver" checksum="4270263963">
 <md-title>Washington metropolitan area rail computer feasibility study;</md-title>
 <md-title-remainder>final report</md-title-remainder>
 <md-date>1971</md-date>
@@ -73,7 +79,8 @@
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
 <md-author>Mairs, John W</md-author>
-<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="my" name="marcserver">
+<md-description>Scale of maps ca. 1:1,000,000</md-description><location id="my"
+ name="marcserver" checksum="4284416823">
 <md-title>The Puget Sound Region</md-title>
 <md-title-remainder>a portfolio of thematic computer maps</md-title-remainder>
 <md-date>1974</md-date>
@@ -88,7 +95,8 @@
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="my" name="marcserver">
+<md-description>Includes bibliographical references and index</md-description><location id="my"
+ name="marcserver" checksum="4291493253">
 <md-title>Computer processing of dynamic images from an Anger scintillation camera</md-title>
 <md-title-remainder>the proceedings of a workshop</md-title-remainder>
 <md-date>1974</md-date>
 
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
-<md-author>Wood, Helen M</md-author><location id="my" name="marcserver">
+<md-author>Wood, Helen M</md-author><location id="my"
+ name="marcserver" checksum="4273802178">
 <md-title>The use of passwords for controlled access to computer resources</md-title>
 <md-date>1977</md-date>
 <md-author>Wood, Helen M</md-author></location>
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
-<md-description>Includes bibliographical references and index</md-description><location id="my" name="marcserver">
+<md-description>Includes bibliographical references and index</md-description><location id="my"
+ name="marcserver" checksum="4280878608">
 <md-title>Reconstruction tomography in diagnostic radiology and nuclear medicine</md-title>
 <md-title-remainder>proceedings of the workshop</md-title-remainder>
 <md-date>1977</md-date>
index e0de11a..f9081d6 100644 (file)
@@ -8,7 +8,8 @@
 <hit>
 
 <md-title>APPLIED GEOLOGY FILE</md-title>
-<md-description>Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description><location id="my" name="marcserver">
+<md-description>Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description><location id="my"
+ name="marcserver" checksum="4291493253">
 <md-title>APPLIED GEOLOGY FILE</md-title>
 <md-description tag="520">Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description>
 <md-description tag="513">1970-PRESENT</md-description></location>
@@ -18,7 +19,8 @@
 <hit>
 
 <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
-<md-description>Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description><location id="my" name="marcserver">
+<md-description>Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description><location id="my"
+ name="marcserver" checksum="64172">
 <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
 <md-description tag="520">Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description>
 <md-description tag="513">-PRESENT</md-description></location>
@@ -28,7 +30,8 @@
 <hit>
 
 <md-title>UTAH EARTHQUAKE EPICENTERS</md-title>
-<md-description>Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description><location id="my" name="marcserver">
+<md-description>Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description><location id="my"
+ name="marcserver" checksum="3602387">
 <md-title>UTAH EARTHQUAKE EPICENTERS</md-title>
 <md-description tag="520">Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description>
 <md-description tag="513">-PRESENT</md-description></location>
index ef31ae5..8aa180e 100644 (file)
@@ -8,7 +8,8 @@
 <hit>
 
 <md-title>APPLIED GEOLOGY FILE</md-title>
-<md-description>Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description><location id="my" name="marcserver">
+<md-description>Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description><location id="my"
+ name="marcserver" checksum="4291493253">
 <md-title>APPLIED GEOLOGY FILE</md-title>
 <md-description tag="520">Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description>
 <md-description tag="513">1970-PRESENT</md-description></location>
@@ -17,7 +18,8 @@
 <hit>
 
 <md-title>AUTOMATED FLOOD WARNING NETWORK</md-title>
-<md-description>The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values)</md-description><location id="my" name="marcserver">
+<md-description>The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values)</md-description><location id="my"
+ name="marcserver" checksum="64172">
 <md-title>AUTOMATED FLOOD WARNING NETWORK</md-title>
 <md-description tag="520">The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values)</md-description>
 <md-description tag="513">1982-PRESENT</md-description></location>
@@ -26,7 +28,8 @@
 <hit>
 
 <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
-<md-description>This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description><location id="my" name="marcserver">
+<md-description>This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description><location id="my"
+ name="marcserver" checksum="4291493253">
 <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
 <md-description tag="520">This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description>
 <md-description tag="513">1692-PRESENT</md-description></location>
@@ -35,7 +38,8 @@
 <hit>
 
 <md-title>UTAH EARTHQUAKE EPICENTERS</md-title>
-<md-description>Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description><location id="my" name="marcserver">
+<md-description>Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description><location id="my"
+ name="marcserver" checksum="3602387">
 <md-title>UTAH EARTHQUAKE EPICENTERS</md-title>
 <md-description tag="520">Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description>
 <md-description tag="513">-PRESENT</md-description></location>
@@ -44,7 +48,8 @@
 <hit>
 
 <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
-<md-description>Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description><location id="my" name="marcserver">
+<md-description>Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description><location id="my"
+ name="marcserver" checksum="64172">
 <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
 <md-description tag="520">Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description>
 <md-description tag="513">-PRESENT</md-description></location>
index ef31ae5..8aa180e 100644 (file)
@@ -8,7 +8,8 @@
 <hit>
 
 <md-title>APPLIED GEOLOGY FILE</md-title>
-<md-description>Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description><location id="my" name="marcserver">
+<md-description>Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description><location id="my"
+ name="marcserver" checksum="4291493253">
 <md-title>APPLIED GEOLOGY FILE</md-title>
 <md-description tag="520">Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description>
 <md-description tag="513">1970-PRESENT</md-description></location>
@@ -17,7 +18,8 @@
 <hit>
 
 <md-title>AUTOMATED FLOOD WARNING NETWORK</md-title>
-<md-description>The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values)</md-description><location id="my" name="marcserver">
+<md-description>The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values)</md-description><location id="my"
+ name="marcserver" checksum="64172">
 <md-title>AUTOMATED FLOOD WARNING NETWORK</md-title>
 <md-description tag="520">The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values)</md-description>
 <md-description tag="513">1982-PRESENT</md-description></location>
@@ -26,7 +28,8 @@
 <hit>
 
 <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
-<md-description>This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description><location id="my" name="marcserver">
+<md-description>This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description><location id="my"
+ name="marcserver" checksum="4291493253">
 <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
 <md-description tag="520">This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description>
 <md-description tag="513">1692-PRESENT</md-description></location>
@@ -35,7 +38,8 @@
 <hit>
 
 <md-title>UTAH EARTHQUAKE EPICENTERS</md-title>
-<md-description>Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description><location id="my" name="marcserver">
+<md-description>Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description><location id="my"
+ name="marcserver" checksum="3602387">
 <md-title>UTAH EARTHQUAKE EPICENTERS</md-title>
 <md-description tag="520">Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description>
 <md-description tag="513">-PRESENT</md-description></location>
@@ -44,7 +48,8 @@
 <hit>
 
 <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
-<md-description>Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description><location id="my" name="marcserver">
+<md-description>Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description><location id="my"
+ name="marcserver" checksum="64172">
 <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
 <md-description tag="520">Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description>
 <md-description tag="513">-PRESENT</md-description></location>
index 57aba5a..78d7789 100644 (file)
@@ -8,7 +8,8 @@
 <hit>
 
 <md-title>WATER WELL DATA</md-title>
-<md-description>This database contains the following information on water wells in Nevada: driller&apos;s name, owner&apos;s name, location, formations encountered, lithologic descriptions, water level, and water quality</md-description><location id="my" name="marcserver">
+<md-description>This database contains the following information on water wells in Nevada: driller&apos;s name, owner&apos;s name, location, formations encountered, lithologic descriptions, water level, and water quality</md-description><location id="my"
+ name="marcserver" checksum="3602387">
 <md-title>WATER WELL DATA</md-title>
 <md-description tag="520">This database contains the following information on water wells in Nevada: driller&apos;s name, owner&apos;s name, location, formations encountered, lithologic descriptions, water level, and water quality</md-description>
 <md-description tag="513">1930-PRESENT</md-description></location>
@@ -17,7 +18,8 @@
 <hit>
 
 <md-title>UTAH GEOLOGIC MAP BIBLIOGRAPHY</md-title>
-<md-description>This collection consists of theses, dissertations, and other unpublished maps as well as published maps of the geology of Utah.  Some maps of the collection are xeroxed from limited collections.  Cross-sections are included in set.  Data file consists of map bibliography</md-description><location id="my" name="marcserver">
+<md-description>This collection consists of theses, dissertations, and other unpublished maps as well as published maps of the geology of Utah.  Some maps of the collection are xeroxed from limited collections.  Cross-sections are included in set.  Data file consists of map bibliography</md-description><location id="my"
+ name="marcserver" checksum="4291493253">
 <md-title>UTAH GEOLOGIC MAP BIBLIOGRAPHY</md-title>
 <md-description tag="520">This collection consists of theses, dissertations, and other unpublished maps as well as published maps of the geology of Utah.  Some maps of the collection are xeroxed from limited collections.  Cross-sections are included in set.  Data file consists of map bibliography</md-description>
 <md-description tag="513">-PRESENT</md-description></location>
@@ -26,7 +28,8 @@
 <hit>
 
 <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
-<md-description>Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description><location id="my" name="marcserver">
+<md-description>Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description><location id="my"
+ name="marcserver" checksum="64172">
 <md-title>UTAH GEOLOGICAL AND MINERAL SURVEY PUBLICATIONS</md-title>
 <md-description tag="520">Publications of the Utah Geological and Mineral Survey include reports of investigation, special studies, bulletins, open-file reports, geologic map of Utah, publications of geological societies, geologic and oil and mineral maps, coal monographs, circulars, water resource bulletins, and reprints of articles</md-description>
 <md-description tag="513">-PRESENT</md-description></location>
@@ -35,7 +38,8 @@
 <hit>
 
 <md-title>UTAH EARTHQUAKE EPICENTERS</md-title>
-<md-description>Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description><location id="my" name="marcserver">
+<md-description>Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description><location id="my"
+ name="marcserver" checksum="3602387">
 <md-title>UTAH EARTHQUAKE EPICENTERS</md-title>
 <md-description tag="520">Five files of epicenter data arranged by date comprise this data set.  These files are searchable by magnitude and longitude/latitude.  Hardcopy of listing and plot of requested area available.  Epicenter location and date, magnitude, and focal depth available</md-description>
 <md-description tag="513">-PRESENT</md-description></location>
@@ -44,7 +48,8 @@
 <hit>
 
 <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
-<md-description>This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description><location id="my" name="marcserver">
+<md-description>This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description><location id="my"
+ name="marcserver" checksum="4291493253">
 <md-title>BIBLIOGRAPHY OF MAINE GEOLOGY</md-title>
 <md-description tag="520">This data base is a computer based bibliography of marine geology.  It allows searching by topic and geographic location, similar to GEOREF.  It is currently under development to replace the printed Bibliography of Marine Geology</md-description>
 <md-description tag="513">1692-PRESENT</md-description></location>
@@ -53,7 +58,8 @@
 <hit>
 
 <md-title>AUTOMATED FLOOD WARNING NETWORK</md-title>
-<md-description>The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values)</md-description><location id="my" name="marcserver">
+<md-description>The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values)</md-description><location id="my"
+ name="marcserver" checksum="64172">
 <md-title>AUTOMATED FLOOD WARNING NETWORK</md-title>
 <md-description tag="520">The new system will collect rainfall, temperature, soil moisture, wind speed and direction, humidity, and streamflow (above certain values)</md-description>
 <md-description tag="513">1982-PRESENT</md-description></location>
@@ -62,7 +68,8 @@
 <hit>
 
 <md-title>APPLIED GEOLOGY FILE</md-title>
-<md-description>Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description><location id="my" name="marcserver">
+<md-description>Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description><location id="my"
+ name="marcserver" checksum="4291493253">
 <md-title>APPLIED GEOLOGY FILE</md-title>
 <md-description tag="520">Reports and memorandums completed by the Site Investigation Section comprise this data set.  Subjects include geotechnical appraisal of public facility sites before and during construction and evaluations of hazardous waste problems</md-description>
 <md-description tag="513">1970-PRESENT</md-description></location>